updated for version 7.1-132

This commit is contained in:
vimboss
2007-10-02 20:08:54 +00:00
parent a867f8b656
commit 1900fe9ac9
2 changed files with 4 additions and 1 deletions
+2 -1
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
+2
View File
@@ -666,6 +666,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
132,
/**/
131,
/**/