aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKarl Heuer1997-02-22 19:30:55 +0000
committerKarl Heuer1997-02-22 19:30:55 +0000
commit270ce8217c06375399378f33e2a7a2d8cb325924 (patch)
tree85d4b260c03ca5006a8343dc1f579405261d3984 /src
parentfc44dfab721d5da386e24b02e794da31754fd568 (diff)
downloademacs-270ce8217c06375399378f33e2a7a2d8cb325924.tar.gz
emacs-270ce8217c06375399378f33e2a7a2d8cb325924.zip
(main): Call several initialization function introduced
by Mule.
Diffstat (limited to 'src')
-rw-r--r--src/emacs.c8
1 files changed, 8 insertions, 0 deletions
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]);
835 init_alloc_once (); 835 init_alloc_once ();
836 init_obarray (); 836 init_obarray ();
837 init_eval_once (); 837 init_eval_once ();
838 init_charset_once ();
839 init_coding_once ();
838 init_syntax_once (); /* Create standard syntax table. */ 840 init_syntax_once (); /* Create standard syntax table. */
841 init_category_once (); /* Create standard category table. */
839 /* Must be done before init_buffer */ 842 /* Must be done before init_buffer */
840 init_casetab_once (); 843 init_casetab_once ();
841 init_buffer_once (); /* Create buffer table and some buffers */ 844 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]);
942 syms_of_casefiddle (); 945 syms_of_casefiddle ();
943 syms_of_casetab (); 946 syms_of_casetab ();
944 syms_of_callproc (); 947 syms_of_callproc ();
948 syms_of_category ();
949 syms_of_ccl ();
950 syms_of_charset ();
945 syms_of_cmds (); 951 syms_of_cmds ();
946#ifndef NO_DIR_LIBRARY 952#ifndef NO_DIR_LIBRARY
947 syms_of_dired (); 953 syms_of_dired ();
@@ -951,6 +957,7 @@ the Bugs section of the Emacs manual or the file BUGS.", argv[0]);
951 syms_of_editfns (); 957 syms_of_editfns ();
952 syms_of_emacs (); 958 syms_of_emacs ();
953 syms_of_fileio (); 959 syms_of_fileio ();
960 syms_of_coding (); /* This should be after syms_of_fileio. */
954#ifdef CLASH_DETECTION 961#ifdef CLASH_DETECTION
955 syms_of_filelock (); 962 syms_of_filelock ();
956#endif /* CLASH_DETECTION */ 963#endif /* CLASH_DETECTION */
@@ -983,6 +990,7 @@ the Bugs section of the Emacs manual or the file BUGS.", argv[0]);
983 syms_of_xterm (); 990 syms_of_xterm ();
984 syms_of_xfns (); 991 syms_of_xfns ();
985 syms_of_xfaces (); 992 syms_of_xfaces ();
993 syms_of_fontset ();
986#ifdef HAVE_X11 994#ifdef HAVE_X11
987 syms_of_xselect (); 995 syms_of_xselect ();
988#endif 996#endif