mirror of
https://github.com/neovim/neovim.git
synced 2025-09-28 22:18:33 +00:00
vim-patch:8.1.1261: no error for quickfix commands with negative range
Problem: No error for quickfix commands with negative range. Solution: Add ADDR_UNSIGNED and use it for quickfix commands. Make assert_fails() show the command if the error doesn't match.25190db225
N/A patches for version.c: vim-patch:8.2.0113: "make cmdidxs" fails Problem: "make cmdidxs" fails. Solution: Allow address for ":cquit". Add --not-a-term to avoid a delay.9b24dfcb9f
This commit is contained in:
@@ -2113,7 +2113,7 @@ void ex_listdo(exarg_T *eap)
|
||||
}
|
||||
} else if (eap->cmdidx == CMD_cdo || eap->cmdidx == CMD_ldo
|
||||
|| eap->cmdidx == CMD_cfdo || eap->cmdidx == CMD_lfdo) {
|
||||
qf_size = qf_get_size(eap);
|
||||
qf_size = qf_get_valid_size(eap);
|
||||
assert(eap->line1 >= 0);
|
||||
if (qf_size == 0 || (size_t)eap->line1 > qf_size) {
|
||||
buf = NULL;
|
||||
|
Reference in New Issue
Block a user