From d856db568a5933555191a35778dfa9cf0f619f8f Mon Sep 17 00:00:00 2001 From: Scott Moynes Date: Wed, 14 Aug 2002 20:55:35 +0000 Subject: [PATCH] oops. buglet. extra for loop --- util/epist/screen.cc | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/util/epist/screen.cc b/util/epist/screen.cc index d767c268..7ac5780b 100644 --- a/util/epist/screen.cc +++ b/util/epist/screen.cc @@ -499,8 +499,7 @@ void screen::cycleWindow(const bool forward, const int increment, } else { if (target == begin) target = end; - for (int x = 0; x < increment; ++x) - --target; + --target; } // must be no window to focus -- 2.39.2