dwm-meillo
changeset 453:f30f937f9e52
small fix
author | Anselm R. Garbe <arg@10kloc.org> |
---|---|
date | Mon, 11 Sep 2006 08:58:58 +0200 |
parents | 026aba558fdf |
children | ffb462fb7903 |
files | config.mk dwm.h |
diffstat | 2 files changed, 3 insertions(+), 3 deletions(-) [+] |
line diff
1.1 --- a/config.mk Mon Sep 11 07:40:41 2006 +0200 1.2 +++ b/config.mk Mon Sep 11 08:58:58 2006 +0200 1.3 @@ -1,5 +1,5 @@ 1.4 # dwm version 1.5 -VERSION = 1.5 1.6 +VERSION = 1.6 1.7 1.8 # Customize below to fit your system 1.9
2.1 --- a/dwm.h Mon Sep 11 07:40:41 2006 +0200 2.2 +++ b/dwm.h Mon Sep 11 08:58:58 2006 +0200 2.3 @@ -48,7 +48,7 @@ 2.4 char name[256]; 2.5 int proto; 2.6 int x, y, w, h; 2.7 - int tx, ty, tw, th; /* title */ 2.8 + int tx, ty, tw, th; /* title window geometry */ 2.9 int basew, baseh, incw, inch, maxw, maxh, minw, minh; 2.10 int grav; 2.11 long flags; 2.12 @@ -121,7 +121,7 @@ 2.13 extern void *emallocz(unsigned int size); /* allocates zero-initialized memory, exits on error */ 2.14 extern void eprint(const char *errstr, ...); /* prints error string and exits with return code 1 */ 2.15 extern void *erealloc(void *ptr, unsigned int size); /* reallocates memory, exits on error */ 2.16 -extern void spawn(Arg *arg) /* forks a new subprocess accordingly to arg's cmd */ 2.17 +extern void spawn(Arg *arg); /* forks a new subprocess accordingly to arg's cmd */ 2.18 2.19 /* view.c */ 2.20 extern void detach(Client *c); /* detaches c from global client list */