aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-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.