mirror of
https://github.com/vim/vim.git
synced 2025-07-26 11:04:33 -04:00
updated for version 7.3.394
Problem: When placing a mark while starting up a screen redraw messes up the screen. (lith) Solution: Don't redraw while still starting up. (Christian Brabandt)
This commit is contained in:
parent
6ef47c223e
commit
738f8fc8ed
10
src/screen.c
10
src/screen.c
@ -764,9 +764,13 @@ update_debug_sign(buf, lnum)
|
||||
doit = TRUE;
|
||||
}
|
||||
|
||||
/* Return when there is nothing to do or screen updating already
|
||||
* happening. */
|
||||
if (!doit || updating_screen)
|
||||
/* Return when there is nothing to do, screen updating is already
|
||||
* happening (recursive call) or still starting up. */
|
||||
if (!doit || updating_screen
|
||||
#ifdef FEAT_GUI
|
||||
|| gui.starting
|
||||
#endif
|
||||
|| starting)
|
||||
return;
|
||||
|
||||
/* update all windows that need updating */
|
||||
|
@ -714,6 +714,8 @@ static char *(features[]) =
|
||||
|
||||
static int included_patches[] =
|
||||
{ /* Add new patch number below this line */
|
||||
/**/
|
||||
394,
|
||||
/**/
|
||||
393,
|
||||
/**/
|
||||
|
Loading…
x
Reference in New Issue
Block a user