aboutsummaryrefslogtreecommitdiffstats
path: root/src/lisp.h
diff options
context:
space:
mode:
authorJim Blandy1992-11-07 07:35:20 +0000
committerJim Blandy1992-11-07 07:35:20 +0000
commitf1b76ec09b463f0208be7c19fa6365d2fe02a9f0 (patch)
tree7000e7ddb581cc2bfcb95edffd6c6a0906816f16 /src/lisp.h
parent8e4dfd54039beee8118648b00be9a5c128cd23e1 (diff)
downloademacs-f1b76ec09b463f0208be7c19fa6365d2fe02a9f0.tar.gz
emacs-f1b76ec09b463f0208be7c19fa6365d2fe02a9f0.zip
* lisp.h [not MULTI_FRAME]: Don't declare the Lisp_Frame tag.
Diffstat (limited to 'src/lisp.h')
-rw-r--r--src/lisp.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/lisp.h b/src/lisp.h
index f5227b76a3c..d355837067b 100644
--- a/src/lisp.h
+++ b/src/lisp.h
@@ -86,9 +86,13 @@ enum Lisp_Type
86 XOBJFWD(obj) points to the Lisp_Object variable. */ 86 XOBJFWD(obj) points to the Lisp_Object variable. */
87 Lisp_Objfwd, 87 Lisp_Objfwd,
88 88
89#ifdef MULTI_FRAME
89 /* Pointer to a vector-like object describing a display frame 90 /* Pointer to a vector-like object describing a display frame
90 on which Emacs can display a window hierarchy. */ 91 on which Emacs can display a window hierarchy. We don't define
92 this unless MULTI_FRAME is defined; this helps the compiler catch
93 code that won't work on a non-MULTI_FRAME configuration. */
91 Lisp_Frame, 94 Lisp_Frame,
95#endif
92 96
93 /* Used when a FILE * value needs to be passed 97 /* Used when a FILE * value needs to be passed
94 in an argument of type Lisp_Object. 98 in an argument of type Lisp_Object.