From 3dbde6226dbe05289215c1145e35961539ecd5a0 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Thu, 5 Apr 2012 16:05:05 +0200 Subject: [PATCH] updated for version 7.3.488 Problem: ":help!" in a help file does not work as document. Solution: When in a help file don't give an error message. (thinca) --- src/ex_cmds.c | 2 +- src/version.c | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/ex_cmds.c b/src/ex_cmds.c index 661fba6c7..2f0f1f4d3 100644 --- a/src/ex_cmds.c +++ b/src/ex_cmds.c @@ -5546,7 +5546,7 @@ ex_help(eap) } arg = eap->arg; - if (eap->forceit && *arg == NUL) + if (eap->forceit && *arg == NUL && !curbuf->b_help) { EMSG(_("E478: Don't panic!")); return; diff --git a/src/version.c b/src/version.c index ba2b03045..8bcdd3075 100644 --- a/src/version.c +++ b/src/version.c @@ -714,6 +714,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 488, /**/ 487, /**/ -- 2.50.1