Skip to content

Commit dad7309

Browse files
committed
patch 8.0.0316: :help z? does not work
Problem: ":help z?" does not work. (Pavol Juhas) Solution: Remove exception for z?.
1 parent a76f59d commit dad7309

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

src/ex_cmds.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6503,7 +6503,7 @@ find_help_tags(
65036503
static char *(mtable[]) = {"*", "g*", "[*", "]*", ":*",
65046504
"/*", "/\\*", "\"*", "**",
65056505
"cpo-*", "/\\(\\)", "/\\%(\\)",
6506-
"?", ":?", "?<CR>", "g?", "g?g?", "g??", "z?",
6506+
"?", ":?", "?<CR>", "g?", "g?g?", "g??",
65076507
"/\\?", "/\\z(\\)", "\\=", ":s\\=",
65086508
"[count]", "[quotex]",
65096509
"[range]", ":[range]",
@@ -6513,7 +6513,7 @@ find_help_tags(
65136513
static char *(rtable[]) = {"star", "gstar", "[star", "]star", ":star",
65146514
"/star", "/\\\\star", "quotestar", "starstar",
65156515
"cpo-star", "/\\\\(\\\\)", "/\\\\%(\\\\)",
6516-
"?", ":?", "?<CR>", "g?", "g?g?", "g??", "z?",
6516+
"?", ":?", "?<CR>", "g?", "g?g?", "g??",
65176517
"/\\\\?", "/\\\\z(\\\\)", "\\\\=", ":s\\\\=",
65186518
"\\[count]", "\\[quotex]",
65196519
"\\[range]", ":\\[range]",

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -764,6 +764,8 @@ static char *(features[]) =
764764

765765
static int included_patches[] =
766766
{ /* Add new patch number below this line */
767+
/**/
768+
316,
767769
/**/
768770
315,
769771
/**/

0 commit comments

Comments
 (0)