|
Karsten Hopp |
e9308d |
To: vim_dev@googlegroups.com
|
|
Karsten Hopp |
e9308d |
Subject: Patch 7.3.394
|
|
Karsten Hopp |
e9308d |
Fcc: outbox
|
|
Karsten Hopp |
e9308d |
From: Bram Moolenaar <Bram@moolenaar.net>
|
|
Karsten Hopp |
e9308d |
Mime-Version: 1.0
|
|
Karsten Hopp |
e9308d |
Content-Type: text/plain; charset=UTF-8
|
|
Karsten Hopp |
e9308d |
Content-Transfer-Encoding: 8bit
|
|
Karsten Hopp |
e9308d |
------------
|
|
Karsten Hopp |
e9308d |
|
|
Karsten Hopp |
e9308d |
Patch 7.3.394
|
|
Karsten Hopp |
e9308d |
Problem: When placing a mark while starting up a screen redraw messes up
|
|
Karsten Hopp |
e9308d |
the screen. (lith)
|
|
Karsten Hopp |
e9308d |
Solution: Don't redraw while still starting up. (Christian Brabandt)
|
|
Karsten Hopp |
e9308d |
Files: src/screen.c
|
|
Karsten Hopp |
e9308d |
|
|
Karsten Hopp |
e9308d |
|
|
Karsten Hopp |
e9308d |
*** ../vim-7.3.393/src/screen.c 2011-09-02 14:07:31.000000000 +0200
|
|
Karsten Hopp |
e9308d |
--- src/screen.c 2012-01-10 12:36:52.000000000 +0100
|
|
Karsten Hopp |
e9308d |
***************
|
|
Karsten Hopp |
e9308d |
*** 764,772 ****
|
|
Karsten Hopp |
e9308d |
doit = TRUE;
|
|
Karsten Hopp |
e9308d |
}
|
|
Karsten Hopp |
e9308d |
|
|
Karsten Hopp |
e9308d |
! /* Return when there is nothing to do or screen updating already
|
|
Karsten Hopp |
e9308d |
! * happening. */
|
|
Karsten Hopp |
e9308d |
! if (!doit || updating_screen)
|
|
Karsten Hopp |
e9308d |
return;
|
|
Karsten Hopp |
e9308d |
|
|
Karsten Hopp |
e9308d |
/* update all windows that need updating */
|
|
Karsten Hopp |
e9308d |
--- 764,776 ----
|
|
Karsten Hopp |
e9308d |
doit = TRUE;
|
|
Karsten Hopp |
e9308d |
}
|
|
Karsten Hopp |
e9308d |
|
|
Karsten Hopp |
e9308d |
! /* Return when there is nothing to do, screen updating is already
|
|
Karsten Hopp |
e9308d |
! * happening (recursive call) or still starting up. */
|
|
Karsten Hopp |
e9308d |
! if (!doit || updating_screen
|
|
Karsten Hopp |
e9308d |
! #ifdef FEAT_GUI
|
|
Karsten Hopp |
e9308d |
! || gui.starting
|
|
Karsten Hopp |
e9308d |
! #endif
|
|
Karsten Hopp |
e9308d |
! || starting)
|
|
Karsten Hopp |
e9308d |
return;
|
|
Karsten Hopp |
e9308d |
|
|
Karsten Hopp |
e9308d |
/* update all windows that need updating */
|
|
Karsten Hopp |
e9308d |
*** ../vim-7.3.393/src/version.c 2012-01-04 20:29:18.000000000 +0100
|
|
Karsten Hopp |
e9308d |
--- src/version.c 2012-01-10 12:41:32.000000000 +0100
|
|
Karsten Hopp |
e9308d |
***************
|
|
Karsten Hopp |
e9308d |
*** 716,717 ****
|
|
Karsten Hopp |
e9308d |
--- 716,719 ----
|
|
Karsten Hopp |
e9308d |
{ /* Add new patch number below this line */
|
|
Karsten Hopp |
e9308d |
+ /**/
|
|
Karsten Hopp |
e9308d |
+ 394,
|
|
Karsten Hopp |
e9308d |
/**/
|
|
Karsten Hopp |
e9308d |
|
|
Karsten Hopp |
e9308d |
--
|
|
Karsten Hopp |
e9308d |
It is illegal for anyone to try and stop a child from playfully jumping over
|
|
Karsten Hopp |
e9308d |
puddles of water.
|
|
Karsten Hopp |
e9308d |
[real standing law in California, United States of America]
|
|
Karsten Hopp |
e9308d |
|
|
Karsten Hopp |
e9308d |
/// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\
|
|
Karsten Hopp |
e9308d |
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
|
|
Karsten Hopp |
e9308d |
\\\ an exciting new programming language -- http://www.Zimbu.org ///
|
|
Karsten Hopp |
e9308d |
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
|