annotate runtime/ftplugin/tt2html.vim @ 32335:9c034274034b v9.0.1499

patch 9.0.1499: using uninitialized memory with fuzzy matching Commit: https://github.com/vim/vim/commit/caf642c25de526229264cab9425e7c9979f3509b Author: Bram Moolenaar <Bram@vim.org> Date: Sat Apr 29 21:38:04 2023 +0100 patch 9.0.1499: using uninitialized memory with fuzzy matching Problem: Using uninitialized memory with fuzzy matching. Solution: Initialize the arrays used to store match positions.
author Bram Moolenaar <Bram@vim.org>
date Sat, 29 Apr 2023 22:45:03 +0200
parents d1fe80fb35e6
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
29150
d1fe80fb35e6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 5277
diff changeset
1 " Vim filetype plugin file
5239
11cd8d58372e Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
2 " Language: TT2 embedded with HTML
11cd8d58372e Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
3 " Maintainer: vim-perl <vim-perl@googlegroups.com>
29150
d1fe80fb35e6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 5277
diff changeset
4 " Homepage: https://github.com/vim-perl/vim-perl
d1fe80fb35e6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 5277
diff changeset
5 " Bugs/requests: https://github.com/vim-perl/vim-perl/issues
d1fe80fb35e6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 5277
diff changeset
6 " License: Vim License (see :help license)
d1fe80fb35e6 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 5277
diff changeset
7 " Last Change: 2018 Mar 28
5239
11cd8d58372e Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
8
11cd8d58372e Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
9 " Only do this when not done yet for this buffer
11cd8d58372e Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
10 if exists("b:did_ftplugin")
11cd8d58372e Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
11 finish
11cd8d58372e Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
12 endif
11cd8d58372e Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
13
11cd8d58372e Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
14 " Just use the HTML plugin for now.
11cd8d58372e Updated runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
15 runtime! ftplugin/html.vim ftplugin/html_*.vim ftplugin/html/*.vim