home *** CD-ROM | disk | FTP | other *** search
- To: vim-dev@vim.org
- Subject: Patch 6.0.265
- Fcc: outbox
- From: Bram Moolenaar <Bram@moolenaar.net>
- MIME-Version: 1.0
- Content-Type: text/plain; charset=ISO-8859-1
- Content-Transfer-Encoding: 8bit
- ------------
-
- Patch 6.0.265
- Problem: Win32: Using backspace while 'fkmap' is set causes a crash.
- (Jamshid Oasjmoha)
- Solution: Don't try mapping special keys.
- Files: src/farsi.c
-
-
- *** ../vim60.264/src/farsi.c Sun Aug 19 11:59:03 2001
- --- src/farsi.c Fri Feb 22 20:10:20 2002
- ***************
- *** 759,764 ****
- --- 759,767 ----
- int tempc;
- static int revins;
-
- + if (IS_SPECIAL(c))
- + return c;
- +
- if (vim_isdigit(c) || ((c == '.' || c == '+' || c == '-' ||
- c == '^' || c == '%' || c == '#' || c == '=') && revins))
- {
- *** ../vim60.264/src/version.c Fri Feb 22 19:54:05 2002
- --- src/version.c Fri Feb 22 20:15:16 2002
- ***************
- *** 608,609 ****
- --- 608,611 ----
- { /* Add new patch number below this line */
- + /**/
- + 265,
- /**/
-
- --
- hundred-and-one symptoms of being an internet addict:
- 3. Your bookmark takes 15 minutes to scroll from top to bottom.
-
- /// Bram Moolenaar -- Bram@moolenaar.net -- http://www.moolenaar.net \\\
- /// Creator of Vim -- http://vim.sf.net -- ftp://ftp.vim.org/pub/vim \\\
- \\\ Project leader for A-A-P -- http://www.a-a-p.org ///
- \\\ Help me helping AIDS orphans in Uganda - http://iccf-holland.org ///
-