diff options
author | Bram Moolenaar <Bram@vim.org> | 2022-03-05 13:45:56 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2022-03-05 13:45:56 +0000 |
commit | c12dc47b8f80c02e4fdcdb38b8217e1c06a11368 (patch) | |
tree | 21af851b2042c9ab10bc8d2d7fb79967244ad564 /runtime | |
parent | 204852ae2adfdde10c656ca7f14e5b4207a69172 (diff) | |
download | vim-git-c12dc47b8f80c02e4fdcdb38b8217e1c06a11368.tar.gz |
patch 8.2.4511: filetype test failsv8.2.4511
Problem: Filetype test fails.
Solution: Change "endw" to "endwhile".
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/autoload/dist/ft.vim | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/runtime/autoload/dist/ft.vim b/runtime/autoload/dist/ft.vim index 4ea13f5ba..22974b6cc 100644 --- a/runtime/autoload/dist/ft.vim +++ b/runtime/autoload/dist/ft.vim @@ -182,7 +182,7 @@ export def FTent() break endif lnum += 1 - endw + endwhile setf dtd enddef @@ -482,7 +482,7 @@ export def FTprogress_asm() break endif lnum += 1 - endw + endwhile setf progress enddef @@ -509,7 +509,7 @@ export def FTprogress_pascal() break endif lnum += 1 - endw + endwhile setf progress enddef |