diff options
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | src/conf.h | 5 | ||||
-rw-r--r-- | src/main.c | 4 |
3 files changed, 16 insertions, 0 deletions
@@ -1,3 +1,10 @@ +2002-07-28 Shawn Betts <sabetts@vcn.bc.ca> + + * src/main.c (handler): do not report badwindow errors if + IGNORE_BADWINDOW is define. + + * src/conf.h (IGNORE_BADWINDOW): new define + 2002-07-06 Shawn Betts <sabetts@vcn.bc.ca> * src/actions.c (cmd_help): key descriptions don't run off the @@ -68,4 +68,9 @@ /* Maximum depth of a link. Used in the 'link' command. */ #define MAX_LINK_DEPTH 16 +/* Bad window messages can be safely ignored now that ratpoison has + become stable enough. Comment this line if you wish to be notified + about bad window messages. */ +#define IGNORE_BADWINDOW 1 + #endif /* !_ _RATPOISON_CONF_H */ @@ -211,7 +211,11 @@ handler (Display *d, XErrorEvent *e) exit(EXIT_FAILURE); } +#ifdef IGNORE_BADWINDOW + return 0; +#else if (ignore_badwindow && e->error_code == BadWindow) return 0; +#endif XGetErrorText (d, e->error_code, error_msg, sizeof (error_msg)); fprintf (stderr, "ratpoison: ERROR: %s!\n", error_msg); |