]> git.eshelyaron.com Git - emacs.git/commitdiff
lisp/frameset.el (frameset--initial-params): Filter out null entries.
authorJuanma Barranquero <lekktu@gmail.com>
Wed, 5 Mar 2014 16:22:47 +0000 (17:22 +0100)
committerJuanma Barranquero <lekktu@gmail.com>
Wed, 5 Mar 2014 16:22:47 +0000 (17:22 +0100)
lisp/ChangeLog
lisp/frameset.el

index 579acdb90c5995f8a32766704c269975ed93f788..7ee1f2f21eccfb7b20f675c414444e7640aacbde 100644 (file)
@@ -1,3 +1,7 @@
+2014-03-05  Juanma Barranquero  <lekktu@gmail.com>
+
+       * frameset.el (frameset--initial-params): Filter out null entries.
+
 2014-03-05  Martin Rudalics  <rudalics@gmx.at>
 
        * window.el (window-min-height, window-min-width): Rewrite
index f0d38d911f3ff3cbe136ed298d1d9c506694ab80..6fd23f739ae35c4d4105493e7d7280ce890f7138 100644 (file)
@@ -941,7 +941,7 @@ Setting position and size parameters as soon as possible helps reducing
 flickering; other parameters, like `minibuffer' and `border-width', can
 not be changed once the frame has been created.  Internal use only."
   (cl-loop for param in '(left top with height border-width minibuffer)
-          collect (assq param parameters)))
+          when (assq param parameters) collect it))
 
 (defun frameset--restore-frame (parameters window-state filters force-onscreen)
   "Set up and return a frame according to its saved state.