From: Bram Moolenaar Date: Thu, 9 Feb 2017 10:54:50 +0000 (+0100) Subject: patch 8.0.0316: :help z? does not work X-Git-Tag: v8.0.0316 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=dad7309dd22f0c6b5de0b031acd7f54d3aa94326;p=vim patch 8.0.0316: :help z? does not work Problem: ":help z?" does not work. (Pavol Juhas) Solution: Remove exception for z?. --- diff --git a/src/ex_cmds.c b/src/ex_cmds.c index 8fda8d491..5b118e564 100644 --- a/src/ex_cmds.c +++ b/src/ex_cmds.c @@ -6503,7 +6503,7 @@ find_help_tags( static char *(mtable[]) = {"*", "g*", "[*", "]*", ":*", "/*", "/\\*", "\"*", "**", "cpo-*", "/\\(\\)", "/\\%(\\)", - "?", ":?", "?", "g?", "g?g?", "g??", "z?", + "?", ":?", "?", "g?", "g?g?", "g??", "/\\?", "/\\z(\\)", "\\=", ":s\\=", "[count]", "[quotex]", "[range]", ":[range]", @@ -6513,7 +6513,7 @@ find_help_tags( static char *(rtable[]) = {"star", "gstar", "[star", "]star", ":star", "/star", "/\\\\star", "quotestar", "starstar", "cpo-star", "/\\\\(\\\\)", "/\\\\%(\\\\)", - "?", ":?", "?", "g?", "g?g?", "g??", "z?", + "?", ":?", "?", "g?", "g?g?", "g??", "/\\\\?", "/\\\\z(\\\\)", "\\\\=", ":s\\\\=", "\\[count]", "\\[quotex]", "\\[range]", ":\\[range]", diff --git a/src/version.c b/src/version.c index 71622392f..68af6ff11 100644 --- a/src/version.c +++ b/src/version.c @@ -764,6 +764,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 316, /**/ 315, /**/