]> git.pld-linux.org Git - packages/vim.git/blob - 7.3.394
- new
[packages/vim.git] / 7.3.394
1 To: vim_dev@googlegroups.com
2 Subject: Patch 7.3.394
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.394
11 Problem:    When placing a mark while starting up a screen redraw messes up
12             the screen. (lith)
13 Solution:   Don't redraw while still starting up. (Christian Brabandt)
14 Files:      src/screen.c
15
16
17 *** ../vim-7.3.393/src/screen.c 2011-09-02 14:07:31.000000000 +0200
18 --- src/screen.c        2012-01-10 12:36:52.000000000 +0100
19 ***************
20 *** 764,772 ****
21             doit = TRUE;
22       }
23   
24 !     /* Return when there is nothing to do or screen updating already
25 !      * happening. */
26 !     if (!doit || updating_screen)
27         return;
28   
29       /* update all windows that need updating */
30 --- 764,776 ----
31             doit = TRUE;
32       }
33   
34 !     /* Return when there is nothing to do, screen updating is already
35 !      * happening (recursive call) or still starting up. */
36 !     if (!doit || updating_screen
37 ! #ifdef FEAT_GUI
38 !           || gui.starting
39 ! #endif
40 !           || starting)
41         return;
42   
43       /* update all windows that need updating */
44 *** ../vim-7.3.393/src/version.c        2012-01-04 20:29:18.000000000 +0100
45 --- src/version.c       2012-01-10 12:41:32.000000000 +0100
46 ***************
47 *** 716,717 ****
48 --- 716,719 ----
49   {   /* Add new patch number below this line */
50 + /**/
51 +     394,
52   /**/
53
54 -- 
55 It is illegal for anyone to try and stop a child from playfully jumping over
56 puddles of water.
57                 [real standing law in California, United States of America]
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.054811 seconds and 3 git commands to generate.