mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2025-01-15 17:00:26 +00:00
(frame-notice-user-settings): When making a minibufferless
frame, don't copy `name' parm explicitly unless it was explicit before.
This commit is contained in:
parent
cd494de497
commit
06d7dff28f
@ -246,9 +246,13 @@ These supersede the values given in `default-frame-alist'.")
|
||||
(while (not (cdr (assq 'visibility
|
||||
(frame-parameters frame-initial-frame))))
|
||||
(sleep-for 1))
|
||||
(setq parms (frame-parameters frame-initial-frame))
|
||||
;; Get rid of `name' unless it was specified explicitly before.
|
||||
(or (assq 'name frame-initial-frame-alist)
|
||||
(setq parms (delq (assq 'name parms) parms)))
|
||||
(setq parms (append initial-frame-alist
|
||||
default-frame-alist
|
||||
(frame-parameters frame-initial-frame)
|
||||
parms
|
||||
nil))
|
||||
;; Get rid of `reverse', because that was handled
|
||||
;; when we first made the frame.
|
||||
|
Loading…
Reference in New Issue
Block a user