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 / 7.3 / 7.3.766 < prev    next >
Encoding:
Internet Message Format  |  2013-01-16  |  2.8 KB

  1. To: vim_dev@googlegroups.com
  2. Subject: Patch 7.3.766
  3. Fcc: outbox
  4. From: Bram Moolenaar <Bram@moolenaar.net>
  5. Mime-Version: 1.0
  6. Content-Type: text/plain; charset=UTF-8
  7. Content-Transfer-Encoding: 8bit
  8. ------------
  9.  
  10. Patch 7.3.766
  11. Problem:    ":help cpo-*" jumps to the wrong place.
  12. Solution:   Make it equivalent to ":help cpo-star".
  13. Files:        src/ex_cmds.c
  14.  
  15.  
  16. *** ../vim-7.3.765/src/ex_cmds.c    2012-11-29 20:09:55.000000000 +0100
  17. --- src/ex_cmds.c    2013-01-17 14:05:45.000000000 +0100
  18. ***************
  19. *** 5849,5862 ****
  20.       int        i;
  21.       static char *(mtable[]) = {"*", "g*", "[*", "]*", ":*",
  22.                      "/*", "/\\*", "\"*", "**",
  23. !                    "/\\(\\)",
  24.                      "?", ":?", "?<CR>", "g?", "g?g?", "g??", "z?",
  25.                      "/\\?", "/\\z(\\)", "\\=", ":s\\=",
  26.                      "[count]", "[quotex]", "[range]",
  27.                      "[pattern]", "\\|", "\\%$"};
  28.       static char *(rtable[]) = {"star", "gstar", "[star", "]star", ":star",
  29.                      "/star", "/\\\\star", "quotestar", "starstar",
  30. !                    "/\\\\(\\\\)",
  31.                      "?", ":?", "?<CR>", "g?", "g?g?", "g??", "z?",
  32.                      "/\\\\?", "/\\\\z(\\\\)", "\\\\=", ":s\\\\=",
  33.                      "\\[count]", "\\[quotex]", "\\[range]",
  34. --- 5849,5862 ----
  35.       int        i;
  36.       static char *(mtable[]) = {"*", "g*", "[*", "]*", ":*",
  37.                      "/*", "/\\*", "\"*", "**",
  38. !                    "cpo-*", "/\\(\\)",
  39.                      "?", ":?", "?<CR>", "g?", "g?g?", "g??", "z?",
  40.                      "/\\?", "/\\z(\\)", "\\=", ":s\\=",
  41.                      "[count]", "[quotex]", "[range]",
  42.                      "[pattern]", "\\|", "\\%$"};
  43.       static char *(rtable[]) = {"star", "gstar", "[star", "]star", ":star",
  44.                      "/star", "/\\\\star", "quotestar", "starstar",
  45. !                    "cpo-star", "/\\\\(\\\\)",
  46.                      "?", ":?", "?<CR>", "g?", "g?g?", "g??", "z?",
  47.                      "/\\\\?", "/\\\\z(\\\\)", "\\\\=", ":s\\\\=",
  48.                      "\\[count]", "\\[quotex]", "\\[range]",
  49. *** ../vim-7.3.765/src/version.c    2013-01-17 13:59:56.000000000 +0100
  50. --- src/version.c    2013-01-17 14:09:04.000000000 +0100
  51. ***************
  52. *** 727,728 ****
  53. --- 727,730 ----
  54.   {   /* Add new patch number below this line */
  55. + /**/
  56. +     766,
  57.   /**/
  58.  
  59. -- 
  60. The greatest lies of all time:
  61.   (1) The check is in the mail.
  62.   (2) We have a really challenging assignment for you.
  63.   (3) I love you.
  64.   (4) All bugs have been fixed.
  65.   (5) This won't hurt a bit.
  66.   (6) Honey, I just need to debug this program and be home in 5 minutes.
  67.   (7) I have just sent you an e-mail about that.
  68.   (8) Of course I'll respect you in the morning.
  69.   (9) I'm from the government, and I'm here to help you.
  70.  
  71.  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
  72. ///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
  73. \\\  an exciting new programming language -- http://www.Zimbu.org        ///
  74.  \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///
  75.