diff options
author | zeertzjq <zeertzjq@outlook.com> | 2022-08-07 15:22:48 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-07 15:22:48 +0800 |
commit | fea15adad394619aaea69b627be249f8a20dc2ed (patch) | |
tree | b016aaf3d9c8cd62d701ebe8f0dbaf17f645bc3a /src/nvim/quickfix.c | |
parent | 0fdf59ac9d30d8874ba6eba22a8bdfb41c1603b7 (diff) | |
parent | 48051ed62cde6ab572bcd48768fe43740f3cd48c (diff) | |
download | rneovim-fea15adad394619aaea69b627be249f8a20dc2ed.tar.gz rneovim-fea15adad394619aaea69b627be249f8a20dc2ed.tar.bz2 rneovim-fea15adad394619aaea69b627be249f8a20dc2ed.zip |
Merge pull request #19669 from zeertzjq/vim-8.2.1278
vim-patch:8.2.{1278,1280,1281}: error message improvements
Diffstat (limited to 'src/nvim/quickfix.c')
-rw-r--r-- | src/nvim/quickfix.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/quickfix.c b/src/nvim/quickfix.c index 9b46fad67a..99129bd15e 100644 --- a/src/nvim/quickfix.c +++ b/src/nvim/quickfix.c @@ -3120,7 +3120,7 @@ void qf_list(exarg_T *eap) int idx1 = 1; int idx2 = -1; if (!get_list_range((char_u **)&arg, &idx1, &idx2) || *arg != NUL) { - emsg(_(e_trailing)); + semsg(_(e_trailing_arg), arg); return; } qf_list_T *qfl = qf_get_curlist(qi); |