mirror of
https://github.com/vim/vim.git
synced 2025-09-24 03:44:06 -04:00
patch 9.0.1571: RedrawingDisabled not used consistently
Problem: RedrawingDisabled not used consistently. Solution: Avoid RedrawingDisabled going negative. Set RedrawingDisabled in win_split_ins(). (closes #11961)
This commit is contained in:
11
src/buffer.c
11
src/buffer.c
@@ -2506,11 +2506,10 @@ buflist_getfile(
|
||||
}
|
||||
|
||||
++RedrawingDisabled;
|
||||
int retval = FAIL;
|
||||
if (GETFILE_SUCCESS(getfile(buf->b_fnum, NULL, NULL,
|
||||
(options & GETF_SETMARK), lnum, forceit)))
|
||||
{
|
||||
--RedrawingDisabled;
|
||||
|
||||
// cursor is at to BOL and w_cursor.lnum is checked due to getfile()
|
||||
if (!p_sol && col != 0)
|
||||
{
|
||||
@@ -2519,10 +2518,12 @@ buflist_getfile(
|
||||
curwin->w_cursor.coladd = 0;
|
||||
curwin->w_set_curswant = TRUE;
|
||||
}
|
||||
return OK;
|
||||
retval = OK;
|
||||
}
|
||||
--RedrawingDisabled;
|
||||
return FAIL;
|
||||
|
||||
if (RedrawingDisabled > 0)
|
||||
--RedrawingDisabled;
|
||||
return retval;
|
||||
}
|
||||
|
||||
/*
|
||||
|
Reference in New Issue
Block a user