]> git.pld-linux.org Git - packages/vim.git/blob - 7.0.227
- updated to 1.15
[packages/vim.git] / 7.0.227
1 To: vim-dev@vim.org
2 Subject: patch 7.0.227
3 Fcc: outbox
4 From: Bram Moolenaar <Bram@moolenaar.net>
5 Mime-Version: 1.0
6 Content-Type: text/plain; charset=ISO-8859-1
7 Content-Transfer-Encoding: 8bit
8 ------------
9
10 Patch 7.0.227
11 Problem:    Crash when closing a window in the GUI. (Charles Campbell)
12 Solution:   Don't call out_flush() from win_free().
13 Files:      src/window.c
14
15
16 *** ../vim-7.0.226/src/window.c Sun Mar 11 15:53:27 2007
17 --- src/window.c        Wed Apr 18 22:31:52 2007
18 ***************
19 *** 2084,2089 ****
20 --- 2084,2096 ----
21       }
22   #endif
23   
24 + #ifdef FEAT_GUI
25 +     /* Avoid trouble with scrollbars that are going to be deleted in
26 +      * win_free(). */
27 +     if (gui.in_use)
28 +       out_flush();
29 + #endif
30
31       /*
32        * Close the link to the buffer.
33        */
34 ***************
35 *** 4174,4180 ****
36   #ifdef FEAT_GUI
37       if (gui.in_use)
38       {
39 -       out_flush();
40         gui_mch_destroy_scrollbar(&wp->w_scrollbars[SBAR_LEFT]);
41         gui_mch_destroy_scrollbar(&wp->w_scrollbars[SBAR_RIGHT]);
42       }
43 --- 4181,4186 ----
44 *** ../vim-7.0.226/src/version.c        Thu Apr 26 11:01:16 2007
45 --- src/version.c       Thu Apr 26 16:09:30 2007
46 ***************
47 *** 668,669 ****
48 --- 668,671 ----
49   {   /* Add new patch number below this line */
50 + /**/
51 +     227,
52   /**/
53
54 -- 
55 hundred-and-one symptoms of being an internet addict:
56 16. You step out of your room and realize that your parents have moved and
57     you don't have a clue when it happened.
58
59  /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
60 ///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
61 \\\        download, build and distribute -- http://www.A-A-P.org        ///
62  \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///
This page took 0.04083 seconds and 3 git commands to generate.