1
0
forked from aniani/vim

updated for version 7.1-132

This commit is contained in:
Bram Moolenaar 2007-10-02 20:08:54 +00:00
parent 893de92ede
commit e65f732db3
2 changed files with 4 additions and 1 deletions

View File

@ -10388,7 +10388,8 @@ f_getpos(argvars, rettv)
list_append_number(l, (varnumber_T)0);
list_append_number(l, (fp != NULL) ? (varnumber_T)fp->lnum
: (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);
list_append_number(l,
#ifdef FEAT_VIRTUALEDIT

View File

@ -666,6 +666,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
132,
/**/
131,
/**/