From 0fc4c63e478f8bf5b6396745b5db92caeaa9e872 Mon Sep 17 00:00:00 2001 From: "Kim F. Storm" Date: Sun, 8 Feb 2004 23:19:25 +0000 Subject: [PATCH] (main) [HAVE_WINDOW_SYSTEM]: Call init_fringe_once, syms_of_fringe, and init_fringe. --- src/emacs.c | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/emacs.c b/src/emacs.c index 0b2e678329c..fa6fa5a061a 100644 --- a/src/emacs.c +++ b/src/emacs.c @@ -1235,6 +1235,9 @@ main (argc, argv init_window_once (); /* Init the window system. */ init_fileio_once (); /* Must precede any path manipulation. */ +#ifdef HAVE_WINDOW_SYSTEM + init_fringe_once (); /* Swap bitmaps if necessary. */ +#endif /* HAVE_WINDOW_SYSTEM */ } init_alloc (); @@ -1499,6 +1502,9 @@ main (argc, argv #endif /* WINDOWSNT */ syms_of_window (); syms_of_xdisp (); +#ifdef HAVE_WINDOW_SYSTEM + syms_of_fringe (); +#endif /* HAVE_WINDOW_SYSTEM */ #ifdef HAVE_X_WINDOWS syms_of_xterm (); syms_of_xfns (); @@ -1581,6 +1587,9 @@ main (argc, argv #endif /* HAVE_X_WINDOWS */ init_fns (); init_xdisp (); +#ifdef HAVE_WINDOW_SYSTEM + init_fringe (); +#endif /* HAVE_WINDOW_SYSTEM */ init_macros (); init_editfns (); init_floatfns (); -- 2.39.2