forked from aniani/vim
patch 8.2.3813: confusing error when using :cc without error list
Problem: confusing error when using :cc without error list. (Gary Johnson) Solution: Give the "no errors" error.
This commit is contained in:
@@ -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:
|
||||
|
Reference in New Issue
Block a user