changeset 1567:c0c9fc68a006

* lisp.h [not MULTI_FRAME]: Don't declare the Lisp_Frame tag.
author Jim Blandy <jimb@redhat.com>
date Sat, 07 Nov 1992 07:35:20 +0000
parents 892c9f61217a
children f55c75c6806d
files src/lisp.h
diffstat 1 files changed, 5 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/lisp.h	Sat Nov 07 07:34:58 1992 +0000
+++ b/src/lisp.h	Sat Nov 07 07:35:20 1992 +0000
@@ -86,9 +86,13 @@
        XOBJFWD(obj) points to the Lisp_Object variable. */
     Lisp_Objfwd,
 
+#ifdef MULTI_FRAME
     /* Pointer to a vector-like object describing a display frame
-       on which Emacs can display a window hierarchy.  */
+       on which Emacs can display a window hierarchy.  We don't define
+       this unless MULTI_FRAME is defined; this helps the compiler catch
+       code that won't work on a non-MULTI_FRAME configuration.  */
     Lisp_Frame,
+#endif
 
     /* Used when a FILE * value needs to be passed
        in an argument of type Lisp_Object.