diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2013-07-29 00:43:01 +0200 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2013-07-29 00:43:01 +0200 |
commit | 9503c190862c8f8cc2d34f393450bd692143a34e (patch) | |
tree | acc97f9ce2ce26f837039b8cb77805b9ea350195 /lisp/desktop.el | |
parent | d5a845b4d03cf35b4dafcd7632df88c74e6785d0 (diff) | |
download | emacs-9503c190862c8f8cc2d34f393450bd692143a34e.tar.gz emacs-9503c190862c8f8cc2d34f393450bd692143a34e.tar.bz2 emacs-9503c190862c8f8cc2d34f393450bd692143a34e.zip |
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.
Diffstat (limited to 'lisp/desktop.el')
-rw-r--r-- | lisp/desktop.el | 2 |
1 files changed, 1 insertions, 1 deletions
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) |