diff options
| author | Paul Eggert | 2011-09-25 22:50:37 -0700 |
|---|---|---|
| committer | Paul Eggert | 2011-09-25 22:50:37 -0700 |
| commit | 856bbc8152110a354293411eac5c629da9f4f74f (patch) | |
| tree | 6d41b20dbcf11043c2976a9b331d26775bce116c /src/ChangeLog | |
| parent | 60b5d3ca2bf381f450da02e3936f7b43b7ca2dab (diff) | |
| download | emacs-856bbc8152110a354293411eac5c629da9f4f74f.tar.gz emacs-856bbc8152110a354293411eac5c629da9f4f74f.zip | |
* eval.c (Fprog1, Fprog2): Don't assume list length fits in int. Simplify.
Diffstat (limited to 'src/ChangeLog')
| -rw-r--r-- | src/ChangeLog | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index ff76a9a8c78..9a2590eb54e 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | 2011-09-25 Paul Eggert <eggert@cs.ucla.edu> | 1 | 2011-09-26 Paul Eggert <eggert@cs.ucla.edu> |
| 2 | 2 | ||
| 3 | * alloc.c (pure_bytes_used_lisp, pure_bytes_used_non_lisp): | 3 | * alloc.c (pure_bytes_used_lisp, pure_bytes_used_non_lisp): |
| 4 | (allocate_vectorlike, buffer_memory_full, struct sdata, SDATA_SIZE) | 4 | (allocate_vectorlike, buffer_memory_full, struct sdata, SDATA_SIZE) |
| @@ -269,6 +269,7 @@ | |||
| 269 | Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts. | 269 | Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts. |
| 270 | (Fapply, apply_lambda): Don't assume ptrdiff_t can hold fixnum. | 270 | (Fapply, apply_lambda): Don't assume ptrdiff_t can hold fixnum. |
| 271 | (grow_specpdl): Simplify allocation by using xpalloc. | 271 | (grow_specpdl): Simplify allocation by using xpalloc. |
| 272 | (Fprog1, Fprog2): Don't assume list length fits in int. Simplify. | ||
| 272 | * fileio.c (Ffind_file_name_handler, Fcopy_file, Frename_file) | 273 | * fileio.c (Ffind_file_name_handler, Fcopy_file, Frename_file) |
| 273 | (Finsert_file_contents, Fwrite_region, Fdo_auto_save): | 274 | (Finsert_file_contents, Fwrite_region, Fdo_auto_save): |
| 274 | Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts. | 275 | Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts. |