From: Richard M. Stallman Date: Tue, 8 Apr 1997 22:33:45 +0000 (+0000) Subject: (make-frame): Call `custom-initialize-frame'. X-Git-Tag: emacs-20.1~2603 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=ec6c7d0bc77fe60c82cdfa4e98a55bd0c127f740;p=emacs.git (make-frame): Call `custom-initialize-frame'. --- 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." (interactive) (run-hooks 'before-make-frame-hook) (let ((frame (funcall frame-creation-function parameters))) + (custom-initialize-frame frame) (run-hook-with-args 'after-make-frame-functions frame) frame))