diff options
Diffstat (limited to 'lisp/frameset.el')
-rw-r--r-- | lisp/frameset.el | 2 |
1 files changed, 1 insertions, 1 deletions
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 |