diff options
| author | Kim F. Storm | 2004-06-22 13:56:05 +0000 |
|---|---|---|
| committer | Kim F. Storm | 2004-06-22 13:56:05 +0000 |
| commit | ef54b2d09b43983c17591218be14f5bd8e0850ed (patch) | |
| tree | 4640c093a19b5121b8c273f8a43307a80661658f /src | |
| parent | 66130fed6ef3adcc3f432a7294e33edddb22f03e (diff) | |
| download | emacs-ef54b2d09b43983c17591218be14f5bd8e0850ed.tar.gz emacs-ef54b2d09b43983c17591218be14f5bd8e0850ed.zip | |
*** empty log message ***
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 14 |
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 @@ | |||
| 1 | 2004-06-22 Kim F. Storm <storm@cua.dk> | 1 | 2004-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 | |||
| 15 | 2004-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. |