summaryrefslogtreecommitdiff
path: root/src/lisp.h
diff options
context:
space:
mode:
authorDave Love <fx@gnu.org>2000-08-17 14:17:37 +0000
committerDave Love <fx@gnu.org>2000-08-17 14:17:37 +0000
commit03c9ed7793211df41b54804ea28797f3ca6d2932 (patch)
treeddf7dc1991f95cbaa482f0333ecb6bad7df788d7 /src/lisp.h
parent232ccf275feae9a686ded89b64bea6b89116a5bd (diff)
downloademacs-03c9ed7793211df41b54804ea28797f3ca6d2932.tar.gz
emacs-03c9ed7793211df41b54804ea28797f3ca6d2932.tar.bz2
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;
#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 */