]> git.eshelyaron.com Git - emacs.git/commitdiff
lisp/frameset.el (frameset-filter-params): Fix order of arguments.
authorJuanma Barranquero <lekktu@gmail.com>
Fri, 2 Aug 2013 16:03:13 +0000 (18:03 +0200)
committerJuanma Barranquero <lekktu@gmail.com>
Fri, 2 Aug 2013 16:03:13 +0000 (18:03 +0200)
lisp/ChangeLog
lisp/frameset.el

index f75bbc2986159de070a849533b5c39be6b9a228c..2ff543d37999d4e219be4ed2cfaf87380f5f7fcf 100644 (file)
@@ -1,3 +1,7 @@
+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.
index fef8c093ee921c9f00d89ee1fd086166789f89ee..9610d4570082e8a59f52133d651b259502a444af 100644 (file)
@@ -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