diff options
| author | Scott Moynes <smoynes@nexus.carleton.ca> | 2002-08-14 20:55:35 +0000 |
|---|---|---|
| committer | Scott Moynes <smoynes@nexus.carleton.ca> | 2002-08-14 20:55:35 +0000 |
| commit | d856db568a5933555191a35778dfa9cf0f619f8f (patch) | |
| tree | aa1709e2c28f70c1447e2a440c0e07486158dc13 | |
| parent | b016470119788a052ef1de0457e2e8d104e90d81 (diff) | |
oops. buglet. extra for loop
| -rw-r--r-- | util/epist/screen.cc | 3 |
1 files changed, 1 insertions, 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 |
