diff options
author | Bram Moolenaar <Bram@vim.org> | 2018-06-22 21:42:30 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2018-06-22 21:42:30 +0200 |
commit | 5efa0102de6ed6049fb19e1e83787e5b3b24b6a2 (patch) | |
tree | a787271674a0767d7fdd0d550dd72eebd0b51bdf | |
parent | 8c55533c6f109db2a0fff69651887f9474eb09c6 (diff) | |
download | vim-git-5efa0102de6ed6049fb19e1e83787e5b3b24b6a2.tar.gz |
patch 8.1.0097: superfluous space before exclamation markv8.1.0097
Problem: Superfluous space before exclamation mark.
Solution: Remove the space. Don't translate debug message.
-rw-r--r-- | src/regexp_nfa.c | 4 | ||||
-rw-r--r-- | src/version.c | 2 |
2 files changed, 4 insertions, 2 deletions
diff --git a/src/regexp_nfa.c b/src/regexp_nfa.c index 3c270e689..0ead03af0 100644 --- a/src/regexp_nfa.c +++ b/src/regexp_nfa.c @@ -2989,7 +2989,7 @@ st_error(int *postfix UNUSED, int *end UNUSED, int *p UNUSED) fclose(df); } #endif - EMSG(_("E874: (NFA) Could not pop the stack !")); + EMSG(_("E874: (NFA) Could not pop the stack!")); } /* @@ -5593,7 +5593,7 @@ nfa_regmatch( 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 diff --git a/src/version.c b/src/version.c index eda5ad42d..f440ff953 100644 --- a/src/version.c +++ b/src/version.c @@ -762,6 +762,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 97, +/**/ 96, /**/ 95, |