1
0
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:
Bram Moolenaar
2021-12-15 12:28:22 +00:00
parent 57bc2333b1
commit a5d78d1f11
3 changed files with 12 additions and 0 deletions

View File

@@ -86,6 +86,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)