0
0
mirror of https://github.com/vim/vim.git synced 2025-09-23 03:43:49 -04:00

updated for version 7.0018

This commit is contained in:
Bram Moolenaar
2004-10-11 10:06:20 +00:00
parent 349b2f643a
commit 7171abea1a
12 changed files with 141 additions and 56 deletions

View File

@@ -1021,7 +1021,7 @@ DeleteAnyLingerer(dpy, win)
char_u *regProp, *entry = NULL;
char_u *p;
long_u numItems;
Window wwin;
int_u wwin;
/*
* Read the registry property.
@@ -1034,8 +1034,8 @@ DeleteAnyLingerer(dpy, win)
{
if (*p != 0)
{
sscanf((char *)p, "%x", (int_u *)&wwin);
if (wwin == win)
sscanf((char *)p, "%x", &wwin);
if ((Window)wwin == win)
{
int lastHalf;