diff options
| author | Eli Zaretskii | 2014-01-29 19:52:16 +0200 |
|---|---|---|
| committer | Eli Zaretskii | 2014-01-29 19:52:16 +0200 |
| commit | 198af6dfe2ff8766ec50338ef88a171bf58a9fb7 (patch) | |
| tree | 6fbfaf1691378aaa3f73e973f1d75eaa6f4883e4 /src/ChangeLog | |
| parent | 908df335d0ccb2779f23c695f355a9939fe07bf2 (diff) | |
| download | emacs-198af6dfe2ff8766ec50338ef88a171bf58a9fb7.tar.gz emacs-198af6dfe2ff8766ec50338ef88a171bf58a9fb7.zip | |
Fix bug #16576 with PRINTCHARFUN that conses output a lot.
src/print.c (print_object): Use FETCH_STRING_CHAR_ADVANCE, not
STRING_CHAR_AND_LENGTH, so that if the string is relocated by GC,
we still use correct addresses.
Diffstat (limited to 'src/ChangeLog')
| -rw-r--r-- | src/ChangeLog | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 04f5f0d6bbe..33ffc40d8c1 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,9 @@ | |||
| 1 | 2014-01-29 Eli Zaretskii <eliz@gnu.org> | ||
| 2 | |||
| 3 | * print.c (print_object): Use FETCH_STRING_CHAR_ADVANCE, not | ||
| 4 | STRING_CHAR_AND_LENGTH, so that if the string is relocated by GC, | ||
| 5 | we still use correct addresses. (Bug#16576) | ||
| 6 | |||
| 1 | 2014-01-27 K. Handa <handa@gnu.org> | 7 | 2014-01-27 K. Handa <handa@gnu.org> |
| 2 | 8 | ||
| 3 | Fix bug#16286 by the different way than revno:116158 to preserve | 9 | Fix bug#16286 by the different way than revno:116158 to preserve |