summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2017-02-09 11:54:50 +0100
committerBram Moolenaar <Bram@vim.org>2017-02-09 11:54:50 +0100
commitdad7309dd22f0c6b5de0b031acd7f54d3aa94326 (patch)
tree838fd1c1b32e3e6872529b5b2796ec2a0c4b7ef5 /src
parenta76f59d817e2da31d83b4f0e978b52abe81e0ae9 (diff)
patch 8.0.0316: :help z? does not workv8.0.0316
Problem: ":help z?" does not work. (Pavol Juhas) Solution: Remove exception for z?.
Diffstat (limited to 'src')
-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 8fda8d491e..5b118e564c 100644
--- a/src/ex_cmds.c
+++ b/src/ex_cmds.c
@@ -6503,7 +6503,7 @@ find_help_tags(
static char *(mtable[]) = {"*", "g*", "[*", "]*", ":*",
"/*", "/\\*", "\"*", "**",
"cpo-*", "/\\(\\)", "/\\%(\\)",
- "?", ":?", "?<CR>", "g?", "g?g?", "g??", "z?",
+ "?", ":?", "?<CR>", "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", "/\\\\(\\\\)", "/\\\\%(\\\\)",
- "?", ":?", "?<CR>", "g?", "g?g?", "g??", "z?",
+ "?", ":?", "?<CR>", "g?", "g?g?", "g??",
"/\\\\?", "/\\\\z(\\\\)", "\\\\=", ":s\\\\=",
"\\[count]", "\\[quotex]",
"\\[range]", ":\\[range]",
diff --git a/src/version.c b/src/version.c
index 71622392fb..68af6ff114 100644
--- a/src/version.c
+++ b/src/version.c
@@ -765,6 +765,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 316,
+/**/
315,
/**/
314,