mirror of
https://github.com/awesomeWM/awesome
synced 2024-11-17 07:47:41 +01:00
drop error about killing client already killed
This commit is contained in:
parent
a4d4fedfac
commit
2eeeeaf7e4
1 changed files with 2 additions and 1 deletions
|
@ -182,7 +182,8 @@ static int
|
|||
xerror(Display *edpy, XErrorEvent *ee)
|
||||
{
|
||||
if(ee->error_code == BadWindow
|
||||
|| (ee->error_code == BadMatch && ee->request_code == X_SetInputFocus))
|
||||
|| (ee->error_code == BadMatch && ee->request_code == X_SetInputFocus)
|
||||
|| (ee->error_code == BadValue && ee->request_code == X_KillClient))
|
||||
return 0;
|
||||
warn("fatal error: request code=%d, error code=%d\n", ee->request_code, ee->error_code);
|
||||
return xerrorxlib(edpy, ee); /* may call exit */
|
||||
|
|
Loading…
Reference in a new issue