]> granicus.if.org Git - vim/commitdiff
updated for version 7.3.1225 v7.3.1225
authorBram Moolenaar <Bram@vim.org>
Sat, 22 Jun 2013 11:00:16 +0000 (13:00 +0200)
committerBram Moolenaar <Bram@vim.org>
Sat, 22 Jun 2013 11:00:16 +0000 (13:00 +0200)
Problem:    Compiler warnings when building with Motif.
Solution:   Change set_label() argument. (Kazunobu Kuriyama)

src/gui_motif.c
src/version.c

index 5b6c7a76434ab678a3559c79463518011cae3443..57f264df95830bea1664eb7ff0837782bf587f04 100644 (file)
@@ -3653,7 +3653,7 @@ find_replace_keypress(w, frdp, event)
     static void
 set_label(w, label)
     Widget w;
-    char_u *label;
+    char *label;
 {
     XmString   str;
     char_u     *p, *next;
@@ -3662,7 +3662,7 @@ set_label(w, label)
     if (!w)
        return;
 
-    p = vim_strsave(label);
+    p = vim_strsave((char_u *)label);
     if (p == NULL)
        return;
     for (next = p; *next; ++next)
index 1bc2bae5dbb8932b317e80c9432c431337d67d0d..4d2e7a9625a45522c302504c10c089e731226a60 100644 (file)
@@ -728,6 +728,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    1225,
 /**/
     1224,
 /**/