mirror of
https://github.com/neovim/neovim.git
synced 2025-09-29 06:28:35 +00:00
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:
@@ -2040,7 +2040,7 @@ static int 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;
|
||||
}
|
||||
@@ -6264,7 +6264,7 @@ static long nfa_regtry(nfa_regprog_T *prog, colnr_T col, proftime_T *tm)
|
||||
fprintf(f, "\n\n");
|
||||
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