aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKarl Heuer1994-10-06 23:09:17 +0000
committerKarl Heuer1994-10-06 23:09:17 +0000
commit5c798141c57b3729323e8f1e7818948f2e6b23c7 (patch)
treec359f629a0665481c6eae10ebad580be019622f6 /src
parent1bfcade3827a787a59247c12f8f50f1462e6f66d (diff)
downloademacs-5c798141c57b3729323e8f1e7818948f2e6b23c7.tar.gz
emacs-5c798141c57b3729323e8f1e7818948f2e6b23c7.zip
(Lisp_Void, VOIDP): Deleted.
Diffstat (limited to 'src')
-rw-r--r--src/lisp.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/lisp.h b/src/lisp.h
index f5e6e95362f..be0acf743fc 100644
--- a/src/lisp.h
+++ b/src/lisp.h
@@ -141,10 +141,6 @@ enum Lisp_Type
141 in the current buffer. Value is byte index of slot within buffer */ 141 in the current buffer. Value is byte index of slot within buffer */
142 Lisp_Buffer_Objfwd, 142 Lisp_Buffer_Objfwd,
143 143
144 /* In symbol value cell, means var is unbound.
145 In symbol function cell, means function name is undefined. */
146 Lisp_Void,
147
148 /* Window used for Emacs display. 144 /* Window used for Emacs display.
149 Data inside looks like a Lisp_Vector. */ 145 Data inside looks like a Lisp_Vector. */
150 Lisp_Window, 146 Lisp_Window,
@@ -720,7 +716,6 @@ typedef unsigned char UCHAR;
720#define BUFFER_LOCAL_VALUEP(x) (XTYPE ((x)) == Lisp_Buffer_Local_Value) 716#define BUFFER_LOCAL_VALUEP(x) (XTYPE ((x)) == Lisp_Buffer_Local_Value)
721#define SOME_BUFFER_LOCAL_VALUEP(x) (XTYPE ((x)) == Lisp_Some_Buffer_Local_Value) 717#define SOME_BUFFER_LOCAL_VALUEP(x) (XTYPE ((x)) == Lisp_Some_Buffer_Local_Value)
722#define BUFFER_OBJFWDP(x) (XTYPE ((x)) == Lisp_Buffer_Objfwd) 718#define BUFFER_OBJFWDP(x) (XTYPE ((x)) == Lisp_Buffer_Objfwd)
723#define VOIDP(x) (XTYPE ((x)) == Lisp_Void)
724 719
725#define EQ(x, y) (XFASTINT (x) == XFASTINT (y)) 720#define EQ(x, y) (XFASTINT (x) == XFASTINT (y))
726#define GC_EQ(x, y) (XGCTYPE (x) == XGCTYPE (y) && XPNTR (x) == XPNTR (y)) 721#define GC_EQ(x, y) (XGCTYPE (x) == XGCTYPE (y) && XPNTR (x) == XPNTR (y))