]> granicus.if.org Git - vim/commitdiff
updated for version 7.4.491 v7.4.491
authorBram Moolenaar <Bram@vim.org>
Fri, 31 Oct 2014 14:45:52 +0000 (15:45 +0100)
committerBram Moolenaar <Bram@vim.org>
Fri, 31 Oct 2014 14:45:52 +0000 (15:45 +0100)
Problem:    When winrestview() has a negative "topline" value there are
            display errors.
Solution:   Correct a negative value to 1. (Hirohito Higashi)

src/eval.c
src/version.c

index 8f62cb2e8312b62f951fccf1aed25cfa610583f2..f5aa7e919e32e9c56116cbfb36dc695ec0d5f0ea 100644 (file)
@@ -19576,7 +19576,7 @@ f_winrestview(argvars, rettv)
 # endif
        changed_window_setting();
 
-       if (curwin->w_topline == 0)
+       if (curwin->w_topline <= 0)
            curwin->w_topline = 1;
        if (curwin->w_topline > curbuf->b_ml.ml_line_count)
            curwin->w_topline = curbuf->b_ml.ml_line_count;
index 3fc09c83c55f2a33097de010e23ec5e4b03200c6..71258da12d21e6a9e3d16dae9676ee054eb637c3 100644 (file)
@@ -741,6 +741,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    491,
 /**/
     490,
 /**/