From: Bram Moolenaar Date: Sat, 3 Aug 2013 11:41:15 +0000 (+0200) Subject: updated for version 7.4b.011 X-Git-Tag: v7.4b.011 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c528b1d1edb5ab87242704c82422ae363647603c;p=vim updated for version 7.4b.011 Problem: ":he \%(\)" does not work. (ZyX) Solution: Add an exception to the list. --- 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-*", "/\\(\\)", "/\\%(\\)", "?", ":?", "?", "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", "/\\\\(\\\\)", "/\\\\%(\\\\)", "?", ":?", "?", "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 @@ -727,6 +727,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 11, /**/ 10, /**/