Mercurial > vim
annotate runtime/delmenu.vim @ 10815:f883a1224396 v8.0.0297
patch 8.0.0297: double free on exit when using a closure
commit https://github.com/vim/vim/commit/03ff9bcbc968f7d306e4a4e334e226fdde62ca82
Author: Bram Moolenaar <Bram@vim.org>
Date: Thu Feb 2 22:59:27 2017 +0100
patch 8.0.0297: double free on exit when using a closure
Problem: Double free on exit when using a closure. (James McCoy)
Solution: Split free_al_functions in two parts. (closes https://github.com/vim/vim/issues/1428)
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Thu, 02 Feb 2017 23:00:04 +0100 |
parents | 3fc0f57ecb91 |
children | 405309f9dd13 |
rev | line source |
---|---|
7 | 1 " This Vim script deletes all the menus, so that they can be redefined. |
2 " Warning: This also deletes all menus defined by the user! | |
3 " | |
4 " Maintainer: Bram Moolenaar <Bram@vim.org> | |
5 " Last Change: 2001 May 27 | |
6 | |
7 aunmenu * | |
8 | |
9 silent! unlet did_install_default_menus | |
10 silent! unlet did_install_syntax_menu | |
11 if exists("did_menu_trans") | |
12 menutrans clear | |
13 unlet did_menu_trans | |
14 endif | |
15 | |
16 silent! unlet find_help_dialog | |
17 | |
18 silent! unlet menutrans_help_dialog | |
19 silent! unlet menutrans_path_dialog | |
20 silent! unlet menutrans_tags_dialog | |
21 silent! unlet menutrans_textwidth_dialog | |
22 silent! unlet menutrans_fileformat_dialog | |
23 silent! unlet menutrans_no_file | |
24 | |
25 " vim: set sw=2 : |