diff options
| author | Paul Eggert | 2011-10-06 01:06:24 -0700 |
|---|---|---|
| committer | Paul Eggert | 2011-10-06 01:06:24 -0700 |
| commit | c9af454e51a926245a3ee19c04ae5ed058fcd215 (patch) | |
| tree | 4a2418ea383386a197183b1af930c74d9f812e45 /src/ChangeLog | |
| parent | 8d1da888c6f3c6763c7e6e73a5bdd3bf997d0cfc (diff) | |
| download | emacs-c9af454e51a926245a3ee19c04ae5ed058fcd215.tar.gz emacs-c9af454e51a926245a3ee19c04ae5ed058fcd215.zip | |
[ChangeLog]
* configure.in (GC_LISP_OBJECT_ALIGNMENT): Remove.
This is now done by src/alloc.c.
[src/ChangeLog]
* alloc.c: (GC_LISP_OBJECT_ARGUMENT):
Use offsetof, not __alignof__ or sizeof. __alignof__ gives
the wrong answer on the x86 with GCC.
Diffstat (limited to 'src/ChangeLog')
| -rw-r--r-- | src/ChangeLog | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 3432652dbe5..c3e03c211f5 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -14,6 +14,9 @@ | |||
| 14 | Use int, not EMACS_INT, where int is wide enough. | 14 | Use int, not EMACS_INT, where int is wide enough. |
| 15 | (inhibit_garbage_collection, Fgarbage_collect): | 15 | (inhibit_garbage_collection, Fgarbage_collect): |
| 16 | Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts. | 16 | Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts. |
| 17 | (GC_LISP_OBJECT_ARGUMENT): | ||
| 18 | Use offsetof, not __alignof__ or sizeof. __alignof__ gives | ||
| 19 | the wrong answer on the x86 with GCC. | ||
| 17 | * bidi.c (bidi_mirror_char): Use EMACS_INT, not int, where | 20 | * bidi.c (bidi_mirror_char): Use EMACS_INT, not int, where |
| 18 | int might not be wide enough. | 21 | int might not be wide enough. |
| 19 | (bidi_cache_search, bidi_cache_find, bidi_init_it) | 22 | (bidi_cache_search, bidi_cache_find, bidi_init_it) |