summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2018-06-22 21:42:30 +0200
committerBram Moolenaar <Bram@vim.org>2018-06-22 21:42:30 +0200
commit5efa0102de6ed6049fb19e1e83787e5b3b24b6a2 (patch)
treea787271674a0767d7fdd0d550dd72eebd0b51bdf
parent8c55533c6f109db2a0fff69651887f9474eb09c6 (diff)
downloadvim-5efa0102de6ed6049fb19e1e83787e5b3b24b6a2.zip
patch 8.1.0097: superfluous space before exclamation mark
Problem: Superfluous space before exclamation mark. Solution: Remove the space. Don't translate debug message.
-rw-r--r--src/regexp_nfa.c4
-rw-r--r--src/version.c2
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,