# HG changeset patch # User Christian Brabandt # Date 1529757905 -7200 # Node ID 99a96be1225450c35768ee1570f8d4bea8ba9f62 # Parent 752c3302a82292ff878cea7e47d6cbc16def7ece patch 8.1.0099: exclamation mark in error message not needed commit https://github.com/vim/vim/commit/3c867daaf09e8ac6ce4b9d43d6fbbfdd7689702d Author: Bram Moolenaar 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. diff --git a/src/regexp_nfa.c b/src/regexp_nfa.c --- 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 --- 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,