mirror of
https://github.com/vim/vim.git
synced 2025-09-27 04:14:06 -04:00
updated for version 7.1-132
This commit is contained in:
@@ -10388,7 +10388,8 @@ f_getpos(argvars, rettv)
|
|||||||
list_append_number(l, (varnumber_T)0);
|
list_append_number(l, (varnumber_T)0);
|
||||||
list_append_number(l, (fp != NULL) ? (varnumber_T)fp->lnum
|
list_append_number(l, (fp != NULL) ? (varnumber_T)fp->lnum
|
||||||
: (varnumber_T)0);
|
: (varnumber_T)0);
|
||||||
list_append_number(l, (fp != NULL) ? (varnumber_T)fp->col + 1
|
list_append_number(l, (fp != NULL)
|
||||||
|
? (varnumber_T)(fp->col == MAXCOL ? MAXCOL : fp->col + 1)
|
||||||
: (varnumber_T)0);
|
: (varnumber_T)0);
|
||||||
list_append_number(l,
|
list_append_number(l,
|
||||||
#ifdef FEAT_VIRTUALEDIT
|
#ifdef FEAT_VIRTUALEDIT
|
||||||
|
@@ -666,6 +666,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 */
|
||||||
|
/**/
|
||||||
|
132,
|
||||||
/**/
|
/**/
|
||||||
131,
|
131,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user