diff --git a/cmd/wm/wm.c b/cmd/wm/wm.c index 706b0746..a9c4056b 100644 --- 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 index dc04ee9e..71952d45 100644 --- 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 index 7c369f8a..1a6d8e23 100644 --- 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)