aboutsummaryrefslogtreecommitdiffstats
path: root/dwm.c
diff options
context:
space:
mode:
authorAnselm R Garbe <garbeam@gmail.com>2008-05-22 14:35:45 +0200
committerAnselm R Garbe <garbeam@gmail.com>2008-05-22 14:35:45 +0200
commit56b2fece9e2d42cdd5ca34623864a9d470c1e64a (patch)
tree211178f3e46ceee168eabdf19def4b4695a81b8f /dwm.c
parent9f569fac74a466a6857855b4d233e7a3582f4ea7 (diff)
downloaddwm-56b2fece9e2d42cdd5ca34623864a9d470c1e64a.tar.zst
removed debug output, sanitized tag limit check
Diffstat (limited to 'dwm.c')
-rw-r--r--dwm.c13
1 files changed, 2 insertions, 11 deletions
diff --git a/dwm.c b/dwm.c
index 53f0c12..f46f069 100644
--- a/dwm.c
+++ b/dwm.c
@@ -234,11 +234,10 @@ Window root, barwin;
/* configuration, allows nested code to access above variables */
#include "config.h"
-/* check if all tags will fit into a uint bitarray. */
-static char tags_is_a_sign_that_your_IQ[sizeof(int) * 8 < LENGTH(tags) ? -1 : 1];
+/* compile-time check if all tags fit into an uint bit array. */
+struct NumTags { char limitexceeded[sizeof(uint) * 8 < LENGTH(tags) ? -1 : 1]; };
/* function implementations */
-
void
applyrules(Client *c) {
uint i;
@@ -1548,14 +1547,6 @@ togglelayout(const void *arg) {
void
toggletag(const void *arg) {
- int i, m = *(int *)arg;
- for(i = 0; i < sizeof(int) * 8; i++)
- fputc(m & 1 << i ? '1' : '0', stdout);
- puts("");
- for(i = 0; i < sizeof(int) * 8; i++)
- fputc(TAGMASK & 1 << i ? '1' : '0', stdout);
- puts("aaa");
-
if(sel && (sel->tags ^ ((*(int *)arg) & TAGMASK))) {
sel->tags ^= (*(int *)arg) & TAGMASK;
arrange();