# HG changeset patch # User Christian Brabandt # Date 1529696706 -7200 # Node ID c9342023ea6fe966961356f141276a7589961c21 # Parent 49172c13eab2fafd35163732139eb1bd1ba8b0e7 patch 8.1.0097: superfluous space before exclamation mark commit https://github.com/vim/vim/commit/5efa0102de6ed6049fb19e1e83787e5b3b24b6a2 Author: Bram Moolenaar 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. diff --git a/src/regexp_nfa.c b/src/regexp_nfa.c --- 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 diff --git a/src/version.c b/src/version.c --- 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,