Xinqi Bao's Git
projects
/
dwm.git
/ commitdiff
summary
|
log
|
commit
|
diff
|
tree
raw
|
patch
|
inline
| side by side (parent:
825b7c3
)
small bugfix
author
Anselm R. Garbe <
[email protected]
>
Thu, 22 Feb 2007 11:15:48 +0000
(12:15 +0100)
committer
Anselm R. Garbe <
[email protected]
>
Thu, 22 Feb 2007 11:15:48 +0000
(12:15 +0100)
layout.c
patch
|
blob
|
history
tag.c
patch
|
blob
|
history
diff --git
a/layout.c
b/layout.c
index
21ee99c
..
5d43187
100644
(file)
--- a/
layout.c
+++ b/
layout.c
@@
-120,11
+120,17
@@
incmasterw(const char *arg) {
void
incnmaster(const char *arg) {
void
incnmaster(const char *arg) {
- int i = arg ? atoi(arg) : 0;
- if((lt->arrange != tile) || (nmaster + i < 1)
- || (wah / (nmaster + i) <= 2 * BORDERPX))
- return;
- nmaster += i;
+ int i;
+
+ if(!arg)
+ nmaster = NMASTER;
+ else {
+ i = atoi(arg);
+ if((lt->arrange != tile) || (nmaster + i < 1)
+ || (wah / (nmaster + i) <= 2 * BORDERPX))
+ return;
+ nmaster += i;
+ }
if(sel)
lt->arrange();
else
if(sel)
lt->arrange();
else
@@
-175,7
+181,7
@@
restack(void) {
void
setlayout(const char *arg) {
void
setlayout(const char *arg) {
-
unsigned
int i;
+ int i;
if(!arg) {
for(i = 0; i < nlayouts && lt != &layout[i]; i++);
if(!arg) {
for(i = 0; i < nlayouts && lt != &layout[i]; i++);
diff --git
a/tag.c
b/tag.c
index
a96cc62
..
ccc2956
100644
(file)
--- a/
tag.c
+++ b/
tag.c
@@
-108,7
+108,7
@@
tag(const char *arg) {
if(!sel)
return;
for(i = 0; i < ntags; i++)
if(!sel)
return;
for(i = 0; i < ntags; i++)
- sel->tags[i] = arg
? False : True
;
+ sel->tags[i] = arg
!= NULL
;
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;
@@
-135,7
+135,7
@@
toggleview(const char *arg) {
i = arg ? atoi(arg) : 0;
seltag[i] = !seltag[i];
i = arg ? atoi(arg) : 0;
seltag[i] = !seltag[i];
- for(j = 0; j < ntags && !seltag[j];
i
++);
+ for(j = 0; j < ntags && !seltag[j];
j
++);
if(j == ntags)
seltag[i] = True; /* cannot toggle last view */
lt->arrange();
if(j == ntags)
seltag[i] = True; /* cannot toggle last view */
lt->arrange();
@@
-146,7
+146,7
@@
view(const char *arg) {
int i;
for(i = 0; i < ntags; i++)
int i;
for(i = 0; i < ntags; i++)
- seltag[i] = arg
? False : True
;
+ seltag[i] = arg
!= NULL
;
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;