Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
b092a134
Commit
b092a134
authored
Apr 14, 1997
by
Richard M. Stallman
Browse files
(make-frame): Call custom-initialize-frame
only if cus-face is loaded.
parent
0a3fc8a2
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
lisp/frame.el
lisp/frame.el
+2
-1
No files found.
lisp/frame.el
View file @
b092a134
...
...
@@ -458,7 +458,8 @@ 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
)
(
if
(
featurep
'cus-face
)
(
custom-initialize-frame
frame
))
(
run-hook-with-args
'after-make-frame-functions
frame
)
frame
))
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment