]> git.pld-linux.org Git - packages/vim.git/blob - 7.3.092
- new
[packages/vim.git] / 7.3.092
1 To: vim_dev@googlegroups.com
2 Subject: Patch 7.3.092
3 Fcc: outbox
4 From: Bram Moolenaar <Bram@moolenaar.net>
5 Mime-Version: 1.0
6 Content-Type: text/plain; charset=UTF-8
7 Content-Transfer-Encoding: 8bit
8 ------------
9
10 Patch 7.3.092
11 Problem:    Resizing the window when exiting.
12 Solution:   Don't resize when exiting.
13 Files:      src/term.c
14
15
16 *** ../vim-7.3.091/src/term.c   2010-12-30 12:30:26.000000000 +0100
17 --- src/term.c  2010-12-30 12:14:48.000000000 +0100
18 ***************
19 *** 3053,3062 ****
20       int               old_Rows = Rows;
21       int               old_Columns = Columns;
22   
23 !     (void)ui_get_shellsize();
24 !     check_shellsize();
25 !     if (old_Rows != Rows || old_Columns != Columns)
26 !       shell_resized();
27   }
28   
29   /*
30 --- 3053,3065 ----
31       int               old_Rows = Rows;
32       int               old_Columns = Columns;
33   
34 !     if (!exiting)
35 !     {
36 !       (void)ui_get_shellsize();
37 !       check_shellsize();
38 !       if (old_Rows != Rows || old_Columns != Columns)
39 !           shell_resized();
40 !     }
41   }
42   
43   /*
44 *** ../vim-7.3.091/src/version.c        2010-12-30 12:30:26.000000000 +0100
45 --- src/version.c       2010-12-30 14:47:04.000000000 +0100
46 ***************
47 *** 716,717 ****
48 --- 716,719 ----
49   {   /* Add new patch number below this line */
50 + /**/
51 +     92,
52   /**/
53
54 -- 
55 hundred-and-one symptoms of being an internet addict:
56 57. You begin to wonder how on earth your service provider is allowed to call
57     200 hours per month "unlimited."
58
59  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
60 ///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
61 \\\  an exciting new programming language -- http://www.Zimbu.org        ///
62  \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///
This page took 0.023724 seconds and 3 git commands to generate.