wmii

git clone git://oldgit.suckless.org/wmii/
Log | Files | Refs | README | LICENSE

commit 28f040c2226e2a8a8d1f1da0a2d7e9c3d145da4e
parent ca6aa15f56ac0039434e70f63cbbd00a4892d547
Author: Anselm R. Garbe <garbeam@wmii.de>
Date:   Tue, 17 Jan 2006 15:54:37 +0200

decided to keep auxillary pointer in Frame


Diffstat:
cmd/wm/wm.h | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/cmd/wm/wm.h b/cmd/wm/wm.h @@ -126,7 +126,7 @@ struct LayoutDef { struct Layout { Page *page; LayoutDef *def; - void *aux; /* free pointer */ + void *aux; /* auxillary pointer */ File *file[L_LAST]; }; @@ -139,7 +139,7 @@ struct Frame { GC gc; XRectangle rect; Cursor cursor; - void *aux; /* free pointer */ + void *aux; /* auxillary pointer */ File *file[F_LAST]; Frame *next; Frame *prev;