mirror of
https://github.com/vim/vim.git
synced 2025-09-24 03:44:06 -04:00
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)
This commit is contained in:
@@ -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;
|
||||
|
@@ -714,6 +714,8 @@ static char *(features[]) =
|
||||
|
||||
static int included_patches[] =
|
||||
{ /* Add new patch number below this line */
|
||||
/**/
|
||||
488,
|
||||
/**/
|
||||
487,
|
||||
/**/
|
||||
|
Reference in New Issue
Block a user