aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKarl Heuer1994-10-06 21:29:23 +0000
committerKarl Heuer1994-10-06 21:29:23 +0000
commitdf1955fcf9ec0f223ccca768670da40fedf0b7b2 (patch)
tree2b8bbd89d237f95dfe0b1b47999f5f1ddff99be3 /src
parent3a841b0be2996c2c095b61a080ba035932b12c49 (diff)
downloademacs-df1955fcf9ec0f223ccca768670da40fedf0b7b2.tar.gz
emacs-df1955fcf9ec0f223ccca768670da40fedf0b7b2.zip
(Lisp_Internal, XSETINTERNAL, INTERNALP): Deleted.
Diffstat (limited to 'src')
-rw-r--r--src/lisp.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/lisp.h b/src/lisp.h
index d747093ddef..c6ceddc57a3 100644
--- a/src/lisp.h
+++ b/src/lisp.h
@@ -65,11 +65,6 @@ enum Lisp_Type
65 as well as pointing to the code. */ 65 as well as pointing to the code. */
66 Lisp_Subr, 66 Lisp_Subr,
67 67
68 /* Internal value return by subroutines of read.
69 The user never sees this data type.
70 Its value is just a number. */
71 Lisp_Internal,
72
73 /* Forwarding pointer to an int variable. 68 /* Forwarding pointer to an int variable.
74 This is allowed only in the value cell of a symbol, 69 This is allowed only in the value cell of a symbol,
75 and it means that the symbol's value really lives in the 70 and it means that the symbol's value really lives in the
@@ -461,7 +456,6 @@ extern int pure_size;
461#define XSETWINDOW_CONFIGURATION(a, b) XSET (a, Lisp_Window_Configuration, b) 456#define XSETWINDOW_CONFIGURATION(a, b) XSET (a, Lisp_Window_Configuration, b)
462#define XSETINTERNAL_STREAM(a, b) XSET (a, Lisp_Internal_Stream, b) 457#define XSETINTERNAL_STREAM(a, b) XSET (a, Lisp_Internal_Stream, b)
463#define XSETINTFWD(a, b) XSET (a, Lisp_Intfwd, b) 458#define XSETINTFWD(a, b) XSET (a, Lisp_Intfwd, b)
464#define XSETINTERNAL(a, b) XSET (a, Lisp_Internal, b)
465 459
466#ifdef USE_TEXT_PROPERTIES 460#ifdef USE_TEXT_PROPERTIES
467/* Basic data type for use of intervals. See the macros in intervals.h */ 461/* Basic data type for use of intervals. See the macros in intervals.h */
@@ -728,7 +722,6 @@ typedef unsigned char UCHAR;
728#endif 722#endif
729#define OVERLAYP(x) (XTYPE ((x)) == Lisp_Overlay) 723#define OVERLAYP(x) (XTYPE ((x)) == Lisp_Overlay)
730#define BOOLFWDP(x) (XTYPE ((x)) == Lisp_Boolfwd) 724#define BOOLFWDP(x) (XTYPE ((x)) == Lisp_Boolfwd)
731#define INTERNALP(x) (XTYPE ((x)) == Lisp_Internal)
732#define INTFWDP(x) (XTYPE ((x)) == Lisp_Intfwd) 725#define INTFWDP(x) (XTYPE ((x)) == Lisp_Intfwd)
733#define OBJFWDP(x) (XTYPE ((x)) == Lisp_Objfwd) 726#define OBJFWDP(x) (XTYPE ((x)) == Lisp_Objfwd)
734#define INTERNAL_STREAMP(x) (XTYPE ((x)) == Lisp_Internal_Stream) 727#define INTERNAL_STREAMP(x) (XTYPE ((x)) == Lisp_Internal_Stream)