Mercurial > vim
changeset 14159:c9342023ea6f v8.1.0097
patch 8.1.0097: superfluous space before exclamation mark
commit https://github.com/vim/vim/commit/5efa0102de6ed6049fb19e1e83787e5b3b24b6a2
Author: Bram Moolenaar <Bram@vim.org>
Date: Fri Jun 22 21:42:30 2018 +0200
patch 8.1.0097: superfluous space before exclamation mark
Problem: Superfluous space before exclamation mark.
Solution: Remove the space. Don't translate debug message.
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Fri, 22 Jun 2018 21:45:06 +0200 |
parents | 49172c13eab2 |
children | de4575cbbb2b |
files | src/regexp_nfa.c src/version.c |
diffstat | 2 files changed, 4 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/src/regexp_nfa.c +++ b/src/regexp_nfa.c @@ -2989,7 +2989,7 @@ st_error(int *postfix UNUSED, int *end U 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