aboutsummaryrefslogtreecommitdiffstats
path: root/src/lisp.h
diff options
context:
space:
mode:
authorDave Love2000-08-17 14:17:37 +0000
committerDave Love2000-08-17 14:17:37 +0000
commit03c9ed7793211df41b54804ea28797f3ca6d2932 (patch)
treeddf7dc1991f95cbaa482f0333ecb6bad7df788d7 /src/lisp.h
parent232ccf275feae9a686ded89b64bea6b89116a5bd (diff)
downloademacs-03c9ed7793211df41b54804ea28797f3ca6d2932.tar.gz
emacs-03c9ed7793211df41b54804ea28797f3ca6d2932.zip
Remove DECLARE_INTERVALS, INITIALIZE_INTERVAL. Don't
declare make_temp_name twice.
Diffstat (limited to 'src/lisp.h')
-rw-r--r--src/lisp.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/lisp.h b/src/lisp.h
index dd98e4288e9..62ead3e4d36 100644
--- a/src/lisp.h
+++ b/src/lisp.h
@@ -572,15 +572,6 @@ typedef struct interval *INTERVAL;
572#define CHECK_STRING_OR_BUFFER(x, i) \ 572#define CHECK_STRING_OR_BUFFER(x, i) \
573 { if (!STRINGP ((x)) && !BUFFERP ((x))) \ 573 { if (!STRINGP ((x)) && !BUFFERP ((x))) \
574 x = wrong_type_argument (Qbuffer_or_string_p, (x)); } 574 x = wrong_type_argument (Qbuffer_or_string_p, (x)); }
575
576/* Macro used to conditionally compile intervals into certain data
577 structures. See, e.g., struct Lisp_String below. */
578#define DECLARE_INTERVALS INTERVAL intervals;
579
580/* Macro used to conditionally compile interval initialization into
581 certain code. See, e.g., alloc.c. */
582#define INITIALIZE_INTERVAL(ptr,val) ptr->intervals = val
583
584 575
585/* In a cons, the markbit of the car is the gc mark bit */ 576/* In a cons, the markbit of the car is the gc mark bit */
586 577