diff options
author | Anselm R. Garbe <arg@suckless.org> | 2007-05-22 11:29:04 +0200 |
---|---|---|
committer | Anselm R. Garbe <arg@suckless.org> | 2007-05-22 11:29:04 +0200 |
commit | 81658eaab3a0e1532543ab08a415cab3a044c0dd (patch) | |
tree | 283c70d59ae8fc1db582ea651a03870f803e770e | |
parent | 81aebf8caeb720406a238e8766bb615c501af15f (diff) | |
download | dwm-81658eaab3a0e1532543ab08a415cab3a044c0dd.tar dwm-81658eaab3a0e1532543ab08a415cab3a044c0dd.tar.gz dwm-81658eaab3a0e1532543ab08a415cab3a044c0dd.tar.bz2 |
applied Szabolcs proposal to simplify setlayout()
-rw-r--r-- | config.mk | 2 | ||||
-rw-r--r-- | layout.c | 8 |
2 files changed, 4 insertions, 6 deletions
@@ -1,5 +1,5 @@ # dwm version -VERSION = 4.1 +VERSION = 4.2 # Customize below to fit your system @@ -198,11 +198,9 @@ setlayout(const char *arg) { int i; if(!arg) { - for(i = 0; i < nlayouts && lt != &layout[i]; i++); - if(i == nlayouts - 1) - lt = &layout[0]; - else - lt = &layout[++i]; + lt++; + if(lt == layout + nlayouts) + lt = layout; } else { i = atoi(arg); |