diff options
| author | Jim Blandy | 1992-11-07 07:35:20 +0000 |
|---|---|---|
| committer | Jim Blandy | 1992-11-07 07:35:20 +0000 |
| commit | f1b76ec09b463f0208be7c19fa6365d2fe02a9f0 (patch) | |
| tree | 7000e7ddb581cc2bfcb95edffd6c6a0906816f16 | |
| parent | 8e4dfd54039beee8118648b00be9a5c128cd23e1 (diff) | |
| download | emacs-f1b76ec09b463f0208be7c19fa6365d2fe02a9f0.tar.gz emacs-f1b76ec09b463f0208be7c19fa6365d2fe02a9f0.zip | |
* lisp.h [not MULTI_FRAME]: Don't declare the Lisp_Frame tag.
| -rw-r--r-- | src/lisp.h | 6 |
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. |