1
0
forked from aniani/vim

patch 9.0.0355: check for uppercase char in autoload name is wrong

Problem:    Check for uppercase char in autoload name is wrong, it checks the
            name of the script.
Solution:   Remove the check. (closes #11031)
This commit is contained in:
thinca
2022-09-02 11:25:37 +01:00
committed by Bram Moolenaar
parent a906e8e1ab
commit 6c667bdc94
3 changed files with 9 additions and 1 deletions

View File

@@ -8,6 +8,10 @@ func Test_let()
let Test104#numvar = function('tr')
call assert_equal("function('tr')", string(Test104#numvar))
let foo#tr = function('tr')
call assert_equal("function('tr')", string(foo#tr))
unlet foo#tr
let a = 1
let b = 2