aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKenichi Handa2002-03-01 01:38:15 +0000
committerKenichi Handa2002-03-01 01:38:15 +0000
commite37d7195c571ff9f57210f334b552eee59be4186 (patch)
tree3c96873ea23e5ed513359c6effd579dd2925d0d6 /src
parent40fbd2544a7ef141999e7915f42c0582a277c14e (diff)
downloademacs-e37d7195c571ff9f57210f334b552eee59be4186.tar.gz
emacs-e37d7195c571ff9f57210f334b552eee59be4186.zip
(main): Call init_charset_once, init_charset,
syms_of_chartab, and syms_of_character.
Diffstat (limited to 'src')
-rw-r--r--src/emacs.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/emacs.c b/src/emacs.c
index eeb9002fe3c..1157f0ee2dc 100644
--- a/src/emacs.c
+++ b/src/emacs.c
@@ -1154,6 +1154,7 @@ main (argc, argv, envp)
1154 init_alloc_once (); 1154 init_alloc_once ();
1155 init_obarray (); 1155 init_obarray ();
1156 init_eval_once (); 1156 init_eval_once ();
1157 init_character_once ();
1157 init_charset_once (); 1158 init_charset_once ();
1158 init_coding_once (); 1159 init_coding_once ();
1159 init_syntax_once (); /* Create standard syntax table. */ 1160 init_syntax_once (); /* Create standard syntax table. */
@@ -1383,6 +1384,7 @@ main (argc, argv, envp)
1383 1384
1384 init_callproc (); /* Must follow init_cmdargs but not init_sys_modes. */ 1385 init_callproc (); /* Must follow init_cmdargs but not init_sys_modes. */
1385 init_lread (); 1386 init_lread ();
1387 init_charset ();
1386 1388
1387 /* Intern the names of all standard functions and variables; 1389 /* Intern the names of all standard functions and variables;
1388 define standard keys. */ 1390 define standard keys. */
@@ -1397,6 +1399,7 @@ main (argc, argv, envp)
1397 syms_of_data (); 1399 syms_of_data ();
1398#endif 1400#endif
1399 syms_of_alloc (); 1401 syms_of_alloc ();
1402 syms_of_chartab ();
1400 syms_of_lread (); 1403 syms_of_lread ();
1401 syms_of_print (); 1404 syms_of_print ();
1402 syms_of_eval (); 1405 syms_of_eval ();
@@ -1415,6 +1418,7 @@ main (argc, argv, envp)
1415 /* Called before init_window_once for Mac OS. */ 1418 /* Called before init_window_once for Mac OS. */
1416 syms_of_ccl (); 1419 syms_of_ccl ();
1417#endif 1420#endif
1421 syms_of_character ();
1418 syms_of_charset (); 1422 syms_of_charset ();
1419 syms_of_cmds (); 1423 syms_of_cmds ();
1420#ifndef NO_DIR_LIBRARY 1424#ifndef NO_DIR_LIBRARY