diff options
Diffstat (limited to 'src/ChangeLog')
| -rw-r--r-- | src/ChangeLog | 68 |
1 files changed, 67 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index e4f3401eb4d..4e69399154d 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | 2011-07-09 Paul Eggert <eggert@cs.ucla.edu> | 1 | 2011-07-11 Paul Eggert <eggert@cs.ucla.edu> |
| 2 | 2 | ||
| 3 | * image.c: Integer signedness and overflow and related fixes. | 3 | * image.c: Integer signedness and overflow and related fixes. |
| 4 | This is not an exhaustive set of fixes, but it's time to | 4 | This is not an exhaustive set of fixes, but it's time to |
| @@ -151,6 +151,72 @@ | |||
| 151 | Use EMACS_INT, not EMACS_UINT, for sizes. The code works equally | 151 | Use EMACS_INT, not EMACS_UINT, for sizes. The code works equally |
| 152 | well either way, and we prefer signed to unsigned. | 152 | well either way, and we prefer signed to unsigned. |
| 153 | 153 | ||
| 154 | 2011-07-10 Johan Bockgård <bojohan@gnu.org> | ||
| 155 | |||
| 156 | * xdisp.c (Ftool_bar_lines_needed): Fix WINDOWP check. | ||
| 157 | |||
| 158 | 2011-07-10 Jan Djärv <jan.h.d@swipnet.se> | ||
| 159 | |||
| 160 | * xmenu.c (menu_highlight_callback): Only pass frame to show_help_event | ||
| 161 | for non-popups (Bug#3642). | ||
| 162 | |||
| 163 | 2011-07-10 Andreas Schwab <schwab@linux-m68k.org> | ||
| 164 | |||
| 165 | * alloc.c (reset_malloc_hooks): Protoize. | ||
| 166 | * buffer.c (mmap_init, mmap_find, mmap_free_1, mmap_enlarge) | ||
| 167 | (mmap_set_vars, mmap_alloc, mmap_free, mmap_realloc): Likewise. | ||
| 168 | * cm.c (losecursor): Likewise. | ||
| 169 | * data.c (fmod): Likewise. | ||
| 170 | * dispnew.c (swap_glyphs_in_rows): Likewise. | ||
| 171 | * emacs.c (memory_warning_signal): Likewise. | ||
| 172 | * floatfns.c (float_error): Likewise. | ||
| 173 | * font.c (check_gstring, check_otf_features, otf_tag_symbol) | ||
| 174 | (otf_open, font_otf_capability, generate_otf_features) | ||
| 175 | (font_otf_DeviceTable, font_otf_ValueRecord, font_otf_Anchor): | ||
| 176 | Likewise. | ||
| 177 | * image.c (pbm_read_file): Likewise. | ||
| 178 | * indent.c (string_display_width): Likewise. | ||
| 179 | * intervals.c (check_for_interval, search_for_interval) | ||
| 180 | (inc_interval_count, count_intervals, root_interval) | ||
| 181 | (adjust_intervals_for_insertion, make_new_interval): Likewise. | ||
| 182 | * lread.c (defalias): Likewise. | ||
| 183 | * ralloc.c (r_alloc_check): Likewise. | ||
| 184 | * regex.c (set_image_of_range_1, set_image_of_range) | ||
| 185 | (regex_grow_registers): Likewise. | ||
| 186 | * sysdep.c (strerror): Likewise. | ||
| 187 | * termcap.c (valid_filename_p, tprint, main): Likewise. | ||
| 188 | * tparam.c (main): Likewise. | ||
| 189 | * unexhp9k800.c (run_time_remap, save_data_space) | ||
| 190 | (update_file_ptrs, read_header, write_header, calculate_checksum) | ||
| 191 | (copy_file, copy_rest, display_header): Likewise. | ||
| 192 | * widget.c (mark_shell_size_user_specified, create_frame_gcs): | ||
| 193 | Likewise. | ||
| 194 | * xdisp.c (check_it): Likewise. | ||
| 195 | * xfaces.c (register_color, unregister_color, unregister_colors): | ||
| 196 | Likewise. | ||
| 197 | * xfns.c (print_fontset_result): Likewise. | ||
| 198 | * xrdb.c (member, fatal, main): Likewise. | ||
| 199 | |||
| 200 | 2011-07-10 Paul Eggert <eggert@cs.ucla.edu> | ||
| 201 | |||
| 202 | Fix minor problems found by static checking (Bug#9031). | ||
| 203 | * chartab.c (char_table_set_range, map_sub_char_table): | ||
| 204 | Remove unused locals. | ||
| 205 | (uniprop_table): Now static. | ||
| 206 | * composite.c (_work_char): Remove unused static var. | ||
| 207 | |||
| 208 | 2011-07-09 Juanma Barranquero <lekktu@gmail.com> | ||
| 209 | |||
| 210 | * chartab.c (uniprop_table_uncompress): Remove unused local variable. | ||
| 211 | |||
| 212 | 2011-07-09 Jan Djärv <jan.h.d@swipnet.se> | ||
| 213 | |||
| 214 | * gtkutil.c (qttip_cb): Remove code without function. | ||
| 215 | |||
| 216 | 2011-07-09 Eli Zaretskii <eliz@gnu.org> | ||
| 217 | |||
| 218 | * w32.c (pthread_sigmask): New stub. | ||
| 219 | |||
| 154 | 2011-07-08 Paul Eggert <eggert@cs.ucla.edu> | 220 | 2011-07-08 Paul Eggert <eggert@cs.ucla.edu> |
| 155 | 221 | ||
| 156 | Use pthread_sigmask, not sigprocmask (Bug#9010). | 222 | Use pthread_sigmask, not sigprocmask (Bug#9010). |