aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 4310a82ca2b..22a4d4fdf0d 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,5 +1,19 @@
12004-06-22 Kim F. Storm <storm@cua.dk> 12004-06-22 Kim F. Storm <storm@cua.dk>
2 2
3 * lisp.h (struct Lisp_Save_Value): New member dogc.
4 (SAFE_ALLOCA_LISP): Change second arg to number of elements.
5 Set dogc member in Lisp_Save_Value object so it will be GC'ed.
6 (SAFE_FREE_LISP): New macro.
7
8 * alloc.c (safe_alloca_unwind): Clear dogc and pointer members.
9 (make_save_value): Init new dogc member.
10 (mark_object): Mark Lisp_Save_Value pointer array if dogc is set.
11
12 * fns.c (Fmapconcat, Fmapcar): Use new SAFE_ALLOCA_LISP and
13 SAFE_FREE_LISP macros.
14
152004-06-22 Kim F. Storm <storm@cua.dk>
16
3 * lisp.h (SAFE_ALLOCA_LISP): New macro to allocate Lisp_Objects. 17 * lisp.h (SAFE_ALLOCA_LISP): New macro to allocate Lisp_Objects.
4 Temporarily inhibits GC if memory is xmalloc'ed, as the Lisp_Objects 18 Temporarily inhibits GC if memory is xmalloc'ed, as the Lisp_Objects
5 in that memory area are unknown to GC. Add comments. 19 in that memory area are unknown to GC. Add comments.