aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJim Blandy1992-07-13 19:50:55 +0000
committerJim Blandy1992-07-13 19:50:55 +0000
commit1cbd5d9dc53c354c837c568a9da8fd180eed4d89 (patch)
treee3abe0bfc60923bbdc7d5f232929ec4029a220f3 /src
parent109d300c73bb5b1ec84d37cceb9cc545bd6f2444 (diff)
downloademacs-1cbd5d9dc53c354c837c568a9da8fd180eed4d89.tar.gz
emacs-1cbd5d9dc53c354c837c568a9da8fd180eed4d89.zip
*** empty log message ***
Diffstat (limited to 'src')
-rw-r--r--src/config.in32
-rw-r--r--src/emacs.c6
-rw-r--r--src/fns.c4
3 files changed, 20 insertions, 22 deletions
diff --git a/src/config.in b/src/config.in
index b9b6e19c1db..1a0a063bafa 100644
--- a/src/config.in
+++ b/src/config.in
@@ -1,4 +1,4 @@
1/* GNU Emacs site configuration template file. 1/* GNU Emacs site configuration template file. -*- C -*-
2 Copyright (C) 1988 Free Software Foundation, Inc. 2 Copyright (C) 1988 Free Software Foundation, Inc.
3 3
4This file is part of GNU Emacs. 4This file is part of GNU Emacs.
@@ -32,9 +32,9 @@ and this notice must be preserved on all copies. */
32 and not on others. */ 32 and not on others. */
33/* #define HAVE_X_MENU */ 33/* #define HAVE_X_MENU */
34 34
35/* If we're using any sort of window system, define MULTI_SCREEN. */ 35/* If we're using any sort of window system, define MULTI_FRAME. */
36#ifdef HAVE_X_WINDOWS 36#ifdef HAVE_X_WINDOWS
37#define MULTI_SCREEN 37#define MULTI_FRAME
38#endif 38#endif
39 39
40/* Define USER_FULL_NAME to return a string 40/* Define USER_FULL_NAME to return a string
@@ -79,7 +79,7 @@ and this notice must be preserved on all copies. */
79 79
80 A character is displayed on a given terminal by means of a sequence 80 A character is displayed on a given terminal by means of a sequence
81 of one or more GLYPHs. A GLYPH is something that takes up exactly 81 of one or more GLYPHs. A GLYPH is something that takes up exactly
82 one display position on the screen. 82 one display position on the frame.
83 83
84 Emacs can use 8-bit or 16-bit values to represent GLYPHs. Under X 84 Emacs can use 8-bit or 16-bit values to represent GLYPHs. Under X
85 windows, 16-bit GLYPHs allow you to display characters from fonts 85 windows, 16-bit GLYPHs allow you to display characters from fonts
@@ -93,18 +93,20 @@ and this notice must be preserved on all copies. */
93#define GLYPH unsigned char 93#define GLYPH unsigned char
94#endif 94#endif
95 95
96/* The configuration script links system.h to a s- file that describes 96/* The configuration script replaces the string @opsystem@ with the
97 the system type you are using. 97 name of the s/*.h file that describes the system type you are
98 See the file ../etc/MACHINES for a list of systems and 98 using; an option of the form "-opsystem=OPSYS" says to use
99 the names of the s- files to use for them. 99 "s/OPSYS.h". See the file ../etc/MACHINES for a list of systems
100 See s-template.h for documentation on writing s- files. */ 100 and the -opsystem flags to use for them.
101 See s/template.h for documentation on writing s/*.h files. */
101#include "@opsystem@" 102#include "@opsystem@"
102 103
103/* The configuration script links machine.h to a m- file that 104/* The configuration script replaces the string @machine@ with the
104 describes the machine and system you use. 105 name of the m/*.h file that describes the machine you are
105 See the file ../etc/MACHINES for a list of machines and 106 using; an option of the form "-machine=MACH" says to use
106 the names of the m- files to use for them. 107 "m/MACH.h". See the file ../etc/MACHINES for a list of machines
107 See m-template.h for info on what m- files should define. */ 108 and the -machine flags to use for them.
109 See m/template.h for documentation on writing m/*.h files. */
108#include "@machine@" 110#include "@machine@"
109 111
110/* Some s- files may define SYSTEM_MALLOC, in which case make sure 112/* Some s- files may define SYSTEM_MALLOC, in which case make sure
@@ -134,7 +136,7 @@ and this notice must be preserved on all copies. */
134 have code for asynchronous subprocesses 136 have code for asynchronous subprocesses
135 (as used in M-x compile and M-x shell). 137 (as used in M-x compile and M-x shell).
136 These do not work for some USG systems yet; 138 These do not work for some USG systems yet;
137 for the ones where they work, the s-*.h file defines this flag. */ 139 for the ones where they work, the s/*.h file defines this flag. */
138 140
139#ifndef VMS 141#ifndef VMS
140#ifndef USG 142#ifndef USG
diff --git a/src/emacs.c b/src/emacs.c
index df698ee8309..54a39fb4d0a 100644
--- a/src/emacs.c
+++ b/src/emacs.c
@@ -425,7 +425,7 @@ main (argc, argv, envp)
425 if (!noninteractive) 425 if (!noninteractive)
426 { 426 {
427#ifdef VMS 427#ifdef VMS
428 init_vms_input ();/* init_display calls get_screen_size, that needs this */ 428 init_vms_input ();/* init_display calls get_frame_size, that needs this */
429#endif /* VMS */ 429#endif /* VMS */
430 init_display (); /* Determine terminal type. init_sys_modes uses results */ 430 init_display (); /* Determine terminal type. init_sys_modes uses results */
431 } 431 }
@@ -494,8 +494,8 @@ main (argc, argv, envp)
494 syms_of_mocklisp (); 494 syms_of_mocklisp ();
495 syms_of_process (); 495 syms_of_process ();
496 syms_of_search (); 496 syms_of_search ();
497#ifdef MULTI_SCREEN 497#ifdef MULTI_FRAME
498 syms_of_screen (); 498 syms_of_frame ();
499#endif 499#endif
500 syms_of_syntax (); 500 syms_of_syntax ();
501 syms_of_undo (); 501 syms_of_undo ();
diff --git a/src/fns.c b/src/fns.c
index 90b2c0371b0..cf8ac7b9e2b 100644
--- a/src/fns.c
+++ b/src/fns.c
@@ -28,10 +28,6 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
28#include "lisp.h" 28#include "lisp.h"
29#include "commands.h" 29#include "commands.h"
30 30
31#ifdef MULTI_SCREEN
32#include "screen.h"
33#endif
34
35#include "buffer.h" 31#include "buffer.h"
36 32
37Lisp_Object Qstring_lessp; 33Lisp_Object Qstring_lessp;