annotate runtime/ftplugin/nroff.vim @ 24651:5dea95170907 v8.2.2864

patch 8.2.2864: Vim9: crash when using inline function Commit: https://github.com/vim/vim/commit/074f84c01fbe70554feb6a71c0d9cacf2ef77ca5 Author: Bram Moolenaar <Bram@vim.org> Date: Tue May 18 11:47:44 2021 +0200 patch 8.2.2864: Vim9: crash when using inline function Problem: Vim9: crash when using inline function. Solution: Check for NULL pointer. Make using inline function work inside lambda. (closes #8217)
author Bram Moolenaar <Bram@vim.org>
date Tue, 18 May 2021 12:00:05 +0200
parents 29c5f168c6fd
children 7c7432a53a6c
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
16610
1eaf34420bb3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
1 " Vim filetype plugin
1eaf34420bb3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
2 " Language: roff(7)
23047
29c5f168c6fd Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 16610
diff changeset
3 " Maintainer: Aman Verma
29c5f168c6fd Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 16610
diff changeset
4 " Homepage: https://github.com/a-vrma/vim-nroff-ftplugin
29c5f168c6fd Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 16610
diff changeset
5 " Previous Maintainer: Chris Spiegel <cspiegel@gmail.com>
29c5f168c6fd Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 16610
diff changeset
6 " Last Change: 2020 Nov 21
16610
1eaf34420bb3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
7
1eaf34420bb3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
8 if exists("b:did_ftplugin")
1eaf34420bb3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
9 finish
1eaf34420bb3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
10 endif
1eaf34420bb3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
11 let b:did_ftplugin = 1
1eaf34420bb3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
12
1eaf34420bb3 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
13 setlocal commentstring=.\\\"%s
23047
29c5f168c6fd Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 16610
diff changeset
14 setlocal comments=:.\\\"
29c5f168c6fd Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 16610
diff changeset
15 setlocal sections+=Sh
29c5f168c6fd Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 16610
diff changeset
16
29c5f168c6fd Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 16610
diff changeset
17 let b:undo_ftplugin = 'setlocal commentstring< comments< sections<'