changeset 763:f2efaa0394de

*** empty log message ***
author Jim Blandy <jimb@redhat.com>
date Mon, 13 Jul 1992 19:50:55 +0000
parents 852a2f5838da
children bb24f1180bb6
files src/config.in src/emacs.c src/fns.c
diffstat 3 files changed, 20 insertions(+), 22 deletions(-) [+]
line wrap: on
line diff
--- a/src/config.in	Mon Jul 13 18:39:10 1992 +0000
+++ b/src/config.in	Mon Jul 13 19:50:55 1992 +0000
@@ -1,4 +1,4 @@
-/* GNU Emacs site configuration template file.
+/* GNU Emacs site configuration template file.  -*- C -*-
    Copyright (C) 1988 Free Software Foundation, Inc.
 
 This file is part of GNU Emacs.
@@ -32,9 +32,9 @@
    and not on others.  */
 /* #define HAVE_X_MENU */
 
-/* If we're using any sort of window system, define MULTI_SCREEN.  */
+/* If we're using any sort of window system, define MULTI_FRAME.  */
 #ifdef HAVE_X_WINDOWS
-#define MULTI_SCREEN
+#define MULTI_FRAME
 #endif
 
 /* Define USER_FULL_NAME to return a string
@@ -79,7 +79,7 @@
 
    A character is displayed on a given terminal by means of a sequence
    of one or more GLYPHs.  A GLYPH is something that takes up exactly
-   one display position on the screen.
+   one display position on the frame.
 
    Emacs can use 8-bit or 16-bit values to represent GLYPHs.  Under X
    windows, 16-bit GLYPHs allow you to display characters from fonts
@@ -93,18 +93,20 @@
 #define GLYPH unsigned char
 #endif
 
-/* The configuration script links system.h to a s- file that describes
-   the system type you are using.
-   See the file ../etc/MACHINES for a list of systems and
-   the names of the s- files to use for them.
-   See s-template.h for documentation on writing s- files.  */
+/* The configuration script replaces the string @opsystem@ with the
+   name of the s/*.h file that describes the system type you are
+   using; an option of the form "-opsystem=OPSYS" says to use
+   "s/OPSYS.h".  See the file ../etc/MACHINES for a list of systems
+   and the -opsystem flags to use for them.
+   See s/template.h for documentation on writing s/*.h files.  */
 #include "@opsystem@"
 
-/* The configuration script links machine.h to a m- file that
-   describes the machine and system you use.
-   See the file ../etc/MACHINES for a list of machines and
-   the names of the m- files to use for them.
-   See m-template.h for info on what m- files should define.  */
+/* The configuration script replaces the string @machine@ with the
+   name of the m/*.h file that describes the machine you are
+   using; an option of the form "-machine=MACH" says to use
+   "m/MACH.h".  See the file ../etc/MACHINES for a list of machines
+   and the -machine flags to use for them.
+   See m/template.h for documentation on writing m/*.h files.  */
 #include "@machine@"
 
 /* Some s- files may define SYSTEM_MALLOC, in which case make sure
@@ -134,7 +136,7 @@
    have code for asynchronous subprocesses
    (as used in M-x compile and M-x shell).
    These do not work for some USG systems yet;
-   for the ones where they work, the s-*.h file defines this flag.  */
+   for the ones where they work, the s/*.h file defines this flag.  */
 
 #ifndef VMS
 #ifndef USG
--- a/src/emacs.c	Mon Jul 13 18:39:10 1992 +0000
+++ b/src/emacs.c	Mon Jul 13 19:50:55 1992 +0000
@@ -425,7 +425,7 @@
   if (!noninteractive)
     {
 #ifdef VMS
-      init_vms_input ();/* init_display calls get_screen_size, that needs this */
+      init_vms_input ();/* init_display calls get_frame_size, that needs this */
 #endif /* VMS */
       init_display ();	/* Determine terminal type.  init_sys_modes uses results */
     }
@@ -494,8 +494,8 @@
       syms_of_mocklisp ();
       syms_of_process ();
       syms_of_search ();
-#ifdef MULTI_SCREEN
-      syms_of_screen ();
+#ifdef MULTI_FRAME
+      syms_of_frame ();
 #endif
       syms_of_syntax ();
       syms_of_undo ();
--- a/src/fns.c	Mon Jul 13 18:39:10 1992 +0000
+++ b/src/fns.c	Mon Jul 13 19:50:55 1992 +0000
@@ -28,10 +28,6 @@
 #include "lisp.h"
 #include "commands.h"
 
-#ifdef MULTI_SCREEN
-#include "screen.h"
-#endif
-
 #include "buffer.h"
 
 Lisp_Object Qstring_lessp;