summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2013-08-03 13:41:15 +0200
committerBram Moolenaar <Bram@vim.org>2013-08-03 13:41:15 +0200
commitc528b1d1edb5ab87242704c82422ae363647603c (patch)
tree953c4c4f99e91d8debee94a481523f38443f69ed
parent364ab2ffd3ecc88f9547c28d51c138d53fead488 (diff)
downloadvim-git-c528b1d1edb5ab87242704c82422ae363647603c.tar.gz
updated for version 7.4b.011v7.4b.011
Problem: ":he \%(\)" does not work. (ZyX) Solution: Add an exception to the list.
-rw-r--r--src/ex_cmds.c4
-rw-r--r--src/version.c2
2 files changed, 4 insertions, 2 deletions
diff --git a/src/ex_cmds.c b/src/ex_cmds.c
index cc4cedf2e..3098df9ed 100644
--- a/src/ex_cmds.c
+++ b/src/ex_cmds.c
@@ -5924,14 +5924,14 @@ find_help_tags(arg, num_matches, matches, keep_lang)
int i;
static char *(mtable[]) = {"*", "g*", "[*", "]*", ":*",
"/*", "/\\*", "\"*", "**",
- "cpo-*", "/\\(\\)",
+ "cpo-*", "/\\(\\)", "/\\%(\\)",
"?", ":?", "?<CR>", "g?", "g?g?", "g??", "z?",
"/\\?", "/\\z(\\)", "\\=", ":s\\=",
"[count]", "[quotex]", "[range]",
"[pattern]", "\\|", "\\%$"};
static char *(rtable[]) = {"star", "gstar", "[star", "]star", ":star",
"/star", "/\\\\star", "quotestar", "starstar",
- "cpo-star", "/\\\\(\\\\)",
+ "cpo-star", "/\\\\(\\\\)", "/\\\\%(\\\\)",
"?", ":?", "?<CR>", "g?", "g?g?", "g??", "z?",
"/\\\\?", "/\\\\z(\\\\)", "\\\\=", ":s\\\\=",
"\\[count]", "\\[quotex]", "\\[range]",
diff --git a/src/version.c b/src/version.c
index 61694a467..676245d7b 100644
--- a/src/version.c
+++ b/src/version.c
@@ -728,6 +728,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 11,
+/**/
10,
/**/
9,