aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKarl Heuer1995-01-31 01:52:22 +0000
committerKarl Heuer1995-01-31 01:52:22 +0000
commite1e81fd6b3c311fedebb371189f00da875d9d640 (patch)
tree64a757452a217bfe8b825cc9fbfaf48b23ebf3c2 /src
parent3abccc4b1893748c60e9f3d2f2a5b64d6ce0d1fe (diff)
downloademacs-e1e81fd6b3c311fedebb371189f00da875d9d640.tar.gz
emacs-e1e81fd6b3c311fedebb371189f00da875d9d640.zip
[MULTI_PERDISPLAY]: Declare get_perdisplay as a function.
Diffstat (limited to 'src')
-rw-r--r--src/lisp.h4
1 files changed, 4 insertions, 0 deletions
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
561 usually. '\0'-terminated. This really shouldn't have a fixed size. */ 561 usually. '\0'-terminated. This really shouldn't have a fixed size. */
562 char echobuf[ECHOBUFSIZE]; 562 char echobuf[ECHOBUFSIZE];
563 } PERDISPLAY; 563 } PERDISPLAY;
564#ifdef MULTI_PERDISPLAY
565extern PERDISPLAY *get_perdisplay ();
566#else
564extern PERDISPLAY the_only_perdisplay; 567extern PERDISPLAY the_only_perdisplay;
565#define get_perdisplay(f) (&the_only_perdisplay) 568#define get_perdisplay(f) (&the_only_perdisplay)
569#endif
566 570
567/* In a cons, the markbit of the car is the gc mark bit */ 571/* In a cons, the markbit of the car is the gc mark bit */
568 572