0
0
mirror of https://github.com/vim/vim.git synced 2025-09-23 03:43:49 -04:00

patch 8.1.0099: exclamation mark in error message not needed

Problem:    Exclamation mark in error message not needed.
Solution:   Remove the exclamation mark.
This commit is contained in:
Bram Moolenaar
2018-06-23 14:34:28 +02:00
parent bcf9442307
commit 3c867daaf0
2 changed files with 4 additions and 2 deletions

View File

@@ -2232,7 +2232,7 @@ nfa_regpiece(void)
if (re_multi_type(peekchr()) != NOT_MULTI) if (re_multi_type(peekchr()) != NOT_MULTI)
/* Can't have a multi follow a multi. */ /* Can't have a multi follow a multi. */
EMSG_RET_FAIL(_("E871: (NFA regexp) Can't have a multi follow a multi !")); EMSG_RET_FAIL(_("E871: (NFA regexp) Can't have a multi follow a multi"));
return OK; return OK;
} }
@@ -7029,7 +7029,7 @@ nfa_regtry(
fclose(f); fclose(f);
} }
else else
EMSG(_("Could not open temporary log file for writing ")); EMSG("Could not open temporary log file for writing");
#endif #endif
clear_sub(&subs.norm); clear_sub(&subs.norm);

View File

@@ -761,6 +761,8 @@ static char *(features[]) =
static int included_patches[] = static int included_patches[] =
{ /* Add new patch number below this line */ { /* Add new patch number below this line */
/**/
99,
/**/ /**/
98, 98,
/**/ /**/