Mercurial > vim
annotate runtime/ftplugin/nsis.vim @ 12401:eb8d5c4936f1 v8.0.1080
patch 8.0.1080: memory leak for eof_chars terminal option and buffer name
commit https://github.com/vim/vim/commit/74121231be50e245d18c64281fdef08e7ec1ed5b
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat Sep 9 16:34:32 2017 +0200
patch 8.0.1080: memory leak for eof_chars terminal option and buffer name
Problem: Memory leak for eof_chars terminal option and buffer name.
Solution: Free job options. Free the buffer name
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Sat, 09 Sep 2017 16:45:04 +0200 |
parents | 1218c5353e2b |
children | 371ceeebbdaa |
rev | line source |
---|---|
1698 | 1 " Vim ftplugin file |
11062 | 2 " Language: NSIS script |
3 " Previous Maintainer: Nikolai Weibull <now@bitwi.se> | |
4 " Latest Revision: 2008-07-09 | |
1698 | 5 |
6 let s:cpo_save = &cpo | |
7 set cpo&vim | |
8 | |
9 if exists("b:did_ftplugin") | |
10 finish | |
11 endif | |
12 let b:did_ftplugin = 1 | |
13 | |
14 let b:undo_ftplugin = "setl com< cms< fo< def< inc<" | |
15 | |
16 setlocal comments=s1:/*,mb:*,ex:*/,b:#,:; commentstring=;\ %s | |
17 setlocal formatoptions-=t formatoptions+=croql | |
18 setlocal define=^\\s*!define\\%(\\%(utc\\)\\=date\\|math\\)\\= | |
19 setlocal include=^\\s*!include\\%(/NONFATAL\\)\\= | |
20 | |
21 let &cpo = s:cpo_save | |
22 unlet s:cpo_save |