diff options
| author | Paul Eggert | 2013-08-15 09:28:42 -0700 |
|---|---|---|
| committer | Paul Eggert | 2013-08-15 09:28:42 -0700 |
| commit | 691a357f3afffc2f40a6f04dea072933dcdf8bc0 (patch) | |
| tree | 84789637fcc308c77de5516e0fd75ea9d2eb71ba /src/ChangeLog | |
| parent | f196836bc040fc9f36484c4d036a8a71870cdbf7 (diff) | |
| download | emacs-691a357f3afffc2f40a6f04dea072933dcdf8bc0.tar.gz emacs-691a357f3afffc2f40a6f04dea072933dcdf8bc0.zip | |
Fix minor problems found by static checking.
* frame.c (delete_frame):
* xdisp.c (next_element_from_display_vector):
Avoid uninitialized local.
* image.c (imagemagick_compute_animated_image): Port to C89.
Prefer usual GNU indentation style for loops.
Be more careful about bizarrely large sizes, by using ptrdiff_t
instead of int.
Diffstat (limited to 'src/ChangeLog')
| -rw-r--r-- | src/ChangeLog | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index b17dec01e2c..46591eb1952 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,14 @@ | |||
| 1 | 2013-08-15 Paul Eggert <eggert@cs.ucla.edu> | ||
| 2 | |||
| 3 | Fix minor problems found by static checking. | ||
| 4 | * frame.c (delete_frame): | ||
| 5 | * xdisp.c (next_element_from_display_vector): | ||
| 6 | Avoid uninitialized local. | ||
| 7 | * image.c (imagemagick_compute_animated_image): Port to C89. | ||
| 8 | Prefer usual GNU indentation style for loops. | ||
| 9 | Be more careful about bizarrely large sizes, by using ptrdiff_t | ||
| 10 | instead of int. | ||
| 11 | |||
| 1 | 2013-08-15 Dmitry Antipov <dmantipov@yandex.ru> | 12 | 2013-08-15 Dmitry Antipov <dmantipov@yandex.ru> |
| 2 | 13 | ||
| 3 | Fix infinite frame selection loop (Bug#15025). | 14 | Fix infinite frame selection loop (Bug#15025). |