From: Juanma Barranquero Date: Mon, 24 Mar 2014 20:01:21 +0000 (+0100) Subject: lisp/frameset.el (frameset--initial-params): Fix typo in parameter name. X-Git-Tag: emacs-24.3.90~98 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=c3561529d2770facf82d146c6dbd2378db13d383;p=emacs.git lisp/frameset.el (frameset--initial-params): Fix typo in parameter name. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 3f72f421773..c956b0bdea1 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2014-03-24 Juanma Barranquero + + * frameset.el (frameset--initial-params): Fix typo in parameter name. + 2014-03-24 Nicolas Richard * align.el (align-region): Do not fail when end-mark is nil (bug#17088). diff --git a/lisp/frameset.el b/lisp/frameset.el index 50055bb2782..c1a7ecc16b8 100644 --- a/lisp/frameset.el +++ b/lisp/frameset.el @@ -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)