diff options
author | arg@10ksloc.org <unknown> | 2006-07-20 16:54:20 +0200 |
---|---|---|
committer | arg@10ksloc.org <unknown> | 2006-07-20 16:54:20 +0200 |
commit | 72707c2fae68f5eba6ea97cbf356bfb968c8a15d (patch) | |
tree | 86285130145cd1672f32c9ebe207b9d41bd10032 /dwm.h | |
parent | 06dc514bc7327f1a2a35cb533bcf18715305da44 (diff) | |
download | dwm-72707c2fae68f5eba6ea97cbf356bfb968c8a15d.tar.gz |
using double-linked list in order to get correct prev focus handling
Diffstat (limited to 'dwm.h')
-rw-r--r-- | dwm.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/dwm.h b/dwm.h index e72bca2..8a7237c 100644 --- a/dwm.h +++ b/dwm.h @@ -76,7 +76,7 @@ struct Client { Bool isfloat; Bool ismax; Client *next; - Client *revert; + Client *prev; Window win; Window title; }; @@ -135,6 +135,7 @@ extern void appendtag(Arg *arg); extern void dofloat(Arg *arg); extern void dotile(Arg *arg); extern Client *getnext(Client *c, unsigned int t); +extern Client *getprev(Client *c); extern void heretag(Arg *arg); extern void replacetag(Arg *arg); extern void settags(Client *c); |