diff options
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 b697ee43376..d2c069b7351 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,15 @@ | |||
| 1 | 2011-10-07 Paul Eggert <eggert@cs.ucla.edu> | ||
| 2 | |||
| 3 | * alloc.c (GC_LISP_OBJECT_ALIGNMENT): Use offsetof, not __alignof__ | ||
| 4 | or sizeof. __alignof__ gives the wrong answer on Fedora x86-64 | ||
| 5 | with GCC 4.6.1 when configured with CC='gcc -m32' --with-wide-int; | ||
| 6 | this makes Emacs dump core during garbage collection on rare | ||
| 7 | occasions. sizeof is obviously inferior to offsetof here, so | ||
| 8 | stick with offsetof. | ||
| 9 | (GC_POINTER_ALIGNMENT): New macro. | ||
| 10 | (mark_memory): Omit 3rd (offset) arg; caller changed. | ||
| 11 | Don't assume EMACS_INT alignment is the same as pointer alignment. | ||
| 12 | |||
| 1 | 2011-10-03 Stefan Monnier <monnier@iro.umontreal.ca> | 13 | 2011-10-03 Stefan Monnier <monnier@iro.umontreal.ca> |
| 2 | 14 | ||
| 3 | * keyboard.c (read_key_sequence_remapped): New var. | 15 | * keyboard.c (read_key_sequence_remapped): New var. |