aboutsummaryrefslogtreecommitdiffstats
path: root/src/ChangeLog
diff options
context:
space:
mode:
authorPaul Eggert2011-06-12 23:53:31 -0700
committerPaul Eggert2011-06-12 23:53:31 -0700
commit578c21e6cbfcd42d2b765ff93a5340555ef91d9d (patch)
treed1c0cec0f04e444105fc6e5580b82777ff5d7635 /src/ChangeLog
parent96f53c6c3d6d31bc81187b5a5fdb3ec942cd6f51 (diff)
downloademacs-578c21e6cbfcd42d2b765ff93a5340555ef91d9d.tar.gz
emacs-578c21e6cbfcd42d2b765ff93a5340555ef91d9d.zip
Remove unnecessary casts.
* xterm.c (x_term_init): * xfns.c (x_set_border_pixel): * widget.c (create_frame_gcs): Remove casts to unsigned long etc. These aren't needed now that we assume ANSI C.
Diffstat (limited to 'src/ChangeLog')
-rw-r--r--src/ChangeLog6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 686c728f0a3..ff6945d8656 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,5 +1,11 @@
12011-06-13 Paul Eggert <eggert@cs.ucla.edu> 12011-06-13 Paul Eggert <eggert@cs.ucla.edu>
2 2
3 Remove unnecessary casts.
4 * xterm.c (x_term_init):
5 * xfns.c (x_set_border_pixel):
6 * widget.c (create_frame_gcs): Remove casts to unsigned long etc.
7 These aren't needed now that we assume ANSI C.
8
3 * sound.c (Fplay_sound_internal): Remove cast to unsigned long. 9 * sound.c (Fplay_sound_internal): Remove cast to unsigned long.
4 It's more likely to cause problems (due to unsigned overflow) 10 It's more likely to cause problems (due to unsigned overflow)
5 than to cure them. 11 than to cure them.