Commit 4230932

arg@mmvi <unknown>
2006-09-20 03:49:32
reviewed util.c
1 parent f17e898
Changed files (1)
util.c
@@ -47,7 +47,8 @@ spawn(Arg *arg) {
 
 	if(!arg->cmd)
 		return;
-	/* the double-fork construct avoids zombie processes */
+	/* The double-fork construct avoids zombie processes and keeps the code
+	 * clean from stupid signal handlers. */
 	if(fork() == 0) {
 		if(fork() == 0) {
 			if(dpy)