changeset 14163:99a96be12254 v8.1.0099

patch 8.1.0099: exclamation mark in error message not needed commit https://github.com/vim/vim/commit/3c867daaf09e8ac6ce4b9d43d6fbbfdd7689702d Author: Bram Moolenaar <Bram@vim.org> Date: Sat Jun 23 14:34:28 2018 +0200 patch 8.1.0099: exclamation mark in error message not needed Problem: Exclamation mark in error message not needed. Solution: Remove the exclamation mark.
author Christian Brabandt <cb@256bit.org>
date Sat, 23 Jun 2018 14:45:05 +0200
parents 752c3302a822
children ea860ae813b9
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
@@ -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);
--- 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,