diff options
| author | Kim F. Storm | 2004-03-11 00:28:46 +0000 |
|---|---|---|
| committer | Kim F. Storm | 2004-03-11 00:28:46 +0000 |
| commit | 6e7e181dfc6dfc901f7375f34a9b0a298d884962 (patch) | |
| tree | 30108cc204d84c2c81d5b71db885bb4514215f7c /src | |
| parent | 4ef0d4d03e6cb735f133051d0fc04361a6f774d2 (diff) | |
| download | emacs-6e7e181dfc6dfc901f7375f34a9b0a298d884962.tar.gz emacs-6e7e181dfc6dfc901f7375f34a9b0a298d884962.zip | |
Image consolidation:
(main) [HAVE_WINDOW_SYSTEM]: Add calls to syms_of_image
and init_image. Remove call to init_xfns.
Diffstat (limited to 'src')
| -rw-r--r-- | src/emacs.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/emacs.c b/src/emacs.c index 66a2af72fb5..abd0489caad 100644 --- a/src/emacs.c +++ b/src/emacs.c | |||
| @@ -1511,6 +1511,7 @@ main (argc, argv | |||
| 1511 | syms_of_xdisp (); | 1511 | syms_of_xdisp (); |
| 1512 | #ifdef HAVE_WINDOW_SYSTEM | 1512 | #ifdef HAVE_WINDOW_SYSTEM |
| 1513 | syms_of_fringe (); | 1513 | syms_of_fringe (); |
| 1514 | syms_of_image (); | ||
| 1514 | #endif /* HAVE_WINDOW_SYSTEM */ | 1515 | #endif /* HAVE_WINDOW_SYSTEM */ |
| 1515 | #ifdef HAVE_X_WINDOWS | 1516 | #ifdef HAVE_X_WINDOWS |
| 1516 | syms_of_xterm (); | 1517 | syms_of_xterm (); |
| @@ -1589,13 +1590,11 @@ main (argc, argv | |||
| 1589 | init_vmsproc (); /* And this too. */ | 1590 | init_vmsproc (); /* And this too. */ |
| 1590 | #endif /* VMS */ | 1591 | #endif /* VMS */ |
| 1591 | init_sys_modes (); /* Init system terminal modes (RAW or CBREAK, etc.). */ | 1592 | init_sys_modes (); /* Init system terminal modes (RAW or CBREAK, etc.). */ |
| 1592 | #if defined (HAVE_X_WINDOWS) || defined (WINDOWSNT) || defined (HAVE_CARBON) | ||
| 1593 | init_xfns (); | ||
| 1594 | #endif /* HAVE_X_WINDOWS */ | ||
| 1595 | init_fns (); | 1593 | init_fns (); |
| 1596 | init_xdisp (); | 1594 | init_xdisp (); |
| 1597 | #ifdef HAVE_WINDOW_SYSTEM | 1595 | #ifdef HAVE_WINDOW_SYSTEM |
| 1598 | init_fringe (); | 1596 | init_fringe (); |
| 1597 | init_image (); | ||
| 1599 | #endif /* HAVE_WINDOW_SYSTEM */ | 1598 | #endif /* HAVE_WINDOW_SYSTEM */ |
| 1600 | init_macros (); | 1599 | init_macros (); |
| 1601 | init_editfns (); | 1600 | init_editfns (); |