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/dslReceived on Mon Oct 16 2006 - 11:03:34 UTC
This archive was generated by hypermail 2.2.0 : Sun Jul 13 2008 - 16:15:54 UTC