emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] trunk r113579: lisp/desktop.el: Fix problem creating minib


From: Juanma Barranquero
Subject: [Emacs-diffs] trunk r113579: lisp/desktop.el: Fix problem creating minibuffer(less, only) frames.
Date: Sun, 28 Jul 2013 22:43:13 +0000
User-agent: Bazaar (2.6b2)

------------------------------------------------------------
revno: 113579
revision-id: address@hidden
parent: address@hidden
committer: Juanma Barranquero <address@hidden>
branch nick: trunk
timestamp: Mon 2013-07-29 00:43:01 +0200
message:
  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.
modified:
  lisp/ChangeLog                 changelog-20091113204419-o5vbwnq5f7feedwu-1432
  lisp/desktop.el                desktop.el-20091113204419-o5vbwnq5f7feedwu-591
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2013-07-28 22:34:32 +0000
+++ b/lisp/ChangeLog    2013-07-28 22:43:01 +0000
@@ -1,3 +1,9 @@
+2013-07-28  Juanma Barranquero  <address@hidden>
+
+       * 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  <address@hidden>
 
        * calendar/todo-mode.el (todo-rename-file): Fix incorrect use of

=== modified file 'lisp/desktop.el'
--- a/lisp/desktop.el   2013-07-28 03:03:45 +0000
+++ b/lisp/desktop.el   2013-07-28 22:43:01 +0000
@@ -1394,7 +1394,7 @@
                    (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)


reply via email to

[Prev in Thread] Current Thread [Next in Thread]