# HG changeset patch # User Kenichi Handa # Date 1014946695 0 # Node ID 9c612c1faba49becef527afe3da2a26517d80907 # Parent 7d0adc8c7f076f2882a8ca94e0bd52bab5c87e4d (main): Call init_charset_once, init_charset, syms_of_chartab, and syms_of_character. diff -r 7d0adc8c7f07 -r 9c612c1faba4 src/emacs.c --- a/src/emacs.c Fri Mar 01 01:37:55 2002 +0000 +++ b/src/emacs.c Fri Mar 01 01:38:15 2002 +0000 @@ -1154,6 +1154,7 @@ 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 @@ 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 @@ syms_of_data (); #endif syms_of_alloc (); + syms_of_chartab (); syms_of_lread (); syms_of_print (); syms_of_eval (); @@ -1415,6 +1418,7 @@ /* 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