diff options
author | Jan Edmund Lazo <janedmundlazo@hotmail.com> | 2018-08-11 07:58:49 -0400 |
---|---|---|
committer | Jan Edmund Lazo <janedmundlazo@hotmail.com> | 2018-08-11 14:32:59 -0400 |
commit | 9c4f6307b75aa3a4702a3bc65880d0e6c91b82a1 (patch) | |
tree | 28e969865cf3ae76b73e0f3d106d5172af3a111f | |
parent | 96dc8c0d28da90445875d4ecfa8c057e2994cb7f (diff) | |
download | rneovim-9c4f6307b75aa3a4702a3bc65880d0e6c91b82a1.tar.gz rneovim-9c4f6307b75aa3a4702a3bc65880d0e6c91b82a1.tar.bz2 rneovim-9c4f6307b75aa3a4702a3bc65880d0e6c91b82a1.zip |
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.
https://github.com/vim/vim/commit/5efa0102de6ed6049fb19e1e83787e5b3b24b6a2
-rw-r--r-- | src/nvim/regexp_nfa.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/regexp_nfa.c b/src/nvim/regexp_nfa.c index 9b1a37a4ff..2c927585bf 100644 --- a/src/nvim/regexp_nfa.c +++ b/src/nvim/regexp_nfa.c @@ -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 |