]> git.pld-linux.org Git - packages/vim.git/blame - 7.3.530
- up to 7.3.600
[packages/vim.git] / 7.3.530
CommitLineData
8bb52fd3
ER
1To: vim_dev@googlegroups.com
2Subject: Patch 7.3.530
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.530 (after 7.3.520)
11Problem: Gvim does not work when 'guioptions' includes "f". (Davido)
12Solution: Call gui_mch_init_check() when running GUI in the foreground.
13 (Yasuhiro Matsumoto)
14Files: src/gui.c
15
16
17*** ../vim-7.3.529/src/gui.c 2012-05-18 17:03:13.000000000 +0200
18--- src/gui.c 2012-05-25 14:01:26.000000000 +0200
19***************
20*** 102,107 ****
21--- 102,111 ----
22 else
23 #endif
24 {
25+ /* If there is 'f' in 'guioptions' and specify -g argument,
26+ * gui_mch_init_check() was not called yet. */
27+ if (gui_mch_init_check() != OK)
28+ exit(1);
29 gui_attempt_start();
30 }
31
32*** ../vim-7.3.529/src/version.c 2012-05-25 13:12:33.000000000 +0200
33--- src/version.c 2012-05-25 14:05:46.000000000 +0200
34***************
35*** 716,717 ****
36--- 716,719 ----
37 { /* Add new patch number below this line */
38+ /**/
39+ 530,
40 /**/
41
42--
43I think that you'll agree that engineers are very effective in their social
44interactions. It's the "normal" people who are nuts.
45 (Scott Adams - The Dilbert principle)
46
47 /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
48/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
49\\\ an exciting new programming language -- http://www.Zimbu.org ///
50 \\\ help me help AIDS victims -- http://ICCF-Holland.org ///
This page took 0.0652700000000001 seconds and 4 git commands to generate.