]> granicus.if.org Git - vim/commitdiff
updated for version 7.2-038 v7.2.038
authorBram Moolenaar <Bram@vim.org>
Wed, 12 Nov 2008 13:52:46 +0000 (13:52 +0000)
committerBram Moolenaar <Bram@vim.org>
Wed, 12 Nov 2008 13:52:46 +0000 (13:52 +0000)
src/if_xcmdsrv.c
src/version.c

index 024bac6b2a116f4c45bda25d50978ce5baca1929..ff4a46f6c6e353cab4e67aadcee8dd5ec7505114 100644 (file)
@@ -736,7 +736,7 @@ ServerReplyFind(w, op)
                + serverReply.ga_len;
            e.id = w;
            ga_init2(&e.strings, 1, 100);
-           memcpy(p, &e, sizeof(e));
+           mch_memmove(p, &e, sizeof(e));
            serverReply.ga_len++;
        }
     }
@@ -1018,7 +1018,7 @@ LookupName(dpy, name, delete, loose)
        p++;
        count = numItems - (p - regProp);
        if (count > 0)
-           memcpy(entry, p, count);
+           mch_memmove(entry, p, count);
        XChangeProperty(dpy, RootWindow(dpy, 0), registryProperty, XA_STRING,
                        8, PropModeReplace, regProp,
                        (int)(numItems - (p - entry)));
@@ -1072,7 +1072,7 @@ DeleteAnyLingerer(dpy, win)
                p++;
                lastHalf = numItems - (p - regProp);
                if (lastHalf > 0)
-                   memcpy(entry, p, lastHalf);
+                   mch_memmove(entry, p, lastHalf);
                numItems = (entry - regProp) + lastHalf;
                p = entry;
                continue;
index 52385a312d4abae20b0ba9f35defca13e38d4108..2ca11041be41f9e3bca12a7a661055b1ea44e31c 100644 (file)
@@ -676,6 +676,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    38,
 /**/
     37,
 /**/