Skip to content

Commit

Permalink
patch 8.1.0099: exclamation mark in error message not needed
Browse files Browse the repository at this point in the history
Problem:    Exclamation mark in error message not needed.
Solution:   Remove the exclamation mark.
  • Loading branch information
brammool committed Jun 23, 2018
1 parent bcf9442 commit 3c867da
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/regexp_nfa.c
Expand Up @@ -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;
}
Expand Down Expand Up @@ -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);
Expand Down
2 changes: 2 additions & 0 deletions src/version.c
Expand Up @@ -761,6 +761,8 @@ static char *(features[]) =

static int included_patches[] =
{ /* Add new patch number below this line */
/**/
99,
/**/
98,
/**/
Expand Down

0 comments on commit 3c867da

Please sign in to comment.