changeset 10608:894df845ae4f

[MULTI_PERDISPLAY]: Declare get_perdisplay as a function.
author Karl Heuer <kwzh@gnu.org>
date Tue, 31 Jan 1995 01:52:22 +0000
parents 76c57a8695b2
children ae8199d40762
files src/lisp.h
diffstat 1 files changed, 4 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/src/lisp.h	Tue Jan 31 01:26:37 1995 +0000
+++ b/src/lisp.h	Tue Jan 31 01:52:22 1995 +0000
@@ -561,8 +561,12 @@
        usually.  '\0'-terminated.  This really shouldn't have a fixed size.  */
     char echobuf[ECHOBUFSIZE];
   } PERDISPLAY;
+#ifdef MULTI_PERDISPLAY
+extern PERDISPLAY *get_perdisplay ();
+#else
 extern PERDISPLAY the_only_perdisplay;
 #define get_perdisplay(f) (&the_only_perdisplay)
+#endif
 
 /* In a cons, the markbit of the car is the gc mark bit */