]> git.ipfire.org Git - thirdparty/vim.git/commitdiff
updated for version 7.3.682 v7.3.682
authorBram Moolenaar <Bram@vim.org>
Thu, 4 Oct 2012 20:38:37 +0000 (22:38 +0200)
committerBram Moolenaar <Bram@vim.org>
Thu, 4 Oct 2012 20:38:37 +0000 (22:38 +0200)
Problem:    Compiler complains about incompatible types.
Solution:   Remove type casts. (hint by Danek Duvall)

src/edit.c
src/version.c

index 5fde388f7304bdadb44350357c53b9292a11db0d..9017fd0f317cb9ca48ab67a88129ed1b622f0839 100644 (file)
@@ -4194,8 +4194,8 @@ ins_compl_get_exp(ini)
                        ins_buf->b_fname == NULL
                            ? buf_spname(ins_buf)
                            : ins_buf->b_sfname == NULL
-                               ? (char *)ins_buf->b_fname
-                               : (char *)ins_buf->b_sfname);
+                               ? ins_buf->b_fname
+                               : ins_buf->b_sfname);
                (void)msg_trunc_attr(IObuff, TRUE, hl_attr(HLF_R));
            }
            else if (*e_cpt == NUL)
index c991525c4b48d3c624985c777aed936297d3beea..143657e3430dc6ea09658ae757cd7bf1481d599d 100644 (file)
@@ -719,6 +719,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    682,
 /**/
     681,
 /**/