mirror of
https://github.com/vim/vim.git
synced 2025-10-03 05:14:07 -04:00
patch 8.2.0285: unused error message; cannot create s:var
Problem: Unused error message. Cannot create s:var. Solution: Remove the error message. Make assignment to s:var work.
This commit is contained in:
@@ -65,6 +65,8 @@ def Test_assignment()
|
||||
assert_equal('xxxyyy', s:appendToMe)
|
||||
s:addToMe += 222
|
||||
assert_equal(333, s:addToMe)
|
||||
s:newVar = 'new'
|
||||
assert_equal('new', s:newVar)
|
||||
enddef
|
||||
|
||||
func Test_assignment_failure()
|
||||
|
Reference in New Issue
Block a user