diff options
| author | Anselm R. Garbe <arg@10kloc.org> | 2006-09-11 11:28:28 +0200 | 
|---|---|---|
| committer | Anselm R. Garbe <arg@10kloc.org> | 2006-09-11 11:28:28 +0200 | 
| commit | b597fa46370af6594c0980f6c2ddefbe943ee933 (patch) | |
| tree | 5000414fe9f80a09e99d199f848e3ff40107f045 | |
| parent | d2d394eccf2d23eb264a321fe187bb2084beb4b9 (diff) | |
| download | dwm-b597fa46370af6594c0980f6c2ddefbe943ee933.tar.gz | |
fixed some other comments, now also the code side seems to be at a level to be reviewed by experienced programmers
| -rw-r--r-- | main.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| @@ -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) @@ -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 | 
