simplification - dwm - dynamic window manager
 (HTM) git clone https://git.parazyd.org/dwm
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit 1e826ddd3ee0159bf2bd296a24e557b0d971ed91
 (DIR) parent a967d7f66447b1b3023cdb4b5a10fca2cfb23b05
 (HTM) Author: Anselm R. Garbe <arg@suckless.org>
       Date:   Tue, 15 May 2007 14:06:18 +0200
       
       simplification
       Diffstat:
         M layout.c                            |       6 ++----
       
       1 file changed, 2 insertions(+), 4 deletions(-)
       ---
 (DIR) diff --git a/layout.c b/layout.c
       @@ -218,10 +218,8 @@ setlayout(const char *arg) {
        
        void
        togglebar(const char *arg) {
       -        if(bpos == BarOff) {
       -                if((bpos = BARPOS) == BarOff)
       -                        bpos = BarTop;
       -        }
       +        if(bpos == BarOff)
       +                bpos = (BARPOS == BarOff) ? BarTop : BARPOS;
                else
                        bpos = BarOff;
                updatebarpos();