# HG changeset patch # User Kim F. Storm # Date 1076282365 0 # Node ID 94e08e9831b02c8b9613c5e6096058f15233c983 # Parent ccacbf7f76b263f61c9f3c5a5af8c56d84e2445c (main) [HAVE_WINDOW_SYSTEM]: Call init_fringe_once, syms_of_fringe, and init_fringe. diff -r ccacbf7f76b2 -r 94e08e9831b0 src/emacs.c --- a/src/emacs.c Sun Feb 08 23:19:15 2004 +0000 +++ b/src/emacs.c Sun Feb 08 23:19:25 2004 +0000 @@ -1235,6 +1235,9 @@ 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 @@ #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 @@ #endif /* HAVE_X_WINDOWS */ init_fns (); init_xdisp (); +#ifdef HAVE_WINDOW_SYSTEM + init_fringe (); +#endif /* HAVE_WINDOW_SYSTEM */ init_macros (); init_editfns (); init_floatfns ();