Mercurial > hg > xemacs-beta
changeset 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 | 2a6a8da4dd7c |
children | dc88f282ddc3 |
files | lisp/ChangeLog lisp/frame.el |
diffstat | 2 files changed, 7 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/ChangeLog Sun Jun 19 19:47:13 2011 +0100 +++ b/lisp/ChangeLog Thu Jun 23 08:55:35 2011 +0200 @@ -1,3 +1,9 @@ +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. + 2011-06-19 Aidan Kehoe <kehoea@parhasard.net> * cl-macs.el (cl-defsubst-expand):
--- 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)