|
Karsten Hopp |
520a09 |
To: vim_dev@googlegroups.com
|
|
Karsten Hopp |
520a09 |
Subject: Patch 7.3.531
|
|
Karsten Hopp |
520a09 |
Fcc: outbox
|
|
Karsten Hopp |
520a09 |
From: Bram Moolenaar <Bram@moolenaar.net>
|
|
Karsten Hopp |
520a09 |
Mime-Version: 1.0
|
|
Karsten Hopp |
520a09 |
Content-Type: text/plain; charset=UTF-8
|
|
Karsten Hopp |
520a09 |
Content-Transfer-Encoding: 8bit
|
|
Karsten Hopp |
520a09 |
------------
|
|
Karsten Hopp |
520a09 |
|
|
Karsten Hopp |
520a09 |
Patch 7.3.531 (after 7.3.530)
|
|
Karsten Hopp |
520a09 |
Problem: GUI does not work on MS-Windows.
|
|
Karsten Hopp |
520a09 |
Solution: Add the missing #ifdef. (Patrick Avery)
|
|
Karsten Hopp |
520a09 |
Files: src/gui.c
|
|
Karsten Hopp |
520a09 |
|
|
Karsten Hopp |
520a09 |
|
|
Karsten Hopp |
520a09 |
*** ../vim-7.3.530/src/gui.c 2012-05-25 14:06:18.000000000 +0200
|
|
Karsten Hopp |
520a09 |
--- src/gui.c 2012-05-27 00:34:51.000000000 +0200
|
|
Karsten Hopp |
520a09 |
***************
|
|
Karsten Hopp |
520a09 |
*** 102,111 ****
|
|
Karsten Hopp |
520a09 |
--- 102,113 ----
|
|
Karsten Hopp |
520a09 |
else
|
|
Karsten Hopp |
520a09 |
#endif
|
|
Karsten Hopp |
520a09 |
{
|
|
Karsten Hopp |
520a09 |
+ #ifdef FEAT_GUI_GTK
|
|
Karsten Hopp |
520a09 |
/* If there is 'f' in 'guioptions' and specify -g argument,
|
|
Karsten Hopp |
520a09 |
* gui_mch_init_check() was not called yet. */
|
|
Karsten Hopp |
520a09 |
if (gui_mch_init_check() != OK)
|
|
Karsten Hopp |
520a09 |
exit(1);
|
|
Karsten Hopp |
520a09 |
+ #endif
|
|
Karsten Hopp |
520a09 |
gui_attempt_start();
|
|
Karsten Hopp |
520a09 |
}
|
|
Karsten Hopp |
520a09 |
|
|
Karsten Hopp |
520a09 |
*** ../vim-7.3.530/src/version.c 2012-05-25 14:06:18.000000000 +0200
|
|
Karsten Hopp |
520a09 |
--- src/version.c 2012-05-27 00:37:33.000000000 +0200
|
|
Karsten Hopp |
520a09 |
***************
|
|
Karsten Hopp |
520a09 |
*** 716,717 ****
|
|
Karsten Hopp |
520a09 |
--- 716,719 ----
|
|
Karsten Hopp |
520a09 |
{ /* Add new patch number below this line */
|
|
Karsten Hopp |
520a09 |
+ /**/
|
|
Karsten Hopp |
520a09 |
+ 531,
|
|
Karsten Hopp |
520a09 |
/**/
|
|
Karsten Hopp |
520a09 |
|
|
Karsten Hopp |
520a09 |
--
|
|
Karsten Hopp |
520a09 |
I learned the customs and mannerisms of engineers by observing them, much the
|
|
Karsten Hopp |
520a09 |
way Jane Goodall learned about the great apes, but without the hassle of
|
|
Karsten Hopp |
520a09 |
grooming.
|
|
Karsten Hopp |
520a09 |
(Scott Adams - The Dilbert principle)
|
|
Karsten Hopp |
520a09 |
|
|
Karsten Hopp |
520a09 |
/// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
|
|
Karsten Hopp |
520a09 |
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
|
|
Karsten Hopp |
520a09 |
\\\ an exciting new programming language -- http://www.Zimbu.org ///
|
|
Karsten Hopp |
520a09 |
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
|