]> git.pld-linux.org Git - packages/vim.git/blame - 7.3.355
- up to 7.3.600
[packages/vim.git] / 7.3.355
CommitLineData
ae497238
AG
1To: vim_dev@googlegroups.com
2Subject: Patch 7.3.355
3Fcc: outbox
4From: Bram Moolenaar <Bram@moolenaar.net>
5Mime-Version: 1.0
6Content-Type: text/plain; charset=UTF-8
7Content-Transfer-Encoding: 8bit
8------------
9
10Patch 7.3.355
11Problem: GTK warnings when using netrw.vim. (Ivan Krasilnikov)
12Solution: Do not remove the beval event handler twice.
13Files: src/option.c
14
15
16*** ../vim-7.3.354/src/option.c 2011-11-30 11:15:40.000000000 +0100
17--- src/option.c 2011-11-30 11:11:15.000000000 +0100
18***************
19*** 7796,7804 ****
20 #ifdef FEAT_BEVAL
21 else if ((int *)varp == &p_beval)
22 {
23! if (p_beval == TRUE)
24 gui_mch_enable_beval_area(balloonEval);
25! else
26 gui_mch_disable_beval_area(balloonEval);
27 }
28 #endif
29--- 7796,7804 ----
30 #ifdef FEAT_BEVAL
31 else if ((int *)varp == &p_beval)
32 {
33! if (p_beval && !old_value)
34 gui_mch_enable_beval_area(balloonEval);
35! else if (!p_beval && old_value)
36 gui_mch_disable_beval_area(balloonEval);
37 }
38 #endif
39*** ../vim-7.3.354/src/version.c 2011-11-30 11:15:40.000000000 +0100
40--- src/version.c 2011-11-30 11:30:55.000000000 +0100
41***************
42*** 716,717 ****
43--- 716,719 ----
44 { /* Add new patch number below this line */
45+ /**/
46+ 355,
47 /**/
48
49--
50hundred-and-one symptoms of being an internet addict:
51209. Your house stinks because you haven't cleaned it in a week.
52
53 /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
54/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
55\\\ an exciting new programming language -- http://www.Zimbu.org ///
56 \\\ help me help AIDS victims -- http://ICCF-Holland.org ///
This page took 0.036926 seconds and 4 git commands to generate.