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:
Jan Edmund Lazo
2018-08-11 07:58:49 -04:00
parent 96dc8c0d28
commit 9c4f6307b7

View File

@@ -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