From: Richard M. Stallman Date: Wed, 11 Aug 1993 06:02:05 +0000 (+0000) Subject: (other-frame): Fix error in loop counting. X-Git-Tag: emacs-19.34~11298 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=915cfd1f4df26c37c1062fa069a991ceffcee81a;p=emacs.git (other-frame): Fix error in loop counting. --- diff --git a/lisp/frame.el b/lisp/frame.el index b915f945b97..4e7581e3b76 100644 --- a/lisp/frame.el +++ b/lisp/frame.el @@ -366,7 +366,7 @@ A negative ARG moves in the opposite order." (setq frame (previous-frame frame)) (while (not (eq (frame-visible-p frame) t)) (setq frame (previous-frame frame))) - (setq arg (1- arg))) + (setq arg (1+ arg))) (raise-frame frame) (select-frame frame)))