about summary refs log tree commit diff stats
path: root/dwm.h
diff options
context:
space:
mode:
authorAnselm R. Garbe <arg@10kloc.org>2006-09-11 08:58:58 +0200
committerAnselm R. Garbe <arg@10kloc.org>2006-09-11 08:58:58 +0200
commit438beeabde5e56f8d85e0dd143721e9372e3eab4 (patch)
tree856789fdc4aea5431d4669f1385b1b501a8eb7f2 /dwm.h
parent281f0981a6edd51417f9bb427cc870370748e43f (diff)
downloaddwm-438beeabde5e56f8d85e0dd143721e9372e3eab4.tar.gz
small fix
Diffstat (limited to 'dwm.h')
-rw-r--r--dwm.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/dwm.h b/dwm.h
index e416a1a..22a56d4 100644
--- a/dwm.h
+++ b/dwm.h
@@ -48,7 +48,7 @@ struct Client {
 	char name[256];
 	int proto;
 	int x, y, w, h;
-	int tx, ty, tw, th; /* title */
+	int tx, ty, tw, th; /* title window geometry */
 	int basew, baseh, incw, inch, maxw, maxh, minw, minh;
 	int grav;
 	long flags; 
@@ -121,7 +121,7 @@ extern void toggletag(Arg *arg);		/* toggles c tags accordingly to arg's index *
 extern void *emallocz(unsigned int size);	/* allocates zero-initialized memory, exits on error */
 extern void eprint(const char *errstr, ...);	/* prints error string and exits with return code 1 */
 extern void *erealloc(void *ptr, unsigned int size);	/* reallocates memory, exits on error */
-extern void spawn(Arg *arg)			/* forks a new subprocess accordingly to arg's cmd */
+extern void spawn(Arg *arg);			/* forks a new subprocess accordingly to arg's cmd */
 
 /* view.c */
 extern void detach(Client *c);			/* detaches c from global client list */