Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
8bb697c0
Commit
8bb697c0
authored
May 06, 1998
by
Richard M. Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(main): Call the syms_of_... and keys_of_... functions
earlier, before init_vms_input and init_display.
parent
d84b06ef
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
25 additions
and
24 deletions
+25
-24
src/emacs.c
src/emacs.c
+25
-24
No files found.
src/emacs.c
View file @
8bb697c0
...
...
@@ -1076,30 +1076,8 @@ the Bugs section of the Emacs manual or the file BUGS.\n", argv[0]);
init_callproc
();
/* Must follow init_cmdargs but not init_sys_modes. */
init_lread
();
if
(
!
noninteractive
)
{
#ifdef VMS
init_vms_input
();
/* init_display calls get_frame_size, that needs this */
#endif
/* VMS */
init_display
();
/* Determine terminal type. init_sys_modes uses results */
}
init_keyboard
();
/* This too must precede init_sys_modes */
#ifdef VMS
init_vmsproc
();
/* And this too. */
#endif
/* VMS */
init_sys_modes
();
/* Init system terminal modes (RAW or CBREAK, etc.) */
init_xdisp
();
init_macros
();
init_editfns
();
#ifdef LISP_FLOAT_TYPE
init_floatfns
();
#endif
#ifdef VMS
init_vmsfns
();
#endif
/* VMS */
init_process
();
/* Intern the names of all standard functions and variables; define standard keys */
/* Intern the names of all standard functions and variables;
define standard keys. */
if
(
!
initialized
)
{
...
...
@@ -1203,6 +1181,29 @@ the Bugs section of the Emacs manual or the file BUGS.\n", argv[0]);
keys_of_frame
();
}
if
(
!
noninteractive
)
{
#ifdef VMS
init_vms_input
();
/* init_display calls get_frame_size, that needs this */
#endif
/* VMS */
init_display
();
/* Determine terminal type. init_sys_modes uses results */
}
init_keyboard
();
/* This too must precede init_sys_modes */
#ifdef VMS
init_vmsproc
();
/* And this too. */
#endif
/* VMS */
init_sys_modes
();
/* Init system terminal modes (RAW or CBREAK, etc.) */
init_xdisp
();
init_macros
();
init_editfns
();
#ifdef LISP_FLOAT_TYPE
init_floatfns
();
#endif
#ifdef VMS
init_vmsfns
();
#endif
/* VMS */
init_process
();
if
(
!
initialized
)
{
char
*
file
;
...
...
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