1
0
mirror of https://github.com/gryf/wmaker.git synced 2025-12-19 20:38:08 +01:00

Fix stupid bug in wiuthdrawal of window, event.c

This commit is contained in:
kojima
1999-03-16 00:16:29 +00:00
parent 7f9f88940d
commit d0166d199f
2 changed files with 5 additions and 5 deletions

View File

@@ -51,7 +51,7 @@
/* #undef X_DISPLAY_MISSING */ /* #undef X_DISPLAY_MISSING */
/* define to the path to cpp */ /* define to the path to cpp */
#define CPP_PATH "/usr/bin/cpp" #define CPP_PATH "/lib/cpp"
/* define if you want GNOME stuff support */ /* define if you want GNOME stuff support */
/* #undef GNOME_STUFF */ /* #undef GNOME_STUFF */
@@ -115,7 +115,7 @@
/* define if you want support for X window's X_LOCALE /* define if you want support for X window's X_LOCALE
* set by configure */ * set by configure */
#define X_LOCALE 1 /* #undef X_LOCALE */
/* the place where shared data is stored /* the place where shared data is stored
* defined by configure */ * defined by configure */
@@ -159,13 +159,13 @@
#define HAVE_LIMITS_H 1 #define HAVE_LIMITS_H 1
/* Define if you have the <poll.h> header file. */ /* Define if you have the <poll.h> header file. */
/* #undef HAVE_POLL_H */ #define HAVE_POLL_H 1
/* Define if you have the <sys/ioctl.h> header file. */ /* Define if you have the <sys/ioctl.h> header file. */
#define HAVE_SYS_IOCTL_H 1 #define HAVE_SYS_IOCTL_H 1
/* Define if you have the <sys/select.h> header file. */ /* Define if you have the <sys/select.h> header file. */
/* #undef HAVE_SYS_SELECT_H */ #define HAVE_SYS_SELECT_H 1
/* Define if you have the <sys/time.h> header file. */ /* Define if you have the <sys/time.h> header file. */
#define HAVE_SYS_TIME_H 1 #define HAVE_SYS_TIME_H 1

View File

@@ -778,7 +778,7 @@ handleUnmapNotify(XEvent *event)
/* if the window was reparented, do not reparent it back to the /* if the window was reparented, do not reparent it back to the
* root window */ * root window */
// wUnmanageWindow(wwin, !reparented, False); wUnmanageWindow(wwin, !reparented, False);
} }
XUngrabServer(dpy); XUngrabServer(dpy);
} }