]> code.delx.au - gnu-emacs/commitdiff
Merge from mainline.
authorPaul Eggert <eggert@cs.ucla.edu>
Tue, 5 Apr 2011 06:45:27 +0000 (23:45 -0700)
committerPaul Eggert <eggert@cs.ucla.edu>
Tue, 5 Apr 2011 06:45:27 +0000 (23:45 -0700)
1  2 
src/ChangeLog
src/eval.c
src/keyboard.c

diff --cc src/ChangeLog
index 24161dbda1efb323880f88ede6846df795139397,d12969fe46aa7a1b1014c902ba25b4db1a10d9d0..c7d14843bcd17bb0926dc8dfb6e19a35061fe1e6
- 2011-04-04  Paul Eggert  <eggert@cs.ucla.edu>
 +2011-04-05  Paul Eggert  <eggert@cs.ucla.edu>
 +
++      Fix more problems found by GCC 4.6.0's static checks.
++
 +      * coding.c (EMIT_ONE_BYTE, EMIT_TWO_BYTES): Use unsigned, not int.
 +      This avoids several warnings with gcc -Wstrict-overflow.
 +      (DECODE_COMPOSITION_RULE): If the rule is invalid, goto invalid_code
 +      directly, rather than having caller test rule sign.  This avoids
 +      some unnecessary tests.
 +      * composite.h (COMPOSITION_ENCODE_RULE_VALID): New macro.
 +      (COMPOSITION_ENCODE_RULE): Arguments now must be valid.  This
 +      affects only one use, in DECODE_COMPOSITION_RULE, which is changed.
 +
 +      * xfont.c (xfont_text_extents): Remove var that was set but not used.
 +      (xfont_open): Avoid unnecessary tests.
 +
 +      * composite.c (composition_gstring_put_cache): Use unsigned integer.
 +
- 2011-04-03  Paul Eggert  <eggert@cs.ucla.edu>
 +      * composite.h, composite.c (composition_gstring_put_cache):
 +      Use EMACS_INT, not int, for length.
 +
 +      * composite.h (COMPOSITION_DECODE_REFS): New macro,
 +      breaking out part of COMPOSITION_DECODE_RULE.
 +      (COMPOSITION_DECODE_RULE): Use it.
 +      * composite.c (get_composition_id): Remove unused local vars,
 +      by using the new macro.
 +
 +      * textprop.c (set_text_properties_1): Change while to do-while,
 +      since the condition is always true at first.
 +
 +      * intervals.c (graft_intervals_into_buffer): Mark var as used.
 +      (interval_deletion_adjustment): Return unsigned value.
 +      All uses changed.
 +
 +      * process.c (list_processes_1, create_pty, read_process_output):
 +      (exec_sentinel): Remove vars that were set but not used.
 +      (create_pty): Remove unnecessary "volatile"s.
 +      (Fnetwork_interface_info): Avoid possibility of int overflow.
 +      (read_process_output): Do adaptive read buffering even if carryover.
 +      (read_process_output): Simplify nbytes computation if buffered.
 +
 +      * bytecode.c (exec_byte_code): Rename local to avoid shadowing.
 +
 +      * syntax.c (scan_words): Remove var that was set but not used.
 +      (update_syntax_table): Use unsigned instead of int.
 +
 +      * lread.c (lisp_file_lexically_bound_p): Use ints rather than endptrs.
 +      (lisp_file_lexically_bound_p, read1): Use unsigned instead of int.
 +      (safe_to_load_p): Make the end-of-loop test the inverse of the in-loop.
 +
 +      * print.c (print_error_message): Avoid int overflow.
 +
 +      * font.c (font_list_entities): Redo for clarity,
 +      so that reader need not know FONT_DPI_INDEX + 1 == FONT_SPACING_INDEX.
 +
- 2011-04-02  Paul Eggert  <eggert@cs.ucla.edu>
 +      * font.c (font_find_for_lface, Ffont_get_glyphs): Remove unused vars.
 +      (font_score): Avoid potential overflow in diff calculation.
 +
 +      * fns.c (substring_both): Remove var that is set but not used.
 +      (sxhash): Redo loop for clarity and to avoid wraparound warning.
 +
 +      * eval.c (funcall_lambda): Rename local to avoid shadowing.
 +
 +      * alloc.c (mark_object_loop_halt, mark_object): Use size_t, not int.
 +      Otherwise, GCC 4.6.0 optimizes the loop check away since the check
 +      can always succeed if overflow has undefined behavior.
 +
 +      * search.c (boyer_moore, wordify): Remove vars set but not used.
 +      (wordify): Omit three unnecessary tests.
 +
 +      * indent.c (MULTIBYTE_BYTES_WIDTH): Don't compute wide_column.
 +      All callers changed.  This avoids the need for an unused var.
 +
 +      * casefiddle.c (casify_region): Remove var that is set but not used.
 +
 +      * dired.c (file_name_completion): Remove var that is set but not used.
 +
 +      * fileio.c (Finsert_file_contents): Make EOF condition clearer.
 +
- 2011-04-01  Paul Eggert  <eggert@cs.ucla.edu>
 +      * fileio.c (Finsert_file_contents): Avoid signed integer overflow.
 +      (Finsert_file_contents): Remove unnecessary code checking fd.
 +
 +      * minibuf.c (read_minibuf_noninteractive): Use size_t for sizes.
 +      Check for integer overflow on size calculations.
 +
 +      * buffer.c (Fprevious_overlay_change): Remove var that is set
 +      but not used.
 +
 +      * keyboard.c (menu_bar_items, read_char_minibuf_menu_prompt):
 +      Remove vars that are set but not used.
 +      (timer_check_2): Don't assume timer-list and idle-timer-list are lists.
 +      (timer_check_2): Mark vars as initialized.
 +
 +      * gtkutil.c (xg_get_file_with_chooser): Mark var as initialized.
 +
 +      * image.c (lookup_image): Remove var that is set but not used.
 +      (xbm_load): Use parse_p, for gcc -Werror=unused-but-set-variable.
 +
 +      * fontset.c (Finternal_char_font, Ffontset_info): Remove vars
 +      that are set but not used.
 +
 +      * xfns.c (make_invisible_cursor): Don't return garbage
 +      if XCreateBitmapFromData fails (Bug#8410).
 +
 +      * xselect.c (x_get_local_selection, x_handle_property_notify):
 +      Remove vars that are set but not used.
 +
 +      * xfns.c (x_create_tip_frame): Remove var that is set but not used.
 +      (make_invisible_cursor): Initialize a possibly-uninitialized variable.
 +
 +      * xterm.c (x_scroll_bar_to_input_event) [!USE_GTK]:
 +      Remove var that is set but not used.
 +      (scroll_bar_windows_size): Now size_t, not int.
 +      (x_send_scroll_bar_event): Use size_t, not int, for sizes.
 +      Check for overflow.
 +
 +      * xfaces.c (realize_named_face): Remove vars that are set but not used.
 +      (map_tty_color) [!defined MSDOS]: Likewise.
 +
 +      * term.c (tty_write_glyphs): Use size_t; this avoids overflow warning.
 +
 +      * coding.c: Remove vars that are set but not used.
 +      (DECODE_COMPOSITION_RULE): Remove 2nd arg, which is unused.
 +      All callers changed.
 +      (decode_coding_utf_8, decode_coding_utf_16 decode_coding_emacs_mule):
 +      (decode_coding_iso_2022, encode_coding_sjis, encode_coding_big5):
 +      (decode_coding_charset): Remove vars that are set but not used.
 +
 +      * bytecode.c (Fbyte_code) [!defined BYTE_CODE_SAFE]: Remove var
 +      that is set but not used.
 +
 +      * print.c (print_object): Remove var that is set but not used.
 +
 +      Replace 2 copies of readlink code with 1 gnulib version (Bug#8401).
 +      The gnulib version avoids calling malloc in the usual case,
 +      and on 64-bit hosts doesn't have some arbitrary 32-bit limits.
 +      * fileio.c (Ffile_symlink_p): Use emacs_readlink.
 +      * filelock.c (current_lock_owner): Likewise.
 +      * lisp.h (READLINK_BUFSIZE, emacs_readlink): New function.
 +      * sysdep.c: Include allocator.h, careadlinkat.h.
 +      (emacs_no_realloc_allocator): New static constant.
 +      (emacs_readlink): New function.
 +      * deps.mk (sysdep.o): Depend on ../lib/allocator.h and on
 +      ../lib/careadlinkat.h.
 +
+ 2011-04-04  Stefan Monnier  <monnier@iro.umontreal.ca>
+       * keyboard.c (safe_run_hook_funcall): Fix last change (don't stop at the
+       first non-nil return value).
+ 2011-04-03  Jan Djärv  <jan.h.d@swipnet.se>
+       * nsterm.m (ns_update_auto_hide_menu_bar): Define MAC_OS_X_VERSION_10_6
+       if not defined (Bug#8403).
+ 2011-04-02  Juanma Barranquero  <lekktu@gmail.com>
+       * xdisp.c (display_count_lines): Remove parameter `start',
+       unused since 1998-01-01T02:27:27Z!rms@gnu.org.  All callers changed.
+       (get_char_face_and_encoding): Remove parameter `multibyte_p',
+       unused since 2008-05-14T01:40:23Z!handa@m17n.org.  All callers changed.
+       (fill_stretch_glyph_string): Remove parameters `row' and `area',
+       unused at least since Kim's GUI unification at 2003-03-16T20:45:46Z!storm@cua.dk
+       and thereabouts.  All callers changed.
+       (get_per_char_metric): Remove parameter `f', unused since
+       2008-05-14T01:40:23Z!handa@m17n.org.  All callers changed.
+ 2011-04-02  Jim Meyering  <meyering@redhat.com>
+       do not dereference NULL upon failed strdup
+       * nsfont.m (ns_descriptor_to_entity): Use xstrdup, not strdup.
+       (ns_get_family): Likewise.
+ 2011-04-02  Juanma Barranquero  <lekktu@gmail.com>
+       * eval.c (unwind_to_catch) [DEBUG_GCPRO]: Remove redundant assignment.
+ 2011-04-02  Jan Djärv  <jan.h.d@swipnet.se>
+       * nsterm.m (ns_update_auto_hide_menu_bar): Only for OSX 10.6 or
+       later (Bug#8403).
  2011-04-01  Stefan Monnier  <monnier@iro.umontreal.ca>
  
        Add lexical binding.
diff --cc src/eval.c
Simple merge
diff --cc src/keyboard.c
Simple merge