* lisp/frame.el (make-frame): Fix typo in 2010-06-30 change (Bug#6625).
This commit is contained in:
parent
d5e7f8d025
commit
21bd02a62d
2 changed files with 6 additions and 2 deletions
|
@ -1,3 +1,7 @@
|
|||
2010-07-13 Chong Yidong <cyd@stupidchicken.com>
|
||||
|
||||
* frame.el (make-frame): Fix typo in 2010-06-30 change (Bug#6625).
|
||||
|
||||
2010-07-13 Adrian Robert <Adrian.B.Robert@gmail.com>
|
||||
|
||||
* term/ns-win.el: Bind M-~ to 'ns-prev-frame (due to Matthew
|
||||
|
|
|
@ -736,11 +736,11 @@ the new frame according to its own rules."
|
|||
(error "Don't know how to create a frame on window system %s" w))
|
||||
;; Add parameters from `window-system-default-frame-alist'.
|
||||
(dolist (p (cdr (assq w window-system-default-frame-alist)))
|
||||
(unless (memq (car p) params)
|
||||
(unless (assq (car p) params)
|
||||
(push p params)))
|
||||
;; Add parameters from `default-frame-alist'.
|
||||
(dolist (p default-frame-alist)
|
||||
(unless (memq (car p) params)
|
||||
(unless (assq (car p) params)
|
||||
(push p params)))
|
||||
;; Now make the frame.
|
||||
(run-hooks 'before-make-frame-hook)
|
||||
|
|
Loading…
Add table
Reference in a new issue