Xinqi Bao's Git
projects
/
dwm.git
/ blobdiff
summary
|
log
|
commit
|
diff
|
tree
raw
|
inline
| side by side
removed VRATIO, NMASTER, inc*(), renamed HRATIO into MASTER, see mailinglist for...
[dwm.git]
/
tag.c
diff --git
a/tag.c
b/tag.c
index
fb366be
..
e9d6445
100644
(file)
--- a/
tag.c
+++ b/
tag.c
@@
-1,7
+1,4
@@
-/* © 2006-2007 Anselm R. Garbe <garbeam at gmail dot com>
- * © 2006-2007 Sander van Dijk <a dot h dot vandijk at gmail dot com>
- * © 2007 Premysl Hruby <dfenze at gmail dot com>
- * See LICENSE file for license details. */
+/* See LICENSE file for copyright and license details. */
#include "dwm.h"
#include <regex.h>
#include <stdio.h>
#include "dwm.h"
#include <regex.h>
#include <stdio.h>
@@
-113,7
+110,7
@@
tag(const char *arg) {
i = arg ? atoi(arg) : 0;
if(i >= 0 && i < ntags)
sel->tags[i] = True;
i = arg ? atoi(arg) : 0;
if(i >= 0 && i < ntags)
sel->tags[i] = True;
- lt->arrange();
+ lt->arrange(
NULL
);
}
void
}
void
@@
-127,7
+124,7
@@
toggletag(const char *arg) {
for(j = 0; j < ntags && !sel->tags[j]; j++);
if(j == ntags)
sel->tags[i] = True;
for(j = 0; j < ntags && !sel->tags[j]; j++);
if(j == ntags)
sel->tags[i] = True;
- lt->arrange();
+ lt->arrange(
NULL
);
}
void
}
void
@@
-139,7
+136,7
@@
toggleview(const char *arg) {
for(j = 0; j < ntags && !seltag[j]; j++);
if(j == ntags)
seltag[i] = True; /* cannot toggle last view */
for(j = 0; j < ntags && !seltag[j]; j++);
if(j == ntags)
seltag[i] = True; /* cannot toggle last view */
- lt->arrange();
+ lt->arrange(
NULL
);
}
void
}
void
@@
-151,5
+148,5
@@
view(const char *arg) {
i = arg ? atoi(arg) : 0;
if(i >= 0 && i < ntags)
seltag[i] = True;
i = arg ? atoi(arg) : 0;
if(i >= 0 && i < ntags)
seltag[i] = True;
- lt->arrange();
+ lt->arrange(
NULL
);
}
}