mirror of
https://github.com/vim/vim.git
synced 2025-08-24 19:45:50 -04:00
patch 8.2.5037: cursor position may be invalid after "0;" range
Problem: Cursor position may be invalid after "0;" range. Solution: Check the cursor position when it was set by ";" in the range.
This commit is contained in:
parent
305abc6123
commit
4d97a565ae
@ -3280,6 +3280,8 @@ parse_cmd_address(exarg_T *eap, char **errormsg, int silent)
|
|||||||
{
|
{
|
||||||
int address_count = 1;
|
int address_count = 1;
|
||||||
linenr_T lnum;
|
linenr_T lnum;
|
||||||
|
int need_check_cursor = FALSE;
|
||||||
|
int ret = FAIL;
|
||||||
|
|
||||||
// Repeat for all ',' or ';' separated addresses.
|
// Repeat for all ',' or ';' separated addresses.
|
||||||
for (;;)
|
for (;;)
|
||||||
@ -3290,7 +3292,7 @@ parse_cmd_address(exarg_T *eap, char **errormsg, int silent)
|
|||||||
lnum = get_address(eap, &eap->cmd, eap->addr_type, eap->skip, silent,
|
lnum = get_address(eap, &eap->cmd, eap->addr_type, eap->skip, silent,
|
||||||
eap->addr_count == 0, address_count++);
|
eap->addr_count == 0, address_count++);
|
||||||
if (eap->cmd == NULL) // error detected
|
if (eap->cmd == NULL) // error detected
|
||||||
return FAIL;
|
goto theend;
|
||||||
if (lnum == MAXLNUM)
|
if (lnum == MAXLNUM)
|
||||||
{
|
{
|
||||||
if (*eap->cmd == '%') // '%' - all lines
|
if (*eap->cmd == '%') // '%' - all lines
|
||||||
@ -3335,14 +3337,14 @@ parse_cmd_address(exarg_T *eap, char **errormsg, int silent)
|
|||||||
// there is no Vim command which uses '%' and
|
// there is no Vim command which uses '%' and
|
||||||
// ADDR_WINDOWS or ADDR_TABS
|
// ADDR_WINDOWS or ADDR_TABS
|
||||||
*errormsg = _(e_invalid_range);
|
*errormsg = _(e_invalid_range);
|
||||||
return FAIL;
|
goto theend;
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case ADDR_TABS_RELATIVE:
|
case ADDR_TABS_RELATIVE:
|
||||||
case ADDR_UNSIGNED:
|
case ADDR_UNSIGNED:
|
||||||
case ADDR_QUICKFIX:
|
case ADDR_QUICKFIX:
|
||||||
*errormsg = _(e_invalid_range);
|
*errormsg = _(e_invalid_range);
|
||||||
return FAIL;
|
goto theend;
|
||||||
case ADDR_ARGUMENTS:
|
case ADDR_ARGUMENTS:
|
||||||
if (ARGCOUNT == 0)
|
if (ARGCOUNT == 0)
|
||||||
eap->line1 = eap->line2 = 0;
|
eap->line1 = eap->line2 = 0;
|
||||||
@ -3374,7 +3376,7 @@ parse_cmd_address(exarg_T *eap, char **errormsg, int silent)
|
|||||||
if (eap->addr_type != ADDR_LINES)
|
if (eap->addr_type != ADDR_LINES)
|
||||||
{
|
{
|
||||||
*errormsg = _(e_invalid_range);
|
*errormsg = _(e_invalid_range);
|
||||||
return FAIL;
|
goto theend;
|
||||||
}
|
}
|
||||||
|
|
||||||
++eap->cmd;
|
++eap->cmd;
|
||||||
@ -3382,11 +3384,11 @@ parse_cmd_address(exarg_T *eap, char **errormsg, int silent)
|
|||||||
{
|
{
|
||||||
fp = getmark('<', FALSE);
|
fp = getmark('<', FALSE);
|
||||||
if (check_mark(fp) == FAIL)
|
if (check_mark(fp) == FAIL)
|
||||||
return FAIL;
|
goto theend;
|
||||||
eap->line1 = fp->lnum;
|
eap->line1 = fp->lnum;
|
||||||
fp = getmark('>', FALSE);
|
fp = getmark('>', FALSE);
|
||||||
if (check_mark(fp) == FAIL)
|
if (check_mark(fp) == FAIL)
|
||||||
return FAIL;
|
goto theend;
|
||||||
eap->line2 = fp->lnum;
|
eap->line2 = fp->lnum;
|
||||||
++eap->addr_count;
|
++eap->addr_count;
|
||||||
}
|
}
|
||||||
@ -3401,10 +3403,13 @@ parse_cmd_address(exarg_T *eap, char **errormsg, int silent)
|
|||||||
if (!eap->skip)
|
if (!eap->skip)
|
||||||
{
|
{
|
||||||
curwin->w_cursor.lnum = eap->line2;
|
curwin->w_cursor.lnum = eap->line2;
|
||||||
|
|
||||||
// Don't leave the cursor on an illegal line or column, but do
|
// Don't leave the cursor on an illegal line or column, but do
|
||||||
// accept zero as address, so 0;/PATTERN/ works correctly.
|
// accept zero as address, so 0;/PATTERN/ works correctly.
|
||||||
|
// Check the cursor position before returning.
|
||||||
if (eap->line2 > 0)
|
if (eap->line2 > 0)
|
||||||
check_cursor();
|
check_cursor();
|
||||||
|
need_check_cursor = TRUE;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else if (*eap->cmd != ',')
|
else if (*eap->cmd != ',')
|
||||||
@ -3420,7 +3425,12 @@ parse_cmd_address(exarg_T *eap, char **errormsg, int silent)
|
|||||||
if (lnum == MAXLNUM)
|
if (lnum == MAXLNUM)
|
||||||
eap->addr_count = 0;
|
eap->addr_count = 0;
|
||||||
}
|
}
|
||||||
return OK;
|
ret = OK;
|
||||||
|
|
||||||
|
theend:
|
||||||
|
if (need_check_cursor)
|
||||||
|
check_cursor();
|
||||||
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -717,5 +717,13 @@ func Test_address_line_overflow()
|
|||||||
bwipe!
|
bwipe!
|
||||||
endfunc
|
endfunc
|
||||||
|
|
||||||
|
" This was leaving the cursor in line zero
|
||||||
|
func Test_using_zero_in_range()
|
||||||
|
new
|
||||||
|
norm o00
|
||||||
|
silent! 0;s/\%')
|
||||||
|
bwipe!
|
||||||
|
endfunc
|
||||||
|
|
||||||
|
|
||||||
" vim: shiftwidth=2 sts=2 expandtab
|
" vim: shiftwidth=2 sts=2 expandtab
|
||||||
|
@ -734,6 +734,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 */
|
||||||
|
/**/
|
||||||
|
5037,
|
||||||
/**/
|
/**/
|
||||||
5036,
|
5036,
|
||||||
/**/
|
/**/
|
||||||
|
Loading…
x
Reference in New Issue
Block a user