forked from aniani/vim
updated for version 7.2-014
This commit is contained in:
@@ -16667,7 +16667,7 @@ f_synstack(argvars, rettv)
|
|||||||
col = get_tv_number(&argvars[1]) - 1; /* -1 on type error */
|
col = get_tv_number(&argvars[1]) - 1; /* -1 on type error */
|
||||||
|
|
||||||
if (lnum >= 1 && lnum <= curbuf->b_ml.ml_line_count
|
if (lnum >= 1 && lnum <= curbuf->b_ml.ml_line_count
|
||||||
&& col >= 0 && col < (long)STRLEN(ml_get(lnum))
|
&& col >= 0 && (col == 0 || col < (long)STRLEN(ml_get(lnum)))
|
||||||
&& rettv_list_alloc(rettv) != FAIL)
|
&& rettv_list_alloc(rettv) != FAIL)
|
||||||
{
|
{
|
||||||
(void)syn_get_id(curwin, lnum, (colnr_T)col, FALSE, NULL, TRUE);
|
(void)syn_get_id(curwin, lnum, (colnr_T)col, FALSE, NULL, TRUE);
|
||||||
|
@@ -676,6 +676,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 */
|
||||||
|
/**/
|
||||||
|
14,
|
||||||
/**/
|
/**/
|
||||||
13,
|
13,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user