Mercurial > emacs
changeset 83140:caa7581d3828
Fix window-system-default-frame-alist (ARISAWA Akihiro).
lisp/frame.el (make-frame): Use the cdr of the value returned by assq.
By ARISAWA Akihiro (<ari@mbf.ocn.ne.jp>).
git-archimport-id: lorentey@elte.hu--2004/emacs--multi-tty--0--patch-180
author | Karoly Lorentey <lorentey@elte.hu> |
---|---|
date | Thu, 27 May 2004 18:23:48 +0000 |
parents | 8e6f20317d12 |
children | 8d02e70dd3cc |
files | README.multi-tty lisp/frame.el |
diffstat | 2 files changed, 3 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/README.multi-tty Thu May 27 17:57:59 2004 +0000 +++ b/README.multi-tty Thu May 27 18:23:48 2004 +0000 @@ -179,6 +179,7 @@ The following is an (incomplete) list of people who have contributed to the project by testing, bug reports, and suggestions. Thanks! +ARISAWA Akihiro <ari at mbf dot ocn dot ne dot jp> Robert J. Chassell <bob at rattlesnake dot com> Romain Francoise <romain at orebokech dot com> Ami Fischman <ami at fischman dot org>
--- a/lisp/frame.el Thu May 27 17:57:59 2004 +0000 +++ b/lisp/frame.el Thu May 27 18:23:48 2004 +0000 @@ -651,7 +651,8 @@ (error "Don't know how to create a frame on window system %s" w)) (run-hooks 'before-make-frame-hook) (setq frame (funcall frame-creation-function parameters)) - (modify-frame-parameters frame (assq w window-system-default-frame-alist)) + (modify-frame-parameters frame + (cdr (assq w window-system-default-frame-alist))) (run-hook-with-args 'after-make-frame-functions frame) frame))