home *** CD-ROM | disk | FTP | other *** search
/ vim.ftp.fu-berlin.de / 2015-02-03.vim.ftp.fu-berlin.de.tar / vim.ftp.fu-berlin.de / patches / 6.0.265 < prev    next >
Encoding:
Internet Message Format  |  2002-02-21  |  1.4 KB

  1. To: vim-dev@vim.org
  2. Subject: Patch 6.0.265
  3. Fcc: outbox
  4. From: Bram Moolenaar <Bram@moolenaar.net>
  5. MIME-Version: 1.0
  6. Content-Type: text/plain; charset=ISO-8859-1
  7. Content-Transfer-Encoding: 8bit
  8. ------------
  9.  
  10. Patch 6.0.265
  11. Problem:    Win32: Using backspace while 'fkmap' is set causes a crash.
  12.         (Jamshid Oasjmoha)
  13. Solution:   Don't try mapping special keys.
  14. Files:        src/farsi.c
  15.  
  16.  
  17. *** ../vim60.264/src/farsi.c    Sun Aug 19 11:59:03 2001
  18. --- src/farsi.c    Fri Feb 22 20:10:20 2002
  19. ***************
  20. *** 759,764 ****
  21. --- 759,767 ----
  22.       int        tempc;
  23.       static int    revins;
  24.   
  25. +     if (IS_SPECIAL(c))
  26. +     return c;
  27.       if (vim_isdigit(c) || ((c == '.' || c == '+' || c == '-' ||
  28.       c == '^' || c == '%' || c == '#' || c == '=')  && revins))
  29.       {
  30. *** ../vim60.264/src/version.c    Fri Feb 22 19:54:05 2002
  31. --- src/version.c    Fri Feb 22 20:15:16 2002
  32. ***************
  33. *** 608,609 ****
  34. --- 608,611 ----
  35.   {   /* Add new patch number below this line */
  36. + /**/
  37. +     265,
  38.   /**/
  39.  
  40. -- 
  41. hundred-and-one symptoms of being an internet addict:
  42. 3. Your bookmark takes 15 minutes to scroll from top to bottom.
  43.  
  44.  ///  Bram Moolenaar -- Bram@moolenaar.net -- http://www.moolenaar.net  \\\
  45. ///   Creator of Vim -- http://vim.sf.net -- ftp://ftp.vim.org/pub/vim   \\\
  46. \\\           Project leader for A-A-P -- http://www.a-a-p.org           ///
  47.  \\\  Help me helping AIDS orphans in Uganda - http://iccf-holland.org  ///
  48.