diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2020-09-07 17:03:19 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-07 17:03:19 -0700 |
commit | a90cd6e36a934280100bb3f28a32e5cbd7c5acf2 (patch) | |
tree | e1dcb93a85bd6821f745ce5305f2fc6d9402c20e /src/nvim/regexp_nfa.c | |
parent | d8e6a0396a1bdc19c9e15adb233540816274487d (diff) | |
parent | 951ef21de5ccca187cb9eaad7d7e5f3bad0c5966 (diff) | |
download | rneovim-a90cd6e36a934280100bb3f28a32e5cbd7c5acf2.tar.gz rneovim-a90cd6e36a934280100bb3f28a32e5cbd7c5acf2.tar.bz2 rneovim-a90cd6e36a934280100bb3f28a32e5cbd7c5acf2.zip |
Merge #12868 vim-patch:8.2.{1625,1630,1633}
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 506c4e87db..7cd1ae93d2 100644 --- a/src/nvim/regexp_nfa.c +++ b/src/nvim/regexp_nfa.c @@ -6519,7 +6519,7 @@ static long nfa_regexec_both(char_u *line, colnr_T startcol, /* Be paranoid... */ if (prog == NULL || line == NULL) { - EMSG(_(e_null)); + IEMSG(_(e_null)); goto theend; } |