home · contact · privacy
Removed unnecessary condition.
authorChristian Heller <c.heller@plomlompom.de>
Mon, 26 Aug 2013 02:36:45 +0000 (04:36 +0200)
committerChristian Heller <c.heller@plomlompom.de>
Mon, 26 Aug 2013 02:36:45 +0000 (04:36 +0200)
src/windows.c
src/windows.h

index 41eaae9b5982c6ccb2fcd969217b0fec81a06465..50a48e3e5fc8afc810a0982495a7121ec103dc1f 100644 (file)
@@ -547,8 +547,7 @@ extern void cycle_active_win(struct WinMeta * wmeta, char dir)
 extern uint8_t shift_active_win(struct WinMeta * wmeta, char dir)
 {
     if (   0 == wmeta->active                        /* No shifting with < 2  */
-        || wmeta->_chain_start == wmeta->_chain_end  /* windows visible or    */
-        || (dir != 'f' && dir != 'b'))               /* wrong direction char. */
+        || wmeta->_chain_start == wmeta->_chain_end) /* windows visible.      */
     {
         return 0;
     }
index 7e666acbca025631716521f41ec5de6f3045114b..38bb72949d8cacd392570b84d483a34fdf518810 100644 (file)
@@ -151,7 +151,7 @@ extern void cycle_active_win(struct WinMeta * wmeta, char dir);
 
 
 
-/* Move active window forwards ("dir" == "f") or backwards ("dir" == "b").
+/* Move active window forwards ("dir" == "f") or backwards (any other "dir").
  * Wrap around in the window chain if start / end of it is met. Does nothing if
  * no window is active.
  */