diff options
author | Bram Moolenaar <Bram@vim.org> | 2017-02-09 11:54:50 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2017-02-09 11:54:50 +0100 |
commit | dad7309dd22f0c6b5de0b031acd7f54d3aa94326 (patch) | |
tree | 838fd1c1b32e3e6872529b5b2796ec2a0c4b7ef5 /src | |
parent | a76f59d817e2da31d83b4f0e978b52abe81e0ae9 (diff) | |
download | vim-dad7309dd22f0c6b5de0b031acd7f54d3aa94326.zip |
patch 8.0.0316: :help z? does not work
Problem: ":help z?" does not work. (Pavol Juhas)
Solution: Remove exception for z?.
Diffstat (limited to 'src')
-rw-r--r-- | src/ex_cmds.c | 4 | ||||
-rw-r--r-- | src/version.c | 2 |
2 files changed, 4 insertions, 2 deletions
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-*", "/\\(\\)", "/\\%(\\)", - "?", ":?", "?<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 71622392f..68af6ff11 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, |