patch 8.1.0097: superfluous space before exclamation mark v8.1.0097
authorBram Moolenaar <Bram@vim.org>
Fri, 22 Jun 2018 19:42:30 +0000 (21:42 +0200)
committerBram Moolenaar <Bram@vim.org>
Fri, 22 Jun 2018 19:42:30 +0000 (21:42 +0200)
Problem:    Superfluous space before exclamation mark.
Solution:   Remove the space.  Don't translate debug message.

src/regexp_nfa.c
src/version.c

index 3c270e6891d4b4780d7046f8b5a9cf2df8b76968..0ead03af0a1039fa45ca89d5a9a5e0d432d2590f 100644 (file)
@@ -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
index eda5ad42d71c500a99cf581cd21a17e49f6edebb..f440ff9535da0b1ee8e8feb9655a112dfa086c42 100644 (file)
@@ -761,6 +761,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    97,
 /**/
     96,
 /**/