|
Karsten Hopp |
1a3e00 |
To: vim_dev@googlegroups.com
|
|
Karsten Hopp |
1a3e00 |
Subject: Patch 7.3.092
|
|
Karsten Hopp |
1a3e00 |
Fcc: outbox
|
|
Karsten Hopp |
1a3e00 |
From: Bram Moolenaar <Bram@moolenaar.net>
|
|
Karsten Hopp |
1a3e00 |
Mime-Version: 1.0
|
|
Karsten Hopp |
1a3e00 |
Content-Type: text/plain; charset=UTF-8
|
|
Karsten Hopp |
1a3e00 |
Content-Transfer-Encoding: 8bit
|
|
Karsten Hopp |
1a3e00 |
------------
|
|
Karsten Hopp |
1a3e00 |
|
|
Karsten Hopp |
1a3e00 |
Patch 7.3.092
|
|
Karsten Hopp |
1a3e00 |
Problem: Resizing the window when exiting.
|
|
Karsten Hopp |
1a3e00 |
Solution: Don't resize when exiting.
|
|
Karsten Hopp |
1a3e00 |
Files: src/term.c
|
|
Karsten Hopp |
1a3e00 |
|
|
Karsten Hopp |
1a3e00 |
|
|
Karsten Hopp |
1a3e00 |
*** ../vim-7.3.091/src/term.c 2010-12-30 12:30:26.000000000 +0100
|
|
Karsten Hopp |
1a3e00 |
--- src/term.c 2010-12-30 12:14:48.000000000 +0100
|
|
Karsten Hopp |
1a3e00 |
***************
|
|
Karsten Hopp |
1a3e00 |
*** 3053,3062 ****
|
|
Karsten Hopp |
1a3e00 |
int old_Rows = Rows;
|
|
Karsten Hopp |
1a3e00 |
int old_Columns = Columns;
|
|
Karsten Hopp |
1a3e00 |
|
|
Karsten Hopp |
1a3e00 |
! (void)ui_get_shellsize();
|
|
Karsten Hopp |
1a3e00 |
! check_shellsize();
|
|
Karsten Hopp |
1a3e00 |
! if (old_Rows != Rows || old_Columns != Columns)
|
|
Karsten Hopp |
1a3e00 |
! shell_resized();
|
|
Karsten Hopp |
1a3e00 |
}
|
|
Karsten Hopp |
1a3e00 |
|
|
Karsten Hopp |
1a3e00 |
/*
|
|
Karsten Hopp |
1a3e00 |
--- 3053,3065 ----
|
|
Karsten Hopp |
1a3e00 |
int old_Rows = Rows;
|
|
Karsten Hopp |
1a3e00 |
int old_Columns = Columns;
|
|
Karsten Hopp |
1a3e00 |
|
|
Karsten Hopp |
1a3e00 |
! if (!exiting)
|
|
Karsten Hopp |
1a3e00 |
! {
|
|
Karsten Hopp |
1a3e00 |
! (void)ui_get_shellsize();
|
|
Karsten Hopp |
1a3e00 |
! check_shellsize();
|
|
Karsten Hopp |
1a3e00 |
! if (old_Rows != Rows || old_Columns != Columns)
|
|
Karsten Hopp |
1a3e00 |
! shell_resized();
|
|
Karsten Hopp |
1a3e00 |
! }
|
|
Karsten Hopp |
1a3e00 |
}
|
|
Karsten Hopp |
1a3e00 |
|
|
Karsten Hopp |
1a3e00 |
/*
|
|
Karsten Hopp |
1a3e00 |
*** ../vim-7.3.091/src/version.c 2010-12-30 12:30:26.000000000 +0100
|
|
Karsten Hopp |
1a3e00 |
--- src/version.c 2010-12-30 14:47:04.000000000 +0100
|
|
Karsten Hopp |
1a3e00 |
***************
|
|
Karsten Hopp |
1a3e00 |
*** 716,717 ****
|
|
Karsten Hopp |
1a3e00 |
--- 716,719 ----
|
|
Karsten Hopp |
1a3e00 |
{ /* Add new patch number below this line */
|
|
Karsten Hopp |
1a3e00 |
+ /**/
|
|
Karsten Hopp |
1a3e00 |
+ 92,
|
|
Karsten Hopp |
1a3e00 |
/**/
|
|
Karsten Hopp |
1a3e00 |
|
|
Karsten Hopp |
1a3e00 |
--
|
|
Karsten Hopp |
1a3e00 |
hundred-and-one symptoms of being an internet addict:
|
|
Karsten Hopp |
1a3e00 |
57. You begin to wonder how on earth your service provider is allowed to call
|
|
Karsten Hopp |
1a3e00 |
200 hours per month "unlimited."
|
|
Karsten Hopp |
1a3e00 |
|
|
Karsten Hopp |
1a3e00 |
/// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
|
|
Karsten Hopp |
1a3e00 |
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
|
|
Karsten Hopp |
1a3e00 |
\\\ an exciting new programming language -- http://www.Zimbu.org ///
|
|
Karsten Hopp |
1a3e00 |
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
|