1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-02-05 23:21:22 -08:00

* lisp.h [not MULTI_FRAME]: Don't declare the Lisp_Frame tag.

This commit is contained in:
Jim Blandy 1992-11-07 07:35:20 +00:00
parent 8e4dfd5403
commit f1b76ec09b

View file

@ -86,9 +86,13 @@ enum Lisp_Type
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.