pinosaur
/
dwm.git
/ commitdiff
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
840f937
)
applied fix of toggletag by Jan Kaliszewski
author
Premysl Hruby
<dfenze@gmail.com>
Fri, 22 Aug 2008 13:26:30 +0000
(15:26 +0200)
committer
Premysl Hruby
<dfenze@gmail.com>
Fri, 22 Aug 2008 13:26:30 +0000
(15:26 +0200)
dwm.c
patch
|
blob
|
history
diff --git
a/dwm.c
b/dwm.c
index
10416f8
..
ec87228
100644
(file)
--- a/
dwm.c
+++ b/
dwm.c
@@
-1469,8
+1469,12
@@
togglefloating(const Arg *arg) {
void
toggletag(const Arg *arg) {
- unsigned int mask
= sel->tags ^ (arg->ui & TAGMASK)
;
+ unsigned int mask;
+ if (!sel)
+ return;
+
+ mask = sel->tags ^ (arg->ui & TAGMASK);
if(sel && mask) {
sel->tags = mask;
arrange();