# HG changeset patch # User Karoly Lorentey # Date 1122002650 0 # Node ID 3d2bd2e4c7b78d303929a30f653d87ac67b615aa # Parent afade4ccd30c0cf727eba83671247353d1b5baf1 Don't let window-system-default-frame-alist override parameters specified manually. * lisp/frame.el (make-frame): Append window-system-default-frame-alist to parameters before calling frame-creation-function. git-archimport-id: lorentey@elte.hu--2004/emacs--multi-tty--0--patch-389 diff -r afade4ccd30c -r 3d2bd2e4c7b7 lisp/frame.el --- a/lisp/frame.el Wed Jul 13 16:15:50 2005 +0000 +++ b/lisp/frame.el Fri Jul 22 03:24:10 2005 +0000 @@ -667,9 +667,7 @@ (unless frame-creation-function (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 - (cdr (assq w window-system-default-frame-alist))) + (setq frame (funcall frame-creation-function (append parameters (cdr (assq w window-system-default-frame-alist))))) (run-hook-with-args 'after-make-frame-functions frame) frame))