Skip to content

Commit 3c867da

Browse files
committed
patch 8.1.0099: exclamation mark in error message not needed
Problem: Exclamation mark in error message not needed. Solution: Remove the exclamation mark.
1 parent bcf9442 commit 3c867da

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

src/regexp_nfa.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2232,7 +2232,7 @@ nfa_regpiece(void)
22322232

22332233
if (re_multi_type(peekchr()) != NOT_MULTI)
22342234
/* Can't have a multi follow a multi. */
2235-
EMSG_RET_FAIL(_("E871: (NFA regexp) Can't have a multi follow a multi !"));
2235+
EMSG_RET_FAIL(_("E871: (NFA regexp) Can't have a multi follow a multi"));
22362236

22372237
return OK;
22382238
}
@@ -7029,7 +7029,7 @@ nfa_regtry(
70297029
fclose(f);
70307030
}
70317031
else
7032-
EMSG(_("Could not open temporary log file for writing "));
7032+
EMSG("Could not open temporary log file for writing");
70337033
#endif
70347034

70357035
clear_sub(&subs.norm);

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -761,6 +761,8 @@ static char *(features[]) =
761761

762762
static int included_patches[] =
763763
{ /* Add new patch number below this line */
764+
/**/
765+
99,
764766
/**/
765767
98,
766768
/**/

0 commit comments

Comments
 (0)