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.1.081 < prev    next >
Encoding:
Internet Message Format  |  2002-05-19  |  1.5 KB

  1. To: vim-dev@vim.org
  2. Subject: Patch 6.1.081
  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.1.081
  11. Problem:    ":help CTRL-\_CTRL-N" doesn't work.  (Christian J. Robinson)
  12. Solution:   Double the backslash to avoid the special meaning of "\_".
  13. Files:        src/ex_cmds.c
  14.  
  15.  
  16. *** ../vim61.080/src/ex_cmds.c    Mon Apr  8 22:11:31 2002
  17. --- src/ex_cmds.c    Mon May 20 21:43:09 2002
  18. ***************
  19. *** 4736,4741 ****
  20. --- 4737,4751 ----
  21.           else if (s[0] == '\\' && s[1] != '\\'
  22.                              && *arg == '/' && s == arg + 1)
  23.           *d++ = '\\';
  24. +         /* "CTRL-\_" -> "CTRL-\\_" to avoid the special meaning of "\_" in
  25. +          * "CTRL-\_CTRL-N" */
  26. +         if (STRNICMP(s, "CTRL-\\_", 7) == 0)
  27. +         {
  28. +         STRCPY(d, "CTRL-\\\\");
  29. +         d += 7;
  30. +         s += 6;
  31. +         }
  32.   
  33.           *d++ = *s;
  34.   
  35. *** ../vim61.080/src/version.c    Mon May 20 21:33:19 2002
  36. --- src/version.c    Mon May 20 21:47:23 2002
  37. ***************
  38. *** 608,609 ****
  39. --- 608,611 ----
  40.   {   /* Add new patch number below this line */
  41. + /**/
  42. +     81,
  43.   /**/
  44.  
  45. --  
  46. On the other hand, you have different fingers.
  47.                                       -- Steven Wright
  48.  
  49.  ///  Bram Moolenaar -- Bram@moolenaar.net -- http://www.moolenaar.net  \\\
  50. ///   Creator of Vim -- http://vim.sf.net -- ftp://ftp.vim.org/pub/vim   \\\
  51. \\\           Project leader for A-A-P -- http://www.a-a-p.org           ///
  52.  \\\  Help me helping AIDS orphans in Uganda - http://iccf-holland.org  ///
  53.