aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/ex_getln.c
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2022-08-07 14:09:32 +0800
committerzeertzjq <zeertzjq@outlook.com>2022-08-07 14:39:19 +0800
commit48051ed62cde6ab572bcd48768fe43740f3cd48c (patch)
treeb016aaf3d9c8cd62d701ebe8f0dbaf17f645bc3a /src/nvim/ex_getln.c
parentd0686540f56154e269e11eb0cc6cd3eb759f2b77 (diff)
downloadrneovim-48051ed62cde6ab572bcd48768fe43740f3cd48c.tar.gz
rneovim-48051ed62cde6ab572bcd48768fe43740f3cd48c.tar.bz2
rneovim-48051ed62cde6ab572bcd48768fe43740f3cd48c.zip
vim-patch:8.2.1281: the "trailing characters" error can be hard to understand
Problem: The "trailing characters" error can be hard to understand. Solution: Add the trailing characters to the message. https://github.com/vim/vim/commit/2d06bfde29bd3a62fc85823d2aa719ef943bd319
Diffstat (limited to 'src/nvim/ex_getln.c')
-rw-r--r--src/nvim/ex_getln.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/ex_getln.c b/src/nvim/ex_getln.c
index 6240ac6b37..07a0e68884 100644
--- a/src/nvim/ex_getln.c
+++ b/src/nvim/ex_getln.c
@@ -6525,7 +6525,7 @@ void ex_history(exarg_T *eap)
histype1 = 0;
histype2 = HIST_COUNT - 1;
} else {
- emsg(_(e_trailing));
+ semsg(_(e_trailing_arg), arg);
return;
}
} else {
@@ -6535,7 +6535,7 @@ void ex_history(exarg_T *eap)
end = arg;
}
if (!get_list_range(&end, &hisidx1, &hisidx2) || *end != NUL) {
- emsg(_(e_trailing));
+ semsg(_(e_trailing_arg), end);
return;
}