vim-patch: b:changedtick-related patches

vim-patch:8.0.0334
vim-patch:8.0.0335
vim-patch:8.0.0343
vim-patch:8.0.0345

Problem:    Can't access b:changedtick from a dict reference.
Solution:   Make changedtick a member of the b: dict. (inspired by neovim
            vim/vim#6112)
79518e2ace

vim-patch:8.0.0343: b:changedtick can be unlocked
Problem:    b:changedtick can be unlocked, even though it has no effect.
            (Nikolai Pavlov)
Solution:   Add a check and error E940. (closes #1496)

vim-patch:8.0.0345: islocked('d.changedtick') does not work
Problem:    islocked('d.changedtick') does not work.
Solution:   Make it work.

vim-patch:8.0.0335: functions test fails
Problem:    Functions test fails.
Solution:   Use the right buffer number.
507647da31
This commit is contained in:
Justin M. Keyes
2018-01-01 16:21:55 +01:00
parent 1d8c612f78
commit 321a46b724
4 changed files with 102 additions and 1 deletions

View File

@@ -2,9 +2,10 @@
" This makes testing go faster, since Vim doesn't need to restart.
source test_assign.vim
source test_changedtick.vim
source test_cursor_func.vim
source test_execute_func.vim
source test_ex_undo.vim
source test_execute_func.vim
source test_expr.vim
source test_expr_utf8.vim
source test_feedkeys.vim