From: Karl Heuer Date: Tue, 31 Jan 1995 01:52:22 +0000 (+0000) Subject: [MULTI_PERDISPLAY]: Declare get_perdisplay as a function. X-Git-Tag: emacs-19.34~5250 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=e1e81fd6b3c311fedebb371189f00da875d9d640;p=emacs.git [MULTI_PERDISPLAY]: Declare get_perdisplay as a function. --- diff --git a/src/lisp.h b/src/lisp.h index 94ba6bc3948..a1fac63abdc 100644 --- a/src/lisp.h +++ b/src/lisp.h @@ -561,8 +561,12 @@ typedef struct 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 */