|
|
073263 |
To: vim_dev@googlegroups.com
|
|
|
073263 |
Subject: Patch 7.4.170
|
|
|
073263 |
Fcc: outbox
|
|
|
073263 |
From: Bram Moolenaar <Bram@moolenaar.net>
|
|
|
073263 |
Mime-Version: 1.0
|
|
|
073263 |
Content-Type: text/plain; charset=UTF-8
|
|
|
073263 |
Content-Transfer-Encoding: 8bit
|
|
|
073263 |
------------
|
|
|
073263 |
|
|
|
073263 |
Patch 7.4.170
|
|
|
073263 |
Problem: Some help tags don't work with ":help". (Tim Chase)
|
|
|
073263 |
Solution: Add exceptions.
|
|
|
073263 |
Files: src/ex_cmds.c
|
|
|
073263 |
|
|
|
073263 |
|
|
|
073263 |
*** ../vim-7.4.169/src/ex_cmds.c 2013-11-09 03:31:45.000000000 +0100
|
|
|
073263 |
--- src/ex_cmds.c 2014-02-11 12:10:43.905946437 +0100
|
|
|
073263 |
***************
|
|
|
073263 |
*** 5936,5949 ****
|
|
|
073263 |
"?", ":?", "?<CR>", "g?", "g?g?", "g??", "z?",
|
|
|
073263 |
"/\\?", "/\\z(\\)", "\\=", ":s\\=",
|
|
|
073263 |
"[count]", "[quotex]", "[range]",
|
|
|
073263 |
! "[pattern]", "\\|", "\\%$"};
|
|
|
073263 |
static char *(rtable[]) = {"star", "gstar", "[star", "]star", ":star",
|
|
|
073263 |
"/star", "/\\\\star", "quotestar", "starstar",
|
|
|
073263 |
"cpo-star", "/\\\\(\\\\)", "/\\\\%(\\\\)",
|
|
|
073263 |
"?", ":?", "?<CR>", "g?", "g?g?", "g??", "z?",
|
|
|
073263 |
"/\\\\?", "/\\\\z(\\\\)", "\\\\=", ":s\\\\=",
|
|
|
073263 |
"\\[count]", "\\[quotex]", "\\[range]",
|
|
|
073263 |
! "\\[pattern]", "\\\\bar", "/\\\\%\\$"};
|
|
|
073263 |
int flags;
|
|
|
073263 |
|
|
|
073263 |
d = IObuff; /* assume IObuff is long enough! */
|
|
|
073263 |
--- 5936,5953 ----
|
|
|
073263 |
"?", ":?", "?<CR>", "g?", "g?g?", "g??", "z?",
|
|
|
073263 |
"/\\?", "/\\z(\\)", "\\=", ":s\\=",
|
|
|
073263 |
"[count]", "[quotex]", "[range]",
|
|
|
073263 |
! "[pattern]", "\\|", "\\%$",
|
|
|
073263 |
! "s/\\~", "s/\\U", "s/\\L",
|
|
|
073263 |
! "s/\\1", "s/\\2", "s/\\3", "s/\\9"};
|
|
|
073263 |
static char *(rtable[]) = {"star", "gstar", "[star", "]star", ":star",
|
|
|
073263 |
"/star", "/\\\\star", "quotestar", "starstar",
|
|
|
073263 |
"cpo-star", "/\\\\(\\\\)", "/\\\\%(\\\\)",
|
|
|
073263 |
"?", ":?", "?<CR>", "g?", "g?g?", "g??", "z?",
|
|
|
073263 |
"/\\\\?", "/\\\\z(\\\\)", "\\\\=", ":s\\\\=",
|
|
|
073263 |
"\\[count]", "\\[quotex]", "\\[range]",
|
|
|
073263 |
! "\\[pattern]", "\\\\bar", "/\\\\%\\$",
|
|
|
073263 |
! "s/\\\\\\~", "s/\\\\U", "s/\\\\L",
|
|
|
073263 |
! "s/\\\\1", "s/\\\\2", "s/\\\\3", "s/\\\\9"};
|
|
|
073263 |
int flags;
|
|
|
073263 |
|
|
|
073263 |
d = IObuff; /* assume IObuff is long enough! */
|
|
|
073263 |
***************
|
|
|
073263 |
*** 5982,5988 ****
|
|
|
073263 |
/* Replace:
|
|
|
073263 |
* "[:...:]" with "\[:...:]"
|
|
|
073263 |
* "[++...]" with "\[++...]"
|
|
|
073263 |
! * "\{" with "\\{"
|
|
|
073263 |
*/
|
|
|
073263 |
if ((arg[0] == '[' && (arg[1] == ':'
|
|
|
073263 |
|| (arg[1] == '+' && arg[2] == '+')))
|
|
|
073263 |
--- 5986,5992 ----
|
|
|
073263 |
/* Replace:
|
|
|
073263 |
* "[:...:]" with "\[:...:]"
|
|
|
073263 |
* "[++...]" with "\[++...]"
|
|
|
073263 |
! * "\{" with "\\{" -- matching "} \}"
|
|
|
073263 |
*/
|
|
|
073263 |
if ((arg[0] == '[' && (arg[1] == ':'
|
|
|
073263 |
|| (arg[1] == '+' && arg[2] == '+')))
|
|
|
073263 |
*** ../vim-7.4.169/src/version.c 2014-02-05 22:46:49.062587842 +0100
|
|
|
073263 |
--- src/version.c 2014-02-11 11:41:50.433919875 +0100
|
|
|
073263 |
***************
|
|
|
073263 |
*** 740,741 ****
|
|
|
073263 |
--- 740,743 ----
|
|
|
073263 |
{ /* Add new patch number below this line */
|
|
|
073263 |
+ /**/
|
|
|
073263 |
+ 170,
|
|
|
073263 |
/**/
|
|
|
073263 |
|
|
|
073263 |
--
|
|
|
073263 |
GALAHAD turns back. We see from his POV the lovely ZOOT standing by him
|
|
|
073263 |
smiling enchantingly and a number of equally delectable GIRLIES draped
|
|
|
073263 |
around in the seductively poulticed room. They look at him smilingly and
|
|
|
073263 |
wave.
|
|
|
073263 |
"Monty Python and the Holy Grail" PYTHON (MONTY) PICTURES LTD
|
|
|
073263 |
|
|
|
073263 |
/// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
|
|
|
073263 |
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
|
|
|
073263 |
\\\ an exciting new programming language -- http://www.Zimbu.org ///
|
|
|
073263 |
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
|