aboutsummaryrefslogtreecommitdiffstats
path: root/src/ChangeLog
diff options
context:
space:
mode:
Diffstat (limited to 'src/ChangeLog')
-rw-r--r--src/ChangeLog12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index ce080f6b239..b683a7f55cd 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -180,6 +180,18 @@
180 Use EMACS_INT, not EMACS_UINT, for sizes. The code works equally 180 Use EMACS_INT, not EMACS_UINT, for sizes. The code works equally
181 well either way, and we prefer signed to unsigned. 181 well either way, and we prefer signed to unsigned.
182 182
1832011-07-14 Paul Eggert <eggert@cs.ucla.edu>
184
185 Fix minor problems found by static checking.
186 * bidi.c (bidi_cache_size): Now EMACS_INT, not size_t.
187 (elsz): Now a signed constant, not a size_t var. We prefer signed
188 types to unsigned, to avoid integer comparison confusion. Without
189 this change, GCC 4.6.1 with -Wunsafe-loop-optimizations complains
190 "cannot optimize loop, the loop counter may overflow", a symptom
191 of the confusion.
192 * indent.c (Fvertical_motion): Mark locals as initialized.
193 * xdisp.c (reseat_to_string): Fix pointer signedness issue.
194
1832011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org> 1952011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
184 196
185 * data.c (Fcdr, Fcar): Revert the last change, since it didn't 197 * data.c (Fcdr, Fcar): Revert the last change, since it didn't