From: Juanma Barranquero Date: Sun, 28 Jul 2013 22:43:01 +0000 (+0200) Subject: lisp/desktop.el: Fix problem creating minibuffer(less,only) frames. X-Git-Tag: emacs-24.3.90~173^2^2~42^2~45^2~387^2~1698^2~9 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=9503c190862c8f8cc2d34f393450bd692143a34e;p=emacs.git lisp/desktop.el: Fix problem creating minibuffer(less,only) frames. (desktop--make-frame): Include `minibuffer' in the minimal set of parameters passed when creating a frame, because the minibuffer status of a frame cannot be changed later. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 3708758df4b..ad193ea0d64 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,9 @@ +2013-07-28 Juanma Barranquero + + * desktop.el (desktop--make-frame): Include `minibuffer' in the + minimal set of parameters passed when creating a frame, because + the minibuffer status of a frame cannot be changed later. + 2013-07-28 Stephen Berman * calendar/todo-mode.el (todo-rename-file): Fix incorrect use of diff --git a/lisp/desktop.el b/lisp/desktop.el index d3bb6648099..299bdc0eeb4 100644 --- a/lisp/desktop.el +++ b/lisp/desktop.el @@ -1394,7 +1394,7 @@ its window state. Internal use only." (make-frame-on-display display (cons '(visibility) (cl-loop - for param in '(left top width height) + for param in '(left top width height minibuffer) collect (assq param filtered-cfg)))))) (modify-frame-parameters frame (if (eq (frame-parameter frame 'fullscreen) fullscreen)