From 270ce8217c06375399378f33e2a7a2d8cb325924 Mon Sep 17 00:00:00 2001 From: Karl Heuer Date: Sat, 22 Feb 1997 19:30:55 +0000 Subject: [PATCH] (main): Call several initialization function introduced by Mule. --- src/emacs.c | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/emacs.c b/src/emacs.c index d98c30463f7..62a49f938f0 100644 --- a/src/emacs.c +++ b/src/emacs.c @@ -835,7 +835,10 @@ the Bugs section of the Emacs manual or the file BUGS.", argv[0]); 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 @@ the Bugs section of the Emacs manual or the file BUGS.", argv[0]); 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 @@ the Bugs section of the Emacs manual or the file BUGS.", argv[0]); 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 @@ the Bugs section of the Emacs manual or the file BUGS.", argv[0]); syms_of_xterm (); syms_of_xfns (); syms_of_xfaces (); + syms_of_fontset (); #ifdef HAVE_X11 syms_of_xselect (); #endif -- 2.39.5