tfixed some other comments, now also the code side seems to be at a level to be reviewed by experienced programmers - dwm - [fork] customized build of dwm, the dynamic window manager
(HTM) git clone git://src.adamsgaard.dk/dwm
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) README
(DIR) LICENSE
---
(DIR) commit b597fa46370af6594c0980f6c2ddefbe943ee933
(DIR) parent d2d394eccf2d23eb264a321fe187bb2084beb4b9
(HTM) Author: Anselm R. Garbe <arg@10kloc.org>
Date: Mon, 11 Sep 2006 11:28:28 +0200
fixed some other comments, now also the code side seems to be at a level to be reviewed by experienced programmers
Diffstat:
M main.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
---
(DIR) diff --git a/main.c b/main.c
t@@ -214,7 +214,7 @@ quit(Arg *arg)
/*
* There's no way to check accesses to destroyed windows, thus those cases are
* ignored (especially on UnmapNotify's). Other types of errors call Xlibs
- * default error handler, which calls exit().
+ * default error handler, which may call exit.
*/
int
xerror(Display *dpy, XErrorEvent *ee)
t@@ -229,7 +229,7 @@ xerror(Display *dpy, XErrorEvent *ee)
return 0;
fprintf(stderr, "dwm: fatal error: request code=%d, error code=%d\n",
ee->request_code, ee->error_code);
- return xerrorxlib(dpy, ee); /* may call exit() */
+ return xerrorxlib(dpy, ee); /* may call exit */
}
int