diff options
| author | Richard M. Stallman | 1997-04-08 22:33:45 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1997-04-08 22:33:45 +0000 |
| commit | ec6c7d0bc77fe60c82cdfa4e98a55bd0c127f740 (patch) | |
| tree | 1421878bcceeda12de609168812789ce97ade01d | |
| parent | a9f53ffbf8a25e9d58aef06bfd5782c3be002cad (diff) | |
| download | emacs-ec6c7d0bc77fe60c82cdfa4e98a55bd0c127f740.tar.gz emacs-ec6c7d0bc77fe60c82cdfa4e98a55bd0c127f740.zip | |
(make-frame): Call `custom-initialize-frame'.
| -rw-r--r-- | lisp/frame.el | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lisp/frame.el b/lisp/frame.el index 2af75dc47a1..dca7f816777 100644 --- a/lisp/frame.el +++ b/lisp/frame.el | |||
| @@ -458,6 +458,7 @@ on `after-make-frame-functions' are run with one arg, the newly created frame." | |||
| 458 | (interactive) | 458 | (interactive) |
| 459 | (run-hooks 'before-make-frame-hook) | 459 | (run-hooks 'before-make-frame-hook) |
| 460 | (let ((frame (funcall frame-creation-function parameters))) | 460 | (let ((frame (funcall frame-creation-function parameters))) |
| 461 | (custom-initialize-frame frame) | ||
| 461 | (run-hook-with-args 'after-make-frame-functions frame) | 462 | (run-hook-with-args 'after-make-frame-functions frame) |
| 462 | frame)) | 463 | frame)) |
| 463 | 464 | ||