diff options
author | Jan Edmund Lazo <janedmundlazo@hotmail.com> | 2018-08-11 08:01:29 -0400 |
---|---|---|
committer | Jan Edmund Lazo <janedmundlazo@hotmail.com> | 2018-08-11 14:32:59 -0400 |
commit | 5f4a231e3f239f02aff485ed8b4776c7481c4823 (patch) | |
tree | a2b406501af21ef75ea3a75e890cac8c46c80f90 | |
parent | 9c4f6307b75aa3a4702a3bc65880d0e6c91b82a1 (diff) | |
download | rneovim-5f4a231e3f239f02aff485ed8b4776c7481c4823.tar.gz rneovim-5f4a231e3f239f02aff485ed8b4776c7481c4823.tar.bz2 rneovim-5f4a231e3f239f02aff485ed8b4776c7481c4823.zip |
vim-patch:8.1.0099: exclamation mark in error message not needed
Problem: Exclamation mark in error message not needed.
Solution: Remove the exclamation mark.
https://github.com/vim/vim/commit/3c867daaf09e8ac6ce4b9d43d6fbbfdd7689702d
-rw-r--r-- | src/nvim/regexp_nfa.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/regexp_nfa.c b/src/nvim/regexp_nfa.c index 2c927585bf..95dc17f57f 100644 --- a/src/nvim/regexp_nfa.c +++ b/src/nvim/regexp_nfa.c @@ -2040,7 +2040,7 @@ static int 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; } @@ -6264,7 +6264,7 @@ static long nfa_regtry(nfa_regprog_T *prog, colnr_T col, proftime_T *tm) fprintf(f, "\n\n"); 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); |