vim-patch:8.2.3813: confusing error when using :cc without error list (#19978)

Problem:    confusing error when using :cc without error list. (Gary Johnson)
Solution:   Give the "no errors" error.
a5d78d1f11

Cherry-pick e_quickfix -> e_no_errors rename from patch 8.2.3190.
This commit is contained in:
zeertzjq
2022-08-28 07:22:27 +08:00
committed by GitHub
parent 09c6ce8c4e
commit 7a9b593796
4 changed files with 15 additions and 6 deletions

View File

@@ -85,6 +85,12 @@ func s:setup_commands(cchar)
endif
endfunc
" This must be run before any error lists are created.
func Test_AA_cc_no_errors()
call assert_fails('cc', 'E42:')
call assert_fails('ll', 'E42:')
endfunc
" Tests for the :clist and :llist commands
func XlistTests(cchar)
call s:setup_commands(a:cchar)