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 | |
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".
-rw-r--r-- | runtime/autoload/dist/ft.vim | 6 | ||||
-rw-r--r-- | src/version.c | 2 |
2 files changed, 5 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 diff --git a/src/version.c b/src/version.c index 3766c1154..6e337b4f1 100644 --- a/src/version.c +++ b/src/version.c @@ -755,6 +755,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 4511, +/**/ 4510, /**/ 4509, |