wmii

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

commit 231c4c44b7cb1739f926c76008d34dd69b50868d
parent 28f040c2226e2a8a8d1f1da0a2d7e9c3d145da4e
Author: Anselm R. Garbe <garbeam@wmii.de>
Date:   Tue, 17 Jan 2006 16:34:50 +0200

removed DETACHED_FRAME prefix, unnecessary (old ixp sucks badly)


Diffstat:
cmd/wm/wm.c | 1-
cmd/wm/wm.h | 1-
libixp/ramfs.c | 1+
3 files changed, 1 insertion(+), 2 deletions(-)

diff --git a/cmd/wm/wm.c b/cmd/wm/wm.c @@ -661,7 +661,6 @@ init_cursors() static void init_default() { - def[WM_DETACHED_FRAME] = ixp_create(ixps, "/detached"); def[WM_TRANS_COLOR] = wmii_create_ixpfile(ixps, "/default/transcolor", BLITZ_SEL_FG_COLOR); diff --git a/cmd/wm/wm.h b/cmd/wm/wm.h @@ -42,7 +42,6 @@ enum { /* array indexes of wm file pointers */ enum { WM_CTL, - WM_DETACHED_FRAME, WM_TRANS_COLOR, WM_MANAGED_GEOMETRY, WM_SEL_BG_COLOR, diff --git a/libixp/ramfs.c b/libixp/ramfs.c @@ -206,6 +206,7 @@ static void _ixp_remove(IXPServer * s, File * f) { if (!f) return; + fprintf(stderr, "_ixp_remove: %s\n", f->name); if (f->next) { _ixp_remove(s, f->next); if (s->errstr)