changeset 30918:0bc07afc3c0d

Remove DECLARE_INTERVALS, INITIALIZE_INTERVAL. Don't declare make_temp_name twice.
author Dave Love <fx@gnu.org>
date Thu, 17 Aug 2000 14:15:15 +0000
parents 469d242e5f72
children 27d71c4b6de1
files src/lisp.h
diffstat 1 files changed, 0 insertions(+), 9 deletions(-) [+]
line wrap: on
line diff
--- 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 */