]> git.pld-linux.org Git - packages/vim.git/blame - 7.3.394
- new
[packages/vim.git] / 7.3.394
CommitLineData
d034a75d
AG
1To: vim_dev@googlegroups.com
2Subject: Patch 7.3.394
3Fcc: outbox
4From: Bram Moolenaar <Bram@moolenaar.net>
5Mime-Version: 1.0
6Content-Type: text/plain; charset=UTF-8
7Content-Transfer-Encoding: 8bit
8------------
9
10Patch 7.3.394
11Problem: When placing a mark while starting up a screen redraw messes up
12 the screen. (lith)
13Solution: Don't redraw while still starting up. (Christian Brabandt)
14Files: 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--
55It is illegal for anyone to try and stop a child from playfully jumping over
56puddles 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.212752 seconds and 4 git commands to generate.