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.197 < prev    next >
Encoding:
Internet Message Format  |  2002-09-24  |  1.5 KB

  1. To: vim-dev@vim.org
  2. Subject: Patch 6.1.197
  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.197
  11. Problem:    ":help <C-V><C-\><C-V><C-N>" (resulting in <1c><0e>) gives an
  12.         error message. (Servatius Brandt)
  13. Solution:   Double the backslash in "CTRL-\".
  14. Files:        src/ex_cmds.c
  15.  
  16.  
  17. *** ../vim61.196/src/ex_cmds.c    Mon Sep 23 21:32:08 2002
  18. --- src/ex_cmds.c    Wed Sep 25 22:05:20 2002
  19. ***************
  20. *** 4727,4737 ****
  21. --- 4727,4741 ----
  22.           STRCPY(d, "CTRL-");
  23.           d += 5;
  24.           if (*s < ' ')
  25. +         {
  26.   #ifdef EBCDIC
  27.               *d++ = CtrlChar(*s);
  28.   #else
  29.               *d++ = *s + '@';
  30.   #endif
  31. +             if (d[-1] == '\\')
  32. +             *d++ = '\\';    /* double a backslash */
  33. +         }
  34.           else
  35.               *d++ = *++s;
  36.           if (s[1] != NUL && s[1] != '_')
  37. *** ../vim61.196/src/version.c    Mon Sep 23 21:35:44 2002
  38. --- src/version.c    Wed Sep 25 22:08:41 2002
  39. ***************
  40. *** 608,609 ****
  41. --- 608,611 ----
  42.   {   /* Add new patch number below this line */
  43. + /**/
  44. +     197,
  45.   /**/
  46.  
  47. -- 
  48. hundred-and-one symptoms of being an internet addict:
  49. 44. Your friends no longer send you e-mail...they just log on to your IRC
  50.     channel.
  51.  
  52.  ///  Bram Moolenaar -- Bram@moolenaar.net -- http://www.moolenaar.net  \\\
  53. ///          Creator of Vim - Vi IMproved -- http://www.vim.org          \\\
  54. \\\           Project leader for A-A-P -- http://www.a-a-p.org           ///
  55.  \\\ Lord Of The Rings helps Uganda - http://iccf-holland.org/lotr.html ///
  56.