diff options
| author | Stefan Monnier | 2003-06-27 21:54:38 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2003-06-27 21:54:38 +0000 |
| commit | 3ef06d12cd6e9d8a0d74397a8e3f73d9609f5eeb (patch) | |
| tree | 7cfb2b9db649d5aa35ab7df0cb7c8bb438905f86 /src/ChangeLog | |
| parent | 356d2ee4664f65562125a2414d8149ce7fb01321 (diff) | |
| download | emacs-3ef06d12cd6e9d8a0d74397a8e3f73d9609f5eeb.tar.gz emacs-3ef06d12cd6e9d8a0d74397a8e3f73d9609f5eeb.zip | |
(VECTOR_MARK, VECTOR_UNMARK, VECTOR_MARKED_P): New macros.
(GC_STRING_BYTES): Don't mask markbit (it's only used on `size').
(allocate_buffer): Move.
(string_bytes): Don't mask markbit of `size_byte'.
(mark_maybe_object, mark_maybe_pointer, Fgarbage_collect)
(mark_object, mark_buffer, survives_gc_p, gc_sweep):
Use the `size' field of buffers (rather than the `name' field) for
the mark bit, as is done for all other vectorlike objects.
Use the new macros to access the mark bit of vectorlike objects.
Diffstat (limited to 'src/ChangeLog')
| -rw-r--r-- | src/ChangeLog | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 33dbe6c8a2f..84facf45775 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,15 @@ | |||
| 1 | 2003-06-27 Stefan Monnier <monnier@cs.yale.edu> | ||
| 2 | |||
| 3 | * alloc.c (VECTOR_MARK, VECTOR_UNMARK, VECTOR_MARKED_P): New macros. | ||
| 4 | (GC_STRING_BYTES): Don't mask markbit (it's only used on `size'). | ||
| 5 | (allocate_buffer): Move. | ||
| 6 | (string_bytes): Don't mask markbit of `size_byte'. | ||
| 7 | (mark_maybe_object, mark_maybe_pointer, Fgarbage_collect) | ||
| 8 | (mark_object, mark_buffer, survives_gc_p, gc_sweep): | ||
| 9 | Use the `size' field of buffers (rather than the `name' field) for | ||
| 10 | the mark bit, as is done for all other vectorlike objects. | ||
| 11 | Use the new macros to access the mark bit of vectorlike objects. | ||
| 12 | |||
| 1 | 2003-06-26 Richard M. Stallman <rms@gnu.org> | 13 | 2003-06-26 Richard M. Stallman <rms@gnu.org> |
| 2 | 14 | ||
| 3 | * puresize.h (BASE_PURESIZE): Increment base size. | 15 | * puresize.h (BASE_PURESIZE): Increment base size. |