annotate runtime/indent/xhtml.vim @ 27269:24da57a079ef
v8.2.4163
patch 8.2.4163: no error for omitting function name after autoload prefix
Commit: https://github.com/vim/vim/commit/2017d6f3b1d523204e5471e941cfa687b4da0058
Author: Bram Moolenaar <Bram@vim.org>
Date: Thu Jan 20 19:38:46 2022 +0000
patch 8.2.4163: no error for omitting function name after autoload prefix
Problem: No error for omitting function name after autoload prefix.
Solution: Check for missing function name. (issue https://github.com/vim/vim/issues/9577)
author |
Bram Moolenaar <Bram@vim.org> |
date |
Thu, 20 Jan 2022 20:45:04 +0100 |
parents |
25dd5036f2b0 |
children |
4027cefc2aab |
rev |
line source |
7
|
1 " Vim indent file
|
|
2 " Language: XHTML
|
|
3 " Maintainer: Bram Moolenaar <Bram@vim.org> (for now)
|
357
|
4 " Last Change: 2005 Jun 24
|
|
5
|
|
6 " Only load this indent file when no other was loaded.
|
|
7 if exists("b:did_indent")
|
|
8 finish
|
|
9 endif
|
7
|
10
|
|
11 " Handled like HTML for now.
|
|
12 runtime! indent/html.vim
|