From: Kenichi Handa Date: Fri, 1 Mar 2002 01:38:15 +0000 (+0000) Subject: (main): Call init_charset_once, init_charset, X-Git-Tag: emacs-pretest-23.0.90~8295^2~1864^2~1008 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=e37d7195c571ff9f57210f334b552eee59be4186;p=emacs.git (main): Call init_charset_once, init_charset, syms_of_chartab, and syms_of_character. --- 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) init_alloc_once (); init_obarray (); init_eval_once (); + init_character_once (); init_charset_once (); init_coding_once (); init_syntax_once (); /* Create standard syntax table. */ @@ -1383,6 +1384,7 @@ main (argc, argv, envp) init_callproc (); /* Must follow init_cmdargs but not init_sys_modes. */ init_lread (); + init_charset (); /* Intern the names of all standard functions and variables; define standard keys. */ @@ -1397,6 +1399,7 @@ main (argc, argv, envp) syms_of_data (); #endif syms_of_alloc (); + syms_of_chartab (); syms_of_lread (); syms_of_print (); syms_of_eval (); @@ -1415,6 +1418,7 @@ main (argc, argv, envp) /* Called before init_window_once for Mac OS. */ syms_of_ccl (); #endif + syms_of_character (); syms_of_charset (); syms_of_cmds (); #ifndef NO_DIR_LIBRARY