diff options
| -rw-r--r-- | README.multi-tty | 1 | ||||
| -rw-r--r-- | lisp/frame.el | 3 |
2 files changed, 3 insertions, 1 deletions
diff --git a/README.multi-tty b/README.multi-tty index 4f05a7a0429..649a01590d9 100644 --- a/README.multi-tty +++ b/README.multi-tty | |||
| @@ -179,6 +179,7 @@ THANKS | |||
| 179 | The following is an (incomplete) list of people who have contributed | 179 | The following is an (incomplete) list of people who have contributed |
| 180 | to the project by testing, bug reports, and suggestions. Thanks! | 180 | to the project by testing, bug reports, and suggestions. Thanks! |
| 181 | 181 | ||
| 182 | ARISAWA Akihiro <ari at mbf dot ocn dot ne dot jp> | ||
| 182 | Robert J. Chassell <bob at rattlesnake dot com> | 183 | Robert J. Chassell <bob at rattlesnake dot com> |
| 183 | Romain Francoise <romain at orebokech dot com> | 184 | Romain Francoise <romain at orebokech dot com> |
| 184 | Ami Fischman <ami at fischman dot org> | 185 | Ami Fischman <ami at fischman dot org> |
diff --git a/lisp/frame.el b/lisp/frame.el index d8ddfa67862..b02660dff3b 100644 --- a/lisp/frame.el +++ b/lisp/frame.el | |||
| @@ -651,7 +651,8 @@ on `after-make-frame-functions' are run with one arg, the newly created frame." | |||
| 651 | (error "Don't know how to create a frame on window system %s" w)) | 651 | (error "Don't know how to create a frame on window system %s" w)) |
| 652 | (run-hooks 'before-make-frame-hook) | 652 | (run-hooks 'before-make-frame-hook) |
| 653 | (setq frame (funcall frame-creation-function parameters)) | 653 | (setq frame (funcall frame-creation-function parameters)) |
| 654 | (modify-frame-parameters frame (assq w window-system-default-frame-alist)) | 654 | (modify-frame-parameters frame |
| 655 | (cdr (assq w window-system-default-frame-alist))) | ||
| 655 | (run-hook-with-args 'after-make-frame-functions frame) | 656 | (run-hook-with-args 'after-make-frame-functions frame) |
| 656 | frame)) | 657 | frame)) |
| 657 | 658 | ||