Mercurial > emacs
changeset 9370:eba41c493729
(Lisp_Void, VOIDP): Deleted.
author | Karl Heuer <kwzh@gnu.org> |
---|---|
date | Thu, 06 Oct 1994 23:09:17 +0000 |
parents | 379c7b900689 |
children | 7cf000a42d38 |
files | src/lisp.h |
diffstat | 1 files changed, 0 insertions(+), 5 deletions(-) [+] |
line wrap: on
line diff
--- a/src/lisp.h Thu Oct 06 23:07:57 1994 +0000 +++ b/src/lisp.h Thu Oct 06 23:09:17 1994 +0000 @@ -141,10 +141,6 @@ in the current buffer. Value is byte index of slot within buffer */ Lisp_Buffer_Objfwd, - /* In symbol value cell, means var is unbound. - In symbol function cell, means function name is undefined. */ - Lisp_Void, - /* Window used for Emacs display. Data inside looks like a Lisp_Vector. */ Lisp_Window, @@ -720,7 +716,6 @@ #define BUFFER_LOCAL_VALUEP(x) (XTYPE ((x)) == Lisp_Buffer_Local_Value) #define SOME_BUFFER_LOCAL_VALUEP(x) (XTYPE ((x)) == Lisp_Some_Buffer_Local_Value) #define BUFFER_OBJFWDP(x) (XTYPE ((x)) == Lisp_Buffer_Objfwd) -#define VOIDP(x) (XTYPE ((x)) == Lisp_Void) #define EQ(x, y) (XFASTINT (x) == XFASTINT (y)) #define GC_EQ(x, y) (XGCTYPE (x) == XGCTYPE (y) && XPNTR (x) == XPNTR (y))