vim-patch:8.1.0099: exclamation mark in error message not needed

Problem:    Exclamation mark in error message not needed.
Solution:   Remove the exclamation mark.
3c867daaf0
This commit is contained in:
Jan Edmund Lazo
2018-08-11 08:01:29 -04:00
parent 9c4f6307b7
commit 5f4a231e3f

View File

@@ -2040,7 +2040,7 @@ static int 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;
} }
@@ -6264,7 +6264,7 @@ static long nfa_regtry(nfa_regprog_T *prog, colnr_T col, proftime_T *tm)
fprintf(f, "\n\n"); fprintf(f, "\n\n");
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);