updated the initial comment to reflect the use of bit arrays 940a4cc6
Anselm R Garbe · 2008-05-26 11:43 1 file(s) · +2 −2
dwm.c +2 −2
16 16
 * Each child of the root window is called a client, except windows which have
17 17
 * set the override_redirect flag.  Clients are organized in a global
18 18
 * doubly-linked client list, the focus history is remembered through a global
19 -
 * stack list. Each client contains an array of Bools of the same size as the
20 -
 * global tags array to indicate the tags of a client.
19 +
 * stack list. Each client contains a bit array to indicate the tags of a
20 +
 * client.
21 21
 *
22 22
 * Keys and tagging rules are organized as arrays and defined in config.h.
23 23
 *