diff options
| author | Paul Eggert | 2011-10-07 23:21:09 -0700 |
|---|---|---|
| committer | Paul Eggert | 2011-10-07 23:21:09 -0700 |
| commit | 977b0e452dc28e692723c4e2a44b4426b6f85cb9 (patch) | |
| tree | de3397479102daa89b78f74ed4d6ce6dc8d3b1fe | |
| parent | f7dfe84eeacb0316d2ceb8ed5fa59d50c4a7bdc8 (diff) | |
| download | emacs-977b0e452dc28e692723c4e2a44b4426b6f85cb9.tar.gz emacs-977b0e452dc28e692723c4e2a44b4426b6f85cb9.zip | |
Tidy up ChangeLog a bit.
| -rw-r--r-- | src/ChangeLog | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 9ec2abcd004..232475c2af5 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | 2011-10-07 Paul Eggert <eggert@cs.ucla.edu> | 1 | 2011-10-08 Paul Eggert <eggert@cs.ucla.edu> |
| 2 | 2 | ||
| 3 | Integer width fixes. | 3 | Fix integer width and related issues. |
| 4 | * alloc.c (pure_bytes_used_lisp, pure_bytes_used_non_lisp): | 4 | * alloc.c (pure_bytes_used_lisp, pure_bytes_used_non_lisp): |
| 5 | (allocate_vectorlike, buffer_memory_full, struct sdata, SDATA_SIZE) | 5 | (allocate_vectorlike, buffer_memory_full, struct sdata, SDATA_SIZE) |
| 6 | (string_bytes, check_sblock, allocate_string_data): | 6 | (string_bytes, check_sblock, allocate_string_data): |
| @@ -35,8 +35,8 @@ | |||
| 35 | (Foverlay_recenter, last_overlay_modification_hooks_used) | 35 | (Foverlay_recenter, last_overlay_modification_hooks_used) |
| 36 | (report_overlay_modification, evaporate_overlays, enlarge_buffer_text): | 36 | (report_overlay_modification, evaporate_overlays, enlarge_buffer_text): |
| 37 | Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough. | 37 | Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough. |
| 38 | (validate_region): Omit unnecessary test for b <= e, since | 38 | (validate_region): Omit unnecessary test for b <= e, |
| 39 | that's guaranteed by the previous test. | 39 | since that's guaranteed by the previous test. |
| 40 | (adjust_overlays_for_delete): Avoid pos + length overflow. | 40 | (adjust_overlays_for_delete): Avoid pos + length overflow. |
| 41 | (Fmove_overlay, Fdelete_overlay, add_overlay_mod_hooklist) | 41 | (Fmove_overlay, Fdelete_overlay, add_overlay_mod_hooklist) |
| 42 | (report_overlay_modification): | 42 | (report_overlay_modification): |
| @@ -179,7 +179,7 @@ | |||
| 179 | (Funencodable_char_position, Fcheck_coding_systems_region) | 179 | (Funencodable_char_position, Fcheck_coding_systems_region) |
| 180 | (get_translation, handle_composition_annotation, consume_chars): | 180 | (get_translation, handle_composition_annotation, consume_chars): |
| 181 | Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts. | 181 | Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts. |
| 182 | (consume_chars): Rewrite to avoid calculating an address outside buffer. | 182 | (consume_chars): Rewrite to not calculate an address outside buffer. |
| 183 | (Ffind_operation_coding_system): NATNUMP can eval its arg twice. | 183 | (Ffind_operation_coding_system): NATNUMP can eval its arg twice. |
| 184 | Don't access memory outside of the args array. | 184 | Don't access memory outside of the args array. |
| 185 | (Fdefine_coding_system_internal): Check for charset-id overflow. | 185 | (Fdefine_coding_system_internal): Check for charset-id overflow. |