projects
/
suckless
/
dwm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
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 10416f8dadb6dc0ceb2030a66517bed7a66e9183..ec872285a4c05c8b8de3e71d6f4259fc2f3e22a3 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();