comparison src/ex_docmd.c @ 26568:c675779d5f2b v8.2.3813

patch 8.2.3813: confusing error when using :cc without error list Commit: https://github.com/vim/vim/commit/a5d78d1f1123d9ffccd5ba58f2d2dec44cc59e94 Author: Bram Moolenaar <Bram@vim.org> Date: Wed Dec 15 12:28:22 2021 +0000 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.
author Bram Moolenaar <Bram@vim.org>
date Wed, 15 Dec 2021 13:30:04 +0100
parents 255bc9a08e58
children 9f7568104726
comparison
equal deleted inserted replaced
26567:703ca708a48c 26568:c675779d5f2b
4631 break; 4631 break;
4632 case ADDR_QUICKFIX: 4632 case ADDR_QUICKFIX:
4633 #ifdef FEAT_QUICKFIX 4633 #ifdef FEAT_QUICKFIX
4634 // No error for value that is too big, will use the last entry. 4634 // No error for value that is too big, will use the last entry.
4635 if (eap->line2 <= 0) 4635 if (eap->line2 <= 0)
4636 {
4637 if (eap->addr_count == 0)
4638 return _(e_no_errors);
4636 return _(e_invalid_range); 4639 return _(e_invalid_range);
4640 }
4637 #endif 4641 #endif
4638 break; 4642 break;
4639 case ADDR_QUICKFIX_VALID: 4643 case ADDR_QUICKFIX_VALID:
4640 #ifdef FEAT_QUICKFIX 4644 #ifdef FEAT_QUICKFIX
4641 if ((eap->line2 != 1 && eap->line2 > qf_get_valid_size(eap)) 4645 if ((eap->line2 != 1 && eap->line2 > qf_get_valid_size(eap))