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.022 < prev    next >
Encoding:
Internet Message Format  |  2001-10-22  |  1.3 KB

  1. To: vim-dev@vim.org
  2. Subject: Patch 6.0.022
  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.022
  11. Problem:    When using the 'langmap' option, the second character of a command
  12.         starting with "g" isn't adjusted.
  13. Solution:   Apply 'langmap' to the second character. (Alex Kapranoff)
  14. Files:        src/normal.c
  15.  
  16.  
  17. *** ../vim60.21/src/normal.c    Fri Oct 19 15:24:44 2001
  18. --- src/normal.c    Tue Oct 23 16:50:50 2001
  19. ***************
  20. *** 842,847 ****
  21. --- 842,850 ----
  22.            * "gr", "g'" and "g`".
  23.            */
  24.           ca.nchar = safe_vgetc();
  25. + #ifdef FEAT_LANGMAP
  26. +         LANGMAP_ADJUST(ca.nchar, TRUE);
  27. + #endif
  28.   #ifdef FEAT_CMDL_INFO
  29.           need_flushbuf |= add_to_showcmd(ca.nchar);
  30.   #endif
  31. *** ../vim60.21/src/version.c    Mon Oct 22 21:19:00 2001
  32. --- src/version.c    Tue Oct 23 16:53:44 2001
  33. ***************
  34. *** 608,609 ****
  35. --- 608,611 ----
  36.   {   /* Add new patch number below this line */
  37. + /**/
  38. +     22,
  39.   /**/
  40.  
  41. -- 
  42. hundred-and-one symptoms of being an internet addict:
  43. 221. Your wife melts your keyboard in the oven.
  44.  
  45.  ///  Bram Moolenaar -- Bram@moolenaar.net -- http://www.moolenaar.net  \\\
  46. (((   Creator of Vim -- http://vim.sf.net -- ftp://ftp.vim.org/pub/vim   )))
  47.  \\\  Help me helping AIDS orphans in Uganda - http://iccf-holland.org  ///
  48.