diff options
| author | Anselm R Garbe <garbeam@gmail.com> | 2008-08-18 09:49:44 +0100 | 
|---|---|---|
| committer | Anselm R Garbe <garbeam@gmail.com> | 2008-08-18 09:49:44 +0100 | 
| commit | 2dc7f42fd7fc8f1fc8d837265221654e8565eb6b (patch) | |
| tree | e67ec1b63848ffb117b4e29e09130000c7fefdf5 | |
| parent | 9f3a5cb7540df6628c9c8a8bd7a8667a73f08fb1 (diff) | |
| download | dwm-2dc7f42fd7fc8f1fc8d837265221654e8565eb6b.tar.gz | |
applied Martin Hurton's view() simplification, not checking arg
| -rw-r--r-- | dwm.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| @@ -1640,10 +1640,10 @@ updatewmhints(Client *c) {  void  view(const Arg *arg) { -	if(arg && (arg->ui & TAGMASK) == tagset[seltags]) +	if((arg->ui & TAGMASK) == tagset[seltags])  		return;  	seltags ^= 1; /* toggle sel tagset */ -	if(arg && (arg->ui & TAGMASK)) +	if(arg->ui & TAGMASK)  		tagset[seltags] = arg->ui & TAGMASK;  	clearurgent();  	arrange(); | 
