]> git.eshelyaron.com Git - emacs.git/commitdiff
lisp/frameset.el (frameset--initial-params): Fix typo in parameter name.
authorJuanma Barranquero <lekktu@gmail.com>
Mon, 24 Mar 2014 20:01:21 +0000 (21:01 +0100)
committerJuanma Barranquero <lekktu@gmail.com>
Mon, 24 Mar 2014 20:01:21 +0000 (21:01 +0100)
lisp/ChangeLog
lisp/frameset.el

index 3f72f421773cbed3c0cf89d0e409a624ab8ee417..c956b0bdea1ea1c449c03c0f3bb5339754abb0f7 100644 (file)
@@ -1,3 +1,7 @@
+2014-03-24  Juanma Barranquero  <lekktu@gmail.com>
+
+       * frameset.el (frameset--initial-params): Fix typo in parameter name.
+
 2014-03-24  Nicolas Richard  <theonewiththeevillook@yahoo.fr>
 
        * align.el (align-region): Do not fail when end-mark is nil (bug#17088).
index 50055bb2782c770595a8967a7a4842bc5b17d213..c1a7ecc16b869ef7c7f7ffeaa7a55e92424f1f89 100644 (file)
@@ -940,7 +940,7 @@ is the parameter alist of the frame being restored.  Internal use only."
 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)
+  (cl-loop for param in '(left top width height border-width minibuffer)
           when (assq param parameters) collect it))
 
 (defun frameset--restore-frame (parameters window-state filters force-onscreen)