improved intro comment in dwm.h, updated config.mk 886b2088
arg@mmvi · 2006-09-20 09:40 2 file(s) · +4 −4
config.mk +1 −1
1 1
# dwm version
2 -
VERSION = 1.6
2 +
VERSION = 1.7
3 3
4 4
# Customize below to fit your system
5 5
dwm.h +3 −3
9 9
 * allowed to select for this event mask.
10 10
 *
11 11
 * Calls to fetch an X event from the event queue are blocking.  Due reading
12 -
 * status text from standard input, a select-driven main loop has been
12 +
 * status text from standard input, a select()-driven main loop has been
13 13
 * implemented which selects for reads on the X connection and STDIN_FILENO to
14 14
 * handle all data smoothly. The event handlers of dwm are organized in an
15 15
 * array which is accessed whenever a new event has been fetched. This allows
26 26
 * Keys and tagging rules are organized as arrays and defined in the config.h
27 27
 * file. These arrays are kept static in event.o and tag.o respectively,
28 28
 * because no other part of dwm needs access to them.  The current mode is
29 -
 * represented by the arrange function pointer, which wether points to dofloat
30 -
 * or dotile. 
29 +
 * represented by the arrange() function pointer, which wether points to
30 +
 * dofloat() or dotile(). 
31 31
 *
32 32
 * To understand everything else, start reading main.c:main().
33 33
 */