aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKim F. Storm2004-02-08 23:19:25 +0000
committerKim F. Storm2004-02-08 23:19:25 +0000
commit0fc4c63e478f8bf5b6396745b5db92caeaa9e872 (patch)
treee67f11d4bd56edb91ab9a9f88fd6ce428e3162d6 /src
parent5cbd733a778d8e2a69c87e316d02bbbd720de240 (diff)
downloademacs-0fc4c63e478f8bf5b6396745b5db92caeaa9e872.tar.gz
emacs-0fc4c63e478f8bf5b6396745b5db92caeaa9e872.zip
(main) [HAVE_WINDOW_SYSTEM]: Call init_fringe_once,
syms_of_fringe, and init_fringe.
Diffstat (limited to 'src')
-rw-r--r--src/emacs.c9
1 files changed, 9 insertions, 0 deletions
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
1235 1235
1236 init_window_once (); /* Init the window system. */ 1236 init_window_once (); /* Init the window system. */
1237 init_fileio_once (); /* Must precede any path manipulation. */ 1237 init_fileio_once (); /* Must precede any path manipulation. */
1238#ifdef HAVE_WINDOW_SYSTEM
1239 init_fringe_once (); /* Swap bitmaps if necessary. */
1240#endif /* HAVE_WINDOW_SYSTEM */
1238 } 1241 }
1239 1242
1240 init_alloc (); 1243 init_alloc ();
@@ -1499,6 +1502,9 @@ main (argc, argv
1499#endif /* WINDOWSNT */ 1502#endif /* WINDOWSNT */
1500 syms_of_window (); 1503 syms_of_window ();
1501 syms_of_xdisp (); 1504 syms_of_xdisp ();
1505#ifdef HAVE_WINDOW_SYSTEM
1506 syms_of_fringe ();
1507#endif /* HAVE_WINDOW_SYSTEM */
1502#ifdef HAVE_X_WINDOWS 1508#ifdef HAVE_X_WINDOWS
1503 syms_of_xterm (); 1509 syms_of_xterm ();
1504 syms_of_xfns (); 1510 syms_of_xfns ();
@@ -1581,6 +1587,9 @@ main (argc, argv
1581#endif /* HAVE_X_WINDOWS */ 1587#endif /* HAVE_X_WINDOWS */
1582 init_fns (); 1588 init_fns ();
1583 init_xdisp (); 1589 init_xdisp ();
1590#ifdef HAVE_WINDOW_SYSTEM
1591 init_fringe ();
1592#endif /* HAVE_WINDOW_SYSTEM */
1584 init_macros (); 1593 init_macros ();
1585 init_editfns (); 1594 init_editfns ();
1586 init_floatfns (); 1595 init_floatfns ();