# HG changeset patch # User Dave Love # Date 966521715 0 # Node ID 0bc07afc3c0dc2ca5c765bd783a8f598e3d7a90f # Parent 469d242e5f723690fa7c0443c31b7a0c156ab18d Remove DECLARE_INTERVALS, INITIALIZE_INTERVAL. Don't declare make_temp_name twice. diff -r 469d242e5f72 -r 0bc07afc3c0d src/lisp.h --- a/src/lisp.h Thu Aug 17 14:11:00 2000 +0000 +++ b/src/lisp.h Thu Aug 17 14:15:15 2000 +0000 @@ -572,15 +572,6 @@ #define CHECK_STRING_OR_BUFFER(x, i) \ { if (!STRINGP ((x)) && !BUFFERP ((x))) \ x = wrong_type_argument (Qbuffer_or_string_p, (x)); } - -/* Macro used to conditionally compile intervals into certain data - structures. See, e.g., struct Lisp_String below. */ -#define DECLARE_INTERVALS INTERVAL intervals; - -/* Macro used to conditionally compile interval initialization into - certain code. See, e.g., alloc.c. */ -#define INITIALIZE_INTERVAL(ptr,val) ptr->intervals = val - /* In a cons, the markbit of the car is the gc mark bit */