diff options
| author | Richard M. Stallman | 1997-04-21 03:57:23 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1997-04-21 03:57:23 +0000 |
| commit | aaf2aa92ef352db8dff5936b837a2e985f00f5a1 (patch) | |
| tree | cc2defe4b77bf7f081123da98b37299c1c89f8a8 | |
| parent | d11fba257e256277003baa8860edfbf767895376 (diff) | |
| download | emacs-aaf2aa92ef352db8dff5936b837a2e985f00f5a1.tar.gz emacs-aaf2aa92ef352db8dff5936b837a2e985f00f5a1.zip | |
(make-frame): Don't call custom-initialize-frame.
| -rw-r--r-- | lisp/frame.el | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lisp/frame.el b/lisp/frame.el index 9ad7e261521..b08fdc2c4b5 100644 --- a/lisp/frame.el +++ b/lisp/frame.el | |||
| @@ -458,8 +458,6 @@ 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 | (if (featurep 'cus-face) | ||
| 462 | (custom-initialize-frame frame)) | ||
| 463 | (run-hook-with-args 'after-make-frame-functions frame) | 461 | (run-hook-with-args 'after-make-frame-functions frame) |
| 464 | frame)) | 462 | frame)) |
| 465 | 463 | ||