mirror of
https://github.com/vim/vim.git
synced 2025-07-26 11:04:33 -04:00
updated for version 7.2-038
This commit is contained in:
parent
a878510770
commit
fbc0cfad0c
@ -736,7 +736,7 @@ ServerReplyFind(w, op)
|
|||||||
+ serverReply.ga_len;
|
+ serverReply.ga_len;
|
||||||
e.id = w;
|
e.id = w;
|
||||||
ga_init2(&e.strings, 1, 100);
|
ga_init2(&e.strings, 1, 100);
|
||||||
memcpy(p, &e, sizeof(e));
|
mch_memmove(p, &e, sizeof(e));
|
||||||
serverReply.ga_len++;
|
serverReply.ga_len++;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -1018,7 +1018,7 @@ LookupName(dpy, name, delete, loose)
|
|||||||
p++;
|
p++;
|
||||||
count = numItems - (p - regProp);
|
count = numItems - (p - regProp);
|
||||||
if (count > 0)
|
if (count > 0)
|
||||||
memcpy(entry, p, count);
|
mch_memmove(entry, p, count);
|
||||||
XChangeProperty(dpy, RootWindow(dpy, 0), registryProperty, XA_STRING,
|
XChangeProperty(dpy, RootWindow(dpy, 0), registryProperty, XA_STRING,
|
||||||
8, PropModeReplace, regProp,
|
8, PropModeReplace, regProp,
|
||||||
(int)(numItems - (p - entry)));
|
(int)(numItems - (p - entry)));
|
||||||
@ -1072,7 +1072,7 @@ DeleteAnyLingerer(dpy, win)
|
|||||||
p++;
|
p++;
|
||||||
lastHalf = numItems - (p - regProp);
|
lastHalf = numItems - (p - regProp);
|
||||||
if (lastHalf > 0)
|
if (lastHalf > 0)
|
||||||
memcpy(entry, p, lastHalf);
|
mch_memmove(entry, p, lastHalf);
|
||||||
numItems = (entry - regProp) + lastHalf;
|
numItems = (entry - regProp) + lastHalf;
|
||||||
p = entry;
|
p = entry;
|
||||||
continue;
|
continue;
|
||||||
|
@ -676,6 +676,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
38,
|
||||||
/**/
|
/**/
|
||||||
37,
|
37,
|
||||||
/**/
|
/**/
|
||||||
|
Loading…
x
Reference in New Issue
Block a user