# HG changeset patch # User Bram Moolenaar # Date 1375530075 -7200 # Node ID 7d1f89b2710305a00e6adac35a1fa6edd47982ba # Parent d154f5cf7f538fce51b90ef19b68d510464b1dd9 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 --- a/src/ex_cmds.c +++ b/src/ex_cmds.c @@ -5924,14 +5924,14 @@ find_help_tags(arg, num_matches, matches 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 --- 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,