diff options
author | Bram Moolenaar <Bram@vim.org> | 2018-06-23 14:34:28 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2018-06-23 14:34:28 +0200 |
commit | 3c867daaf09e8ac6ce4b9d43d6fbbfdd7689702d (patch) | |
tree | 8fcd5b94843ef23c3a9b945f3da2f5b45bbe2a16 /src | |
parent | bcf9442307075bac40d44328c8bf7ea21857b138 (diff) | |
download | vim-git-3c867daaf09e8ac6ce4b9d43d6fbbfdd7689702d.tar.gz |
patch 8.1.0099: exclamation mark in error message not neededv8.1.0099
Problem: Exclamation mark in error message not needed.
Solution: Remove the exclamation mark.
Diffstat (limited to 'src')
-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 e6296993d..5a69c81a4 100644 --- a/src/regexp_nfa.c +++ b/src/regexp_nfa.c @@ -2232,7 +2232,7 @@ nfa_regpiece(void) if (re_multi_type(peekchr()) != NOT_MULTI) /* Can't have a multi follow a multi. */ - EMSG_RET_FAIL(_("E871: (NFA regexp) Can't have a multi follow a multi !")); + EMSG_RET_FAIL(_("E871: (NFA regexp) Can't have a multi follow a multi")); return OK; } @@ -7029,7 +7029,7 @@ nfa_regtry( fclose(f); } else - EMSG(_("Could not open temporary log file for writing ")); + EMSG("Could not open temporary log file for writing"); #endif clear_sub(&subs.norm); diff --git a/src/version.c b/src/version.c index 5cf6882bf..23b724675 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 */ /**/ + 99, +/**/ 98, /**/ 97, |