lisp/frameset.el (frameset--initial-params): Fix typo in parameter name.

This commit is contained in:
Juanma Barranquero 2014-03-24 21:01:21 +01:00
commit c3561529d2
2 changed files with 5 additions and 1 deletions

View 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).

View 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)