diff options
| author | Paul Eggert | 2012-08-03 13:55:27 -0700 |
|---|---|---|
| committer | Paul Eggert | 2012-08-03 13:55:27 -0700 |
| commit | 8834c57aab03fb7ea9d92f9e995844ff7ce64b7b (patch) | |
| tree | bfc986a2271505769d2daaaaacdd57891477c624 /src/ChangeLog | |
| parent | ef834897aaf3259cbf1b7286fe237fb39b2cdf6d (diff) | |
| download | emacs-8834c57aab03fb7ea9d92f9e995844ff7ce64b7b.tar.gz emacs-8834c57aab03fb7ea9d92f9e995844ff7ce64b7b.zip | |
Improve fix for macroexp crash with debugging.
* lisp.h (ASET) [ENABLE_CHECKING]: Pay attention to
ARRAY_MARK_FLAG when checking subscripts, because ASET is
not supposed to be invoked from the garbage collector.
See Andreas Schwab in <http://bugs.gnu.org/12118#25>.
(gc_aset): New function, which is like ASET but can be
used in the garbage collector.
(set_hash_key, set_hash_value, set_hash_next, set_hash_hash)
(set_hash_index): Use it instead of ASET.
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 3ba80f69749..4aa0dcb022e 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,15 @@ | |||
| 1 | 2012-08-03 Paul Eggert <eggert@cs.ucla.edu> | ||
| 2 | |||
| 3 | Improve fix for macroexp crash with debugging (Bug#12118). | ||
| 4 | * lisp.h (ASET) [ENABLE_CHECKING]: Pay attention to | ||
| 5 | ARRAY_MARK_FLAG when checking subscripts, because ASET is | ||
| 6 | not supposed to be invoked from the garbage collector. | ||
| 7 | See Andreas Schwab in <http://bugs.gnu.org/12118#25>. | ||
| 8 | (gc_aset): New function, which is like ASET but can be | ||
| 9 | used in the garbage collector. | ||
| 10 | (set_hash_key, set_hash_value, set_hash_next, set_hash_hash) | ||
| 11 | (set_hash_index): Use it instead of ASET. | ||
| 12 | |||
| 1 | 2012-08-03 Eli Zaretskii <eliz@gnu.org> | 13 | 2012-08-03 Eli Zaretskii <eliz@gnu.org> |
| 2 | 14 | ||
| 3 | Support symlinks on latest versions of MS-Windows. | 15 | Support symlinks on latest versions of MS-Windows. |