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
7a18af49
Commit
7a18af49
authored
May 25, 2000
by
Ken Raeburn
Browse files
* emacs.c (main): Initialize keyboard syms before initializing
window code, so face names are available.
parent
50d7ce09
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
1 deletion
+10
-1
src/ChangeLog
src/ChangeLog
+5
-0
src/emacs.c
src/emacs.c
+5
-1
No files found.
src/ChangeLog
View file @
7a18af49
No preview for this file type
src/emacs.c
View file @
7a18af49
...
...
@@ -1100,6 +1100,11 @@ main (argc, argv, envp)
faces, and the face implementation uses some symbols as
face names. */
syms_of_xfaces
();
/* Call syms_of_keyboard before init_window_once because
keyboard sets up symbols that include some face names that
the X support will want to use. This can happen when
CANNOT_DUMP is defined. */
syms_of_keyboard
();
init_window_once
();
/* Init the window system */
init_fileio_once
();
/* Must precede any path manipulation. */
...
...
@@ -1331,7 +1336,6 @@ main (argc, argv, envp)
#endif
/* CLASH_DETECTION */
syms_of_indent
();
syms_of_insdel
();
syms_of_keyboard
();
syms_of_keymap
();
syms_of_macros
();
syms_of_marker
();
...
...
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