all repos — openbox @ 19eb13679dff7cb492f09b848e34b1fe6c081cbc

openbox fork - make it a bit more like ryudo

abort() on X errors that aren't BadWindow errors
Dana Jansens danakj@orodu.net
commit

19eb13679dff7cb492f09b848e34b1fe6c081cbc

parent

13f1f39f013b00425310859aa7fbe0f779c0f168

1 files changed, 2 insertions(+), 0 deletions(-)

jump to
M otk/display.ccotk/display.cc

@@ -65,6 +65,8 @@ //if (e->error_code != BadWindow)

{ XGetErrorText(d, e->error_code, errtxt, 128); printf("X Error: %s\n", errtxt); + if (e->error_code != BadWindow) + abort(); } #else (void)d;