From: Bram Moolenaar Date: Fri, 16 Sep 2022 14:47:09 +0000 (+0100) Subject: patch 9.0.0479: in :def function all closures in loop get the same variables X-Git-Tag: v9.0.0479 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1aea184a0dc558a222cc5bcbaad9ab0fd700c7b9;p=vim patch 9.0.0479: in :def function all closures in loop get the same variables Problem: In a :def function all closures in a loop get the same variables. Solution: Use a separate list of variables for LOADOUTER and SAVEOUTER. --- diff --git a/runtime/filetype.vim b/runtime/filetype.vim index a27c3c71c..aac17aad0 100644 --- a/runtime/filetype.vim +++ b/runtime/filetype.vim @@ -2108,6 +2108,9 @@ au BufNewFile,BufRead */.config/upstart/*.override setf upstart " Vala au BufNewFile,BufRead *.vala setf vala +" VDF +au BufNewFile,BufRead *.vdf setf vdf + " VDM au BufRead,BufNewFile *.vdmpp,*.vpp setf vdmpp au BufRead,BufNewFile *.vdmrt setf vdmrt diff --git a/src/testdir/test_filetype.vim b/src/testdir/test_filetype.vim index 62867e3f3..bf0fdd601 100644 --- a/src/testdir/test_filetype.vim +++ b/src/testdir/test_filetype.vim @@ -595,6 +595,7 @@ let s:filename_checks = { \ 'usw2kagtlog': ['usw2kagt.log', 'USW2KAGT.LOG', 'usw2kagt.file.log', 'USW2KAGT.FILE.LOG', 'file.usw2kagt.log', 'FILE.USW2KAGT.LOG'], \ 'vala': ['file.vala'], \ 'vb': ['file.sba', 'file.vb', 'file.vbs', 'file.dsm', 'file.ctl'], + \ 'vdf': ['file.vdf'], \ 'vdmpp': ['file.vpp', 'file.vdmpp'], \ 'vdmrt': ['file.vdmrt'], \ 'vdmsl': ['file.vdm', 'file.vdmsl'], diff --git a/src/version.c b/src/version.c index b45a6910a..1adac5a4a 100644 --- a/src/version.c +++ b/src/version.c @@ -703,6 +703,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 479, /**/ 478, /**/