Mercurial > emacs
changeset 17060:8c069ef6e1c4
(main): Call several initialization function introduced
by Mule.
author | Karl Heuer <kwzh@gnu.org> |
---|---|
date | Sat, 22 Feb 1997 19:30:55 +0000 |
parents | 5246c075a643 |
children | bc9a4db95edb |
files | src/emacs.c |
diffstat | 1 files changed, 8 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/src/emacs.c Sat Feb 22 19:26:15 1997 +0000 +++ b/src/emacs.c Sat Feb 22 19:30:55 1997 +0000 @@ -835,7 +835,10 @@ init_alloc_once (); init_obarray (); init_eval_once (); + init_charset_once (); + init_coding_once (); init_syntax_once (); /* Create standard syntax table. */ + init_category_once (); /* Create standard category table. */ /* Must be done before init_buffer */ init_casetab_once (); init_buffer_once (); /* Create buffer table and some buffers */ @@ -942,6 +945,9 @@ syms_of_casefiddle (); syms_of_casetab (); syms_of_callproc (); + syms_of_category (); + syms_of_ccl (); + syms_of_charset (); syms_of_cmds (); #ifndef NO_DIR_LIBRARY syms_of_dired (); @@ -951,6 +957,7 @@ syms_of_editfns (); syms_of_emacs (); syms_of_fileio (); + syms_of_coding (); /* This should be after syms_of_fileio. */ #ifdef CLASH_DETECTION syms_of_filelock (); #endif /* CLASH_DETECTION */ @@ -983,6 +990,7 @@ syms_of_xterm (); syms_of_xfns (); syms_of_xfaces (); + syms_of_fontset (); #ifdef HAVE_X11 syms_of_xselect (); #endif