]> granicus.if.org Git - vim/commitdiff
updated for version 7.2-275 v7.2.275
authorBram Moolenaar <Bram@vim.org>
Tue, 3 Nov 2009 14:33:17 +0000 (14:33 +0000)
committerBram Moolenaar <Bram@vim.org>
Tue, 3 Nov 2009 14:33:17 +0000 (14:33 +0000)
src/memline.c
src/version.c

index eba3561a75eab805ef9b7e8a64b79c443c2bcbb5..facdeb62e3d6bbe99182d29a2bb2d2e43656bd1e 100644 (file)
@@ -1285,7 +1285,7 @@ ml_recover()
                    for (i = 0; i < dp->db_line_count; ++i)
                    {
                        txt_start = (dp->db_index[i] & DB_INDEX_MASK);
-                       if (txt_start <= HEADER_SIZE
+                       if (txt_start <= (int)HEADER_SIZE
                                          || txt_start >= (int)dp->db_txt_end)
                        {
                            p = (char_u *)"???";
@@ -1296,7 +1296,8 @@ ml_recover()
                        ml_append(lnum++, p, (colnr_T)0, TRUE);
                    }
                    if (has_error)
-                       ml_append(lnum++, (char_u *)_("???END"), (colnr_T)0, TRUE);
+                       ml_append(lnum++, (char_u *)_("???END"),
+                                                           (colnr_T)0, TRUE);
                }
            }
        }
@@ -3576,11 +3577,10 @@ resolve_symlink(fname, buf)
  * Make swap file name out of the file name and a directory name.
  * Returns pointer to allocated memory or NULL.
  */
-/*ARGSUSED*/
     char_u *
 makeswapname(fname, ffname, buf, dir_name)
     char_u     *fname;
-    char_u     *ffname;
+    char_u     *ffname UNUSED;
     buf_T      *buf;
     char_u     *dir_name;
 {
index 9f0ec933ca03210332b28553167175cb2d7bf2ff..f1efeae64a5160cbb7038ece0fe8cb3bd074e7b5 100644 (file)
@@ -676,6 +676,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    275,
 /**/
     274,
 /**/