# HG changeset patch # User Karl Heuer # Date 781480054 0 # Node ID 100b1d83e06f223cd03e5d7b02ab99d178f081bc # Parent 36dea2dad76c7f2190f9a869749d52c71669b946 (Lisp_Internal_Stream, XSETINTERNALSTREAM, INTERNALSTREAMP): Deleted. diff -r 36dea2dad76c -r 100b1d83e06f src/lisp.h --- a/src/lisp.h Thu Oct 06 21:47:12 1994 +0000 +++ b/src/lisp.h Thu Oct 06 21:47:34 1994 +0000 @@ -97,12 +97,6 @@ Lisp_Frame, #endif - /* Used when a FILE * value needs to be passed - in an argument of type Lisp_Object. - You must do *(FILE **) XPNTR(obj) to get the value. - The user will never see this data type. */ - Lisp_Internal_Stream, - /* Used in a symbol value cell when the symbol's value is per-buffer. The actual contents are a cons cell which starts a list like this: (REALVALUE BUFFER CURRENT-ALIST-ELEMENT . DEFAULT-VALUE). @@ -454,7 +448,6 @@ #define XSETBOOLFWD(a, b) XSET (a, Lisp_Boolfwd, b) #define XSETBUFFER_OBJFWD(a, b) XSET (a, Lisp_Buffer_Objfwd, b) #define XSETWINDOW_CONFIGURATION(a, b) XSET (a, Lisp_Window_Configuration, b) -#define XSETINTERNAL_STREAM(a, b) XSET (a, Lisp_Internal_Stream, b) #define XSETINTFWD(a, b) XSET (a, Lisp_Intfwd, b) #ifdef USE_TEXT_PROPERTIES @@ -724,7 +717,6 @@ #define BOOLFWDP(x) (XTYPE ((x)) == Lisp_Boolfwd) #define INTFWDP(x) (XTYPE ((x)) == Lisp_Intfwd) #define OBJFWDP(x) (XTYPE ((x)) == Lisp_Objfwd) -#define INTERNAL_STREAMP(x) (XTYPE ((x)) == Lisp_Internal_Stream) #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)