Mercurial > vim
annotate runtime/ftplugin/fennel.vim @ 29245:b12fd2b3be63 v8.2.5141
patch 8.2.5141: using "volatile int" in a signal handler might be wrong
Commit: https://github.com/vim/vim/commit/155f2d1451949d1124bfd6ba9c55be6bd74bab75
Author: Bram Moolenaar <Bram@vim.org>
Date: Mon Jun 20 13:38:33 2022 +0100
patch 8.2.5141: using "volatile int" in a signal handler might be wrong
Problem: Using "volatile int" in a signal handler might be wrong.
Solution: Use "volatile sig_atomic_t".
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Mon, 20 Jun 2022 14:45:03 +0200 |
parents | 4d76b3e07c07 |
children | 635de73eeb4c |
rev | line source |
---|---|
28620 | 1 " Vim filetype plugin file |
2 " Language: Fennel | |
3 " Maintainer: Gregory Anders <greg[NOSPAM]@gpanders.com> | |
4 " Last Update: 2022 Apr 20 | |
5 | |
6 if exists('b:did_ftplugin') | |
7 finish | |
8 endif | |
9 let b:did_ftplugin = 1 | |
10 | |
11 setlocal commentstring=;%s | |
12 setlocal comments=:;;,:; | |
13 setlocal formatoptions-=t | |
14 setlocal suffixesadd=.fnl | |
15 setlocal lisp | |
16 setlocal lispwords=accumulate,collect,do,doto,each,eval-compiler,fn,for,icollect,lambda,let,macro,macros,match,match-try,when,while,with-open | |
17 | |
18 let b:undo_ftplugin = 'setlocal commentstring< comments< formatoptions< suffixesadd< lisp< lispwords<' |