Mercurial > emacs
diff src/lisp.h @ 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 | eda3ace74d74 |
| children | a03b87a92614 |
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.
