mirror of
https://github.com/vim/vim.git
synced 2025-07-26 11:04:33 -04:00
patch 8.1.0828: still using FEAT_VIRTUALEDIT
Problem: Still using FEAT_VIRTUALEDIT. Solution: Remove last use of FEAT_VIRTUALEDIT.
This commit is contained in:
parent
2a953fcf10
commit
6aba96dd57
@ -3064,9 +3064,7 @@ qf_jump_goto_line(
|
|||||||
if (qf_col > 0)
|
if (qf_col > 0)
|
||||||
{
|
{
|
||||||
curwin->w_cursor.col = qf_col - 1;
|
curwin->w_cursor.col = qf_col - 1;
|
||||||
#ifdef FEAT_VIRTUALEDIT
|
|
||||||
curwin->w_cursor.coladd = 0;
|
curwin->w_cursor.coladd = 0;
|
||||||
#endif
|
|
||||||
if (qf_viscol == TRUE)
|
if (qf_viscol == TRUE)
|
||||||
{
|
{
|
||||||
// Check each character from the beginning of the error
|
// Check each character from the beginning of the error
|
||||||
@ -4108,9 +4106,7 @@ qf_win_goto(win_T *win, linenr_T lnum)
|
|||||||
curbuf = win->w_buffer;
|
curbuf = win->w_buffer;
|
||||||
curwin->w_cursor.lnum = lnum;
|
curwin->w_cursor.lnum = lnum;
|
||||||
curwin->w_cursor.col = 0;
|
curwin->w_cursor.col = 0;
|
||||||
#ifdef FEAT_VIRTUALEDIT
|
|
||||||
curwin->w_cursor.coladd = 0;
|
curwin->w_cursor.coladd = 0;
|
||||||
#endif
|
|
||||||
curwin->w_curswant = 0;
|
curwin->w_curswant = 0;
|
||||||
update_topline(); // scroll to show the line
|
update_topline(); // scroll to show the line
|
||||||
redraw_later(VALID);
|
redraw_later(VALID);
|
||||||
|
@ -783,6 +783,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
828,
|
||||||
/**/
|
/**/
|
||||||
827,
|
827,
|
||||||
/**/
|
/**/
|
||||||
|
Loading…
x
Reference in New Issue
Block a user