diff options
author | Jan Edmund Lazo <janedmundlazo@hotmail.com> | 2018-08-11 07:45:02 -0400 |
---|---|---|
committer | Jan Edmund Lazo <janedmundlazo@hotmail.com> | 2018-08-11 14:32:59 -0400 |
commit | b3ad509905df03c81d128e395db5231434f68367 (patch) | |
tree | 3476dfe6bc901e8dc57b4d01fad8eed481567aa0 /src/nvim/regexp_nfa.c | |
parent | cb708d203b36fff16b6f01a81c30ca20b51c82fc (diff) | |
download | rneovim-b3ad509905df03c81d128e395db5231434f68367.tar.gz rneovim-b3ad509905df03c81d128e395db5231434f68367.tar.bz2 rneovim-b3ad509905df03c81d128e395db5231434f68367.zip |
vim-patch:8.1.0078: "..." used inconsistently in messages
Problem: "..." used inconsistently in messages.
Solution: Drop the space before " ...".
https://github.com/vim/vim/commit/c166927a32fe5c054ad35deecff00aa12c629cf7
Diffstat (limited to 'src/nvim/regexp_nfa.c')
-rw-r--r-- | src/nvim/regexp_nfa.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/regexp_nfa.c b/src/nvim/regexp_nfa.c index c5d46fcbbf..5f5e1323ab 100644 --- a/src/nvim/regexp_nfa.c +++ b/src/nvim/regexp_nfa.c @@ -4698,7 +4698,7 @@ static int recursive_regmatch(nfa_state_T *state, nfa_pim_T *pim, nfa_regprog_T fprintf(log_fd, "****************************\n"); } else { EMSG(_( - "Could not open temporary log file for writing, displaying on stderr ... ")); + "Could not open temporary log file for writing, displaying on stderr... ")); log_fd = stderr; } #endif |