# HG changeset patch # User Christian Brabandt # Date 1486638005 -3600 # Node ID b760fa91f8b3435237641c8eda66f885052acf62 # Parent 0a9195c2553dde87f68c56f8b62576736eb77483 patch 8.0.0316: :help z? does not work commit https://github.com/vim/vim/commit/dad7309dd22f0c6b5de0b031acd7f54d3aa94326 Author: Bram Moolenaar Date: Thu Feb 9 11:54:50 2017 +0100 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 --- 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 --- 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,