mirror of
https://github.com/neovim/neovim.git
synced 2026-08-28 01:51:52 +00:00
vim-patch:8.1.0097: superfluous space before exclamation mark
Problem: Superfluous space before exclamation mark.
Solution: Remove the space. Don't translate debug message.
5efa0102de
This commit is contained in:
@@ -2723,7 +2723,7 @@ static void st_error(int *postfix, int *end, int *p)
|
||||
fclose(df);
|
||||
}
|
||||
#endif
|
||||
EMSG(_("E874: (NFA) Could not pop the stack !"));
|
||||
EMSG(_("E874: (NFA) Could not pop the stack!"));
|
||||
}
|
||||
|
||||
/*
|
||||
@@ -4964,7 +4964,7 @@ static int nfa_regmatch(nfa_regprog_T *prog, nfa_state_T *start,
|
||||
FILE *debug = fopen(NFA_REGEXP_DEBUG_LOG, "a");
|
||||
|
||||
if (debug == NULL) {
|
||||
EMSG2(_("(NFA) COULD NOT OPEN %s !"), NFA_REGEXP_DEBUG_LOG);
|
||||
EMSG2("(NFA) COULD NOT OPEN %s!", NFA_REGEXP_DEBUG_LOG);
|
||||
return false;
|
||||
}
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user