1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-14 09:39:42 +00:00

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.
This commit is contained in:
Juanma Barranquero 2013-07-29 00:43:01 +02:00
parent d5a845b4d0
commit 9503c19086
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,9 @@
2013-07-28 Juanma Barranquero <lekktu@gmail.com>
* 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 <stephen.berman@gmx.net>
* calendar/todo-mode.el (todo-rename-file): Fix incorrect use of

View File

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