Mercurial > emacs
comparison src/emacs.c @ 88373:9c612c1faba4
(main): Call init_charset_once, init_charset,
syms_of_chartab, and syms_of_character.
author | Kenichi Handa <handa@m17n.org> |
---|---|
date | Fri, 01 Mar 2002 01:38:15 +0000 |
parents | ecb614567352 |
children | 313a80e39c2a |
comparison
equal
deleted
inserted
replaced
88372:7d0adc8c7f07 | 88373:9c612c1faba4 |
---|---|
1152 if (!initialized) | 1152 if (!initialized) |
1153 { | 1153 { |
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. */ |
1160 init_category_once (); /* Create standard category table. */ | 1161 init_category_once (); /* Create standard category table. */ |
1161 /* Must be done before init_buffer. */ | 1162 /* Must be done before init_buffer. */ |
1381 Vmessage_log_max = old_log_max; | 1382 Vmessage_log_max = old_log_max; |
1382 } | 1383 } |
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. */ |
1389 | 1391 |
1390 if (!initialized) | 1392 if (!initialized) |
1395 #ifndef macintosh | 1397 #ifndef macintosh |
1396 /* Called before init_window_once for Mac OS. */ | 1398 /* Called before init_window_once for Mac OS. */ |
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 (); |
1403 syms_of_fns (); | 1406 syms_of_fns (); |
1404 syms_of_floatfns (); | 1407 syms_of_floatfns (); |
1413 syms_of_category (); | 1416 syms_of_category (); |
1414 #ifndef macintosh | 1417 #ifndef macintosh |
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 |
1421 syms_of_dired (); | 1425 syms_of_dired (); |
1422 #endif /* not NO_DIR_LIBRARY */ | 1426 #endif /* not NO_DIR_LIBRARY */ |