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 / old / 5.6.018 < prev    next >
Encoding:
Internet Message Format  |  2000-03-24  |  1.4 KB

  1. To: vim-dev@vim.org
  2. Subject: Patch 5.6.018
  3. Fcc: outbox
  4. From: Bram Moolenaar <Bram@moolenaar.net>
  5. ------------
  6.  
  7. Patch 5.6.018
  8. Problem:    ":help [:digit:]" takes a long time to jump to the wrong place.
  9. Solution:   Insert a backslash to avoid the special meaning of '[]'.
  10. Files:        src/ex_cmds.c
  11.  
  12.  
  13. *** ../vim-5.6.17/src/ex_cmds.c    Sat Mar 25 14:31:34 2000
  14. --- src/ex_cmds.c    Sat Mar 25 14:25:52 2000
  15. ***************
  16. *** 4015,4020 ****
  17. --- 4015,4024 ----
  18.       }
  19.       else
  20.       {
  21. +       /* replace "[:...:]" with "\[:...:]" */
  22. +       if (arg[0] == '[' && arg[1] == ':')
  23. +           *d++ = '\\';
  24.         for (s = arg; *s; ++s)
  25.         {
  26.           /*
  27. *** ../vim-5.6.17/src/version.c    Sat Mar 25 14:31:34 2000
  28. --- src/version.c    Sat Mar 25 14:31:18 2000
  29. ***************
  30. *** 420,421 ****
  31. --- 420,423 ----
  32.   {   /* Add new patch number below this line */
  33. + /**/
  34. +     18,
  35.   /**/
  36.  
  37. -- 
  38. ZOOT:  I'm afraid our life must seem very dull and quiet compared to yours.
  39.        We are but eightscore young blondes, all between sixteen and
  40.        nineteen-and-a-half, cut off in this castle, with no one to protect us.
  41.        Oooh.  It is a lonely life ... bathing ...  dressing ... undressing ...
  42.        making exciting underwear....
  43.                  "Monty Python and the Holy Grail" PYTHON (MONTY) PICTURES LTD
  44.  
  45. /-/-- Bram Moolenaar --- Bram@moolenaar.net --- http://www.moolenaar.net --\-\
  46. \-\-- Vim: http://www.vim.org ---- ICCF Holland: http://www.vim.org/iccf --/-/
  47.