fixed some other comments, now also the code side seems to be at a level to be reviewed by experienced programmers
b597fa46
1 file(s) · +2 −2
| 214 | 214 | /* |
|
| 215 | 215 | * There's no way to check accesses to destroyed windows, thus those cases are |
|
| 216 | 216 | * ignored (especially on UnmapNotify's). Other types of errors call Xlibs |
|
| 217 | - | * default error handler, which calls exit(). |
|
| 217 | + | * default error handler, which may call exit. |
|
| 218 | 218 | */ |
|
| 219 | 219 | int |
|
| 220 | 220 | xerror(Display *dpy, XErrorEvent *ee) |
|
| 229 | 229 | return 0; |
|
| 230 | 230 | fprintf(stderr, "dwm: fatal error: request code=%d, error code=%d\n", |
|
| 231 | 231 | ee->request_code, ee->error_code); |
|
| 232 | - | return xerrorxlib(dpy, ee); /* may call exit() */ |
|
| 232 | + | return xerrorxlib(dpy, ee); /* may call exit */ |
|
| 233 | 233 | } |
|
| 234 | 234 | ||
| 235 | 235 | int |
|