diff options
| author | Karl Heuer | 1994-10-06 21:47:34 +0000 |
|---|---|---|
| committer | Karl Heuer | 1994-10-06 21:47:34 +0000 |
| commit | 512367102ea61190c85bc36a7ec20cd72521fd50 (patch) | |
| tree | f7c87211442559711b80125b89cc57ef87b0cb21 | |
| parent | 9852abf34db46fb00f3df1a28d8285d6853ebc36 (diff) | |
| download | emacs-512367102ea61190c85bc36a7ec20cd72521fd50.tar.gz emacs-512367102ea61190c85bc36a7ec20cd72521fd50.zip | |
(Lisp_Internal_Stream, XSETINTERNALSTREAM, INTERNALSTREAMP): Deleted.
| -rw-r--r-- | src/lisp.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/lisp.h b/src/lisp.h index c6ceddc57a3..f5e6e95362f 100644 --- a/src/lisp.h +++ b/src/lisp.h | |||
| @@ -97,12 +97,6 @@ enum Lisp_Type | |||
| 97 | Lisp_Frame, | 97 | Lisp_Frame, |
| 98 | #endif | 98 | #endif |
| 99 | 99 | ||
| 100 | /* Used when a FILE * value needs to be passed | ||
| 101 | in an argument of type Lisp_Object. | ||
| 102 | You must do *(FILE **) XPNTR(obj) to get the value. | ||
| 103 | The user will never see this data type. */ | ||
| 104 | Lisp_Internal_Stream, | ||
| 105 | |||
| 106 | /* Used in a symbol value cell when the symbol's value is per-buffer. | 100 | /* Used in a symbol value cell when the symbol's value is per-buffer. |
| 107 | The actual contents are a cons cell which starts a list like this: | 101 | The actual contents are a cons cell which starts a list like this: |
| 108 | (REALVALUE BUFFER CURRENT-ALIST-ELEMENT . DEFAULT-VALUE). | 102 | (REALVALUE BUFFER CURRENT-ALIST-ELEMENT . DEFAULT-VALUE). |
| @@ -454,7 +448,6 @@ extern int pure_size; | |||
| 454 | #define XSETBOOLFWD(a, b) XSET (a, Lisp_Boolfwd, b) | 448 | #define XSETBOOLFWD(a, b) XSET (a, Lisp_Boolfwd, b) |
| 455 | #define XSETBUFFER_OBJFWD(a, b) XSET (a, Lisp_Buffer_Objfwd, b) | 449 | #define XSETBUFFER_OBJFWD(a, b) XSET (a, Lisp_Buffer_Objfwd, b) |
| 456 | #define XSETWINDOW_CONFIGURATION(a, b) XSET (a, Lisp_Window_Configuration, b) | 450 | #define XSETWINDOW_CONFIGURATION(a, b) XSET (a, Lisp_Window_Configuration, b) |
| 457 | #define XSETINTERNAL_STREAM(a, b) XSET (a, Lisp_Internal_Stream, b) | ||
| 458 | #define XSETINTFWD(a, b) XSET (a, Lisp_Intfwd, b) | 451 | #define XSETINTFWD(a, b) XSET (a, Lisp_Intfwd, b) |
| 459 | 452 | ||
| 460 | #ifdef USE_TEXT_PROPERTIES | 453 | #ifdef USE_TEXT_PROPERTIES |
| @@ -724,7 +717,6 @@ typedef unsigned char UCHAR; | |||
| 724 | #define BOOLFWDP(x) (XTYPE ((x)) == Lisp_Boolfwd) | 717 | #define BOOLFWDP(x) (XTYPE ((x)) == Lisp_Boolfwd) |
| 725 | #define INTFWDP(x) (XTYPE ((x)) == Lisp_Intfwd) | 718 | #define INTFWDP(x) (XTYPE ((x)) == Lisp_Intfwd) |
| 726 | #define OBJFWDP(x) (XTYPE ((x)) == Lisp_Objfwd) | 719 | #define OBJFWDP(x) (XTYPE ((x)) == Lisp_Objfwd) |
| 727 | #define INTERNAL_STREAMP(x) (XTYPE ((x)) == Lisp_Internal_Stream) | ||
| 728 | #define BUFFER_LOCAL_VALUEP(x) (XTYPE ((x)) == Lisp_Buffer_Local_Value) | 720 | #define BUFFER_LOCAL_VALUEP(x) (XTYPE ((x)) == Lisp_Buffer_Local_Value) |
| 729 | #define SOME_BUFFER_LOCAL_VALUEP(x) (XTYPE ((x)) == Lisp_Some_Buffer_Local_Value) | 721 | #define SOME_BUFFER_LOCAL_VALUEP(x) (XTYPE ((x)) == Lisp_Some_Buffer_Local_Value) |
| 730 | #define BUFFER_OBJFWDP(x) (XTYPE ((x)) == Lisp_Buffer_Objfwd) | 722 | #define BUFFER_OBJFWDP(x) (XTYPE ((x)) == Lisp_Buffer_Objfwd) |