]> granicus.if.org Git - vim/commitdiff
updated for version 7.3.204 v7.3.204
authorBram Moolenaar <Bram@vim.org>
Wed, 25 May 2011 15:29:44 +0000 (17:29 +0200)
committerBram Moolenaar <Bram@vim.org>
Wed, 25 May 2011 15:29:44 +0000 (17:29 +0200)
Problem:    Compiler warning.
Solution:   Add type cast. (Mike Williams)

src/misc1.c
src/version.c

index 59add064a7b4596418afad9166d8af9ff611a070..913da2ad79bc1b7fe24bc8e1108155795578cc92 100644 (file)
@@ -7657,7 +7657,7 @@ get_c_indent()
                             * not the one from "if () {". */
                            if (*l == '}')
                                curwin->w_cursor.col =
-                                                  (l - ml_get_curline()) + 1;
+                                         (colnr_T)(l - ml_get_curline()) + 1;
 
                            if ((trypos = find_start_brace(ind_maxcomment))
                                                                       == NULL
index d8811b268eae86bcb0640a73053de1cf1f889708..8de124f29cbc4134d0f99dcd28017a258840b5f9 100644 (file)
@@ -709,6 +709,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    204,
 /**/
     203,
 /**/