mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2025-01-25 19:11:56 +00:00
(frame-notice-user-settings): Distinguish explicit parent-id
from the auto-generated one.
This commit is contained in:
parent
7f5d2c7241
commit
2f5bb432ac
@ -1,3 +1,8 @@
|
||||
2008-02-14 Stefan Monnier <monnier@iro.umontreal.ca>
|
||||
|
||||
* frame.el (frame-notice-user-settings): Distinguish explicit parent-id
|
||||
from the auto-generated one.
|
||||
|
||||
2008-02-14 Glenn Morris <rgm@gnu.org>
|
||||
|
||||
* mail/rmail-spam-filter.el (rmail-spam-filter): Let-bind
|
||||
|
@ -417,6 +417,9 @@ there (in decreasing order of priority)."
|
||||
;; Get rid of `name' unless it was specified explicitly before.
|
||||
(or (assq 'name frame-initial-frame-alist)
|
||||
(setq parms (delq (assq 'name parms) parms)))
|
||||
;; An explicit parent-id is a request to XEmbed the frame.
|
||||
(or (assq 'parent-id frame-initial-frame-alist)
|
||||
(setq parms (delq (assq 'parent-id parms) parms)))
|
||||
|
||||
(setq parms (append initial-frame-alist
|
||||
window-system-frame-alist
|
||||
|
Loading…
Reference in New Issue
Block a user