summaryrefslogtreecommitdiffstats
path: root/src/ex_docmd.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2021-12-15 12:28:22 +0000
committerBram Moolenaar <Bram@vim.org>2021-12-15 12:28:22 +0000
commita5d78d1f1123d9ffccd5ba58f2d2dec44cc59e94 (patch)
tree514281ec767d602788fa8989b21cc899d91be808 /src/ex_docmd.c
parent57bc2333b1d713bc54f8e33ef3ef7ac169af2ac4 (diff)
patch 8.2.3813: confusing error when using :cc without error listv8.2.3813
Problem: confusing error when using :cc without error list. (Gary Johnson) Solution: Give the "no errors" error.
Diffstat (limited to 'src/ex_docmd.c')
-rw-r--r--src/ex_docmd.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/ex_docmd.c b/src/ex_docmd.c
index aff4c95f93..c06a508abf 100644
--- a/src/ex_docmd.c
+++ b/src/ex_docmd.c
@@ -4633,7 +4633,11 @@ invalid_range(exarg_T *eap)
#ifdef FEAT_QUICKFIX
// No error for value that is too big, will use the last entry.
if (eap->line2 <= 0)
+ {
+ if (eap->addr_count == 0)
+ return _(e_no_errors);
return _(e_invalid_range);
+ }
#endif
break;
case ADDR_QUICKFIX_VALID: