aewl
changeset 469:a2cc7adf9d4d
improved intro comment in dwm.h, updated config.mk
author | arg@mmvi |
---|---|
date | Wed, 20 Sep 2006 09:40:35 +0200 |
parents | 210a99f18657 |
children | 9d728cba93d6 |
files | config.mk dwm.h |
diffstat | 2 files changed, 4 insertions(+), 4 deletions(-) [+] |
line diff
1.1 --- a/config.mk Tue Sep 19 16:13:44 2006 +0200 1.2 +++ b/config.mk Wed Sep 20 09:40:35 2006 +0200 1.3 @@ -1,5 +1,5 @@ 1.4 # dwm version 1.5 -VERSION = 1.6 1.6 +VERSION = 1.7 1.7 1.8 # Customize below to fit your system 1.9
2.1 --- a/dwm.h Tue Sep 19 16:13:44 2006 +0200 2.2 +++ b/dwm.h Wed Sep 20 09:40:35 2006 +0200 2.3 @@ -9,7 +9,7 @@ 2.4 * allowed to select for this event mask. 2.5 * 2.6 * Calls to fetch an X event from the event queue are blocking. Due reading 2.7 - * status text from standard input, a select-driven main loop has been 2.8 + * status text from standard input, a select()-driven main loop has been 2.9 * implemented which selects for reads on the X connection and STDIN_FILENO to 2.10 * handle all data smoothly. The event handlers of dwm are organized in an 2.11 * array which is accessed whenever a new event has been fetched. This allows 2.12 @@ -26,8 +26,8 @@ 2.13 * Keys and tagging rules are organized as arrays and defined in the config.h 2.14 * file. These arrays are kept static in event.o and tag.o respectively, 2.15 * because no other part of dwm needs access to them. The current mode is 2.16 - * represented by the arrange function pointer, which wether points to dofloat 2.17 - * or dotile. 2.18 + * represented by the arrange() function pointer, which wether points to 2.19 + * dofloat() or dotile(). 2.20 * 2.21 * To understand everything else, start reading main.c:main(). 2.22 */