diff options
| author | Paul Eggert | 2011-07-14 14:46:32 -0700 |
|---|---|---|
| committer | Paul Eggert | 2011-07-14 14:46:32 -0700 |
| commit | 3f86c085fa6eb34547ac04cf2be31f6cc3681e48 (patch) | |
| tree | 6ad0e6f802501c736c1c6c7018fe065668137383 /src/ChangeLog | |
| parent | 1fd800e53d98ac4ea8ed560db81bd36545788b56 (diff) | |
| parent | ad6042bb6f905a38c1c5b7a77981894355496e5c (diff) | |
| download | emacs-3f86c085fa6eb34547ac04cf2be31f6cc3681e48.tar.gz emacs-3f86c085fa6eb34547ac04cf2be31f6cc3681e48.zip | |
Merge from trunk.
Diffstat (limited to 'src/ChangeLog')
| -rw-r--r-- | src/ChangeLog | 12 |
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 | ||
| 183 | 2011-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 | |||
| 183 | 2011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org> | 195 | 2011-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 |