comparison lisp/frame.el @ 17342:c1e5198c8c92

(make-frame): Call `custom-initialize-frame'.
author Richard M. Stallman <rms@gnu.org>
date Tue, 08 Apr 1997 22:33:45 +0000
parents 368bfa70d822
children dd0216ff2358
comparison
equal deleted inserted replaced
17341:995c8b7bf6df 17342:c1e5198c8c92
456 hook `before-make-frame-hook' are run. After the frame is created, functions 456 hook `before-make-frame-hook' are run. After the frame is created, functions
457 on `after-make-frame-functions' are run with one arg, the newly created frame." 457 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
464 (defun filtered-frame-list (predicate) 465 (defun filtered-frame-list (predicate)
465 "Return a list of all live frames which satisfy PREDICATE." 466 "Return a list of all live frames which satisfy PREDICATE."