diff options
-rw-r--r-- | lisp/ChangeLog | 4 | ||||
-rw-r--r-- | lisp/frameset.el | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index f75bbc29861..2ff543d3799 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,5 +1,9 @@ 2013-08-02 Juanma Barranquero <lekktu@gmail.com> + * frameset.el (frameset-filter-params): Fix order of arguments. + +2013-08-02 Juanma Barranquero <lekktu@gmail.com> + Move code related to saving frames to frameset.el. * desktop.el: Require frameset. (desktop-restore-frames): Doc fix. diff --git a/lisp/frameset.el b/lisp/frameset.el index fef8c093ee9..9610d457008 100644 --- a/lisp/frameset.el +++ b/lisp/frameset.el @@ -230,7 +230,7 @@ nil while the filtering is done to restore it." (:restore (when saving (push current filtered))) ((or `(,fun . ,args) (and fun (pred fboundp))) - (let ((this (apply fun filtered current parameters saving args))) + (let ((this (apply fun current filtered parameters saving args))) (when this (push (if (eq this t) current this) filtered)))) (other |