|
Karsten Hopp |
b23fd3 |
To: vim_dev@googlegroups.com
|
|
Karsten Hopp |
b23fd3 |
Subject: Patch 7.3.635
|
|
Karsten Hopp |
b23fd3 |
Fcc: outbox
|
|
Karsten Hopp |
b23fd3 |
From: Bram Moolenaar <Bram@moolenaar.net>
|
|
Karsten Hopp |
b23fd3 |
Mime-Version: 1.0
|
|
Karsten Hopp |
b23fd3 |
Content-Type: text/plain; charset=UTF-8
|
|
Karsten Hopp |
b23fd3 |
Content-Transfer-Encoding: 8bit
|
|
Karsten Hopp |
b23fd3 |
------------
|
|
Karsten Hopp |
b23fd3 |
|
|
Karsten Hopp |
b23fd3 |
Patch 7.3.635
|
|
Karsten Hopp |
b23fd3 |
Problem: Issue 21: System call during startup sets 'lines' to a wrong
|
|
Karsten Hopp |
b23fd3 |
value. (Karl Yngve)
|
|
Karsten Hopp |
b23fd3 |
Solution: Don't set the shell size while the GUI is still starting up.
|
|
Karsten Hopp |
b23fd3 |
(Christian Brabandt)
|
|
Karsten Hopp |
b23fd3 |
Files: src/ui.c
|
|
Karsten Hopp |
b23fd3 |
|
|
Karsten Hopp |
b23fd3 |
|
|
Karsten Hopp |
b23fd3 |
*** ../vim-7.3.634/src/ui.c 2012-07-10 16:49:08.000000000 +0200
|
|
Karsten Hopp |
b23fd3 |
--- src/ui.c 2012-08-23 13:25:26.000000000 +0200
|
|
Karsten Hopp |
b23fd3 |
***************
|
|
Karsten Hopp |
b23fd3 |
*** 298,303 ****
|
|
Karsten Hopp |
b23fd3 |
--- 298,306 ----
|
|
Karsten Hopp |
b23fd3 |
int retval;
|
|
Karsten Hopp |
b23fd3 |
|
|
Karsten Hopp |
b23fd3 |
#ifdef FEAT_GUI
|
|
Karsten Hopp |
b23fd3 |
+ if (gui.starting)
|
|
Karsten Hopp |
b23fd3 |
+ /* possibly a system call during startup, check later */
|
|
Karsten Hopp |
b23fd3 |
+ return OK;
|
|
Karsten Hopp |
b23fd3 |
if (gui.in_use)
|
|
Karsten Hopp |
b23fd3 |
retval = gui_get_shellsize();
|
|
Karsten Hopp |
b23fd3 |
else
|
|
Karsten Hopp |
b23fd3 |
*** ../vim-7.3.634/src/version.c 2012-08-23 12:58:56.000000000 +0200
|
|
Karsten Hopp |
b23fd3 |
--- src/version.c 2012-08-23 13:27:00.000000000 +0200
|
|
Karsten Hopp |
b23fd3 |
***************
|
|
Karsten Hopp |
b23fd3 |
*** 721,722 ****
|
|
Karsten Hopp |
b23fd3 |
--- 721,724 ----
|
|
Karsten Hopp |
b23fd3 |
{ /* Add new patch number below this line */
|
|
Karsten Hopp |
b23fd3 |
+ /**/
|
|
Karsten Hopp |
b23fd3 |
+ 635,
|
|
Karsten Hopp |
b23fd3 |
/**/
|
|
Karsten Hopp |
b23fd3 |
|
|
Karsten Hopp |
b23fd3 |
--
|
|
Karsten Hopp |
b23fd3 |
ARTHUR: This new learning amazes me, Sir Bedevere. Explain again how sheep's
|
|
Karsten Hopp |
b23fd3 |
bladders may be employed to prevent earthquakes.
|
|
Karsten Hopp |
b23fd3 |
"Monty Python and the Holy Grail" PYTHON (MONTY) PICTURES LTD
|
|
Karsten Hopp |
b23fd3 |
|
|
Karsten Hopp |
b23fd3 |
/// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
|
|
Karsten Hopp |
b23fd3 |
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
|
|
Karsten Hopp |
b23fd3 |
\\\ an exciting new programming language -- http://www.Zimbu.org ///
|
|
Karsten Hopp |
b23fd3 |
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
|