mirror of
https://github.com/vim/vim.git
synced 2025-09-29 04:34:16 -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:
@@ -2232,7 +2232,7 @@ nfa_regpiece(void)
|
||||
|
||||
if (re_multi_type(peekchr()) != NOT_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;
|
||||
}
|
||||
@@ -7029,7 +7029,7 @@ nfa_regtry(
|
||||
fclose(f);
|
||||
}
|
||||
else
|
||||
EMSG(_("Could not open temporary log file for writing "));
|
||||
EMSG("Could not open temporary log file for writing");
|
||||
#endif
|
||||
|
||||
clear_sub(&subs.norm);
|
||||
|
Reference in New Issue
Block a user