|
Karsten Hopp |
3566ab |
To: vim_dev@googlegroups.com
|
|
Karsten Hopp |
3566ab |
Subject: Patch 7.3.717
|
|
Karsten Hopp |
3566ab |
Fcc: outbox
|
|
Karsten Hopp |
3566ab |
From: Bram Moolenaar <Bram@moolenaar.net>
|
|
Karsten Hopp |
3566ab |
Mime-Version: 1.0
|
|
Karsten Hopp |
3566ab |
Content-Type: text/plain; charset=UTF-8
|
|
Karsten Hopp |
3566ab |
Content-Transfer-Encoding: 8bit
|
|
Karsten Hopp |
3566ab |
------------
|
|
Karsten Hopp |
3566ab |
|
|
Karsten Hopp |
3566ab |
Patch 7.3.717
|
|
Karsten Hopp |
3566ab |
Problem: When changing the font size, only MS-Windows limits the window
|
|
Karsten Hopp |
3566ab |
size.
|
|
Karsten Hopp |
3566ab |
Solution: Also limit the window size on other systems. (Roland Puntaier)
|
|
Karsten Hopp |
3566ab |
Files: src/gui.c
|
|
Karsten Hopp |
3566ab |
|
|
Karsten Hopp |
3566ab |
|
|
Karsten Hopp |
3566ab |
*** ../vim-7.3.716/src/gui.c 2012-08-29 16:34:23.000000000 +0200
|
|
Karsten Hopp |
3566ab |
--- src/gui.c 2012-11-20 12:01:08.000000000 +0100
|
|
Karsten Hopp |
3566ab |
***************
|
|
Karsten Hopp |
3566ab |
*** 905,917 ****
|
|
Karsten Hopp |
3566ab |
# endif
|
|
Karsten Hopp |
3566ab |
gui_mch_set_font(gui.norm_font);
|
|
Karsten Hopp |
3566ab |
#endif
|
|
Karsten Hopp |
3566ab |
! gui_set_shellsize(FALSE,
|
|
Karsten Hopp |
3566ab |
! #ifdef MSWIN
|
|
Karsten Hopp |
3566ab |
! TRUE
|
|
Karsten Hopp |
3566ab |
! #else
|
|
Karsten Hopp |
3566ab |
! FALSE
|
|
Karsten Hopp |
3566ab |
! #endif
|
|
Karsten Hopp |
3566ab |
! , RESIZE_BOTH);
|
|
Karsten Hopp |
3566ab |
}
|
|
Karsten Hopp |
3566ab |
|
|
Karsten Hopp |
3566ab |
return ret;
|
|
Karsten Hopp |
3566ab |
--- 905,911 ----
|
|
Karsten Hopp |
3566ab |
# endif
|
|
Karsten Hopp |
3566ab |
gui_mch_set_font(gui.norm_font);
|
|
Karsten Hopp |
3566ab |
#endif
|
|
Karsten Hopp |
3566ab |
! gui_set_shellsize(FALSE, TRUE, RESIZE_BOTH);
|
|
Karsten Hopp |
3566ab |
}
|
|
Karsten Hopp |
3566ab |
|
|
Karsten Hopp |
3566ab |
return ret;
|
|
Karsten Hopp |
3566ab |
*** ../vim-7.3.716/src/version.c 2012-11-20 11:02:49.000000000 +0100
|
|
Karsten Hopp |
3566ab |
--- src/version.c 2012-11-20 12:02:04.000000000 +0100
|
|
Karsten Hopp |
3566ab |
***************
|
|
Karsten Hopp |
3566ab |
*** 727,728 ****
|
|
Karsten Hopp |
3566ab |
--- 727,730 ----
|
|
Karsten Hopp |
3566ab |
{ /* Add new patch number below this line */
|
|
Karsten Hopp |
3566ab |
+ /**/
|
|
Karsten Hopp |
3566ab |
+ 717,
|
|
Karsten Hopp |
3566ab |
/**/
|
|
Karsten Hopp |
3566ab |
|
|
Karsten Hopp |
3566ab |
--
|
|
Karsten Hopp |
3566ab |
The 50-50-90 rule: Anytime you have a 50-50 chance of getting
|
|
Karsten Hopp |
3566ab |
something right, there's a 90% probability you'll get it wrong.
|
|
Karsten Hopp |
3566ab |
|
|
Karsten Hopp |
3566ab |
/// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
|
|
Karsten Hopp |
3566ab |
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
|
|
Karsten Hopp |
3566ab |
\\\ an exciting new programming language -- http://www.Zimbu.org ///
|
|
Karsten Hopp |
3566ab |
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
|