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.175 < prev    next >
Encoding:
Internet Message Format  |  2002-02-03  |  2.3 KB

  1. To: vim-dev@vim.org
  2. Subject: Patch 6.0.175
  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.175
  11. Problem:    ":help /\z(\)" doesn't work. (Thomas Koehler)
  12. Solution:   Double the backslashes.
  13. Files:        src/ex_cmds.c
  14.  
  15.  
  16. *** ../vim60.174/src/ex_cmds.c    Sun Feb  3 17:55:07 2002
  17. --- src/ex_cmds.c    Mon Feb  4 15:13:04 2002
  18. ***************
  19. *** 4604,4616 ****
  20.       static char *(mtable[]) = {"*", "g*", "[*", "]*", ":*",
  21.                      "/*", "/\\*", "\"*", "/\\(\\)",
  22.                      "?", ":?", "?<CR>", "g?", "g?g?", "g??",
  23. !                    "/\\?",
  24.                      "[count]", "[quotex]", "[range]",
  25.                      "[pattern]", "\\|", "\\%$"};
  26.       static char *(rtable[]) = {"star", "gstar", "[star", "]star", ":star",
  27.                      "/star", "/\\\\star", "quotestar", "/\\\\(\\\\)",
  28.                      "?", ":?", "?<CR>", "g?", "g?g?", "g??",
  29. !                    "/\\\\?",
  30.                      "\\[count]", "\\[quotex]", "\\[range]",
  31.                      "\\[pattern]", "\\\\bar", "/\\\\%\\$"};
  32.   
  33. --- 4604,4616 ----
  34.       static char *(mtable[]) = {"*", "g*", "[*", "]*", ":*",
  35.                      "/*", "/\\*", "\"*", "/\\(\\)",
  36.                      "?", ":?", "?<CR>", "g?", "g?g?", "g??",
  37. !                    "/\\?", "/\\z(\\)",
  38.                      "[count]", "[quotex]", "[range]",
  39.                      "[pattern]", "\\|", "\\%$"};
  40.       static char *(rtable[]) = {"star", "gstar", "[star", "]star", ":star",
  41.                      "/star", "/\\\\star", "quotestar", "/\\\\(\\\\)",
  42.                      "?", ":?", "?<CR>", "g?", "g?g?", "g??",
  43. !                    "/\\\\?", "/\\\\z(\\\\)",
  44.                      "\\[count]", "\\[quotex]", "\\[range]",
  45.                      "\\[pattern]", "\\\\bar", "/\\\\%\\$"};
  46.   
  47. *** ../vim60.174/src/version.c    Mon Feb  4 13:15:45 2002
  48. --- src/version.c    Mon Feb  4 15:16:57 2002
  49. ***************
  50. *** 608,609 ****
  51. --- 608,611 ----
  52.   {   /* Add new patch number below this line */
  53. + /**/
  54. +     175,
  55.   /**/
  56.  
  57. -- 
  58. hundred-and-one symptoms of being an internet addict:
  59. 191. You rate eating establishments not by the quality of the food,
  60.      but by the availability of electrical outlets for your PowerBook.
  61.  
  62.  ///  Bram Moolenaar -- Bram@moolenaar.net -- http://www.moolenaar.net  \\\
  63. (((   Creator of Vim -- http://vim.sf.net -- ftp://ftp.vim.org/pub/vim   )))
  64.  \\\  Help me helping AIDS orphans in Uganda - http://iccf-holland.org  ///
  65.