From 36099197244a86f26f3b612e34d5d7b657039b30 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Wed, 17 Mar 2010 13:05:11 +0000 Subject: [PATCH] [7.2.395] In help CTRL=] on g?g? escapes the ?, causing it to fail. (Tony Problem: In help CTRL=] on g?g? escapes the ?, causing it to fail. (Tony Mechelynck) Solution: Don't escape ? for a help command. (Sergey Khorev) Patch 7.2.395 --- src/normal.c | 2 +- src/version.c | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/normal.c b/src/normal.c index fade0fc3..8b9fea76 100644 --- a/src/normal.c +++ b/src/normal.c @@ -5526,11 +5526,11 @@ nv_ident(cap) break; default: + tag_cmd = TRUE; if (curbuf->b_help) STRCPY(buf, "he! "); else { - tag_cmd = TRUE; if (g_cmd) STRCPY(buf, "tj "); else diff --git a/src/version.c b/src/version.c index c799bd8a..ba75f61a 100644 --- a/src/version.c +++ b/src/version.c @@ -682,6 +682,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 395, +/**/ 394, /**/ 393, -- 2.11.4.GIT