On Mon, 16 Oct 2006 10:27:32 +0200 Anselm R. Garbe wrote:
> Can you check if dwm-1.9 compiles fine? I use some special array
> initializations there as well (esp. in event.c and config.h).
Hmm, maybe 
void (*handler[LASTEvent]) (XEvent *) = {
        [ButtonPress] = buttonpress,
        [ConfigureRequest] = configurerequest,
        [DestroyNotify] = destroynotify,
        [EnterNotify] = enternotify,
        [LeaveNotify] = leavenotify,
        [Expose] = expose,
        [KeyPress] = keypress,
        [MappingNotify] = mappingnotify,
        [MapRequest] = maprequest,
        [PropertyNotify] = propertynotify,
        [UnmapNotify] = unmapnotify
};
(from dwm event.c, line 332)
works, but
static Dirtab *dirtab[] = {
        [FsRoot]        dirtab_root,
        [FsDBars]       dirtab_bars,
        [FsDClients]    dirtab_clients,
        [FsDClient]     dirtab_client,
        [FsDTags]       dirtab_tags,
        [FsDTag]        dirtab_tag,
};
(from wmii-4 fs.c, line 125)
not...

Regards,
Stefan
-- 
GMX DSL-Flatrate 0,- Euro* - Überall, wo DSL verfügbar ist!
NEU: Jetzt bis zu 16.000 kBit/s! http://www.gmx.net/de/go/dsl

Reply via email to