summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1997-05-31 05:32:56 +0000
committerRichard M. Stallman <rms@gnu.org>1997-05-31 05:32:56 +0000
commitdcdcce1a92796cb7b78f2ed50b66b2b907079b51 (patch)
treef9f187409f190c2e963c6a6c570bd6857715fd7d
parent5bfd038eca8e8f550516b358e0612fb94ad203bf (diff)
downloademacs-dcdcce1a92796cb7b78f2ed50b66b2b907079b51.tar.gz
(main): Call syms_of_xfaces whenever ! HAVE_NTGUI.
-rw-r--r--src/emacs.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/emacs.c b/src/emacs.c
index ed5f89160c3..adf9660a837 100644
--- a/src/emacs.c
+++ b/src/emacs.c
@@ -1017,18 +1017,14 @@ the Bugs section of the Emacs manual or the file BUGS.", argv[0]);
#ifdef HAVE_X_WINDOWS
syms_of_xterm ();
syms_of_xfns ();
- syms_of_xfaces ();
syms_of_fontset ();
#ifdef HAVE_X11
syms_of_xselect ();
#endif
#endif /* HAVE_X_WINDOWS */
-#if defined (MSDOS) && !defined (HAVE_X_WINDOWS)
- syms_of_xfaces ();
-#endif
-
#ifndef HAVE_NTGUI
+ syms_of_xfaces ();
syms_of_xmenu ();
#endif