Mercurial > hg > xemacs-beta
diff lisp/frame.el @ 5526:9a046b2e6494
Fix get-other-frame bug.
-------------------- ChangeLog entries follow: --------------------
lisp/ChangeLog addition:
2011-06-23 Didier Verna <didier@xemacs.org>
From smitchel <smitchel@bnin.net>
* frame.el (get-other-frame): Add missing first argument THIS to
the call to NEXT-FRAME.
author | Didier Verna <didier@lrde.epita.fr> |
---|---|
date | Thu, 23 Jun 2011 08:55:35 +0200 |
parents | ac37a5f7e5be |
children | cc6f0266bc36 |
line wrap: on
line diff
--- a/lisp/frame.el Sun Jun 19 19:47:13 2011 +0100 +++ b/lisp/frame.el Thu Jun 23 08:55:35 2011 +0200 @@ -602,7 +602,7 @@ (next (next-frame this 'visible-nomini))) ;; then search iconified frames (if (eq this next) - (setq next (next-frame 'visible-iconic-nomini))) + (setq next (next-frame this 'visible-iconic-nomini))) (if (eq this next) ;; otherwise, make a new frame (make-frame)