aboutsummaryrefslogtreecommitdiffstats
path: root/src
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
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')
-rw-r--r--src/ChangeLog31
-rw-r--r--src/lisp.h9
2 files changed, 31 insertions, 9 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index a17b16c4e2d..26b9cd339d5 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,34 @@
12000-08-17 Dave Love <fx@gnu.org>
2
3 * lisp.h: Remove DECLARE_INTERVALS, INITIALIZE_INTERVAL. Don't
4 declare make_temp_name twice.
5
6 * lread.c: Prototype readevalloop, load_unwind,
7 load_descriptor_unwind.
8 (unreadpure): Give it an arg.
9
10 * unexalpha.c: Prototype fatal_unexec, mark_x,
11 update_dynamic_symbols. Declare unexec as void.
12
13 * cm.c [HAVE_TERMCAP_H]: Include <termcap.h>.
14 [!HAVE_TERMCAP_H]: Prototype tputs, tgoto.
15
16 * alloc.c (lisp_malloc): Declare with POINTER_TYPE.
17 [SYSTEM_MALLOC]: Make decls in malloc.h conditional on
18 DOUG_LEA_MALLOC.
19
20 * alloca.c: Use #error.
21 [POINTER_TYPE]: Use it.
22
23 * eval.c (Fdefvar): Doc fix.
24
25 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer): Avoid
26 INITIALIZE_INTERVAL.
27
28 * buffer.h: Avoid DECLARE_INTERVALS.
29
30 * config.in: Add size_t.
31
12000-08-17 Eli Zaretskii <eliz@is.elta.co.il> 322000-08-17 Eli Zaretskii <eliz@is.elta.co.il>
2 33
3 * w16select.c (set_clipboard_data): If there's not enough memory 34 * w16select.c (set_clipboard_data): If there's not enough memory
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