dwm.c
changeset 1362 f6c3491c41f1
parent 1361 41678fc29f2a
child 1363 4004d6116035
equal deleted inserted replaced
1361:41678fc29f2a 1362:f6c3491c41f1
    13  * array which is accessed whenever a new event has been fetched. This allows
    13  * array which is accessed whenever a new event has been fetched. This allows
    14  * event dispatching in O(1) time.
    14  * event dispatching in O(1) time.
    15  *
    15  *
    16  * Each child of the root window is called a client, except windows which have
    16  * Each child of the root window is called a client, except windows which have
    17  * set the override_redirect flag.  Clients are organized in a global
    17  * set the override_redirect flag.  Clients are organized in a global
    18  * doubly-linked client list, the focus history is remembered through a global
    18  * linked client list, the focus history is remembered through a global
    19  * stack list. Each client contains a bit array to indicate the tags of a
    19  * stack list. Each client contains a bit array to indicate the tags of a
    20  * client.
    20  * client.
    21  *
    21  *
    22  * Keys and tagging rules are organized as arrays and defined in config.h.
    22  * Keys and tagging rules are organized as arrays and defined in config.h.
    23  *
    23  *