diff options
| author | Paul Eggert | 2013-10-10 23:32:29 -0700 |
|---|---|---|
| committer | Paul Eggert | 2013-10-10 23:32:29 -0700 |
| commit | b9ff995e4c091ca99c8752bb996e155ce7147a00 (patch) | |
| tree | 2606b847e60957359df7942004b774b4c68b119f /src/ChangeLog | |
| parent | 33ac026599404c7d5177eecb4fcd0aa527180ee2 (diff) | |
| download | emacs-b9ff995e4c091ca99c8752bb996e155ce7147a00.tar.gz emacs-b9ff995e4c091ca99c8752bb996e155ce7147a00.zip | |
* lisp.h (eassume): New macro.
Also, include <verify.h>, for 'assume'.
* alloc.c (bool_vector_payload_bytes, Fmake_bool_vector)
(vroundup, vector_nbytes):
* data.c (bool_vector_spare_mask, bool_vector_binop_driver)
(Fbool_vector_not, Fbool_vector_count_matches)
(Fbool_vector_count_matches_at):
Use eassume, not eassert.
* casetab.c (set_identity, shuffle):
* composite.c (composition_gstring_put_cache):
* dispnew.c (update_frame_1):
* ftfont.c (ftfont_shape_by_flt):
* image.c (gif_load):
* intervals.c (offset_intervals):
* macfont.m (macfont_shape):
Remove calls to 'assume' that are no longer needed, because
--enable-gcc-warnings no longer generates bogus warnings
when these calls are removed.
Diffstat (limited to 'src/ChangeLog')
| -rw-r--r-- | src/ChangeLog | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index bfa9f2fae7d..df44bca7b1c 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,24 @@ | |||
| 1 | 2013-10-11 Paul Eggert <eggert@cs.ucla.edu> | ||
| 2 | |||
| 3 | * lisp.h (eassume): New macro. | ||
| 4 | Also, include <verify.h>, for 'assume'. | ||
| 5 | * alloc.c (bool_vector_payload_bytes, Fmake_bool_vector) | ||
| 6 | (vroundup, vector_nbytes): | ||
| 7 | * data.c (bool_vector_spare_mask, bool_vector_binop_driver) | ||
| 8 | (Fbool_vector_not, Fbool_vector_count_matches) | ||
| 9 | (Fbool_vector_count_matches_at): | ||
| 10 | Use eassume, not eassert. | ||
| 11 | * casetab.c (set_identity, shuffle): | ||
| 12 | * composite.c (composition_gstring_put_cache): | ||
| 13 | * dispnew.c (update_frame_1): | ||
| 14 | * ftfont.c (ftfont_shape_by_flt): | ||
| 15 | * image.c (gif_load): | ||
| 16 | * intervals.c (offset_intervals): | ||
| 17 | * macfont.m (macfont_shape): | ||
| 18 | Remove calls to 'assume' that are no longer needed, because | ||
| 19 | --enable-gcc-warnings no longer generates bogus warnings | ||
| 20 | when these calls are removed. | ||
| 21 | |||
| 1 | 2013-10-11 Dmitry Antipov <dmantipov@yandex.ru> | 22 | 2013-10-11 Dmitry Antipov <dmantipov@yandex.ru> |
| 2 | 23 | ||
| 3 | * xdisp.c (deep_copy_glyph_row): Remove unused locals. | 24 | * xdisp.c (deep_copy_glyph_row): Remove unused locals. |