| To: vim_dev@googlegroups.com |
| Subject: Patch 7.3.355 |
| Fcc: outbox |
| From: Bram Moolenaar <Bram@moolenaar.net> |
| Mime-Version: 1.0 |
| Content-Type: text/plain; charset=UTF-8 |
| Content-Transfer-Encoding: 8bit |
| |
| |
| Patch 7.3.355 |
| Problem: GTK warnings when using netrw.vim. (Ivan Krasilnikov) |
| Solution: Do not remove the beval event handler twice. |
| Files: src/option.c |
| |
| |
| |
| |
| |
| *** 7796,7804 **** |
| #ifdef FEAT_BEVAL |
| else if ((int *)varp == &p_beval) |
| { |
| ! if (p_beval == TRUE) |
| gui_mch_enable_beval_area(balloonEval); |
| ! else |
| gui_mch_disable_beval_area(balloonEval); |
| } |
| #endif |
| --- 7796,7804 ---- |
| #ifdef FEAT_BEVAL |
| else if ((int *)varp == &p_beval) |
| { |
| ! if (p_beval && !old_value) |
| gui_mch_enable_beval_area(balloonEval); |
| ! else if (!p_beval && old_value) |
| gui_mch_disable_beval_area(balloonEval); |
| } |
| #endif |
| |
| |
| |
| *** 716,717 **** |
| --- 716,719 ---- |
| { /* Add new patch number below this line */ |
| + /**/ |
| + 355, |
| /**/ |
| |
| -- |
| hundred-and-one symptoms of being an internet addict: |
| 209. Your house stinks because you haven't cleaned it in a week. |
| |
| /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\ |
| /// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ |
| \\\ an exciting new programming language -- http://www.Zimbu.org /// |
| \\\ help me help AIDS victims -- http://ICCF-Holland.org /// |