aboutsummaryrefslogtreecommitdiffstats
path: root/src/emacs.c
diff options
context:
space:
mode:
authorKim F. Storm <[email protected]>2004-03-11 00:28:46 +0000
committerKim F. Storm <[email protected]>2004-03-11 00:28:46 +0000
commit6e7e181dfc6dfc901f7375f34a9b0a298d884962 (patch)
tree30108cc204d84c2c81d5b71db885bb4514215f7c /src/emacs.c
parent4ef0d4d03e6cb735f133051d0fc04361a6f774d2 (diff)
Image consolidation:
(main) [HAVE_WINDOW_SYSTEM]: Add calls to syms_of_image and init_image. Remove call to init_xfns.
Diffstat (limited to 'src/emacs.c')
-rw-r--r--src/emacs.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/emacs.c b/src/emacs.c
index 66a2af72fb..abd0489caa 100644
--- a/src/emacs.c
+++ b/src/emacs.c
@@ -1511,6 +1511,7 @@ main (argc, argv
syms_of_xdisp ();
#ifdef HAVE_WINDOW_SYSTEM
syms_of_fringe ();
+ syms_of_image ();
#endif /* HAVE_WINDOW_SYSTEM */
#ifdef HAVE_X_WINDOWS
syms_of_xterm ();
@@ -1589,13 +1590,11 @@ main (argc, argv
init_vmsproc (); /* And this too. */
#endif /* VMS */
init_sys_modes (); /* Init system terminal modes (RAW or CBREAK, etc.). */
-#if defined (HAVE_X_WINDOWS) || defined (WINDOWSNT) || defined (HAVE_CARBON)
- init_xfns ();
-#endif /* HAVE_X_WINDOWS */
init_fns ();
init_xdisp ();
#ifdef HAVE_WINDOW_SYSTEM
init_fringe ();
+ init_image ();
#endif /* HAVE_WINDOW_SYSTEM */
init_macros ();
init_editfns ();