Use ASCII tests for character types.
[emacs.git] / src / ChangeLog
blob874088bb782b1d057c4651f1329ceba9c0b0c0cf
1 2012-08-16  Paul Eggert  <eggert@cs.ucla.edu>
3         Use ASCII tests for character types.
4         * category.c, dispnew.c, doprnt.c, editfns.c, syntax.c, term.c:
5         * xfns.c, xterm.c:
6         Don't include <ctype.h>; was not needed.
7         * charset.c, doc.c, fileio.c, font.c, frame.c, gtkutil.c, image.c:
8         * sysdep.c, xfaces.c:
9         Include <c-ctype.h> instead of <ctype.h>.
10         * nsterm.m: Include <c-ctype.h>.
11         * charset.c (read_hex):
12         * doc.c (Fsnarf_documentation):
13         * fileio.c (IS_DRIVE) [WINDOWSNT]:
14         (DRIVE_LETTER) [DOS_NT]:
15         (Ffile_name_directory, Fexpand_file_name)
16         (Fsubstitute_in_file_name):
17         * font.c (font_parse_xlfd, font_parse_fcname):
18         * frame.c (x_set_font_backend):
19         * gtkutil.c (xg_get_font):
20         * image.c (xbm_scan, xpm_scan, pbm_scan_number):
21         * nsimage.m (hexchar):
22         * nsterm.m (ns_xlfd_to_fontname):
23         * sysdep.c (system_process_attributes):
24         * xfaces.c (hash_string_case_insensitive):
25         Use C-locale tests instead of locale-specific tests for character
26         types, since we want the ASCII interpretation here, not the
27         interpretation suitable for whatever happens to be the current locale.
29 2012-08-16  Martin Rudalics  <rudalics@gmx.at>
31         Consistently check windows for validity/liveness
32         (Bug#11984, Bug#12025, Bug#12026).
33         * lisp.h (CHECK_VALID_WINDOW): New macro.
34         * window.c (decode_window): Rename to decode_live_window.
35         (decode_valid_window, Fwindow_valid_p): New functions.
36         (Fwindow_frame, Fframe_root_window, Fwindow_minibuffer_p)
37         (Fframe_first_window, Fframe_selected_window, Fwindow_parent)
38         (Fwindow_top_child, Fwindow_left_child, Fwindow_next_sibling)
39         (Fwindow_prev_sibling, Fwindow_combination_limit)
40         (Fset_window_combination_limit, Fwindow_use_time)
41         (Fwindow_total_height, Fwindow_total_width, Fwindow_new_total)
42         (Fwindow_normal_size, Fwindow_new_normal, Fwindow_left_column)
43         (Fwindow_top_line, Fwindow_body_height, Fwindow_body_width)
44         (Fwindow_hscroll, Fset_window_hscroll)
45         (Fwindow_redisplay_end_trigger)
46         (Fset_window_redisplay_end_trigger, Fwindow_edges)
47         (Fwindow_pixel_edges, Fwindow_absolute_pixel_edges)
48         (Fwindow_inside_edges, Fwindow_inside_pixel_edges)
49         (Fcoordinates_in_window_p, Fwindow_point, Fwindow_start)
50         (Fwindow_end, Fset_window_point, Fset_window_start)
51         (Fpos_visible_in_window_p, Fwindow_line_height)
52         (Fwindow_dedicated_p, Fset_window_dedicated_p)
53         (Fwindow_prev_buffers, Fset_window_prev_buffers)
54         (Fwindow_next_buffers, Fwindow_parameters, Fwindow_parameter)
55         (Fset_window_parameter, Fwindow_display_table)
56         (Fset_window_display_table, Fdelete_other_windows_internal)
57         (Fset_window_buffer, Fset_window_new_total)
58         (Fset_window_new_normal, Fdelete_window_internal)
59         (Fwindow_text_height, Fset_window_margins, Fwindow_margins)
60         (Fset_window_fringes, Fwindow_fringes, Fset_window_scroll_bars)
61         (Fwindow_scroll_bars): Check whether argument window is a valid or
62         live window.  Update doc-strings.
63         (syms_of_window): New symbol Qwindow_valid_p.
64         * keyboard.c (Fposn_at_x_y): Check whether argument
65         frame_or_window denotes a valid window.
67 2012-08-16  Dmitry Antipov  <dmantipov@yandex.ru>
69         Fix previous char table change.
70         * lisp.h (CHAR_TABLE_SET): Use sub_char_table_set_contents.
71         * chartab.c (optimize_sub_char_table): Likewise.
73 2012-08-16  Chong Yidong  <cyd@gnu.org>
75         * gtkutil.c (xg_get_font): Demand an Xft font (Bug#3228).
77         * xfont.c (xfont_open):
78         * xftfont.c (xftfont_open): Set the font's max_width field.
80         * nsfont.m (nsfont_open): Similar to the Xft backend, set
81         min_width to space_width and average_width to the average over
82         printable ASCII characters.
83         (ns_char_width): Code cleanup.
84         (ns_ascii_average_width): New utility function.
86         * font.h (struct font): Update comments.
88 2012-08-16  Dmitry Antipov  <dmantipov@yandex.ru>
90         Simple interface to set Lisp_Object fields of character tables.
91         * lisp.h (CSET): New macro.
92         (char_table_set_extras, char_table_set_contents)
93         (sub_char_table_set_contents): New function.
94         * casetab.c, category.c, chartab.c, fns.c, fontset.c, search.c:
95         * syntax.c: Adjust users.
97 2012-08-16  Stefan Monnier  <monnier@iro.umontreal.ca>
99         * eval.c (eval_sub): Bind lexical-binding.
100         * lread.c (Qlexical_binding): Make non-static.
102 2012-08-15  Jan Djärv  <jan.h.d@swipnet.se>
104         * nsmenu.m (popupSession): Remove.
105         (pop_down_menu): Remove endModalSession.
106         (timeout_handler:): New method.
107         (runDialogAt:): Get next timeout.  Start a NSTimer with that timeout.
108         Call runModalForWindow.  Check timer_fired when it returns.
109         If not set, cancel timer and break out of loop.
110         Otherwise loop again, with a new timeout.
112         * nsterm.m: Include fcntl.h if present.
113         (fd_entry, t_readfds, inNsSelect): Remove.
114         (select_writefds, select_valid, select_timeout, selfds)
115         (select_mutex, apploopnr): Add.
116         (EV_TRAILER): Call kbd_buffer_store_event_hold only if q_event_ptr.
117         Otherwise call kbd_buffer_store_event.
118         (ns_send_appdefined): Remove release of fd_entry.
119         (ns_read_socket): Always send appdefined.  Remove inNsSelect check.
120         Increment and decrement apploopnr.
121         (ns_select): If no file descriptors, just do a NSTimer.
122         Otherwise copy read/write masks and start select thread (fd_handler).
123         Start main loop and wait for application defined event.
124         Inform select thread to stop selecting after main loop is exited.
125         (ns_term_init): Create selfds pipe and set non-blocking.
126         Initialize select_mutex. Start the select thread (fd_handler).
127         (fd_handler:): Loop forever, wait for info from the main thread
128         to either start or stop selecting.  When select returns, send
129         and appdefined event.
130         (sendScrollEventAtLoc:fromEvent:): Check if q_event_ptr is set.
131         If not call kbd_buffer_store_event.
133         * nsterm.h (EmacsApp): fd_handler takes id argument.
134         (EmacsDialogPanel): Add timer_fired and timeout_handler.
136         * gtkutil.c (xg_mark_data): Use FRAME_X_P.
138 2012-08-15  Eli Zaretskii  <eliz@gnu.org>
140         * region-cache.c (move_cache_gap): Update gap_len using the actual
141         growth of the boundaries array.  Do not change cache_len.
142         (Bug#12196)
144 2012-08-15  Dmitry Antipov  <dmantipov@yandex.ru>
146         Generalize and cleanup font subsystem checks.
147         * font.h (FONT_DEBUG, font_assert): Remove.
148         * font.c, fontset.c, w32font.c, xfont.c, xftfont.c:
149         Change font_assert to eassert.  Use eassert where appropriate.
151 2012-08-15  Dmitry Antipov  <dmantipov@yandex.ru>
153         * gtkutil.c (xg_get_font): Use pango_units_to_double.
155 2012-08-15  Chong Yidong  <cyd@gnu.org>
157         * gtkutil.c (xg_get_font): Rename from xg_get_font_name.
158         When using the new font chooser, use gtk_font_chooser_get_font_desc to
159         extract the font descriptor instead of just the font name.
160         In that case, return a font spec instead of a string.
161         (x_last_font_name): Move to this file from xfns.c.
163         * xfns.c (Fx_select_font): The return value can also be a font
164         spec.  Move x_last_font_name management to gtkutil.c.
166         * xfaces.c: Make font weight and style symbols non-static.
168 2012-08-15  Stefan Monnier  <monnier@iro.umontreal.ca>
170         * minibuf.c (read_minibuf): Ignore caller's inhibit-read-only
171         (bug#12117).
173 2012-08-14  Stefan Monnier  <monnier@iro.umontreal.ca>
175         * alloc.c (Fgarbage_collect): Use plural form consistently.
177 2012-08-14  Eli Zaretskii  <eliz@gnu.org>
179         * keyboard.c (command_loop_1): Reset ignore_mouse_drag_p flag each
180         iteration through the command loop.  Fixes a problem whereby mouse
181         movements are ignored until the first mouse click.
183 2012-08-14  Paul Eggert  <eggert@cs.ucla.edu>
185         Use bool, not int, for Lisp booleans.
186         This is more natural, and on my platform (GCC 4.7.1 x86-64) it
187         makes Emacs a bit smaller and presumably a bit faster.
188         * lisp.h: Include <stdbool.h>.
189         (struct Lisp_Boolfwd, defvar_bool):
190         * lread.c (defvar_bool): Use bool, not int, for Lisp booleans.
191         * regex.c [!emacs]: Include <stdbool.h>.
192         (false, true): Remove; <stdbool.h> does this for us now.
194 2012-08-14  Chong Yidong  <cyd@gnu.org>
196         * character.c (Fcharacterp): Doc fix (Bug#12076).
198         * data.c (Findirect_variable): Doc fix (Bug#11040).
200         * chartab.c (Fmap_char_table): Doc fix (Bug#12061).
202         * editfns.c (Fformat): Doc fix (Bug#12059).
203         (Fsave_current_buffer): Doc fix (Bug#11542).
205 2012-08-14  Barry OReilly  <gundaetiapo@gmail.com>  (tiny change)
207         * keyboard.c (access_keymap_keyremap): Accept anonymous functions
208         (bug#12022).
210 2012-08-14  Martin Rudalics  <rudalics@gmx.at>
212         * frame.c (make_frame_without_minibuffer, make_minibuffer_frame)
213         (delete_frame, Fmake_frame_invisible, Ficonify_frame):
214         * minibuf.c (choose_minibuf_frame, read_minibuf):
215         * w32fns.c (x_create_tip_frame):
216         * xfns.c (x_create_tip_frame): Call set_window_buffer instead of
217         Fset_window_buffer (Bug#11984, Bug#12025, Bug#12026).
219 2012-08-14  Paul Eggert  <eggert@cs.ucla.edu>
221         * intervals.c (offset_intervals): Remove obsolete comment.
223 2012-08-14  Andreas Schwab  <schwab@linux-m68k.org>
225         * gtkutil.c (find_rtl_image, update_frame_tool_bar): Use NILP.
227 2012-08-14  Gergely Risko  <gergely@risko.hu>
229         * coding.c (decode_coding): Record buffer modification before
230         disabling undo_list (Bug#11773).
232 2012-08-14  Dmitry Antipov  <dmantipov@yandex.ru>
234         Revert and cleanup some recent overlay changes.
235         * buffer.h (enum overlay_type): Remove.
236         (buffer_get_overlays, buffer_set_overlays): Likewise.
237         (buffer_set_overlays_before, buffer_set_overlays_after):
238         New function.  Adjust users.
239         (unchain_both): Add eassert.
241 2012-08-14  Dmitry Antipov  <dmantipov@yandex.ru>
243         * gtkutil.c (update_frame_tool_bar): Use EQ where appropriate.
245 2012-08-14  Paul Eggert  <eggert@cs.ucla.edu>
247         * gtkutil.c (xg_mark_data): Don't assume C99.
249 2012-08-13  Jan Djärv  <jan.h.d@swipnet.se>
251         * gtkutil.c (xg_frame_tb_info): New struct.
252         (TB_INFO_KEY): New define.
253         (xg_free_frame_widgets): Free xg_frame_tb_info for frame if present.
254         (xg_mark_data): Mark Lisp_Objects in xg_frame_tb_info.
255         (xg_create_tool_bar): Allocate and initialize a xg_frame_tb_info
256         if not present.
257         (update_frame_tool_bar): Return early if data in xg_frame_tb_info
258         is up to date. Otherwise store new data.
259         (free_frame_tool_bar): Free xg_frame_tb_info if present.
261 2012-08-13  Dmitry Antipov  <dmantipov@yandex.ru>
263         Use KSET for write access to Lisp_Object members of struct kboard.
264         * keyboard.h (KSET): New macro.
265         * callint.c, category.c, frame.c, keyboard.c, keyboard.h, macros.c:
266         * msdos.c, nsfns.m, nsterm.m, term.c, w32fns.c, w32term.c, xfns.c:
267         * xterm.c: Adjust users.
269 2012-08-13  Dmitry Antipov  <dmantipov@yandex.ru>
271         Use BSET for write access to Lisp_Object members of struct buffer.
272         * buffer.h (BSET): New macro.
273         * buffer.c, casetab.c, cmds.c, coding.c, data.c, editfns.c:
274         * fileio.c, frame.c, indent.c, insdel.c, intervals.c, keymap.c:
275         * minibuf.c, print.c, process.c, syntax.c, undo.c, w32fns.c:
276         * window.c, xdisp.c, xfns.c: Adjust users.
278 2012-08-11  BT Templeton  <bpt@hcoop.net>  (tiny change)
280         * lread.c (syms_of_lread): Initialize Vlexical_binding.
282 2012-08-11  Jan Djärv  <jan.h.d@swipnet.se>
284         * nsterm.m (not_in_argv): New function.
285         (application:openFile,  application:openTempFile:):
286         (application:openFileWithoutUI:, application:openFiles:): Open file
287         if not_in_argv returns non-zero (bug#12171).
289         * gtkutil.c (gtk_font_chooser_dialog_new, GTK_FONT_CHOOSER)
290         (gtk_font_chooser_set_font, gtk_font_chooser_get_font):
291         Define for Gtk+ versions less than 3.2.
292         (xg_get_font_name): Use those functions/macros here.
293         Reported by Frans Oilinki <moilinki@gmail.com>.
295 2012-08-11  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
297         * unexmacosx.c (copy_data_segment): Copy initialized data in
298         statically linked libraries from input file rather than memory.
300         * unexmacosx.c (print_load_command_name): Add cases LC_MAIN,
301         LC_SOURCE_VERSION, and LC_DYLIB_CODE_SIGN_DRS.
302         (dump_it) [LC_DYLIB_CODE_SIGN_DRS]: Call copy_linkedit_data.
304 2012-08-10  Glenn Morris  <rgm@gnu.org>
306         * conf_post.h (IF_LINT, lint_assume): Move here from lisp.h.
307         * lisp.h (IF_LINT, lint_assume): Move to conf_post.h.
309 2012-08-10  Dmitry Antipov  <dmantipov@yandex.ru>
311         Fix last change to allow compilation with low optimization levels.
312         * intervals.c (INTERVALS_INLINE): Define to EXTERN_INLINE.
313         Reported by Jan Djärv <jan.h.d@swipnet.se>.
315 2012-08-10  Dmitry Antipov  <dmantipov@yandex.ru>
317         Use common inline syntax in intervals.h.
318         * intervals.h (INTERVALS_INLINE): New macro.
319         Change all users from LISP_INLINE.
321 2012-08-10  Dmitry Antipov  <dmantipov@yandex.ru>
323         Define Qnone once for all platforms.
324         * frame.c (Qnone): Define here.
325         (syms_of_frame): DEFSYM it.
326         * lisp.h (Qnone): New declaration.
327         * nsfns.m, nsterm.h, nsterm.m, w32fns.c, w32font.c:
328         * xfns.c: Remove duplication.  Adjust users.
330 2012-08-10  Dmitry Antipov  <dmantipov@yandex.ru>
332         Remove unused macros from intervals.h.
333         * intervals.h (MERGE_INSERTIONS, DISPLAY_INVISIBLE_GLYPH): Remove.
334         * intervals.c: Adjust comment.
336 2012-08-10  Eli Zaretskii  <eliz@gnu.org>
338         * w32fns.c <w32_unicode_gui>: New static variable.
339         (globals_of_w32fns): Initialize it according to os_subtype.
340         (w32_init_class, w32_msg_pump, w32_wnd_proc): Use it instead of
341         testing os_subtype.
343 2012-08-10  Joakim Hårsman  <joakim.harsman@gmail.com>  (tiny change)
344             Eli Zaretskii  <eliz@gnu.org>
346         Fix bug #10299 with Unicode characters sent by customized
347         keyboards created by MSKLC.
348         * w32fns.c (INIT_WINDOW_CLASS): New macro.
349         (w32_init_class): Use it to initialize the Emacs class with either
350         ANSI or Unicode API calls.
351         (w32_msg_pump): Call GetMessageW and DispatchMessageW on NT and
352         later.
353         (w32_wnd_proc): If the character code sent by WM_CHAR or
354         WM_SYSCHAR is above 255, post a WM_UNICHAR message, not the
355         original message.  Call DefWindowProcW on NT and later.
357 2012-08-10  Glenn Morris  <rgm@gnu.org>
359         * Makefile.in (config_h): Fix conf_post.h out-of-tree build location.
361         * lisp.h (DIRECTORY_SEP): Let configure set it.
363 2012-08-09  Dmitry Antipov  <dmantipov@yandex.ru>
365         Use TSET for write access to Lisp_Object slots of struct terminal.
366         * termhooks.h (TSET): New macro.
367         * coding.c, terminal.c, xselect.c: Adjust users.
369 2012-08-08  Stefan Monnier  <monnier@iro.umontreal.ca>
371         * xdisp.c (safe_eval_handler): Remove prototype.  Receive args describing
372         the failing expression, include them in the error message.
373         * eval.c (internal_condition_case_n): Pass nargs and args to hfun.
374         * lisp.h (internal_condition_case_n): Update declaration.
376 2012-08-08  Dmitry Antipov  <dmantipov@yandex.ru>
378         Inline functions to examine and change buffer overlays.
379         * buffer.c (unchain_both): New function.
380         * buffer.h (buffer_get_overlays, buffer_set_overlays):
381         (buffer_has_overlays): New function.
382         (enum overlay_type): New enum.
383         * alloc.c, buffer.c, editfns.c, fileio.c, indent.c:
384         * insdel.c, intervals.c, print.c, xdisp.c: Adjust users.
386 2012-08-08  Dmitry Antipov  <dmantipov@yandex.ru>
388         Inline functions to examine and change buffer intervals.
389         * alloc.c (mark_interval_tree): Remove.
390         (MARK_INTERVAL_TREE): Simplify.
391         (UNMARK_BALANCE_INTERVALS): Remove.  Adjust users.
392         * intervals.c (buffer_balance_intervals): New function.
393         (graft_intervals_into_buffer): Adjust indentation.
394         (set_intervals_multibyte): Simplify.
395         * buffer.h (BUF_INTERVALS): Remove.
396         (buffer_get_intervals, buffer_set_intervals): New function.
397         * alloc.c, buffer.c, editfns.c, fileio.c, indent.c, insdel.c:
398         * intervals.c, textprop.c: Adjust users.
400 2012-08-08  Dmitry Antipov  <dmantipov@yandex.ru>
402         Inline functions to examine and change string intervals.
403         * lisp.h (STRING_INTERVALS, STRING_SET_INTERVALS): Remove.
404         (string_get_intervals, string_set_intervals): New function.
405         * alloc.c, buffer.c, editfns.c, fns.c, insdel.c, intervals.c:
406         * lread.c, print.c, textprop.c: Adjust users.
408 2012-08-08  Glenn Morris  <rgm@gnu.org>
410         * lisp.mk (lisp): Remove language/persian.elc.
412 2012-08-08  Dmitry Antipov  <dmantipov@yandex.ru>
414         Cleanup intervals.
415         * intervals.h (NULL_INTERVAL, DEFAULT_INTERVAL): Remove.
416         (NULL_INTERVAL_P): Likewise.  Adjust users.
417         (FRONT_STICKY_P, END_NONSTICKY_P, FRONT_NONSTICKY_P):
418         Adjust comment.  Move under #if 0.
419         * alloc.c, buffer.c, editfns.c, fns.c, insdel.c, intervals.c:
420         * print.c, syntax.c, textprop.c, xdisp.c: Adjust users.
422 2012-08-08  Dmitry Antipov  <dmantipov@yandex.ru>
424         Check total length of intervals with eassert.
425         * intervals.h (CHECK_TOTAL_LENGTH): Remove.
426         * intervals.c: Change all users to eassert.
428 2012-08-07  Eli Zaretskii  <eliz@gnu.org>
430         * .gdbinit (xframe, xwindow, nextcons, xcar, xcdr, xlist):
431         Rename fields to match removal of FGET and WGET and disuse of
432         INTERNAL_FIELD in Lisp_Cons.
434 2012-08-07  Dmitry Antipov  <dmantipov@yandex.ru>
436         Revert and cleanup Lisp_Cons, Lisp_Misc and Lisp_Symbol things.
437         * lisp.h (struct Lisp_Symbol): Change xname to meaningful
438         name since all xname users are fixed long time ago.  Do not
439         use INTERNAL_FIELD.
440         (set_symbol_name, set_symbol_function, set_symbol_plist):
441         (set_symbol_next, set_overlay_plist): New function.
442         (struct Lisp_Cons): Do not use INTERNAL_FIELD.
443         (struct Lisp_Overlay): Likewise.
444         (CVAR, MVAR, SVAR): Remove.
445         * alloc.c, buffer.c, buffer.h, bytecode.c, cmds.c, data.c:
446         * doc.c, eval.c, fns.c, keyboard.c, lread.c, nsselect.m:
447         * xterm.c: Adjust users.
448         * .gdbinit: Change to use name field of struct Lisp_Symbol
449         where appropriate.
451 2012-08-07  Dmitry Antipov  <dmantipov@yandex.ru>
453         Basic functions to set Lisp_Object and pointer slots of intervals.
454         * intervals.h (interval_set_parent, interval_set_object):
455         (interval_set_left, interval_set_right, interval_set_plist):
456         (interval_copy_parent): New function.
457         (SET_INTERVAL_OBJECT, SET_INTERVAL_PARENT, INTERVAL_PTR_SIZE): Remove.
458         (RESET_INTERVAL, COPY_INTERVAL_CACHE, MERGE_INTERVAL_CACHE):
459         Adjust indentation.
460         (INTERVAL_SIZE): Remove.  Adjust users.
461         * alloc.c, intervals.c, lread.c, textprop.c: Use new functions.
463 2012-08-07  Dmitry Antipov  <dmantipov@yandex.ru>
465         Drop PGET and revert read access to Lisp_Objects slots of Lisp_Process.
466         * process.h (PGET): Remove.
467         (struct Lisp_Process): Do not use INTERNAL_FIELD.
468         * gnutls.c, print.c, process.c, sysdep.c, w32.c, xdisp.c: Adjust users.
470 2012-08-07  Dmitry Antipov  <dmantipov@yandex.ru>
472         Drop WGET and revert read access to Lisp_Objects slots of struct window.
473         * window.h (WGET): Remove.
474         (struct window): Do not use INTERNAL_FIELD.
475         * alloc.c, buffer.c, composite.c, dispextern.h, dispnew.c, editfns.c:
476         * fileio.c, font.c, fontset.c, frame.c, frame.h, fringe.c, indent.c:
477         * insdel.c, keyboard.c, keymap.c, lisp.h, minibuf.c, msdos.c, nsfns.m:
478         * nsmenu.m, nsterm.m, print.c, textprop.c, w32fns.c, w32menu.c:
479         * w32term.c, window.c, xdisp.c, xfaces.c, xfns.c, xmenu.c, xterm.c:
480         Adjust users.
482 2012-08-07  Chong Yidong  <cyd@gnu.org>
484         * window.c (Fwindow_edges, Fwindow_pixel_edges)
485         (Fwindow_absolute_pixel_edges, Fdelete_other_windows_internal)
486         (Fdelete_window_internal): Signal an error if the window is not on
487         a live frame (Bug#12025).
489 2012-08-07  Dmitry Antipov  <dmantipov@yandex.ru>
491         Drop FGET and revert read access to Lisp_Objects slots of struct frame.
492         * frame.h (FGET): Remove.
493         (struct frame): Do not use INTERNAL_FIELD.
494         * buffer.c, data.c, dispnew.c, dosfns.c, eval.c, fontset.c, frame.c:
495         * fringe.c, gtkutil.c, minibuf.c, msdos.c, nsfns.m, nsmenu.m, nsterm.m:
496         * print.c, term.c, w32fns.c, w32menu.c, w32term.c, window.c, window.h:
497         * xdisp.c, xfaces.c, xfns.c, xmenu.c, xterm.c: Adjust users.
499 2012-08-06  Juanma Barranquero  <lekktu@gmail.com>
501         * w32.c: Silence compiler warnings.
502         (map_w32_filename): Remove unused variable `is_fat'.
503         (chase_symlinks): Add parentheses around expression.
505 2012-08-06  Glenn Morris  <rgm@gnu.org>
507         * sysdep.c: Respect BROKEN_GETWD.
509         * dispnew.c (GNU_LIBRARY_PENDING_OUTPUT_COUNT, PENDING_OUTPUT_COUNT):
510         Let configure handle it.
511         (stdio_ext.h) [DISPNEW_NEEDS_STDIO_EXT]: Include it.
513 2012-08-06  Dmitry Antipov  <dmantipov@yandex.ru>
515         Use GCALIGNMENT where appropriate.
516         * alloc.c (XMALLOC_HEADER_ALIGNMENT, roundup_size):
517         (union aligned_Lisp_Symbol, union aligned_Lisp_Misc):
518         (mark_maybe_pointer, pure_alloc): Change to use GCALIGNMENT.
520 2012-08-06  Eli Zaretskii  <eliz@gnu.org>
522         * w32menu.c (set_frame_menubar, initialize_frame_menubar):
523         Don't use FRAME_MENU_BAR_ITEMS as an lvalue.
525 2012-08-06  Stefan Monnier  <monnier@iro.umontreal.ca>
527         * buffer.h (struct buffer): Revert `indirections' to a simple int;
528         that should be sufficient for everyone.
530 2012-08-06  Jan Djärv  <jan.h.d@swipnet.se>
532         * keyboard.c (timer_check_2): Add break so timer_check returns next
533         timeout.
535 2012-08-06  Dmitry Antipov  <dmantipov@yandex.ru>
537         Fix Windows build errors introduced after converting to WGET and WSET.
538         * w32term.c (w32_set_vertical_scroll_bar): Change to use WSET.
539         Reported by Andy Moreton <andrewjmoreton@gmail.com>.
541 2012-08-06  Jan Djärv  <jan.h.d@swipnet.se>
543         * nsterm.m (ns_frame_rehighlight): Use FSET.
545         * nsmenu.m (ns_update_menubar): Use FSET.
547 2012-08-06  Dmitry Antipov  <dmantipov@yandex.ru>
549         Separate read and write access to Lisp_Object slots of Lisp_Process.
550         * process.h (PGET, PSET): New macros similar to AREF and ASET.
551         * gnutls.c, print.c, process.c, sysdep.c, w32.c, xdisp.c: Adjust users.
553 2012-08-06  Dmitry Antipov  <dmantipov@yandex.ru>
555         Separate read and write access to Lisp_Object slots of struct window.
556         * window.h (WGET, WSET): New macros similar to AREF and ASET.
557         * alloc.c, buffer.c, composite.c, dispextern.h, dispnew.c, editfns.c:
558         * fileio.c, font.c, fontset.c, frame.c, frame.h, fringe.c, indent.c:
559         * insdel.c, keyboard.c, keymap.c, lisp.h, minibuf.c, msdos.c, nsfns.m:
560         * nsmenu.m, nsterm.m, print.c, textprop.c, w32fns.c, w32menu.c:
561         * w32term.c, window.c, xdisp.c, xfaces.c, xfns.c, xmenu.c, xterm.c:
562         Adjust users.
564 2012-08-06  Dmitry Antipov  <dmantipov@yandex.ru>
566         Fix Windows build errors introduced after converting to FGET and FSET.
567         * w32term.c (x_frame_rehighlight, x_scroll_bar_create):
568         (w32_condemn_scroll_bars, w32_redeem_scroll_bar):
569         (w32_judge_scroll_bars): Change to use FSET.
570         Reported by Andy Moreton <andrewjmoreton@gmail.com>.
572 2012-08-06  Dmitry Antipov  <dmantipov@yandex.ru>
574         Fix replacement typo.
575         * window.c (replace_window): Set root_window instead of
576         selected_window.  This fixes a total window subsystem
577         malfunction reported by Bastien Guerry <bzg@gnu.org>.
579 2012-08-06  Glenn Morris  <rgm@gnu.org>
581         * lisp.mk (lisp): Add language/persian.elc.
583 2012-08-06  Dmitry Antipov  <dmantipov@yandex.ru>
585         Separate read and write access to Lisp_Object slots of struct frame.
586         * frame.h (FGET, FSET): New macros similar to AREF and ASET.
587         * buffer.c, data.c, dispnew.c, dosfns.c, eval.c, fontset.c, frame.c:
588         * fringe.c, gtkutil.c, minibuf.c, msdos.c, nsfns.m, nsmenu.m, nsterm.m:
589         * print.c, term.c, w32fns.c, w32menu.c, w32term.c, window.c, window.h:
590         * xdisp.c, xfaces.c, xfns.c, xmenu.c, xterm.c: Adjust users.
592 2012-08-05  Andreas Schwab  <schwab@linux-m68k.org>
594         * emacs.c (decode_env_path): Only use defaulted if WINDOWSNT.
596 2012-08-05  Dmitry Antipov  <dmantipov@yandex.ru>
598         Generalize common compile-time constants.
599         * lisp.h (header_size, bool_header_size, word_size): Now here.
600         (struct Lisp_Vector): Add comment.
601         (struct Lisp_Bool_Vector): Move up to define handy constants.
602         (VECSIZE, PSEUDOVECSIZE): Simplify.
603         (SAFE_ALLOCA_LISP): Use new constant.  Adjust indentation.
604         * buffer.c, buffer.h, bytecode.c, callint.c, eval.c, fns.c:
605         * font.c, fontset.c, keyboard.c, keymap.c, macros.c, menu.c:
606         * msdos.c, w32menu.c, w32term.h, window.c, xdisp.c, xfaces.c:
607         * xfont.c, xmenu.c: Use word_size where appropriate.
609 2012-08-05  Lawrence Mitchell  <wence@gmx.li>
611         * search.c (Freplace_match): Treat \? in the replacement text
612         literally (Bug#8161).
614 2012-08-05  Chong Yidong  <cyd@gnu.org>
616         * term.c (Vsuspend_tty_functions, Vresume_tty_functions):
617         * frame.c (Vdelete_frame_functions):
618         * emacs.c (Vkill_emacs_hook): Doc fix.
620 2012-08-04  Eli Zaretskii  <eliz@gnu.org>
622         * xfns.c (x_set_menu_bar_lines): Fix compilation error in
623         --with-x-toolkit=no builds.
624         Reported by Carsten Mattner <carstenmattner@gmail.com>.
626 2012-08-04  Chong Yidong  <cyd@gnu.org>
628         * syntax.c (Fmodify_syntax_entry): Doc fix.
630 2012-08-04  Eli Zaretskii  <eliz@gnu.org>
632         Fix startup warnings about ../site-lisp on MS-Windows.  (Bug#11959)
633         * w32.c (init_environment): Change the default values of many
634         environment variables in dflt_envvars[] to NULL, to avoid pushing
635         them into environment when they were not already defined.
636         Remove the code that deletes site-lisp subdirectories from the default
637         value of EMACSLOADPATH, as it is no longer needed.
638         (check_windows_init_file): Now external, not static.
639         Use Vload_path as is, without adding anything, as this function is now
640         called when Vload_path is already set up.
642         * w32.h (check_windows_init_file): Add prototype.
644         * emacs.c (init_cmdargs) [WINDOWSNT]: When running from the build
645         directory, ignore the /*/i386/ tail in Vinvocation_directory, for
646         compatibility with Posix platforms.
647         (main): Move the call to check_windows_init_file to here from
648         w32.c.
649         (decode_env_path) [WINDOWSNT]: Expand the %emacs_dir%/ prefix, if
650         any, in the DEFALT argument into the root of the Emacs build or
651         installation tree, as appropriate.
653         * callproc.c (init_callproc_1): Call decode_env_path instead of
654         doing its equivalent by hand.
655         (init_callproc): Replace DOS_NT condition with MSDOS, thus letting
656         the code that sets Vexec_path run on MS-Windows.
658         * lread.c (init_lread): Add comments to #ifdef's.
660         * msdos.c (dos_set_window_size, IT_update_begin)
661         (IT_frame_up_to_date, IT_set_frame_parameters): Use FVAR and WVAR
662         instead of direct references.
664 2012-08-04  Paul Eggert  <eggert@cs.ucla.edu>
666         Export DEFAULT_REHASH_* to GDB.
667         * lisp.h (DEFAULT_REHASH_THRESHOLD, DEFAULT_REHASH_SIZE):
668         Now constants, not macros.
670 2012-08-03  Paul Eggert  <eggert@cs.ucla.edu>
672         Remove unnecessary casts involving pointers.
673         These casts are no longer needed now that we assume C89 or later,
674         since they involve casting to or from void *.
675         * alloc.c (make_pure_string, make_pure_c_string, pure_cons)
676         (make_pure_float, make_pure_vector):
677         * lisp.h (SAFE_ALLOCA, SAFE_ALLOCA_LISP):
678         * macros.c (Fstart_kbd_macro):
679         * menu.c (find_and_return_menu_selection):
680         * minibuf.c (read_minibuf_noninteractive):
681         * sysdep.c (closedir):
682         * xdisp.c (x_produce_glyphs):
683         * xfaces.c (compare_fonts_by_sort_order):
684         * xfns.c (x_real_positions, select_visual):
685         * xselect.c (x_stop_queuing_selection_requests)
686         (x_get_window_property, x_get_window_property_as_lisp_data):
687         * xterm.c (x_set_frame_alpha, x_find_modifier_meanings):
688         Remove unnecessary pointer casts.
689         * alloc.c (record_xmalloc): New function.
690         * lisp.h (record_xmalloc): New decl.
691         (SAFE_ALLOCA): Now takes just one arg -- the size -- and acts
692         more like a function.  This is because the pointer cast is not
693         needed.  All uses changed.
694         * print.c (print_string, print_error_message): Avoid length recalc.
696         Improve fix for macroexp crash with debugging (Bug#12118).
697         * lisp.h (ASET) [ENABLE_CHECKING]: Pay attention to
698         ARRAY_MARK_FLAG when checking subscripts, because ASET is
699         not supposed to be invoked from the garbage collector.
700         See Andreas Schwab in <http://bugs.gnu.org/12118#25>.
701         (gc_aset): New function, which is like ASET but can be
702         used in the garbage collector.
703         (set_hash_key, set_hash_value, set_hash_next, set_hash_hash)
704         (set_hash_index): Use it instead of ASET.
706 2012-08-03  Eli Zaretskii  <eliz@gnu.org>
708         Support symlinks on latest versions of MS-Windows.
709         * w32.c: Include winioctl.h and aclapi.h.
710         (is_symlink, chase_symlinks, enable_privilege, restore_privilege)
711         (revert_to_self): Forward declarations of static functions.
712         <static BOOL g_b_init_get_security_info>:
713         <g_b_init_create_symbolic_link>: New static flags.
714         (globals_of_w32): Initialize them to zero.
715         (GetSecurityInfo_Proc, CreateSymbolicLink_Proc): New typedefs.
716         (map_w32_filename): Improve commentary.  Simplify switch.
717         (SYMBOLIC_LINK_FLAG_DIRECTORY): Define if not defined in system
718         headers (most versions of MinGW w32api don't).
719         (get_security_info, create_symbolic_link)
720         (get_file_security_desc_by_handle, is_symlink, chase_symlinks):
721         New functions.
722         (sys_access, sys_chmod): Call 'chase_symlinks' to resolve symlinks
723         in the argument file name.
724         (sys_access): Call unc_volume_file_attributes only if
725         GetFileAttributes fails with network-related error codes.
726         (sys_rename): Diagnose renaming of a symlink when the user doesn't
727         have the required privileges.
728         (get_file_security_desc_by_name): Rename from
729         get_file_security_desc.
730         (stat_worker): New function, with most of the guts of 'stat', and
731         with addition of handling of symlinks and support for 'lstat'.
732         If possible, get file's attributes and security information by
733         handle, not by name.  Produce S_IFLNK bit for symlinks, when
734         called from 'lstat'.
735         (stat, lstat): New functions, call 'stat_worker'.
736         (symlink, readlink, careadlinkat): Rewritten to create and resolve
737         symlinks when the underlying filesystem supports them.
739 2012-08-02  Paul Eggert  <eggert@cs.ucla.edu>
741         Fix macroexp crash on Windows with debugging (Bug#12118).
742         * lisp.h (ASET) [ENABLE_CHECKING]: Ignore ARRAY_MARK_FLAG when
743         checking subscripts; problem introduced with the recent
744         "ASET (a, i, v)" rather than "AREF (a, i) = v" patch.
745         (ARRAY_MARK_FLAG): Now a macro as well as a constant,
746         since it's used in non-static inline functions now.
748         * xfaces.c (face_at_buffer_position, face_for_overlay_string):
749         Don't assume buffer size fits in 'int'.  Remove unused local.
751         Use C99-style 'extern inline' if available.
752         * buffer.h (BUFFER_INLINE):
753         * category.h (CATEGORY_INLINE):
754         * character.h (CHARACTER_INLINE):
755         * charset.h (CHARSET_INLINE):
756         * composite.h (COMPOSITE_INLINE):
757         * dispextern.h (DISPEXTERN_INLINE):
758         * lisp.h (LISP_INLINE):
759         * systime.h (SYSTIME_INLINE):
760         New macro, replacing 'static inline' in this header.
761         * buffer.h, category.h, character.h, charset.h, composite.h:
762         * dispextern.h, lisp.h, systime.h:
763         Use INLINE_HEADER_BEGIN, INLINE_HEADER_END.
764         * alloc.c (LISP_INLINE):
765         * buffer.c (BUFFER_INLINE):
766         * category.c (CATEGORY_INLINE):
767         * character.c (CHARACTER_INLINE):
768         * charset.c (CHARSET_INLINE):
769         * composite.c (COMPOSITE_INLINE):
770         * dispnew.c (DISPEXTERN_INLINE):
771         * sysdep.c (SYSTIME_INLINE):
772         Define to EXTERN_INLINE, so that the corresponding functions
773         are compiled into code.
774         * conf_post.h (INLINE, EXTERN_INLINE, INLINE_HEADER_BEGIN)
775         (INLINE_HEADER_END): New macros.
776         * lisp.h (PSEUDOVECTOR_FLAG): Now a macro as well as a constant,
777         since it's used in non-static inline functions now.
778         (VALMASK) [!USE_LSB_TAG]: Likewise.
780 2012-08-02  Glenn Morris  <rgm@gnu.org>
782         * s/: Remove empty directory.
784         * s/ms-w32.h: Move to ../nt/inc.
785         * makefile.w32-in (TAGS, TAGS-gmake, MS_W32_H):
786         Update for new ms-w32.h location.
788 2012-08-02  Paul Eggert  <eggert@cs.ucla.edu>
790         Port to Solaris 8.
791         * syswait.h (WRETCODE): Remove, consistently with ../configure.ac.
793 2012-08-02  Glenn Morris  <rgm@gnu.org>
795         * nsterm.m (ns_exec_path, ns_load_path): Use SEPCHAR rather than
796         hard-coding the path separator.
798 2012-08-01  Paul Eggert  <eggert@cs.ucla.edu>
800         Use "ASET (a, i, v)" rather than "AREF (a, i) = v".
801         This how ASET and AREF are supposed to work, and makes
802         it easier to think about future improvements.  See
803         <http://lists.gnu.org/archive/html/emacs-devel/2012-08/msg00026.html>.
804         * charset.h (set_charset_attr): New function.
805         All lvalue-style uses of CHARSET_DECODER etc. changed to use it.
806         * lisp.h (ASET): Rewrite so as not to use AREF in an lvalue style.
807         (aref_addr): New function.  All uses of &AREF(...) changed.
808         (set_hash_key, set_hash_value, set_hash_next, set_hash_hash)
809         (set_hash_index): New functions.  All lvalue-style uses of
810         HASH_KEY etc. changed.
811         * keyboard.c (set_prop): New function.  All lvalue-style uses
812         of PROP changed.
814 2012-08-01  Alp Aker  <alp.tekin.aker@gmail.com>
816         * nsterm.m (ns_set_vertical_scroll_bar, ns_redeem_scroll_bar)
817         (EmacsWindow-accessibilityAttributeValue, EmacsScroller-initFrame:)
818         (EmacsScroller-dealloc):  Adjust to use WVAR.  (Bug#12114)
819         * nsfns.m (ns_set_name_as_filename): Likewise.
820         * nsmenu.m (ns_update_menubar): Likewise.
821         * nsselect.m (symbol_to_nsstring): Adjust to use SVAR.
823 2012-08-01  Eli Zaretskii  <eliz@gnu.org>
825         * .gdbinit (xcar, xcdr, xlist, xwindow, nextcons, xprintsym):
826         Adapt to latest changes in field names of the corresponding Lisp
827         objects.
829         * xdisp.c (try_window_id): Use WVAR in IF_DEBUG code.
831 2012-08-01  Glenn Morris  <rgm@gnu.org>
833         * s/msdos.h: Remove file.
834         * conf_post.h [MSDOS]: New section, moved from s/msdos.h.
835         * Makefile.in (S_FILE): Remove.
836         (config_h): Remove S_FILE.
838 2012-08-01  Juanma Barranquero  <lekktu@gmail.com>
840         * s/ms-w32.h (DEVICE_SEP, IS_DIRECTORY_SEP, IS_ANY_SEP):
841         Remove; moved to nt/config.nt.
843 2012-08-01  Dmitry Antipov  <dmantipov@yandex.ru>
845         Use INTERNAL_FIELD for conses and overlays.
846         * lisp.h (struct Lisp_Cons): Use INTERNAL_FIELD.
847         Remove obsolete comment.
848         (MVAR): New macro.
849         (struct Lisp_Overlay): Use INTERNAL_FIELD.
850         * alloc.c, buffer.c, buffer.h, fns.c: Adjust users.
852 2012-08-01  Dmitry Antipov  <dmantipov@yandex.ru>
854         Use INTERNAL_FIELD for symbols.
855         * lisp.h (SVAR): New macro.  Adjust users.
856         * alloc.c, bytecode.c, cmds.c, data.c, doc.c, eval.c:
857         * fns.c, keyboard.c, lread.c, xterm.c: Users changed.
859 2012-08-01  Dmitry Antipov  <dmantipov@yandex.ru>
861         Use INTERNAL_FIELD for processes.
862         * process.h (PVAR): New macro.  Adjust style.
863         (struct Lisp_Process): Change Lisp_Object members to INTERNAL_FIELD.
864         * print.c, process.c, sysdep.c, w32.c, xdisp.c: Users changed.
866 2012-08-01  Dmitry Antipov  <dmantipov@yandex.ru>
868         Use INTERNAL_FIELD for windows.
869         * window.h (WVAR): New macro.
870         (struct window): Change Lisp_Object members to INTERNAL_FIELD.
871         * alloc.c, buffer.c, composite.c, dispextern.h, dispnew.c, editfns.c:
872         * fileio.c, font.c, fontset.c, frame.c, frame.h, fringe.c, indent.c:
873         * insdel.c, keyboard.c, keymap.c, lisp.h, minibuf.c, nsterm.m, print.c:
874         * textprop.c, w32fns.c, w32menu.c, w32term.c, window.c, xdisp.c:
875         * xfaces.c, xfns.c, xmenu.c, xterm.c: Users changed.
877 2012-08-01  Paul Eggert  <eggert@cs.ucla.edu>
879         * coding.h (CODING_ATTR_FLUSHING): Remove; unused and wouldn't work.
881 2012-08-01  Glenn Morris  <rgm@gnu.org>
883         * lisp.h (IS_DIRECTORY_SEP, IS_DEVICE_SEP, IS_ANY_SEP):
884         Move to configure.ac.
886 2012-08-01  Juanma Barranquero  <lekktu@gmail.com>
888         * makefile.w32-in (CONFIG_H): Update dependencies.
889         (CONF_POST_H): New macro.
891         * s/ms-w32.h (SEPCHAR, NULL_DEVICE): Remove; moved to nt/config.nt.
893 2012-07-31  Glenn Morris  <rgm@gnu.org>
895         * Makefile.in (S_FILE): No longer set by configure.
897         * conf_post.h (config_opsysfile): Move earlier, so that WINDOWSNT
898         is available.
899         (alloca.h) [WINDOWSNT]: Don't include it on MS Windows.
901         * process.h (NULL_DEVICE):
902         * emacs.c (SEPCHAR):
903         * editfns.c (USER_FULL_NAME): Let configure set them.
905         * s/README, s/template.h: Remove files.
907         * conf_post.h [HPUX]: Undefine HAVE_RANDOM and HAVE_RINT.
909         * conf_post.h (AMPERSAND_FULL_NAME, subprocesses):
910         Move to configure.ac.
912 2012-07-31  Eli Zaretskii  <eliz@gnu.org>
914         * .gdbinit (xframe): Adapt to introduction of FVAR and the
915         resulting renaming of 'struct frame' members.
917         * w32menu.c (w32_menu_show): Revert bogus introduction of FVAR.
919         * fontset.c (dump_fontset): Fix compilation with ENABLE_CHECKING
920         after introduction of FVAR.
922 2012-07-31  Jan Djärv  <jan.h.d@swipnet.se>
924         * nsmenu.m (update_frame_tool_bar): Change key from NSObject* to id.
926         * nsterm.m (ns_draw_fringe_bitmap, ns_dumpglyphs_image): Use drawInRect
927         instead of compositeToPoint.
928         (applicationShouldTerminate): Pass NS String literal to NSRunAlertPanel.
930         * nsfns.m, nsmenu.m, nsterm.m: Adopt to struct frame/FVAR changes.
932 2012-07-31  Dmitry Antipov  <dmantipov@yandex.ru>
934         Generalize INTERNAL_FIELD between buffers, keyboards and frames.
935         * lisp.h (INTERNAL_FIELD): New macro.
936         * buffer.h (BUFFER_INTERNAL_FIELD): Remove.
937         (BVAR): Change to use INTERNAL_FIELD.
938         * keyboard.h (KBOARD_INTERNAL_FIELD): Likewise.
939         (KVAR): Change to use INTERNAL_FIELD.
940         * frame.h (FVAR): New macro.
941         (struct frame): Use INTERNAL_FIELD for all Lisp_Object fields.
942         * alloc.c, buffer.c, data.c, dispnew.c, dosfns.c, eval.c, frame.c:
943         * fringe.c, gtkutil.c, minibuf.c, nsfns.m, nsterm.m, print.c:
944         * term.c, w32fns.c, w32menu.c, w32term.c, window.c, window.h:
945         * xdisp.c, xfaces.c, xfns.c, xmenu.c, xterm.c: Users changed.
947 2012-07-31  Dmitry Antipov  <dmantipov@yandex.ru>
949         Miscellaneous fixes for non-default X toolkits.
950         * xfns.c (Fx_file_dialog): Change to SSDATA to avoid warnings.
951         * xterm.c (x_frame_of_widget): Remove redundant prototype.
952         Move under #ifdef USE_LUCID.
953         (x_create_toolkit_scroll_bar): Adjust scroll_bar_name
954         definition and usage to avoid warnings.
956 2012-07-31  Jan Djärv  <jan.h.d@swipnet.se>
958         * nsterm.m (openFiles): Fix previous checkin.
960 2012-07-31  Paul Eggert  <eggert@cs.ucla.edu>
962         * indent.c (compute_motion): Remove unused local.
964 2012-07-31  Glenn Morris  <rgm@gnu.org>
966         * s/usg5-4-common.h (wait3, WRETCODE): Let configure set them.
968         * conf_post.h [USG5_4]:
969         Move remaining contents of s/usg5-4-common.h here.
970         * s/usg5-4-common.h: Remove file.
972         * conf_post.h [IRIX6_5]: Move remaining contents of s/irix6-5.h here.
973         * s/irix6-5.h: Remove file.
975         * conf_post.h [DARWIN_OS]: Move remaining contents of s/darwin.h here.
976         * s/darwin.h: Remove file.
978         * conf_post.h [HPUX]: Move random, srandom here from s/hpux10-20.h.
979         * s/hpux10-20.h: Remove file, which is now empty.
981 2012-07-30  Glenn Morris  <rgm@gnu.org>
983         * conf_post.h: New, split from configure.ac's AH_BOTTOM.
984         * Makefile.in (config_h): Add conf_post.h.
985         * makefile.w32-in (CONFIG_H): Add conf_post.h.
987 2012-07-30  Jan Djärv  <jan.h.d@swipnet.se>
989         * nsterm.m (ns_do_open_file): New variable.
990         (ns_term_init): Set ns_do_open_file to YES after run returns.
991         (openFile, openTempFile, openFileWithoutUI, openFiles):
992         Open files only if ns_do_open_file.
994 2012-07-30  Paul Eggert  <eggert@cs.ucla.edu>
996         * lisp.h (SWITCH_ENUM_CAST): Remove.  All uses removed.
997         This no-op macro hasn't been needed for many years.
998         * src/regex.c (SWITCH_ENUM_CAST) [!emacs]: Likewise.
1000         Export DIRECTORY_SEP, TYPEMASK, VALMASK to GDB.
1001         * alloc.c (gdb_make_enums_visible) [USE_LSB_TAG]: Add lsb_bits.
1002         * lisp.h (enum lsb_bits) [USE_LSB_TAG]: New enum, for
1003         gdb_make_enums_visible.
1004         (TYPEMASK, VALMASK) [USE_LSB_TAGS]: Now enum constants, not macros.
1005         (DIRECTORY_SEP): Now a constant, not a macro.
1007 2012-07-30  Eli Zaretskii  <eliz@gnu.org>
1009         * w32fns.c (w32_wnd_proc): Pass w32_keyboard_codepage to
1010         w32_kbd_patch_key as the 2nd arg.  (Bug#12082)
1012         * w32term.c <w32_keyboard_codepage>: Renamed from
1013         keyboard_codepage and now external.  All users changed.
1015         * w32term.h: Add declaration of w32_keyboard_codepage.
1017         * w32inevt.c (w32_kbd_patch_key): Accept an additional argument --
1018         the codepage to translate keys to Unicode.  If this argument is
1019         -1, use the value returned by GetConsoleCP.  All callers changed.
1021 2012-07-30  Paul Eggert  <eggert@cs.ucla.edu>
1023         Update .PHONY listings in makefiles.
1024         * Makefile.in (.PHONY): Add all, mostlyclean, clean,
1025         bootstrap-clean, distclean, maintainer-clean, versioclean,
1026         extraclean, frc.
1028         * lisp.h (STRING_BYTES_BOUND): Cast entire result to ptrdiff_t.
1029         This is a bit clearer.  Fix some commentary typos.
1031 2012-07-30  Glenn Morris  <rgm@gnu.org>
1033         * s/netbsd.h: Let configure include signal.h if needed.
1034         Remove file, which is now empty.
1036         * s/usg5-4-common.h (_longjmp, _setjmp, TIOCSIGSEND):
1037         Let configure set them.
1038         * s/irix6-5.h (_longjmp, _setjmp, TIOCSIGSEND):
1039         No more need to undefine.
1041 2012-07-30  Andreas Schwab  <schwab@linux-m68k.org>
1043         * keymap.c (Fkey_description): Don't remove 0x80 bit from
1044         non-single-byte char when adding meta modifier.  (Bug#12090)
1046 2012-07-30  Dmitry Antipov  <dmantipov@yandex.ru>
1048         Convert safe_call to use variable number of arguments.
1049         * xdisp.c (safe_call): Convert to use varargs.  Adjust users.
1050         (safe_call2): Fix comment.
1051         * lisp.h (safe_call): Adjust prototype.
1052         * coding.c (encode_coding_object): Change to use safe_call2.
1053         * xfaces.c (merge_face_heights): Change to use safe_call1.
1055 2012-07-30  Glenn Morris  <rgm@gnu.org>
1057         * s/aix4-2.h (sigmask): No need to undefine it, since syssignal.h
1058         does that unconditionally.  Remove file, which is now empty.
1060         * s/freebsd.h, s/gnu-linux.h, s/sol2-6.h, s/unixware.h:
1061         Remove empty files.
1063 2012-07-30  Paul Eggert  <eggert@cs.ucla.edu>
1065         Export to GDB most of lisp.h's remaining object-like macros.
1066         * lisp.h (min, max): Move earlier, because they're used earlier now.
1067         (INTMASK, ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG, VALMASK)
1068         (CHAR_TABLE_STANDARD_SLOTS, CHARTAB_SIZE_BITS_0)
1069         (CHARTAB_SIZE_BITS_1, CHARTAB_SIZE_BITS_2, CHARTAB_SIZE_BITS_3)
1070         (DEFAULT_HASH_SIZE, COMPILED_ARGLIST, COMPILED_BYTECODE)
1071         (COMPILED_CONSTANTS, COMPILED_STACK_DEPTH, COMPILED_DOC_STRING)
1072         (COMPILED_INTERACTIVE, CHAR_ALT, CHAR_SUPER, CHAR_HYPER, CHAR_SHIFT)
1073         (CHAR_CTL, CHAR_META, CHAR_MODIFIER_MASK, CHARACTERBITS)
1074         (MANY, UNEVALLED, FLOAT_TO_STRING_BUFSIZE, MAX_ALLOCA):
1075         Now constants, for GDB.  They need not be macros.
1076         (MOST_POSITIVE_FIXNUM, MOST_NEGATIVE_FIXNUM, STRING_BYTES_BOUND):
1077         Now constants, for GDB, as well as macros, for static initializers.
1078         (CHAR_TABLE_STANDARD_SLOTS, CHAR_TABLE_EXTRA_SLOTS):
1079         Move to after the definition of struct Lisp_Char_Table,
1080         since the former now needs that type defined.
1081         (enum CHARTAB_SIZE_BITS, enum CHAR_TABLE_STANDARD_SLOTS)
1082         (enum DEFAULT_HASH_SIZE, enum Lisp_Compiled, enum char_bits)
1083         (enum maxargs, enum FLOAT_TO_STRING_BUFSIZE, enum MAX_ALLOCA):
1084         New enums, for gdb_make_enums_visible.
1085         (GLYPH_MODE_LINE_FACE): Remove; unused.
1086         * alloc.c (STRING_BYTES_MAX): Now a constant, not a macro.
1087         (gdb_make_enums_visible): Add enum CHARTAB_SIZE_BITS, enum
1088         CHAR_TABLE_STANDARD_SLOTS, enum char_bits, enum DEFAULT_HASH_SIZE,
1089         enum FLOAT_TO_STRING_BUFSIZE, enum Lisp_Bits, enum Lisp_Compiled,
1090         enum maxargs, enum MAX_ALLOCA.
1091         (ARRAY_MARK_FLAG_VAL, PSEUDOVECTOR_FLAG_VAL, VALMASK_VAL): Remove.
1092         (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG, VALMASK): Remove;
1093         no longer needed, now that they are done in lisp.h.
1095 2012-07-30  Dmitry Antipov  <dmantipov@yandex.ru>
1097         Cleanup string bytes checking.
1098         * alloc.c (GC_STRING_BYTES, CHECK_STRING_BYTES): Remove.  Convert
1099         all users to STRING_BYTES or string_bytes if GC_CHECK_STRING_BYTES.
1100         (check_string_bytes): Define to empty if not GC_CHECK_STRING_BYTES.
1101         (check_sblock, compact_small_strings): Simplify.
1103 2012-07-29  Paul Eggert  <eggert@cs.ucla.edu>
1105         * lisp.h (LISP_INT_TAG, LISP_INT1_TAG, LISP_STRING_TAG): Remove.
1106         These macros are confusing and no longer need to be defined, as
1107         the enum values now suffice.  All uses replaced with definiens.
1108         (Lisp_Int1, Lisp_String): Define directly; this is clearer.
1110 2012-07-29  Juanma Barranquero  <lekktu@gmail.com>
1112         * makefile.w32-in (LISP_H, $(BLD)/emacs.$(O), $(BLD)/w32inevt.$(O))
1113         ($(BLD)/w32console.$(O)): Update dependencies.
1115 2012-07-29  Dmitry Antipov  <dmantipov@yandex.ru>
1117         Remove HIDE_LISP_IMPLEMENTATION and cleanup cons free list check.
1118         * lisp.h (HIDE_LISP_IMPLEMENTATION): Remove as useless for a long
1119         time.  Adjust users.
1120         (CHECK_CONS_LIST): Remove.  Convert all users to check_cons_list.
1122 2012-07-29  Jan Djärv  <jan.h.d@swipnet.se>
1124         * lread.c (init_lread): Remove if-statement in ifdef HAVE_NS before
1125         setting sitelisp (Bug#12010).
1127 2012-07-29  Eli Zaretskii  <eliz@gnu.org>
1129         * w32heap.h (OS_9X): Rename from OS_WINDOWS_95.
1131         * w32heap.c (cache_system_info):
1132         * w32.c (sys_rename):
1133         * w32proc.c (find_child_console, sys_kill): All users changed.
1135 2012-07-29  Paul Eggert  <eggert@cs.ucla.edu>
1137         * alloc.c (Fgarbage_collect): Indent as per usual Emacs style.
1139 2012-07-29  Eli Zaretskii  <eliz@gnu.org>
1141         * makefile.w32-in (LISP_H): Add $(NT_INC)/stdalign.h.
1143 2012-07-29  Dmitry Antipov  <dmantipov@yandex.ru>
1145         Cleanup statistics calculation in Fgarbage_collect.
1146         * alloc.c (Fgarbage_collect): Rename t1 to meaningful start.
1147         Fix zombies percentage calculation.  Simplify elapsed time calculation.
1149 2012-07-29  Dmitry Antipov  <dmantipov@yandex.ru>
1151         Generalize marker debugging code under MARKER_DEBUG and use eassert.
1152         * insdel.c (CHECK_MARKERS, check_markers_debug_flag): Remove.
1153         (gap_left, gap_right, adjust_markers_for_delete, insert_1_both)
1154         (insert_from_string_1, insert_from_gap, insert_from_buffer_1)
1155         (replace_range, replace_range_2, del_range_2): Change to eassert.
1156         * marker.c (byte_char_debug_check): Adjust style.
1158 2012-07-29  Paul Eggert  <eggert@cs.ucla.edu>
1160         Don't use the abbreviation "win" to refer to Windows (Bug#10421).
1161         * regex.c (MAX_BUF_SIZE): Remove some incorrect and
1162         long-ago-commented-out code that talks about "WIN32".
1163         * w32heap.h (OS_WINDOWS_95): Rename from OS_WIN95.
1164         All uses changed.
1166 2012-07-28  Paul Eggert  <eggert@cs.ucla.edu>
1168         Use Gnulib stdalign module (Bug#9772, Bug#9960).
1169         * alloc.c (XMALLOC_BASE_ALIGNMENT, GC_POINTER_ALIGNMENT, pure_alloc):
1170         Simplify by using alignof.
1171         (pure_alloc) [! USE_LSB_TAG]: Don't over-align EMACS_INT values.
1172         * lisp.h: Include <stdalign.h>.
1173         (GCALIGNMENT): New macro and constant.
1174         (DECL_ALIGN): Remove.  All uses replaced by alignas (GCALIGNMENT).
1175         (USE_LSB_TAG): ifdef on alignas, not on DECL_ALIGN.
1176         (stdalign): New macro, if not already defined.
1178 2012-07-28  Eli Zaretskii  <eliz@gnu.org>
1180         Fix non-ASCII input in non-GUI frames on MS-Windows.  (Bug#12055)
1181         * w32inevt.c: Include w32inevt.h.
1182         (w32_read_console_input): New inline function, calls either
1183         ReadConsoleInputA or ReadConsoleInputW, depending on the value of
1184         w32_console_unicode_input.
1185         (fill_queue): Call w32_read_console_input instead of ReadConsoleInput.
1186         (w32_kbd_patch_key, key_event): Use the codepage returned by
1187         GetConsoleCP, rather than the ANSI codepage returned by GetLocaleInfo.
1188         (key_event): use uChar.UnicodeChar only if
1189         w32_console_unicode_input is non-zero.
1191         * w32console.c: Include w32heap.h.
1192         <w32_console_unicode_input>: New global variable.
1193         (initialize_w32_display): Set w32_console_unicode_input to 1 on NT
1194         family of Windows, zero otherwise.
1196         * w32inevt.h: Declare w32_console_unicode_input.
1198         * xdisp.c (init_iterator): Don't reference tip_frame in a build
1199         --without-x.  (Bug#11742)
1201 2012-07-27  Paul Eggert  <eggert@cs.ucla.edu>
1203         Adjust GDB to reflect pvec_type changes (Bug#12036).
1204         * .gdbinit (xvectype, xpr, xbacktrace): Adjust to reflect the
1205         2012-07-04 changes to pseudovector representation.
1206         Problem reported by Eli Zaretskii in <http://bugs.gnu.org/12036#30>.
1208 2012-07-27  Michael Albinus  <michael.albinus@gmx.de>
1210         * dbusbind.c (XD_DBUS_VALIDATE_BUS_ADDRESS): Canonicalize session
1211         bus address.
1212         (xd_close_bus, Fdbus_init_bus): Handle reference counter properly.
1214 2012-07-27  Eli Zaretskii  <eliz@gnu.org>
1216         * alloc.c (listn): Fix the order the arguments are consed onto the
1217         list.
1219         * lisp.h (enum constype): Use CONSTYPE_HEAP and CONSTYPE_PURE for
1220         enumeration constants, as PURE and HEAP are too general, and clash
1221         with other headers and sources, such as gmalloc.c and the
1222         MS-Windows system headers.  All users changed.
1224 2012-07-27  Dmitry Antipov  <dmantipov@yandex.ru>
1226         Revert last save_excursion_save and save_excursion_restore changes.
1227         * alloc.c, editfns.c, marker.c, lisp.h: Revert.
1228         Lots of crashes reported by Chong Yidong <cyd@gnu.org>.
1230 2012-07-27  Dmitry Antipov  <dmantipov@yandex.ru>
1232         Fix recently-introduced typos in Windows port.
1233         Reported by Martin Rudalics <rudalics@gmx.at>.
1234         * w32.c (init_environment): Replace comma with semicolon.
1235         * w32fns.c (syms_of_w32fns): Add missing parenthesis.
1237 2012-07-27  Paul Eggert  <eggert@cs.ucla.edu>
1239         Improve GDB symbol export (Bug#12036).
1240         * .gdbinit (xgetptr, xgetint, xgettype): Set $bugfix in different
1241         arms of an 'if', not using conditional expressions; otherwise GDB
1242         complains about the types in the unevaluated arm when the argument
1243         is an integer literal.
1244         (xgetint): Simplify expression.
1245         * alloc.c (gdb_make_enums_visible): New constant.  This ports to
1246         GCC 3.4.2 the export of symbols to GDB.  Problem reported by Eli
1247         Zaretskii in <http://bugs.gnu.org/12036#13>.
1248         * lisp.h (PUBLISH_TO_GDB): Remove.  All uses removed.  No longer
1249         needed now that we have gdb_make_enums_visible.
1250         (enum CHECK_LISP_OBJECT_TYPE, enum Lisp_Bits, enum More_Lisp_Bits)
1251         (enum enum_USE_LSB_TAG):
1252         New enum types, packaging up enums that need to be exported to GDB.
1254 2012-07-27  Dmitry Antipov  <dmantipov@yandex.ru>
1256         Utility function to make a list from specified amount of objects.
1257         * lisp.h (enum constype): New datatype.
1258         (listn): New prototype.
1259         * alloc.c (listn): New function.
1260         (Fmemory_use_count, syms_of_alloc): Use it.
1261         * buffer.c (syms_of_buffer): Likewise.
1262         * callint.c (syms_of_callint): Likewise.
1263         * charset.c (define_charset_internal): Likewise.
1264         * coding.c (syms_of_coding): Likewise.
1265         * keymap.c (syms_of_keymap): Likewise.
1266         * search.c (syms_of_search): Likewise.
1267         * syntax.c (syms_of_syntax): Likewise.
1268         * w32.c (init_environment): Likewise.
1269         * w32fns.c (Fw32_battery_status, syms_of_w32fns): Likewise.
1270         * xdisp.c (syms_of_xdisp): Likewise.
1271         * xfns.c (syms_of_xfns): Likewise.
1273 2012-07-27  Dmitry Antipov  <dmantipov@yandex.ru>
1275         Fast save_excursion_save and save_excursion_restore.
1276         * lisp.h (struct Lisp_Excursion): New data type.
1277         (PVEC_EXCURSION): New pseudovector type.
1278         (XEXCURSION, XSETEXCURSION, EXCURSIONP): Convenient macros
1279         to deal with it.  Adjust comments.
1280         (init_marker, attach_marker): New prototype.
1281         (unchain_marker): Adjust prototype.
1282         * marker.c (attach_marker): Change to global.
1283         (init_marker): New function.
1284         * alloc.c (Fmake_marker, build_marker): Use it.
1285         (build_marker): More easserts.
1286         (mark_object): Handle struct Lisp_Excursion.
1287         * editfns.c (save_excursion_save, save_excursion_restore):
1288         Reimplement to use struct Lisp_Excursion.  Add comments.
1290 2012-07-26  Paul Eggert  <eggert@cs.ucla.edu>
1292         Fix export of symbols to GDB (Bug#12036).
1293         * alloc.c (ARRAY_MARK_FLAG_VAL, PSEUDOVECTOR_FLAG_VAL, VALMASK_VAL)
1294         (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG, VALMASK): Move these here from
1295         emacs.c, as this is a more-suitable home.  Had this been done earlier
1296         the fix for 12036 would have avoided some of the problems noted in
1297         <http://bugs.gnu.org/12036#13> by Eli Zaretskii, as the scope problems
1298         would have been more obvious.
1299         * emacs.c: Do not include <verify.h>; no longer needed.
1300         (gdb_CHECK_LISP_OBJECT_TYPE, gdb_DATA_SEG_BITS)
1301         (gdb_GCTYPEBITS, gdb_USE_LSB_TAG)
1302         (CHECK_LISP_OBJECT_TYPE, DATA_SEG_BITS, GCTYPEBITS, USE_LSB_TAG):
1303         Remove; now done in lisp.h.
1304         * lisp.h (PUBLISH_TO_GDB): New macro.
1305         (GCTYPEBITS, USE_LSB_TAG, CHECK_LISP_OBJECT_TYPE, enum pvec_type)
1306         (DATA_SEG_BITS): Use it.
1307         (GCTYPEBITS, USE_LSB_TAG): Now also an enum, for GDB.
1308         (CHECK_LISP_OBJECT_TYPE, DATA_SEG_BITS): Now just an enum, for GDB.
1309         * mem-limits.h (EXCEEDS_LISP_PTR): Redo so that DATA_SEG_BITS need
1310         not be usable in #if.  This simplifies things.
1312 2012-07-26  Juanma Barranquero  <lekktu@gmail.com>
1314         * makefile.w32-in ($(BLD)/emacs.$(O)): Update dependencies.
1316 2012-07-26  Paul Eggert  <eggert@cs.ucla.edu>
1318         Simplify export of symbols to GDB (Bug#12036).
1319         * .gdbinit (xgetptr, xgetint, xgettype): Don't use "set $bugfix =
1320         $bugfix.i", as this doesn't work (with GDB 7.4.1, anyway).
1321         (xgetptr, xgetint, xgettype, xcoding, xcharset, xprintbytestr):
1322         Adjust to changes in lisp.h and emacs.c, by using
1323         CHECK_LISP_OBJECT_TYPE rather than gdb_use_struct, VALMASK instead
1324         of $valmask, DATA_SEG_BITS instead of gdb_data_seg_bits,
1325         INTTYPEBITS instead of gdb_gctypebits - 1, USE_LSB_TAG instead of
1326         gdb_use_lsb, (1 << GCTYPEBITS) - 1 instead of $tagmask, VALBITS
1327         instead of gdb_valbits.
1328         (xvectype, xvector, xpr, xprintstr, xbacktrace): Similarly, use
1329         PSEUDOVECTOR_FLAG instead of PVEC_FLAG, and ARRAY_MARK_FLAG
1330         instead of gdb_array_mark_flag.
1331         (xboolvector): Get size from $->size, not $->header.size.
1332         Use BOOL_VECTOR_BITS_PER_CHAR rather than mystery constants.
1333         (xreload, hook-run, hookpost-run): Remove.
1334         * emacs.c: Include <verify.h>.
1335         (gdb_use_lsb, gdb_use_struct, gdb_valbits, gdb_gctypebits)
1336         (gdb_data_seg_bits, PVEC_FLAG, gdb_array_mark_flag, gdb_pvec_type):
1337         Remove.
1338         (gdb_CHECK_LISP_OBJECT_TYPE, gdb_DATA_SEG_BITS, gdb_GCTYPEBITS)
1339         (gdb_USE_LSB_TAG): New enum constants.
1340         (CHECK_LISP_OBJECT_TYPE, DATA_SEG_BITS, GCTYPEBITS, USE_LSB_TAG):
1341         Also define these as enum constants, so they're visible to GDB.
1342         (ARRAY_MARK_FLAG_VAL, PSEUDOVECTOR_FLAG_VAL, VALMASK_VAL): New macros.
1343         (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG, VALMASK): Also define these
1344         as constants, so they're visible to GDB.
1345         * lisp.h (VALBITS, INTTYPEBITS, FIXNUM_BITS, PSEUDOVECTOR_SIZE_BITS)
1346         (PSEUDOVECTOR_SIZE_MASK, PVEC_TYPE_MASK, BOOL_VECTOR_BITS_PER_CHAR):
1347         Now enum constants, not macros, so they're visible to GDB.
1348         (CHECK_LISP_OBJECT_TYPE, DATA_SEG_BITS): Default to 0, as this is
1349         more convenient now.  All uses changed.
1350         (VALMASK) [USE_LSB_TAG]: Also define in this case.
1351         * mem-limits.h (EXCEEDS_LISP_PTR): Adjust to DATA_SEG_BITS change.
1353 2012-07-26  Dmitry Antipov  <dmantipov@yandex.ru>
1355         Explicitly free restriction data that are not needed anymore.
1356         * editfns.c (save_restriction_restore): Free restriction data.
1358 2012-07-26  Stefan Monnier  <monnier@iro.umontreal.ca>
1360         * eval.c (Fautoload_do_load): Rename from do_autoload, export to Lisp,
1361         add argument, tune behavior, and adjust all callers.
1363 2012-07-25  Paul Eggert  <eggert@cs.ucla.edu>
1365         Use typedef for EMACS_INT, EMACS_UINT.
1366         * lisp.h, s/ms-w32.h (EMACS_INT, EMACS_UINT): Use typedefs rather
1367         than macros.  This simplifies debugging in the usual case, since
1368         it lets GDB show addresses as 'EMACS_INT *' rather than 'long int *'
1369         and it allows expressions involving EMACS_INT casts.
1370         * .gdbinit (xreload): Simplify by using EMACS_INT cast.
1372 2012-07-25  Jan Djärv  <jan.h.d@swipnet.se>
1374         * nsterm.m (ns_read_socket): Return early if there is a modal
1375         window (Bug#12043).
1377 2012-07-25  Martin Rudalics  <rudalics@gmx.at>
1379         * frame.c (Fredirect_frame_focus): In doc-string don't mention
1380         that FOCUS-FRAME can be omitted.
1382 2012-07-25  Dmitry Antipov  <dmantipov@yandex.ru>
1384         Adjust buffer text indirection counters at the end of Fkill_buffer.
1385         * buffer.c (Fkill_buffer): Adjust indirection counters when the
1386         buffer is definitely dead.  This should really fix an issue reported
1387         by Christoph Scholtes again.  (Bug#12007).
1388         (init_buffer_once): Initialize indirection counters of
1389         buffer_defaults and buffer_local_symbols (for sanity and safety).
1391 2012-07-24  Eli Zaretskii  <eliz@gnu.org>
1393         * xdisp.c (init_iterator): Don't compute dimensions of truncation
1394         and continuation glyphs on tooltip frames, leave them at zero.
1395         Avoids continued lines in tooltips.  (Bug#11832)
1397 2012-07-24  Dmitry Antipov  <dmantipov@yandex.ru>
1399         Simplify copy_overlay.
1400         * buffer.c (copy_overlay): Simplify.  Use build_marker.
1401         * lisp.h (struct Lisp_Overlay): Restore comment with minor tweaks.
1403 2012-07-23  Eli Zaretskii  <eliz@gnu.org>
1405         * print.c (print_object): Don't crash when a frame's name is nil
1406         or invalid.  (Bug#12025)
1408         * window.c (decode_any_window): Disable CHECK_LIVE_FRAME test, as
1409         it signals an error when a tooltip frame is being created.
1411 2012-07-23  Dmitry Antipov  <dmantipov@yandex.ru>
1413         Cleanup miscellaneous objects allocation and initialization.
1414         * alloc.c (allocate_misc): Change to static.  Add argument to
1415         specify the subtype.  Adjust comment and users.
1416         (build_overlay): New function.
1417         * buffer.c (copy_overlays, Fmake_overlay): Use it.
1418         * lisp.h (struct Lisp_Overlay): Remove obsolete comment.
1419         (allocate_misc): Remove prototype.
1420         (build_overlay): Add prototype.
1422 2012-07-23  Dmitry Antipov  <dmantipov@yandex.ru>
1424         Swap buffer text indirection counters in Fbuffer_swap_text.
1425         * buffer.c (Fbuffer_swap_text): Swap indirections too.
1426         This avoids crash reported by Christoph Scholtes at
1427         http://lists.gnu.org/archive/html/bug-gnu-emacs/2012-07/msg00785.html.
1429 2012-07-22  Jan Djärv  <jan.h.d@swipnet.se>
1431         * nsmenu.m (Popdown_data): New struct.
1432         (pop_down_menu): p->pointer is Popdown_data.  Release the pool and
1433         free Popdown_data.
1434         (ns_popup_dialog): Use NSAutoreleasePool and pass it to pop_down_menu.
1435         (initWithContentRect): Make imgView and contentView non-static
1436         and autorelease them.  Also autorelease img and matrix (Bug#12005).
1437         (dealloc): Remove (Bug#12005).
1439 2012-07-22  Dmitry Antipov  <dmantipov@yandex.ru>
1441         Adjust consing_since_gc when objects are explicitly freed.
1442         * alloc.c (GC_DEFAULT_THRESHOLD): New macro.
1443         (Fgarbage_collect): Use it.  Change minimum to 1/10 of default.
1444         (free_cons, free_misc): Subtract object size from consing_since_gc.
1446 2012-07-22  Dmitry Antipov  <dmantipov@yandex.ru>
1448         Simplify and cleanup markers positioning code.
1449         * marker.c (attach_marker): More useful eassert.
1450         (live_buffer, set_marker_internal): New function.
1451         (Fset_marker, set_marker_restricted): Use set_marker_internal.
1452         (set_marker_both, set_marker_restricted_both): Use live_buffer.
1454 2012-07-22  Paul Eggert  <eggert@cs.ucla.edu>
1456         * buffer.h (struct buffer.indirections): Now ptrdiff_t, not int,
1457         as it's limited by the amount of memory, not by INT_MAX.
1459 2012-07-21  Eli Zaretskii  <eliz@gnu.org>
1461         * keyboard.c (keys_of_keyboard): Bind language-change to 'ignore'
1462         in special-event-map.  See the discussion at
1463         http://lists.gnu.org/archive/html/emacs-devel/2012-06/msg00417.html
1464         for the reasons.
1466         * w32menu.c (add_menu_item): Cast to ULONG_PTR when assigning
1467         info.dwItemData.  Fixes crashes on 64-bit Windows.
1468         Suggested by Fabrice Popineau <fabrice.popineau@supelec.fr>.
1470 2012-07-21  Jan Djärv  <jan.h.d@swipnet.se>
1472         * nsterm.m (accessibilityAttributeValue): New function. (Bug#11134).
1473         (conversationIdentifier): Return value is NSInteger.
1474         * nsterm.m (accessibilityAttributeValue): Surround with NS_IMPL_COCOA.
1476 2012-07-21  Chong Yidong  <cyd@gnu.org>
1478         * window.c (decode_any_window): Signal an error if the window is
1479         on a dead frame (Bug#11984).
1481 2012-07-20  Dmitry Antipov  <dmantipov@yandex.ru>
1483         Add indirection counting to speed up Fkill_buffer.
1484         * buffer.h (struct buffer): New member.
1485         * buffer.c (Fget_buffer_create): Set indirection counter to 0.
1486         (Fmake_indirect_buffer): Set indirection counter to -1, increment
1487         base buffer indirection counter.
1488         (compact_buffer): If ENABLE_CHECKING, verify indirection counters.
1489         (Fkill_buffer): Adjust indirection counters as needed, don't walk
1490         through buffer list if indirection counter is 0.
1492 2012-07-20  Dmitry Antipov  <dmantipov@yandex.ru>
1494         Extend the value returned by Fgarbage_collect with heap statistics.
1495         * alloc.c (Qheap): New symbol.
1496         (syms_of_alloc): DEFSYM it.
1497         (Fgarbage_collect): If DOUG_LEA_MALLOC, add mallinfo data.
1498         (Fmemory_free): Remove.
1499         (syms_of_alloc): Don't defsubr it.
1500         * buffer.c (Fcompact_buffer): Remove.
1501         (syms_of_buffer): Don't defsubr it.
1503 2012-07-20  Dmitry Antipov  <dmantipov@yandex.ru>
1505         Make maybe_gc inline.
1506         Verify that inlining is always possible (GCC 4.7.1, -O3 -Winline).
1507         * lisp.h (consing_since_gc, gc_relative_threshold)
1508         (memory_full_cons_threshold): Revert declaration.
1509         (maybe_gc): Remove prototype, define as inline.
1510         * alloc.c: Remove old commented-out code.
1511         (consing_since_gc, gc_relative_threshold)
1512         (memory_full_cons_threshold): Revert to global.
1513         (maybe_gc): Remove.
1515 2012-07-20  Dmitry Antipov  <dmantipov@yandex.ru>
1517         Simple wrapper for make_unibyte_string, adjust font_open_by_name.
1518         * lisp.h (build_unibyte_string): New function.
1519         * dosfns.c, fileio.c, fns.c, ftfont.c, process.c:
1520         * sysdep.c, w32fns.c, xfns.c: Use it.
1521         * font.c (font_open_by_name): Change 2nd and 3rd args to the only arg
1522         of type Lisp_Object to avoid redundant calls to make_unibyte_string.
1523         Adjust users accordingly.
1524         * font.h (font_open_by_name): Adjust prototype.
1526 2012-07-20  Dmitry Antipov  <dmantipov@yandex.ru>
1528         Cleanup calls to Fgarbage_collect.
1529         * lisp.h (maybe_gc): New prototype.
1530         (consing_since_gc, gc_relative_threshold, memory_full_cons_threshold):
1531         Remove declarations.
1532         * alloc.c (maybe_gc): New function.
1533         (consing_since_gc, gc_relative_threshold, memory_full_cons_threshold):
1534         Make them static.
1535         * bytecode.c (MAYBE_GC): Use maybe_gc.
1536         * eval.c (eval_sub, Ffuncall): Likewise.
1537         * keyboard.c (read_char): Likewise.  Adjust call to maybe_gc
1538         to avoid dependency from auto-save feature.
1540 2012-07-19  Paul Eggert  <eggert@cs.ucla.edu>
1542         * buffer.h (FOR_EACH_BUFFER): Rename from 'for_each_buffer'.
1543         (FOR_EACH_PER_BUFFER_OBJECT_AT): Rename from
1544         'for_each_per_buffer_object_at'.
1545         All uses changed.  It's better to use upper-case for macros that
1546         cannot be implemented as functions, to give the reader a clue
1547         that they're special.
1549 2012-07-19  Stefan Monnier  <monnier@iro.umontreal.ca>
1551         * alloc.c (Fgarbage_collect): Tweak docstring.
1553 2012-07-19  Dmitry Antipov  <dmantipov@yandex.ru>
1555         Tweak the value returned from Fgarbage_collect again.
1556         * alloc.c (Fgarbage_collect): New return value, as confirmed in
1557         http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00418.html.
1558         Adjust documentation.
1559         (total_vector_bytes): Rename to total_vector_slots, adjust
1560         accounting.
1561         (total_free_vector_bytes): Rename to total_free_vector_slots,
1562         adjust accounting.
1563         (Qstring_bytes, Qvector_slots): New symbols.
1564         (syms_of_alloc): DEFSYM them.
1566 2012-07-19  Dmitry Antipov  <dmantipov@yandex.ru>
1568         Buffer compaction primitive which may be used from Lisp.
1569         * buffer.c (compact_buffer, Fcompact_buffer): New function.
1570         (syms_of_buffer): Register Fcompact_buffer.
1571         * alloc.c (Fgarbage_collect): Use compact_buffer.
1572         * buffer.h (compact_buffer): New prototype.
1573         (struct buffer_text): New member.
1575 2012-07-19  Dmitry Antipov  <dmantipov@yandex.ru>
1577         New macro to iterate over all buffers, miscellaneous cleanups.
1578         * lisp.h (all_buffers): Remove declaration.
1579         * buffer.h (all_buffers): Add declaration, with comment.
1580         (for_each_buffer): New macro.
1581         * alloc.c (Fgarbage_collect, mark_object): Use it.
1582         * buffer.c (Fkill_buffer, Fbuffer_swap_text, Fset_buffer_multibyte)
1583         (init_buffer): Likewise.
1584         * data.c (Fset_default): Likewise.
1585         * coding.c (code_conversion_restore): Remove redundant check
1586         for dead buffer.
1587         * buffer.c (Fkill_buffer): Likewise.  Remove obsolete comment.
1589 2012-07-18  Andreas Schwab  <schwab@linux-m68k.org>
1591         Fix bug that created negative-length intervals.
1592         * intervals.c (merge_interval_right, merge_interval_left):
1593         Do not zero out this interval if it is absorbed by its children,
1594         as this interval's total length doesn't change in that case.  See
1595         <http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00403.html>.
1597 2012-07-18  Paul Eggert  <eggert@cs.ucla.edu>
1599         * alloc.c (Fmake_bool_vector): Fix off-by-8 bug
1600         when invoking (make-bool-vector N t) and N is a positive
1601         multiple of 8 -- the last 8 bits were mistakenly cleared.
1603         Remove some struct layout assumptions in bool vectors.
1604         * alloc.c (bool_header_size): New constant.
1605         (header_size, word_size): Move earlier, as they're now used earlier.
1606         Use 'word_size' in a few more places, where it's appropriate.
1607         (Fmake_bool_vector, sweep_vectors): Don't assume that there is no
1608         padding before the data member of a bool vector.
1609         (sweep_vectors): Use PSEUDOVECTOR_TYPEP, in an eassert, rather
1610         than doing the check by hand with an abort ().
1612 2012-07-18  Stefan Monnier  <monnier@iro.umontreal.ca>
1614         * eval.c (Fdefvar): Don't check constants since we only set the var if
1615         it's not yet defined anyway (bug#11904).
1617         * lisp.h (last_undo_boundary): Declare new var.
1618         * keyboard.c (command_loop_1): Set it.
1619         * cmds.c (Fself_insert_command): Use it to only remove boundaries that
1620         were auto-added by the command loop (bug#11774).
1622 2012-07-18  Andreas Schwab  <schwab@linux-m68k.org>
1624         * w32font.c (Qsymbol): Remove local definition.
1625         (syms_of_w32font): Don't DEFSYM it.
1627 2012-07-18  Dmitry Antipov  <dmantipov@yandex.ru>
1629         Fix sweep_vectors to handle large bool vectors correctly.
1630         * alloc.c (sweep_vectors): Account total_vector_bytes for
1631         bool vectors larger than VBLOCK_BYTES_MAX.
1633 2012-07-18  Chong Yidong  <cyd@gnu.org>
1635         * frame.c (x_set_frame_parameters): Revert bogus change introduced
1636         in 2012-05-25 commit by Paul Eggert (Bug#11738).
1638 2012-07-18  Dmitry Antipov  <dmantipov@yandex.ru>
1640         Return more descriptive data from Fgarbage_collect.
1641         Suggested by Stefan Monnier in
1642         http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00369.html.
1643         * alloc.c (bounded_number): New function.
1644         (total_buffers, total_vectors): New variable.
1645         (total_string_size): Rename to total_string_bytes, adjust users.
1646         (total_vector_size): Rename to total_vector_bytes, adjust users.
1647         (sweep_vectors): Account total_vectors and total_vector_bytes.
1648         (Fgarbage_collect): New return value.  Adjust documentation.
1649         (gc_sweep): Account total_buffers.
1650         (Fmemory_free, Fmemory_use_counts): Use bounded_number.
1651         (VECTOR_SIZE): Remove.
1652         * data.c (Qfloat, Qvector, Qsymbol, Qstring, Qcons): Make global.
1653         (Qinterval, Qmisc): New symbols.
1654         (syms_of_data): Initialize them.
1655         * lisp.h (Qinterval, Qsymbol, Qstring, Qmisc, Qvector, Qfloat)
1656         (Qcons, Qbuffer): New declarations.
1658 2012-07-17  Paul Eggert  <eggert@cs.ucla.edu>
1660         * alloc.c (Fmemory_free): Account for memory-free's own storage.
1661         Round up, not down.  Improve doc.
1663 2012-07-17  Dmitry Antipov  <dmantipov@yandex.ru>
1665         Restore old code in allocate_string_data to avoid Faset breakage.
1666         Reported by Julien Danjou <julien@danjou.info> in
1667         http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00371.html.
1668         * alloc.c (allocate_string_data): Restore old code with minor
1669         adjustments, fix comment to explain this subtle issue.
1671 2012-07-17  Eli Zaretskii  <eliz@gnu.org>
1673         Remove FILE_SYSTEM_CASE.
1674         * s/msdos.h (FILE_SYSTEM_CASE): Don't define.
1676         * fileio.c (FILE_SYSTEM_CASE): Don't define.
1677         (Ffile_name_directory, Fexpand_file_name): Don't use FILE_SYSTEM_CASE.
1678         Fixes problems on MS-DOS with Vtemp_file_name_pattern when
1679         call-process-region passes it through expand-file-name.
1681         * dired.c (file_name_completion): Don't use FILE_SYSTEM_CASE.
1683 2012-07-17  Andreas Schwab  <schwab@linux-m68k.org>
1685         Fix crash when creating indirect buffer (Bug#11917)
1686         * buffer.c (buffer_lisp_local_variables): Add argument CLONE.
1687         Don't handle unbound variables specially if non-zero.
1688         (Fbuffer_local_variables): Pass zero.
1689         (clone_per_buffer_values): Pass non-zero.
1691 2012-07-17  Andreas Schwab  <schwab@linux-m68k.org>
1693         * gnutls.c (emacs_gnutls_handshake): Revert last change.  Add QUIT
1694         to make the loop interruptible.
1696 2012-07-17  Andreas Schwab  <schwab@linux-m68k.org>
1698         * gnutls.c (emacs_gnutls_handshake): Only retry if
1699         GNUTLS_E_INTERRUPTED.
1701 2012-07-17  Dmitry Antipov  <dmantipov@yandex.ru>
1703         Cleanup and convert miscellaneous checks to eassert.
1704         * alloc.c (mark_interval): Fix comment, partially rephrase
1705         old comment from intervals.h (see below).
1706         * intervals.c (find_interval, adjust_intervals_for_insertion)
1707         (delete_interval, adjust_intervals_for_deletion)
1708         (graft_intervals_into_buffer, temp_set_point_both, copy_intervals):
1709         Convert to eassert.
1710         (adjust_intervals_for_insertion, make_new_interval):
1711         Remove obsolete and unused code.
1712         * intervals.h (struct interval): Remove obsolete comment.
1713         * textprotp.c (erase_properties): Remove unused code.
1714         (Fadd_text_properties, set_text_properties_1, Fremove_text_properties)
1715         (Fremove_list_of_text_properties): Convert to eassert.
1717 2012-07-17  Chong Yidong  <cyd@gnu.org>
1719         * editfns.c (Finsert_char): Doc fix.
1721 2012-07-17  Dmitry Antipov  <dmantipov@yandex.ru>
1723         Fix previous change to make Fmemory_free always accurate.
1724         * alloc.c (make_interval): Update total_free_intervals.
1725         (make_float): Likewise for total_free_floats.
1726         (free_cons, Fcons): Likewise for total_free_conses.
1727         (SETUP_ON_FREE_LIST, allocate_vector_from_block):
1728         Likewise for total_free_vector_bytes.
1729         (Fmake_symbol): Likewise for total_free_symbols.
1730         (bytes_free): Remove.
1732 2012-07-17  Dmitry Antipov  <dmantipov@yandex.ru>
1734         Simple free memory accounting feature.
1735         * alloc.c (bytes_free, total_free_vector_bytes): New variable.
1736         (sweep_vectors): Accumulate size of free vectors.
1737         (Fgarbage_collect): Setup bytes_free.
1738         (Fmemory_free): New function.
1739         (syms_of_alloc): Register it.
1741 2012-07-17  Dmitry Antipov  <dmantipov@yandex.ru>
1743         Cleanup overlays checking.
1744         * buffer.h (OVERLAY_VALID): Remove as useless synonym of OVERLAYP.
1745         * buffer.c (overlay_touches_p, recenter_overlay_lists): Change to
1746         eassert and OVERLAYP.
1747         (sort_overlays): Change to use OVERLAYP.
1749 2012-07-16  René Kyllingstad  <Rene@Kyllingstad.com>  (tiny change)
1751         * editfns.c (Finsert_char): Make it interactive, and make the
1752         second arg optional.  Copy interactive spec and docstring from
1753         ucs-insert.
1755 2012-07-17  Paul Eggert  <eggert@cs.ucla.edu>
1757         * floatfns.c (Fabs): Do not wrap fabs inside IN_FLOAT (Bug#11913).
1758         Unlike the other wrapped functions, fabs has an unspecified
1759         effect on errno.
1761 2012-07-16  Jan Djärv  <jan.h.d@swipnet.se>
1763         * nsterm.m (keyDown): Interpret flags without left/right bits
1764         as the left key (Bug#11670).
1766 2012-07-16  Dmitry Antipov  <dmantipov@yandex.ru>
1768         Remove empty and useless init functions.
1769         * lisp.h (init_character_once, init_fns, init_image)
1770         (init_filelock, init_sound): Remove prototype.
1771         * character.c (init_character_once): Remove.
1772         * filelock.c (init_filelock): Likewise.
1773         * fns.c (init_fns): Likewise.
1774         * image.c (init_image): Likewise.
1775         * sound.c (init_sound): Likewise.
1776         * emacs.c (main): Adjust accordingly.
1778 2012-07-16  Dmitry Antipov  <dmantipov@yandex.ru>
1780         * gtkutil.h: Tiny cleanups.
1781         (use_old_gtk_file_dialog): Remove useless declaration.
1782         (xg_uses_old_file_dialog): Add suggested const attribute.
1784 2012-07-15  Eli Zaretskii  <eliz@gnu.org>
1786         * bidi.c (MAX_STRONG_CHAR_SEARCH): New macro.
1787         (bidi_paragraph_init): Use it to limit search forward for a strong
1788         directional character in abnormally large paragraphs full of
1789         neutral or weak characters.  (Bug#11943)
1791 2012-07-15  Stefano Facchini  <stefano.facchini@gmail.com>  (tiny change)
1793         * gtkutil.c (xg_create_tool_bar): Apply "primary-toolbar" style to
1794         the toolbar (Bug#9451).
1795         (xg_make_tool_item): Give the widget event box a transparent
1796         background.
1798 2012-07-15  Dmitry Antipov  <dmantipov@yandex.ru>
1800         Cleanup basic allocation variables and functions.
1801         * alloc.c (ignore_warnings, init_intervals, init_float)
1802         (init_cons, init_symbol, init_marker): Remove.
1803         (interval_block_index): Initialize to INTERVAL_BLOCK_SIZE.
1804         (float_block_index): Initialize to FLOAT_BLOCK_SIZE.
1805         (cons_block_index): Initialize to CONS_BLOCK_SIZE.
1806         (symbol_block_size): Initialize to SYMBOL_BLOCK_SIZE.
1807         (marker_block_index): Initialize to MARKER_BLOCK_SIZE.
1808         (staticidx, init_alloc_once, init_strings, free_ablock):
1809         Remove redundant initialization.
1810         * fns.c (init_weak_hash_tables): Remove.
1811         * lisp.h (init_weak_hash_tables): Remove prototype.
1813 2012-07-15  Dmitry Antipov  <dmantipov@yandex.ru>
1815         Use zero_vector where appropriate.
1816         * alloc.c (zero_vector): Define as Lisp_Object.  Adjust users
1817         accordingly.
1818         * lisp.h (zero_vector): New declaration.
1819         * font.c (null_vector): Remove.
1820         (syms_of_font): Remove initialization and staticpro.
1821         (font_list_entities, font_find_for_lface): Change to use zero_vector.
1822         * keymap.c (Faccessible_keymaps): Likewise.
1824 2012-07-15  Leo Liu  <sdl.web@gmail.com>
1826         * fringe.c: Fix typo in comments.
1828 2012-07-14  Leo Liu  <sdl.web@gmail.com>
1830         * fringe.c: Add a new bitmap exclamation-mark.
1832 2012-07-14  Eli Zaretskii  <eliz@gnu.org>
1834         * gmalloc.c (GMALLOC_INHIBIT_VALLOC): Don't reference.
1836         * s/msdos.h (BSD_SYSTEM, DATA_START, GC_SETJMP_WORKS, HAVE_MOUSE)
1837         (HAVE_MENUS): Don't define, defined by editing config.in with
1838         msdos/sed2v2.inp.
1839         (GMALLOC_INHIBIT_VALLOC): Don't define.
1840         (MODE_LINE_BINARY_TEXT): Remove, not used anymore.
1842 2012-07-14  Juanma Barranquero  <lekktu@gmail.com>
1844         * s/ms-w32.h (GC_SETJMP_WORKS, GC_MARK_STACK): Set in nt/config.nt.
1846 2012-07-14  Glenn Morris  <rgm@gnu.org>
1848         * s/aix4-2.h, s/freebsd.h, s/gnu-linux.h, s/hpux10-20.h:
1849         * s/irix6-5.h, s/netbsd.h, s/sol2-6.h, s/unixware.h:
1850         Let configure set GC_SETJMP_WORKS, GC_MARK_STACK.
1852 2012-07-13  Glenn Morris  <rgm@gnu.org>
1854         * s/gnu-linux.h (GC_MARK_SECONDARY_STACK): Let configure set it.
1856         * s/usg5-4-common.h (SETUP_SLAVE_PTY): Let configure set it.
1857         * s/irix6-5.h (SETUP_SLAVE_PTY): No more need to unset it.
1859 2012-07-13  Jan Djärv  <jan.h.d@swipnet.se>
1861         * nsterm.m (uRect): Only define if NS_IMPL_GNUSTEP.
1862         (x_free_frame_resources): Pass x_free_frame_resources to NSTRACE.
1863         (ns_lisp_to_color, ns_string_to_lispmod, ns_term_init)
1864         (ns_term_shutdown, requestService, initFrameFromEmacs): Use SSDATA
1865         where appropriate.
1866         (ns_exec_path, ns_load_path, changeFont): Put () around assignment used
1867         as boolean expression.
1868         (x_set_window_size): Remove unused variable toolbar.
1869         (ns_get_color_default, ns_mod_to_lisp): Remove.
1870         (ns_mouse_position): Remove unused variables xchar and ychar.
1871         (ns_compute_glyph_string_overhangs): Remove unused variable face.
1872         (ns_set_vertical_scroll_bar): Remove unused variable count.
1873         (ns_delete_terminal): Remove unused variable i.
1874         (ns_term_init): Remove unused variables r, g and b.
1875         (mouseDown): Remove unused variable window.
1876         (windowDidResize): Move definition of theWindow inside NS_IMPL_GNUSTEP.
1877         (initFrameFromEmacs): Remove unused variable vbextra.
1878         (mouseEntered): Remove unused variables p and dpyinfo.
1879         (mouseExited): Remove unused variables p and r.
1880         (ns_define_frame_cursor, ns_clear_frame_area)
1881         (ns_draw_window_cursor, ns_initialize_display_info): Make static.
1882         (menuDown): Assign [sender tag] to variable and cast the variable.
1884         * nsterm.h (menuDown): Add id as type to argument sender.
1885         (ns_display_info_for_name): Add Lisp_Object argument.
1886         (ns_term_init): Add Lisp_Object argument.
1887         (ns_map_event_to_object): Add void argument.
1888         (ns_string_from_pasteboard, ns_string_to_pasteboard): Add correct
1889         prototype with arguments and only declare if __OBJC__.
1890         (nxatoms_of_nsselect): Add void argument.
1891         (ns_lisp_to_cursor_type): Add Lisp_Object argument.
1892         (ns_alloc_autorelease_pool): Add void argument.
1893         (ns_release_autorelease_pool): Add void* argument.
1894         (ns_get_defaults_value): Add const char* argument.
1896         * nsmenu.m (ns_update_menubar, ns_menu_show, process_dialog)
1897         (initFromContents): Use SSDATA where appropriate.
1898         (ns_update_menubar): Add braces to ambigous if-else.
1899         (initWithTitle): Put () around assignment in if statement.
1900         (ns_menu_show): Remove unused variables window and keymap.
1901         (update_frame_tool_bar): Remove unused variable selected_p.
1902         (initWithContentRect): Remove unused variable this_cmd_name.
1904         * nsimage.m (ns_load_image, allocInitFromFile): Use SSDATA where
1905         appropriate.
1906         (setXBMColor): Remove unused variable len.
1907         (setPixmapData): Put () around assignment in loop statement.
1909         * nsfont.m (ns_get_family, ns_lang_to_script, ns_otf_to_script)
1910         (ns_registry_to_script, ns_get_req_script, nsfont_open): Use SSDATA
1911         where appropriate.
1912         (ns_get_covering_families, ns_findfonts, nsfont_list_family): Put ()
1913         around assignment in loop statement.
1914         (nsfont_open): Remove unused variable i.
1915         (nsfont_open): Remove unused variable len.
1916         (nsfont_draw): Remove unused variable cs.
1918         * nsfns.m (x_set_icon_name, ns_set_name_internal)
1919         (ns_set_name_as_filename, ns_implicitly_set_icon_type)
1920         (x_set_icon_type, ns_lisp_to_cursor_type, Fns_read_file_name)
1921         (Fns_get_resource, Fns_set_resource, Fx_open_connection)
1922         (Fns_font_name, Fns_perform_service)
1923         (Fns_convert_utf8_nfd_to_nfc, ns_do_applescript)
1924         (Fns_do_applescript, Fx_show_tip): Use SSDATA where appropriate.
1925         (ns_set_name): Remove unused variable view.
1926         (x_set_menu_bar_lines): Remove unused variable olines.
1927         (x_set_tool_bar_lines): Remove unused variable root_window.
1928         (Fns_list_colors): Put () around assignment in while statement.
1929         (Fns_perform_service): Remove unused variable len.
1930         (Fns_display_usable_bounds): Remove unused variable top.
1931         (syms_of_nsfns): Remove unused variable i.
1933         * nsmenu.m (ns_update_menubar): Exchange place of argument 2 and 3 to
1934         memcpy (Bug#11907).
1936 2012-07-13  Kalle Kankare  <kalle.kankare@iki.fi>  (tiny change)
1938         * image.c (Fimagemagick_types): Initialize ex with GetExceptionInfo
1939         and free it with DestroyExceptionInfo (Bug#11558).
1941 2012-07-13  Juanma Barranquero  <lekktu@gmail.com>
1943         * s/ms-w32.h (FIRST_PTY_LETTER, HAVE_SOCKETS): Move to nt/config.nt.
1944         (HAVE_ATTRIBUTE_ALIGNED, HAVE_C99_STRTOLD, HAVE___BUILTIN_UNWIND_INIT):
1945         Set here, not in nt/config.nt.
1947 2012-07-13  Eli Zaretskii  <eliz@gnu.org>
1949         * xdisp.c (move_it_in_display_line_to): On GUI terminals, allow
1950         cursor overflow into the last glyph on display line when the right
1951         fringe is off.  (Bug#11832)
1953 2012-07-13  Paul Eggert  <eggert@cs.ucla.edu>
1955         * xdisp.c (produce_special_glyphs): Now static.
1956         * dispextern.h (produce_special_glyphs): Remove decl.
1958 2012-07-13  Glenn Morris  <rgm@gnu.org>
1960         * s/bsd-common.h, s/cygwin.h: Remove empty files.
1961         * s/freebsd.h, s/netbsd.h: Do not include bsd-common.h.
1963         * s/usg5-4-common.h (USG, USG5):
1964         * s/template.h (USG5, USG, HPUX, BSD4_2, BSD_SYSTEM):
1965         * s/sol2-6.h (SOLARIS2):
1966         * s/irix6-5.h (IRIX6_5):
1967         * s/hpux10-20.h (USG, USG5, HPUX):
1968         * s/gnu-linux.h (USG, GNU_LINUX):
1969         * s/freebsd.h (BSD_SYSTEM):
1970         * s/darwin.h (BSD4_2, BSD_SYSTEM, DARWIN_OS):
1971         * s/cygwin.h (CYGWIN):
1972         * s/bsd-common.h (BSD_SYSTEM, BSD4_2):
1973         * s/aix4-2.h (USG, USG5, _AIX): Move "system type" macros to configure.
1975 2012-07-13  BT Templeton  <bpt@hcoop.net>  (tiny change)
1977         * nsfont.m (ns_charset_covers): Don't abort if no bitmap (Bug#11853).
1979 2012-07-13  Glenn Morris  <rgm@gnu.org>
1981         * s/usg5-4-common.h (NSIG_MINIMUM): Let configure set it.
1983         * s/gnu-linux.h, s/irix6-5.h: Let configure set ULIMIT_BREAK_VALUE.
1985         * process.c (init_process_emacs): Replace MIN_PTY_KERNEL_VERSION.
1986         * s/darwin.h (MIN_PTY_KERNEL_VERSION): Remove single-use macro.
1988 2012-07-12  Glenn Morris  <rgm@gnu.org>
1990         * s/darwin.h (SYSTEM_PURESIZE_EXTRA): Move to configure.
1992         * process.c (init_process_emacs): Rename from init_process.
1993         The old name is also the name of a Mach system call.
1994         * lisp.h, emacs.c: Update for this name change.
1995         * nsgui.h, sysselect.h, s/darwin.h: Remove workaround that is no
1996         longer needed.
1998 2012-07-12  Eli Zaretskii  <eliz@gnu.org>
2000         * xdisp.c (insert_left_trunc_glyphs): Fix incorrect size in
2001         memmove call that removes glyphs covered by the left truncation
2002         glyph.  Improve commentary.
2003         (display_line): Fix display of continuation glyphs on GUI frames
2004         when the right fringe is turned off and variable-size fonts are
2005         used in the window.  Move the code that appends a stretch glyph to
2006         produce_special_glyphs, so that it could be used for truncation
2007         and continuation glyphs alike.
2008         (produce_special_glyphs) [HAVE_WINDOW_SYSTEM]: Produce a stretch
2009         glyph of a suitably computed width, to align the special glyphs at
2010         the window margin.  Code moved from display_line.  (Bug#11832)
2012 2012-07-12  Glenn Morris  <rgm@gnu.org>
2014         * s/aix4-2.h, s/hpux10-20.h: Let configure set NO_EDITRES.
2016         * s/gnu-linux.h, s/hpux10-20.h:
2017         Do not unconditionally define HAVE_XRMSETDATABASE.
2019         * s/gnu-linux.h (UNIX98_PTYS): Let configure set it.
2021 2012-07-12  Paul Eggert  <eggert@cs.ucla.edu>
2023         Fix typos that broke OS X build.
2024         Reported by Randal L. Schwartz in
2025         <http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00225.html>.
2026         * nsterm.m (ns_timeout): Add missing local decl.
2027         (ns_get_color): snprintf -> sprintf, to fix typo.
2029 2012-07-12  Glenn Morris  <rgm@gnu.org>
2031         * src/s/aix4-2.h, src/s/cygwin.h, src/s/darwin.h:
2032         * src/s/gnu-linux.h, src/s/hpux10-20.h, src/s/irix6-5.h:
2033         * src/s/sol2-6.h, src/s/unixware.h, src/s/usg5-4-common.h:
2034         Move PTY_NAME_SPRINTF, PTY_TTY_NAME_SPRINTF to configure.
2036         * s/cygwin.h, s/darwin.h, s/gnu-linux.h, s/irix6-5.h:
2037         Move PTY_OPEN to configure.
2039         * s/aix4-2.h, s/bsd-common.h, s/cygwin.h, s/darwin.h:
2040         * s/gnu-linux.h, s/hpux10-20.h, s/irix6-5.h, s/template.h:
2041         * s/usg5-4-common.h: Move FIRST_PTY_LETTER, PTY_ITERATION to configure.
2043 2012-07-12  Dmitry Antipov  <dmantipov@yandex.ru>
2045         Use empty_unibyte_string where applicable.
2046         * keyboard.c (parse_tool_bar_item): Use empty_unibyte_string.
2047         * lread.c (read1): Likewise.
2048         * xsettings.c (syms_of_xsettings): Likewise.
2050 2012-07-12  Glenn Morris  <rgm@gnu.org>
2052         * s/cygwin.h (G_SLICE_ALWAYS_MALLOC):
2053         * s/freebsd.h (BROKEN_PTY_READ_AFTER_EAGAIN):
2054         * s/irix6-5.h (SETPGRP_RELEASES_CTTY, PREFER_VSUSP):
2055         * s/hpux10-20.h (RUN_TIME_REMAP):
2056         * s/bsd-common.h (TABDLY): Move to configure.
2058         * s/hpux10-20.h, s/sol2-6.h: Move XOS_NEEDS_TIME_H to configure.
2060         * s/bsd-common.h, s/darwin.h: Move TAB3 to configure.
2062         * s/aix4-2.h (BROKEN_FIONREAD, BROKEN_SIGAIO, BROKEN_SIGPTY)
2063         (BROKEN_SIGPOLL, BROKEN_GET_CURRENT_DIR_NAME): Let configure set them.
2065         * s/darwin.h (NO_ABORT, NO_MATHERR): Let configure set them.
2067         * s/bsd-common.h, s/cygwin.h, s/gnu-linux.h, s/irix6-5.h:
2068         * s/template.h: Move NARROWPROTO to configure.
2070 2012-07-11  Glenn Morris  <rgm@gnu.org>
2072         * s/gnu-linux.h, s/sol2-6.h: No longer define POSIX,
2073         unused since 2011-01-17 change to systty.h.
2075         * s/aix4-2.h, s/bsd-common.h, s/cygwin.h, s/darwin.h, s/gnu-linux.h:
2076         * s/hpux10-20.h, s/template.h, s/usg5-4-common.h:
2077         Move HAVE_PTYS and HAVE_SOCKETS to configure.
2079 2012-07-11  Paul Eggert  <eggert@cs.ucla.edu>
2081         * s/sol2-6.h (HAVE_LIBKSTAT): Remove.  (Bug#11914)
2083 2012-07-11  Glenn Morris  <rgm@gnu.org>
2085         * s/darwin.h, s/gnu-linux.h, s/template.h:
2086         Move INTERRUPT_INPUT to configure.
2088 2012-07-11  Dmitry Antipov  <dmantipov@yandex.ru>
2090         Minor adjustments to interning code.
2091         * lisp.h (intern, intern_c_string): Redefine as static inline
2092         wrappers for intern_1 and intern_c_string_1, respectively.
2093         (intern_1, intern_c_string_1): Rename prototypes.
2094         * lread.c (intern_1, intern_c_string_1, oblookup):
2095         Simplify Vobarray checking.
2096         * font.c (font_intern_prop): Likewise.  Adjust comment.
2097         * w32font.c (intern_font_name): Likewise.
2099 2012-07-11  Andreas Schwab  <schwab@linux-m68k.org>
2101         * gnutls.c (Fgnutls_boot): Properly parse :keylist argument.
2103         * coding.c (Fdefine_coding_system_internal): Use XCAR/XCDR instead
2104         of Fcar/Fcdr if possible.
2105         * font.c (check_otf_features): Likewise.
2106         * fontset.c (Fnew_fontset): Likewise.
2107         * gnutls.c (Fgnutls_boot): Likewise.
2108         * minibuf.c (read_minibuf): Likewise.
2109         * msdos.c (IT_set_frame_parameters): Likewise.
2110         * xmenu.c (Fx_popup_dialog): Likewise.
2111         * w32menu.c (Fx_popup_dialog): Likewise.
2113 2012-07-11  Glenn Morris  <rgm@gnu.org>
2115         * s/bsd-common.h, s/cygwin.h: No need to undefine INTERRUPT_INPUT,
2116         since nothing has defined it on these platforms.
2118         * s/aix4-2.h, s/bsd-common.h, s/cygwin.h, s/gnu-linux.h:
2119         * s/irix6-5.h: Move SIGNALS_VIA_CHARACTERS to configure.
2121         * s/aix4-2.h, s/bsd-common.h, s/cygwin.h, s/darwin.h:
2122         * s/gnu-linux.h, s/hpux10-20.h, s/template.h, s/usg5-4-common.h:
2123         Move CLASH_DETECTION to configure.
2125         * s/gnu.h: Remove file, which is now empty.
2127         * s/gnu.h, s/gnu-linux.h:
2128         Move GNU_LIBRARY_PENDING_OUTPUT_COUNT to configure.
2130 2012-07-11  John Wiegley  <johnw@newartisans.com>
2132         * alloc.c (mark_memory): Guard the "no_address_safety_analysis"
2133         function attribute, so we only use it if it exists in the
2134         compiler.
2136 2012-07-11  Dmitry Antipov  <dmantipov@yandex.ru>
2138         Avoid call to strlen in fast_c_string_match_ignore_case.
2139         * search.c (fast_c_string_match_ignore_case): Change to use
2140         length argument.  Adjust users accordingly.
2141         * lisp.h (fast_c_string_match_ignore_case): Adjust prototype.
2143 2012-07-11  Paul Eggert  <eggert@cs.ucla.edu>
2145         Assume mkdir, rmdir.
2146         * sysdep.c (mkdir) [!HAVE_MKDIR]: Remove.
2147         * sysdep.c (rmdir) [!HAVE_RMDIR]: Remove.
2149         Assume rename.
2150         * sysdep.c (rename) [!HAVE_RENAME]: Remove.
2152         Assume perror.
2153         * s/hpux10-20.h (HAVE_PERROR): Remove.
2154         * sysdep.c (perror) [HPUX && !HAVE_PERROR]:
2155         Remove dummy definition, as this problem was obsolete long ago.
2157         Assume strerror.
2158         * sysdep.c (strerror) [!HAVE_STRERROR && !WINDOWSNT]: Remove.
2160 2012-07-11  Dmitry Antipov  <dmantipov@yandex.ru>
2162         Avoid calls to strlen in font processing functions.
2163         * font.c (font_parse_name, font_parse_xlfd, font_parse_fcname)
2164         (font_open_by_name): Change to use length argument.
2165         Adjust users accordingly.
2166         * font.h (font_open_by_name, font_parse_xlfd, font_unparse_xlfd):
2167         Adjust prototypes.
2168         * xfont.c (xfont_decode_coding_xlfd, font_unparse_xlfd):
2169         Change to return ptrdiff_t.
2170         (xfont_list_pattern, xfont_match): Use length returned by
2171         xfont_decode_coding_xlfd.
2172         * xfns.c (x_default_font_parameter): Omit useless xstrdup.
2174 2012-07-11  Glenn Morris  <rgm@gnu.org>
2176         * s/darwin.h, s/freebsd.h, s/netbsd.h:
2177         Move DONT_REOPEN_PTY to configure.
2179         * sound.c (DEFAULT_SOUND_DEVICE) [!WINDOWSNT]:
2180         * s/netbsd.h (DEFAULT_SOUND_DEVICE): Let configure set it.
2182 2012-07-10  Paul Eggert  <eggert@cs.ucla.edu>
2184         Remove "#define unix" that is no longer needed (Bug#11905).
2185         * s/aix4-2.h (unix): Remove; no longer needed.
2187         EMACS_TIME simplification (Bug#11875).
2188         This replaces macros (which typically do not work in GDB)
2189         with functions, typedefs and enums, making the code easier to debug.
2190         The functional style also makes code easier to read and maintain.
2191         * systime.h: Include <sys/time.h> on all hosts, not just if
2192         WINDOWSNT, since 'struct timeval' is needed in general.
2193         (EMACS_TIME): Now a typedef, not a macro.
2194         (EMACS_TIME_RESOLUTION, LOG10_EMACS_TIME_RESOLUTION): Now constants,
2195         not macros.
2196         (EMACS_SECS, EMACS_NSECS, EMACS_TIME_SIGN, EMACS_TIME_VALID_P)
2197         (EMACS_TIME_FROM_DOUBLE, EMACS_TIME_TO_DOUBLE, EMACS_TIME_EQ)
2198         (EMACS_TIME_NE, EMACS_TIME_GT, EMACS_TIME_GE, EMACS_TIME_LT)
2199         (EMACS_TIME_LE): Now functions, not macros.
2200         (EMACS_SET_SECS, EMACS_SET_NSECS, EMACS_SET_SECS_NSECS)
2201         (EMACS_SET_USECS, EMACS_SET_SECS_USECS): Remove these macros,
2202         which are not functions.  All uses rewritten to use:
2203         (make_emacs_time): New function.
2204         (EMACS_SECS_ADDR, EMACS_SET_INVALID_TIME, EMACS_GET_TIME)
2205         (EMACS_ADD_TIME, EMACS_SUB_TIME): Remove these macros, which are
2206         not functions.  All uses rewritten to use the following, respectively:
2207         (emacs_secs_addr, invalid_emacs_time, get_emacs_time)
2208         (add_emacs_time, sub_emacs_time): New functions.
2209         * atimer.c: Don't include <sys/time.h>, as "systime.h" does this.
2210         * fileio.c (Fcopy_file):
2211         * xterm.c (XTflash): Get the current time closer to when it's used.
2212         * makefile.w32-in ($(BLD)/atimer.$(O)): Update dependencies.
2214         * bytecode.c (targets): Suppress -Woverride-init warnings.
2216         Simplify by avoiding confusing use of strncpy etc.
2217         * doc.c (Fsnarf_documentation):
2218         * fileio.c (Ffile_name_directory, Fsubstitute_in_file_name):
2219         * frame.c (Fmake_terminal_frame):
2220         * gtkutil.c (get_utf8_string):
2221         * lread.c (openp):
2222         * nsmenu.m (ns_update_menubar):
2223         * regex.c (regerror):
2224         Prefer memcpy to strncpy and strncat when either will do.
2225         * fileio.c (Fsubstitute_in_file_name):
2226         * keyboard.c (MULTI_LETTER_MOD, parse_modifiers_uncached)
2227         (menu_separator_name_p):
2228         * nsmenu.m (ns_update_menubar):
2229         Prefer memcmp to strncmp when either will do.
2230         * nsterm.m: Include <ftoastr.h>.
2231         (ns_get_color):
2232         * s/gnu-linux.h, s/sol2-6.h, s/unixware.h (PTY_TTY_NAME_SPRINTF):
2233         Prefer snprintf to strncpy.
2234         * nsterm.m (ns_term_init):
2235         * widget.c (set_frame_size) [0]: Prefer xstrdup to xmalloc + strncpy.
2236         * nsterm.m (ns_term_init):
2237         Avoid the need for strncpy, by using build_string or
2238         make_unibyte_string directly.  Use dtoastr, not snprintf.
2239         * process.c (Fmake_network_process): Diagnose service names that
2240         are too long, rather than silently truncating them or creating
2241         non-null-terminated names.
2242         (Fnetwork_interface_info): Likewise, for interface names.
2243         * sysdep.c (system_process_attributes) [GNU_LINUX]:
2244         Prefer sprintf to strncat.
2245         * xdisp.c (debug_method_add) [GLYPH_DEBUG]:
2246         Prefer vsnprintf to vsprintf + strncpy.
2248 2012-07-10  Glenn Morris  <rgm@gnu.org>
2250         * dispnew.c (PENDING_OUTPUT_COUNT) [!__GNU_LIBRARY__]:
2251         Clarify fallback case.
2253 2012-07-10  Dmitry Antipov  <dmantipov@yandex.ru>
2255         Use XCAR and XCDR instead of Fcar and Fcdr where possible.
2256         * callint.c, coding.c, doc.c, editfns.c, eval.c, font.c, fontset.c,
2257         * frame.c, gnutls.c, minibuf.c, msdos.c, textprop.c, w32fns.c,
2258         * w32menu.c, window.c, xmenu.c: Change to use XCAR and XCDR
2259         where argument type is known to be a Lisp_Cons.
2261 2012-07-10  Tom Tromey  <tromey@redhat.com>
2263         * bytecode.c (BYTE_CODE_THREADED): New macro.
2264         (BYTE_CODES): New macro.  Replaces all old byte-code defines.
2265         (enum byte_code_op): New type.
2266         (CASE, NEXT, FIRST, CASE_DEFAULT, CASE_ABORT): New macros.
2267         (exec_byte_code): Use them.  Use token threading when applicable.
2269 2012-07-10  Dmitry Antipov  <dmantipov@yandex.ru>
2271         Optimize pure C strings initialization.
2272         * lisp.h (make_pure_string): Fix prototype.
2273         (build_pure_c_string): New function, defined as static inline.  This
2274         provides a better opportunity to optimize away calls to strlen when
2275         the function is called with compile-time constant argument.
2276         * alloc.c (make_pure_c_string): Fix comment.  Change to add nchars
2277         argument, adjust users accordingly.  Use build_pure_c_string where
2278         appropriate.
2279         * buffer.c, coding.c, data.c, dbusbind.c, fileio.c, fontset.c, frame.c,
2280         * keyboard.c, keymap.c, lread.c, search.c, syntax.c, w32fns.c, xdisp.c,
2281         * xfaces.c, xfns.c, xterm.c: Use build_pure_c_string where appropriate.
2283 2012-07-10  Dmitry Antipov  <dmantipov@yandex.ru>
2285         Avoid calls to strlen in miscellaneous functions.
2286         * buffer.c (init_buffer): Use precalculated len, adjust if needed.
2287         * font.c (Ffont_xlfd_name): Likewise.  Change to call make_string.
2288         * lread.c (openp): Likewise.
2290 2012-07-10  Dmitry Antipov  <dmantipov@yandex.ru>
2292         Avoid calls to strlen in path processing functions.
2293         * fileio.c (file_name_as_directory): Add comment.  Change to add
2294         srclen argument and return the length of result.  Adjust users
2295         accordingly.
2296         (directory_file_name): Fix comment.  Change to add srclen argument,
2297         swap 1st and 2nd arguments to obey the common convention.
2298         Adjust users accordingly.
2299         * filelock.c (fill_in_lock_file_name): Avoid calls to strlen.
2301 2012-07-10  Glenn Morris  <rgm@gnu.org>
2303         * s/cygwin.h, s/darwin.h, s/freebsd.h, s/netbsd.h, s/unixware.h:
2304         Move PENDING_OUTPUT_COUNT definition to configure.
2306         * s/irix6-5.h (DATA_START, DATA_SEG_BITS):
2307         * s/hpux10-20.h (DATA_SEG_BITS, DATA_START):
2308         * s/gnu.h (DATA_START): Move definitions to configure.
2310         * s/irix6-5.h (SETUP_SLAVE_PTY, PTY_NAME_SPRINTF): Drop ifdef guards.
2311         We include usg5-4-common.h, which defines them both.
2313         * s/gnu.h: Don't include fcntl.h (every file in Emacs that uses
2314         O_RDONLY already includes it).
2316         Stop ns builds setting the EMACSLOADPATH environment variable.
2317         * nsterm.m (ns_load_path): Rename from ns_init_paths.
2318         Now it does not set EMACSLOADPATH, just returns the load-path string.
2319         * nsterm.h: Update accordingly.
2320         * lread.c [HAVE_NS]: Include nsterm.h.
2321         (init_lread) [HAVE_NS]: Use ns_load_path.
2322         * emacs.c (main) [HAVE_NS]: No longer call ns_init_paths.
2324 2012-07-09  Glenn Morris  <rgm@gnu.org>
2326         * s/gnu.h (SIGNALS_VIA_CHARACTERS): No need to define it here,
2327         since the included bsd-common.h does so.
2329         Stop ns builds setting the EMACSPATH environment variable.
2330         * nsterm.m (ns_exec_path): New function, split from ns_init_paths.
2331         (ns_init_paths): Do not set EMACSPATH.
2332         * nsterm.h (ns_exec_path): Add it.
2333         * callproc.c (init_callproc_1, init_callproc) [HAVE_NS]:
2334         Use ns_exec_path.
2336         * nsterm.m, nsterm.h (ns_etc_directory): Fix type, empty return.
2338 2012-07-09  Paul Eggert  <eggert@cs.ucla.edu>
2340         * process.c (wait_reading_process_output): 'waitchannels' was unset
2341         when read_kbd || !NILP (wait_for_cell); fix this.
2343         Add GCC-style 'const' attribute to functions that can use it.
2344         * character.h (char_resolve_modifier_mask):
2345         * keyboard.h (make_ctrl_char):
2346         * lisp.h (multibyte_char_to_unibyte, multibyte_char_to_unibyte_safe)
2347         (init_character_once, next_almost_prime, init_fns, init_image)
2348         (flush_pending_output, init_sound):
2349         * mem-limits.h (start_of_data):
2350         * menu.h (finish_menu_items):
2351         Add ATTRIBUTE_CONST.
2352         * emacs.c (DEFINE_DUMMY_FUNCTION):
2353         Declare the dummy function with ATTRIBUTE_CONST.
2354         * lisp.h (Fbyteorder, Fmax_char, Fidentity):
2355         Add decls with ATTRIBUTE_CONST.
2357         Minor improvements to make_formatted_string.
2358         * alloc.c (make_formatted_string): Prefer int to ptrdiff_t
2359         where int is good enough, as vsprintf returns an int.
2360         * lisp.h (make_formatted_string): Add ATTRIBUTE_FORMAT_PRINTF.
2362 2012-07-09  Dmitry Antipov  <dmantipov@yandex.ru>
2364         Use make_formatted_string to avoid double length calculation.
2365         * lisp.h (make_formatted_string): New prototype.
2366         * alloc.c (make_formatted_string): New function.
2367         * buffer.c (Fgenerate_new_buffer_name): Use it.
2368         * dbus.c (syms_of_dbusbind): Likewise.
2369         * editfns.c (Fcurrent_time_zone): Likewise.
2370         * filelock.c (get_boot_time): Likewise.
2371         * frame.c (make_terminal_frame, set_term_frame_name)
2372         (x_report_frame_params): Likewise.
2373         * image.c (gs_load): Likewise.
2374         * minibuf.c (get_minibuffer): Likewise.
2375         * msdos.c (dos_set_window_size): Likewise.
2376         * process.c (make_process): Likewise.
2377         * xdisp.c (ensure_echo_area_buffers): Likewise.
2378         * xsettings.c (apply_xft_settings): Likewise.
2380 2012-07-09  Glenn Morris  <rgm@gnu.org>
2382         Stop ns builds polluting the environment with EMACSDATA, EMACSDOC.
2383         * nsterm.m (ns_etc_directory): New function, split from ns_init_paths.
2384         (ns_init_paths): Do not set EMACSDATA, EMACSDOC.
2385         * nsterm.h (ns_etc_directory): Add it.
2386         * callproc.c [HAVE_NS]: Include nsterm.h.
2387         (init_callproc_1, init_callproc) [HAVE_NS]: Use ns_etc_directory.
2389 2012-07-09  Dmitry Antipov  <dmantipov@yandex.ru>
2391         Move marker debugging code under MARKER_DEBUG.
2392         * marker.c (MARKER_DEBUG): Move marker debugging code under
2393         #ifdef MARKER_DEBUG because byte_char_debug_check is too slow
2394         for bootstrap with --enable-checking (~3x slowdown reported
2395         by Juanma Barranquero <lekktu@gmail.com>).
2396         (verify_bytepos): Move under #ifdef MARKER_DEBUG.
2398 2012-07-08  Paul Eggert  <eggert@cs.ucla.edu>
2400         * systime.h (EMACS_SUB_TIME): Clarify behavior with unsigned time_t.
2401         See <http://bugs.gnu.org/11825#29>.
2403 2012-07-08  Eli Zaretskii  <eliz@gnu.org>
2405         * xdisp.c (fill_glyphless_glyph_string): If the face of the glyph
2406         has no font, use the frame's font.  (Bug#11813)
2407         (display_line): Add commentary about displaying truncation glyphs
2408         on GUI frames.
2409         (produce_special_glyphs): Move here from term.c.
2411         * term.c (produce_special_glyphs): Move to xdisp.c.
2413         * dispextern.h (produce_special_glyphs): Move prototype to xdisp.c
2414         section.
2416 2012-07-07  Andreas Schwab  <schwab@linux-m68k.org>
2418         * xdisp.c (display_line): Avoid warning about implicit declaration
2419         of FRAME_FONT.
2421         * frame.c (get_frame_param): Define only if HAVE_WINDOW_SYSTEM.
2423         * lisp.h: Remove empty conditional.
2425 2012-07-07  Paul Eggert  <eggert@cs.ucla.edu>
2427         * lread.c (load_path_check): Now static.
2429         Fix some minor --with-ns problems found by static checking.
2430         * frame.c (Ftool_bar_pixel_width) [!FRAME_TOOLBAR_WIDTH]:
2431         (x_set_font) [!HAVE_X_WINDOWS]:
2432         * image.c (xpm_load_image) [HAVE_NS]:
2433         (x_to_xcolors) [!HAVE_X_WINDOWS && !HAVE_NTGUI]:
2434         (x_disable_image) [!HAVE_NS && !HAVE_NTGUI]:
2435         Remove unused local.
2436         (Fx_parse_geometry) [HAVE_NS]: Don't return garbage.
2437         (xpm_load_image) [HAVE_NS && !HAVE_XPM]: Remove unused label.
2438         * image.c (x_create_bitmap_from_file) [HAVE_NS]:
2439         (xpm_load_image, xpm_load) [HAVE_NS && !HAVE_XPM]:
2440         * nsselect.m (symbol_to_nsstring, ns_string_to_pasteboard_internal):
2441         * xfaces.c (Fx_load_color_file) [!HAVE_X_WINDOWS]:
2442         Fix pointer signedness problem.
2443         * xfaces.c (FRAME_X_FONT_TABLE):
2444         * xterm.h (FRAME_X_FONT_TABLE): Remove unused, incompatible macros.
2446 2012-07-07  Glenn Morris  <rgm@gnu.org>
2448         * lread.c (load_path_check): New function, split from init_lread.
2449         (init_lread): Reorganize.  Motivation:
2450         If EMACSLOADPATH is set, check/warn about that rather than the
2451         defaults, which we are not going to use.  Hence we can remove
2452         the turn_off_warning and WINDOWSNT || HAVE_NS tests.
2453         Don't warn if site-lisp directories are missing.
2454         If not installed, start from a blank load-path, since
2455         PATH_LOADSEARCH refers to the eventual installation directories.
2457 2012-07-07  Eli Zaretskii  <eliz@gnu.org>
2459         Support truncation and continuation glyphs on GUI frames, when
2460         fringes are disabled.  (Bug#11832)
2461         * xdisp.c (init_iterator): Get dimensions of truncation and
2462         continuation glyphs even if on GUI frames.
2463         Adjust it->last_visible_x on GUI frames when the left or right fringes,
2464         or both, are absent.
2465         (start_display, move_it_in_display_line_to): Handle the case of a
2466         GUI frame without a fringe to display continuation or truncation
2467         glyphs.
2468         (insert_left_trunc_glyphs): Support GUI frames: make sure
2469         truncation glyphs overwrite enough glyphs from the current line to
2470         have sufficient space in pixels.
2471         (display_line): Support truncation and continuation glyphs on GUI
2472         frames.  If some spare pixels are left on the line after inserting
2473         the truncation glyphs, fill that space with a stretch glyph of a
2474         suitably computed width.
2476         * term.c (produce_special_glyphs): Call PRODUCE_GLYPHS, not
2477         produce_glyphs, to support GUI sessions.
2479 2012-07-07  Paul Eggert  <eggert@cs.ucla.edu>
2481         * sysdep.c (ULLONG_MAX): Define if not already defined (Bug#11781).
2483         * sysdep.c (list_system_processes): Port to NetBSD-current (Bug#11797).
2485         Do not require float-time's arg to fit in time_t (Bug#11825).
2486         This works better on hosts where time_t is unsigned, and where
2487         float-time is applied to the (negative) difference between two times.
2488         * editfns.c (decode_time_components): Last arg is now double *,
2489         not int *, and means to store all the result as a double, without
2490         worrying about whether the seconds part fits in time_t.
2491         All callers changed.
2492         (lisp_time_argument): Remove last int * arg, as it's no longer needed.
2493         All callers changed.
2494         (Ffloat_time): Do not fail merely because the specified time falls
2495         outside of time_t range.
2497 2012-07-07  Glenn Morris  <rgm@gnu.org>
2499         * s/darwin.h (HAVE_RES_INIT, HAVE_LIBRESOLV):
2500         * s/hpux10-20.h (HAVE_RINT, HAVE_RANDOM):
2501         * s/unixware.h (HAVE_GETWD): Move undefs to configure (effectively).
2503 2012-07-07  Juanma Barranquero  <lekktu@gmail.com>
2505         * makefile.w32-in (DISPEXTERN_H, $(BLD)/regex.$(O)):
2506         Update dependencies.
2508         * s/ms-w32.h [_MSC_VER]: Remove strcasecmp, strncasecmp.
2510 2012-07-06  Paul Eggert  <eggert@cs.ucla.edu>
2512         Use c_strcasecmp for ASCII case-insensitive comparison (Bug#11786).
2513         * dispextern.h, nsfns.m, nsterm.m: Include <c-strcase.h>.
2514         * dispextern.h (xstrcasecmp): Rewrite using c_strcasecmp.
2515         * nsfns.m (x_get_string_resource): Use c_strncasecmp, not strncasecmp.
2516         * nsterm.m (ns_default): Use c_strcasecmp, not strcasecmp.
2517         * xfaces.c (xstrcasecmp) [!HAVE_STRCASECMP]: Remove.
2519         * xfont.c (compare_font_names): Redo to omit the need for casts.
2521 2012-07-06  Andreas Schwab  <schwab@linux-m68k.org>
2523         * xfns.c (Fx_change_window_property): Doc fix.
2524         * w32fns.c (Fx_change_window_property): Doc fix.
2526         * w32fns.c (Fx_window_property): Accept the same arguments as the
2527         X Windows version.  Doc fix.
2528         * xfns.c (Fx_window_property): Doc fix.  (Bug#11870)
2530 2012-07-06  Juanma Barranquero  <lekktu@gmail.com>
2531             Eli Zaretskii  <eliz@gnu.org>
2533         * s/ms-w32.h: Settings not specific to Windows moved to nt/config.nt.
2534         Windows-specific code from nt/config.nt moved here.
2535         Obsolete settings removed.
2537 2012-07-06  Paul Eggert  <eggert@cs.ucla.edu>
2539         * process.c: Avoid unnecessary calls to gettime.
2540         (wait_reading_process_output): Don't get the time of day
2541         when gobbling data immediately and not waiting, as there's no need
2542         for it in that case.  This removes a FIXME.
2544 2012-07-06  Jan Djärv  <jan.h.d@swipnet.se>
2546         * gtkutil.c (xg_event_is_for_scrollbar): Assign gwin when HAVE_GTK3
2547         is defined (Bug#11768).
2549 2012-07-06  Dmitry Antipov  <dmantipov@yandex.ru>
2551         Fix marker debugging code.
2552         * marker.c (byte_char_debug_check): Do not perform the check
2553         if buffer is not multibyte.
2554         (buf_charpos_to_bytepos, buf_bytepos_to_charpos):
2555         Call byte_char_debug_check with correct arguments.
2557 2012-07-06  Dmitry Antipov  <dmantipov@yandex.ru>
2559         Compile marker debugging code only if ENABLE_CHECKING is defined.
2560         * marker.c (byte_char_debug_check, count_markers):
2561         Use only if ENABLE_CHECKING is defined.
2562         (byte_debug_flag): Remove.
2563         (CONSIDER, buf_charpos_to_bytepos, buf_bytepos_to_charpos):
2564         Always call byte_char_debug_check if ENABLE_CHECKING is defined.
2566 2012-07-06  Dmitry Antipov  <dmantipov@yandex.ru>
2568         Avoid code repetition in marker-related functions.
2569         * marker.c (attach_marker): New function.
2570         (Fset_marker, set_marker_restricted, set_marker_both)
2571         (set_marker_restricted_both): Use it.
2572         (Fset_marker, set_marker_restricted, Fbuffer_has_markers_at):
2573         Consistently rename charno to charpos.
2574         (marker_position): Add eassert.
2575         (marker_byte_position): Convert to eassert.
2577 2012-07-06  Dmitry Antipov  <dmantipov@yandex.ru>
2579         Simplify list operations in unchain_overlay and unchain_marker.
2580         * buffer.c (unchain_overlay): Simplify.  Add comment.
2581         * marker.c (unchain_marker): Simplify.  Fix comments.
2583 2012-07-06  Dmitry Antipov  <dmantipov@yandex.ru>
2585         Introduce fast path for the widely used marker operation.
2586         * alloc.c (build_marker): New function.
2587         * lisp.h (build_marker): New prototype.
2588         * buffer.c (clone_per_buffer_values, Fmake_indirect_buffer): Use it.
2589         * composite.c (autocmp_chars): Likewise.
2590         * editfns.c (buildmark): Remove.
2591         (Fpoint_marker, Fpoint_min_marker, Fpoint_max_marker)
2592         (save_restriction_save): Use build_marker.
2593         * marker.c (buf_charpos_to_bytepos, buf_bytepos_to_charpos): Likewise.
2594         * window.c (save_window_save): Likewise.
2596 2012-07-06  Dmitry Antipov  <dmantipov@yandex.ru>
2598         Do not use Fdelete_overlay in delete_all_overlays
2599         to avoid redundant calls to unchain_overlay.
2600         * buffer.c (drop_overlay): New function.
2601         (delete_all_overlays, Fdelete_overlay): Use it.
2602         * minibuf.c (get_minibuffer): Fix comment.
2604 2012-07-06  Paul Eggert  <eggert@cs.ucla.edu>
2606         Port to OpenBSD 5.1 amd64.
2607         * sysdep.c [BSD_SYSTEM]: Include <sys/param.h> before <sys/sysctl.h>.
2608         This is needed for OpenBSD, and should be harmless on all BSD systems.
2609         Also, include <sys/sysctl.h>, as it should be available on all
2610         BSD_SYSTEM hosts given that we're already calling sysctl in that case.
2611         (list_system_processes) [__OpenBSD__]: Use DARWIN_OS style mib, but
2612         use p_pid member, not kp_proc.pid.
2614 2012-07-06  Glenn Morris  <rgm@gnu.org>
2616         * Makefile.in (emacs$(EXEEXT)): Don't check for load-path shadows.
2618 2012-07-05  Paul Eggert  <eggert@cs.ucla.edu>
2620         More xmalloc and related cleanup.
2621         * alloc.c, bidi.c, buffer.c, buffer.h, bytecode.c, callint.c:
2622         * callproc.c, charset.c, coding.c, composite.c, data.c, dispnew.c:
2623         * doc.c, editfns.c, emacs.c, eval.c, fileio.c, filelock.c, fns.c:
2624         * font.c, fontset.c, frame.c, fringe.c, ftfont.c, ftxfont.c, gmalloc.c:
2625         * gtkutil.c, image.c, keyboard.c, keymap.c, lread.c, macros.c, menu.c:
2626         * nsfns.m, nsfont.m, nsmenu.m, nsterm.m, print.c, process.c, ralloc.c:
2627         * regex.c, region-cache.c, scroll.c, search.c, sound.c, syntax.c:
2628         * sysdep.c, term.c, termcap.c, unexmacosx.c, window.c, xdisp.c:
2629         * xfaces.c, xfns.c, xftfont.c, xgselect.c, xmenu.c, xrdb.c, xselect.c:
2630         * xterm.c:
2631         Omit needless casts involving void * pointers and allocation.
2632         Prefer "P = xmalloc (sizeof *P)" to "P = xmalloc (sizeof (TYPE_OF_P))",
2633         as the former is more robust if P's type is changed.
2634         Prefer xzalloc to xmalloc + memset 0.
2635         Simplify malloc-or-realloc to realloc.
2636         Don't worry about xmalloc returning a null pointer.
2637         Prefer xstrdup to xmalloc + strcpy.
2638         * editfns.c (Fmessage_box): Grow message_text by at least 80 when
2639         growing it.
2640         * keyboard.c (apply_modifiers_uncached): Prefer local array to
2641         alloca of a constant.
2643 2012-07-05  Eli Zaretskii  <eliz@gnu.org>
2645         * xdisp.c (display_line): Fix horizontal pixel coordinates when
2646         hscroll is larger than the line width.  Fixes long and futile
2647         looping inside extend_face_to_end_of_line (on a TTY) producing
2648         glyphs that are not needed and thrown away.
2650 2012-07-05  Dmitry Antipov  <dmantipov@yandex.ru>
2652         * marker.c (set_marker_restricted_both): Simplify by using
2653         clip_to_bounds.
2655 2012-07-05  Paul Eggert  <eggert@cs.ucla.edu>
2657         * editfns.c (region_limit): Simplify by using clip_to_bounds.
2659 2012-07-05  Jan Djärv  <jan.h.d@swipnet.se>
2661         * gtkutil.c (gtk_scrollbar_new, gtk_box_new): Define when HAVE_GTK3 is
2662         not defined (Bug#11768).
2663         (xg_create_frame_widgets): Use gtk_plug_new_for_display (Bug#11768).
2664         (xg_create_frame_widgets, create_dialog, xg_get_file_with_chooser)
2665         (make_widget_for_menu_item, xg_make_tool_item): Use gtk_box_new
2666         followed by gtk_box_set_homogeneous (Bug#11768).
2667         (xg_update_menu_item): Use GTK_IS_BOX (Bug#11768).
2668         (update_theme_scrollbar_width, xg_create_scroll_bar):
2669         Use gtk_scrollbar_new (Bug#11768).
2670         (xg_event_is_for_scrollbar): Use Gdk Device functions for HAVE_GTK3.
2671         (is_box_type): New function (Bug#11768).
2672         (xg_tool_item_stale_p): Call is_box_type.
2673         (xg_initialize): Get settings by calling gtk_settings_get_for_screen
2674         with default display (Bug#11768).
2676 2012-07-05  Eli Zaretskii  <eliz@gnu.org>
2678         * xdisp.c (window_hscroll_limited): New function.
2679         (pos_visible_p, init_iterator): Use it to avoid overflow of pixel
2680         coordinates when window's hscroll is set to insanely large
2681         values.  (Bug#11857)
2683 2012-07-05  Juanma Barranquero  <lekktu@gmail.com>
2685         * makefile.w32-in ($(BLD)/dired.$(O), $(BLD)/fileio.$(O)): Fix typo.
2686         ($(BLD)/terminal.$(O), $(BLD)/syntax.$(O)): Update dependencies.
2688 2012-07-05  Dmitry Antipov  <dmantipov@yandex.ru>
2690         Cleanup xmalloc.
2691         * lisp.h (xzalloc): New prototype.  Omit needless casts.
2692         * alloc.c (xzalloc): New function.  Omit needless casts.
2693         * charset.c: Omit needless casts.  Convert all calls to
2694         xmalloc with following memset to xzalloc.
2695         * dispnew.c: Likewise.
2696         * fringe.c: Likewise.
2697         * image.c: Likewise.
2698         * sound.c: Likewise.
2699         * term.c: Likewise.
2700         * w32fns.c: Likewise.
2701         * w32font.c: Likewise.
2702         * w32term.c: Likewise.
2703         * xfaces.c: Likewise.
2704         * xfns.c: Likewise.
2705         * xterm.c: Likewise.
2706         * atimer.c: Omit needless casts.
2707         * buffer.c: Likewise.
2708         * callproc.c: Likewise.
2709         * ccl.c: Likewise.
2710         * coding.c: Likewise.
2711         * composite.c: Likewise.
2712         * doc.c: Likewise.
2713         * doprnt.c: Likewise.
2714         * editfns.c: Likewise.
2715         * emacs.c: Likewise.
2716         * eval.c: Likewise.
2717         * filelock.c: Likewise.
2718         * fns.c: Likewise.
2719         * gtkutil.c: Likewise.
2720         * keyboard.c: Likewise.
2721         * lisp.h: Likewise.
2722         * lread.c: Likewise.
2723         * minibuf.c: Likewise.
2724         * msdos.c: Likewise.
2725         * print.c: Likewise.
2726         * process.c: Likewise.
2727         * region-cache.c: Likewise.
2728         * search.c: Likewise.
2729         * sysdep.c: Likewise.
2730         * termcap.c: Likewise.
2731         * terminal.c: Likewise.
2732         * tparam.c: Likewise.
2733         * w16select.c: Likewise.
2734         * w32.c: Likewise.
2735         * w32reg.c: Likewise.
2736         * w32select.c: Likewise.
2737         * w32uniscribe.c: Likewise.
2738         * widget.c: Likewise.
2739         * xdisp.c: Likewise.
2740         * xmenu.c: Likewise.
2741         * xrdb.c: Likewise.
2742         * xselect.c: Likewise.
2744 2012-07-05  Paul Eggert  <eggert@cs.ucla.edu>
2746         * fileio.c (time_error_value): Check the right error number.
2747         Problem reported by Troels Nielsen in
2748         <http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00095.html>.
2750 2012-07-04  Paul Eggert  <eggert@cs.ucla.edu>
2752         * window.c (set_window_hscroll): Revert the 100000 hscroll limit.
2753         This should be fixed in a better way; see Eli Zaretskii in
2754         <http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00088.html>.
2755         (HSCROLL_MAX): Remove; this is now internal to set_window_hscroll.
2757         * fileio.c (time_error_value): Rename from special_mtime.
2758         The old name's problems were noted by Eli Zaretskii in
2759         <http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00087.html>.
2761         * emacs.c (gdb_pvec_type): Change it back to enum pvec_type.
2762         This variable's comment says Emacs needs at least one GDB-visible
2763         symbol of type enum pvec_type, to work around GDB problems.
2764         The symbol's value doesn't matter.
2766         * alloc.c (PSEUDOVECTOR_NBYTES): Remove stray ';'
2767         that causes compilation to fail on pre-C99 compilers.
2769 2012-07-04  Juanma Barranquero  <lekktu@gmail.com>
2771         * s/ms-w32.h (LISP_FLOAT_TYPE, HAVE_MEMCMP, HAVE_MEMCPY)
2772         (HAVE_MEMMOVE, HAVE_MEMSET): Don't set, obsolete.
2774 2012-07-04  Dmitry Antipov  <dmantipov@yandex.ru>
2776         * buffer.c (init_buffer_once): Fix initialization of
2777         headers for buffer_defaults and buffer_local_symbols.
2778         Reported by Juanma Barranquero <lekktu@gmail.com>.
2780 2012-07-04  Stefan Monnier  <monnier@iro.umontreal.ca>
2782         Turn VECTOR_FREE_LIST_FLAG into PVEC_FREE.
2783         * lisp.h (enum pvec_type): Use fewer bits.
2784         (PSEUDOVECTOR_SIZE_BITS): New constant.
2785         (PSEUDOVECTOR_SIZE_MASK, PVEC_TYPE_MASK): Use it.
2786         (XSETPVECTYPESIZE, XSETTYPED_PSEUDOVECTOR, DEFUN): Adapt code to
2787         change in pvec_type.
2788         (PSEUDOVECTOR_TYPEP): New macro.
2789         (TYPED_PSEUDOVECTORP): Use it.
2790         * fns.c (internal_equal): Adapt code to extract pvectype.
2791         * emacs.c (gdb_pvec_type): Update type.
2792         * alloc.c (PSEUDOVECTOR_NBYTES): New macro.
2793         (VECTOR_FREE_LIST_SIZE_MASK): Remove (=> PSEUDOVECTOR_SIZE_MASK).
2794         (VECTOR_FREE_LIST_FLAG): Remove (=> PVEC_FREE).
2795         (SETUP_ON_FREE_LIST): Use XSETPVECTYPESIZE.
2796         (sweep_vectors): Use it.  Use local var `total_bytes' instead of
2797         abusing vector->header.next.nbytes.
2798         (live_vector_p): Use PVEC_TYPE.
2799         (mark_object): Adapt code to extract pvectype.  Use switch.
2801 2012-07-04  Paul Eggert  <eggert@cs.ucla.edu>
2803         * doprnt.c (doprnt): Don't assume string length fits in 'int'.
2804         Tighten new eassert a bit.
2806 2012-07-04  Dmitry Antipov  <dmantipov@yandex.ru>
2808         Fix compilation with --enable-gcc-warnings and -O1
2809         optimization level.
2810         * doprnt.c (doprnt): Change type of tem to int, initialize
2811         to avoid compiler warning.  Add eassert.
2812         * search.c (simple_search): Initialize match_byte to avoid
2813         compiler warning.  Add eassert.
2815 2012-07-04  Paul Eggert  <eggert@cs.ucla.edu>
2817         Avoid weird behavior with large horizontal scrolls.
2818         Without this change, for example, large hscroll values would
2819         mess up Emacs's display on Fedora 15 x86, presumably due to
2820         overflows in int calculations in the display code.
2821         Also, if buffers had long lines, Emacs would freeze.
2822         * window.c (HSCROLL_MAX): Reduce to 100000, and make it visible to GDB.
2823         (set_window_hscroll): New function, containing the old guts of
2824         Fset_window_hscroll.  Return the clipped value.
2825         (Fset_window_hscroll, Fscroll_left, Fscroll_right): Use it.
2826         This avoids the need to check against PTRDIFF_MAX.
2828         * buffer.c (Fgenerate_new_buffer_name): Fix sprintf format mismatch.
2830 2012-07-04  Dmitry Antipov  <dmantipov@yandex.ru>
2832         * buffer.c (Fgenerate_new_buffer_name): Fix type mismatch.
2834 2012-07-04  Paul Eggert  <eggert@cs.ucla.edu>
2836         * regex.c: Suppress GCC warning on RHEL 6.  (Bug#11207)
2837         Conditionalize the pragmas on GCC 4.5 or later, not GCC 4.3 or later,
2838         since GCC 4.4.6 issues a bogus warning for them.
2840         Fix bugs in file timestamp newness comparisons.
2841         * fileio.c (Ffile_newer_than_file_p):
2842         * lread.c (Fload): Use full timestamp resolution of files,
2843         not just the 1-second resolution, so that files that are only
2844         slightly newer still count as newer.
2845         * fileio.c (Ffile_newer_than_file_p): Don't assume file
2846         timestamps fit in 'int'; this fixes a Y2038 bug on most hosts.
2848 2012-07-03  Paul Eggert  <eggert@cs.ucla.edu>
2850         * fileio.c: Improve handling of file time marker.  (Bug#11852)
2851         (special_mtime): New function.
2852         (Finsert_file_contents, Fverify_visited_file_modtime):
2853         Use it to set special mtime values consistently.
2855 2012-07-03  Andreas Schwab  <schwab@linux-m68k.org>
2857         * fileio.c (Finsert_file_contents): Properly handle st_mtime
2858         marker for non-existing file.  (Bug#11852)
2860 2012-07-03  Glenn Morris  <rgm@gnu.org>
2862         * lisp.h (Fread_file_name): Restore EXFUN (it's not a normal DEFUN
2863         and did not make it into globals.h).
2865 2012-07-03  Tom Tromey  <tromey@redhat.com>
2867         * window.c (Fset_window_margins, Fset_window_fringes)
2868         (Fset_window_scroll_bars, Fset_window_vscroll): No longer static.
2869         * textprop.c (Fprevious_property_change): No longer static.
2870         * syntax.c (Fsyntax_table_p): No longer static.
2871         * process.c (Fget_process, Fprocess_datagram_address): No longer
2872         static.
2873         * keymap.c (Flookup_key, Fcopy_keymap): No longer static.
2874         * keyboard.c (Fcommand_execute): No longer static.
2875         Remove EXFUN.
2876         * insdel.c (Fcombine_after_change_execute): No longer static.
2877         * image.c (Finit_image_library): No longer static.
2878         * fileio.c (Fmake_symbolic_link): No longer static.
2879         * eval.c (Ffetch_bytecode): No longer static.
2880         * editfns.c (Fuser_full_name): No longer static.
2881         * doc.c (Fdocumentation_property, Fsnarf_documentation):
2882         No longer static.
2883         * buffer.c (Fset_buffer_major_mode, Fdelete_overlay): No longer
2884         static.
2885         * dired.c (Ffile_attributes): No longer static.
2886         * composite.c (Fcomposition_get_gstring): No longer static.
2887         * callproc.c (Fgetenv_internal): No longer static.
2889         * ccl.h: Remove EXFUNs.
2890         * buffer.h: Remove EXFUNs.
2891         * dispextern.h: Remove EXFUNs.
2892         * intervals.h: Remove EXFUNs.
2893         * fontset.h: Remove EXFUN.
2894         * font.h: Remove EXFUNs.
2895         * dosfns.c (system_process_attributes): Remove EXFUN.
2896         * keymap.h: Remove EXFUNs.
2897         * lisp.h: Remove EXFUNs.
2898         * w32term.h: Remove EXFUNs.
2899         * window.h: Remove EXFUNs.
2900         * xsettings.h: Remove EXFUN.
2901         * xterm.h: Remove EXFUN.
2903 2012-07-03  Glenn Morris  <rgm@gnu.org>
2905         * lisp.h (Frandom): Make it visible to C.
2906         * buffer.c (Fgenerate_new_buffer_name): Speed up finding a new
2907         buffer for invisible buffers.  (Bug#1229)
2909 2012-07-03  Dmitry Antipov  <dmantipov@yandex.ru>
2911         Fix block vector allocation code to allow VECTOR_BLOCK_SIZE
2912         values which aren't power of 2.
2913         * alloc.c (VECTOR_FREE_LIST_SIZE_MASK): New macro.
2914         Verify it's value and the value of VECTOR_BLOCK_SIZE.  Adjust users
2915         accordingly.
2917 2012-07-03  Stefan Monnier  <monnier@iro.umontreal.ca>
2919         * lisp.h (Lisp_Misc, Lisp_Fwd): Move around to group better.
2921         * alloc.c (mark_object): Revert part of last patch to use `switch'.
2923 2012-07-03  Dmitry Antipov  <dmantipov@yandex.ru>
2925         * alloc.c (allocate_vector_block): Remove redundant
2926         calls to mallopt if DOUG_LEA_MALLOC is defined.
2927         (allocate_vectorlike): If DOUG_LEA_MALLOC is defined,
2928         avoid calls to mallopt if zero_vector is returned.
2930 2012-07-03  Dmitry Antipov  <dmantipov@yandex.ru>
2932         * alloc.c (check_string_bytes): If GC_CHECK_STRING_BYTES
2933         is enabled, avoid dereferencing NULL current_sblock if
2934         running undumped.
2936 2012-07-03  Dmitry Antipov  <dmantipov@yandex.ru>
2938         Cleanup basic buffer management.
2939         * buffer.h (struct buffer): Change layout to use generic vector
2940         marking code.  Fix some comments.  Change type of 'clip_changed'
2941         to bitfield.  Remove unused #ifndef old.
2942         (FIRST_FIELD_PER_BUFFER, LAST_FIELD_PER_BUFFER): Remove.
2943         (GET_OVERLAYS_AT): Fix indentation.
2944         (for_each_per_buffer_object_at): New macro.
2945         * buffer.c (clone_per_buffer_values, reset_buffer_local_variables)
2946         (Fbuffer_local_variables): Use it.
2947         (init_buffer_once, syms_of_buffer): Remove unused #ifndef old.
2948         * alloc.c (allocate_buffer): Adjust to match new layout of
2949         struct buffer.  Fix comment.
2950         (mark_overlay): New function.
2951         (mark_buffer): Use it.  Use mark_vectorlike to mark normal
2952         Lisp area of struct buffer.
2953         (mark_object): Use it.  Adjust marking of misc objects
2954         and related comments.
2956 2012-07-02  Paul Eggert  <eggert@cs.ucla.edu>
2958         * alloc.c (mark_object): Remove "#ifdef GC_CHECK_MARKED_OBJECTS"
2959         wrapper that is not needed because the wrapped code is a no-op (zero
2960         machine instructions) when GC_CHECK_MARKED_OBJECTS is not defined.
2961         This avoids a -Wunused-macros diagnostic with GCC 4.7.1 x86-64.
2963 2012-07-02  Dmitry Antipov  <dmantipov@yandex.ru>
2965         * alloc.c (mark_buffer): Simplify.  Remove prototype.
2966         (mark_object): Add comment.  Reorganize marking of vector-like
2967         objects.  Use CHECK_LIVE for all vector-like objects except buffers
2968         and subroutines when GC_CHECK_MARKED_OBJECTS is defined.
2969         Avoid redundant calls to mark_vectorlike for bool vectors.
2971 2012-06-30  Glenn Morris  <rgm@gnu.org>
2973         * nsterm.m (ns_init_paths): Ignore site-lisp if --no-site-lisp.
2975         * epaths.in (PATH_SITELOADSEARCH): New.
2976         * lread.c (init_lread): Use PATH_SITELOADSEARCH.
2977         This is rather than relying on --enable-locallisppath elements
2978         having "site-lisp" in their names.  (Bug#10208#25, 11658)
2980 2012-06-30  Eli Zaretskii  <eliz@gnu.org>
2982         * w32proc.c (sys_select): Accept and ignore one more argument.
2984         * w32.c (emacs_gnutls_pull): Call select with one more argument.
2986         * sysselect.h [DOS_NT]: Don't include sys/select.h.
2987         (pselect) [!MS_DOS]: Redirect to sys_select.
2989         * sysdep.c: Don't include dos.h and dosfns.h.
2991         * process.c (sys_select):
2992         * msdos.c (sys_select): Accept one more argument and ignore it.
2994         * msdos.c (event_timestamp, sys_select): Use gnulib's gettime;
2995         adapt data types and code to that.
2997         * dosfns.c:
2998         * msdos.c (gettime, settime): Define away the prototypes in dos.h,
2999         which clashes with the gnulib function of the same name.
3001 2012-06-30  Andreas Schwab  <schwab@linux-m68k.org>
3003         * font.c (font_style_to_value, font_style_symbolic)
3004         (font_prop_validate_style): Add type checks for values in
3005         font_style_table.
3007         * lisp.h (CHECK_RANGED_INTEGER): Make value to check the first
3008         argument.
3009         * character.c, charset.c, menu.c, process.c, window.c: Adjust all
3010         uses.
3012 2012-06-29  Eli Zaretskii  <eliz@gnu.org>
3014         * xdisp.c (try_window_id): Undo last change.
3016         * w32.c (getwd): Adjust commentary about startup_dir.
3017         (init_environment): Always call sys_access, even in non-MSVC
3018         builds.  Don't chdir to the directory of the Emacs executable.
3019         This undoes code from 1997 which was justified by the need to
3020         "avoid conflicts when removing and renaming directories".  But its
3021         downside was that every relative file name was being interpreted
3022         relative to the directory of the Emacs executable, which can never
3023         be TRT.  In particular, it broke sys_access when called with
3024         relative file names.
3025         (sys_access): Map GetLastError to errno.
3027 2012-06-29  Dmitry Antipov  <dmantipov@yandex.ru>
3029         * window.h (struct window): Change type of 'fringes_outside_margins'
3030         to bitfield.  Fix comment.  Adjust users accordingly.
3031         (struct window): Change type of 'window_end_bytepos' to ptrdiff_t.
3032         Adjust comment.
3033         * xdisp.c (try_window_id): Change type of 'first_vpos' and 'vpos'
3034         to ptrdiff_t.
3036 2012-06-29  Andreas Schwab  <schwab@linux-m68k.org>
3038         * gnutls.c (emacs_gnutls_handshake):
3039         Add QUIT to make the loop interruptible.
3041 2012-06-29  Glenn Morris  <rgm@gnu.org>
3043         * charset.c (init_charset): Make lack of etc/charsets fatal.
3045 2012-06-29  Dmitry Antipov  <dmantipov@yandex.ru>
3047         * editfns.c (region_limit): Fix type mismatch.
3049 2012-06-29  Dmitry Antipov  <dmantipov@yandex.ru>
3051         * nsfns.m: Fix GLYPH_DEBUG usage assuming that it may be
3052         undefined.  Convert from xassert to eassert.
3053         * nsmenu.m: Convert from xassert to eassert.
3054         * nsterm.m: Likewise.
3056 2012-06-28  Stefan Monnier  <monnier@iro.umontreal.ca>
3058         * editfns.c (region_limit): Clip to narrowing (bug#11770).
3060 2012-06-28  Paul Eggert  <eggert@cs.ucla.edu>
3062         Avoid integer overflow on scroll-left and scroll-right.
3063         * window.c (HSCROLL_MAX): New macro.
3064         (Fscroll_left, Fscroll_right): Avoid undefined behavior on integer
3065         overflow when requested scroll falls outside ptrdiff_t range.
3067 2012-06-28  Dmitry Antipov  <dmantipov@yandex.ru>
3069         * window.h (struct window): Change type of 'hscroll',
3070         'min_hscroll' and 'last_point' from Lisp_Object to ptrdiff_t,
3071         'last_modified' and 'last_overlay_modified' to EMACS_INT.
3072         Adjust users accordingly.
3073         * xdisp.c (try_cursor_movement): Replace type check with eassert.
3074         * window.c (Fscroll_left, Fscroll_right): Change type of 'hscroll'
3075         from EMACS_INT to ptrdiff_t.
3076         (make_window): Omit redundant initialization.
3078 2012-06-28  Juanma Barranquero  <lekktu@gmail.com>
3080         * makefile.w32-in ($(BLD)/regex.$(O)): Update dependencies.
3082 2012-06-28  Dmitry Antipov  <dmantipov@yandex.ru>
3084         * window.h (struct window): Change type of 'use_time' and
3085         'sequence_number' from Lisp_Object to int.
3086         * frame.c (make_frame): Adjust users accordingly.
3087         * print.c (print_object): Likewise.
3088         * window.c (select_window, Fwindow_use_time, make_parent_window)
3089         (make_window): Likewise.
3091 2012-06-28  Dmitry Antipov  <dmantipov@yandex.ru>
3093         * dispextern.h (GLYPH_DEBUG): Now defined in config.h if
3094         enabled with --enable-checking=[all,glyphs] configure option.
3095         Fix GLYPH_DEBUG usage assuming that it may be undefined,
3096         adjust comments accordingly.
3097         * dispnew.c: Fix GLYPH_DEBUG usage assuming that it may be
3098         undefined, adjust comments accordingly.
3099         * image.c: Likewise.
3100         * scroll.c: Likewise.
3101         * w32fns.c: Likewise.
3102         * w32term.c: Likewise.
3103         * xdisp.c: Likewise.
3104         * xfaces.c: Likewise.
3105         * xfns.c: Likewise.
3106         * xterm.c: Likewise.
3108 2012-06-28  Dmitry Antipov  <dmantipov@yandex.ru>
3110         Generalize run-time debugging checks.
3111         * dispextern.h (XASSERTS): Remove.
3112         * fontset.c (xassert): Remove.
3113         Convert from xassert to eassert.
3114         * alloc.c: Convert from xassert to eassert.
3115         * bidi.c: Likewise.
3116         * dispnew.c: Likewise.
3117         * fns.c: Likewise.
3118         * fringe.c: Likewise.
3119         * ftfont.c: Likewise.
3120         * gtkutil.c: Likewise.
3121         * image.c: Likewise.
3122         * keyboard.c: Likewise.
3123         * menu.c: Likewise.
3124         * process.c: Likewise.
3125         * scroll.c: Likewise.
3126         * sound.c: Likewise.
3127         * term.c: Likewise.
3128         * w32console.c: Likewise.
3129         * w32fns.c: Likewise.
3130         * w32term.c: Likewise.
3131         * window.c: Likewise.
3132         * xdisp.c: Likewise.
3133         * xfaces.c: Likewise.
3134         * xfns.c: Likewise.
3135         * xselect.c: Likewise.
3136         * xterm.c: Likewise.
3138 2012-06-27  Stefan Monnier  <monnier@iro.umontreal.ca>
3140         * fns.c (maybe_resize_hash_table): Output message when growing the
3141         purify-hashtable.
3143 2012-06-27  Dmitry Antipov  <dmantipov@yandex.ru>
3145         * alloc.c (allocate_string_data): Remove dead code.
3146         * xsettings.c (XSETTINGS_FONT_NAME): Move under HAVE_XFT to
3147         avoid GCC warning about unused macro.
3149 2012-06-27  Dmitry Antipov  <dmantipov@yandex.ru>
3151         * alloc.c (allocate_string): Omit intervals initialization.
3152         * alloc.c (make_uninit_multibyte_string): Initialize intervals
3153         as in make_pure_string and make_pure_c_string.
3155 2012-06-27  Dmitry Antipov  <dmantipov@yandex.ru>
3157         * alloc.c (allocate_string): Fix last change.
3159 2012-06-27  Dmitry Antipov  <dmantipov@yandex.ru>
3161         * alloc.c (allocate_string): Remove two redundant calls
3162         to memset, add explicit initialization where appropriate.
3164 2012-06-27  Glenn Morris  <rgm@gnu.org>
3166         * lisp.mk (lisp): Remove paths.elc.
3168 2012-06-27  Chong Yidong  <cyd@gnu.org>
3170         * doc.c (Fsubstitute_command_keys): Fix punctuation.
3172 2012-06-26  John Wiegley  <johnw@newartisans.com>
3174         * unexmacosx.c (copy_data_segment): Add two section names used
3175         on Mac OS X Lion: __mod_init_func and __mod_term_func.
3177         * alloc.c (mark_memory): Do not check with -faddress-sanitizer
3178         when building with Clang.
3180 2012-06-26  Stefan Monnier  <monnier@iro.umontreal.ca>
3182         * eval.c (Fapply): Allow calling it with a single argument.
3184 2012-06-26  Eli Zaretskii  <eliz@gnu.org>
3186         * s/ms-w32.h (strcasecmp, strncasecmp) [_MSC_VER]: Redirect to
3187         _stricmp and _strnicmp.
3188         (HAVE_STRCASECMP, HAVE_STRNCASECMP): Define to 1.
3190 2012-06-26  Dmitry Antipov  <dmantipov@yandex.ru>
3192         * alloc.c (allocate_window): Zero out non-Lisp part of newly
3193         allocated window.
3194         (allocate_process): Likewise for new process.
3195         (allocate_terminal): Change to use offsetof.
3196         (allocate_frame): Likewise.
3197         * frame.c (make_frame): Omit redundant initialization.
3198         * window.c (make_parent_window): Use memset.
3199         (make_window): Omit redundant initialization.
3200         * process.c (make_process): Omit redundant initialization.
3201         * terminal.c (create_terminal): Likewise.
3203 2012-06-26  Dmitry Antipov  <dmantipov@yandex.ru>
3205         * term.c (delete_tty): Remove redundant call to memset.
3207 2012-06-26  Dmitry Antipov  <dmantipov@yandex.ru>
3209         * alloc.c: Remove build_string.
3210         * lisp.h: Define build_string as static inline.  This provides
3211         a better opportunity to optimize away calls to strlen when the
3212         function is called with compile-time constant argument.
3213         * image.c (imagemagick_error): Convert to build_string.
3214         * w32proc.c (sys_spawnve): Likewise.
3215         * xterm.c (x_term_init): Likewise.
3217 2012-06-26  Paul Eggert  <eggert@cs.ucla.edu>
3219         Use sprintf return value instead of invoking strlen on result.
3220         In the old days this wasn't portable, since some sprintf
3221         implementations returned char *.  But they died out years ago and
3222         Emacs already assumes sprintf returns int.
3223         Similarly for float_to_string.
3224         This patch speeds up (number-to-string 1000) by 3% on Fedora 15 x86-64.
3225         * ccl.c (ccl_driver):
3226         * character.c (string_escape_byte8):
3227         * data.c (Fnumber_to_string):
3228         * doprnt.c (doprnt):
3229         * print.c (print_object):
3230         * xdisp.c (message_dolog):
3231         * xfns.c (syms_of_xfns):
3232         Use sprintf or float_to_string result to avoid need to call strlen.
3233         * data.c (Fnumber_to_string):
3234         Use make_unibyte_string, since the string must be ASCII.
3235         * lisp.h, print.c (float_to_string): Now returns int length.
3236         * term.c (produce_glyphless_glyph):
3237         Use sprintf result rather than recomputing it.
3239         Clean out last vestiges of the old HAVE_CONFIG_H stuff.
3240         * Makefile.in (ALL_CFLAGS):
3241         * makefile.w32-in (LOCAL_FLAGS): Remove -DHAVE_CONFIG_H.
3242         * gmalloc.c, regex.c: Include <config.h> unconditionally.
3244 2012-06-25  Dmitry Antipov  <dmantipov@yandex.ru>
3246         * dispextern.h (xstrcasecmp): Define to library function
3247         strcasecmp if available.
3248         * xfaces.c: Do not use xstrcasecmp if strcasecmp is available.
3250 2012-06-25  Andreas Schwab  <schwab@linux-m68k.org>
3252         * keyboard.c (menu_bar_items, menu_bar_item, read_key_sequence):
3253         Avoid comma operator.
3254         * menu.c (push_submenu_start, push_submenu_end)
3255         (push_left_right_boundary, push_menu_pane): Likewise.
3256         * msdos.c (dos_rawgetc): Likewise.
3258 2012-06-25  Dmitry Antipov  <dmantipov@yandex.ru>
3260         * xfns.c (xic_create_fontsetname): Remove redundant calls
3261         to memset.
3263 2012-06-25  Paul Eggert  <eggert@cs.ucla.edu>
3265         * gtkutil.c (get_utf8_string): Remove redundant assignment.
3266         sprintf already null-terminates its output.
3268         * xfns.c (x_window): Remove redundant cast.
3270 2012-06-25  Dmitry Antipov  <dmantipov@yandex.ru>
3272         * xmenu.c (xmenu_show, xdialog_show): Explicit cast from
3273         `const char *' to `char *' to avoid compiler warning.
3275 2012-06-24  Paul Eggert  <eggert@cs.ucla.edu>
3277         * xterm.c (x_term_init): Build proper-sized _XSETTINGS_Snnn string
3278         instead of truncating it to 63 (admittedly a generous limit).
3280         * process.c: Fix spelling and caps in comments.
3282 2012-06-24  Dan Nicolaescu  <dann@ics.uci.edu>
3284         * emacs.c (setpgrp): Remove definition, unused.
3285         * sysdep.c (setpgrp): Remove definition, not used in this file.
3287 2012-06-24  Juanma Barranquero  <lekktu@gmail.com>
3289         * makefile.w32-in: Update dependencies.
3291 2012-06-24  Eli Zaretskii  <eliz@gnu.org>
3293         * makefile.w32-in (TIMESPEC_H): Remove nt/inc/sys/time.h.
3294         (SYSTIME_H): Add nt/inc/sys/time.h.
3296         * systime.h [WINDOWSNT]: Include sys/time.h.
3298         * s/ms-w32.h (struct timespec): Definition moved from
3299         nt/inc/sys/time.h.  Suggested by Paul Eggert <eggert@cs.ucla.edu>.
3301 2012-06-24  Paul Eggert  <eggert@cs.ucla.edu>
3303         Switch from NO_RETURN to C11's _Noreturn (Bug#11750).
3304         * buffer.h (buffer_slot_type_mismatch):
3305         * data.c (arith_error) [!FORWARD_SIGNAL_TO_MAIN_THREAD]:
3306         * eval.c (unwind_to_catch):
3307         * image.c (my_png_error, my_error_exit):
3308         * keyboard.c (quit_throw_to_read_char, user_error)
3309         (Fexit_recursive_edit, Fabort_recursive_edit):
3310         * lisp.h (die, args_out_of_range, args_out_of_range_3)
3311         (wrong_type_argument, buffer_overflow, __executable_start)
3312         (memory_full, buffer_memory_full, string_overflow, Fthrow)
3313         (xsignal, xsignal0, xsignal1, xsignal2, xsignal3, signal_error)
3314         (error, verror, nsberror, report_file_error, Ftop_level, Fkill_emacs)
3315         (fatal):
3316         (child_setup) [!DOS_NT]:
3317         * lread.c (end_of_file_error, invalid_syntax):
3318         * process.c (send_process_trap) [!FORWARD_SIGNAL_TO_MAIN_THREAD]:
3319         * puresize.h (pure_write_error):
3320         * search.c (matcher_overflow):
3321         * sound.c (sound_perror, alsa_sound_perror):
3322         * sysdep.c, syssignal.h (croak):
3323         * term.c (maybe_fatal, vfatal):
3324         * textprop.c (text_read_only):
3325         * undo.c (user_error):
3326         * unexmacosx.c (unexec_error):
3327         * xterm.c (x_ins_del_lines, x_delete_glyphs):
3328         Use _Noreturn rather than NO_RETURN.
3329         No need for separate decl merely because of _Noreturn.
3330         * sound.c (sound_warning, parse_sound):
3331         Remove unnecessary forward decls.
3333 2012-06-24  Paul Eggert  <eggert@cs.ucla.edu>
3335         Fix bug when time_t is unsigned and as wide as intmax_t (Bug#9000).
3336         * lisp.h (WAIT_READING_MAX): New macro.
3337         * dispnew.c (Fsleep_for, sit_for):
3338         * keyboard.c (kbd_buffer_get_event):
3339         * process.c (Faccept_process_output):
3340         Use it to avoid bogus compiler warnings with obsolescent GCC versions.
3341         This improves on the previous patch, which introduced a bug
3342         when time_t is unsigned and as wide as intmax_t.
3343         See <http://bugs.gnu.org/9000#51>.
3345 2012-06-23  Eli Zaretskii  <eliz@gnu.org>
3347         * dispnew.c (sit_for, Fsleep_for):
3348         * keyboard.c (kbd_buffer_get_event):
3349         * process.c (Faccept_process_output): Avoid compiler warnings when
3350         comparing a 32-bit time_t with a 64-bit INTMAX_MAX.
3352 2012-06-23  Juanma Barranquero  <lekktu@gmail.com>
3354         * makefile.w32-in: Update dependencies.
3356         * w32.c (ltime): Add return type and declare static.
3357         (w32_get_internal_run_time): Remove usused variable `time_100ns'.
3359 2012-06-23  Paul Eggert  <eggert@cs.ucla.edu>
3361         * sysdep.c [__FreeBSD__]: Fix more recently-introduced typos.
3362         Privately reported by Herbert J. Skuhra.
3363         (make_lisp_timeval) [__FreeBSD__]: Rename from TIMELIST.
3364         All uses changed.
3365         (system_process_attributes) [__FreeBSD__]: Invoke make_lisp_time,
3366         not make_lisp_timeval, when the argument is of type EMACS_TIME.
3368 2012-06-23  Eli Zaretskii  <eliz@gnu.org>
3370         * w32proc.c (Fw32_get_locale_info): Fix an off-by-one error in
3371         last argument of make_unibyte_string.
3373         * keyboard.c (kbd_buffer_get_event): Include the codepage and the
3374         language ID in the event parameters.
3376         * w32term.c (w32_read_socket): Put the new keyboard codepage into
3377         event.code, not the obscure "character set ID".
3379 2012-06-23  Chong Yidong  <cyd@gnu.org>
3381         * xmenu.c (x_menu_wait_for_event): Adapt GTK3 to new xg_select.
3383 2012-06-23  Eli Zaretskii  <eliz@gnu.org>
3385         Fix the MS-Windows build broken by 2012-06-22T21:17:42Z!eggert@cs.ucla.edu.
3386         * w32.c (fdutimens): New function.
3388         * w32proc.c (sys_select): Adapt to change in the EMACS_TIME type.
3390         * s/ms-w32.h (pselect): Redirect to sys_select.
3392         * sysselect.h [WINDOWSNT]: Don't include sys/select.h.
3394         * ralloc.c (r_alloc_inhibit_buffer_relocation): Fix stupid thinko
3395         in the logic of incrementing and decrementing the value of
3396         use_relocatable_buffers.
3398 2012-06-23  Paul Eggert  <eggert@cs.ucla.edu>
3400         * sysdep.c [__FreeBSD__]: Fix recently-introduced typos.
3401         Privately reported by Herbert J. Skuhra.
3402         [__FreeBSD__]: Remove "*/" typo after "#include".
3403         (timeval_to_EMACS_TIME) [__FreeBSD__]: New static function.
3404         (TIMEVAL) [__FreeBSD__]: Now a static function rather than a macro.
3405         (TIMEVAL, system_process_attributes) [__FreeBSD__]:
3406         Don't assume EMACS_TIME and struct timeval are the same type.
3408 2012-06-22  Paul Eggert  <eggert@cs.ucla.edu>
3410         Support higher-resolution time stamps (Bug#9000).
3411         The time stamps are only nanosecond-resolution at the C level,
3412         since that's the best that any real-world system supports now.
3413         But they are picosecond-resolution at the Lisp level, as that's
3414         easy, and leaves room for future OS improvements.
3416         * Makefile.in (LIB_CLOCK_GETTIME): New macro.
3417         (LIBES): Use it.
3419         * alloc.c (Fgarbage_collect): Port to higher-res time stamps.
3420         Don't get current time unless it's needed.
3422         * atimer.c: Include <sys/time.h> unconditionally, since gnulib
3423         now provides it if it's absent.
3424         (start_atimer): Port to higher-res time stamps.
3425         Check for time stamp overflow.  Don't get current time more
3426         often than is needed.
3428         * buffer.h (struct buffer): Buffer modtime now has high resolution.
3429         Include systime.h, not time.h.
3430         (NONEXISTENT_MODTIME_NSECS, UNKNOWN_MODTIME_NSECS): New macros.
3432         * dired.c: Include stat-time.h.
3433         (Ffile-attributes): File times now have higher resolution.
3435         * dispextern.h [HAVE_WINDOW_SYSTEM]: Include systime.h.
3436         (struct image): Timestamp now has higher resolution.
3438         * dispnew.c (PERIODIC_PREEMPTION_CHECKING): Remove, as Emacs always
3439         has at least microseconds now.  All uses removed.
3440         (update_frame, update_single_window, update_window, update_frame_1)
3441         (Fsleep_for, sit_for): Port to higher-resolution time stamps.
3443         * editfns.c (time_overflow): Now extern.
3444         (Fcurrent_time, Fget_internal_run_time, make_time, lisp_time_argument)
3445         (float-time, Fformat_time_string, Fcurrent_time_string)
3446         (Fcurrent_time_zone): Accept and generate higher-resolution
3447         time stamps.
3448         (make_time_tail, make_lisp_time, dissassemble_lisp_time)
3449         (decode_time_components, lisp_seconds_argument): New functions.
3450         (make_time): Now static.
3451         (lisp_time_argument): Now returns EMACS_TIME.  New arg ppsec.
3452         Report an error if the time is invalid, rather than having the caller
3453         do that.
3455         * fileio.c: Include <stat-time.h>
3456         (Fcopy_file): Copy higher-resolution time stamps.
3457         Prefer to set the time stamp via a file descriptor if that works.
3458         (Fset_file_times, Finsert_file_contents, Fwrite_region)
3459         (Fverify_visited_file_modtime, Fclear_visited_file_modtime)
3460         (Fvisited_file_modtime, Fset_visited_file_modtime):
3461         Support higher-resolution time stamps.
3463         * fns.c (Frandom): Use nanoseconds, not microseconds, for seed.
3465         * gtkutil.c (xg_maybe_add_timer): Port to higher-res time stamps.
3467         * image.c (prepare_image_for_display, clear_image_cache)
3468         (lookup_image): Port to higer-resolution time stamps.
3470         * keyboard.c (start_polling, bind_polling_period):
3471         Check for time stamp overflow.
3472         (read_char, kbd_buffer_get_event, timer_start_idle)
3473         (timer_stop_idle, timer_resume_idle, timer_check_2, timer_check)
3474         (Fcurrent_idle_time, init_keyboard, set_waiting_for_input):
3475         Port to higher-resolution time stamps.  Do not assume time_t is signed.
3476         (decode_timer): New function.  Timers are now vectors of length 9,
3477         not 8, to accommodate the picosecond component.
3478         (timer_check_2): Use it.
3480         * nsterm.m (select_timeout, timeval_subtract): Remove.
3481         (ns_timeout): Use Emacs's facilities for time stamp arithmetic,
3482         as they're a bit more accurate and handle overflow better.
3483         (ns_select): Change prototype to be compatible with pselect.
3484         (ns_select, ns_term_shutdown): Port to ns-resolution time stamps.
3485         * nsterm.h (ns_select): Adjust prototype.
3487         * msdos.c (EMACS_TIME_ZERO_OR_NEG_P): Remove, as it assumes
3488         us-resolution time stamps.
3489         (sys_select): Use the new EMACS_TIME_SIGN macro instead.
3491         * lread.c (read_filtered_event): Port to ns-resolution time stamps.
3493         * lisp.h (time_overflow): New decl.
3494         (wait_reading_process_output): First arg is now intmax_t, not int,
3495         to accommodate larger waits.
3497         * process.h (struct Lisp_Process.read_output_delay):
3498         Now counts nanoseconds, not microseconds.
3499         * process.c (ADAPTIVE_READ_BUFFERING): Don't worry about
3500         EMACS_HAS_USECS.
3501         (READ_OUTPUT_DELAY_INCREMENT, Faccept_process_output)
3502         (wait_reading_process_output):
3503         Port to ns-resolution time stamps.
3504         (Faccept_process_output, wait_reading_process_output):
3505         Check for time stamp overflow.  Do not assume time_t is signed.
3506         (select_wrapper): Remove; we now use pselect.
3507         (Fprocess_attributes): Now generates ns-resolution time stamps.
3509         * sysdep.c: Include utimens.h.  Don't include utime.h
3510         or worry about struct utimbuf; gnulib does that for us now.
3511         (gettimeofday): Remove; gnulib provides a substitute.
3512         (make_timeval): New function.
3513         (set_file_times): Now sets ns-resolution time stamps.
3514         New arg FD; all uses changed.
3515         (time_from_jiffies, ltime_from_jiffies, get_up_time)
3516         (system_process_attributes):
3517         Now returns ns-resolution time stamp.  All uses changed.
3518         Check for time stamp overflow.
3520         * sysselect.h: Don't depend on HAVE_SYS_SELECT_H; gnulib
3521         provides a substitute now.
3523         * systime.h: Include timespec.h rather than sys/time.h and time.h,
3524         since it guarantees struct timespec.
3525         (EMACS_TIME): Now struct timespec, so that we can support
3526         ns-resolution time stamps.
3527         (EMACS_TIME_RESOLUTION, LOG10_EMACS_TIME_RESOLUTION): New macros.
3528         (EMACS_HAS_USECS): Remove; Emacs always has sub-second time stamps now.
3529         (EMACS_USECS): Remove.
3530         (EMACS_SET_USECS): The underlying time stamp now has ns resolution,
3531         so multiply the arg by 1000 before storing it.
3532         (EMACS_NSECS, EMACS_SECS_ADDR, EMACS_SET_NSECS, EMACS_SET_SECS_NSECS):
3533         New macros.
3534         (EMACS_GET_TIME, EMACS_ADD_TIME, EMACS_SUB_TIME):
3535         Port to ns-resolution time stamps.
3536         (EMACS_TIME_NEG_P): Remove; replaced by....
3537         (EMACS_TIME_SIGN): New macro.
3538         (EMACS_SET_INVALID_TIME, EMACS_TIME_VALID_P)
3539         (EMACS_TIME_FROM_DOUBLE, EMACS_TIME_TO_DOUBLE): New macros.
3540         (set_file_times, make_time, lisp_time_argument): Adjust signature.
3541         (make_timeval, make_lisp_time, decode_time_components): New decls.
3542         (EMACS_TIME_CMP): Remove; no longer used.  Plus, it was buggy, in
3543         that it mishandled time_t overflow.  You can't compare by subtracting!
3544         (EMACS_TIME_EQ, EMACS_TIME_NE, EMACS_TIME_GT, EMACS_TIME_GE)
3545         (EMACS_TIME_LT, EMACS_TIME_LE): Rewrite in terms of timespec_cmp.
3547         * term.c: Include <sys/time.h>.
3548         (timeval_to_Time): New function, for proper overflow wraparound.
3549         (term_mouse_position, term_mouse_click): Use it.
3551         * undo.c (record_first_change): Support higher-resolution time stamps
3552         in the undo buffer.
3553         (Fprimitive_undo): Use them when restoring time stamps.
3555         * w32.c (ltime, U64_TO_LISP_TIME, process_times, emacs_gnutls_pull)
3556         (w32_get_internal_run_time):
3557         Port to higher-resolution Emacs time stamps.
3558         (ltime): Now accepts single 64-bit integer, as that's more convenient
3559         for callers.
3561         * xdisp.c (start_hourglass): Port to ns-resolution time stamps.
3563         * xgselect.c, xgselect.h (xg_select): Add sigmask argument,
3564         for compatibility with pselect.  Support ns-resolution time stamps.
3566         * xmenu.c (x_menu_wait_for_event): Support ns-resolution time stamps.
3568         * xselect.c (wait_for_property_change, x_get_foreign_selection):
3569         Check for time stamp overflow, and support ns-resolution time stamps.
3571         * xterm.c: Don't include sys/time.h; gnulib does that for us now.
3572         Don't worry about whether HAVE_TIMEVAL and HAVE_SELECT are set.
3573         (timeval_subtract): Remove; no longer needed.
3574         (XTflash, XTring_bell, x_wait_for_event):
3575         Port to ns-resolution time stamps.  Don't assume time_t is signed.
3577 2012-06-22  Chong Yidong  <cyd@gnu.org>
3579         * xdisp.c (x_consider_frame_title): Revert last change.
3581 2012-06-22  Eli Zaretskii  <eliz@gnu.org>
3583         * alloc.c (NSTATICS): Enlarge to 0x650.  Otherwise, Emacs compiled
3584         with -DENABLE_CHECKING -DXASSERTS -DGLYPH_DEBUG=1 -DBYTE_CODE_METER
3585         aborts in staticpro during startup.  (Without -DBYTE_CODE_METER,
3586         staticidx goes up to 1597 out of 1600 = 0x640.)
3588 2012-06-20  Paul Eggert  <eggert@cs.ucla.edu>
3590         * fileio.c (Fdefault_file_modes): Block input while fiddling with umask.
3591         Otherwise, the umask might be mistakenly 0 while handling input signals.
3593 2012-06-19  Stefan Monnier  <monnier@iro.umontreal.ca>
3595         * minibuf.c (Fread_string): Bind minibuffer-completion-table.
3597 2012-06-19  Dmitry Antipov  <dmantipov@yandex.ru>
3599         * alloc.c, bytecode.c, ccl.c, coding.c, composite.c, data.c, dosfns.c:
3600         * font.c, image.c, keyboard.c, lread.c, menu.c, minibuf.c, msdos.c:
3601         * print.c, syntax.c, window.c, xmenu.c, xselect.c: Replace direct
3602         access to `contents' member of Lisp_Vector objects with AREF and ASET
3603         where appropriate.
3605 2012-06-19  Chong Yidong  <cyd@gnu.org>
3607         * frame.c (delete_frame): When selecting a frame on a different
3608         text terminal, do not alter the terminal's top-frame.
3610         * xdisp.c (format_mode_line_unwind_data): Record the target
3611         frame's selected window and its terminal's top-frame.
3612         (unwind_format_mode_line): Restore them.
3613         (x_consider_frame_title, display_mode_line, Fformat_mode_line):
3614         Callers changed.
3615         (x_consider_frame_title): Do not condition on HAVE_WINDOW_SYSTEM,
3616         since tty frames can be explicitly named.
3617         (prepare_menu_bars): Likewise.
3619         * term.c (Ftty_top_frame): New function.
3621 2012-06-18  Paul Eggert  <eggert@cs.ucla.edu>
3623         Port byte-code-meter to modern targets.
3624         * bytecode.c (METER_CODE) [BYTE_CODE_METER]: Don't assume
3625         !CHECK_LISP_OBJECT_TYPE && !USE_LSB_TAG.  Problem with
3626         CHECK_LISP_OBJECT_TYPE reported by Dmitry Antipov in
3627         <http://lists.gnu.org/archive/html/emacs-devel/2012-06/msg00282.html>.
3628         (METER_1, METER_2): Simplify.
3630 2012-06-18  Stefan Monnier  <monnier@iro.umontreal.ca>
3632         * data.c (Fdefalias): Return `symbol' (bug#11686).
3634 2012-06-18  Martin Rudalics  <rudalics@gmx.at>
3636         * buffer.c (Fkill_buffer): Don't throw an error when the buffer
3637         gets killed during executing of this function (Bug#11665).
3638         Try to always return Qt when the buffer has been actually killed.
3639         (Vkill_buffer_query_functions): In doc-string say that functions
3640         run by this hook should not change the current buffer.
3642 2012-06-18  Paul Eggert  <eggert@cs.ucla.edu>
3644         Fix recently-introduced process.c problems found by static checking.
3645         * process.c (write_queue_push, write_queue_pop, send_process):
3646         Use ptrdiff_t, not int or EMACS_INT, for buffer lengths and offsets.
3647         (write_queue_pop): Fix pointer signedness problem.
3648         (send_process): Remove unused local.
3650 2012-06-17  Chong Yidong  <cyd@gnu.org>
3652         * xdisp.c (redisplay_internal): No need to redisplay terminal
3653         frames that are not on top.
3655 2012-06-17  Troels Nielsen  <bn.troels@gmail.com>
3657         * process.c (make_process): Initialize write_queue.
3658         (write_queue_push, write_queue_pop): New functions.
3659         (send_process): Use them to maintain correct ordering of process
3660         writes (Bug#10815).
3662 2012-06-17  Paul Eggert  <eggert@cs.ucla.edu>
3664         * lisp.h (eassert): Assume C89 or later.
3665         This removes the need for CHECK.
3666         (CHECK): Remove.  Its comments about always evaluating its
3667         argument were confusing, as 'eassert' typically does not evaluate
3668         its argument.
3670         * coding.c (produce_chars): Use ptrdiff_t, not int.
3672         * xterm.c (x_draw_underwave): Check for integer overflow.
3673         This pacifies gcc 4.7.0 -Wunsafe-loop-optimizations on x86-64.
3675 2012-06-17  Jan Djärv  <jan.h.d@swipnet.se>
3677         * nsterm.m (x_free_frame_resources): Move xfree so freed memory isn't
3678         referenced (Bug#11583).
3680 2012-06-16  Aurelien Aptel  <aurelien.aptel@gmail.com>
3682         Implement wave-style variant of underlining.
3683         * dispextern.h (face_underline_type): New enum.
3684         (face): Add field for underline type.
3685         * nsterm.m (ns_draw_underwave): New function.
3686         (ns_draw_text_decoration): Use it.
3687         * w32term.c (w32_restore_glyph_string_clip, w32_draw_underwave):
3688         New functions.
3689         (x_draw_glyph_string): Use them.
3690         * xfaces.c (Qline, Qwave): New Lisp objects.
3691         (check_lface_attrs, merge_face_ref)
3692         (Finternal_set_lisp_face_attribute, realize_x_face):
3693         Handle wave-style underline face attributes.
3694         * xterm.c (x_draw_underwave): New function.
3695         (x_draw_glyph_string): Use it.
3697 2012-06-16  Juanma Barranquero  <lekktu@gmail.com>
3699         * makefile.w32-in ($(BLD)/emacs.$(O), $(BLD)/fringe.$(O))
3700         ($(BLD)/xml.$(O), $(BLD)/intervals.$(O), $(BLD)/macros.$(O))
3701         ($(BLD)/minibuf.$(O), $(BLD)/regex.$(O), $(BLD)/region-cache.$(O))
3702         ($(BLD)/textprop.$(O), $(BLD)/undo.$(O), $(BLD)/window.$(O))
3703         ($(BLD)/w32select.$(O)): Update dependencies.
3705 2012-06-16  Andreas Schwab  <schwab@linux-m68k.org>
3707         * buffer.h (FETCH_MULTIBYTE_CHAR): Define as inline.
3708         (BUF_FETCH_MULTIBYTE_CHAR): Likewise.
3709         * character.c (_fetch_multibyte_char_p): Remove.
3710         * alloc.c: Include "character.h" before "buffer.h".
3711         * bidi.c: Likewise.
3712         * buffer.c: Likewise.
3713         * bytecode.c: Likewise.
3714         * callint.c: Likewise.
3715         * callproc.c: Likewise.
3716         * casefiddle.c: Likewise.
3717         * casetab.c: Likewise.
3718         * category.c: Likewise.
3719         * cmds.c: Likewise.
3720         * coding.c: Likewise.
3721         * composite.c: Likewise.
3722         * dired.c: Likewise.
3723         * dispnew.c: Likewise.
3724         * doc.c: Likewise.
3725         * dosfns.c: Likewise.
3726         * editfns.c: Likewise.
3727         * emacs.c: Likewise.
3728         * fileio.c: Likewise.
3729         * filelock.c: Likewise.
3730         * font.c: Likewise.
3731         * fontset.c: Likewise.
3732         * fringe.c: Likewise.
3733         * indent.c: Likewise.
3734         * insdel.c: Likewise.
3735         * intervals.c: Likewise.
3736         * keyboard.c: Likewise.
3737         * keymap.c: Likewise.
3738         * lread.c: Likewise.
3739         * macros.c: Likewise.
3740         * marker.c: Likewise.
3741         * minibuf.c: Likewise.
3742         * nsfns.m: Likewise.
3743         * nsmenu.m: Likewise.
3744         * print.c: Likewise.
3745         * process.c: Likewise.
3746         * regex.c: Likewise.
3747         * region-cache.c: Likewise.
3748         * search.c: Likewise.
3749         * syntax.c: Likewise.
3750         * term.c: Likewise.
3751         * textprop.c: Likewise.
3752         * undo.c: Likewise.
3753         * unexsol.c: Likewise.
3754         * w16select.c: Likewise.
3755         * w32fns.c: Likewise.
3756         * w32menu.c: Likewise.
3757         * window.c: Likewise.
3758         * xdisp.c: Likewise.
3759         * xfns.c: Likewise.
3760         * xmenu.c: Likewise.
3761         * xml.c: Likewise.
3762         * xselect.c: Likewise.
3764 2012-06-16  Eli Zaretskii  <eliz@gnu.org>
3766         * xdisp.c (set_cursor_from_row): Don't dereference glyphs_end.
3767         If all the glyphs of the glyph row came from strings, and we have no
3768         cursor positioning clues, put the cursor on the first glyph of the
3769         row.
3770         (handle_face_prop): Use chunk-relative overlay string index when
3771         indexing into it->string_overlays array.  (Bug#11653)
3772         (set_cursor_from_row): Use the leftmost glyph as GLYPH_BEFORE, not
3773         the rightmost.  (Bug#11720)
3775 2012-06-16  Andreas Schwab  <schwab@linux-m68k.org>
3777         * category.h (CHAR_HAS_CATEGORY): Define as inline.
3778         (CATEGORY_MEMBER): Enforce 1/0 value.
3779         * category.c (_temp_category_set): Remove.
3781 2012-06-16  Eli Zaretskii  <eliz@gnu.org>
3783         * window.c (Fdelete_other_windows_internal)
3784         (Fdelete_window_internal): Don't access frame's mouse highlight
3785         info of the initial frame.  (Bug#11677)
3787 2012-06-14  Paul Eggert  <eggert@cs.ucla.edu>
3789         * .gdbinit (xgetint): Fix recently-introduced paren typo.
3790         Assume USE_2_TAGS_FOR_INTS.
3791         (xreload): Adjust $tagmask width to match recent lisp.h change.
3793         Simplify lisp.h in minor ways that should not affect code.
3794         * lisp.h (USE_2_TAGS_FOR_INTS): Remove, as it was always defined.
3795         (LISP_INT_TAG, case_Lisp_Int, LISP_STRING_TAG, LISP_INT_TAG_P)
3796         (LISP_INT1_TAG, enum Lisp_Type, XINT, XUINT, make_number):
3797         Simplify under the assumption that USE_2_TAGS_FOR_INTS is defined.
3798         (INTTYPEBITS): New macro, for clarity.
3799         (INTMASK, MOST_POSITIVE_FIXNUM): Use it.
3800         (LISP_INT1_TAG, LISP_STRING_TAG, LISP_INT_TAG_P):
3801         Simplify now that USE_LSB_TAG is always defined.
3802         (TYPEMASK, XINT) [USE_LSB_TAG]: Remove unnecessary cast.
3803         (make_number) [!USE_LSB_TAG]: Use INTMASK; that's simpler.
3805 2012-06-13  Juanma Barranquero  <lekktu@gmail.com>
3807         * makefile.w32-in ($(BLD)/data.$(O)): Update dependencies.
3809 2012-06-13  Glenn Morris  <rgm@gnu.org>
3811         * s/bsd-common.h (BSD4_3):
3812         * s/usg5-4-common.h (USG5_4): No longer define; unused.
3814 2012-06-13  Andreas Schwab  <schwab@linux-m68k.org>
3816         * lisp.h (Lisp_Object) [CHECK_LISP_OBJECT_TYPE]: Define as struct
3817         instead of union.
3818         (XLI, XIL): Define.
3819         (XHASH, XTYPE, XINT, XUINT, make_number, XSET, XPNTR, XUNTAG):
3820         Use them.
3821         * emacs.c (gdb_use_struct): Rename from gdb_use_union.
3822         * .gdbinit: Check gdb_use_struct instead of gdb_use_union.
3823         * alloc.c (widen_to_Lisp_Object): Remove.
3824         (mark_memory): Use XIL instead of widen_to_Lisp_Object.
3825         * frame.c (delete_frame): Remove outdated comment.
3826         * w32fns.c (Fw32_register_hot_key): Use XLI instead of checking
3827         USE_LISP_UNION_TYPE.
3828         (Fw32_unregister_hot_key): Likewise.
3829         (Fw32_toggle_lock_key): Likewise.
3830         * w32menu.c (add_menu_item): Likewise.
3831         (w32_menu_display_help): Use XIL instead of checking
3832         USE_LISP_UNION_TYPE.
3833         * w32heap.c (allocate_heap): Don't check USE_LISP_UNION_TYPE.
3834         (init_heap): Likewise.
3835         * w32term.c (w32_read_socket): Update comment.
3837 2012-06-13  Glenn Morris  <rgm@gnu.org>
3839         * s/usg5-4-common.h, src/s/unixware.h:
3840         Remove define/undef of HAVE_SYSV_SIGPAUSE (not used since 2010-05-04).
3842         * s/gnu.h (POSIX_SIGNALS): Remove (not used since 2010-05-04).
3844 2012-06-13  Paul Eggert  <eggert@cs.ucla.edu>
3846         USE_LISP_UNION_TYPE + USE_LSB_TAG cleanup (Bug#11604)
3847         * alloc.c (make_number) [!defined make_number]:
3848         Remove, as lisp.h always defines this now.
3849         (mark_maybe_pointer): Simplify since USE_LSB_TAG is always defined now.
3850         (roundup_size): Verify that it is a power of 2.
3851         * data.c (Fmake_variable_buffer_local, Fmake_local_variable):
3852         * ftfont.c (ftfont_driver): Use LISP_INITIALLY_ZERO.
3853         * lisp.h (USE_LSB_TAG): Allow the builder to compile with
3854         -DUSE_LSB_TAG=0, to override the automatically-selected default.
3855         USE_LSB_TAG now is always defined to be either 0 or 1.
3856         All uses changed.
3857         (union Lisp_Object): Don't worry about WORDS_BIGENDIAN; the
3858         code works fine either way, and efficiency is not a concern here,
3859         as the union type is for debugging, not for production.
3860         (LISP_MAKE_RVALUE, make_number) [USE_LISP_UNION_TYPE]:
3861         Use an inline function on all platforms when using the union type,
3862         since this is simpler and 'static inline' can be used portably
3863         within Emacs now.
3864         (LISP_INITIALLY_ZERO): New macro.
3865         (XFASTINT, XSETFASTINT) [USE_LISP_UNION_TYPE]: Remove.
3866         (XSET) [USE_LISP_UNION_TYPE]: Don't overparenthesize.
3868 2012-06-12  Glenn Morris  <rgm@gnu.org>
3870         * s/gnu-kfreebsd.h, s/hpux11.h, s/openbsd.h, s/sol2-10.h: Remove files.
3872         * s/gnu-linux.h (HAVE_PROCFS): Move to configure.
3874         * s/hpux10-20.h, s/openbsd.h, s/usg5-4-common.h:
3875         Move BROKEN_SIGIO to configure.
3877         * s/bsd-common.h, s/darwin.h, s/gnu-kfreebsd.h, s/hpux10-20.h:
3878         Move NO_TERMIO to configure.
3880 2012-06-12  Chong Yidong  <cyd@gnu.org>
3882         * image.c (imagemagick_load_image): Use MagickFlattenImage if
3883         MagickMergeImageLayers is undefined.  Use pixel pusher loop if
3884         MagickExportImagePixels is undefined.
3886 2012-06-12  Paul Eggert  <eggert@cs.ucla.edu>
3888         * image.c (imagemagick_load_image): Remove unused label.
3890 2012-06-11  Glenn Morris  <rgm@gnu.org>
3892         * s/aix4-2.h, s/bsd-common.h, s/cygwin.h, s/darwin.h:
3893         * s/gnu-kfreebsd.h, s/gnu-linux.h, s/gnu.h, s/hpux10-20.h:
3894         * s/irix6-5.h, s/ms-w32.h, s/msdos.h, s/template.h:
3895         * s/usg5-4-common.h: Move SYSTEM_TYPE to configure.
3897 2012-06-11  Stefan Monnier  <monnier@iro.umontreal.ca>
3899         * alloc.c (make_byte_code): New function.
3900         (Fmake_byte_code): Use it.  Don't purify here.
3901         * lread.c (read1): Use it as well to avoid extra allocation.
3903 2012-06-11  Chong Yidong  <cyd@gnu.org>
3905         * image.c (imagemagick_load_image): Implement transparency.
3907 2012-06-10  Andreas Schwab  <schwab@linux-m68k.org>
3909         * regex.c (at_begline_loc_p): Also recognize `(?N:' and correctly
3910         account for preceding backslashes.  (Bug#11663)
3912 2012-06-09  Chong Yidong  <cyd@gnu.org>
3914         * term.c: Support italics in capable terminals (Bug#9652).
3915         (no_color_bit): Replace unused NC_BLINK with NC_ITALIC.
3916         (turn_on_face): Output using TS_enter_italic_mode if available.
3917         Don't handle unused blinking and alt-charset cases.
3918         (turn_off_face): Handle italic case; discard unused tty_blinking_p
3919         and tty_alt_charset_p cases.
3920         (tty_capable_p, init_tty): Support italics.
3922         * termchar.h (struct tty_display_info): Add field for italics.
3923         Remove unused blink field.
3925         * xfaces.c (tty_supports_face_attributes_p, realize_tty_face):
3926         Handle slant.
3928         * dispextern.h: Replace unused TTY_CAP_BLINK with TTY_CAP_ITALIC.
3929         (struct face): Remove unused fields tty_dim_p, tty_blinking_p, and
3930         tty_alt_charset_p.  Add tty_italic_p.
3932 2012-06-09  Michael Albinus  <michael.albinus@gmx.de>
3934         * dbusbind.c (XD_BASIC_DBUS_TYPE): Use dbus_type_is_valid and
3935         dbus_type_is_basic if available.
3936         (xd_extract_signed, xd_extract_unsigned): Rename from
3937         extract_signed and extract_unsigned, respectively.  Adapt callers.
3939 2012-06-09  Chong Yidong  <cyd@gnu.org>
3941         * xfaces.c (face_for_overlay_string): Handle face remapping (Bug#2066).
3943         * fringe.c (Fset_fringe_bitmap_face): Handle the noninteractive
3944         case (Bug#9752).
3946 2012-06-08  Paul Eggert  <eggert@cs.ucla.edu>
3948         * xdisp.c (vmessage): Treat frame message as multibyte.
3949         Without this change, (let ((§ 1)) (make-variable-buffer-local '§))
3950         would generate the diagnostic "Making \302\247 buffer-local while
3951         let-bound!".
3953 2012-06-08  Eli Zaretskii  <eliz@gnu.org>
3955         * dispnew.c (showing_window_margins_p): Undo last change, which
3956         was done due to an inadvertent commit.
3957         (adjust_frame_glyphs_for_frame_redisplay): Do call
3958         showing_window_margins_p.
3960 2012-06-08  Stefan Monnier  <monnier@iro.umontreal.ca>
3962         * eval.c (Fmake_var_non_special): New primitive.
3963         (syms_of_eval): Defsubr it.
3964         * lread.c (syms_of_lread): Mark `values' as lexically scoped.
3966 2012-06-08  Juanma Barranquero  <lekktu@gmail.com>
3968         * dispnew.c (showing_window_margins_p): Wrap in #if 0 to prevent unused
3969         function warning (the only call is inside #if 0 since 2012-06-08T08:44:45Z!eliz@gnu.org).
3971 2012-06-08  Eli Zaretskii  <eliz@gnu.org>
3973         * alloc.c (allocate_vectorlike): Fix last change.
3975 2012-06-08  Dmitry Antipov  <dmantipov@yandex.ru>
3977         Block-based vector allocation of small vectors.
3978         * lisp.h (struct vectorlike_header): New field `nbytes',
3979         adjust comment accordingly.
3980         * alloc.c (enum mem_type): New type `MEM_TYPE_VECTOR_BLOCK'
3981         to denote vector blocks. Adjust users (live_vector_p,
3982         mark_maybe_pointer, valid_lisp_object_p) accordingly.
3983         (COMMON_MULTIPLE): Move outside #if USE_LSB_TAG.
3984         (VECTOR_BLOCK_SIZE, vroundup, VECTOR_BLOCK_BYTES),
3985         (VBLOCK_BYTES_MIN, VBLOCK_BYTES_MAX, VECTOR_MAX_FREE_LIST_INDEX),
3986         (VECTOR_FREE_LIST_FLAG, ADVANCE, VINDEX, SETUP_ON_FREE_LIST),
3987         (VECTOR_SIZE, VECTOR_IN_BLOCK): New macros.
3988         (roundup_size): New constant.
3989         (struct vector_block): New data type.
3990         (vector_blocks, vector_free_lists, zero_vector): New variables.
3991         (all_vectors): Rename to `large_vectors'.
3992         (allocate_vector_from_block, init_vectors, allocate_vector_from_block)
3993         (sweep_vectors): New functions.
3994         (allocate_vectorlike): Return `zero_vector' as the only vector of
3995         0 items. Allocate new vector from block if vector size is less than
3996         or equal to VBLOCK_BYTES_MAX.
3997         (Fgarbage_collect): Move all vector sweeping code to sweep_vectors.
3998         (init_alloc_once): Add call to init_vectors.
4000 2012-06-08  Stefan Monnier  <monnier@iro.umontreal.ca>
4002         * eval.c (Fmacroexpand): Stop if the macro returns the same form.
4004 2012-06-07  Paul Eggert  <eggert@cs.ucla.edu>
4006         * doprnt.c (doprnt): Truncate multibyte char correctly.
4007         Without this change, doprnt (buf, 2, "%s", FORMAT_END, AP)
4008         would mishandle a string argument "Xc" if X was a multibyte
4009         character of length 2: it would truncate after X's first byte
4010         rather than including all of X.
4012 2012-06-06  Chong Yidong  <cyd@gnu.org>
4014         * buffer.c (word_wrap): Doc fix.
4016 2012-06-04  Paul Eggert  <eggert@cs.ucla.edu>
4018         * xdisp.c (note_mode_line_or_margin_highlight): Pacify gcc -Wall.
4020 2012-06-03  Glenn Morris  <rgm@gnu.org>
4022         * xdisp.c (tool-bar-style): Doc fix.
4024 2012-06-03  Ulrich Müller  <ulm@gentoo.org>
4026         * Makefile.in (PAXCTL): Define.
4027         (temacs$(EXEEXT)): Disable memory randomization for the temacs
4028         binary via PaX flags if the paxctl utility is available.
4029         (emacs$(EXEEXT), bootstrap-emacs$(EXEEXT)):
4030         Restore PaX flags to their default.  (Bug#11398)
4032 2012-06-03  Chong Yidong  <cyd@gnu.org>
4034         * xdisp.c (decode_mode_spec_coding): Display a space for a unibyte
4035         buffer (Bug#11226).
4037 2012-06-03  Chong Yidong  <cyd@gnu.org>
4039         * xdisp.c (calc_pixel_width_or_height): Use Fbuffer_local_value.
4040         (note_mode_line_or_margin_highlight): If there is no help echo,
4041         use mode-line-default-help-echo.  Handle the case where the mouse
4042         position is past the end of the mode line string.
4044         * buffer.c (buffer_local_value_1): New function, split from
4045         Fbuffer_local_value; can return Qunbound.
4046         (Fbuffer_local_value): Use it.
4047         (Vmode_line_format): Docstring tweaks.
4049 2012-06-02  Paul Eggert  <eggert@cs.ucla.edu>
4051         * sysdep.c (system_process_attributes): Improve comment.
4053 2012-06-02  Stefan Monnier  <monnier@iro.umontreal.ca>
4055         * keyboard.c: Export real-this-command to Elisp.
4056         (syms_of_keyboard): Rename real_this_command to Vreal_this_command
4057         and DEFVAR it.  Update all users.
4059 2012-06-02  Paul Eggert  <eggert@cs.ucla.edu>
4061         * minibuf.c (Fassoc_string): Remove duplicate declaration.
4063         * sysdep.c (system_process_attributes) [SOLARIS2 && HAVE_PROCFS]:
4064         Convert pctcpu and pctmem to Lisp float properly.
4065         Let the compiler fold better, as 100.0/0x8000 is exact.
4067 2012-06-02  Andreas Schwab  <schwab@linux-m68k.org>
4069         * alloc.c (CONS_BLOCK_SIZE): Account for padding at the end of
4070         cons_block.
4072 2012-06-01  Paul Eggert  <eggert@cs.ucla.edu>
4074         * xfns.c (x_set_tool_bar_lines) [USE_GTK]: Adjust to bitfield change.
4076 2012-06-01  Dmitry Antipov  <dmantipov@yandex.ru>
4078         For a 'struct window', replace some Lisp_Object fields to
4079         bitfields where appropriate, remove unused fields.
4080         * window.h (struct window): Remove unused 'last_mark_x' and
4081         'last_mark_y' fields.  Rename 'mini_p' field to 'mini',
4082         change it's type from Lisp_Object to bitfield.
4083         Change type of 'force_start', 'optional_new_start',
4084         'last_had_star', 'update_mode_line' and 'start_at_line_beg'
4085         fields from Lisp_Object to bitfield. Adjust users accordingly.
4087 2012-05-31  Paul Eggert  <eggert@cs.ucla.edu>
4089         Pacify gcc -Wdouble-precision when using Xaw.
4090         * xterm.c (xaw_jump_callback, x_set_toolkit_scroll_bar_thumb)
4091         [HAVE_X_WINDOWS && USE_TOOLKIT_SCROLL_BARS && !USE_MOTIF && !USE_GTK]:
4092         Use 'float' consistently, rather than 'float' in most places
4093         and 'double' in a couple of places.
4095 2012-05-31  Eli Zaretskii  <eliz@gnu.org>
4097         * xdisp.c (handle_stop): Detect whether we have overlay strings
4098         loaded by testing it->current.overlay_string_index to be
4099         non-negative, instead of checking whether n_overlay_strings is
4100         positive.  (Bug#11587)
4102 2012-05-31  Chong Yidong  <cyd@gnu.org>
4104         * keymap.c (describe_map_tree): Revert 2011-07-07 change (Bug#1169).
4106         * doc.c (Fsubstitute_command_keys): Doc fix.
4108 2012-05-31  Eli Zaretskii  <eliz@gnu.org>
4110         * search.c (search_buffer): Remove calls to
4111         r_alloc_inhibit_buffer_relocation, as it is now called by
4112         maybe_unify_char, which was the cause of relocation of buffer text
4113         in bug#11519.
4115 2012-05-31  Eli Zaretskii  <eliz@gnu.org>
4117         * charset.c (maybe_unify_char): Inhibit relocation of buffer text
4118         for the duration of call to load_charset, to avoid problems with
4119         callers of maybe_unify_char that access buffer text through C
4120         pointers.
4122         * ralloc.c (r_alloc_inhibit_buffer_relocation): Increment and
4123         decrement the inhibition flag, instead of just setting or
4124         resetting it.
4126 2012-05-31  Paul Eggert  <eggert@cs.ucla.edu>
4128         Remove obsolete '#define static' cruft.
4129         * s/hpux10-20.h (_FILE_OFFSET_BITS): Don't #undef.
4130         This #undef was "temporary" in 2000; it is no longer needed
4131         now that '#define static' has gone away.
4132         * xfns.c, xterm.h (gray_bitmap_width, gray_bitmap_height)
4133         (gray_bitmap_bits): Remove; no longer needed.
4134         All uses replaced with definiens.
4135         * xterm.c: Include "bitmaps/gray.xbm".
4137 2012-05-30  Paul Eggert  <eggert@cs.ucla.edu>
4139         Clean up __executable_start, monstartup when --enable-profiling.
4140         The following changes affect the code only when profiling.
4141         * dispnew.c (__executable_start): Rename from safe_bcopy.
4142         Define only on platforms that need it.
4143         * emacs.c: Include <sys/gmon.h> when profiling.
4144         (_mcleanup): Remove decl, since <sys/gmon.h> does it now.
4145         (__executable_start): Remove decl, since lisp.h does it now.
4146         (safe_bcopy): Remove decl; no longer has that name.
4147         (main): Coalesce #if into single bit of code, for simplicity.
4148         Cast pointers to uintptr_t, since standard libraries want integers
4149         and not pointers.
4150         * lisp.h (__executable_start): New decl.
4152 2012-05-31  Glenn Morris  <rgm@gnu.org>
4154         * image.c (Fimagemagick_types): Doc fix.
4156 2012-05-30  Jim Meyering  <meyering@redhat.com>
4158         * callproc.c (Fcall_process_region): Include directory component
4159         in mkstemp error message (Bug#11586).
4161 2012-05-30  Paul Eggert  <eggert@cs.ucla.edu>
4163         * alloc.c, lisp.h (make_pure_vector): Now static.
4165 2012-05-30  Stefan Monnier  <monnier@iro.umontreal.ca>
4167         * eval.c (Fdefun, Fdefmacro, Vmacro_declaration_function):
4168         Move to byte-run.el.
4169         (Fautoload): Do the hash-doc more carefully.
4170         * data.c (Fdefalias): Purify definition, except for keymaps.
4171         (Qdefun): Move from eval.c.
4172         * lisp.h (Qdefun): Remove.
4173         * lread.c (read1): Tiny simplification.
4175 2012-05-29  Troels Nielsen  <bn.troels@gmail.com>
4177         Do not create empty overlays with the evaporate property (Bug#9642).
4178         * buffer.c (Fmove_overlay): Reinstate the earlier fix for
4179         Bug#9642, but explicitly check that the buffer the overlay would
4180         be moved to is live and rearrange lines to make sure that errors
4181         will not put the overlay in an inconsistent state.
4182         (Fdelete_overlay): Cosmetics.
4184 2012-05-28  Eli Zaretskii  <eliz@gnu.org>
4186         * w32term.c (my_bring_window_to_top): New function.
4187         (x_raise_frame): Use handle returned by DeferWindowPos, which
4188         could be different from the original one.
4189         Call my_bring_window_to_top instead of my_set_foreground_window.
4190         (Bug#11513)
4192         * w32fns.c (w32_wnd_proc): Accept and process WM_EMACS_BRINGTOTOP
4193         by calling BringWindowToTop.
4195         * w32term.h (WM_EMACS_BRINGTOTOP): New message.
4196         (WM_EMACS_END): Increase by one.
4198 2012-05-28  Paul Eggert  <eggert@cs.ucla.edu>
4200         * bidi.c (bidi_mirror_char): Put eassert before conversion to int.
4201         This avoids undefined behavior that might cause the eassert
4202         to not catch an out-of-range value.
4204 2012-05-28  Juanma Barranquero  <lekktu@gmail.com>
4206         * makefile.w32-in ($(BLD)/w32inevt.$(O), $(BLD)/w32console.$(O)):
4207         Update dependencies.
4209 2012-05-27  Eli Zaretskii  <eliz@gnu.org>
4211         * bidi.c (bidi_mirror_char): Fix last change.
4213 2012-05-27  Andreas Schwab  <schwab@linux-m68k.org>
4215         * unexmacosx.c (copy_data_segment): Truncate after 16 characters
4216         when referring to sectname field in printf format.
4218 2012-05-27  Paul Eggert  <eggert@cs.ucla.edu>
4220         * lisp.h [REL_ALLOC]: Omit duplicate prototypes.
4221         Only r_alloc_inhibit_buffer_relocation needed to be added;
4222         the others were already declared.
4224         * bidi.c (bidi_mirror_char): Don't possibly truncate the integer
4225         before checking whether it's out of range.  Put the check inside
4226         eassert.  See
4227         <http://lists.gnu.org/archive/html/emacs-devel/2012-05/msg00485.html>.
4229 2012-05-27  Ken Brown  <kbrown@cornell.edu>
4231         * callproc.c (Fcall_process): Restore a line that was accidentally
4232         commented out in the 2011-02-13 change (bug#11547).
4234 2012-05-27  Eli Zaretskii  <eliz@gnu.org>
4236         * lisp.h [REL_ALLOC]: Add prototypes for external functions
4237         defined on ralloc.c.
4239         * buffer.c [REL_ALLOC]: Remove prototypes of
4240         r_alloc_reset_variable, r_alloc, r_re_alloc, and r_alloc_free,
4241         they are now on lisp.h.
4243         * ralloc.c (r_alloc_inhibit_buffer_relocation): New function.
4245         * search.c (search_buffer): Use it to inhibit relocation of buffer
4246         text while re_search_2 is doing its job, because re_search_2 is
4247         passed C pointers to buffer text.  (Bug#11519)
4249         * msdos.c (internal_terminal_init) <Vwindow_system_version>:
4250         Update value to 24.
4252         * xdisp.c (move_it_to): Under MOVE_TO_Y, when restoring iterator
4253         state after an additional call to move_it_in_display_line_to, keep
4254         the values of it->max_ascent and it->max_descent found for the
4255         entire line.
4256         (pos_visible_p): Revert the comparison against bottom_y to what it
4257         was in revid eliz@gnu.org-20120513182235-4p6386j761ld0nwb.
4258         (Bug#11464)
4260 2012-05-26  Paul Eggert  <eggert@cs.ucla.edu>
4262         Fix coding-related core dumps with gcc -ftrapv.
4263         The code was computing A - B, where A and B are pointers, and B is
4264         random garbage.  This can lead to core dumps on platforms that
4265         have special pointer registers, and it also leads to core dumps on
4266         x86-64 when compiled with gcc -ftrapv.  The fix is to compute
4267         A - B only when B is initialized properly.
4268         * coding.c (coding_set_source, coding_set_destination): Return void.
4269         (coding_change_source, coding_change_destinations): New functions,
4270         with the old behaviors of coding_set_source and coding_set_destination.
4271         All callers that need an offset changed to use these new functions.
4273 2012-05-26  Glenn Morris  <rgm@gnu.org>
4275         * nsterm.m (ns_init_paths): Don't mess with INFOPATH.  (Bug#2791)
4277 2012-05-26  Eli Zaretskii  <eliz@gnu.org>
4279         Extend mouse support on W32 text-mode console.
4280         * xdisp.c (draw_row_with_mouse_face):
4281         Call tty_draw_row_with_mouse_face for WINDOWSNT as well.
4283         * w32console.c: Include window.h.
4284         (w32con_write_glyphs_with_face, tty_draw_row_with_mouse_face):
4285         New functions.
4286         (initialize_w32_display): Initialize mouse-highlight data.
4288         * w32inevt.c: Include termchar.h and window.h.
4289         (do_mouse_event): Support mouse-autoselect-window.  When the mouse
4290         moves, call note_mouse_highlight.  If help_echo changed, call
4291         gen_help_event to produce help-echo message in the echo area.
4292         Call clear_mouse_face if mouse_face_hidden is set in the mouse
4293         highlight info.
4295 2012-05-26  Paul Eggert  <eggert@cs.ucla.edu>
4297         * lread.c (read1): Simplify slightly to avoid an overflow warning
4298         with GCC 4.7.0 on x86-64.
4300 2012-05-26  Eli Zaretskii  <eliz@gnu.org>
4302         * bidi.c (bidi_mirror_char): Revert last change: an int is
4303         definitely wide enough here.
4305 2012-05-25  Paul Eggert  <eggert@cs.ucla.edu>
4307         Fix integer width and related bugs (Bug#9874).
4308         * alloc.c (pure_bytes_used_lisp, pure_bytes_used_non_lisp):
4309         (allocate_vectorlike, buffer_memory_full, struct sdata, SDATA_SIZE)
4310         (string_bytes, check_sblock, allocate_string_data):
4311         (compact_small_strings, Fmake_bool_vector, make_string)
4312         (make_unibyte_string, make_multibyte_string)
4313         (make_string_from_bytes, make_specified_string)
4314         (allocate_vectorlike, Fmake_vector, find_string_data_in_pure)
4315         (make_pure_string, make_pure_c_string, make_pure_vector, Fpurecopy)
4316         (mark_vectorlike):
4317         Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
4318         (allocate_pseudovector):
4319         Use int, not EMACS_INT, where int is wide enough.
4320         (inhibit_garbage_collection, Fgarbage_collect):
4321         Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
4322         * bidi.c (bidi_mirror_char): Use EMACS_INT, not int, where
4323         int might not be wide enough.
4324         (bidi_cache_search, bidi_cache_find, bidi_init_it)
4325         (bidi_count_bytes, bidi_char_at_pos, bidi_fetch_char)
4326         (bidi_at_paragraph_end, bidi_find_paragraph_start)
4327         (bidi_paragraph_init, bidi_resolve_explicit, bidi_resolve_weak)
4328         (bidi_level_of_next_char, bidi_move_to_visually_next):
4329         Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
4330         * buffer.c (copy_overlays, Fgenerate_new_buffer_name)
4331         (Fkill_buffer, Fset_buffer_major_mode)
4332         (advance_to_char_boundary, Fbuffer_swap_text)
4333         (Fset_buffer_multibyte, overlays_at, overlays_in)
4334         (overlay_touches_p, struct sortvec, record_overlay_string)
4335         (overlay_strings, recenter_overlay_lists)
4336         (adjust_overlays_for_insert, adjust_overlays_for_delete)
4337         (fix_start_end_in_overlays, fix_overlays_before, modify_overlay)
4338         (Fmove_overlay, Fnext_overlay_change, Fprevious_overlay_change)
4339         (Foverlay_recenter, last_overlay_modification_hooks_used)
4340         (report_overlay_modification, evaporate_overlays, enlarge_buffer_text):
4341         Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
4342         (validate_region): Omit unnecessary test for b <= e,
4343         since that's guaranteed by the previous test.
4344         (adjust_overlays_for_delete): Avoid pos + length overflow.
4345         (Fmove_overlay, Fdelete_overlay, add_overlay_mod_hooklist)
4346         (report_overlay_modification):
4347         Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
4348         (Foverlays_at, Fnext_overlay_change, Fprevious_overlay_change):
4349         Omit pointer cast, which isn't needed anyway, and doesn't work
4350         after the EMACS_INT -> ptrdiff_t change.
4351         (Fmove_overlay): Clip BEG and END to ptrdiff_t to avoid overflow.
4352         * buffer.h: Adjust decls to match defn changes elsewhere.
4353         (struct buffer_text, struct buffer):
4354         Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
4355         Use EMACS_INT, not int, where int might not be wide enough.
4356         * bytecode.c (unmark_byte_stack, exec_byte_code): Use ptrdiff_t,
4357         not int, to avoid needless 32-bit limit on 64-bit hosts.
4358         (exec_byte_code): Use tighter memory-full test, one that checks
4359         for alloca overflow.  Don't compute the address of the object just
4360         before an array, as that's not portable.  Use EMACS_INT, not
4361         ptrdiff_t or int, where ptrdiff_t or int might not be wide enough.
4362         * callint.c (Fcall_interactively):
4363         Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
4364         * callproc.c (call_process_kill, Fcall_process):
4365         Don't assume pid_t fits into an Emacs fixnum.
4366         (call_process_cleanup, Fcall_process, child_setup):
4367         Don't assume pid_t fits into int.
4368         (call_process_cleanup, Fcall_process, delete_temp_file)
4369         (Fcall_process_region):
4370         Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
4371         (Fcall_process): Simplify handling of volatile integers.
4372         Use int, not EMACS_INT, where int will do.
4373         * casefiddle.c (casify_object, casify_region, operate_on_word)
4374         (Fupcase_word, Fdowncase_word, Fcapitalize_word):
4375         Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
4376         (casify_object): Avoid integer overflow when overallocating buffer.
4377         * casetab.c (set_identity, shuffle): Prefer int to unsigned when
4378         either works.  Use lint_assume to convince GCC 4.6.1 that it's OK.
4379         * category.c (Fchar_category_set): Don't assume fixnum fits in int.
4380         * category.h (CATEGORYP): Don't assume arg is nonnegative.
4381         * ccl.c (GET_CCL_INT): Remove; no longer needed, since the
4382         integers are now checked earlier.  All uses replaced with XINT.
4383         (ccl_driver):
4384         Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
4385         For CCL_MapSingle, check that content and value are in int range.
4386         (ccl_driver, Fregister_code_conversion_map):
4387         Check that Vcode_version_map_vector is a vector.
4388         (resolve_symbol_ccl_program): Check that vector header is in range.
4389         Always copy the vector, so that we can check its contents reliably
4390         now rather than having to recheck each instruction as it's being
4391         executed.  Check that vector words fit in 'int'.
4392         (ccl_get_compiled_code, Fregister_ccl_program)
4393         (Fregister_code_conversion_map): Use ptrdiff_t, not int, for
4394         program indexes, to avoid needless 32-bit limit on 64-bit hosts.
4395         (Fccl_execute, Fccl_execute_on_string): Check that initial reg
4396         contents are in range.
4397         (Fccl_execute_on_string): Check that status is in range.
4398         * ccl.h (struct ccl_program.idx): Now ptrdiff_t, not int.
4399         * character.c (char_resolve_modifier_mask, Fchar_resolve_modifiers):
4400         Accept and return EMACS_INT, not int, because callers can pass values
4401         out of 'int' range.
4402         (c_string_width, strwidth, lisp_string_width, chars_in_text)
4403         (multibyte_chars_in_text, parse_str_as_multibyte)
4404         (str_as_multibyte, count_size_as_multibyte, str_to_multibyte)
4405         (str_as_unibyte, str_to_unibyte, string_count_byte8)
4406         (string_escape_byte8, Fget_byte):
4407         Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
4408         (Funibyte_string): Use CHECK_RANGED_INTEGER, not CHECK_NATNUM, to
4409         avoid mishandling large integers.
4410         * character.h: Adjust decls to match defn changes elsewhere.
4411         * charset.c (load_charset_map_from_file, find_charsets_in_text)
4412         (Ffind_charset_region):
4413         Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
4414         (load_charset_map_from_file): Redo idx calculation to avoid overflow.
4415         (load_charset_map_from_vector, Fdefine_charset_internal):
4416         Don't assume fixnum fits in int.
4417         (load_charset_map_from_vector, Fmap_charset_chars):
4418         Remove now-unnecessary CHECK_NATNUMs.
4419         (Fdefine_charset_internal): Check ranges here, more carefully.
4420         Don't rely on undefined behavior with signed left shift overflow.
4421         Don't assume unsigned int fits into fixnum, or that fixnum fits
4422         into unsigned int.  Don't require max_code to be a valid fixnum;
4423         that's not true for gb10830 4-byte on a 32-bit host.  Allow
4424         invalid_code to be a cons, for the same reason.  Require code_offset
4425         to be a character.  Avoid int overflow if max_char is close
4426         to INT_MAX.
4427         (CODE_POINT_TO_INDEX): On 32-bit hosts, return int, not unsigned;
4428         this is intended anyway and avoids some undefined behavior.
4429         (load_charset_map): Pass unsigned, not int, as 2nd arg of
4430         INDEX_TO_CODE_POINT, as that's what it expects.
4431         (Funify_charset, encode_char): Don't stuff unsigned vals into int vars.
4432         * charset.h (DECODE_CHAR): Return int, not unsigned;
4433         this is what was intended anyway, and it avoids undefined behavior.
4434         (CHARSET_OFFSET): Remove unused macro, instead of fixing its
4435         integer-overflow issues.
4436         (ENCODE_CHAR): Return unsigned on all hosts, not just on 32-bit hosts.
4437         Formerly, it returned EMACS_INT on 64-bit hosts in the common case
4438         where the argument is EMACS_INT, and this behavior is not intended.
4439         * chartab.c (Fmake_char_table, Fset_char_table_range)
4440         (uniprop_get_decoder, uniprop_get_encoder):
4441         Don't assume fixnum fits in int.
4442         * cmds.c (move_point): New function, that does the gist of
4443         Fforward_char and Fbackward_char, but does so while checking
4444         for integer overflow more accurately.
4445         (Fforward_char, Fbackward_char): Use it.
4446         (Fforward_line, Fend_of_line, internal_self_insert)
4447         (internal_self_insert):
4448         Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
4449         Fix a FIXME, by checking for integer overflow when calculating
4450         target_clm and actual_clm.
4451         * coding.c (detect_coding_XXX, encode_coding_XXX, CODING_DECODE_CHAR)
4452         (CODING_ENCODE_CHAR, CODING_CHAR_CHARSET, CODING_CHAR_CHARSET_P)
4453         (ASSURE_DESTINATION, coding_alloc_by_realloc)
4454         (coding_alloc_by_making_gap, alloc_destination)
4455         (detect_coding_utf_8, encode_coding_utf_8, decode_coding_utf_16)
4456         (encode_coding_utf_16, detect_coding_emacs_mule)
4457         (decode_coding_emacs_mule, encode_coding_emacs_mule)
4458         (detect_coding_iso_2022, decode_coding_iso_2022)
4459         (encode_invocation_designation, encode_designation_at_bol)
4460         (encode_coding_iso_2022, detect_coding_sjis, detect_coding_big5)
4461         (decode_coding_sjis, decode_coding_big5, encode_coding_sjis)
4462         (encode_coding_big5, detect_coding_ccl, decode_coding_ccl)
4463         (encode_coding_ccl, encode_coding_raw_text)
4464         (detect_coding_charset, decode_coding_charset)
4465         (encode_coding_charset, detect_eol, decode_eol, produce_chars)
4466         (produce_composition, produce_charset, produce_annotation)
4467         (decode_coding, handle_composition_annotation)
4468         (handle_charset_annotation, consume_chars, decode_coding_gap)
4469         (decode_coding_object, encode_coding_object, detect_coding_system)
4470         (Ffind_coding_systems_region_internal, Fcheck_coding_systems_region)
4471         (code_convert_region, code_convert_string)
4472         (Fdefine_coding_system_internal)
4473         (coding_set_source, coding_set_destination):
4474         Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
4475         (setup_iso_safe_charsets, consume_chars, Funencodable_char_position)
4476         (Fdefine_coding_system_internal):
4477         Don't assume fixnums fit in int.
4478         (decode_coding_gap, decode_coding_object, encode_coding_object)
4479         (Fread_coding_system, Fdetect_coding_region)
4480         (Funencodable_char_position, Fcheck_coding_systems_region)
4481         (get_translation, handle_composition_annotation, consume_chars):
4482         Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
4483         (consume_chars): Rewrite to not calculate an address outside buffer.
4484         (Ffind_operation_coding_system): NATNUMP can eval its arg twice.
4485         Don't access memory outside of the args array.
4486         (Fdefine_coding_system_internal): Check for charset-id overflow.
4487         (ENCODE_ISO_CHARACTER): Use unsigned, not int, to store the unsigned
4488         result of ENCODE_CHAR.
4489         * coding.h: Adjust decls to match defn changes elsewhere.
4490         (struct coding_system):
4491         Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
4492         * composite.c (get_composition_id, find_composition)
4493         (run_composition_function, update_compositions)
4494         (compose_text, composition_gstring_put_cache)
4495         (composition_gstring_p, composition_gstring_width)
4496         (fill_gstring_header, fill_gstring_body, autocmp_chars)
4497         (composition_compute_stop_pos, composition_reseat_it)
4498         (composition_update_it, struct position_record)
4499         (find_automatic_composition, composition_adjust_point)
4500         (Fcomposition_get_gstring, Ffind_composition_internal):
4501         Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
4502         (update_compositions):
4503         Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
4504         * composite.h: Adjust decls to match defn changes elsewhere.
4505         (struct composition):
4506         Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
4507         * data.c (let_shadows_buffer_binding_p, let_shadows_global_binding_p):
4508         Do not attempt to compute the address of the object just before a
4509         buffer; this is not portable.
4510         (Faref, Faset):
4511         Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
4512         (Faset): Use int, not EMACS_INT, where int is wide enough.
4513         (Fstring_to_number): Don't assume fixnums fit in int.
4514         (Frem): Don't assume arg is nonnegative.
4515         * dbusbind.c (xd_append_arg): Check for integers out of range.
4516         (Fdbus_call_method): Don't overflow the timeout int.
4517         (extract_signed, extract_unsigned): New functions.
4518         (XD_CHECK_DBUS_SERIAL): Remove; superseded by extract_unsigned.
4519         (xd_get_connection_references): Return ptrdiff_t, not int.
4520         All uses changed.
4521         (xd_signature, xd_append_arg, xd_retrieve_arg, Fdbus_message_internal)
4522         (xd_read_message_1):
4523         Use int, not unsigned, where the dbus API uses int.
4524         (Fdbus_message_internal): Don't overflow mtype.
4525         (syms_of_dbusbind): Allocate right-sized buffer for integers.
4526         * dired.c (directory_files_internal, file_name_completion, scmp)
4527         (file_name_completion_stat):
4528         Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
4529         (file_name_completion): Don't overflow matchcount.
4530         (file_name_completion_stat): Use SAFE_ALLOCA, not alloca.
4531         * dispextern.h: Adjust decls to match defn changes elsewhere.
4532         (struct text_pos, struct glyph, struct bidi_saved_info)
4533         (struct bidi_string_data, struct bidi_it, struct composition_it)
4534         (struct it):
4535         Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
4536         (struct display_pos, struct composition_it, struct it):
4537         Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
4538         * dispnew.c (increment_matrix_positions)
4539         (increment_row_positions, mode_line_string)
4540         (marginal_area_string):
4541         Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
4542         (change_frame_size_1, Fredisplay, Fframe_or_buffer_changed_p):
4543         Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
4544         (duration_to_sec_usec): New function, to check for overflow better.
4545         (Fsleep_for, sit_for): Use it.
4546         * doc.c (get_doc_string, store_function_docstring):
4547         Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
4548         (get_doc_string, Fsnarf_documentation):
4549         Use int, not EMACS_INT, where int is wide enough.
4550         (get_doc_string):
4551         Use SAFE_ALLOCA, not alloca.
4552         Check for overflow when converting EMACS_INT to off_t.
4553         * doprnt.c (doprnt):
4554         Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
4555         * editfns.c (init_editfns, Fuser_uid, Fuser_real_uid):
4556         Don't assume uid_t fits into fixnum.
4557         (buildmark, Fgoto_char, overlays_around, find_field, Fdelete_field)
4558         (Ffield_string, Ffield_string_no_properties, Ffield_beginning)
4559         (Ffield_end, Fconstrain_to_field, Fline_beginning_position)
4560         (Fline_end_position, Fprevious_char, Fchar_after, Fchar_before)
4561         (general_insert_function)
4562         (Finsert_char, make_buffer_string, make_buffer_string_both)
4563         (update_buffer_properties, Fbuffer_substring)
4564         (Fbuffer_substring_no_properties, Fcompare_buffer_substrings)
4565         (Fsubst_char_in_region, check_translation)
4566         (Ftranslate_region_internal, save_restriction_restore, Fformat)
4567         (transpose_markers, Ftranspose_regions):
4568         Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
4569         (clip_to_bounds): Move to lisp.h as an inline function).
4570         (Fconstrain_to_field): Don't assume integers are nonnegative.
4571         (Fline_beginning_position, Fsave_excursion, Fsave_current_buffer):
4572         (Fsubst_char_in_region, Fsave_restriction):
4573         Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
4574         (Femacs_pid): Don't assume pid_t fits into fixnum.
4575         (lo_time): Use int, not EMACS_INT, when int suffices.
4576         (lisp_time_argument): Check for usec out of range.
4577         (Fencode_time): Don't assume fixnum fits in int.
4578         (Fuser_login_name, Fuser_full_name): Signal an error
4579         if a uid argument is out of range, rather than relying on
4580         undefined behavior.
4581         (Fformat_time_string): Remove now-unnecessary check.
4582         lisp_time_argument checks for out-of-range usec now.
4583         Use ptrdiff_t, not size_t, where ptrdiff_t will do.
4584         * emacs.c (gdb_valbits, gdb_gctypebits): Now int, not EMACS_INT.
4585         (gdb_data_seg_bits): Now uintptr_t, not EMACS_INT.
4586         (PVEC_FLAG, gdb_array_mark_flag): Now ptrdiff_t, not EMACS_INT.
4587         (init_cmdargs, Fdump_emacs):
4588         Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
4589         (Fkill_emacs): Don't assume fixnum fits in int; instead, take just
4590         the bottom (typically) 32 bits of the fixnum.
4591         * eval.c (specpdl_size, call_debugger):
4592         Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
4593         (when_entered_debugger, Fbacktrace_debug):
4594         Don't assume fixnum can fit in int.
4595         (Fdefvaralias, Fdefvar): Do not attempt to compute the address of
4596         the object just before a buffer; this is not portable.
4597         (FletX, Flet, Funwind_protect, do_autoload, Feval, funcall_lambda)
4598         (grow_specpdl, unbind_to):
4599         Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
4600         (Fapply, apply_lambda): Don't assume ptrdiff_t can hold fixnum.
4601         (grow_specpdl): Simplify allocation by using xpalloc.
4602         (Fprog1, Fprog2): Don't assume list length fits in int.  Simplify.
4603         * fileio.c (Ffind_file_name_handler, Fcopy_file, Frename_file)
4604         (Finsert_file_contents, Fwrite_region, Fdo_auto_save):
4605         Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
4606         (Ffind_file_name_handler, non_regular_inserted, Finsert_file_contents)
4607         (a_write, e_write):
4608         Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
4609         (Fcopy_file, non_regular_nbytes, read_non_regular)
4610         (Finsert_file_contents):
4611         Use int, not EMACS_INT, where int is wide enough.
4612         (READ_BUF_SIZE): Verify that it fits in int.
4613         (Finsert_file_contents): Check that counts are in proper range,
4614         rather than assuming fixnums fit into ptrdiff_t etc.
4615         Don't assume fixnums fit into int.
4616         * floatfns.c (Fexpt): Avoid undefined signed * signed overflow.
4617         * fns.c (Fcompare_strings, Fstring_lessp, struct textprop_rec, concat)
4618         (string_char_byte_cache_charpos, string_char_byte_cache_bytepos)
4619         (string_char_to_byte, string_byte_to_char)
4620         (string_make_multibyte, string_to_multibyte)
4621         (string_make_unibyte, Fstring_as_unibyte, Fstring_as_multibyte)
4622         (Fstring_to_unibyte, Fsubstring, Fsubstring_no_properties)
4623         (substring_both, Fdelete, internal_equal, Ffillarray)
4624         (Fclear_string, mapcar1)
4625         (Fbase64_encode_region, Fbase64_encode_string, base64_encode_1)
4626         (Fbase64_decode_region, Fbase64_decode_string, base64_decode_1)
4627         (larger_vector, make_hash_table, maybe_resize_hash_table)
4628         (hash_lookup, hash_remove_from_table, hash_clear, sweep_weak_table)
4629         (Fmaphash, secure_hash):
4630         Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
4631         (concat): Check for string index and length overflow.
4632         (Fmapconcat): Don't assume fixnums fit into ptrdiff_t.
4633         (Frequire):
4634         Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
4635         (larger_vector): New API (vec, incr_min, size_max) replaces old
4636         one (vec, new_size, init).  This catches size overflow.
4637         INIT was removed because it was always Qnil.
4638         All callers changed.
4639         (INDEX_SIZE_BOUND): New macro, which calculates more precisely
4640         the upper bound on a hash table index size.
4641         (make_hash_table, maybe_resize_hash_table): Use it.
4642         (secure_hash): Computer start_byte and end_byte only after
4643         they're known to be in ptrdiff_t range.
4644         * font.c (font_intern_prop, font_at, font_range, Ffont_shape_gstring)
4645         (Ffont_get_glyphs, Ffont_at):
4646         Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
4647         (font_style_to_value, font_prop_validate_style, font_expand_wildcards)
4648         (Flist_fonts, Fopen_font):
4649         Don't assume fixnum can fit in int.
4650         (check_gstring): Don't assume index can fit in int.
4651         (font_match_p): Check that fixnum is a character, not a nonnegative
4652         fixnum, since the later code needs to stuff it into an int.
4653         (font_find_for_lface): Use SAFE_ALLOCA_LISP, not alloca.
4654         (font_fill_lglyph_metrics): Use unsigned, not EMACS_INT, to avoid
4655         conversion overflow issues.
4656         (Fopen_font): Check for integer out of  range.
4657         (Ffont_get_glyphs): Don't assume index can fit in int.
4658         * font.h: Adjust decls to match defn changes elsewhere.
4659         * fontset.c (reorder_font_vector): Redo score calculation to avoid
4660         integer overflow.
4661         (num_auto_fontsets, fontset_from_font): Use ptrdiff_t, not
4662         printmax_t, where ptrdiff_t is wide enough.
4663         (Finternal_char_font):
4664         Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
4665         * frame.c (Fset_mouse_position, Fset_mouse_pixel_position)
4666         (Fset_frame_height, Fset_frame_width, Fset_frame_size)
4667         (Fset_frame_position, x_set_frame_parameters)
4668         (x_set_line_spacing, x_set_border_width)
4669         (x_set_internal_border_width, x_set_alpha, x_figure_window_size):
4670         Check that fixnums are in proper range for system types.
4671         (frame_name_fnn_p, Fframe_parameter, Fmodify_frame_parameters):
4672         Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
4673         (Fmodify_frame_parameters): Don't assume fixnum fits in int.
4674         Use SAFE_ALLOCA_LISP, not alloca.
4675         * frame.h (struct frame): Use intptr_t, not EMACS_INT, where
4676         intptr_t is wide enough.
4677         * fringe.c (lookup_fringe_bitmap, get_logical_fringe_bitmap)
4678         (Fdefine_fringe_bitmap): Don't assume fixnum fits in int.
4679         (Ffringe_bitmaps_at_pos): Don't assume index fits in int.
4680         Check for fixnum out of range.
4681         * ftfont.c (ftfont_list): Don't assume index fits in int.
4682         Check that fixnums are in proper range for system types.
4683         (ftfont_shape_by_flt):
4684         Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
4685         * gnutls.c (emacs_gnutls_write, emacs_gnutls_read):
4686         Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
4687         (Fgnutls_error_fatalp, Fgnutls_error_string, Fgnutls_boot):
4688         Check that fixnums are in proper range for system types.
4689         * gnutls.h: Adjust decls to match defn changes elsewhere.
4690         * gtkutil.c (xg_dialog_run):
4691         Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
4692         (update_frame_tool_bar):
4693         Check that fixnums are in proper range for system types.
4694         * image.c (parse_image_spec): Redo count calculation to avoid overflow.
4695         (lookup_image): Check that fixnums are in range for system types.
4696         * indent.c (last_known_column, last_known_column_point):
4697         (current_column_bol_cache):
4698         (skip_invisible, current_column, check_display_width):
4699         (check_display_width, scan_for_column, current_column_1)
4700         (Findent_to, Fcurrent_indentation, position_indentation)
4701         (indented_beyond_p, Fmove_to_column, compute_motion):
4702         (Fcompute_motion, Fvertical_motion):
4703         Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
4704         (last_known_column_modified): Use EMACS_INT, not int.
4705         (check_display_width):
4706         (Fcompute_motion):
4707         Check that fixnums and floats are in proper range for system types.
4708         (compute_motion): Don't assume index or fixnum fits in int.
4709         (compute_motion, Fcompute_motion):
4710         Use int, not EMACS_INT, when it is wide enough.
4711         (vmotion): Omit local var start_hpos that is always 0; that way
4712         we don't need to worry about overflow in expressions involving it.
4713         * indent.h: Adjust decls to match defn changes elsewhere.
4714         (struct position):
4715         Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
4716         Use int, not EMACS_INT, where int is wide enough.
4717         Remove unused members ovstring_chars_done and tab_offset;
4718         all uses removed.
4719         * insdel.c (move_gap, move_gap_both, gap_left, gap_right)
4720         (adjust_markers_for_delete, adjust_markers_for_insert, adjust_point)
4721         (adjust_markers_for_replace, make_gap_larger, make_gap_smaller)
4722         (make_gap, copy_text, insert, insert_and_inherit)
4723         (insert_before_markers, insert_before_markers_and_inherit)
4724         (insert_1, count_combining_before, count_combining_after)
4725         (insert_1_both, insert_from_string)
4726         (insert_from_string_before_markers, insert_from_string_1)
4727         (insert_from_gap, insert_from_buffer, insert_from_buffer_1)
4728         (adjust_after_replace, adjust_after_insert, replace_range)
4729         (replace_range_2, del_range, del_range_1, del_range_byte)
4730         (del_range_both, del_range_2, modify_region)
4731         (prepare_to_modify_buffer, signal_before_change)
4732         (signal_after_change, Fcombine_after_change_execute):
4733         Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
4734         * intervals.c (traverse_intervals, rotate_right, rotate_left)
4735         (balance_an_interval, split_interval_right, split_interval_left)
4736         (find_interval, next_interval, update_interval)
4737         (adjust_intervals_for_insertion, delete_node, delete_interval)
4738         (interval_deletion_adjustment, adjust_intervals_for_deletion)
4739         (static_offset_intervals, offset_intervals)
4740         (merge_interval_right, merge_interval_left, make_new_interval)
4741         (graft_intervals_into_buffer, temp_set_point_both)
4742         (temp_set_point, set_point, adjust_for_invis_intang)
4743         (set_point_both, move_if_not_intangible, get_property_and_range)
4744         (get_local_map, copy_intervals, copy_intervals_to_string)
4745         (compare_string_intervals, set_intervals_multibyte_1):
4746         Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
4747         * intervals.h: Adjust decls to match defn changes elsewhere.
4748         (struct interval):
4749         Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
4750         * keyboard.c (this_command_key_count, this_single_command_key_start)
4751         (before_command_key_count, before_command_echo_length, echo_now)
4752         (echo_length, recursive_edit_1, Frecursive_edit, Ftrack_mouse)
4753         (command_loop_1, safe_run_hooks, read_char, timer_check_2)
4754         (menu_item_eval_property, read_key_sequence, Fread_key_sequence)
4755         (Fread_key_sequence_vector, Fexecute_extended_command, Fsuspend_emacs):
4756         Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
4757         (last_non_minibuf_size, last_point_position, echo_truncate)
4758         (command_loop_1, adjust_point_for_property, read_char, gen_help_event)
4759         (make_lispy_position, make_lispy_event, parse_modifiers_uncached)
4760         (parse_modifiers, modify_event_symbol, Fexecute_extended_command)
4761         (stuff_buffered_input):
4762         Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
4763         (last_auto_save, command_loop_1, read_char):
4764         Use EMACS_INT, not int, to avoid integer overflow.
4765         (record_char): Avoid overflow in total_keys computation.
4766         (parse_modifiers_uncached): Redo index calculation to avoid overflow.
4767         * keyboard.h: Adjust decls to match defn changes elsewhere.
4768         * keymap.c (Fdefine_key, Fcurrent_active_maps, accessible_keymaps_1)
4769         (Fkey_description, Fdescribe_vector, Flookup_key):
4770         Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
4771         (click_position): New function, to check that positions are in range.
4772         (Fcurrent_active_maps):
4773         (describe_command):
4774         Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
4775         (Faccessible_keymaps, Fkey_description):
4776         (preferred_sequence_p):
4777         Don't assume fixnum can fit into int.
4778         (Fkey_description): Use SAFE_ALLOCA_LISP, not alloca.
4779         Check for integer overflow in size calculations.
4780         (Ftext_char_description): Use CHECK_CHARACTER, not CHECK_NUMBER, to
4781         avoid mishandling large integers.
4782         * lisp.h: Adjust decls to match defn changes elsewhere.
4783         (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG, struct Lisp_String)
4784         (struct vectorlike_header, struct Lisp_Subr, struct Lisp_Hash_Table)
4785         (struct Lisp_Marker):
4786         Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
4787         (clip_to_bounds): Now an inline function, moved here from editfns.c.
4788         (GLYPH_CODE_P): Check for overflow in system types, subsuming the
4789         need for GLYPH_CODE_CHAR_VALID_P and doing proper checking ourselves.
4790         All callers changed.
4791         (GLYPH_CODE_CHAR, GLYPH_CODE_FACE):
4792         Assume the arg has valid form, since it always does.
4793         (TYPE_RANGED_INTEGERP): Avoid bug when checking against a wide
4794         unsigned integer system type.
4795         (CHECK_RANGED_INTEGER, CHECK_TYPE_RANGED_INTEGER): New macros.
4796         (struct catchtag, specpdl_size, SPECPDL_INDEX, USE_SAFE_ALLOCA):
4797         Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
4798         (struct catchtag): Use EMACS_INT, not int, since it may be a fixnum.
4799         (duration_to_sec_usec): New decl.
4800         * lread.c (read_from_string_index, read_from_string_index_byte)
4801         (read_from_string_limit, readchar, unreadchar, openp)
4802         (read_internal_start, read1, oblookup):
4803         Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
4804         (Fload, readevalloop, Feval_buffer, Feval_region):
4805         Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
4806         (openp): Check for out-of-range argument to 'access'.
4807         (read1): Use int, not EMACS_INT, where int is wide enough.
4808         Don't assume fixnum fits into int.
4809         Fix off-by-one error that can read outside a buffer.
4810         (read_filtered_event): Use duration_to_sec_usec
4811         to do proper overflow checking on durations.
4812         * macros.c (Fstart_kbd_macro): Use xpalloc to check for overflow
4813         in size calculation.
4814         (Fexecute_kbd_macro):
4815         Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
4816         * marker.c (cached_charpos, cached_bytepos, CONSIDER)
4817         (byte_char_debug_check, buf_charpos_to_bytepos, verify_bytepos)
4818         (buf_bytepos_to_charpos, Fset_marker, set_marker_restricted)
4819         (set_marker_both, set_marker_restricted_both, marker_position)
4820         (marker_byte_position, Fbuffer_has_markers_at):
4821         Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
4822         (Fset_marker, set_marker_restricted): Don't assume fixnum fits in int.
4823         * menu.c (ensure_menu_items): Rename from grow_menu_items.
4824         It now merely ensures that the menu is large enough, without
4825         necessarily growing it, as this avoids some integer overflow issues.
4826         All callers changed.
4827         (keymap_panes, parse_single_submenu, Fx_popup_menu):
4828         Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
4829         (parse_single_submenu, Fx_popup_menu): Don't assume fixnum fits in int.
4830         Use SAFE_ALLOCA_LISP, not alloca.
4831         (find_and_return_menu_selection): Avoid unnecessary casts of pointers
4832         to EMACS_INT.  Check that fixnums are in proper range for system types.
4833         * minibuf.c (minibuf_prompt_width, string_to_object)
4834         (Fminibuffer_contents, Fminibuffer_contents_no_properties)
4835         (Fminibuffer_completion_contents, Ftry_completion, Fall_completions):
4836         Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
4837         (get_minibuffer, read_minibuf_unwind):
4838         Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
4839         (read_minibuf): Omit unnecessary arg BACKUP_N, which is always nil;
4840         this simplifies overflow checking.  All callers changed.
4841         (read_minibuf, Fread_buffer, Ftry_completion, Fall_completions)
4842         (Ftest_completion):
4843         Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
4844         * nsfns.m (check_ns_display_info): Don't assume fixnum fits in long.
4845         (x_set_menu_bar_lines, x_set_tool_bar_lines, Fx_create_frame):
4846         Check that fixnums are in proper range for system types.
4847         (Fx_create_frame, Fx_show_tip):
4848         Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
4849         * nsfont.m (ns_findfonts, nsfont_list_family):
4850         Don't assume fixnum fits in long.
4851         * nsmenu.m (ns_update_menubar, ns_menu_show, ns_popup_dialog):
4852         Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
4853         (ns_update_menubar): Use intptr_t, not EMACS_INT, when intptr_t is
4854         wide enough.
4855         * nsselect.m (ns_get_local_selection, clean_local_selection_data):
4856         Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
4857         * print.c (print_buffer_size, print_buffer_pos, print_buffer_pos_byte)
4858         (PRINTDECLARE, PRINTPREPARE):
4859         (strout, print_string):
4860         (print, print_preprocess, print_check_string_charset_prop)
4861         (print_object):
4862         Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
4863         (PRINTDECLARE):
4864         (temp_output_buffer_setup, Fprin1_to_string, print_object):
4865         Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
4866         (PRINTPREPARE): Use int, not ptrdiff_t, where int is wide enough.
4867         (printchar, strout): Use xpalloc to catch size calculation overflow.
4868         (Fexternal_debugging_output): Don't overflow EMACS_INT->int conversion.
4869         (print_error_message): Use SAFE_ALLOCA, not alloca.
4870         (print_object): Use int, not EMACS_INT, where int is wide enough.
4871         (print_depth, new_backquote_output, print_number_index):
4872         Use ptrdiff_t, not int, where int might not be wide enough.
4873         * process.c (Fdelete_process): Don't assume pid fits into EMACS_INT.
4874         (Fset_process_window_size, Fformat_network_address)
4875         (get_lisp_to_sockaddr_size, set_socket_option, Fmake_network_process)
4876         (sigchld_handler):
4877         Check that fixnums are in proper range for system types.
4878         (Fsignal_process): Simplify by avoiding a goto.
4879         Check for process-ids out of pid_t range rather than relying on
4880         undefined behavior.
4881         (process_tick, update_tick): Use EMACS_INT, not int.
4882         (Fformat_network_address, read_process_output, send_process)
4883         (Fprocess_send_region, status_notify):
4884         Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
4885         (Fformat_network_address, Fmake_serial_process, Fmake_network_process)
4886         (wait_reading_process_output, read_process_output, exec_sentinel):
4887         Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
4888         (conv_lisp_to_sockaddr): Don't assume fixnums fit into int.
4889         (Faccept_process_output): Use duration_to_sec_usec to do proper
4890         overflow checking on durations.
4891         (emacs_get_tty_pgrp, Fprocess_running_child_p, process_send_signal):
4892         Don't assume pid_t fits in int.
4893         * process.h (struct Lisp_Process): Members tick and update_tick
4894         are now of type EMACS_INT, not int.
4895         * puresize.h (PURESIZE_RATIO): Shrink this to 8/6 on 32-bit hosts
4896         configured --with-wide-int.
4897         * scroll.c (calculate_scrolling, calculate_direct_scrolling)
4898         (line_ins_del): Use int, not EMACS_INT, where int is wide enough.
4899         * search.c (looking_at_1, string_match_1):
4900         (fast_string_match, fast_c_string_match_ignore_case)
4901         (fast_string_match_ignore_case, fast_looking_at, scan_buffer)
4902         (scan_newline, find_before_next_newline, search_command)
4903         (trivial_regexp_p, search_buffer, simple_search, boyer_moore)
4904         (set_search_regs, wordify):
4905         (Freplace_match):
4906         (Fmatch_data):
4907         Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
4908         (string_match_1, search_buffer, set_search_regs):
4909         (Fmatch_data):
4910         Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
4911         (wordify): Check for overflow in size calculation.
4912         (Freplace_match): Avoid potential buffer overflow in search_regs.start.
4913         (Fset_match_data): Don't assume fixnum fits in ptrdiff_t.
4914         Check that fixnums are in proper range for system types.
4915         * sound.c (struct sound_device)
4916         (wav_play, au_play, vox_write, alsa_period_size, alsa_write):
4917         Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
4918         (Fplay_sound_internal):
4919         Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
4920         * syntax.c (struct lisp_parse_state, find_start_modiff)
4921         (Finternal_describe_syntax_value, scan_lists, scan_sexps_forward):
4922         (Fparse_partial_sexp):
4923         Don't assume fixnums can fit in int.
4924         (struct lisp_parse_state, find_start_pos, find_start_value)
4925         (find_start_value_byte, find_start_begv)
4926         (update_syntax_table, char_quoted, dec_bytepos)
4927         (find_defun_start, prev_char_comend_first, back_comment):
4928         (scan_words, skip_chars, skip_syntaxes, forw_comment, Fforward_comment)
4929         (scan_lists, Fbackward_prefix_chars, scan_sexps_forward):
4930         Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
4931         (Finternal_describe_syntax_value): Check that match_lisp is a
4932         character, not an integer, since the code stuffs it into int.
4933         (scan_words, scan_sexps_forward):
4934         Check that fixnums are in proper range for system types.
4935         (Fforward_word):
4936         Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
4937         (scan_sexps_forward):
4938         Use CHARACTERP, not INTEGERP, since the value must fit into int.
4939         (Fparse_partial_sexp): Fix doc; element 8 is not ignored.
4940         * syntax.h: Adjust decls to match defn changes elsewhere.
4941         (struct gl_state_s):
4942         Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
4943         (SETUP_SYNTAX_TABLE_FOR_OBJECT): Use PTRDIFF_MAX, not
4944         MOST_POSITIVE_FIXNUM.
4945         * sysdep.c (wait_for_termination_1, wait_for_termination)
4946         (interruptible_wait_for_termination, mkdir):
4947         Don't assume pid_t fits in int; on 64-bit AIX pid_t is 64-bit.
4948         (emacs_read, emacs_write):
4949         Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
4950         (system_process_attributes): Don't assume uid_t, gid_t, EMACS_INT,
4951         and double all fit in int.
4952         * term.c (set_tty_color_mode):
4953         Check that fixnums are in proper range for system types.
4954         * termhooks.h (struct input_event):
4955         Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
4956         * textprop.c (validate_interval_range, interval_of)
4957         (Fadd_text_properties, set_text_properties_1)
4958         (Fremove_text_properties, Fremove_list_of_text_properties)
4959         (Ftext_property_any, Ftext_property_not_all)
4960         (copy_text_properties, text_property_list, extend_property_ranges)
4961         (verify_interval_modification):
4962         Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
4963         (Fnext_single_char_property_change)
4964         (Fprevious_single_char_property_change):
4965         Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
4966         (copy_text_properties):
4967         Check for integer overflow in index calculation.
4968         * undo.c (last_boundary_position, record_point, record_insert)
4969         (record_delete, record_marker_adjustment, record_change)
4970         (record_property_change):
4971         Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
4972         (truncate_undo_list, Fprimitive_undo): Don't assume fixnum fits in int.
4973         Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
4974         * w32fns.c (Fx_create_frame, x_create_tip_frame, Fx_show_tip)
4975         (Fx_hide_tip, Fx_file_dialog):
4976         * w32menu.c (set_frame_menubar):
4977         Use ptrdiff_t, not int, for consistency with rest of code.
4978         * window.c (window_scroll_preserve_hpos, window_scroll_preserve_vpos)
4979         (select_window, Fdelete_other_windows_internal)
4980         (window_scroll_pixel_based, window_scroll_line_based)
4981         (Frecenter, Fset_window_configuration):
4982         Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
4983         (Fset_window_hscroll, run_window_configuration_change_hook)
4984         (set_window_buffer, temp_output_buffer_show, scroll_command)
4985         (Fscroll_other_window, Frecenter):
4986         Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
4987         (Fwindow_line_height, window_scroll, Fscroll_left, Fscroll_right):
4988         Don't assume fixnum fits in int.
4989         (Fset_window_scroll_bars):
4990         Check that fixnums are in proper range for system types.
4991         * xdisp.c (help_echo_pos, pos_visible_p, string_pos_nchars_ahead)
4992         (string_pos, c_string_pos, number_of_chars, init_iterator)
4993         (in_ellipses_for_invisible_text_p, init_from_display_pos)
4994         (compute_stop_pos, next_overlay_change, compute_display_string_pos)
4995         (compute_display_string_end, handle_face_prop)
4996         (face_before_or_after_it_pos, handle_invisible_prop)
4997         (handle_display_prop, handle_display_spec, handle_single_display_spec)
4998         (display_prop_intangible_p, string_buffer_position_lim)
4999         (string_buffer_position, handle_composition_prop, load_overlay_strings)
5000         (get_overlay_strings_1, get_overlay_strings)
5001         (iterate_out_of_display_property, forward_to_next_line_start)
5002         (back_to_previous_visible_line_start, reseat, reseat_to_string)
5003         (get_next_display_element, set_iterator_to_next)
5004         (get_visually_first_element, compute_stop_pos_backwards)
5005         (handle_stop_backwards, next_element_from_buffer)
5006         (move_it_in_display_line_to, move_it_in_display_line)
5007         (move_it_to, move_it_vertically_backward, move_it_by_lines)
5008         (add_to_log, message_dolog, message_log_check_duplicate)
5009         (message2, message2_nolog, message3, message3_nolog
5010         (with_echo_area_buffer, display_echo_area_1, resize_mini_window_1)
5011         (current_message_1, truncate_echo_area, truncate_message_1)
5012         (set_message, set_message_1, store_mode_line_noprop)
5013         (hscroll_window_tree, debug_delta, debug_delta_bytes, debug_end_vpos)
5014         (text_outside_line_unchanged_p, check_point_in_composition)
5015         (reconsider_clip_changes)
5016         (redisplay_internal, set_cursor_from_row, try_scrolling)
5017         (try_cursor_movement, set_vertical_scroll_bar, redisplay_window)
5018         (redisplay_window, find_last_unchanged_at_beg_row)
5019         (find_first_unchanged_at_end_row, row_containing_pos, try_window_id)
5020         (trailing_whitespace_p, find_row_edges, display_line)
5021         (RECORD_MAX_MIN_POS, Fcurrent_bidi_paragraph_direction)
5022         (display_mode_element, store_mode_line_string)
5023         (pint2str, pint2hrstr, decode_mode_spec)
5024         (display_count_lines, display_string, draw_glyphs)
5025         (x_produce_glyphs, x_insert_glyphs)
5026         (rows_from_pos_range, mouse_face_from_buffer_pos)
5027         (fast_find_string_pos, mouse_face_from_string_pos)
5028         (note_mode_line_or_margin_highlight, note_mouse_highlight):
5029         Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
5030         (safe_call, init_from_display_pos, handle_fontified_prop)
5031         (handle_single_display_spec, load_overlay_strings)
5032         (with_echo_area_buffer, setup_echo_area_for_printing)
5033         (display_echo_area, echo_area_display)
5034         (x_consider_frame_title, prepare_menu_bars, update_menu_bar)
5035         (update_tool_bar, hscroll_window_tree, redisplay_internal)
5036         (redisplay_window, dump_glyph_row, display_mode_line)
5037         (Fformat_mode_line, decode_mode_spec, on_hot_spot_p):
5038         (handle_display_spec, display_prop_string_p):
5039         Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
5040         (handle_single_display_spec, build_desired_tool_bar_string)
5041         (redisplay_tool_bar, scroll_window_tree, Fdump_glyph_matrix)
5042         (get_specified_cursor_type):
5043         Check that fixnums are in proper range for system types.
5044         (struct overlay_entry, resize_mini_window, Fdump_glyph_row)
5045         (Flookup_image_map):
5046         Don't assume fixnums fit in int.
5047         (compare_overlay_entries):
5048         Avoid mishandling comparisons due to subtraction overflow.
5049         (load_overlay_strings): Use SAFE_NALLOCA, not alloca.
5050         (last_escape_glyph_face_id, last_glyphless_glyph_face_id):
5051         (handle_tool_bar_click):
5052         Use int, not unsigned, since we prefer signed and the signedness
5053         doesn't matter here.
5054         (get_next_display_element, next_element_from_display_vector):
5055         Use int, not EMACS_INT, when int is wide enough.
5056         (start_hourglass): Use duration_to_sec_usec to do proper
5057         overflow checking on durations.
5058         * xfaces.c (Fbitmap_spec_p):
5059         Check that fixnums are in proper range for system types.
5060         (compare_fonts_by_sort_order):
5061         Avoid mishandling comparisons due to subtraction overflow.
5062         (Fx_family_fonts, realize_basic_faces):
5063         Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
5064         (Fx_family_fonts):
5065         Don't assume fixnum fits in int.
5066         Use SAFE_ALLOCA_LISP, not alloca.
5067         (merge_face_heights): Remove unnecessary cast to EMACS_INT.
5068         (Finternal_make_lisp_face): Don't allocate more than MAX_FACE_ID.
5069         (face_at_buffer_position, face_for_overlay_string)
5070         (face_at_string_position):
5071         Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
5072         (merge_faces): Use int, not EMACS_INT, where int is wide enough.
5073         * xfns.c (x_set_menu_bar_lines, x_set_tool_bar_lines, x_icon_verify)
5074         (Fx_show_tip):
5075         Check that fixnums are in proper range for system types.
5076         (Fx_create_frame, x_create_tip_frame, Fx_show_tip)
5077         (Fx_hide_tip, Fx_file_dialog, Fx_select_font):
5078         Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
5079         (Fx_change_window_property): Don't assume fixnums fit in int.
5080         * xfont.c (xfont_chars_supported):
5081         Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
5082         * xmenu.c (Fx_popup_dialog, set_frame_menubar)
5083         (create_and_show_popup_menu, create_and_show_dialog, xmenu_show):
5084         Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
5085         * xml.c (parse_region):
5086         * xrdb.c (magic_file_p):
5087         Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
5088         * xselect.c (TRACE1): Don't assume pid_t promotes to int.
5089         (x_get_local_selection, x_reply_selection_request)
5090         (x_handle_selection_request, wait_for_property_change):
5091         Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
5092         (selection_data_to_lisp_data): Use short, not EMACS_INT, where
5093         short is wide enough.
5094         (x_send_client_event): Don't assume fixnum fits in int.
5095         * xterm.c (x_x_to_emacs_modifiers):
5096         Don't assume EMACS_INT overflows nicely into int.
5097         (x_emacs_to_x_modifiers): Use EMACS_INT, not int, because values
5098         may come from Lisp.
5099         (handle_one_xevent): NATNUMP can eval its arg twice.
5100         (x_connection_closed):
5101         Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
5102         * xterm.h: Adjust decls to match defn changes elsewhere.
5103         (struct scroll_bar): Use struct vectorlike_header
5104         rather than rolling our own approximation.
5105         (SCROLL_BAR_VEC_SIZE): Remove; not used.
5107 2012-05-25  Glenn Morris  <rgm@gnu.org>
5109         * lisp.mk (lisp): Update for more files being compiled now.
5111 2012-05-25  Stefan Monnier  <monnier@iro.umontreal.ca>
5113         * lread.c: Remove `read_pure' which makes no difference.
5114         (read_pure): Remove var.
5115         (unreadpure): Remove function.
5116         (readevalloop): Don't call read_list with -1 flag.
5117         (read1, read_vector): Don't test read_pure any more.
5118         (read_list): Simplify.
5120         * fileio.c, character.h: Minor style tweaks.
5122 2012-05-24  Dmitry Antipov  <dmantipov@yandex.ru>
5124         * window.h (clip_changed): Remove useless declaration.
5126 2012-05-22  Juanma Barranquero  <lekktu@gmail.com>
5128         * makefile.w32-in: Follow-up to 2012-05-22T16:20:27Z!eggert@cs.ucla.edu.
5129         (TAGS, TAGS-gmake, CONFIG_H): Remove further references to m/intel386.h.
5131 2012-05-22  Paul Eggert  <eggert@cs.ucla.edu>
5133         Remove src/m/*.
5134         This directory predates autoconf and is no longer needed nowadays.
5135         Move its few remaining bits of functionality to where they're needed.
5136         * m/README, m/alpha.h, m/amdx86-64.h, m/ia64.h, m/ibmrs6000.h:
5137         * m/ibms390x.h, m/intel386.h, m/m68k.h, m/macppc.h, m/sparc.h:
5138         * m/template.h: Remove.
5139         * Makefile.in (M_FILE): Remove.  All uses removed.
5140         * alloc.c (POINTERS_MIGHT_HIDE_IN_OBJECTS):
5141         * lisp.h (USE_LSB_TAG):
5142         * mem-limits.h (EXCEEDS_LISP_PTR):
5143         Use VAL_MAX, not VALBITS, in #if.
5144         * lisp.h (EMACS_INT_MAX): New macro, useful in #if.
5145         (EMACS_UINT): Define unconditionally now.
5146         (BITS_PER_CHAR, BITS_PER_SHORT, BITS_PER_INT, BITS_PER_LONG)
5147         (BITS_PER_EMACS_INT): New constants, replacing
5148         what used to be in config.h, but not useful in #if.
5149         (GCTYPEBITS, VALBITS): Define unconditionally, since m/* files don't
5150         define them any more.
5151         (VAL_MAX): New macro.
5152         (VALMASK): Use it.
5153         * puresize.h (PURESIZE_RATIO): Use EMACS_INT_MAX, not
5154         BITS_PER_EMACS_INT, in #if.
5155         * s/aix4-2.h (BROKEN_FIONREAD, BROKEN_SIGAIO, BROKEN_SIGPTY)
5156         (BROKEN_SIGPOLL): Move here from m/ibmrs6000.h, which was removed.
5157         * s/gnu-linux.h (ULIMIT_BREAK_VALUE) [__i386__]:
5158         * s/ms-w32.h (DATA_START):
5159         Move here from removed file m/intel386.h.
5160         * s/gnu.h (NLIST_STRUCT): Remove undef; 'configure' does this.
5161         * s/irix6-5.h (_LP64): Remove; lisp.h no longer needs this.
5163 2012-05-21  Paul Eggert  <eggert@cs.ucla.edu>
5165         Assume C89 or later.
5166         * alloc.c, buffer.c, lisp.h: Replace POINTER_TYPE with void.
5167         * alloc.c (overrun_check_malloc, overrun_check_realloc, xmalloc)
5168         (xrealloc):
5169         * buffer.c (mmap_free_1, mmap_enlarge): Omit needless casts.
5170         * editfns.c, fns.c, gmalloc.c, insdel.c, sysdep.c, termcap.c (NULL):
5171         * textprop.c, tparam.c (NULL): Remove.
5172         * ralloc.c, vm-limit.c (POINTER): Assume void * works.
5173         * regex.c (SIGN_EXTEND_CHAR): Assume signed char works.
5174         * regex.h (_RE_ARGS): Remove.  All uses rewritten to use prototypes.
5175         * unexelf.c (ElfBitsW): Assume c89 preprocessor or better.
5176         * xterm.c (input_signal_count): Assume volatile works.
5178 2012-05-21  Ken Brown  <kbrown@cornell.edu>
5180         * xgselect.c (xg_select): Fix first argument in call to 'select'
5181         (bug#11508).
5183 2012-05-20  Ken Brown  <kbrown@cornell.edu>
5185         * gmalloc.c (_free_internal_nolock, _realloc_internal_nolock)
5186         [CYGWIN]: Cast ptr to (char *) before comparing to _heapbase.
5188 2012-05-19  Ken Brown  <kbrown@cornell.edu>
5190         * xfns.c (x_in_use): Remove `static' qualifier.
5191         * xterm.h (x_in_use): Declare.
5192         * xgselect.c: Include xterm.h.
5193         (xg_select): Test `x_in_use' instead of `inhibit_window_system'
5194         and `display_arg' (bug#9754).
5196 2012-05-19  Paul Eggert  <eggert@cs.ucla.edu>
5198         * s/ms-w32.h (HAVE_GETDOMAINNAME): Remove; not needed.
5200         * m/vax.h: Remove; no longer needed since HAVE_FTIME is being removed.
5201         * s/ms-w32.h (HAVE_FTIME): Remove; not needed.
5203 2012-05-18  Eli Zaretskii  <eliz@gnu.org>
5205         Fix compilation with -DGLYPH_DEBUG=1 on MS-Windows.
5207         * w32term.c [GLYPH_DEBUG]: Add prototype for x_check_font.
5208         (x_check_font) [GLYPH_DEBUG]: New function, copied from xterm.c.
5210         * w32fns.c (unwind_create_frame) [GLYPH_DEBUG]: Fix broken
5211         reference to image_cache->refcount.
5212         (x_create_tip_frame): Fix broken use of FRAME_IMAGE_CACHE.
5214 2012-05-17  Juri Linkov  <juri@jurta.org>
5216         * search.c (Fword_search_regexp, Fword_search_backward)
5217         (Fword_search_forward, Fword_search_backward_lax)
5218         (Fword_search_forward_lax): Move functions to isearch.el
5219         (bug#10145, bug#11381).
5221 2012-05-16  Paul Eggert  <eggert@cs.ucla.edu>
5223         * xgselect.c (xg_select): Just invoke 'select' if -nw (Bug#9754).
5225 2012-05-15  Stefan Monnier  <monnier@iro.umontreal.ca>
5227         * lread.c (init_obarray): Declare Qt and Qnil as special.
5229 2012-05-14  Glenn Morris  <rgm@gnu.org>
5231         * nsterm.m (ns_init_paths): Fix typo ("libexec" not "lib-exec").
5232         Put "libexec" before "bin", for the sake of init_callproc_1.
5234 2012-05-14  Paul Eggert  <eggert@cs.ucla.edu>
5236         * keyboard.c (kbd_buffer_get_event) [!HAVE_DBUS]: Omit unused local.
5238         * unexaix.c: Port to more-recent AIX compilers.
5239         (report_error, report_error_1, make_hdr, copy_sym)
5240         (mark_x, adjust_lnnoptrs, unrelocate_symbols):
5241         Make arguments const char *, not char *, to avoid violations of C
5242         standard and to fix some AIX warnings reported by Gilles Pion.
5244 2012-05-14  Eli Zaretskii  <eliz@gnu.org>
5246         * xdisp.c (handle_stop): Don't call get_overlay_strings_1 if we
5247         already have overlays loaded.
5248         (handle_single_display_spec): Before returning without displaying
5249         fringe bitmap, synchronize the bidi iterator with the main display
5250         iterator, by calling iterate_out_of_display_property.
5251         (iterate_out_of_display_property): Detect buffer iteration by
5252         testing that it->string is a Lisp string.
5253         (get_next_display_element): When the current object is exhausted,
5254         and there's something on it->stack, call set_iterator_to_next to
5255         proceed with what's on the stack, instead of returning zero.
5256         (set_iterator_to_next): If called at the end of a Lisp string,
5257         proceed to consider_string_end without incrementing string
5258         position.  Don't increment display vector index past the end of
5259         the display vector.  (Bug#11417)
5260         (pos_visible_p): Don't report a position visible when move_it_to
5261         stopped at the last line of window, which happens to be scanned
5262         backwards by the bidi iteration.  (Bug#11464)
5264 2012-05-14  Eli Zaretskii  <eliz@gnu.org>
5266         * xdisp.c (handle_single_display_spec): Return 1 for left-margin
5267         and right-margin display specs even if the spec is invalid or we
5268         are on a TTY, and thus unable to display on the fringes.
5269         That's because the text with the property will not be displayed anyway,
5270         so we need to signal to the caller that this is a "replacing"
5271         display spec.  This fixes display when the spec is invalid or we
5272         are on a TTY.
5274 2012-05-14  Paul Eggert  <eggert@cs.ucla.edu>
5276         * unexaix.c (make_hdr): Fix typo in prototype.
5277         This bug broke the build on AIX.  Problem reported by Gilles Pion.
5279 2012-05-14  Michael Albinus  <michael.albinus@gmx.de>
5281         * keyboard.c (kbd_buffer_get_event): Read special events also in
5282         batch mode.  (Bug#11415)
5284 2012-05-12  Glenn Morris  <rgm@gnu.org>
5286         * ns.mk: Update for ns_appbindir no longer having trailing "/".
5288 2012-05-12  Eli Zaretskii  <eliz@gnu.org>
5290         * lisp.mk (lisp): Add newcomment.elc.
5292 2012-05-12  Glenn Morris  <rgm@gnu.org>
5294         * Makefile.in (MKDIR_P): New, set by configure.
5295         * ns.mk (${ns_appdir}, ${ns_appbindir}Emacs): Use $MKDIR_P.
5297 2012-05-11  Paul Eggert  <eggert@cs.ucla.edu>
5299         Remove unused function hourglass_started.
5300         * dispextern.h (hourglass_started):
5301         * w32fns.c (hourglass_started):
5302         * xdisp.c (hourglass_started): Remove.
5304 2012-05-10  Juanma Barranquero  <lekktu@gmail.com>
5306         * makefile.w32-in ($(BLD)/gmalloc.$(O), $(BLD)/w32menu.$(O)):
5307         Update dependencies.
5309 2012-05-10  Paul Eggert  <eggert@cs.ucla.edu>
5311         * xgselect.c (xg_select): Put maxfds+1 into a var.
5312         This is slightly clearer, and pacifies Ubuntu 12.04 gcc.
5314         * sound.c (DEFAULT_ALSA_SOUND_DEVICE): Define only if HAVE_ALSA.
5316 2012-05-10  Dave Abrahams  <dave@boostpro.com>
5318         * filelock.c (syms_of_filelock): New boolean create-lockfiles.
5319         (lock_file): If create_lockfiles is 0, do nothing.  (Bug#11227)
5321 2012-05-09  Michael Albinus  <michael.albinus@gmx.de>
5323         * dbusbind.c (xd_registered_buses): New internal Lisp object.
5324         Rename all occurences of Vdbus_registered_buses to xd_registered_buses.
5325         (syms_of_dbusbind): Remove declaration of Vdbus_registered_buses.
5326         Initialize xd_registered_buses.
5328 2012-05-09  Paul Eggert  <eggert@cs.ucla.edu>
5330         Untag more efficiently if USE_LSB_TAG.
5331         This is based on a proposal by YAMAMOTO Mitsuharu in
5332         <http://lists.gnu.org/archive/html/emacs-devel/2008-01/msg01876.html>.
5333         For an admittedly artificial (nth 8000 longlist) benchmark on
5334         Fedora 15 x86-64, this yields a 25% CPU speedup.  Also, it shrinks
5335         Emacs's overall text size by 1%.
5336         * lisp.h (XUNTAG): New macro.
5337         (XCONS, XVECTOR, XSTRING, XSYMBOL, XFLOAT, XMISC, XPROCESS, XWINDOW)
5338         (XTERMINAL, XSUBR, XBUFFER, XCHAR_TABLE, XSUB_CHAR_TABLE, XBOOL_VECTOR)
5339         (XSETTYPED_PSEUDOVECTOR, XHASH_TABLE, TYPED_PSEUDOVECTORP): Use it.
5340         * eval.c (Fautoload):
5341         * font.h (XFONT_SPEC, XFONT_ENTITY, XFONT_OBJECT):
5342         * frame.h (XFRAME): Use XUNTAG.
5344         Port recent dbusbind.c changes to 32-bit --with-wide-int.
5345         * dbusbind.c (xd_append_arg, xd_retrieve_arg, Fdbus_message_internal):
5346         Remove unportable assumptions about print widths of types like
5347         dbus_uint32_t.
5348         (xd_get_connection_address, Fdbus_init_bus): Cast Emacs integer to
5349         intptr_t when converting between pointer and integer, to avoid GCC
5350         warnings about wrong width.
5352 2012-05-09  Eli Zaretskii  <eliz@gnu.org>
5354         * w32proc.c (new_child): Force Windows to reserve only 64KB of
5355         stack for each reader_thread, instead of defaulting to 8MB
5356         determined by the linker.  This avoids failures in creating
5357         subprocesses on Windows 7, see the discussion in this thread:
5358         http://lists.gnu.org/archive/html/emacs-devel/2012-03/msg00119.html.
5360 2012-05-07  Jérémy Compostella  <jeremy.compostella@gmail.com>
5362         Fix up display of the *Minibuf-0* buffer in the mini window.
5363         * keyboard.c (read_char): Don't clear the echo area if there's no
5364         message to clear.
5365         * xdisp.c (redisplay_internal): Redisplay the mini window (with the
5366         contents of *Minibuf-0*) if there's no message displayed in its stead.
5368 2012-05-07  Michael Albinus  <michael.albinus@gmx.de>
5370         * dbusbind.c (XD_DEBUG_MESSAGE): Don't print message twice in
5371         batch mode.
5373 2012-05-06  Chong Yidong  <cyd@gnu.org>
5375         * lisp.mk (lisp): Update.
5377 2012-05-05  Jim Meyering  <meyering@redhat.com>
5379         * w32font.c (fill_in_logfont): NUL-terminate a string (Bug#11372).
5381 2012-05-04  Stefan Monnier  <monnier@iro.umontreal.ca>
5383         * data.c (PUT_ERROR): New macro.
5384         (syms_of_data): Use it.  Add new error type `user-error'.
5385         * undo.c (user_error): New function.
5386         (Fprimitive_undo): Use it.
5387         * print.c (print_error_message): Adjust print style for `user-error'.
5388         * keyboard.c (user_error): New function.
5389         (Fexit_recursive_edit, Fabort_recursive_edit): Use it.
5391 2012-05-03  Paul Eggert  <eggert@cs.ucla.edu>
5393         Do not limit current-time-string to years 1000..9999.
5394         * editfns.c (TM_YEAR_IN_ASCTIME_RANGE): Remove.
5395         (Fcurrent_time_string): Support any year that is supported by the
5396         underlying localtime representation.  Don't use asctime, as it
5397         has undefined behavior for years outside the range -999..9999.
5399 2012-05-02  Paul Eggert  <eggert@cs.ucla.edu>
5401         Fix race conditions involving setenv, gmtime, localtime, asctime.
5402         Without this fix, interrupts could mess up code that uses these
5403         nonreentrant functions, since setting TZ invalidates existing
5404         tm_zone or tzname values, and since most of these functions return
5405         pointers to static storage.
5406         * editfns.c (format_time_string, Fdecode_time, Fencode_time)
5407         (Fcurrent_time_string, Fcurrent_time_zone, Fset_time_zone_rule):
5408         Grow the critical sections to include not just invoking
5409         localtime/gmtime, but also accessing these functions' results
5410         including their tm_zone values if any, and any related TZ setting.
5411         (format_time_string): Last arg is now struct tm *, not struct tm **,
5412         so that the struct tm is saved in the critical section.
5413         All callers changed.  Simplify allocation of initial buffer, partly
5414         motivated by the fact that memory allocation needs to be outside
5415         the critical section.
5417 2012-05-02  Dmitry Antipov  <dmantipov@yandex.ru>
5419         * intervals.c (adjust_intervals_for_insertion): Initialize `newi'
5420         with RESET_INTERVAL.
5422         * buffer.c (Fget_buffer_create, Fmake_indirect_buffer):
5423         Remove duplicated buffer name initialization.
5425 2012-05-02  Jim Meyering  <jim@meyering.net>
5427         * xterm.c (x_term_init): Use memcpy instead of strncpy (Bug#11373).
5429         * xfns.c (x_window): Use xstrdup (Bug#11375).
5431 2012-05-02  Eli Zaretskii  <eliz@gnu.org>
5433         * xdisp.c (pos_visible_p): If already at a newline from the
5434         display string before the 'while' loop, don't walk back the glyphs
5435         from it3.glyph_row.  Solves assertion violation when the display
5436         string begins with a newline (egg.el).  (Bug#11367)
5438 2012-05-01  Stefan Monnier  <monnier@iro.umontreal.ca>
5440         * keyboard.c (Fexecute_extended_command, Vsuggest_key_bindings):
5441         Move to simple.el.
5443 2012-05-01  Glenn Morris  <rgm@gnu.org>
5445         * syssignal.h: Remove reference to BROKEN_SIGINFO (last used in
5446         s/ptx4.h), BROKEN_SIGTSTP (last used in m/ustation.h, m/dpx2.h),
5447         and BROKEN_SIGURG (was in s/gnu-linux.h prior to 2008-02-10).
5448         All were removed before 23.1.
5450         * dispnew.c: Remove HAVE_LIBNCURSES test;
5451         it is always true on relevant platforms.
5453         * Makefile.in (LD_SWITCH_X_SITE_RPATH):
5454         Rename from LD_SWITCH_X_SITE_AUX_RPATH.
5456         * Makefile.in (LD_SWITCH_X_SITE_AUX): Remove; no longer used.
5458 2012-04-30  Andreas Schwab  <schwab@linux-m68k.org>
5460         * .gdbinit (xpr): Remove checks for no longer existing misc types.
5461         (xintfwd, xboolfwd, xobjfwd, xbufobjfwd, xkbobjfwd, xbuflocal):
5462         Remove.
5464 2012-04-28  Paul Eggert  <eggert@cs.ucla.edu>
5466         Do not avoid creating empty evaporating overlays (Bug#9642).
5467         * buffer.c (Fmove_overlay): Revert the change of 2012-04-23.
5468         That is, do not delete an evaporating overlay if it becomes
5469         empty after its bounds are adjusted to fit within its buffer.
5470         This fix caused other problems, and I'm reverting it until we get
5471         to the bottom of them.
5473 2012-04-27  Chong Yidong  <cyd@gnu.org>
5475         * xselect.c (x_convert_selection): Initialize a pointer (Bug#11315).
5477 2012-04-27  Eli Zaretskii  <eliz@gnu.org>
5479         * xdisp.c (pos_visible_p): If the window start position is beyond
5480         ZV, start the display from buffer beginning.  Prevents assertion
5481         violation in init_iterator when the minibuffer window is scrolled
5482         via the scroll bar.
5484         * window.c (window_scroll_pixel_based): Likewise.
5486 2012-04-27  Chong Yidong  <cyd@gnu.org>
5488         * keymap.c (where_is_internal): Doc fix (Bug#10872).
5490 2012-04-27  Glenn Morris  <rgm@gnu.org>
5492         * fileio.c (Fcopy_file, Fset_file_selinux_context):
5493         Ignore ENOTSUP failures from setfilecon functions.  (Bug#11245)
5495 2012-04-27  Eli Zaretskii  <eliz@gnu.org>
5497         * dispnew.c (swap_glyph_pointers, copy_row_except_pointers):
5498         Don't overrun array limits of glyph row's used[] array.  (Bug#11288)
5500 2012-04-26  Eli Zaretskii  <eliz@gnu.org>
5502         * xdisp.c (IT_DISPLAYING_WHITESPACE): In addition to the loaded
5503         display element, check also the underlying string or buffer
5504         character.  (Bug#11341)
5506         * w32menu.c: Include w32heap.h.
5507         (add_menu_item): If the call to AppendMenuW (via
5508         unicode_append_menu) fails, disable Unicode menus only if we are
5509         running on Windows 9X/Me.
5511 2012-04-24  Andreas Schwab  <schwab@linux-m68k.org>
5513         * .gdbinit (xpr): Handle USE_2_TAGS_FOR_INTS.
5514         (xgetint): Add missing shift for LSB tags.
5516 2012-04-24  Martin Rudalics  <rudalics@gmx.at>
5518         * keyboard.c (read_char): Don't wipe echo area for select window
5519         events: These might get delayed via `mouse-autoselect-window'
5520         (Bug#11304).
5522 2012-04-24  Juanma Barranquero  <lekktu@gmail.com>
5524         * gnutls.c (init_gnutls_functions): Protect against (unlikely)
5525         manipulation of :loaded-from data.
5527 2012-04-23  Juanma Barranquero  <lekktu@gmail.com>
5529         * gnutls.c (init_gnutls_functions): The value of :loaded-from is
5530         now a cons (bug#11311).
5532 2012-04-23  Paul Eggert  <eggert@cs.ucla.edu>
5534         Do not create empty overlays with the evaporate property (Bug#9642).
5535         * buffer.c (Fmove_overlay): Delete an evaporating overlay
5536         if it becomes empty after its bounds are adjusted to fit within
5537         its buffer.  Without this fix, in a nonempty buffer (let ((o
5538         (make-overlay 1 2))) (overlay-put o 'evaporate t) (move-overlay o 0 1))
5539         yields an empty overlay that has the evaporate property, which is
5540         not supposed to happen.
5542         Fix minor GTK3 problems found by static checking.
5543         * emacsgtkfixed.c (EMACS_TYPE_FIXED, EMACS_FIXED, EmacsFixed)
5544         (EmacsFixedPrivate, EmacsFixedClass, struct _EmacsFixed)
5545         (struct _EmacsFixedClass, emacs_fixed_get_type):
5546         Move decls here from emacsgtkfixed.h, since they needn't be public.
5547         (emacs_fixed_get_type): Now static.
5548         (emacs_fixed_class_init): Omit unused local.
5549         (emacs_fixed_child_type): Remove; unused.
5550         * emacsgtkfixed.h (EMACS_TYPE_FIXED, EMACS_FIXED, EmacsFixed)
5551         (EmacsFixedPrivate, EmacsFixedClass, struct _EmacsFixed)
5552         (struct _EmacsFixedClass): Move to emacsgtkfixed.c.
5553         (EMACS_FIXED_CLASS, EMACS_IS_FIXED, EMACS_IS_FIXED_CLASS)
5554         (EMACS_FIXED_GET_CLASS): Remove; unused.
5555         * gtkutil.c (xg_create_frame_widgets) [!HAVE_GTK3]: Omit unused local.
5557         * keyboard.c (handle_async_input): Define only if SYNC_INPUT || SIGIO.
5558         Problem reported by Juanma Barranquero for Windows -Wunused-function.
5560 2012-04-22  Paul Eggert  <eggert@cs.ucla.edu>
5562         Modernize and clean up gmalloc.c to assume C89 (Bug#9119).
5563         * gmalloc.c (_MALLOC_INTERNAL, _MALLOC_H, _PP, __ptr_t)
5564         (__malloc_size_t, __malloc_ptrdiff_t):
5565         Remove.  All uses removed, replaced by the definiens if needed,
5566         since we can assume C89 or better now.
5567         Include <stdint.h>, for PTRDIFF_MAX, uintptr_t.
5568         (protect_malloc_state, align, get_contiguous_space)
5569         (malloc_atfork_handler_prepare, malloc_atfork_handler_parent)
5570         (malloc_atfork_handler_child, malloc_enable_thread)
5571         (malloc_initialize_1, __malloc_initialize, morecore_nolock)
5572         (_malloc_internal_nolock, _malloc_internal, malloc, _malloc)
5573         (_free, _realloc, _free_internal_nolock, _free_internal, free, cfree)
5574         (special_realloc, _realloc_internal_nolock, _realloc_internal)
5575         (realloc, calloc, __default_morecore, memalign, valloc, checkhdr)
5576         (freehook, mallochook, reallochook, mabort, mcheck, mprobe):
5577         Define using prototypes, not old style.
5578         (align, _malloc_internal_nolock, _free_internal_nolock, memalign):
5579         Don't assume ptrdiff_t and uintptr_t are no wider than unsigned long.
5580         (align): Don't assume that signed integer overflow wraps around.
5581         Omit unused local var.
5582         (malloc_initialize_1, morecore_nolock, _malloc_internal_nolock)
5583         (_free_internal_nolock, memalign, mallochook, reallochook):
5584         Omit no-longer-needed casts.
5585         (valloc): Use getpagesize, not __getpagesize.
5586         (MAGICWORD, MAGICFREE): Now randomish size_t values, not 32-bit.
5587         (struct hdr): The 'magic' member is now size_t, not unsigned long.
5589         * dbusbind.c (XD_DBUS_VALIDATE_OBJECT): Define only if needed.
5591 2012-04-22  Michael Albinus  <michael.albinus@gmx.de>
5593         Move functions from C to Lisp.  Make non-blocking method calls
5594         the default.  Implement further D-Bus standard interfaces.
5596         * dbusbind.c (DBUS_NUM_MESSAGE_TYPES): Declare.
5597         (QCdbus_request_name_allow_replacement)
5598         (QCdbus_request_name_replace_existing)
5599         (QCdbus_request_name_do_not_queue)
5600         (QCdbus_request_name_reply_primary_owner)
5601         (QCdbus_request_name_reply_in_queue)
5602         (QCdbus_request_name_reply_exists)
5603         (QCdbus_request_name_reply_already_owner): Move to dbus.el.
5604         (QCdbus_registered_serial, QCdbus_registered_method)
5605         (QCdbus_registered_signal): New Lisp objects.
5606         (XD_DEBUG_MESSAGE): Use sizeof.
5607         (XD_MESSAGE_TYPE_TO_STRING, XD_OBJECT_TO_STRING)
5608         (XD_DBUS_VALIDATE_BUS_ADDRESS, XD_DBUS_VALIDATE_OBJECT)
5609         (XD_DBUS_VALIDATE_BUS_NAME, XD_DBUS_VALIDATE_PATH)
5610         (XD_DBUS_VALIDATE_INTERFACE, XD_DBUS_VALIDATE_MEMBER): New macros.
5611         (XD_CHECK_DBUS_SERIAL): Rename from CHECK_DBUS_SERIAL_GET_SERIAL.
5612         (xd_signature, xd_append_arg): Allow float for integer types.
5613         (xd_get_connection_references): New function.
5614         (xd_get_connection_address): Rename from xd_initialize.
5615         Return cached address.
5616         (xd_remove_watch): Do not unset $DBUS_SESSION_BUS_ADDRESS.
5617         (xd_close_bus): Rename from Fdbus_close_bus.  Not needed on Lisp
5618         level.
5619         (Fdbus_init_bus): New optional arg PRIVATE.  Cache address.
5620         Return number of refcounts.
5621         (Fdbus_get_unique_name): Make stronger parameter check.
5622         (Fdbus_message_internal): New defun.
5623         (Fdbus_call_method, Fdbus_call_method_asynchronously)
5624         (Fdbus_method_return_internal, Fdbus_method_error_internal)
5625         (Fdbus_send_signal, Fdbus_register_service)
5626         (Fdbus_register_signal, Fdbus_register_method): Move to dbus.el.
5627         (xd_read_message_1): Obey new structure of Vdbus_registered_objects.
5628         (xd_read_queued_messages): Obey new structure of Vdbus_registered_buses.
5629         (Vdbus_compiled_version, Vdbus_runtime_version)
5630         (Vdbus_message_type_invalid, Vdbus_message_type_method_call)
5631         (Vdbus_message_type_method_return, Vdbus_message_type_error)
5632         (Vdbus_message_type_signal): New defvars.
5633         (Vdbus_registered_buses, Vdbus_registered_objects_table):
5634         Adapt docstring.
5636 2012-04-22  Paul Eggert  <eggert@cs.ucla.edu>
5638         Fix GC_MALLOC_CHECK debugging output on 64-bit hosts.
5639         * alloc.c (emacs_blocked_malloc) [GC_MALLOC_CHECK]:
5640         Do not assume ptrdiff_t is the same width as 'int'.
5642         * alloc.c: Handle unusual debugging option combinations.
5643         (GC_CHECK_MARKED_OBJECTS): Undef if ! GC_MARK_STACK,
5644         since the two debugging options are incompatible.
5645         (GC_MALLOC_CHECK): Similarly, undef if GC_CHECK_MARKED_OBJECTS
5646         is defined.
5647         (mem_init, mem_insert, mem_insert_fixup):
5648         Define if GC_MARK_STACK || GC_MALLOC_CHECK.
5649         (NEED_MEM_INSERT): Remove; no longer needed.
5651 2012-04-22  Leo Liu  <sdl.web@gmail.com>
5653         * sysdep.c (list_system_processes): Support Darwin (Bug#5725).
5655 2012-04-22  Paul Eggert  <eggert@cs.ucla.edu>
5657         * sysdep.c [__FreeBSD__]: Minor cleanups.
5658         (list_system_processes, system_process_attributes) [__FreeBSD__]:
5659         Use Emacs indenting style more consistently.  Avoid some casts.
5660         Use 'double' consistently rather than mixing 'float' and 'double'.
5662 2012-04-21  Eduard Wiebe  <usenet@pusto.de>
5664         * sysdep.c (list_system_processes, system_process_attributes):
5665         Add implementation for FreeBSD (Bug#5243).
5667 2012-04-21  Andreas Schwab  <schwab@linux-m68k.org>
5669         * lisp.mk (lisp): Update.
5671 2012-04-20  Paul Eggert  <eggert@cs.ucla.edu>
5673         * keyboard.c (process_pending_signals): Define only if SYNC_INPUT.
5674         It is never used otherwise.
5676 2012-04-20  Stefan Monnier  <monnier@iro.umontreal.ca>
5678         * print.c (print_preprocess): Only check print_depth if print-circle
5679         is nil.
5680         (print_object): Check for cycles even when print-circle is nil and
5681         print-gensym is t, but only check print_depth if print-circle is nil.
5683 2012-04-20  Chong Yidong  <cyd@gnu.org>
5685         * process.c (wait_reading_process_output): If EIO occurs on a pty,
5686         set the status to "failed" and ensure that sentinel is run.
5688 2012-04-20  Glenn Morris  <rgm@gnu.org>
5690         * process.c (Fset_process_inherit_coding_system_flag)
5691         (Fset_process_query_on_exit_flag): Doc fix (mention return value).
5692         (Fmake_network_process, Fmake_serial_process): Doc fix.
5694 2012-04-20  Eli Zaretskii  <eliz@gnu.org>
5696         * xdisp.c (string_buffer_position_lim): Limit starting position to
5697         BEGV.
5698         (set_cursor_from_row): If called for a mode-line or header-line
5699         row, return zero immediately.
5700         (try_cursor_movement): If inside continuation line, don't back up
5701         farther than the first row after the header line, if any.
5702         Don't consider the header-line row as "partially visible", even if
5703         MATRIX_ROW_PARTIALLY_VISIBLE_P returns non-zero.  (Bug#11261)
5705 2012-04-20  Atsuo Ohki  <ohki@gssm.otsuka.tsukuba.ac.jp>  (tiny change)
5707         * lread.c (lisp_file_lexically_bound_p): Fix hang at ";-*-\n"
5708         (bug#11238).
5710 2012-04-20  Teodor Zlatanov  <tzz@lifelogs.com>
5711 2012-04-18  Paul Eggert  <eggert@cs.ucla.edu>
5713         configure: new option --enable-gcc-warnings (Bug#11207)
5714         * Makefile.in (C_WARNINGS_SWITCH): Remove.
5715         (WARN_CFLAGS, WERROR_CFLAGS): New macros.
5716         (ALL_CFLAGS): Use new macros rather than old.
5717         * process.c: Ignore -Wstrict-overflow to work around GCC bug 52904.
5718         * regex.c: Ignore -Wstrict-overflow.  If !emacs, also ignore
5719         -Wunused-but-set-variable, -Wunused-function, -Wunused-macros,
5720         -Wunused-result, -Wunused-variable.  This should go away once
5721         the Emacs and Gnulib regex code is merged.
5722         (xmalloc, xrealloc): Now static.
5724 2012-04-17  Paul Eggert  <eggert@cs.ucla.edu>
5726         * dired.c (Fsystem_groups): Remove unused local.
5728 2012-04-17  Glenn Morris  <rgm@gnu.org>
5730         * dired.c (Fsystem_users): Doc fix.
5732 2012-04-17  Dmitry Antipov  <dmantipov@yandex.ru>
5734         * dired.c (Fsystem_users, Fsystem_groups): New functions.  (Bug#7900)
5735         (syms_of_dired): Add them.
5737 2012-04-16  Paul Eggert  <eggert@cs.ucla.edu>
5739         Fix minor alloc.c problems found by static checking.
5740         * alloc.c (_malloc_internal, _free_internal) [!DOUG_LEA_MALLOC]:
5741         New extern decls, to avoid calling undeclared functions.
5742         (dont_register_blocks): Define if ((!SYSTEM_MALLOC && !SYNC_INPUT)
5743         && GC_MALLOC_CHECK), not if ((GC_MARK_STACK || defined
5744         GC_MALLOC_CHECK) && GC_MALLOC_CHECK), to match when it's used.
5745         (NEED_MEM_INSERT): New macro.
5746         (mem_insert, mem_insert_fixup) [!NEED_MEM_INSERT]: Remove; unused.
5747         Remove one incorrect comment and fix another.
5749         Fix minor ralloc.c problems found by static checking.
5750         See http://lists.gnu.org/archive/html/emacs-devel/2011-12/msg00720.html
5751         * ralloc.c (ALIGNED, ROUND_TO_PAGE, HEAP_PTR_SIZE)
5752         (r_alloc_size_in_use, r_alloc_freeze, r_alloc_thaw): Remove; unused.
5753         (r_alloc_sbrk): Now static.
5755         Improve ralloc.c interface checking.
5756         See http://lists.gnu.org/archive/html/emacs-devel/2011-12/msg00720.html
5757         * buffer.c (ralloc_reset_variable, r_alloc, r_re_alloc)
5758         (r_alloc_free) [REL_ALLOC]: Move decls from here ...
5759         * lisp.h (r_alloc, r_alloc_free, r_re_alloc, r_alloc_reset_variable)
5760         [REL_ALLOC]: ... to here, to check interface.
5761         * m/ia64.h (r_alloc, r_alloc_free) [REL_ALLOC && !_MALLOC_INTERNAL]:
5762         Remove decls.  This fixes an "It stinks!".
5764         * alloc.c (which_symbols): Fix alignment issue / type clash.
5766 2012-04-15  Andreas Schwab  <schwab@linux-m68k.org>
5768         * lisp.h (struct Lisp_Symbol): Remove explicit padding.
5769         (struct Lisp_Misc_Any): Likewise.
5770         (struct Lisp_Free): Likewise.
5771         * alloc.c (union aligned_Lisp_Symbol): Define.
5772         (SYMBOL_BLOCK_SIZE, struct symbol_block): Use union
5773         aligned_Lisp_Symbol instead of struct Lisp_Symbol.
5774         (union aligned_Lisp_Misc): Define.
5775         (MARKER_BLOCK_SIZE, struct marker_block): Use union
5776         aligned_Lisp_Misc instead of union Lisp_Misc.
5777         (Fmake_symbol, allocate_misc, gc_sweep): Adjust.
5779 2012-04-14  Paul Eggert  <eggert@cs.ucla.edu>
5781         Make GC_MAKE_GCPROS_NOOPS the default (Bug#9926).
5782         * lisp.h (GC_MARK_STACK): Default to GC_MAKE_GCPROS_NOOPS.
5783         * s/cygwin.h, s/darwin.h, s/freebsd.h, s/gnu.h, s/irix6-5.h, s/msdos.h:
5784         * s/netbsd.h, s/sol2-6.h:
5785         Remove definition of GC_MARK_STACK, since the default now works.
5786         * s/aix4-2.h, s/hpux10-20.h, s/unixware.h:
5787         Define GC_MARK_STACK to GC_USE_GCPROS_AS_BEFORE, since that's
5788         no longer the default.
5789         * s/gnu-linux.h (GC_MARK_STACK): Adjust to change in default.
5791 2012-04-14  Atsuo Ohki  <ohki@gssm.otsuka.tsukuba.ac.jp>  (tiny change)
5793         * lread.c (lisp_file_lexically_bound_p):
5794         Fix hang at ";-*-\n" (bug#11238).
5796 2012-04-14  Eli Zaretskii  <eliz@gnu.org>
5798         * xdisp.c (find_last_unchanged_at_beg_row): Don't consider a row
5799         "unchanged" if its end.pos is beyond ZV.  (Bug#11199)
5801 2012-04-14  Jan Djärv  <jan.h.d@swipnet.se>
5803         * nsterm.m (constrainFrameRect): Always constrain when there is only
5804         one screen (Bug#10962).
5806 2012-04-13  Ken Brown  <kbrown@cornell.edu>
5808         * s/cygwin.h (PTY_OPEN): Don't try to close a bogus file descriptor.
5810 2012-04-13  Reuben Thomas  <rrt@sc3d.org>
5812         * indent.c (Fmove_to_column): Change interactive spec (Bug#739).
5814 2012-04-11  Daniel Colascione  <dancol@dancol.org>
5816         * s/cygwin.h: The vfork the #define in cygwin.h was protecting
5817         against is gone.  It's better to use vfork now so that when Cygwin
5818         gains a new, working vfork, we use it automatically (bug#10398).
5820 2012-04-11  Stefan Monnier  <monnier@iro.umontreal.ca>
5822         * window.c (save_window_save): Obey window-point-insertion-type.
5824 2012-04-11  Glenn Morris  <rgm@gnu.org>
5826         * Makefile.in (GNUSTEP_CFLAGS): Rename from C_SWITCH_X_SYSTEM.
5828 2012-04-11  Stefan Monnier  <monnier@iro.umontreal.ca>
5830         * alloc.c (lisp_align_malloc): Remove unneeded prototype.
5832 2012-04-10  Jason S. Cornez  <jcornez@ravenpack.com>  (tiny change)
5834         * keyboard.c: Override inhibit-quit after the third C-g (bug#6585).
5835         (force_quit_count): New var.
5836         (handle_interrupt): Use it.
5838 2012-04-10  Juanma Barranquero  <lekktu@gmail.com>
5840         * w32.c (w32_delayed_load): Record the full path of the library
5841         being loaded (bug#10424).
5843 2012-04-09  Glenn Morris  <rgm@gnu.org>
5845         * doc.c (Fsnarf_documentation): Check variables, functions are bound,
5846         not just in the obarray, before snarfing them.  (Bug#11036)
5848         * Makefile.in ($(leimdir)/leim-list.el):
5849         Pass EMACS rather than BUILT_EMACS.
5851 2012-04-09  Teodor Zlatanov  <tzz@lifelogs.com>
5853         * process.c (make_process):
5854         * process.h: Add integer `gnutls_handshakes_tried' member to
5855         process struct.
5857         * gnutls.h: Add `GNUTLS_EMACS_HANDSHAKES_LIMIT' upper limit.
5858         Add convenience `GNUTLS_LOG2i' macro.
5860         * gnutls.c (gnutls_log_function2i): Convenience log function.
5861         (emacs_gnutls_read): Use new log functions,
5862         `gnutls_handshakes_tried' process member, and
5863         `GNUTLS_EMACS_HANDSHAKES_LIMIT' to limit the number of handshake
5864         attempts per process (connection).
5866 2012-04-09  Chong Yidong  <cyd@gnu.org>
5868         * eval.c (Fuser_variable_p, user_variable_p_eh)
5869         (lisp_indirect_variable): Functions deleted.
5870         (Fdefvar): Caller changed.
5872         * callint.c (Finteractive, Fcall_interactively):
5873         * minibuf.c (Fread_variable): Callers changed.
5875 2012-04-09  Eli Zaretskii  <eliz@gnu.org>
5877         * xdisp.c (set_cursor_from_row): If the display string appears in
5878         the buffer at position that is closer to point than the position
5879         after the display string, display the cursor on the first glyph of
5880         the display string.  Fixes cursor display when a 'display' text
5881         property immediately follows invisible text.  (Bug#11094)
5883 2012-04-09  Paul Eggert  <eggert@cs.ucla.edu>
5885         composite.c: use 'double' consistently
5886         * composite.c (get_composition_id): Use 'double' consistently
5887         instead of converting 'float' to 'double' and vice versa; this is
5888         easier to understand and avoids a GCC warning.
5890 2012-04-09  Glenn Morris  <rgm@gnu.org>
5892         * Makefile.in: Generate leim-list with bootstrap-emacs, in
5893         preparation for dumping it with emacs.  (Bug#4789)
5894         (leimdir): New variable.
5895         ($(leimdir)/leim-list.el): New rule.
5896         (emacs$(EXEEXT)): Depend on leim-list.el.
5898         * buffer.c (Qucs_set_table_for_input): Remove.  (Bug#9821)
5899         (Fget_buffer_create): Don't call Qucs_set_table_for_input.
5900         (init_buffer_once, syms_of_buffer): Remove Qucs_set_table_for_input.
5902 2012-04-08  Andreas Schwab  <schwab@linux-m68k.org>
5904         * lisp.h (struct Lisp_Symbol): Add explicit padding to ensure
5905         proper alignment.
5907 2012-04-07  Juanma Barranquero  <lekktu@gmail.com>
5909         * xml.c (init_libxml2_functions) [WINDOWSNT]:
5910         Remove unused local variable.
5912 2012-04-07  Paul Eggert  <eggert@cs.ucla.edu>
5914         Avoid unnecessary pointer scanning in garbage collection (Bug#10780).
5915         * alloc.c (POINTERS_MIGHT_HIDE_IN_OBJECTS): New macro.
5916         (mark_memory): Mark Lisp_Objects only if pointers might hide in
5917         objects, as mark_maybe_pointer will catch them otherwise.
5918         (GC_LISP_OBJECT_ALIGNMENT): Remove; no longer needed.
5919         * s/gnu-linux.h (GC_LISP_OBJECT_ALIGNMENT) [__mc68000__]: Likewise.
5921 2012-04-07  Paul Eggert  <eggert@cs.ucla.edu>
5923         Fix typo that broke non-Windows builds.
5924         * xml.c (libxml2_loaded_p) [!!WINDOWSNT]: 'inine' -> 'inline'.
5926 2012-04-07  Eli Zaretskii  <eliz@gnu.org>
5928         Support building on MS-Windows with libxml2.
5930         * makefile.w32-in (OBJ2): Add xml.$(O).
5931         (GLOBAL_SOURCES): Add xml.c.
5932         ($(BLD)/xml.$(O)): New dependency list.
5934         * xml.c (DEF_XML2_FN, LOAD_XML2_FN) [WINDOWSNT]: New macros.
5935         (fn_htmlReadMemory, fn_xmlReadMemory, fn_xmlDocGetRootElement)
5936         (fn_xmlFreeDoc, fn_xmlCleanupParser, fn_xmlCheckVersion)
5937         [!WINDOWSNT]: New macros.
5938         (init_libxml2_functions, libxml2_loaded_p): New functions.
5939         (parse_region): Call fn_xmlCheckVersion instead of using the macro
5940         LIBXML_TEST_VERSION.  Call libxml2 functions via the fn_* macros.
5941         (xml_cleanup_parser): New function, export for fn_xmlCleanupParser.
5942         Calls xmlCleanupParser only if libxml2 was loaded (or statically
5943         linked in).
5944         (Flibxml_parse_html_region, Flibxml_parse_xml_region):
5945         Call init_libxml2_functions before calling libxml2 functions.
5946         (syms_of_xml) <Qlibxml2_dll>: DEFSYM it.
5948         * emacs.c: Don't include libxml/parser.h.
5949         (shut_down_emacs): Call xml_cleanup_parser, instead of calling
5950         xmlCleanupParser directly.
5952         * lisp.h [HAVE_LIBXML2]: Add prototype for xml_cleanup_parser.
5954 2012-04-07  Eli Zaretskii  <eliz@gnu.org>
5956         * indent.c (Fvertical_motion): If there is a display string at
5957         point, use it.vpos to compute how many lines to backtrack after
5958         move_it_to point.  (Bug#11133)
5960 2012-04-06  Eli Zaretskii  <eliz@gnu.org>
5962         * buffer.h (FETCH_CHAR, FETCH_MULTIBYTE_CHAR):
5963         * character.h (STRING_CHAR, STRING_CHAR_AND_LENGTH): Add comments
5964         about subtle differences between FETCH_CHAR* and STRING_CHAR*
5965         macros related to unification of CJK characters.  For the details,
5966         see the discussion following the message here:
5967         http://debbugs.gnu.org/cgi/bugreport.cgi?bug=11073#14.
5969 2012-04-04  Chong Yidong  <cyd@gnu.org>
5971         * keyboard.c (Vdelayed_warnings_list): Doc fix.
5973 2012-04-01  Eli Zaretskii  <eliz@gnu.org>
5975         * w32menu.c (simple_dialog_show, add_menu_item): Use SAFE_ALLOCA
5976         instead of alloca.  (Bug#11138)
5978 2012-04-01  Andreas Schwab  <schwab@linux-m68k.org>
5980         * w32menu.c (is_simple_dialog): Properly check lisp types.
5981         (Bug#11141)
5983 2012-03-31  Eli Zaretskii  <eliz@gnu.org>
5985         * xdisp.c (move_it_by_lines): When DVPOS is positive, and the
5986         position we get to after a call to move_it_to fails the
5987         IS_POS_VALID_AFTER_MOVE_P test, move to the next buffer position
5988         only if we wind up in a string from display property.  (Bug#11063)
5990         * window.c (Fdelete_other_windows_internal): Invalidate the row
5991         and column information about mouse highlight, so that redisplay
5992         restores it after reallocating the glyph matrices.  (Bug#7464)
5994         * xdisp.c (set_cursor_from_row): If `cursor' property on a display
5995         string comes from a `display' text property, use the buffer
5996         position of that property as if we actually saw that position in
5997         the row's glyphs.
5998         (move_it_by_lines): Remove the assertion that
5999         "it->current_x == 0 && it->hpos == 0" which can be legitimately
6000         violated when there's a before-string at the beginning of a line.
6001         (Bug#11063)
6003 2012-03-30  Eli Zaretskii  <eliz@gnu.org>
6005         * xdisp.c (append_space_for_newline): If the default face was
6006         remapped, use the remapped face for the appended newline.
6007         (extend_face_to_end_of_line): Use the remapped default face for
6008         extending the face to the end of the line.
6009         (display_line): Call extend_face_to_end_of_line when the default
6010         face was remapped.  (Bug#11068)
6012 2012-03-29  Eli Zaretskii  <eliz@gnu.org>
6014         * s/ms-w32.h: Discourage from defining HAVE_GETCWD.
6016 2012-03-28  Stefan Monnier  <monnier@iro.umontreal.ca>
6018         * keyboard.c (safe_run_hooks_error): Don't unquote strings.
6020 2012-03-27  Glenn Morris  <rgm@gnu.org>
6022         * search.c (Fword_search_backward_lax, Fword_search_forward_lax):
6023         Doc fixes.
6025 2012-03-26  Kenichi Handa  <handa@m17n.org>
6027         * dispextern.h (struct glyph): Fix previous change.  Change the
6028         bit length of glyphless.ch to 25 (Bug#11082).
6030 2012-03-26  Chong Yidong  <cyd@gnu.org>
6032         * keyboard.c (Vselection_inhibit_update_commands): New variable.
6033         (command_loop_1): Use it; inhibit selection update for
6034         handle-select-window too (Bug#8996).
6036 2012-03-25  Fabrice Popineau  <fabrice.popineau@supelec.fr>
6038         * w32heap.c (_heap_init, _heap_term): Remove dead MSVC-specific code.
6040 2012-03-25  Kenichi Handa  <handa@m17n.org>
6042         * dispextern.h (struct glyph): Change the bit length of
6043         glyphless.ch to 22 to make the member glyphless fit in 32 bits.
6045 2012-03-24  Eli Zaretskii  <eliz@gnu.org>
6047         * s/ms-w32.h (tzname): Include time.h before redirecting to
6048         _tzname.  Fixes the MSVC build.  (Bug#9960)
6050 2012-03-24  Andreas Schwab  <schwab@linux-m68k.org>
6052         * xdisp.c (produce_glyphless_glyph): Limit length of acronym to 6
6053         characters.
6055         * xterm.c (XTread_socket): Only modify handling_signal if
6056         !SYNC_INPUT.  (Bug#11080)
6058 2012-03-23  Eli Zaretskii  <eliz@gnu.org>
6060         * bidi.c (bidi_fetch_char): Use STRING_CHAR_AND_LENGTH instead of
6061         FETCH_MULTIBYTE_CHAR followed by CHAR_BYTES.  Prevents crashes
6062         when fetching a multibyte character consumes more bytes than
6063         CHAR_BYTES returns, due to unification of CJK characters in
6064         string_char.  (Bug#11073)
6066 2012-03-23  Troels Nielsen  <bn.troels@gmail.com>  (tiny change)
6068         * process.c (wait_reading_process_output): Handle pty disconnect
6069         by refraining from sending oneself a SIGCHLD (bug#10933).
6071 2012-03-22  Chong Yidong  <cyd@gnu.org>
6073         * dispextern.h (struct it): New member string_from_prefix_prop_p.
6075         * xdisp.c (push_prefix_prop): Rename from push_display_prop.
6076         Mark string as coming from a prefix property.
6077         (handle_face_prop): Use default face for prefix strings (Bug#4281).
6078         (pop_it, reseat_1): Save and restore string_from_prefix_prop_p.
6080 2012-03-21  Chong Yidong  <cyd@gnu.org>
6082         * xfaces.c (Vface_remapping_alist): Doc fix.
6084 2012-03-20  Eli Zaretskii  <eliz@gnu.org>
6086         * w32proc.c (Fw32_set_console_codepage)
6087         (Fw32_set_console_output_codepage, Fw32_get_codepage_charset):
6088         Doc fixes.
6090 2012-03-20  Chong Yidong  <cyd@gnu.org>
6092         * dispnew.c (Fredisplay, Vredisplay_preemption_period): Update doc
6093         to reflect default non-nil value of redisplay-dont-pause.
6095 2012-03-19  Kenichi Handa  <handa@m17n.org>
6097         * ftfont.c (ftfont_drive_otf): Mask bits of character code to make
6098         it fit in a valid range (Bug#11003).
6100 2012-03-18  Eli Zaretskii  <eliz@gnu.org>
6102         * xdisp.c (cursor_row_p): Even if the glyph row ends in a string
6103         that is not from display property, accept the row as a "cursor
6104         row" if one of the string's character has a non-nil `cursor'
6105         property.  Fixes cursor positioning when there are newlines in
6106         overlay strings, e.g. in icomplete.el.  (Bug#11035)
6108 2012-03-12  Paul Eggert  <eggert@cs.ucla.edu>
6110         * buffer.c (compare_overlays): Don't assume args differ (Bug#6830).
6112 2012-03-12  Chong Yidong  <cyd@gnu.org>
6114         * eval.c (inhibit_lisp_code): Rename from
6115         inhibit_window_configuration_change_hook; move from window.c.
6117         * xfns.c (unwind_create_frame_1, Fx_create_frame):
6118         * window.c (run_window_configuration_change_hook)
6119         (syms_of_window): Callers changed.
6121 2012-03-11  Chong Yidong  <cyd@gnu.org>
6123         * keymap.c (Fkey_description): Doc fix (Bug#9700).
6125         * editfns.c (Fconstrain_to_field): Doc fix (Bug#9452).
6127 2012-03-10  Chong Yidong  <cyd@gnu.org>
6129         * frame.c (other_visible_frames): Don't assume the selected frame
6130         is visible (Bug#10955).
6132 2012-03-09  Stefan Monnier  <monnier@iro.umontreal.ca>
6134         * buffer.c (compare_overlays): Avoid qsort's instability (bug#6830).
6136 2012-03-08  Jan Djärv  <jan.h.d@swipnet.se>
6138         * gtkutil.c (x_wm_set_size_hint): Use one row in call to
6139         FRAME_TEXT_LINES_TO_PIXEL_HEIGHT so base_height is greater than
6140         zero (Bug#10954).
6142 2012-03-03  Glenn Morris  <rgm@gnu.org>
6144         * alloc.c (Fgarbage_collect, misc-objects-consed): Doc fixes.
6146 2012-03-02  Eli Zaretskii  <eliz@gnu.org>
6148         * xdisp.c (try_window_reusing_current_matrix): Don't move cursor
6149         position past the first glyph_row that ends at ZV.  (Bug#10902)
6150         (redisplay_window, next_element_from_string): Fix typos in
6151         comments.
6152         (redisplay_window): Pass to move_it_vertically the margin in
6153         pixels, not in screen lines.
6155 2012-03-02  Glenn Morris  <rgm@gnu.org>
6157         * buffer.c (buffer-list-update-hook): Doc fix.
6159 2012-02-29  Eli Zaretskii  <eliz@gnu.org>
6161         * xdisp.c (get_overlay_strings_1): Under bidi redisplay, call
6162         push_it before setting up the iterator for the first overlay
6163         string, even if we have an empty string loaded.
6164         (next_overlay_string): If there's an empty string on the iterator
6165         stack, pop the stack.  (Bug#10903)
6167 2012-02-25  Paul Eggert  <eggert@cs.ucla.edu>
6169         Generalize fix for crash due to non-contiguous EMACS_INT (Bug#10780).
6170         Suggested by Stefan Monnier in
6171         <http://lists.gnu.org/archive/html/emacs-devel/2012-02/msg00692.html>.
6172         * alloc.c (widen_to_Lisp_Object): New static function.
6173         (mark_memory): Also mark Lisp_Objects by fetching pointer words
6174         and widening them to Lisp_Objects.  This would work even if
6175         USE_LSB_TAG is defined and wide integers are used, which might
6176         happen in a future version of Emacs.
6178 2012-02-25  Chong Yidong  <cyd@gnu.org>
6180         * fileio.c (Ffile_selinux_context, Fset_file_selinux_context):
6181         Doc fix.
6183         * xselect.c (Fx_selection_exists_p): Doc fix.
6184         (x_clipboard_manager_save_all): Print an informative message
6185         before saving to clipboard manager.
6187 2012-02-24  Chong Yidong  <cyd@gnu.org>
6189         * keyboard.c (process_special_events): Handle all X selection
6190         requests in kbd_buffer, not just the next one (Bug#8869).
6192 2012-02-23  Chong Yidong  <cyd@gnu.org>
6194         * xfns.c (Fx_create_frame): Avoid window-configuration-change-hook
6195         call when setting menu-bar-lines and tool-bar-lines parameters.
6196         (unwind_create_frame_1): New helper function.
6198         * window.c (inhibit_window_configuration_change_hook): New var.
6199         (run_window_configuration_change_hook): Obey it.
6200         (syms_of_window): Initialize it.
6202 2012-02-22  Chong Yidong  <cyd@gnu.org>
6204         * xterm.c (x_draw_image_relief): Add missing type check for
6205         Vtool_bar_button_margin (Bug#10743).
6207 2012-02-21  Chong Yidong  <cyd@gnu.org>
6209         * fileio.c (Vfile_name_handler_alist): Doc fix.
6211         * buffer.c (Fget_file_buffer): Protect against invalid file
6212         handler return value.
6214 2012-02-20  Paul Eggert  <eggert@cs.ucla.edu>
6216         * .gdbinit (xreload): Don't assume EMACS_INT fits in 'long'
6217         when computing $valmask.
6219         Fix crash due to non-contiguous EMACS_INT (Bug#10780).
6220         * lisp.h (VALBITS): Move definition up, so that USE_LSB_TAG can use it.
6221         (USE_LSB_TAG): Do not define if UINTPTR_MAX >> VALBITS == 0.
6222         It's useless in that case, and it can cause problems on hosts
6223         that allocate halves of EMACS_INT values separately.
6224         Reported by Dan Horák.  Diagnosed by Andreas Schwab in
6225         <http://debbugs.gnu.org/cgi/bugreport.cgi?bug=10780#30>.
6226         * mem-limits.h (EXCEEDS_LISP_PTR): Define to 0 on hosts where
6227         UINTPTR_MAX >> VALBITS == 0.  This is required by the above change;
6228         it avoids undefined behavior on hosts where shifting right by more
6229         than the word width has undefined behavior.
6231 2012-02-19  Chong Yidong  <cyd@gnu.org>
6233         * fileio.c (Ffile_name_directory, Ffile_name_nondirectory)
6234         (Funhandled_file_name_directory, Ffile_name_as_directory)
6235         (Fdirectory_file_name, Fexpand_file_name)
6236         (Fsubstitute_in_file_name): Protect against invalid file handler
6237         return values (Bug#10845).
6239 2012-02-18  Eli Zaretskii  <eliz@gnu.org>
6241         * .gdbinit (pitx): Fix incorrect references to fields of the
6242         iterator stack.
6244 2012-02-17  Chong Yidong  <cyd@gnu.org>
6246         * syntax.c (Fscan_lists): Doc fix (Bug#10833).
6248 2012-02-15  Paul Eggert  <eggert@cs.ucla.edu>
6250         * image.c (MAX_IMAGE_SIZE): Increase from 6.0 to 10.0; see
6251         <http://lists.gnu.org/archive/html/emacs-devel/2012-02/msg00540.html>.
6253 2012-02-15  Chong Yidong  <cyd@gnu.org>
6255         * eval.c (Fdefvar, Fdefconst): Doc fix; note that the variable is
6256         marked as special.  Also, starting docstrings with * is obsolete.
6258 2012-02-13  Andreas Schwab  <schwab@linux-m68k.org>
6260         * gnutls.c (emacs_gnutls_write): Fix last change.
6262 2012-02-13  Lars Ingebrigtsen  <larsi@gnus.org>
6264         * gnutls.c (emacs_gnutls_write): Set errno appropriately for
6265         send_process.
6267 2012-02-13  Stefan Monnier  <monnier@iro.umontreal.ca>
6269         * keymap.c (Fsingle_key_description): Handle char ranges.
6271 2012-02-12  Chong Yidong  <cyd@gnu.org>
6273         * xdisp.c (handle_stop): Avoid assigning -1 to it->face_id here,
6274         as that creates a dangerous corner case.
6276         * window.c (Fdelete_window_internal): Invalidate the mouse
6277         highlight (Bug#9904).
6279 2012-02-12  Glenn Morris  <rgm@gnu.org>
6281         * xselect.c (Fx_own_selection_internal)
6282         (Fx_get_selection_internal, Fx_disown_selection_internal)
6283         (Fx_selection_owner_p, Fx_selection_exists_p): Doc fixes.
6284         * nsselect.m (Fx_own_selection_internal)
6285         (Fx_disown_selection_internal, Fx_selection_exists_p)
6286         (Fx_selection_owner_p, Fx_get_selection_internal):
6287         Sync docs and argument specs with the xselect.c versions.
6289 2012-02-11  Lars Ingebrigtsen  <larsi@gnus.org>
6291         * gnutls.c (emacs_gnutls_write): Don't infloop if sendto fails.
6293 2012-02-11  Eli Zaretskii  <eliz@gnu.org>
6295         * w32select.c (Fx_selection_exists_p): Sync doc string and
6296         argument list with xselect.c.  (Bug#10783)
6298         * w16select.c (Fx_selection_exists_p): Sync doc string and
6299         argument list with xselect.c.  (Bug#10783)
6301 2012-02-10  Glenn Morris  <rgm@gnu.org>
6303         * fns.c (Fsecure_hash): Doc fix.
6305 2012-02-09  Kenichi Handa  <handa@m17n.org>
6307         * coding.c (produce_chars): Fix updating of src_end (Bug#10701).
6309 2012-02-07  Chong Yidong  <cyd@gnu.org>
6311         * buffer.c (Fbuffer_local_variables)
6312         (buffer_lisp_local_variables): Handle unbound vars correctly;
6313         don't let Qunbound leak into Lisp.
6315 2012-02-07  Glenn Morris  <rgm@gnu.org>
6317         * image.c (Fimagemagick_types): Doc fix.
6319         * image.c (imagemagick-render-type): Change it from a lisp object
6320         to an integer.  Move the doc here from the lisp manual.
6321         Treat all values not equal to 0 the same.
6323 2012-02-06  Chong Yidong  <cyd@gnu.org>
6325         * doc.c (store_function_docstring): Avoid applying docstring of
6326         alias to base function (Bug#2603).
6328 2012-02-04  Andreas Schwab  <schwab@linux-m68k.org>
6330         * .gdbinit (pp1, pv1): Remove redundant defines.
6331         (pr): Use pp.
6333 2012-02-04  Chong Yidong  <cyd@gnu.org>
6335         * nsterm.m: Declare a global (Bug#10694).
6337 2012-02-04  Eli Zaretskii  <eliz@gnu.org>
6339         * w32.c (get_emacs_configuration_options):
6340         Include --enable-checking, if specified, in the return value.
6342 2012-02-04  Martin Rudalics  <rudalics@gmx.at>
6344         * dispnew.c (change_frame_size_1): Calculate new_frame_total_cols
6345         after rounding frame sizes.  (Bug#9723)
6347 2012-02-04  Eli Zaretskii  <eliz@gnu.org>
6349         * keyboard.c (adjust_point_for_property): Don't position point
6350         before BEGV.  (Bug#10696)
6352 2012-02-03  Paul Eggert  <eggert@cs.ucla.edu>
6354         Handle overflow when computing char display width (Bug#9496).
6355         * character.c (char_width): Return EMACS_INT, not int.
6356         (char_width, c_string_width): Check for overflow when
6357         computing the width; this is possible now that individual
6358         characters can have unbounded width.  Problem introduced
6359         by merge from Emacs 23 on 2012-01-19.
6361 2012-02-02  Michael Albinus  <michael.albinus@gmx.de>
6363         * dbusbind.c (Fdbus_register_method): Mention the return value
6364         :ignore in the docstring.
6366 2012-02-02  Glenn Morris  <rgm@gnu.org>
6368         * callproc.c (Fcall_process, Fcall_process_region): Doc fix.
6370         * nsterm.m (syms_of_nsterm) <x-toolkit-scroll-bars>:
6371         Unconditionally set to t.  (Bug#10673)
6372         * nsterm.m (syms_of_nsterm) <x-toolkit-scroll-bars>:
6373         * w32term.c (syms_of_w32term) <x-toolkit-scroll-bars>:
6374         * xterm.c (syms_of_xterm) <x-toolkit-scroll-bars>: Doc fix.
6376 2012-02-02  Kenichi Handa  <handa@m17n.org>
6378         (x_produce_glyphs): Cancel previous change.  If cmp->glyph_len is
6379         0, do not call append_composite_glyph.
6381 2012-02-02  Kenichi Handa  <handa@m17n.org>
6383         * xdisp.c (BUILD_COMPOSITE_GLYPH_STRING): Initialize first_s to
6384         NULL (Bug#6988).
6385         (x_produce_glyphs): If the component of a composition is a null
6386         string, set it->pixel_width to 1 to avoid zero-width glyph.
6388 2012-02-01  Eli Zaretskii  <eliz@gnu.org>
6390         * ralloc.c (resize_bloc, r_alloc_sbrk): Don't call memmove if its
6391         first 2 arguments are identical.  This makes inserting large
6392         output from a subprocess an order of magnitude faster on
6393         MS-Windows, where all sbrk'ed memory is always contiguous.
6395 2012-01-31  Glenn Morris  <rgm@gnu.org>
6397         * nsterm.m (syms_of_nsterm) <x-toolkit-scroll-bars>:
6398         * w32term.c (syms_of_w32term) <x-toolkit-scroll-bars>:
6399         * xterm.c (syms_of_xterm) <x-toolkit-scroll-bars>: Sync docs.
6401 2012-01-29  Glenn Morris  <rgm@gnu.org>
6403         * gnutls.c (syms_of_gnutls): More doc (from etc/NEWS).
6405 2012-01-28  Samuel Thibault  <sthibault@debian.org>  (tiny change)
6407         * s/gnu.h: Define POSIX_SIGNALS (Bug#10552).
6409 2012-01-28  Chong Yidong  <cyd@gnu.org>
6411         * minibuf.c (syms_of_minibuf): Doc fix (Bug#10550).
6413 2012-01-26  Chong Yidong  <cyd@gnu.org>
6415         * keyboard.c (Vecho_keystrokes): Document zero value (Bug#10503).
6417         * search.c (Fsearch_forward, Fsearch_backward): Document negative
6418         repeat counts (Bug#10507).
6420 2012-01-26  Glenn Morris  <rgm@gnu.org>
6422         * lread.c (syms_of_lread): Doc fix.
6424 2012-01-25  HIROSHI OOTA  <nil@mad.dog.cx>  (tiny change)
6426         * coding.c (encode_designation_at_bol): Change return value to
6427         EMACS_INT.
6429 2012-01-25  Chong Yidong  <cyd@gnu.org>
6431         * eval.c (Fuser_variable_p): Doc fix; mention custom-variable-p.
6433 2012-01-21  Chong Yidong  <cyd@gnu.org>
6435         * floatfns.c (Fcopysign): Make the second argument non-optional,
6436         since nil is not allowed anyway.
6438 2012-01-21  Andreas Schwab  <schwab@linux-m68k.org>
6440         * process.c (read_process_output): Use p instead of XPROCESS (proc).
6441         (send_process): Likewise.
6443 2012-01-19  Martin Rudalics  <rudalics@gmx.at>
6445         * window.c (save_window_save, Fcurrent_window_configuration)
6446         (Vwindow_persistent_parameters): Do not use Qstate.
6447         Rewrite doc-strings.
6449 2012-01-19  Kenichi Handa  <handa@m17n.org>
6451         * character.c (char_width): New function.
6452         (Fchar_width, c_string_width, lisp_string_width):
6453         Use char_width (Bug#9496).
6455 2012-01-16  Martin Rudalics  <rudalics@gmx.at>
6457         * window.c (Vwindow_persistent_parameters): New variable.
6458         (Fset_window_configuration, save_window_save): Handle persistent
6459         window parameters.
6461 2012-01-14  Eli Zaretskii  <eliz@gnu.org>
6463         * w32fns.c (signal_user_input): Don't do a QUIT, to avoid
6464         thrashing the stack of the thread.  (Bug#9087)
6466 2012-01-12  Paul Eggert  <eggert@cs.ucla.edu>
6468         * xdisp.c (rows_from_pos_range): Add parens as per gcc -Wparentheses.
6470 2012-01-11  Eli Zaretskii  <eliz@gnu.org>
6472         * xdisp.c (rows_from_pos_range): Handle the case where the
6473         highlight ends on a newline.  (Bug#10464)
6474         (mouse_face_from_buffer_pos): Fix off-by-one error in calculating
6475         he end column for display of highlight that ends on a newline
6476         before a R2L line.
6478 2012-01-11  Glenn Morris  <rgm@gnu.org>
6480         * lread.c (init_lread): If no-site-lisp, remove site-lisp dirs
6481         from load-path also when installation-directory is nil.  (Bug#10208)
6483 2012-01-10  Glenn Morris  <rgm@gnu.org>
6485         * emacs.c (syms_of_emacs) <installation-directory>: Doc fix.
6487         * epaths.in (PATH_LOADSEARCH, PATH_EXEC, PATH_DATA, PATH_DOC):
6488         Update template values to be closer to their typical values these days.
6490 2012-01-09  Eli Zaretskii  <eliz@gnu.org>
6492         * xdisp.c (rows_from_pos_range): Accept additional argument
6493         DISP_STRING, and accept any glyph in a row whose object is that
6494         string as eligible for mouse highlight.  Fixes mouse highlight of
6495         display strings from overlays.  (Bug#10464)
6497 2012-01-07  Paul Eggert  <eggert@cs.ucla.edu>
6499         emacs: fix an auto-save permissions race condition (Bug#10400)
6500         * fileio.c (auto_saving_dir_umask): New static var.
6501         (Fmake_directory_internal): Use it.
6502         (do_auto_save_make_dir): Set it, instead of invoking chmod after
6503         creating the directory.  The old code temporarily assigns
6504         too-generous permissions to the directory.
6505         (do_auto_save_eh): Clear it.
6506         (Fdo_auto_save): Catch all errors, not just file errors, so
6507         that the var is always cleared.
6509 2012-01-07  Eli Zaretskii  <eliz@gnu.org>
6511         * search.c (scan_buffer): Pass character positions to
6512         know_region_cache, not byte positions.  (Bug#6540)
6514 2012-01-07  LynX  <_LynX@bk.ru>  (tiny change)
6516         * w32.c (sys_rename): Report EXDEV when rename of a directory
6517         fails because the target is on another logical disk.  (Bug#10284)
6519 2012-01-07  David Benjamin  <davidben@mit.edu>  (tiny change)
6521         * xterm.c (x_embed_request_focus): New function.
6523         * xterm.h: Add prototype.
6525         * xfns.c (Fx_focus_frame): Use it for embedded frames (Bug#9977).
6527 2012-01-05  Glenn Morris  <rgm@gnu.org>
6529         * emacs.c (emacs_copyright): Update short copyright year to 2012.
6531 2012-01-01  Eli Zaretskii  <eliz@gnu.org>
6533         * gnutls.c (init_gnutls_functions): Load gnutls_check_version.
6534         Load gnutls_transport_set_lowat only if GnuTLS version is below
6535         2.11.1.
6536         (emacs_gnutls_handshake): Call gnutls_transport_set_lowat only for
6537         GnuTLS versions below 2.11.1.
6539 2011-12-31  Antoine Levitt  <antoine.levitt@gmail.com>
6541         * xdisp.c (syms_of_xdisp) <window-scroll-functions>: Add warning
6542         to the doc string advising against its use for altering the way
6543         windows are scrolled.
6545 2011-12-28  Kenichi Handa  <handa@m17n.org>
6547         * coding.c (Fdefine_coding_system_internal): Make an utf-8 base
6548         coding-system ASCII compatible only when it does not produce BOM
6549         on encoding (Bug#10383).
6551 2011-12-26  Jan Djärv  <jan.h.d@swipnet.se>
6553         * xmenu.c (x_menu_wait_for_event): Use xg_select for Gtk3 so menus
6554         can scroll.
6555         (create_and_show_popup_menu): Always use menu_position_func for
6556         Gtk3 (Bug#10361).
6558 2011-12-24  Andreas Schwab  <schwab@linux-m68k.org>
6560         * callint.c (Fcall_interactively): Don't truncate prompt string.
6562 2011-12-23  Eli Zaretskii  <eliz@gnu.org>
6564         * xdisp.c (handle_invisible_prop): Handle correctly an invisible
6565         property that ends at ZV, so that the bidi iteration could be
6566         resumed from there (after widening).  (Bug#10360)
6568 2011-12-22  Jan Djärv  <jan.h.d@swipnet.se>
6570         * nsfont.m (ns_spec_to_descriptor): Do not autorelease fdesc.
6572 2011-12-21  Jan Djärv  <jan.h.d@swipnet.se>
6574         * nsterm.m (x_free_frame_resources):
6575         Release f->output_data.ns->miniimage.
6576         (ns_index_color): Fix indentation.  Do not retain
6577         color_table->colors[i].
6579         * nsmenu.m (ns_update_menubar): Call free_menubar_widget_value_tree
6580         before returning.
6582         * nsfns.m (x_set_background_color): Assign return value from
6583         ns_index_color to face-background instead of NSColor*.
6584         (ns_implicitly_set_icon_type): Fix indentation.
6585         Change assignment in for loop to comparison.
6587         * emacs.c (ns_pool): New variable.
6588         (main): Assign ns_pool.
6589         (Fkill_emacs): Call ns_release_autorelease_pool.
6591         * nsfont.m (ns_spec_to_descriptor): Fix indentation,
6592         autorelease fdesc, release fdAttrs and tdict.
6593         (ns_get_covering_families): Release charset.
6594         (ns_findfonts): Release NSFontDescriptor created with new.
6595         (ns_uni_to_glyphs): Fix indentation.
6596         (setString): Release attrStr before assigning new value.
6598 2011-12-18  Jan Djärv  <jan.h.d@swipnet.se>
6600         * nsmenu.m (NSMenuDidBeginTrackingNotification): Declare if OSX < 10.5
6601         and NS_IMPL_COCOA.
6602         (trackingNotification): Surround with ifdef NS_IMPL_COCOA.
6603         (syms_of_nsmenu): Set trackingMenu to 1 if not NS_IMPL_COCOA.
6605 2011-12-18  David Reitter  <reitter@cmu.edu>
6607         * nsterm.m (ns_term_init): Subscribe for notifications
6608         NSMenuDidBeginTrackingNotification and NSMenuDidEndTrackingNotification
6609         to method trackingNotification in EmacsMenu.
6611         * nsmenu.m (trackingMenu): New variable.
6612         (trackingNotification): New method (from Aquamacs).
6613         (menuNeedsUpdate): Expand comment and return if trackingMenu is 0,
6614         from Aquamacs (Bug#7030).
6616 2011-12-18  Jan Djärv  <jan.h.d@swipnet.se>
6618         * nsselect.m (CUT_BUFFER_SUPPORT): Remove define.
6619         (symbol_to_nsstring): Fix indentation.
6620         (ns_symbol_to_pb): New function.
6621         (Fns_get_selection_internal): Rename from Fns_get_cut_buffer_internal.
6622         (Fns_rotate_cut_buffers_internal): Remove.
6623         (Fns_store_selection_internal): Rename from
6624         Fns_store_cut_buffer_internal.
6625         (ns_get_foreign_selection, Fx_own_selection_internal)
6626         (Fx_disown_selection_internal, Fx_selection_exists_p)
6627         (Fns_get_selection_internal, Fns_store_selection_internal):
6628         Use ns_symbol_to_pb and check if return value is nil.
6629         (syms_of_nsselect): Remove ifdef CUT_BUFFER_SUPPORT.  Remove defsubr
6630         Sns_rotate_cut_buffers_internal.  Sns_get_cut_buffer_internal
6631         renamed to Sns_get_selection_internal, Sns_store_cut_buffer_internal
6632         renamed to Sns_store_selection_internal.
6633         (ns_handle_selection_request): Move code to Fx_own_selection_internal
6634         and remove this function.
6635         (ns_handle_selection_clear): Remove, never used.
6636         (Fx_own_selection_internal): Move code from ns_handle_selection_request
6637         here.
6639 2011-12-17  Ken Brown  <kbrown@cornell.edu>
6641         * fileio.c (check_writable) [CYGWIN]: Return non-zero if UID or
6642         GID is unknown (Bug#10257).
6644 2011-12-17  Paul Eggert  <eggert@cs.ucla.edu>
6646         * s/gnu-linux.h: Fix mark_memory typo (Bug#10286).
6647         (GC_MARK_SECONDARY_STACK): Omit removed 3rd arg to mark_memory,
6648         which caused a build failure on GNU/Linux IA-64.  This problem was
6649         introduced by my 2011-10-07 patch.
6651 2011-12-15  Juri Linkov  <juri@jurta.org>
6653         * image.c (imagemagick_error): New function.  (Bug#10112)
6654         (imagemagick_load_image): Comment out `MagickSetResolution' call.
6655         Use `imagemagick_error' where ImageMagick functions return
6656         `MagickFalse'.
6657         (Fimagemagick_types): Add `Fnreverse' to return the list in the
6658         proper order.
6660 2011-12-15  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
6662         * xftfont.c (xftfont_draw): Use the font metrics of s->font to
6663         fill background (Bug#8992).
6665 2011-12-13  Martin Rudalics  <rudalics@gmx.at>
6667         * window.c (Vwindow_combination_resize)
6668         (Vwindow_combination_limit): Use t instead of non-nil in
6669         doc-strings.
6670         (Vrecenter_redisplay): Add first sentence of doc-string on
6671         separate line.
6672         (Frecenter): Fix doc-string typo.
6674 2011-12-11  Kenichi Handa  <handa@m17n.org>
6676         * coding.c (Funencodable_char_position): Pay attention to the
6677         buffer text relocation (Bug#9389).
6679 2011-12-10  Jan Djärv  <jan.h.d@swipnet.se>
6681         * xterm.c (x_term_init): Move call to gdk_window_add_filter before
6682         gtk_init (Bug#10100).
6684 2011-12-10  Eli Zaretskii  <eliz@gnu.org>
6686         * xdisp.c (RECORD_MAX_MIN_POS): Use IT->cmp_it.charpos only if
6687         IT->string is nil.  (Bug#10263)
6689 2011-12-10  Jan Djärv  <jan.h.d@swipnet.se>
6691         * nsterm.h (x_free_frame_resources): Declare.
6693         * nsfns.m (ns_get_defaults_value): New function (Bug#10103).
6694         (Fns_get_resource, x_get_string_resource): Call ns_get_defaults_value.
6696         * nsterm.h (ns_get_defaults_value): Declare.
6698         * nsterm.m (ns_default): Call ns_get_defaults_value.
6700 2011-12-09  Eli Zaretskii  <eliz@gnu.org>
6702         * xdisp.c (try_scrolling): Don't set scroll_down_p if dy is zero.
6703         (Bug#10170)
6705 2011-12-09  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
6707         * unexelf.c (unexec) [NS_IMPL_GNUSTEP]: Take account of the case
6708         that where the value of an _OBJC_* symbol points to is in the .bss
6709         section (Bug#10240).
6711 2011-12-08  Kazuhiro Ito  <kzhr@d1.dion.ne.jp>  (tiny change)
6713         * coding.c (encode_coding_ccl): Check (charbuf < charbuf_end)
6714         after the loop to call ccl_driver at least once (Bug#8619).
6716 2011-12-08  Kenichi Handa  <handa@m17n.org>
6718         * ftfont.c (get_adstyle_property): Fix previous change
6719         (Bug#10233).
6721 2011-12-07  Juanma Barranquero  <lekktu@gmail.com>
6723         * w32.c (init_environment): If no_site_lisp, remove site-lisp
6724         dirs from the default value of EMACSLOADPATH (bug#10208).
6726 2011-12-07  Glenn Morris  <rgm@gnu.org>
6728         * lread.c (init_lread): If no_site_lisp, exclude site-lisp/ in
6729         installation and source directories as well.  (Bug#10208)
6731 2011-12-06  Chong Yidong  <cyd@gnu.org>
6733         * minibuf.c (Fread_from_minibuffer): Doc fix (Bug#10228).
6735 2011-12-06  Glenn Morris  <rgm@gnu.org>
6737         * process.c (start_process_unwind): Treat any pid <= 0, except -2,
6738         as an error, not just -1.  (Bug#10217)
6740 2011-12-05  Chong Yidong  <cyd@gnu.org>
6742         * keyboard.c (process_special_events): New function.
6743         (swallow_events, Finput_pending_p): Use it (Bug#10195).
6745 2011-12-05  Paul Eggert  <eggert@cs.ucla.edu>
6747         * coding.c (encode_designation_at_bol): Don't use uninitialized
6748         local variable (Bug#9318).
6750 2011-12-05  Kenichi Handa  <handa@m17n.org>
6752         * ftfont.c (get_adstyle_property): If the font is not BDF nor PCF,
6753         return Qnil (Bug#8046, Bug#10193).
6755 2011-12-05  Kenichi Handa  <handa@m17n.org>
6757         * coding.c (encode_designation_at_bol): New args charbuf_end and
6758         dst.  Return the number of produced bytes.  Callers changed.
6759         (coding_set_source): Return how many bytes coding->source was
6760         relocated.
6761         (coding_set_destination): Return how many bytes
6762         coding->destination was relocated.
6763         (CODING_DECODE_CHAR, CODING_ENCODE_CHAR, CODING_CHAR_CHARSET)
6764         (CODING_CHAR_CHARSET_P): Adjust for the avove changes.
6766 2011-12-05  Kazuhiro Ito  <kzhr@d1.dion.ne.jp>  (tiny change)
6768         * coding.c (CODING_CHAR_CHARSET_P): New macro.
6769         (encode_coding_emacs_mule, encode_coding_iso_2022): Use the above
6770         macro (Bug#9318).
6772 2011-12-05  Andreas Schwab  <schwab@linux-m68k.org>
6774         The following changes are to fix Bug#9318.
6776         * coding.c (CODING_ENCODE_CHAR, CODING_CHAR_CHARSET): New macros.
6777         (encode_coding_emacs_mule, ENCODE_ISO_CHARACTER)
6778         (encode_coding_iso_2022, encode_coding_sjis)
6779         (encode_coding_big5, encode_coding_charset): Use the above macros.
6781 2011-12-05  Juanma Barranquero  <lekktu@gmail.com>
6783         * lisp.h (process_quit_flag): Fix external declaration.
6785 2011-12-04  Stefan Monnier  <monnier@iro.umontreal.ca>
6787         Don't macro-inline non-performance-critical code.
6788         * eval.c (process_quit_flag): New function.
6789         * lisp.h (QUIT): Use it.
6791 2011-12-04  Jan Djärv  <jan.h.d@swipnet.se>
6793         * nsfns.m (get_geometry_from_preferences): New function.
6794         (Fx_create_frame): Call get_geometry_from_preferences (Bug#10103).
6796 2011-12-04  Andreas Schwab  <schwab@linux-m68k.org>
6798         * emacs.c (Qkill_emacs): Define.
6799         (syms_of_emacs): Initialize it.
6800         * keyboard.c (interrupt_signal): Don't call Fkill_emacs here, set
6801         Qquit_flag to `kill-emacs' instead.
6802         (quit_throw_to_read_char): Add parameter `from_signal'.
6803         All callers changed.  Call Fkill_emacs if requested and safe.
6804         * lisp.h (QUIT): Call Fkill_emacs if requested.
6806 2011-12-03  Jan Djärv  <jan.h.d@swipnet.se>
6808         * widget.c (update_wm_hints): Return if wmshell is null.
6809         (widget_update_wm_size_hints): New function.
6811         * widget.h (widget_update_wm_size_hints): Declare.
6813         * xterm.c (x_wm_set_size_hint): If USE_X_TOOLKIT, call
6814         widget_update_wm_size_hints (Bug#10104).
6816 2011-12-03  Eli Zaretskii  <eliz@gnu.org>
6818         * xdisp.c (handle_invisible_prop): If the invisible text ends just
6819         before a newline, prepare the bidi iterator for consuming the
6820         newline, and keep the current paragraph direction.  (Bug#10183)
6821         (redisplay_window): Don't let `margin' become negative.  (Bug#10192)
6823 2011-12-02  Juri Linkov  <juri@jurta.org>
6825         * search.c (Fword_search_regexp): New Lisp function created from
6826         `wordify'.  Change type of arg `lax' from `int' to `Lisp_Object'.
6827         (Fword_search_backward, Fword_search_forward)
6828         (Fword_search_backward_lax, Fword_search_forward_lax):
6829         Use `Fword_search_regexp' instead of `wordify'.  Doc fix.
6830         (syms_of_search): Define `Sword_search_regexp'.  (Bug#10145)
6832 2011-12-01  Stefan Monnier  <monnier@iro.umontreal.ca>
6834         * fileio.c (Finsert_file_contents): Move after-change-function call
6835         to before the "handled:" label, since all "goto handled" appear in
6836         cases where the *-change-functions have already been properly called
6837         (bug#10117).
6839 2011-12-01  Andreas Schwab  <schwab@linux-m68k.org>
6841         * keyboard.c (interrupt_signal): Don't call kill-emacs when
6842         waiting for input.  (Bug#10169)
6844 2011-11-30  Eli Zaretskii  <eliz@gnu.org>
6846         * dispnew.c (adjust_glyph_matrix): Remove the assertion that
6847         verifies glyph row's hash code--we have just reallocated the
6848         glyphs, so their contents can be complete garbage.  (Bug#10164)
6850 2011-11-30  Juanma Barranquero  <lekktu@gmail.com>
6852         * dispnew.c (adjust_glyph_matrix) [XASSERTS]: Add missing check.
6854 2011-11-30  Eli Zaretskii  <eliz@gnu.org>
6856         * dispnew.c (adjust_glyph_matrix) [XASSERTS]: Ensure ROW's
6857         attributes are tested _before_ calling verify_row_hash, to protect
6858         against GCC re-ordering of the tests.  (Bug#10164)
6860 2011-11-29  Jan Djärv  <jan.h.d@swipnet.se>
6862         * xterm.h (struct x_output): net_wm_state_hidden_seen is new.
6864         * xterm.c (handle_one_xevent): Only set async_visible and friends
6865         if net_wm_state_hidden_seen is non-zero (Bug#10002)
6866         (get_current_wm_state): Set net_wm_state_hidden_seen to 1 if
6867         _NET_WM_STATE_HIDDEN is in NET_WM_STATE.
6869 2011-11-28  Paul Eggert  <eggert@cs.ucla.edu>
6871         Remove GCPRO-related macros that exist only to avoid shadowing locals.
6872         * lisp.h (GCPRO1_VAR, GCPRO2_VAR, GCPRO3_VAR, GCPRO4_VAR, GCPRO5_VAR)
6873         (GCPRO6_VAR, UNGCPRO_VAR): Remove.  See
6874         <http://lists.gnu.org/archive/html/emacs-diffs/2011-11/msg00265.html>.
6875         All uses changed to use GCPRO1 etc.
6876         (GCPRO1, GCPRO2, GCPRO3, GCPRO4, GCPRO5, GCPRO6, UNGCPRO):
6877         Revert to old implementation (i.e., before 2011-03-11).
6879 2011-11-28  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
6881         * dispnew.c (scrolling_window): Truncate overlaps in copy destination
6882         of scroll runs so as to avoid assigning disabled bogus rows and
6883         unnecessary graphics copy operations.
6885 2011-11-27  Eli Zaretskii  <eliz@gnu.org>
6887         * s/ms-w32.h (utimbuf) [_MSC_VER]: Don't define.
6888         (snprintf) [_MSC_VER]: Redirect to _snprintf.
6889         (strtoll) [_MSC_VER]: Redirect to _strtoi64.
6890         (malloc, free, realloc, calloc): Redirect to e_* only when
6891         compiling Emacs.
6893         * lisp.h (GCTYPEBITS): Move before first use.
6894         (ALIGN_GCTYPEBITS) [_MSC_VER]: Define.
6895         (DECL_ALIGN) [_MSC_VER]: Use it, as MSVC doesn't like bit ops in
6896         this macro definition.
6898         * s/ms-w32.h (tzname): Redirect to _tzname for all values of
6899         _MSC_VER.
6901 2011-11-27  Jan Djärv  <jan.h.d@swipnet.se>
6903         * gtkutil.c (xg_create_frame_widgets):
6904         Call gtk_window_set_has_resize_grip (FALSE) if that function is
6905         present with Gtk+ 2.0.
6907 2011-11-26  Paul Eggert  <eggert@cs.ucla.edu>
6909         * fileio.c (Finsert_file_contents): Undo previous change; see
6910         <http://lists.gnu.org/archive/html/emacs-diffs/2011-11/msg00265.html>.
6912 2011-11-26  Paul Eggert  <eggert@cs.ucla.edu>
6914         Rename locals to avoid shadowing.
6915         * fileio.c (Finsert_file_contents):
6916         Rename inner 'gcpro1' to 'inner_gcpro1' to avoid shadowing.
6917         * process.c (wait_reading_process_output):
6918         Rename inner 'proc' to 'p' to avoid shadowing.
6919         Indent for consistency with usual Emacs style.
6921 2011-11-25  Eli Zaretskii  <eliz@gnu.org>
6923         * xdisp.c (redisplay_window): If cursor row is not fully visible
6924         after recentering, and scroll-conservatively is set to a large
6925         number, scroll window by a few more lines to make the cursor fully
6926         visible and out of scroll-margin.  (Bug#10105)
6927         (start_display): Don't move to the next line if the display should
6928         start at a newline that is part of a display vector or an overlay
6929         string.  (Bug#10119)
6931 2011-11-24  Juri Linkov  <juri@jurta.org>
6933         * image.c (imagemagick_load_image): Move `MagickSetResolution' down
6934         after the `MagickPingImage' call.  (Bug#10112)
6936 2011-11-23  Chong Yidong  <cyd@gnu.org>
6938         * window.c (Fcoordinates_in_window_p): Accept only live windows.
6940 2011-11-23  Martin Rudalics  <rudalics@gmx.at>
6942         * buffer.c (Fkill_buffer): Run replace_buffer_in_windows before
6943         making another buffer current.  (Bug#10114)
6945 2011-11-23  Glenn Morris  <rgm@gnu.org>
6947         * font.c (font_find_for_lface) [HAVE_NS]: Ignore case.  (Bug#2526)
6949 2011-11-23  Chong Yidong  <cyd@gnu.org>
6951         * xdisp.c (compute_stop_pos): Check validity of end_charpos before
6952         using it (Bug#5984).
6954 2011-11-22  Eli Zaretskii  <eliz@gnu.org>
6956         * dispnew.c (adjust_glyph_matrix): Don't verify hash code of mode-
6957         and header-lines, as they don't have one computed for them.
6958         (Bug#10098)
6960         * .gdbinit (prow): Make displayed values more self-explaining.
6961         Add row's hash code.
6963 2011-11-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6965         * process.c (wait_reading_process_output): Fix asynchrounous
6966         GnuTLS socket handling on some versions of the GnuTLS library.
6967         (wait_reading_process_output): Add comment and URL.
6969 2011-11-21  Jan Djärv  <jan.h.d@swipnet.se>
6971         * xterm.c (x_clear_frame): Reinstate the XClearWindow call.
6973 2011-11-21  Chong Yidong  <cyd@gnu.org>
6975         * window.c (Fnext_window, Fprevious_window): Doc fix.
6977 2011-11-20  Stefan Monnier  <monnier@iro.umontreal.ca>
6979         * window.c (get_phys_cursor_glyph): Fix Lisp_Object/int mixup.
6981 2011-11-20  Juanma Barranquero  <lekktu@gmail.com>
6983         * nsfont.m (syms_of_nsfont) <ns-reg-to-script>: Fix typo.
6985 2011-11-20  Martin Rudalics  <rudalics@gmx.at>
6987         * window.c (Fset_window_combination_limit): Rename argument
6988         STATUS to LIMIT.
6989         (Vwindow_combination_limit): Remove "status" from doc-string.
6991 2011-11-20  Andreas Schwab  <schwab@linux-m68k.org>
6993         * m/ibms390.h: Remove.
6994         * m/ibms390x.h: Don't include "ibms390.h".
6996 2011-11-20  Stefan Monnier  <monnier@iro.umontreal.ca>
6998         * fileio.c (Finsert_file_contents): Add missing gcpro1 variable.
6999         Suggested by Dmitry Antipov <dmantipov@yandex.ru>.
7001 2011-11-20  Juanma Barranquero  <lekktu@gmail.com>
7003         * casetab.c (Fset_case_table):
7004         * charset.c (Fcharset_after): Fix typos.
7006 2011-11-20  Paul Eggert  <eggert@cs.ucla.edu>
7008         Standardize on VIRT_ADDR_VARIES behavior (Bug#10042).
7009         Otherwise, valgrind does not work on some platforms.
7010         Problem reported by Andreas Schwab in
7011         <http://lists.gnu.org/archive/html/emacs-devel/2011-11/msg00081.html>.
7012         * puresize.h (pure, PURE_P): Always behave as if VIRT_ADDR_VARIES
7013         is set, removing the need for VIRT_ADDRESS_VARIES.
7014         (PURE_P): Use a more-efficient implementation that needs just one
7015         comparison, not two: on x86-64 with GCC 4.6.2, this cut down the
7016         number of instructions from 6 (xorl, cmpq, jge, xorl, cmpq, setge)
7017         to 4 (xorl, subq, cmpq, setbe).
7018         * alloc.c (pure): Always extern now, since that's the
7019         VIRT_ADDR_VARIES behavior.
7020         (PURE_POINTER_P): Use a single comparison, not two, for
7021         consistency with the new puresize.h.
7022         * lisp.h (PNTR_COMPARISON_TYPE): Remove; no longer needed.
7023         * m/ibms390.h, m/intel386.h, m/template.h, s/cygwin.h, s/hpux10-20.h:
7024         Remove VIRT_ADDR_VARIES no longer needed.
7026 2011-11-19  Eli Zaretskii  <eliz@gnu.org>
7028         * xdisp.c (x_write_glyphs, draw_phys_cursor_glyph)
7029         (erase_phys_cursor, update_window_cursor, show_mouse_face)
7030         (cursor_in_mouse_face_p): If the cursor position is out of bounds,
7031         behave as if the cursor position were at the window margin.
7033         * window.c (get_phys_cursor_glyph): If the window is hscrolled,
7034         and the cursor position is out of bounds, behave as if the cursor
7035         position were at the window margin.  (Bug#10075)
7037 2011-11-18  Chong Yidong  <cyd@gnu.org>
7039         * window.c (Fwindow_combination_limit): Make first argument
7040         non-optional, since it is meaningless for live windows like the
7041         selected window.
7043 2011-11-18  Dmitry Antipov  <dmantipov@yandex.ru>
7045         * keymap.c (Fwhere_is_internal): Add missing RETURN_UNGCPROs.
7047 2011-11-18  Stefan Monnier  <monnier@iro.umontreal.ca>
7049         * intervals.c: Fix grafting over the whole buffer (bug#10071).
7050         (graft_intervals_into_buffer): Simplify.
7052 2011-11-18  Eli Zaretskii  <eliz@gnu.org>
7054         * dispnew.c (swap_glyph_pointers): Swap the used[] arrays and the
7055         hash values of the two rows.
7056         (copy_row_except_pointers): Preserve the used[] arrays and the
7057         hash values of the two rows.  (Bug#10035)
7058         (add_row_entry): Add xassert to verify that ROW's hash code is valid.
7060         * xdisp.c (row_hash): New function, body extracted from
7061         compute_line_metrics.
7062         (compute_line_metrics): Call row_hash, instead of computing the
7063         hash code inline.
7065         * dispnew.c (verify_row_hash): Call row_hash for computing the
7066         hash code of a row, instead of duplicating code from xdisp.c.
7068         * dispextern.h (row_hash): Add prototype.
7070 2011-11-18  Tassilo Horn  <tassilo@member.fsf.org>
7072         * frame.c (delete_frame): Don't delete the terminal when the last
7073         X frame is closed if emacs is built with GTK toolkit.
7075 2011-11-17  Juanma Barranquero  <lekktu@gmail.com>
7077         * window.c (syms_of_window) <window-combination-resize>: Fix typo.
7079 2011-11-17  Martin Rudalics  <rudalics@gmx.at>
7081         * window.c (Vwindow_splits): Rename to
7082         Vwindow_combination_resize.  Suggested by Juri Linkov.
7083         (Fsplit_window_internal): Use Vwindow_combination_resize instead
7084         of Vwindow_splits.
7086 2011-11-16  Juanma Barranquero  <lekktu@gmail.com>
7088         * nsfns.m (Fns_font_name):
7089         * window.c (syms_of_window) <window-combination-limit>: Fix typos.
7091 2011-11-16  Martin Rudalics  <rudalics@gmx.at>
7093         * window.h (window): Rename slot "nest" to "combination_limit".
7094         * window.c (Fwindow_nest): Rename to Fwindow_combination_limit.
7095         (Fset_window_nest): Rename to Fset_window_combination_limit.
7096         (Vwindow_nest): Rename to Vwindow_combination_limit.
7097         (recombine_windows, make_parent_window, make_window)
7098         (Fsplit_window_internal, saved_window)
7099         (Fset_window_configuration, save_window_save): Rename all
7100         occurrences of window_nest to window_combination_limit.
7102 2011-11-15  Juanma Barranquero  <lekktu@gmail.com>
7104         * image.c (imagemagick_load_image): Fix typo.
7106 2011-11-14  Eli Zaretskii  <eliz@gnu.org>
7108         * xdisp.c (display_line): Move the call to
7109         highlight_trailing_whitespace before the call to
7110         compute_line_metrics, since the latter needs to see the final
7111         faces of all the glyphs to compute ROW's hash value.
7112         Fixes assertion violations in row_equal_p.  (Bug#10035)
7114 2011-11-14  Juanma Barranquero  <lekktu@gmail.com>
7116         * w32proc.c (reader_thread): Don't check pending input if cp->fd < 0,
7117         just return (bug#10044).
7119 2011-11-12  Eli Zaretskii  <eliz@gnu.org>
7121         * makefile.w32-in (HEAPSIZE): New variable, allows to build temacs
7122         with user-defined heap size.  Bump the default size of the temacs
7123         heap to 27MB, to avoid memory warning when running temacs.
7124         ($(TEMACS)): Use HEAPSIZE instead of a hardcoded value.
7126         * dispnew.c (scrolling_window): Fix incorrect indices in accessing
7127         current_matrix and desired_matrix.  (Bug#9990)
7128         (verify_row_hash) [XASSERTS]: New function.
7129         (adjust_glyph_matrix, row_equal_p): Use it in xassert to verify
7130         that the hash value of glyph rows is correct.
7132 2011-11-12  Martin Rudalics  <rudalics@gmx.at>
7134         * window.h (window): Remove splits slot.
7135         * window.c (Fwindow_splits, Fset_window_splits): Remove.
7136         (Fdelete_other_windows_internal, make_parent_window)
7137         (make_window, Fsplit_window_internal, Fdelete_window_internal)
7138         (Fset_window_configuration, save_window_save): Don't deal with
7139         split status of windows.
7140         (saved_window): Remove splits slot.
7141         (Vwindow_splits): Rewrite doc-string.
7143 2011-11-11  Jan Djärv  <jan.h.d@swipnet.se>
7145         * xfns.c (unwind_create_frame):
7146         * nsfns.m (unwind_create_frame):
7147         * w32fns.c (unwind_create_frame): Use Fmemq to check if frame is in
7148         Vframe_list (Bug#9999).
7150 2011-11-11  Dmitry Antipov  <dmantipov@yandex.ru>
7152         * xdisp.c (syms_of_xdisp): Remove duplicated definition of Qtext.
7154 2011-11-11  Kenichi Handa  <handa@m17n.org>
7156         * callproc.c (Fcall_process): Set the member dst_multibyte of
7157         process_coding.
7159 2011-11-11  Johan Bockgård  <bojohan@gnu.org>
7161         * xdisp.c (fill_composite_glyph_string): Always set s->face, to
7162         avoid a crash (bug#9496).
7164 2011-11-09  Chong Yidong  <cyd@gnu.org>
7166         * window.c (Fwindow_inside_edges, Fwindow_inside_pixel_edges)
7167         (Fwindow_inside_absolute_pixel_edges): Only allow live windows.
7169 2011-11-08  Paul Eggert  <eggert@cs.ucla.edu>
7171         * s/gnu.h (GC_MARK_STACK): Define to GC_MAKE_GCPROS_NOOPS (Bug#9926).
7173 2011-11-08  Paul Eggert  <eggert@cs.ucla.edu>
7175         Avoid some portability problems by eschewing 'extern inline' functions.
7176         The trivial performance wins aren't worth the portability hassles; see
7177         <http://lists.gnu.org/archive/html/emacs-devel/2011-11/msg00084.html>
7178         et seq.
7179         * dispextern.h (window_box, window_box_height, window_text_bottom_y)
7180         (window_box_width, window_box_left, window_box_left_offset)
7181         (window_box_right, window_box_right_offset): Undo previous change,
7182         by removing the "extern"s.
7183         * intervals.c (adjust_intervals_for_insertion)
7184         (adjust_intervals_for_deletion): Undo previous change,
7185         making these static again.
7186         (offset_intervals, temp_set_point_both, temp_set_point)
7187         (copy_intervals_to_string): No longer inline.
7188         * xdisp.c (window_text_bottom_y, window_box_width)
7189         (window_box_height, window_box_left_offset)
7190         (window_box_right_offset, window_box_left, window_box_right)
7191         (window_box): No longer inline.
7193 2011-11-08  Chong Yidong  <cyd@gnu.org>
7195         * window.c (Fwindow_left_column, Fwindow_top_line): Doc fix.
7196         (Fwindow_body_height, Fwindow_body_width): Move from Lisp.
7197         Signal an error if not a live window.
7198         (Fwindow_total_width, Fwindow_total_height): Move from Lisp.
7199         (Fwindow_total_size, Fwindow_body_size): Move to Lisp.
7201 2011-11-07  Juanma Barranquero  <lekktu@gmail.com>
7203         * lisp.h (syms_of_abbrev): Remove declaration.
7204         Reported by CHENG Gao <chenggao@royau.me>.
7206 2011-11-07  Eli Zaretskii  <eliz@gnu.org>
7208         * w32.c (check_windows_init_file): Don't look for term/w32-win.el
7209         if Vpurify_flag is non-nil.  Fixes a crash when running w32 build
7210         of temacs in GUI mode.
7212 2011-11-07  Martin Rudalics  <rudalics@gmx.at>
7214         * window.h: Declare delete_all_child_windows instead of
7215         delete_all_subwindows.
7216         * window.c (Fwindow_nest, Fset_window_nest)
7217         (Fset_window_new_total, Fset_window_new_normal)
7218         (Fwindow_resize_apply): Don't use term subwindow in doc-strings.
7219         (delete_all_subwindows): Rename to delete_all_child_windows.
7220         (Fdelete_other_windows_internal, Fset_window_configuration):
7221         Call delete_all_child_windows instead of delete_all_subwindows.
7222         * frame.c (delete_frame): Call delete_all_child_windows instead
7223         of delete_all_subwindows.
7225 2011-11-07  Paul Eggert  <eggert@cs.ucla.edu>
7227         * alloc.c (DEADP): New macro, for porting to GNU/Hurd (Bug#9926).
7228         This is also needed for porting to any host where GC_MARK_STACK is
7229         not GC_MAKE_GCPROS_NOOPS.
7230         (which_symbols): Use it.
7232 2011-11-07  Kenichi Handa  <handa@m17n.org>
7234         * coding.c (coding_set_destination): Check coding->src_pos only
7235         when coding->src_object is a buffer (bug#9910).
7237         * process.c (send_process): Set the member src_multibyte of coding
7238         to 0 (bug#9911) when sending a unibyte text.
7240         * callproc.c (Fcall_process): Set the member src_multibyte of
7241         process_coding to 0 (bug#9912).
7243 2011-11-06  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
7245         * xmenu.c (cleanup_widget_value_tree): New function.
7246         (xmenu_show, xdialog_show): Use it in record_unwind_protect instead of
7247         calling free_menubar_widget_value_tree directly (Bug#9830).
7249 2011-11-06  Paul Eggert  <eggert@cs.ucla.edu>
7251         Fix some portability problems with 'inline'.
7252         * dispextern.h (window_box, window_box_height, window_text_bottom_y)
7253         (window_box_width, window_box_left, window_box_left_offset)
7254         (window_box_right, window_box_right_offset): Declare extern.
7255         Otherwise, these inline functions do not conform to C99 and
7256         are miscompiled by Microsoft compilers.  Reported by Eli Zaretskii in
7257         <http://lists.gnu.org/archive/html/emacs-devel/2011-11/msg00084.html>.
7258         * intervals.c (adjust_intervals_for_insertion)
7259         (adjust_intervals_for_deletion): Now extern, because otherwise the
7260         extern inline functions 'offset_intervals' couldn't refer to it.
7261         (static_offset_intervals): Remove.
7262         (offset_intervals): Rewrite using the old contents of
7263         static_offset_intervals.  The old version didn't conform to C99
7264         because an extern inline function contained a reference to an
7265         identifier with static linkage.
7267 2011-11-06  Andreas Schwab  <schwab@linux-m68k.org>
7269         * keyboard.c (interrupt_signal): Don't call kill-emacs while in
7270         GC.
7272 2011-11-06  Eli Zaretskii  <eliz@gnu.org>
7274         * xdisp.c (init_iterator, reseat_to_string): Don't set the
7275         iterator's bidi_p flag if Vpurify_flag is non-nil.  (Bug#9963)
7276         (Fcurrent_bidi_paragraph_direction): If Vpurify_flag is non-nil,
7277         return Qleft_to_right.
7279 2011-11-06  Chong Yidong  <cyd@gnu.org>
7281         * window.c (Fwindow_live_p, Fwindow_frame, Fframe_root_window)
7282         (Fminibuffer_window, Fwindow_buffer, Fwindow_splits)
7283         (Fset_window_splits, Fwindow_nest, Fset_window_nest)
7284         (Fwindow_use_time, Fwindow_total_size, Fwindow_normal_size)
7285         (Fwindow_new_normal, Fwindow_left_column, Fwindow_top_line)
7286         (Fwindow_margins, Fwindow_fringes, Fwindow_scroll_bars)
7287         (Fwindow_vscroll): Doc fix.
7288         (Fwindow_top_child, Fwindow_left_child): Eliminate a nil default
7289         argument, since it makes no sense to pass a live window and for
7290         consistency with window-child.
7292 2011-11-05  Christoph Scholtes  <cschol2112@googlemail.com>
7294         * makefile.w32-in ($(TEMACS), (gl-stamp)): Use $(THISDIR) to
7295         support MSVC.
7297 2011-11-05  Jason Rumney  <jasonr@gnu.org>
7299         * w32font.c (font_matches_spec): Filter out non-Japanese kana fonts.
7300         (add_font_entity_to_list): Filter out non-Japanese Shift-JIS
7301         fonts (Bug#6029).
7302         (add_font_entity_to_list): Fix logic errors in mixed boolean and
7303         bitwise arithmetic preventing use of unicode-sip and non-truetype
7304         opentype fonts.
7306 2011-11-05  Eli Zaretskii  <eliz@gnu.org>
7308         * s/ms-w32.h (fstat, stat, utime): Move redirections to
7309         "emacs"-only part.
7311         * w32fns.c (x_create_tip_frame, Fx_create_frame): Rearrange
7312         initialization code to keep similarity to xfns.c after changes
7313         from 2011-11-05.
7315 2011-11-05  Jan Djärv  <jan.h.d@swipnet.se>
7317         * nsfns.m: Declare image_cache_refcount if GLYPH_DEBUG.
7318         (unwind_create_frame): New function (Bug#9943).
7319         (Fx_create_frame): Restructure code to be more similar to the one in
7320         xfns.c.  Call record_unwind_protect with unwind_create_frame (Bug#9943).
7321         Initialize image_cache_refcount if GLYPH_DEBUG (Bug#9943).
7322         Move terminal->reference_count++ just before making the frame official
7323         (Bug#9943).
7325         * nsterm.m (x_free_frame_resources): New function.
7326         (x_destroy_window): Move code to x_free_frame_resources.
7328         * xfns.c (unwind_create_frame): Fix comment.
7329         (Fx_create_frame, x_create_tip_frame):
7330         Move terminal->reference_count++ just before making the frame
7331         official.  Move initialization of image_cache_refcount and
7332         dpyinfo_refcount before calling init_frame_faces (Bug#9943).
7334 2011-11-05  Eli Zaretskii  <eliz@gnu.org>
7336         Support MSVC build with newer versions of Visual Studio.
7337         * makefile.w32-in (TAGS-gmake): Don't use $(patsubst ...), as
7338         Nmake barfs on that.  Use $(OBJ*_c) variables instead, defined on
7339         nt/gmake.defs.
7341         * lisp.h (ENUM_BF): New macro, for enumerated types in bitfields,
7342         which are not supported by MSVC.
7343         (Lisp_Symbol, Lisp_Misc_Any, Lisp_Marker, Lisp_Misc_Overlay)
7344         (Lisp_Save_Value, Lisp_Free): Use ENUM_BF for enumerated types in
7345         bitfields.
7346         (Lisp_Object) [USE_LISP_UNION_TYPE]: Use ENUM_BF for enumerated
7347         types in bitfields.
7348         (DEFUN) [_MSC_VER]: Define in a different way for MSVC.
7350         * w32fns.c [_MSC_VER]: DECLARE_HANDLE for any MSVC version.
7352 2011-11-05  Fabrice Popineau  <fabrice.popineau@supelec.fr>  (tiny change)
7354         Support MSVC build with newer versions of Visual Studio.
7355         * w32.c: Don't include w32api.h for MSVC.
7356         (init_environment) [_MSC_VER]: Call sys_access, not _access.
7358         * s/ms-w32.h <sigset_t, ssize_t> [_MSC_VER]: Typedefs for MSVC.
7359         [_MSC_VER]: Include sys/timeb.h, sys/stat.h, and signal.h.
7360         (fstat, stat, utime) [_MSC_VER]: Redirect to their sys_* cousins.
7361         (malloc, free, realloc, calloc) [_MSC_VER]: Always redirect to the
7362         e_* cousins.
7363         (alloca) [_MSC_VER]: Define to _alloca.
7365         * lisp.h (DECL_ALIGN) [_MSC_VER]: Define for MSVC.
7367         * regex.c <re_char> [_MSC_VER]: A separate definition for MSVC.
7369 2011-11-04  Eli Zaretskii  <eliz@gnu.org>
7371         * xdisp.c (note_mouse_highlight): If either of
7372         previous/next-single-property-change returns nil, treat that as
7373         the beginning or the end of the buffer.  (Bug#9955)
7375 2011-11-04  Jan Djärv  <jan.h.d@swipnet.se>
7377         * gtkutil.c (xg_make_tool_item): Add callbacks if one of wimage or
7378         label is not null (Bug#9951).
7379         (xg_tool_item_stale_p): Handle the fact that wimage and/or wlbl
7380         may be NULL.
7382 2011-11-04  Eli Zaretskii  <eliz@gnu.org>
7384         * window.c (Fwindow_body_size): Mention in the doc string that the
7385         return value is in frame's canonical units.  (Bug#9949)
7387 2011-11-03  Eli Zaretskii  <eliz@gnu.org>
7389         * xdisp.c (note_mouse_highlight): Initialize `area'.  (Bug#9947)
7391         * w32fns.c (unwind_create_frame): If needed, free the glyph
7392         matrices of the partially constructed frame.  (Bug#9943)
7393         * xfns.c (unwind_create_frame): Likewise.
7395 2011-11-01  Eli Zaretskii  <eliz@gnu.org>
7397         * xdisp.c (mouse_face_from_buffer_pos): Fix a typo in a comment.
7398         Don't stop backward scan on the continuation glyph, even though
7399         its CHARPOS is positive.
7400         (mouse_face_from_buffer_pos, note_mouse_highlight):
7401         Rename cover_string to disp_string.
7403 2011-11-01  Martin Rudalics  <rudalics@gmx.at>
7405         * window.c (temp_output_buffer_show): Don't use
7406         Vtemp_buffer_show_specifiers.
7407         (Vtemp_buffer_show_specifiers): Remove unused variable.
7409 2011-10-30  Eli Zaretskii  <eliz@gnu.org>
7411         * xdisp.c (try_cursor_movement): Make sure ROW isn't decremented
7412         past the beginning of the current glyph matrix.
7414 2011-10-30  Adam Sjøgren  <asjo@koldfront.dk>  (tiny change)
7416         * xterm.c: Include X11/Xproto.h if HAVE_GTK3.
7417         (x_error_handler): Ignore BadMatch for X_SetInputFocus for
7418         HAVE_GTK3 (Bug#9869).
7420         * gtkutil.c (xg_win_to_widget, xg_event_is_for_menubar): Initialize
7421         type to GDK_NOTHING so valgrind does not complain (Bug#9901).
7423         * xterm.h (x_display_info): Add Xatom_net_wm_state_hidden (Bug#9893).
7425         * xterm.c: Declare x_handle_net_wm_state to return int.
7426         (handle_one_xevent): Check if we are iconified but don't have
7427         _NET_WM_STATE_HIDDEN.  If do, treat as deiconify (Bug#9893).
7428         (get_current_wm_state): Return non-zero if not hidden,
7429         check for _NET_WM_STATE_HIDDEN (Bug#9893).
7430         (do_ewmh_fullscreen): Ignore return value from get_current_wm_state.
7431         (x_handle_net_wm_state): Return what get_current_wm_state returns.
7432         (x_term_init): Initialize dpyinfo->Xatom_net_wm_state_hidden.
7434 2011-10-29  Paul Eggert  <eggert@cs.ucla.edu>
7436         * alloc.c (which_symbols): Declare EXTERNALLY_VISIBLE,
7437         so that this new function doesn't get optimized away by a
7438         whole-program optimizer.  Make the 2nd arg EMACS_INT, not int.
7440 2011-10-29  Andreas Schwab  <schwab@linux-m68k.org>
7442         * frame.h (MOUSE_HL_INFO): Remove excess parens.
7444 2011-10-29  Eli Zaretskii  <eliz@gnu.org>
7446         Fix the `xbytecode' command.
7447         * .gdbinit (xprintbytestr): New command.
7448         (xwhichsymbols): Rename from `which'; all callers changed.
7449         (xbytecode): Print the byte-code string as well.
7451 2011-10-29  Kim Storm  <storm@cua.dk>
7453         * alloc.c (which_symbols): New function.
7455 2011-10-29  Andreas Schwab  <schwab@linux-m68k.org>
7457         * minibuf.c (read_minibuf_noninteractive): Allow reading empty
7458         line.  (Bug#9903)
7460 2011-10-29  Glenn Morris  <rgm@gnu.org>
7462         * process.c (wait_reading_process_output): Revert 2009-08-30 change.
7463         Not clear what it was for, and it causes various bugs.  (Bug#9839)
7465 2011-10-28  Eli Zaretskii  <eliz@gnu.org>
7467         * xdisp.c (note_mouse_highlight): Initialize `part', to avoid a
7468         possible random value that matches one of those tested as
7469         condition to clear the mouse face.
7471 2011-10-28  Chong Yidong  <cyd@gnu.org>
7473         * xdisp.c (note_mouse_highlight): Fix use of uninitialized var.
7475 2011-10-28  Dan Nicolaescu  <dann@ics.uci.edu>
7477         * window.c (make_window): Initialize phys_cursor_on_p.
7479 2011-10-28  Stefan Monnier  <monnier@iro.umontreal.ca>
7481         * lisp.h (struct Lisp_Symbol): Update comments.
7483 2011-10-28  Juanma Barranquero  <lekktu@gmail.com>
7485         * w32font.c (w32_load_unicows_or_gdi32): Add missing return.
7487 2011-10-28  Eli Zaretskii  <eliz@gnu.org>
7489         Fix Emacs on Windows 9X (bug#8562).  Thanks to oslsachem
7490         <oslsachem@gmail.com> for helping to debug this.
7492         * w32font.c (g_b_init_is_w9x, g_b_init_get_outline_metrics_w)
7493         (g_b_init_get_text_metrics_w, g_b_init_get_glyph_outline_w)
7494         (g_b_init_get_glyph_outline_w): New static variables.
7495         (GetOutlineTextMetricsW_Proc, GetTextMetricsW_Proc)
7496         (GetGlyphOutlineW_Proc): New typedefs.
7497         (w32_load_unicows_or_gdi32, get_outline_metrics_w)
7498         (get_text_metrics_w, get_glyph_outline_w, globals_of_w32font):
7499         New functions.
7500         (w32font_open_internal, compute_metrics):
7501         Call get_outline_metrics_w, get_text_metrics_w, and get_glyph_outline_w
7502         instead of calling the "wide" APIs directly.
7504         * emacs.c (main) [HAVE_NTGUI]: Call globals_of_w32font.
7506         * w32.h (syms_of_w32font): Add prototype.
7508 2011-10-27  Juanma Barranquero  <lekktu@gmail.com>
7510         * window.c (Fframe_root_window, Fframe_first_window, Fwindow_end)
7511         (Fframe_selected_window, Ftemp_output_buffer_show, Fnext_window)
7512         (Fdelete_window_internal, Fwindow_parameters): Fix typos in docstrings.
7513         (Fmove_to_window_line): Doc fix.
7515 2011-10-27  Chong Yidong  <cyd@gnu.org>
7517         * process.c (make_process): Set gnutls_state to NULL.
7519         * gnutls.c (emacs_gnutls_deinit): Deinit the gnutls_state if it is
7520         non-NULL, regardless of GNUTLS_INITSTAGE.
7521         (Fgnutls_boot): Cleanups.  Call emacs_gnutls_deinit if we signal
7522         an error.  Set process slots as soon as we allocate them.
7524         * gnutls.h (GNUTLS_LOG, GNUTLS_LOG2): Fix macros.
7526 2011-10-27  Chong Yidong  <cyd@gnu.org>
7528         * gnutls.c (emacs_gnutls_deinit): New function.
7529         Deallocate credentials structures as well as calling gnutls_deinit.
7530         (Fgnutls_deinit, Fgnutls_boot): Use it.
7532         * process.c (make_process): Initialize GnuTLS credentials to NULL.
7533         (deactivate_process): Call emacs_gnutls_deinit.
7535 2011-10-27  Juanma Barranquero  <lekktu@gmail.com>
7537         * image.c (x_create_x_image_and_pixmap):
7538         * w32.c (sys_rename, w32_delayed_load):
7539         * w32font.c (fill_in_logfont):
7540         * w32reg.c (x_get_string_resource): Silence compiler warnings.
7542 2011-10-26  Juanma Barranquero  <lekktu@gmail.com>
7544         * w32fns.c (w32_default_color_map): New function,
7545         extracted from Fw32_default_color_map.
7546         (Fw32_default_color_map, Fx_open_connection): Use it.  (Bug#9785)
7548 2011-10-25  Paul Eggert  <eggert@cs.ucla.edu>
7550         * dispextern.h (Fcontrolling_tty_p): New decl (Bug#6649 part 2).
7552 2011-10-25  Stefan Monnier  <monnier@iro.umontreal.ca>
7554         * keyboard.c (test_undefined): New function (bug#9751).
7555         (read_key_sequence): Use it to detect when a key is bound to `undefined'.
7557 2011-10-25  Enami Tsugutomo  <tsugutomo.enami@jp.sony.com>
7559         * sysdep.c (init_sys_modes): Fix the check for the controlling
7560         terminal (Bug#6649).
7562 2011-10-20  Eli Zaretskii  <eliz@gnu.org>
7564         * dispextern.h (struct bidi_it): New member next_en_type.
7566         * bidi.c (bidi_line_init): Initialize the next_en_type member.
7567         (bidi_resolve_explicit_1): When next_en_pos is valid for the
7568         current character, check also for next_en_type being WEAK_EN.
7569         (bidi_resolve_weak): Don't enter the expensive loop if the current
7570         position is before next_en_pos.  Record the bidi type of the first
7571         non-ET, non-BN character we find, in addition to its position.
7572         (bidi_level_of_next_char): Invalidate next_en_type when
7573         next_en_pos is over-stepped.
7575 2011-10-20  Paul Eggert  <eggert@cs.ucla.edu>
7577         Time zone name fixes for non-ASCII locales (Bug#641, Bug#9794)
7578         * editfns.c: Rewrite current-time-zone so that it invokes
7579         the equivalent of (format-time-string "%Z") to get the time zone name.
7580         This fixes a bug when the time zone name contains characters that
7581         need converting from the system time locale to Emacs internal format.
7582         This fixes a shortcoming that I introduced in my 1999-10-19 patch:
7583         that patch fixed format-time-string to do the conversion, but
7584         I forgot to fix current-time-zone.
7585         (format_time_string): New function, containing most of
7586         what Fformat_time_string used to contain.
7587         (Fformat_time_string): Rewrite in terms of format_time_string.
7588         This doesn't change this function's behavior.
7589         (current-time-zone): Rewrite to use format_time_string.
7590         This fixes the bug reported by Michael Schierl in
7591         <http://lists.gnu.org/archive/html/emacs-devel/2007-06/msg00334.html>.
7592         Jason Rumney's 2007-06-07 change worked around this bug, but
7593         didn't fix it.
7594         * systime.h (tzname, timezone): Remove no-longer-used declarations.
7596 2011-10-19  Eli Zaretskii  <eliz@gnu.org>
7598         * xdisp.c (start_display): If the character at POS is displayed
7599         via a display vector, reset IT->current.dpvec_index to zero.
7600         (try_window_reusing_current_matrix): If a line ends in a display
7601         vector or the next line starts in a display vector, continue
7602         redrawing the window even though the character position of
7603         start_row was reached.
7604         (Bug#9771, part 2)
7606 2011-10-18  Chong Yidong  <cyd@gnu.org>
7608         * xdisp.c (get_next_display_element): Handle U+2010 and U+2011
7609         with nobreak-char-display too.
7611 2011-10-18  Eli Zaretskii  <eliz@gnu.org>
7613         Fix part 3 of bug#9771.
7614         * bidi.c (bidi_line_init): Initialize next_en_pos to zero, not -1.
7615         (bidi_resolve_neutral): Don't enter the expensive loop looking for
7616         non-neutral characters if the current character is a paragraph
7617         separator (a.k.a. Newline).  This avoids running the same
7618         expensive loop twice, once when we consume the preceding newline
7619         and the other time when the line actually needs to be displayed.
7620         Avoid the loop when we see neutrals on the base embedding level
7621         following a character whose directionality is the same as the
7622         paragraph's.  This avoids running the expensive loop when a line
7623         ends in a long sequence of neutrals, like control characters.
7624         Add assertion against STRONG_AL type.  Slightly rearrange code
7625         that determines the type of a neutral given the first non-neutral
7626         that follows it.
7627         (bidi_level_of_next_char): Set next_en_pos to zero when
7628         invalidating its info.
7630 2011-10-17  Eli Zaretskii  <eliz@gnu.org>
7632         * xdisp.c (push_display_prop): Determine whether to record string
7633         or buffer position by IT->string, not by IT->method.  Allow
7634         GET_FROM_DISPLAY_VECTOR as IT->method on entry.  (Bug#9771, part 4)
7635         (move_it_vertically_backward): Don't look for character position
7636         immediately after the newline when in a continuation line.
7637         (Bug#9771, part 1)
7639 2011-10-15  Martin Rudalics  <rudalics@gmx.at>
7641         * window.c (coordinates_in_window): Rewrite and delabelize
7642         vertical border check.  (Bug#5357) (Bug#9618)
7644 2011-10-14  Stefan Monnier  <monnier@iro.umontreal.ca>
7646         * xterm.c (frame_highlight, frame_unhighlight): Ignore unexplained
7647         errors in XSetWindowBorder (bug#9310).
7649 2011-10-13  Dmitry Antipov  <dmantipov@yandex.ru>
7651         * editfns.c (Fset_time_zone_rule): Replace free with xfree to
7652         avoid crash when xmalloc overrun checking is enabled.
7654 2011-10-13  Eli Zaretskii  <eliz@gnu.org>
7656         * xdisp.c (Fcurrent_bidi_paragraph_direction): Initialize
7657         itb.paragraph_dir to NEUTRAL_DIR.  Fixes an occasional incorrect
7658         cursor motion with <left> and <right> arrow keys.
7660         * bidi.c (bidi_init_it): Don't initialize paragraph_dir here, as
7661         some callers set that themselves.
7663 2011-10-12  Eli Zaretskii  <eliz@gnu.org>
7665         * xdisp.c (find_row_edges): Handle the case where ROW comes from a
7666         display string and the previous row comes from the same string and
7667         is empty.  (Bug#9739)  (Bug#9738)
7669 2011-10-12  Stefan Monnier  <monnier@iro.umontreal.ca>
7671         * doc.c (get_doc_string): Encode file name (bug#9735).
7673 2011-10-12  Eli Zaretskii  <eliz@gnu.org>
7675         * bidi.c (bidi_level_of_next_char):
7676         * xdisp.c (get_visually_first_element): Remove old incorrect
7677         comments regarding the Unicode Line Separator character.
7679         * bidi.c (bidi_init_it): Initialize paragraph_dir to NEUTRAL_DIR.
7681 2011-10-12  Dmitry Antipov  <dmantipov@yandex.ru>
7683         * alloc.c (Fgc_status): Do not access beyond zombies array
7684         boundary if nzombies > MAX_ZOMBIES.
7685         * alloc.c (dump_zombies): Add missing format specifier.
7687 2011-10-12  Paul Eggert  <eggert@cs.ucla.edu>
7689         * xdisp.c (set_cursor_from_row): Simplify conditionals,
7690         to pacify GCC 4.6.1 x86-64 with -O2 -Wstrict-overflow.
7692         * lread.c (read_escape): Allow hex escapes as large as ?\xfffffff.
7693         Some packages use them to denote characters with modifiers.
7695 2011-10-11  Andreas Schwab  <schwab@linux-m68k.org>
7697         * lisp.h (GCPRO1_VAR, GCPRO2_VAR, GCPRO3_VAR, GCPRO4_VAR)
7698         (GCPRO5_VAR, GCPRO6_VAR, UNGCPRO_VAR): Add whitespace to avoid
7699         matching a pp-number.  Rename parameter var to var1.
7701 2011-10-11  Stefan Monnier  <monnier@iro.umontreal.ca>
7703         * minibuf.c (Finternal_complete_buffer): Fix last change (bug#9709).
7705 2011-10-08  Glenn Morris  <rgm@gnu.org>
7707         * callint.c (Fcall_interactively): Give a more explicit error for the
7708         'c' case with a non-character input.  (Bug#8479)
7710 2011-10-08  Eli Zaretskii  <eliz@gnu.org>
7712         * xdisp.c (hscroll_window_tree): Support hscroll in right-to-left
7713         lines.
7714         (set_cursor_from_row): Fix cursor positioning in mixed L2R+R2L
7715         lines that are hscrolled on the left.
7717         * dispnew.c (buffer_posn_from_coords): Account for a possible
7718         presence of header-line.  (Bug#4426)
7720 2011-10-07  Stefan Monnier  <monnier@iro.umontreal.ca>
7722         * buffer.c (syms_of_buffer) <enable-multibyte-characters>:
7723         Don't advertise functionality which we discourage or doesn't work.
7725 2011-10-07  Paul Eggert  <eggert@cs.ucla.edu>
7727         * alloc.c (GC_LISP_OBJECT_ALIGNMENT): Use offsetof, not __alignof__
7728         or sizeof.  __alignof__ gives the wrong answer on Fedora x86-64
7729         with GCC 4.6.1 when configured with CC='gcc -m32' --with-wide-int;
7730         this makes Emacs dump core during garbage collection on rare
7731         occasions.  sizeof is obviously inferior to offsetof here, so
7732         stick with offsetof.
7733         (GC_POINTER_ALIGNMENT): New macro.
7734         (mark_memory): Omit 3rd (offset) arg; caller changed.
7735         Don't assume EMACS_INT alignment is the same as pointer alignment.
7737 2011-10-03  Stefan Monnier  <monnier@iro.umontreal.ca>
7739         * keyboard.c (read_key_sequence_remapped): New var.
7740         (read_key_sequence): Compute remapping in the right buffer.
7741         (command_loop_1): Use read_key_sequence's remapping directly.
7743 2011-10-02  Stefan Monnier  <monnier@iro.umontreal.ca>
7745         * dired.c (file_name_completion): Don't expand file name.
7746         (Ffile_name_completion, Ffile_name_all_completions): Expand file name
7747         before checking file name handler.
7749         * minibuf.c (Finternal_complete_buffer): Only show internal buffers if
7750         they've been requested explicitly (bug#9591).
7752 2011-10-01  Andreas Schwab  <schwab@linux-m68k.org>
7754         * keymap.c (Fsingle_key_description): Use make_specified_string
7755         instead of build_string to build string from push_key_description.
7756         (Bug#5193)
7758 2011-09-30  Paul Eggert  <eggert@cs.ucla.edu>
7760         * buffer.h (struct buffer): Use time_t, not int, for a time stamp.
7761         This fixes a Y2038 bug on 64-bit hosts.
7762         * buffer.c (reset_buffer):
7763         * fileio.c (Fdo_auto_save, Fset_buffer_auto_saved)
7764         (Fclear_buffer_auto_save_failure):
7765         Use 0, not -1, to represent an unset failure time, since time_t
7766         might not be signed.
7768         Remove dependency on glibc malloc internals.
7769         * alloc.c (XMALLOC_OVERRUN_CHECK_OVERHEAD, XMALLOC_OVERRUN_CHECK_SIZE):
7770         Move back here from lisp.h, but with their new implementations.
7771         (XMALLOC_BASE_ALIGNMENT, COMMON_MULTIPLE, XMALLOC_HEADER_ALIGNMENT)
7772         (XMALLOC_OVERRUN_SIZE_SIZE): Move these new lisp.h macros here.
7773         * charset.c (charset_table_init): New static var.
7774         (syms_of_charset): Use it instead of xmalloc.  This removes a
7775         dependency on glibc malloc internals.  See Eli Zaretskii's comment in
7776         <http://lists.gnu.org/archive/html/emacs-devel/2011-09/msg00815.html>.
7777         * lisp.h (XMALLOC_OVERRUN_CHECK_OVERHEAD, XMALLOC_OVERRUN_CHECK_SIZE):
7778         Move back to alloc.c.
7779         (XMALLOC_BASE_ALIGNMENT, COMMON_MULTIPLE, XMALLOC_HEADER_ALIGNMENT)
7780         (XMALLOC_OVERRUN_SIZE_SIZE): Move to alloc.c.
7782 2011-09-30  Jan Djärv  <jan.h.d@swipnet.se>
7784         * nsterm.m (windowDidResize): Call x_set_window_size only when
7785         ns_in_resize is true.  Otherwise set pixelwidth/height and
7786         call change_frame_size (Bug#9628).
7788 2011-09-30  Paul Eggert  <eggert@cs.ucla.edu>
7790         Port --enable-checking=all to Fedora 14 x86-64.
7791         * charset.c (syms_of_charset): Also account for glibc malloc's
7792         internal overhead when calculating the initial malloc maximum.
7794         Port --enable-checking=all to Fedora 14 x86.
7795         * alloc.c (XMALLOC_OVERRUN_CHECK_OVERHEAD, XMALLOC_OVERRUN_CHECK_SIZE):
7796         Move to lisp.h.
7797         (xmalloc_put_size, xmalloc_get_size, overrun_check_malloc)
7798         (overrun_check_realloc, overrun_check_free):
7799         Use XMALLOC_OVERRUN_SIZE_SIZE, not sizeof (size_t).
7800         That way, xmalloc returns a properly-aligned pointer even if
7801         XMALLOC_OVERRUN_CHECK is defined.  The old debugging code happened
7802         to align OK on typical 64-bit hosts, but not on Fedora 14 x86.
7803         * charset.c (syms_of_charset): Take XMALLOC_OVERRUN_CHECK_OVERHEAD
7804         into account when calculating the initial malloc maximum.
7805         * lisp.h (XMALLOC_OVERRUN_CHECK_OVERHEAD, XMALLOC_OVERRUN_CHECK_SIZE):
7806         Move here from alloc.c, so that charset.c can use it too.
7807         Properly align; the old code wasn't right for common 32-bit hosts
7808         when configured with --enable-checking=all.
7809         (XMALLOC_BASE_ALIGNMENT, COMMON_MULTIPLE, XMALLOC_HEADER_ALIGNMENT)
7810         (XMALLOC_OVERRUN_SIZE_SIZE): New macros.
7812 2011-09-29  Eli Zaretskii  <eliz@gnu.org>
7814         * sysdep.c (snprintf) [!EOVERFLOW]: If EOVERFLOW is not defined,
7815         use EDOM.
7817 2011-09-28  Eli Zaretskii  <eliz@gnu.org>
7819         * xdisp.c (compute_display_string_end): If there's no display
7820         string at CHARPOS, return -1.
7822         * bidi.c (bidi_fetch_char): When compute_display_string_end
7823         returns a negative value, treat the character as a normal
7824         character not covered by a display string.  (Bug#9624)
7826 2011-09-28  Juanma Barranquero  <lekktu@gmail.com>
7828         * lread.c (Fread_from_string): Fix typo in docstring.
7830 2011-09-27  Eli Zaretskii  <eliz@gnu.org>
7832         * xdisp.c (handle_invisible_prop): If invisible text ends on a
7833         newline, reseat the iterator instead of bidi-iterating there one
7834         character at a time.  (Bug#9610)
7835         (BUFFER_POS_REACHED_P, move_it_in_display_line_to): Bail when past
7836         TO_CHARPOS if the bidi iterator is at base embedding level.
7838 2011-09-27  Andreas Schwab  <schwab@linux-m68k.org>
7840         * lread.c (readevalloop): Use correct code for NBSP.
7841         (read1): Likewise.  (Bug#9608)
7843 2011-09-25  Michael Albinus  <michael.albinus@gmx.de>
7845         * dbusbind.c (Fdbus_register_signal): When service is not
7846         registered, use nil in Vdbus_registered_objects_table.  (Bug#9581)
7848 2011-09-25  Glenn Morris  <rgm@gnu.org>
7850         * buffer.c (truncate-lines): Doc fix.
7852 2011-09-24  Chong Yidong  <cyd@stupidchicken.com>
7854         * window.c (Fwindow_prev_buffers, Fset_window_prev_buffers)
7855         (Fset_window_next_buffers): Doc fix.
7857 2011-09-24  Glenn Morris  <rgm@gnu.org>
7859         * minibuf.c (read_minibuf): Disable line truncation.  (Bug#5715)
7861 2011-09-24  Paul Eggert  <eggert@cs.ucla.edu>
7863         Fix minor problems found by static checking.
7864         * xdisp.c (string_from_display_spec): Don't assume vecsize fits in int.
7865         * indent.c (Fvertical_motion): Fix == vs = typo.
7867 2011-09-24  Eli Zaretskii  <eliz@gnu.org>
7869         * dispnew.c (syms_of_display) <redisplay-dont-pause>:
7870         Default value is now t.  Doc fix.
7872         * indent.c (Fvertical_motion): Compute and apply the overshoot
7873         logic when moving up, not only when moving down.  Fix the
7874         confusing name and values of the it_overshoot_expected variable;
7875         logic changes accordingly.  (Bug#9254) (Bug#9549)
7877         * xdisp.c (pos_visible_p): Produce correct pixel coordinates when
7878         CHARPOS is covered by a display string which includes newlines.
7879         (move_it_vertically_backward): Avoid inflooping when START_CHARPOS
7880         is covered by a display string with embedded newlines.
7882 2011-09-24  Michael Albinus  <michael.albinus@gmx.de>
7884         * dbusbind.c (Fdbus_register_signal): Add match rule to
7885         Vdbus_registered_objects_table.  (Bug#9581)
7886         (Fdbus_register_method, Vdbus_registered_objects_table):
7887         Fix docstring.
7889 2011-09-24  Jim Meyering  <meyering@redhat.com>
7891         do not ignore write error for any output size
7892         The previous change was incomplete.
7893         While it makes emacs --batch detect the vast majority of stdout
7894         write failures, errors were still ignored whenever the output size is
7895         k * (BUFSIZ+1) - 4.  E.g., on a system with BUFSIZ of 4096,
7896           $ emacs --batch --eval '(print (format "%4093d" 0))' > /dev/full \
7897               && echo FAIL: ignored write error
7898           FAIL: ignored write error
7899           $ emacs --batch --eval '(print (format "%20481d" 0))' > /dev/full \
7900               && echo FAIL: ignored write error
7901           FAIL: ignored write error
7902         * emacs.c (Fkill_emacs): Also test ferror.  (Bug#9574)
7904 2011-09-23  Andreas Schwab  <schwab@linux-m68k.org>
7906         * emacs.c (Fkill_emacs): In noninteractive mode exit
7907         non-successfully if a write error occurred on stdout.  (Bug#9574)
7909 2011-09-21  Eli Zaretskii  <eliz@gnu.org>
7911         * xdisp.c (pop_it): Allow it->object that is a cons cell to pass
7912         the xassert test.
7914         * dispextern.h (struct it): Update the comment documenting what
7915         can it->OBJECT be.
7917 2011-09-20  Eli Zaretskii  <eliz@gnu.org>
7919         * xdisp.c (set_cursor_from_row): If the row ends in a newline from
7920         a display string, extend search for cursor position to end of row.
7921         (find_row_edges): If the row ends in a newline from a display
7922         string, increment its MATRIX_ROW_END_CHARPOS by one.  (Bug#9549)
7923         Handle the case of a display string with multiple newlines.
7924         (Fcurrent_bidi_paragraph_direction): Fix search for previous
7925         non-empty line.  Fixes confusing cursor motion with arrow keys at
7926         the beginning of a line that starts with whitespace.
7928 2011-09-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7930         * lread.c (Fread_from_string): Document what FINAL-STRING-INDEX is
7931         (bug#9493).
7933 2011-09-18  Chong Yidong  <cyd@stupidchicken.com>
7935         * xfns.c (Fx_create_frame): Handle the bitmapIcon resource as
7936         boolean (Bug#9154).
7938 2011-09-18  Eli Zaretskii  <eliz@gnu.org>
7940         * xdisp.c (display_line): Record maximum and minimum buffer
7941         positions even if no glyphs were produced (e.g., by a zero-width
7942         stretch).  Fixes bug#9530 on a TTY.  Under word-wrap, don't record
7943         buffer positions that will be removed from the glyph row because
7944         they don't fit.
7945         (produce_stretch_glyph): Fix a bug in :align-to on a TTY when the
7946         column is beyond frame width: don't subtract 1 "pixel" when
7947         computing width of the stretch.
7948         (reseat_at_next_visible_line_start): Undo the change made on
7949         2011-09-17 that saved paragraph information and restored it after
7950         the call to `reseat'.  (Bug#9545)
7952 2011-09-18  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
7954         * xdisp.c (expose_window): Save original value of phys_cursor_on_p
7955         and turn window cursor on if cleared (Bug#9415).
7957 2011-09-18  Andreas Schwab  <schwab@linux-m68k.org>
7959         * search.c (boyer_moore): Take unibyte characters from pattern
7960         literally.  (Bug#9458)
7962 2011-09-18  Eli Zaretskii  <eliz@gnu.org>
7964         * xdisp.c (reseat_at_next_visible_line_start): Fix last change.
7966 2011-09-18  Paul Eggert  <eggert@cs.ucla.edu>
7968         Fix minor problem found by static checking.
7969         * xdisp.c (reseat_at_next_visible_line_start): Mark locals as
7970         initialized, to pacify gcc -Wuninitialized.
7972         * fileio.c: Report proper errno when syscall falls.
7973         (Finsert_file_contents): Save and restore errno,
7974         so that report_file_error outputs the correct diagnostic.
7975         (Fwrite_region) [CLASH_DETECTION]: Likewise.
7977 2011-09-18  Eli Zaretskii  <eliz@gnu.org>
7979         * .gdbinit (pgx): Fix references to fields of `struct glyph'.
7981 2011-09-17  Eli Zaretskii  <eliz@gnu.org>
7983         * xdisp.c (produce_stretch_glyph): Another fix for changes made on
7984         2011-08-30T17:32:44Z!eliz@gnu.org.  (Bug#9530)
7986 2011-09-17  Eli Zaretskii  <eliz@gnu.org>
7988         * xdisp.c (reseat_at_next_visible_line_start): Keep information
7989         about the current paragraph and restore it after the call to reseat.
7991         * bidi.c (MAX_PARAGRAPH_SEARCH): New macro.
7992         (bidi_find_paragraph_start): Search back for paragraph beginning
7993         at most MAX_PARAGRAPH_SEARCH lines; if not found, return BEGV_BYTE.
7994         (bidi_move_to_visually_next): Only trigger paragraph-related
7995         computations when the last character is a newline or at EOB, not
7996         just any NEUTRAL_B.  (Bug#9470)
7998         * xdisp.c (set_cursor_from_row): Don't invoke special treatment of
7999         truncated lines if point is covered by a display string.  (Bug#9524)
8001 2011-09-16  Paul Eggert  <eggert@cs.ucla.edu>
8003         * xselect.c: Relax test for outgoing X longs (Bug#9498).
8004         (cons_to_x_long): New function.
8005         (lisp_data_to_selection_data): Use it.  Correct the test for
8006         short-versus-long data; it was negated.  Break out of vector
8007         loop, for efficiency, when a long datum is discovered.
8009 2011-09-16  Stefan Monnier  <monnier@iro.umontreal.ca>
8011         * eval.c (Fquote): Document its non-consing behavior (bug#9482).
8013 2011-09-16  Eli Zaretskii  <eliz@gnu.org>
8015         * image.c (tiff_handler): Work around a bug in MinGW GCC 3.x (see
8016         GCC PR/17406) by declaring this function with external scope.
8018 2011-09-15  Paul Eggert  <eggert@cs.ucla.edu>
8020         * editfns.c (Fformat): Fix bug in text-property fix (Bug#9514).
8021         Don't mishandle (length (format "%%")) and (format "%4000s%%" "").
8023 2011-09-15  Andreas Schwab  <schwab@linux-m68k.org>
8025         * editfns.c (Fformat): Correctly handle text properties on "%%".
8027 2011-09-15  Eli Zaretskii  <eliz@gnu.org>
8029         * xterm.c (x_draw_composite_glyph_string_foreground):
8030         * w32term.c (x_draw_composite_glyph_string_foreground):
8031         * term.c (encode_terminal_code):
8032         * composite.c (composition_update_it, get_composition_id):
8033         * xdisp.c (get_next_display_element)
8034         (fill_composite_glyph_string): Add comments about special meaning
8035         of TAB characters in a composition.
8037 2011-09-15  Paul Eggert  <eggert@cs.ucla.edu>
8039         * editfns.c (Fformat): Fix off-by-1 bug for "%%b" (Bug#9514).
8040         This occurs when processing a multibyte format.
8041         Problem reported by Wolfgang Jenker.
8043 2011-09-15  Johan Bockgård  <bojohan@gnu.org>
8045         * xdisp.c (try_cursor_movement): Only check for exact match if
8046         cursor hpos found by set_cursor_from_row is valid.  (Bug#9495)
8048 2011-09-14  Paul Eggert  <eggert@cs.ucla.edu>
8050         Remove unused external symbols.
8051         * dispextern.h (calc_pixel_width_or_height): Remove decl.
8052         * xdisp.c (calc_pixel_width_or_height): Now static.
8053         * doprnt.c (exprintf) [! (HAVE_X_WINDOWS && USE_X_TOOLKIT)]: Remove.
8054         * indent.c (check_display_width):
8055         * w32term.c: Fix comment to match code.
8056         * xterm.c, xterm.h (x_catching_errors): Remove.
8058 2011-09-14  Paul Eggert  <eggert@cs.ucla.edu>
8060         * xselect.c: Use signed conversions more consistently (Bug#9498).
8061         (selection_data_to_lisp_data): Assume incoming selection data are
8062         signed integers, not unsigned.  This is to be consistent with
8063         outgoing selection data, which was modified to use signed integers
8064         in as part of the fix to Bug#9196 in response to Jan D.'s comment
8065         in <http://debbugs.gnu.org/cgi/bugreport.cgi?bug=9196#32> that X11
8066         expects long, not unsigned long.
8068 2011-09-14  Eli Zaretskii  <eliz@gnu.org>
8070         * xdisp.c (try_window_reusing_current_matrix): Fix incorrect
8071         computation of loop end.  Reported by Johan Bockgård
8072         <bojohan@gnu.org>.
8074 2011-09-13  Chong Yidong  <cyd@stupidchicken.com>
8076         * frame.c (Fother_visible_frames_p): Function deleted.
8078 2011-09-12  Eli Zaretskii  <eliz@gnu.org>
8080         * indent.c (compute_motion): Process display vector front to back
8081         rather than the other way around.  (Bug#2496)
8083 2011-09-12  Stefan Monnier  <monnier@iro.umontreal.ca>
8085         * fileio.c (Finsert_file_contents): Don't assume beg_offset is 0.
8087 2011-09-11  Chong Yidong  <cyd@stupidchicken.com>
8089         * minibuf.c (Fread_from_minibuffer): Doc fix.
8091 2011-09-11  Eli Zaretskii  <eliz@gnu.org>
8093         * xdisp.c (produce_stretch_glyph): Fix a typo made in changes from
8094         2011-08-30T17:32:44Z!eliz@gnu.org.  (Bug#9475)
8096 2011-09-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8098         * fileio.c (Fvisited_file_modtime): Document `(-1 65535)' as a
8099         value for non-existent files.
8101 2011-09-11  Eli Zaretskii  <eliz@gnu.org>
8103         * fileio.c (Finsert_file_contents): If the file cannot be opened,
8104         set its "size" to -1.  This will set the modtime_size field of
8105         the corresponding buffer to -1, which is what
8106         verify-visited-file-modtime expects for files that do not exist.
8107         (Bug#9139)
8109 2011-09-11  Paul Eggert  <eggert@cs.ucla.edu>
8111         * keymap.h (KEY_DESCRIPTION_SIZE, push_key_description): Move decls
8112         here ...
8113         * lisp.h: ... from here.  push_key_description is no longer
8114         defined in keyboard.c, so its declaration should not be in
8115         lisp.h's "Defined in keyboard.c" section, and KEY_DESCRIPTION_SIZE
8116         logically belongs with push_key_description.
8118 2011-09-10  Paul Eggert  <eggert@cs.ucla.edu>
8120         * buffer.h: Include <sys/types.h> instead of <time.h>.
8121         Otherwise, off_t wasn't defined on FreeBSD 9.0-BETA2 i386.
8122         Problem reported by Herbert J. Skuhra.
8124 2011-09-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8126         * xml.c (parse_region): Make the parsing work for
8127         non-comment-starting XML files again (bug#9144).
8129 2011-09-10  Andreas Schwab  <schwab@linux-m68k.org>
8131         * image.c (gif_load): Fix calculation of bottom and right corner.
8132         (Bug#9468)
8134 2011-09-10  Eli Zaretskii  <eliz@gnu.org>
8136         * xdisp.c (MAX_DISP_SCAN): Decrease to 250.  Prevents sluggish
8137         redisplay in small windows.
8139 2011-09-09  Eli Zaretskii  <eliz@gnu.org>
8141         * frame.c (x_report_frame_params): Cast to avoid compiler warnings.
8143 2011-09-08  Martin Rudalics  <rudalics@gmx.at>
8145         * window.c (Fset_window_prev_buffers, Fset_window_next_buffers):
8146         Operate on live windows only.
8148 2011-09-08  Juanma Barranquero  <lekktu@gmail.com>
8150         * emacs.c (my_heap_start): #ifdef to avoid warnings when unused.
8152 2011-09-07  Eli Zaretskii  <eliz@gnu.org>
8154         * xdisp.c (move_it_in_display_line_to): Call RESTORE_IT on ppos_it
8155         only under bidi iteration.
8157 2011-09-07  Jan Djärv  <jan.h.d@swipnet.se>
8159         * gtkutil.c (xg_make_tool_item): Insert comment about eventbox.
8161 2011-09-06  Paul Eggert  <eggert@cs.ucla.edu>
8163         isnan: Fix porting problem to Solaris 10 with bundled gcc.
8164         Without this fix, the command to link temacs failed due to an
8165         undefined symbol __builtin_isnan.  This is because
8166         /usr/include/iso/math_c99.h #defines isnan(x) to
8167         __builtin_isnan(x), but the bundled gcc, which identifies itself
8168         as gcc 3.4.3 (csl-sol210-3_4-branch+sol_rpath), does not have
8169         a __builtin_isnan.
8170         * floatfns.c (isnan): #undef, and then #define to a clone of
8171         what's in data.c.
8172         (Fisnan): Always define, since it's always available now.
8173         (syms_of_floatfns): Always define isnan at the Lisp level.
8175 2011-09-06  Paul Eggert  <eggert@cs.ucla.edu>
8177         * Makefile.in (gl-stamp): move-if-change now in build-aux (Bug#9169).
8179 2011-09-06  Paul Eggert  <eggert@cs.ucla.edu>
8181         * fileio.c: Fix bugs with large file offsets (Bug#9428).
8182         The previous code assumed that file offsets (off_t values) fit in
8183         EMACS_INT variables, which is not true on typical 32-bit hosts.
8184         The code messed up by falsely reporting buffer overflow in cases
8185         such as (insert-file-contents "big" nil 1 2) into an empty buffer
8186         when "big" contains more than 2**29 bytes, even though this
8187         inserts just one byte and does not overflow the buffer.
8188         (Finsert_file_contents): Store file offsets as off_t
8189         values, not as EMACS_INT values.  Check for overflow when
8190         converting between EMACS_INT and off_t.  When checking for
8191         buffer overflow or for overlap, take the offsets into account.
8192         Don't use EMACS_INT for small values where int suffices.
8193         When checking for overlap, fix a typo: ZV was used where
8194         ZV_BYTE was intended.
8195         (Fwrite_region): Don't assume off_t fits into 'long'.
8196         * buffer.h (struct buffer.modtime_size): Now off_t, not EMACS_INT.
8198 2011-09-05  Michael Albinus  <michael.albinus@gmx.de>
8200         * dbusbind.c (xd_signature_cat): Rename from signature_cat.
8202 2011-09-04  Paul Eggert  <eggert@cs.ucla.edu>
8204         sprintf-related integer and memory overflow issues (Bug#9412).
8206         * doprnt.c (doprnt): Support printing ptrdiff_t and intmax_t values.
8207         (esprintf, exprintf, evxprintf): New functions.
8208         * keyboard.c (command_loop_level): Now EMACS_INT, not int.
8209         (cmd_error): Kbd macro iterations count is now EMACS_INT, not int.
8210         (modify_event_symbol): Do not assume that the length of
8211         name_alist_or_stem is safe to alloca and fits in int.
8212         (Fexecute_extended_command): Likewise for function name and binding.
8213         (Frecursion_depth): Wrap around reliably on integer overflow.
8214         * keymap.c (push_key_description): First arg is now EMACS_INT, not int,
8215         since some callers pass EMACS_INT values.
8216         (Fsingle_key_description): Don't crash if symbol name contains more
8217         than MAX_ALLOCA bytes.
8218         * minibuf.c (minibuf_level): Now EMACS_INT, not int.
8219         (get_minibuffer): Arg is now EMACS_INT, not int.
8220         * lisp.h (get_minibuffer, push_key_description): Reflect API changes.
8221         (esprintf, exprintf, evxprintf): New decls.
8222         * window.h (command_loop_level, minibuf_level): Reflect API changes.
8224         * dbusbind.c (signature_cat): New function.
8225         (xd_signature, Fdbus_register_signal):
8226         Do not overrun buffer; instead, report string overflow.
8228         * dispnew.c (add_window_display_history): Don't overrun buffer.
8229         Truncate instead; this is OK since it's just a log.
8231         * editfns.c (Fcurrent_time_zone): Don't overrun buffer
8232         even if the time zone offset is outlandishly large.
8233         Don't mishandle offset == INT_MIN.
8235         * emacs.c (main) [NS_IMPL_COCOA]: Don't overrun buffer
8236         when creating daemon; the previous buffer-overflow check was incorrect.
8238         * eval.c (verror): Simplify by rewriting in terms of evxprintf,
8239         which has the guts of the old verror function.
8241         * filelock.c (lock_file_1, lock_file): Don't blindly alloca long name;
8242         use SAFE_ALLOCA instead.  Use esprintf to avoid int-overflow issues.
8244         * font.c: Include <float.h>, for DBL_MAX_10_EXP.
8245         (font_unparse_xlfd): Don't blindly alloca long strings.
8246         Don't assume XINT result fits in int, or that XFLOAT_DATA * 10
8247         fits in int, when using sprintf.  Use single snprintf to count
8248         length of string rather than counting it via multiple sprintfs;
8249         that's simpler and more reliable.
8250         (font_unparse_fcname): Use it to avoid sprintf buffer overrun.
8251         (generate_otf_features) [0 && HAVE_LIBOTF]: Use esprintf, not
8252         sprintf, in case result does not fit in int.
8254         * fontset.c (num_auto_fontsets): Now printmax_t, not int.
8255         (fontset_from_font): Print it.
8257         * frame.c (tty_frame_count): Now printmax_t, not int.
8258         (make_terminal_frame, set_term_frame_name): Print it.
8259         (x_report_frame_params): In X, window IDs are unsigned long,
8260         not signed long, so print them as unsigned.
8261         (validate_x_resource_name): Check for implausibly long names,
8262         and don't assume name length fits in 'int'.
8263         (x_get_resource_string): Don't blindly alloca invocation name;
8264         use SAFE_ALLOCA.  Use esprintf, not sprintf, in case result does
8265         not fit in int.
8267         * gtkutil.c: Include <float.h>, for DBL_MAX_10_EXP.
8268         (xg_check_special_colors, xg_set_geometry):
8269         Make sprintf buffers a bit bigger, to avoid potential buffer overrun.
8271         * lread.c (dir_warning): Don't blindly alloca buffer; use SAFE_ALLOCA.
8272         Use esprintf, not sprintf, in case result does not fit in int.
8274         * macros.c (executing_kbd_macro_iterations): Now EMACS_INT, not int.
8275         (Fend_kbd_macro): Don't mishandle MOST_NEGATIVE_FIXNUM by treating
8276         it as a large positive number.
8277         (Fexecute_kbd_macro): Don't assume repeat count fits in int.
8278         * macros.h (executing_kbd_macro_iterations): Now EMACS_INT, not int.
8280         * nsterm.m ((NSSize)windowWillResize): Use esprintf, not sprintf,
8281         in case result does not fit in int.
8283         * print.c (float_to_string): Detect width overflow more reliably.
8284         (print_object): Make sprintf buffer a bit bigger, to avoid potential
8285         buffer overrun.  Don't assume list length fits in 'int'.  Treat
8286         print length of 0 as 0, not as infinity; to be consistent with other
8287         uses of print length in this function.  Don't overflow print length
8288         index.  Don't assume hash table size fits in 'long', or that
8289         vectorlike size fits in 'unsigned long'.
8291         * process.c (make_process): Use printmax_t, not int, to format
8292         process-name gensyms.
8294         * sysdep.c (snprintf) [! HAVE_SNPRINTF]: New function.
8296         * term.c (produce_glyphless_glyph): Make sprintf buffer a bit bigger
8297         to avoid potential buffer overrun.
8299         * xfaces.c (x_update_menu_appearance): Don't overrun buffer
8300         if X resource line is longer than 512 bytes.
8302         * xfns.c (x_window): Make sprintf buffer a bit bigger
8303         to avoid potential buffer overrun.
8305         * xterm.c (x_io_error_quitter): Don't overrun sprintf buffer.
8307         * xterm.h (x_check_errors): Add ATTRIBUTE_FORMAT_PRINTF.
8309 2011-09-04  Paul Eggert  <eggert@cs.ucla.edu>
8311         Integer overflow fixes for scrolling, etc.
8312         Without these, Emacs silently mishandles large integers sometimes.
8313         For example, "C-u 4294967297 M-x recenter" was treated as if
8314         it were "C-u 1 M-x recenter" on a typical 64-bit host.
8316         * xdisp.c (try_window_id): Check Emacs fixnum range before
8317         converting to 'int'.
8319         * window.c (window_scroll_line_based, Frecenter):
8320         Check that an Emacs fixnum is in range before assigning it to 'int'.
8321         (Frecenter, Fmove_to_window_line): Use EMACS_INT, not int, for
8322         values converted from Emacs fixnums.
8323         (Frecenter): Don't wrap around a line count if it is out of 'int'
8324         range; instead, treat it as an extreme value.
8325         (Fset_window_configuration, compare_window_configurations):
8326         Use ptrdiff_t, not int, for index that might exceed 2 GiB.
8328         * search.c (Freplace_match): Use ptrdiff_t, not int, for indexes
8329         that can exceed INT_MAX.  Check that EMACS_INT value is in range
8330         before assigning it to the (possibly-narrower) index.
8331         (match_limit): Don't assume that a fixnum can fit in 'int'.
8333         * print.c (print_object): Use ptrdiff_t, not int, for index that can
8334         exceed INT_MAX.
8336         * indent.c (position_indentation): Now takes ptrdiff_t, not int.
8337         (Fvertical_motion): Don't wrap around LINES values that don't fit
8338         in 'int'.  Instead, treat them as extreme values.  This is good
8339         enough for windows, which can't have more than INT_MAX lines anyway.
8341 2011-09-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8343         * Require libxml/parser.h to avoid compilation warning.
8345         * emacs.c (shut_down_emacs): Call xmlCleanupParser on shutdown.
8347         * xml.c (parse_region): Don't call xmlCleanupParser after parsing,
8348         since this reportedly can destroy thread storage.
8350 2011-08-30  Chong Yidong  <cyd@stupidchicken.com>
8352         * syntax.c (find_defun_start): Update all cache variables if
8353         exiting early (Bug#9401).
8355 2011-08-30  Eli Zaretskii  <eliz@gnu.org>
8357         * image.c (x_bitmap_pixmap): Cast to int to avoid compiler warnings.
8359         * xdisp.c (produce_stretch_glyph): No longer static, compiled also
8360         when HAVE_WINDOW_SYSTEM is not defined.  Support both GUI and TTY
8361         frames.  Call tty_append_glyph in the TTY case.  (Bug#9402)
8363         * term.c (tty_append_glyph): New function.
8364         (produce_stretch_glyph): Static function and its prototype deleted.
8366         * dispextern.h (produce_stretch_glyph, tty_append_glyph):
8367         Add prototypes.
8369 2011-08-29  Paul Eggert  <eggert@cs.ucla.edu>
8371         * image.c (parse_image_spec): Check for nonnegative, not for positive,
8372         when checking :margin (Bug#9390).
8373         (IMAGE_NON_NEGATIVE_INTEGER_VALUE_OR_PAIR):
8374         Rename from IMAGE_POSITIVE_INTEGER_VALUE_OR_PAIR,
8375         so that the name doesn't mislead.  All uses changed.
8377 2011-08-28  Johan Bockgård  <bojohan@gnu.org>
8379         * term.c (init_tty) [HAVE_GPM]: Move mouse settings after
8380         set_tty_hooks.
8382 2011-08-27  Eli Zaretskii  <eliz@gnu.org>
8384         * xdisp.c (move_it_to): Don't bail out early when reaching
8385         position beyond to_charpos, if we are scanning backwards.
8386         (move_it_vertically_backward): When DY == 0, make sure we get to
8387         the first character in the line after the newline.
8389 2011-08-27  Paul Eggert  <eggert@cs.ucla.edu>
8391         * ccl.c: Improve and simplify overflow checking (Bug#9196).
8392         (ccl_driver): Do not generate an out-of-range pointer.
8393         (Fccl_execute_on_string): Remove unnecessary check for
8394         integer overflow, noted by Stefan Monnier in
8395         <http://lists.gnu.org/archive/html/emacs-devel/2011-08/msg00979.html>.
8396         Remove a FIXME that didn't need fixing.
8397         Simplify the newly-introduced buffer reallocation code.
8399 2011-08-27  Juanma Barranquero  <lekktu@gmail.com>
8401         * makefile.w32-in ($(BLD)/alloc.$(O)): Depend on lib/verify.h.
8403 2011-08-26  Paul Eggert  <eggert@cs.ucla.edu>
8405         Integer and memory overflow issues (Bug#9196).
8407         * doc.c (get_doc_string): Rework so that
8408         get_doc_string_buffer_size is the actual buffer size, rather than
8409         being 1 less than the actual buffer size; this makes xpalloc more
8410         convenient.
8412         * image.c (x_allocate_bitmap_record, cache_image):
8413         * xselect.c (Fx_register_dnd_atom):
8414         Simplify previous changes by using xpalloc.
8416         * buffer.c (overlay_str_len): Now ptrdiff_t, not EMACS_INT,
8417         since either will do and ptrdiff_t is convenient with xpalloc.
8419         * charset.c (charset_table_size)
8420         (struct charset_sort_data.priority): Now ptrdiff_t.
8421         (charset_compare): Don't overflow if priorities differ greatly.
8422         (Fsort_charsets): Don't assume list length fits in int.
8423         Check for size-calculation overflow when allocating sort data.
8424         (syms_of_charset): Allocate an initial charset table that is
8425         just under 64 KiB, to avoid problems with glibc malloc and mmap.
8427         * cmds.c (internal_self_insert): Check for size-calculation overflow.
8429         * composite.h (struct composition.glyph_len): Now int, not unsigned.
8430         The actual value is always <= INT_MAX, and leaving it unsigned made
8431         overflow checking harder.
8433         * dispextern.h (struct glyph_matrix.rows_allocated)
8434         (struct face_cache.size): Now ptrdiff_t, for convenience in use
8435         with xpalloc.  The values are still always <= INT_MAX.
8437         * indent.c (compute_motion): Adjust to region_cache_forward sig change.
8439         * lisp.h (xnmalloc, xnrealloc, xpalloc): New decls.
8440         (SAFE_NALLOCA): New macro.
8442         * region-cache.c (struct boundary.pos, find_cache_boundary)
8443         (move_cache_gap, insert_cache_boundary, delete_cache_boundaries)
8444         (set_cache_region, invalidate_region_cache)
8445         (revalidate_region_cache, know_region_cache, region_cache_forward)
8446         (region_cache_backward, pp_cache):
8447         Use ptrdiff_t, not EMACS_INT, since either will do.  This is needed
8448         so that ptrdiff_t * can be passed to xpalloc.
8449         (struct region_cache): Similarly, for gap_start, gap_len, cache_len,
8450         beg_unchanged, end_unchanged, buffer_beg, buffer_end members.
8451         (pp_cache): Don't assume cache_len fits in int.
8452         * region-cache.h: Adjust extern decls to match.
8454         * search.c (scan_buffer, Freplace_match): Use ptrdiff_t, not
8455         EMACS_INT, since either will do, for xpalloc.
8457         * alloc.c: Include verify.h, and check that int fits in ptrdiff_t.
8458         (xnmalloc, xnrealloc, xpalloc): New functions.
8460         * bidi.c (bidi_shelve_header_size): New constant.
8461         (bidi_cache_ensure_space, bidi_shelve_cache): Use it.
8462         (bidi_cache_ensure_space): Avoid integer overflow when allocating.
8464         * bidi.c (bidi_cache_shrink):
8465         * buffer.c (overlays_at, overlays_in, record_overlay_string)
8466         (overlay_strings):
8467         Don't update size of array until after memory allocation succeeds,
8468         because xmalloc/xrealloc may not return.
8469         (struct sortstrlist.bytes): Now ptrdiff_t, as EMACS_INT doesn't help
8470         now that we have proper integer overflow checking.
8471         (record_overlay_string, overlay_strings): Catch overflows when
8472         calculating size of overlay_str_buf.
8474         * callproc.c (Fcall_process): Check for size overflow when
8475         calculating size of args2.
8476         (child_setup): Avoid overflow by using size_t rather than ptrdiff_t.
8477         Normally we prefer signed values, but sticking with ptrdiff_t would
8478         require adding more-complicated checks.
8480         * ccl.c (Fccl_execute_on_string): Check for memory overflow.
8481         Use ptrdiff_t rather than EMACS_INT where ptrdiff_t will do.
8482         Redo buffer-overflow calculations to avoid integer overflow.
8483         Add a FIXME comment where memory seems to be over-allocated.
8485         * character.c (Fstring): Check for size-calculation overflow.
8487         * coding.c (produce_chars): Redo buffer-overflow calculations to avoid
8488         unnecessary integer overflow.  Check for size overflow.
8489         (encode_coding_object): Don't update size until xmalloc succeeds.
8491         * composite.c (get_composition_id): Check for overflow in glyph
8492         length calculations.
8494         Integer and memory overflow fixes for display code.
8495         * dispextern.h (struct glyph_pool.nglyphs): Now ptrdiff_t, not int.
8496         * dispnew.c (adjust_glyph_matrix, realloc_glyph_pool)
8497         (scrolling_window): Check for overflow in size calculations.
8498         (line_draw_cost, realloc_glyph_pool, add_row_entry):
8499         Don't assume glyph table len fits in int.
8500         (struct row_entry.bucket, row_entry_pool_size, row_entry_idx)
8501         (row_table_size): Now ptrdiff_t, not int.
8502         (scrolling_window): Avoid overflow in size calculations.
8503         Don't update size until allocation succeeds.
8504         * fns.c (concat): Check for overflow in size calculations.
8505         (next_almost_prime): Verify NEXT_ALMOST_PRIME_LIMIT.
8506         * lisp.h (RANGED_INTEGERP, TYPE_RANGED_INTEGERP): New macros.
8507         (NEXT_ALMOST_PRIME_LIMIT): New constant.
8509         * doc.c (get_doc_string_buffer_size): Now ptrdiff_t, not int.
8510         (get_doc_string): Check for size calculation overflow.
8511         Don't update size until allocation succeeds.
8512         (get_doc_string, Fsubstitute_command_keys): Use ptrdiff_t, not
8513         EMACS_INT, where ptrdiff_t will do.
8514         (Fsubstitute_command_keys): Check for string overflow.
8516         * editfns.c (set_time_zone_rule): Don't assume environment length
8517         fits in int.
8518         (message_length): Now ptrdiff_t, not int.
8519         (Fmessage_box): Don't update size until allocation succeeds.
8520         Don't assume message length fits in int.
8521         (Fformat): Use ptrdiff_t, not EMACS_INT, where ptrdiff_t will do.
8523         * emacs.c (main): Do not reallocate argv, since there is a null at
8524         the end that can be overwritten, and this way there's no need to
8525         worry about size-calculation overflow.
8526         (sort_args): Check for size-calculation overflow.
8528         * eval.c (init_eval_once, grow_specpdl): Don't update size until
8529         alloc succeeds.
8530         (call_debugger, grow_specpdl): Redo calculations to avoid overflow.
8532         * frame.c (set_menu_bar_lines, x_set_frame_parameters)
8533         (x_set_scroll_bar_width, x_figure_window_size):
8534         Check for integer overflow.
8535         (x_set_alpha): Do not assume XINT fits in int.
8537         * frame.h (struct frame): Use int, not EMACS_INT, where int works.
8538         This is for the members text_lines, text_cols, total_lines, total_cols,
8539         where the system imposes an 'int' limit.
8541         * fringe.c (Fdefine_fringe_bitmap):
8542         Don't update size until alloc works.
8544         * ftfont.c (ftfont_get_open_type_spec, setup_otf_gstring)
8545         (ftfont_shape_by_flt): Check for integer overflow in size calculations.
8547         * gtkutil.c (get_utf8_string, xg_store_widget_in_map):
8548         Check for size-calculation overflow.
8549         (get_utf8_string): Use ptrdiff_t, not size_t, where either will
8550         do, as we prefer signed integers.
8551         (id_to_widget.max_size, id_to_widget.used)
8552         (xg_store_widget_in_map, xg_remove_widget_from_map)
8553         (xg_get_widget_from_map, xg_get_scroll_id_for_window)
8554         (xg_remove_scroll_bar, xg_update_scrollbar_pos):
8555         Use and return ptrdiff_t, not int.
8556         (xg_gtk_scroll_destroy): Don't assume ptrdiff_t fits in int.
8557         * gtkutil.h: Change prototypes to match the above.
8559         * image.c (RANGED_INTEGERP, TYPE_RANGED_INTEGERP): Remove; these
8560         are duplicate now that they've been promoted to lisp.h.
8561         (x_allocate_bitmap_record, x_alloc_image_color)
8562         (make_image_cache, cache_image, xpm_load):
8563         Don't update size until alloc is done.
8564         (xpm_load, lookup_rgb_color, lookup_pixel_color, x_to_xcolors)
8565         (x_detect_edges):
8566         Check for size calculation overflow.
8567         (ct_colors_allocated_max): New constant.
8568         (x_to_xcolors, x_detect_edges): Reorder multiplicands to avoid
8569         overflow.
8571         * keyboard.c (read_char, menu_bar_items, tool_bar_items)
8572         (read_char_x_menu_prompt, read_char_minibuf_menu_width)
8573         (read_char_minibuf_menu_prompt, follow_key, read_key_sequence):
8574         Use ptrdiff_t, not int, to count maps.
8575         (read_char_minibuf_menu_prompt): Check for overflow in size
8576         calculations.  Don't update size until allocation succeeds.
8577         Redo calculations to avoid overflow.
8578         * keyboard.h: Change prototypes to match the above.
8580         * keymap.c (cmm_size, current_minor_maps): Use ptrdiff_t, not int,
8581         to count maps.
8582         (current_minor_maps): Check for size calculation overflow.
8583         * keymap.h: Change prototypes to match the above.
8585         * lread.c (read1, init_obarray): Don't update size until alloc done.
8587         * macros.c (Fstart_kbd_macro): Don't update size until alloc done.
8588         (store_kbd_macro_char): Reorder multiplicands to avoid overflow.
8590         * nsterm.h (struct ns_color_table.size, struct ns_color_table.avail):
8591         Now ptrdiff_t, not int.
8592         * nsterm.m (ns_index_color): Use ptrdiff_t, not int, for table indexes.
8593         (ns_draw_fringe_bitmap): Rewrite to avoid overflow.
8595         * process.c (Fnetwork_interface_list): Check for overflow
8596         in size calculation.
8598         * region-cache.c (move_cache_gap): Check for size calculation overflow.
8600         * scroll.c (do_line_insertion_deletion_costs): Check for size calc
8601         overflow.  Don't bother calling xmalloc when xrealloc will do.
8603         * search.c (Freplace_match): Check for size calculation overflow.
8604         (Fset_match_data): Don't assume list lengths fit in 'int'.
8606         * sysdep.c (system_process_attributes): Use ptrdiff_t, not int,
8607         for command line length.  Do not attempt to address one before the
8608         beginning of an array, as that's not portable.
8610         * term.c (max_frame_lines): Remove; unused.
8611         (encode_terminal_src_size, encode_terminal_dst_size): Now ptrdiff_t,
8612         not int.
8613         (encode_terminal_code, calculate_costs): Check for size
8614         calculation overflow.
8615         (encode_terminal_code): Use ptrdiff_t, not int, to record glyph
8616         table lengths and related sizes.  Don't update size until alloc
8617         done.  Redo calculations to avoid overflow.
8618         (calculate_costs): Don't bother calling xmalloc when xrealloc will do.
8620         * termcap.c (tgetent): Use ptrdiff_t, not int, to record results of
8621         subtracting pointers.
8622         (gobble_line): Check for overflow more carefully.  Don't update size
8623         until alloc done.
8625         * tparam.c (tparam1): Use ptrdiff_t, not int, for sizes.
8626         Don't update size until alloc done.
8627         Redo size calculations to avoid overflow.
8628         Check for size calculation overflow.
8629         (main) [DEBUG]: Fix typo in invoking tparam1.
8631         * xdisp.c (store_mode_line_noprop_char, x_consider_frame_title):
8632         Use ptrdiff_t, not int, for sizes.
8633         (store_mode_line_noprop_char): Don't update size until alloc done.
8635         * xfaces.c (lface_id_to_name_size, Finternal_make_lisp_face):
8636         Use ptrdiff_t, not int, for sizes.
8637         (Finternal_make_lisp_face, cache_face):
8638         Check for size calculation overflow.
8639         (cache_face): Treat size calculation overflows as if they were
8640         memory exhaustion (the usual treatment), rather than aborting.
8642         * xfns.c (x_encode_text, x_set_name_internal)
8643         (Fx_change_window_property): Use ptrdiff_t, not int, to count
8644         sizes, since they can exceed INT_MAX in size.  Check for size
8645         calculation overflow.
8647         * xgselect.c (gfds_size): Now ptrdiff_t, for convenience with xpalloc.
8648         (xg_select): Check for size calculation overflow.
8649         Don't update size until alloc done.
8651         * xrdb.c (get_environ_db): Don't assume path length fits in int,
8652         as sprintf is limited to int lengths.
8654         * xselect.c (X_LONG_SIZE, X_SHRT_MAX, X_SHRT_MIN, X_LONG_MAX)
8655         (X_LONG_MIN): New macros.
8656         Use them to make the following changes clearer.
8657         (MAX_SELECTION_QUANTUM): Make the other bounds on this value clearer.
8658         This change doesn't affect the value now, but it may help remind
8659         future maintainers not to raise the value too much later.
8660         (SELECTION_QUANTUM): Remove, replacing with ...
8661         (selection_quantum): ... new function, which avoids overflow.
8662         All uses changed.
8663         (struct selection_data.size): Now ptrdiff_t, not int, to avoid
8664         assumption that selection length fits in 'int'.
8665         (x_reply_selection_request, x_handle_selection_request)
8666         (x_get_window_property, receive_incremental_selection)
8667         (x_get_window_property_as_lisp_data, selection_data_to_lisp_data)
8668         (lisp_data_to_selection_data, clean_local_selection_data):
8669         Use ptrdiff_t, not int, to record length of selection.
8670         (x_reply_selection_request, x_get_window_property)
8671         (receive_incremental_selection, x_property_data_to_lisp):
8672         Redo calculations to avoid overflow.
8673         (x_reply_selection_request): When sending hint, ceiling it at
8674         X_LONG_MAX rather than relying on wraparound overflow to send
8675         something.
8676         (x_get_window_property, receive_incremental_selection)
8677         (lisp_data_to_selection_data, x_property_data_to_lisp):
8678         Check for size-calculation overflow.
8679         (x_get_window_property, receive_incremental_selection)
8680         (lisp_data_to_selection_data, Fx_register_dnd_atom):
8681         Don't store size until memory allocation succeeds.
8682         (x_get_window_property): Plug memory leak on memory exhaustion.
8683         Don't double-block input; malloc is safe here.  Don't assume 2**34
8684         - 4 fits in unsigned long.  Add an xassert to check
8685         XGetWindowProperty overflow.  Be more careful about overflow
8686         calculations, and distinguish size from memory overflow better.
8687         (receive_incremental_selection): When tracing, don't assume
8688         unsigned int is less than INT_MAX.
8689         (x_selection_data_to_lisp_data): Remove unnecessary (and in theory
8690         harmful) conversions of unsigned short to int.
8691         (lisp_data_to_selection_data): Don't assume that integers
8692         in the range -65535 through -1 fit in an X unsigned short.
8693         Don't assume that ULONG_MAX == X_ULONG_MAX.  Don't store into
8694         result parameters unless successful.  Rely on cons_to_unsigned
8695         to report problems with elements; the old code wasn't right anyway.
8696         (x_check_property_data): Check for int overflow; we cannot use
8697         a wider type due to X limits.
8698         (x_handle_dnd_message): Use unsigned int, to avoid int overflow.
8700         * xsmfns.c (smc_save_yourself_CB): Check for size calc overflow.
8702         * xterm.c (x_color_cells, x_send_scrollbar_event, handle_one_xevent)
8703         (x_term_init): Check for size calculation overflow.
8704         (x_color_cells): Don't store size until memory allocation succeeds.
8705         (handle_one_xevent): Use ptrdiff_t, not int, for byte counts.
8706         Don't assume alloca size is less than MAX_ALLOCA.
8707         (x_term_init): Don't assume length fits in int (sprintf is limited
8708         to int size).
8710         Use ptrdiff_t for composition IDs.
8711         * character.c (lisp_string_width):
8712         * composite.c (composition_table_size, n_compositions)
8713         (get_composition_id, composition_gstring_from_id):
8714         * dispextern.h (struct glyph_string.cmp_id, struct composition_it.id):
8715         * xdisp.c (BUILD_COMPOSITE_GLYPH_STRING):
8716         * window.c (Frecenter):
8717         Use ptrdiff_t, not int, for composition IDs.
8718         * composite.c (get_composition_id): Check for integer overflow.
8719         * composite.h: Adjust prototypes to match the above changes.
8721         Use ptrdiff_t for hash table indexes.
8722         * category.c (hash_get_category_set):
8723         * ccl.c (ccl_driver):
8724         * charset.h (struct charset.hash_index, CHECK_CHARSET_GET_ID):
8725         * coding.c (coding_system_charset_list, detect_coding_system):
8726         * coding.h (struct coding_system.id):
8727         * composite.c (get_composition_id, gstring_lookup_cache):
8728         * fns.c (hash_lookup, hash_put, Fgethash, Fputhash):
8729         * image.c (xpm_get_color_table_h):
8730         * lisp.h (hash_lookup, hash_put):
8731         * minibuf.c (Ftest_completion):
8732         Use ptrdiff_t for hash table indexes, not int (which is too
8733         narrow, on 64-bit hosts) or EMACS_INT (which is too wide, on
8734         32-bit --with-wide-int hosts).
8736         * charset.c (Fdefine_charset_internal): Check for integer overflow.
8737         Add a FIXME comment about memory leaks.
8738         (syms_of_charset): Don't assume xmalloc returns.
8740         Don't assume that stated character widths fit in int.
8741         * character.c (Fchar_width, c_string_width, lisp_string_width):
8742         * character.h (CHAR_WIDTH):
8743         * indent.c (MULTIBYTE_BYTES_WIDTH):
8744         Use sanitize_char_width to avoid undefined and/or bad behavior
8745         with outlandish widths.
8746         * character.h (sanitize_tab_width): Rename from sanitize_width,
8747         now that we have two such functions.  All uses changed.
8748         (sanitize_char_width): New inline function.
8750         Don't assume that tab-width fits in int.
8751         * character.h (sanitize_width): New inline function.
8752         (SANE_TAB_WIDTH): New macro.
8753         (ASCII_CHAR_WIDTH): Use it.
8754         * indent.c (sane_tab_width): Remove.  All uses replaced by
8755         SANE_TAB_WIDTH (current_buffer).
8756         * xdisp.c (init_iterator): Use SANE_TAB_WIDTH.
8758         * fileio.c: Integer overflow issues with file modes.
8759         (Fset_file_modes, auto_save_1): Don't assume EMACS_INT fits in int.
8761         * charset.c (read_hex): New arg OVERFLOW.  All uses changed.
8762         Remove unreachable code.
8763         (read_hex, load_charset_map_from_file): Check for integer overflow.
8765         * xterm.c: Don't go over XClientMessageEvent limit.
8766         (scroll_bar_windows_size): Now ptrdiff_t, as we prefer signed.
8767         (x_send_scroll_bar_event): Likewise.  Check that the size does not
8768         exceed limits imposed by XClientMessageEvent, as well as the usual
8769         ptrdiff_t and size_t limits.
8771         * keyboard.c: Overflow, signedness and related fixes.
8772         (make_lispy_movement): Use same integer type in forward decl
8773         that is used in the definition.
8774         (read_key_sequence, keyremap_step):
8775         Change bufsize argument back to int, undoing my 2011-03-30 change.
8776         We prefer signed types, and int is wide enough here.
8777         (parse_tool_bar_item): Don't assume tool_bar_max_label_size is less
8778         than TYPE_MAXIMUM (EMACS_INT) / 2.  Don't let the label size grow
8779         larger than STRING_BYTES_BOUND.  Use ptrdiff_t for Emacs string
8780         length, not size_t.  Use ptrdiff_t for index, not int.
8781         (keyremap_step, read_key_sequence): Redo bufsize check to avoid
8782         possibility of integer overflow.
8784         Overflow, signedness and related fixes for images.
8786         * dispextern.h (struct it.stack[0].u.image.image_id)
8787         (struct_it.image_id, struct image.id, struct image_cache.size)
8788         (struct image_cache.used, struct image_cache.ref_count):
8789         * gtkutil.c (update_frame_tool_bar):
8790         * image.c (x_reference_bitmap, Fimage_size, Fimage_mask_p)
8791         (Fimage_metadata, free_image_cache, clear_image_cache, lookup_image)
8792         (cache_image, mark_image_cache, x_kill_gs_process, Flookup_image):
8793         * nsmenu.m (update_frame_tool_bar):
8794         * xdisp.c (calc_pixel_width_or_height):
8795         * xfns.c (image_cache_refcount):
8796         Image IDs are now ptrdiff_t, not int, to avoid arbitrary limits
8797         on typical 64-bit hosts.
8799         * image.c (RANGED_INTEGERP, TYPE_RANGED_INTEGERP): New macros.
8800         (x_bitmap_pixmap, x_create_x_image_and_pixmap):
8801         Omit unnecessary casts to int.
8802         (parse_image_spec): Check that integers fall into 'int' range
8803         when the callers expect that.
8804         (image_ascent): Redo ascent calculation to avoid int overflow.
8805         (clear_image_cache): Avoid overflow when sqrt (INT_MAX) < nimages.
8806         (lookup_image): Remove unnecessary tests.
8807         (xbm_image_p): Locals are now of int, not EMACS_INT,
8808         since parse_image_check makes sure they fit into int.
8809         (png_load, gif_load, svg_load_image):
8810         Prefer int to unsigned where either will do.
8811         (tiff_handler): New function, combining the cores of the
8812         old tiff_error_handler and tiff_warning_handler.
8813         This function is rewritten to use vsnprintf and thereby avoid
8814         stack buffer overflows.  It uses only the features of vsnprintf
8815         that are common to both POSIX and native Microsoft.
8816         (tiff_error_handler, tiff_warning_handler): Use it.
8817         (tiff_load, gif_load, imagemagick_load_image):
8818         Don't assume :index value fits in 'int'.
8819         (gif_load): Omit unnecessary cast to double, and avoid double-rounding.
8820         (imagemagick_load_image): Check that crop parameters fit into
8821         the integer types that MagickCropImage accepts.  Don't assume
8822         Vimagemagick_render_type has a nonnegative value.  Don't assume
8823         size_t fits in 'long'.
8824         (gs_load): Use printmax_t to print the widest integers possible.
8825         Check for integer overflow when computing image height and width.
8827 2011-08-26  Eli Zaretskii  <eliz@gnu.org>
8829         * xdisp.c (redisplay_window): Don't force window start if point
8830         will be invisible in the resulting window.  (Bug#9324)
8832 2011-08-25  Eli Zaretskii  <eliz@gnu.org>
8834         * xdisp.c (compute_display_string_pos): Return 2 in DISP_PROP when
8835         the display spec is of the form `(space ...)'.
8836         (handle_display_spec): Return the value returned by
8837         handle_single_display_spec, not just 1 or zero.
8838         (handle_single_display_spec): If the display spec is of the form
8839         `(space ...)', and specifies display in the text area, return 2
8840         rather than 1.
8841         (try_cursor_movement): Check for the need to scroll more
8842         accurately, and prefer exact match for point under bidi.
8843         Don't advance `row' beyond the last row of the window.
8845         * dispextern.h (struct bidi_it): Rename the disp_prop_p member
8846         into disp_prop; all users changed.
8848         * bidi.c (bidi_fetch_char): If compute_display_string_pos returns
8849         DISP_PROP = 2, substitute the u+2029 PARAGRAPH SEPARATOR character
8850         for the text covered by the display property.
8852 2011-08-25  Chong Yidong  <cyd@stupidchicken.com>
8854         * buffer.c (Fbury_buffer_internal): Rename from Funrecord_buffer.
8855         Change return value to nil.
8856         (Frecord_buffer): Delete unused function.
8858 2011-08-24  Eli Zaretskii  <eliz@gnu.org>
8860         * xdisp.c (Fcurrent_bidi_paragraph_direction): For unibyte
8861         buffers, return left-to-right.
8862         (set_cursor_from_row): Consider candidate row a win if its glyph
8863         represents a newline and point is on that newline.  Fixes cursor
8864         positioning on the newline at EOL of R2L text within L2R
8865         paragraph, and vice versa.
8866         (try_cursor_movement): Check continued rows, in addition to
8867         continuation rows.  Fixes unwarranted scroll when point enters a
8868         continued line of R2L text within an L2R paragraph, or vice versa.
8869         (cursor_row_p): Consider the case of point being equal to
8870         MATRIX_ROW_END_CHARPOS.  Prevents cursor being stuck when moving
8871         from the end of a short line to the beginning of a continued line
8872         of R2L text within L2R paragraph.
8873         (RECORD_MAX_MIN_POS): For max_pos, use IT_CHARPOS even for
8874         composed characters.
8876         * bidi.c (bidi_check_type): Use xassert.
8877         (bidi_cache_iterator_state): Update the disp_pos and disp_prop_p
8878         members.
8880 2011-08-23  Eli Zaretskii  <eliz@gnu.org>
8882         * bidi.c (bidi_get_type): Abort if we get zero as the bidi type of
8883         a character.
8885 2011-08-23  Chong Yidong  <cyd@stupidchicken.com>
8887         * nsfont.m (ns_otf_to_script): Fix typo.
8889 2011-08-22  Kenichi Handa  <handa@m17n.org>
8891         * chartab.c (Fset_char_table_extra_slot): Do not inhibit setting a
8892         extra slot even if the purpose is char-code-property-table.
8894 2011-08-23  Eli Zaretskii  <eliz@gnu.org>
8896         * xdisp.c (redisplay_window): When computing centering_position,
8897         account for the height of the header line.  (Bug#8874)
8899         * dispnew.c (buffer_posn_from_coords): Use buf_charpos_to_bytepos
8900         instead of CHAR_TO_BYTE.  Fixes a crash when a completion
8901         candidate is selected by the mouse, and that candidate has a
8902         composed character under the mouse.
8904         * xdisp.c (x_produce_glyphs): Set it->nglyphs to 1.  Fixes pixel
8905         coordinates reported by pos-visible-in-window-p for a composed
8906         character in column zero.
8908 2011-08-23  Stefan Monnier  <monnier@iro.umontreal.ca>
8910         * cmds.c (Fself_insert_command): Mention post-self-insert-hook.
8912 2011-08-22  Eli Zaretskii  <eliz@gnu.org>
8914         * xdisp.c (BUFFER_POS_REACHED_P): If this is a composition,
8915         consider it a hit if to_charpos is anywhere in the range of the
8916         composed buffer positions.
8918 2011-08-22  Chong Yidong  <cyd@stupidchicken.com>
8920         * image.c (gif_load): Don't assume that each subimage has the same
8921         dimensions as the base image.  Handle disposal method that is
8922         "undefined" by the gif spec (Bug#9335).
8924 2011-08-20  Chong Yidong  <cyd@stupidchicken.com>
8926         * eval.c (Fsignal): Handle `debug' symbol in error handler (Bug#9329).
8927         (Fcondition_case): Document `debug' symbol in error handler.
8929 2011-08-19  Eli Zaretskii  <eliz@gnu.org>
8931         * xfaces.c (face_at_buffer_position): Avoid repeated evaluation of
8932         face ID by FACE_FROM_ID, and avoid a crash when mouse is moved
8933         from an Org mode buffer to a Speedbar frame.
8935         * xdisp.c (RECORD_MAX_MIN_POS): If the display element comes from
8936         a composition, take its buffer position from IT->cmp_it.charpos.
8937         Fixes cursor positioning at the beginning of a line that begins
8938         with a composed character.
8940 2011-08-18  Eli Zaretskii  <eliz@gnu.org>
8942         * bidi.c (bidi_get_type): If bidi_type_table reports zero as the
8943         character bidirectional type, use STRONG_L instead.  Fixes crashes
8944         in a buffer produced by `describe-categories'.
8946         * dispextern.h (struct bidi_it): Move disp_pos and disp_prop_p
8947         members before the level stack, so they would be saved and
8948         restored when copying iterator state.  Fixes incorrect reordering
8949         around TABs covered by display properties.
8951 2011-08-18  Andreas Schwab  <schwab@linux-m68k.org>
8953         * process.c (Fnetwork_interface_list): Correctly determine buffer size.
8955 2011-08-17  Chong Yidong  <cyd@stupidchicken.com>
8957         * eval.c (internal_condition_case, internal_condition_case_1)
8958         (internal_condition_case_2, internal_condition_case_n):
8959         Remove unnecessary aborts (Bug#9081).
8961 2011-08-17  Eli Zaretskii  <eliz@gnu.org>
8963         * lread.c (Fload) [DOS_NT]: If `openp' returns -2, but the file
8964         has no `load' handler, try opening the file locally.  (Bug#9311)
8966 2011-08-16  Ken Brown  <kbrown@cornell.edu>
8968         * gmalloc.c: Expand comment.
8970 2011-08-16  Eli Zaretskii  <eliz@gnu.org>
8972         * xdisp.c (set_cursor_from_row): Don't accept a previous candidate
8973         if it fails the cursor_row_p test.  Fixes cursor positioning at ZV.
8975 2011-08-16  Ken Brown  <kbrown@cornell.edu>
8977         Fix memory allocation problems in Cygwin build (Bug#9273).
8979         * unexcw.c ( __malloc_initialized): Declare external variable.
8980         (fixup_executable): Force the dumped emacs to reinitialize malloc.
8982         * gmalloc.c [CYGWIN] (bss_sbrk_heapbase, bss_sbrk_heapinfo):
8983         New variables.
8984         (malloc_initialize_1) [CYGWIN]: Prepare for reinitializing the
8985         dumped emacs.
8986         (_free_internal_nolock) [CYGWIN]: Ignore requests to free storage
8987         in the static heap.
8988         [CYGWIN] (special_realloc): New function.
8989         (_realloc_internal_nolock) [CYGWIN]: Use the new function on
8990         requests to realloc storage in the static heap.
8992 2011-08-15  Paul Eggert  <eggert@cs.ucla.edu>
8994         * bidi.c (bidi_initialize): Remove unused local.
8996 2011-08-15  Eli Zaretskii  <eliz@gnu.org>
8998         * bidimirror.h:
8999         * biditype.h: Remove file.
9000         * makefile.w32-in ($(BLD)/bidi.$(O)):
9001         * deps.mk (bidi.o): Remove biditype.h and bidimirror.h.
9003         * dispextern.h: Fix a typo in the comment to bidi_type_t.
9005         * chartab.c: Improve commentary for the uniprop_table API.
9007         * bidi.c (bidi_paragraph_init): Support zero value of
9008         bidi_ignore_explicit_marks_for_paragraph_level.
9009         (bidi_initialize): Use uniprop_table instead of including
9010         biditype.h and bidimirror.h.
9012         * xdisp.c (move_it_in_display_line_to): Don't reset pixel
9013         coordinates of the iterator when restoring from ppos_it.
9014         (Bug#9296)
9016 2011-08-14  Kenichi Handa  <handa@m17n.org>
9018         * process.c (create_process): Call setup_process_coding_systems
9019         after the pid of the process is set to -1 (Bug#8162).
9021 2011-08-14  Eli Zaretskii  <eliz@gnu.org>
9023         * xdisp.c (move_it_in_display_line_to): Don't invoke
9024         IT_RESET_X_ASCENT_DESCENT when iterator position was restored from
9025         ppos_it.  Fixes vertical cursor motion when line beginning is
9026         covered by an image.  (Bug#9296)
9028 2011-08-14  Jan Djärv  <jan.h.d@swipnet.se>
9030         * nsterm.h (ns_run_ascript): Declare.
9031         (NSAPP_DATA2_RUNASSCRIPT): Define.
9033         * nsfns.m (as_script, as_result, as_status): New static variables.
9034         (ns_run_ascript): New function.
9035         (Fns_do_applescript): Set variables as_*.  Make an NSApplicationDefined
9036         event with data2 set to NSAPP_DATA2_RUNASSCRIPT, post it and then start
9037         the event loop.  Get status from as_status (Bug#7276).
9039         * nsterm.m (sendEvent): If event is NSApplicationDefined and
9040         data2 is NSAPP_DATA2_RUNASSCRIPT, call ns_run_ascript and then exit
9041         the event loop (Bug#7276).
9043 2011-08-14  Andreas Schwab  <schwab@linux-m68k.org>
9045         * gnutls.c (QCgnutls_bootprop_priority)
9046         (QCgnutls_bootprop_trustfiles, QCgnutls_bootprop_keylist)
9047         (QCgnutls_bootprop_crlfiles, QCgnutls_bootprop_callbacks)
9048         (QCgnutls_bootprop_loglevel, QCgnutls_bootprop_hostname)
9049         (QCgnutls_bootprop_min_prime_bits, QCgnutls_bootprop_verify_flags)
9050         (QCgnutls_bootprop_verify_hostname_error)
9051         (QCgnutls_bootprop_callbacks_verify): Rename from
9052         Qgnutls_bootprop_..., all uses changed.
9054         * xfaces.c (QCignore_defface): Rename from Qignore_defface, all
9055         uses changed.
9057 2011-08-14  Paul Eggert  <eggert@cs.ucla.edu>
9059         * xfaces.c (Qframe_set_background_mode): Now static.
9060         * dispextern.h (Qframe_set_background_mode): Remove decl.
9062         * process.c (Fnetwork_interface_info): Declare local only if needed.
9064 2011-08-13  Jan Djärv  <jan.h.d@swipnet.se>
9066         * process.c: Include ifaddrs.h and net/if_dl.h if available (Bug#8477).
9067         (Fnetwork_interface_list): Allocate in increments of bytes instead
9068         of sizeof (struct ifreq).  Iterate over ifconf.ifc_req by counting
9069         bytes (Bug#8477).  Count bytes correctly when ifr_addr is a struct
9070         sockaddr.
9071         (struct ifflag_def): notrailers is smart on OSX.
9072         (Fnetwork_interface_info): Handle case when ifr_flags is negative.
9073         Get hardware address with getifaddrs if available.
9075 2011-08-12  Eli Zaretskii  <eliz@gnu.org>
9077         * xdisp.c (iterate_out_of_display_property): xassert that
9078         IT->position is set to within IT->object's boundaries.  Break from
9079         the loop as soon as EOB is reached; avoids infloops in redisplay
9080         when IT->position is set up wrongly due to some bug.
9081         Set IT->current to match the bidi iterator unconditionally.
9082         (push_display_prop): Allow GET_FROM_STRING as IT->method on
9083         entry.  Force push_it to save on the stack the current
9084         buffer/string position, to be restored by pop_it.  Fix flags in
9085         the iterator structure wrt the object coming from a display
9086         property, as `line-prefix' and `wrap-prefix' are not ``replacing''
9087         properties.  (Bug#9284)
9089 2011-08-09  Andreas Schwab  <schwab@linux-m68k.org>
9091         * fontset.c (fontset_get_font_group): Add proper type checks.
9092         (Bug#9172)
9094 2011-08-09  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
9096         * unexmacosx.c (print_load_command_name): Add cases LC_FUNCTION_STARTS
9097         and LC_VERSION_MIN_MACOSX.
9098         (copy_linkedit_data) [LC_FUNCTION_STARTS]: New function.
9099         (dump_it) [LC_FUNCTION_STARTS]: Use it.
9101 2011-08-08  Eli Zaretskii  <eliz@gnu.org>
9103         * xdisp.c (forward_to_next_line_start): Allow to use the
9104         no-display-properties-and-no-overlays under bidi display.
9105         Set disp_pos in the bidi iterator to avoid searches for display
9106         properties and overlays.
9108 2011-08-08  Chong Yidong  <cyd@stupidchicken.com>
9110         * editfns.c (Fset_time_zone_rule): Document relationship with the
9111         setenv function.
9113         * ftfont.c (ftfont_pattern_entity): Copy the extras argument to
9114         the font entity extracted from the cache (Bug#8109).
9116 2011-08-07  Chong Yidong  <cyd@stupidchicken.com>
9118         * composite.c (autocmp_chars): Don't reset point.  That is done by
9119         restore_point_unwind (Bug#5984).
9121 2011-08-07  Juri Linkov  <juri@jurta.org>
9123         * editfns.c (Fformat_time_string): Doc fix, add tag `usage:'
9124         to show the arg `TIME' instead of `TIMEVAL'.
9126 2011-08-06  Eli Zaretskii  <eliz@gnu.org>
9128         * xdisp.c (set_cursor_from_row): Fix cursor positioning when a
9129         display property strides EOL and includes a newline, as in
9130         longlines-mode.  (Bug#9254)
9131         (move_it_in_display_line_to): Fix vertical-motion in a buffer with
9132         word-wrap under bidirectional display.  (Bug#9224)
9134         * bidi.c (bidi_unshelve_cache): Don't reset the cache if JUST_FREE
9135         is non-zero, even if the data buffer is NULL.  Fixes a crash in
9136         vertical-motion with longlines-mode.  (Bug#9254)
9138 2011-08-05  Eli Zaretskii  <eliz@gnu.org>
9140         * bidi.c <bidi_cache_total_alloc>: Now static.
9141         (bidi_initialize): Initialize bidi_cache_total_alloc.
9143         * xdisp.c (display_line): Release buffer allocated for shelved bidi
9144         cache.  (Bug#9221)
9146         * bidi.c (bidi_shelve_cache, bidi_unshelve_cache): Track total
9147         amount allocated this far in `bidi_cache_total_alloc'.
9148         (bidi_unshelve_cache): Accept an additional argument JUST_FREE; if
9149         non-zero, only free the data buffer without restoring the cache
9150         contents.  All callers changed.
9152         * dispextern.h (bidi_unshelve_cache): Update prototype.
9154         * xdisp.c (SAVE_IT, pos_visible_p, move_it_in_display_line_to)
9155         (move_it_in_display_line, move_it_to)
9156         (move_it_vertically_backward, move_it_by_lines): Replace the call
9157         to xfree to an equivalent call to bidi_unshelve_cache.
9158         (move_it_in_display_line_to): Fix logic of returning
9159         MOVE_POS_MATCH_OR_ZV in the bidi case.  (Bug#9224)
9161 2011-08-05  Eli Zaretskii  <eliz@gnu.org>
9163         * xdisp.c (set_cursor_from_row): Prefer the candidate glyph that
9164         came from a string character with a `cursor' property.  (Bug#9229)
9166 2011-08-04  Jan Djärv  <jan.h.d@swipnet.se>
9168         * Makefile.in (LIB_PTHREAD): New variable.
9169         (LIBES): Add LIB_PTHREAD (Bug#9216).
9171         * alloc.c, emacs.c, gmalloc.c, gtkutil.c, keyboard.c, syssignal.h:
9172         Rename HAVE_GTK_AND_PTHREAD to HAVE_PTHREAD (Bug#9216).
9174 2011-08-04  Andreas Schwab  <schwab@linux-m68k.org>
9176         * regex.c (re_iswctype): Remove some redundant boolean conversions.
9178 2011-08-04  Jan Djärv  <jan.h.d@swipnet.se>
9180         * xterm.c (x_find_topmost_parent): New function.
9181         (x_set_frame_alpha): Find topmost parent window with
9182         x_find_topmost_parent and set the property there also (bug#9181).
9183         (handle_one_xevent): Call x_set_frame_alpha on ReparentNotify.
9185 2011-08-04  Paul Eggert  <eggert@cs.ucla.edu>
9187         * callproc.c (Fcall_process): Avoid vfork clobbering
9188         the local vars buffer, coding_systems, current_dir.
9190 2011-08-03  Stefan Monnier  <monnier@iro.umontreal.ca>
9192         * keymap.c (Fmake_composed_keymap): Move to subr.el.
9194 2011-08-03  Paul Eggert  <eggert@cs.ucla.edu>
9196         * fontset.c (dump_fontset) [FONTSET_DEBUG]: Declare EXTERNALLY_VISIBLE
9197         so that it is not optimized away.
9199         * xdisp.c (compute_display_string_pos): Remove unused local.
9201 2011-08-02  Eli Zaretskii  <eliz@gnu.org>
9203         Fix slow cursor motion and scrolling in large buffers with
9204         selective display, like Org Mode buffers.  (Bug#9218)
9206         * dispextern.h (struct bidi_it): New member disp_prop_p.
9208         * xdisp.c: Remove one-slot cache of display string positions.
9209         (compute_display_string_pos): Accept an additional argument
9210         DISP_PROP_P; callers changed.  Scan at most 5K characters forward
9211         for a display string or property.  If found, set DISP_PROP_P
9212         non-zero.
9214         * bidi.c (bidi_fetch_char): Accept an additional argument
9215         DISP_PROP_P, and pass it to compute_display_string_pos.
9216         Only handle text covered by a display string if DISP_PROP_P is returned
9217         non-zero.  All callers of bidi_fetch_char changed.
9219 2011-08-02  Stefan Monnier  <monnier@iro.umontreal.ca>
9221         * keymap.c (Fdefine_key): Fix Lisp_Object/int mixup; apply some CSE.
9223 2010-12-03  Don March  <don@ohspite.net>
9225         * keymap.c (Fdefine_key): Fix non-prefix key error message when
9226         last character M-[char] is translated to ESC [char] (bug#7541).
9228 2011-08-02  Kenichi Handa  <handa@m17n.org>
9230         * lisp.h (uniprop_table): Extern it.
9232         * chartab.c (uniprop_table): Make it non-static.
9234 2011-08-01  Eli Zaretskii  <eliz@gnu.org>
9236         * xdisp.c (forward_to_next_line_start): Accept additional argument
9237         BIDI_IT_PREV, and store into it the state of the bidi iterator had
9238         on the newline.
9239         (reseat_at_next_visible_line_start): Use the bidi iterator state
9240         returned by forward_to_next_line_start to restore the state of
9241         it->bidi_it after backing up to previous newline.  (Bug#9212)
9243 2011-07-30  Andreas Schwab  <schwab@linux-m68k.org>
9245         * regex.c (re_comp): Protoize.
9246         (re_exec): Fix return type.
9247         (regexec): Fix type of `ret'.  (Bug#9203)
9249 2011-07-28  Paul Eggert  <eggert@cs.ucla.edu>
9251         * image.c (check_image_size): Use 1024x1024 if unknown frame (Bug#9189).
9252         This is needed if max-image-size is a floating-point number.
9254 2011-07-28  Andreas Schwab  <schwab@linux-m68k.org>
9256         * print.c (print_object): Print empty symbol as ##.
9258         * lread.c (read1): Read ## as empty symbol.
9260 2011-07-28  Alp Aker  <alp.tekin.aker@gmail.com>
9262         * nsfns.m (x_set_foreground_color): Set f->foreground_pixel when
9263         setting frame foreground color (Bug#9175).
9264         (x_set_background_color): Likewise.
9266         * nsmenu.m (-setText): Size tooltip dimensions precisely to
9267         contents (Bug#9176).
9268         (EmacsTooltip -init): Remove bezels and add shadows to
9269         tooltip windows.
9271         * nsterm.m (ns_dumpglyphs_stretch): Avoid overwriting left fringe
9272         or scroll bar (Bug#8470).
9274         * nsfont.m (nsfont_open): Remove assignment to voffset and
9275         unnecessary vars hshink, expand, hd, full_height, min_height.
9276         (nsfont_draw): Use s->ybase as baseline for glyph drawing (Bug#8913).
9278         * nsterm.h (nsfont_info): Remove voffset field.
9280 2011-07-28  Alp Aker  <alp.tekin.aker@gmail.com>
9282         Implement strike-through and overline on NextStep (Bug#8863).
9284         * nsfont.m (nsfont_open): Use underline position provided by font,
9285         instead of hard-coded value of 2.
9286         (nsfont_draw): Call ns_draw_text_decoration instead.
9288         * nsterm.h: Add declaration for ns_draw_text_decoration.
9290         * nsterm.m (ns_draw_text_decoration): New function for drawing
9291         underline, overline, and strike-through.
9292         (ns_dumpglyphs_image, ns_dumpglyphs_stretch): Add call to
9293         ns_draw_text_decoration.  Change treatment of cursor drawing to
9294         accommodate underlining, etc.
9296 2011-07-28  Eli Zaretskii  <eliz@gnu.org>
9298         * buffer.c (init_buffer_once): Set bidi-display-reordering to t by
9299         default.
9301 2011-07-28  Paul Eggert  <eggert@cs.ucla.edu>
9303         * alloc.c (memory_full) [!SYNC_INPUT]: Fix signal-related race.
9304         Without this fix, if a signal arrives just after memory fills up,
9305         'malloc' might be invoked reentrantly.
9307         * image.c (x_check_image_size) [!HAVE_X_WINDOWS]: Return 1.
9308         In other words, assume that every image size is allowed, on non-X
9309         hosts.  This assumption is probably wrong, but it lets Emacs compile.
9311 2011-07-28  Andreas Schwab  <schwab@linux-m68k.org>
9313         * regex.c (re_iswctype): Convert return values to boolean.
9315 2011-07-28  Eli Zaretskii  <eliz@fencepost.gnu.org>
9317         * xdisp.c (compute_display_string_pos): Don't use cached display
9318         string position if the buffer had its restriction changed.
9319         (Bug#9184)
9321 2011-07-28  Paul Eggert  <eggert@cs.ucla.edu>
9323         * callproc.c (Fcall_process): Use 'volatile' to avoid vfork clobbering.
9325 2011-07-28  Paul Eggert  <eggert@cs.ucla.edu>
9327         Integer signedness and overflow and related fixes.  (Bug#9079)
9329         * bidi.c: Integer size and overflow fixes.
9330         (bidi_cache_size, bidi_cache_idx, bidi_cache_last_idx)
9331         (bidi_cache_start, bidi_cache_fetch_state, bidi_cache_search)
9332         (bidi_cache_find_level_change, bidi_cache_ensure_space)
9333         (bidi_cache_iterator_state, bidi_cache_find, bidi_cache_start_stack)
9334         (bidi_find_other_level_edge):
9335         Use ptrdiff_t instead of EMACS_INT where either will do.
9336         This works better on 32-bit hosts configured --with-wide-int.
9337         (bidi_cache_ensure_space): Check for size-calculation overflow.
9338         Use % rather than repeated addition, for better worst-case speed.
9339         Don't set bidi_cache_size until after xrealloc returns, because it
9340         might not return.
9341         (bidi_dump_cached_states): Use ptrdiff_t, not int, to avoid overflow.
9342         (bidi_cache_ensure_space): Also check that the bidi cache size
9343         does not exceed that of the largest Lisp string or buffer.  See Eli
9344         Zaretskii in <http://debbugs.gnu.org/cgi/bugreport.cgi?bug=9079#29>.
9346         * alloc.c (__malloc_size_t): Remove.
9347         All uses replaced by size_t.  See Andreas Schwab's note
9348         <http://debbugs.gnu.org/cgi/bugreport.cgi?bug=9079#8>.
9350         * image.c: Improve checking for integer overflow.
9351         (check_image_size): Assume that f is nonnull, since
9352         it is always nonnull in practice.  This is one less thing to
9353         worry about when checking for integer overflow later.
9354         (x_check_image_size): New function, which checks for integer
9355         overflow issues inside X.
9356         (x_create_x_image_and_pixmap, xbm_read_bitmap_data): Use it.
9357         This removes the need for a memory_full check.
9358         (xbm_image_p): Rewrite to avoid integer multiplication overflow.
9359         (Create_Pixmap_From_Bitmap_Data, xbm_load): Use x_check_image_size.
9360         (xbm_read_bitmap_data): Change locals back to 'int', since
9361         their values must fit in 'int'.
9362         (xpm_load_image, png_load, tiff_load):
9363         Invoke x_create_x_image_and_pixmap earlier,
9364         to avoid much needless work if the image is too large.
9365         (tiff_load): Treat overly large images as if
9366         x_create_x_image_and_pixmap failed, not as malloc failures.
9367         (gs_load): Use x_check_image_size.
9369         * gtkutil.c: Omit integer casts.
9370         (xg_get_pixbuf_from_pixmap): Remove unnecessary cast.
9371         (xg_set_toolkit_scroll_bar_thumb): Rewrite to avoid need for cast.
9373         * image.c (png_load): Don't assume height * row_bytes fits in 'int'.
9375         * xfaces.c (Fbitmap_spec_p): Fix integer overflow bug.
9376         Without this fix, (bitmap-spec-p '(34359738368 1 "x"))
9377         would wrongly return t on a 64-bit host.
9379         * dispnew.c (init_display): Use *_RANGE_OVERFLOW macros.
9380         The plain *_OVERFLOW macros run afoul of GCC bug 49705
9381         <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=49705>
9382         and therefore cause GCC to emit a bogus diagnostic in some cases.
9384         * image.c: Integer signedness and overflow and related fixes.
9385         This is not an exhaustive set of fixes, but it's time to
9386         record what I've got.
9387         (lookup_pixel_color, check_image_size): Remove redundant decls.
9388         (check_image_size): Don't assume that arbitrary EMACS_INT values
9389         fit in 'int', or that arbitrary 'double' values fit in 'int'.
9390         (x_alloc_image_color, x_create_x_image_and_pixmap, png_load)
9391         (tiff_load, imagemagick_load_image):
9392         Check for overflow in size calculations.
9393         (x_create_x_image_and_pixmap): Remove unnecessary test for
9394         xmalloc returning NULL; that can't happen.
9395         (xbm_read_bitmap_data): Don't assume sizes fit into 'int'.
9396         (xpm_color_bucket): Use better integer hashing function.
9397         (xpm_cache_color): Don't possibly over-allocate memory.
9398         (struct png_memory_storage, tiff_memory_source, tiff_seek_in_memory)
9399         (gif_memory_source):
9400         Use ptrdiff_t, not int or size_t, to record sizes.
9401         (png_load): Don't assume values greater than 2**31 fit in 'int'.
9402         (our_stdio_fill_input_buffer): Prefer ptrdiff_t to size_t when
9403         either works, as we prefer signed integers.
9404         (tiff_read_from_memory, tiff_write_from_memory):
9405         Return tsize_t, not size_t, since that's what the TIFF API wants.
9406         (tiff_read_from_memory): Don't fail simply because the read would
9407         go past EOF; instead, return a short read.
9408         (tiff_load): Omit no-longer-needed casts.
9409         (Fimagemagick_types): Don't assume size fits into 'int'.
9411         Improve hashing quality when configured --with-wide-int.
9412         * fns.c (hash_string): New function, taken from sxhash_string.
9413         Do not discard information about ASCII character case; this
9414         discarding is no longer needed.
9415         (sxhash-string): Use it.  Change sig to match it.  Caller changed.
9416         * lisp.h: Declare it.
9417         * lread.c (hash_string): Remove, since we now use fns.c's version.
9418         The fns.c version returns a wider integer if --with-wide-int is
9419         specified, so this should help the quality of the hashing a bit.
9421         * emacs.c: Integer overflow minor fix.
9422         (heap_bss_diff): Now uprintmax_t, not unsigned long.  All used changed.
9423         Define only if GNU_LINUX.
9424         (main, Fdump_emacs): Set and use heap_bss_diff only if GNU_LINUX.
9426         * dispnew.c: Integer signedness and overflow fixes.
9427         Remove unnecessary forward decls, that were a maintenance hassle.
9428         (history_tick): Now uprintmax_t, so it's more likely to avoid overflow.
9429         All uses changed.
9430         (adjust_glyph_matrix, realloc_glyph_pool, adjust_frame_message_buffer)
9431         (scrolling_window): Use ptrdiff_t, not int, for byte count.
9432         (prepare_desired_row, line_draw_cost):
9433         Use int, not unsigned, where either works.
9434         (save_current_matrix, restore_current_matrix):
9435         Use ptrdiff_t, not size_t, where either works.
9436         (init_display): Check for overflow more accurately, and without
9437         relying on undefined behavior.
9439         * editfns.c (pWIDE, pWIDElen, signed_wide, unsigned_wide):
9440         Remove, replacing with the new symbols in lisp.h.  All uses changed.
9441         * fileio.c (make_temp_name):
9442         * filelock.c (lock_file_1, lock_file):
9443         * xdisp.c (message_dolog):
9444         Don't assume PRIdMAX etc. works; this isn't portable to pre-C99 hosts.
9445         Use pMd etc. instead.
9446         * lisp.h (printmax_t, uprintmax_t, pMd, pMu): New types and macros,
9447         replacing the pWIDE etc. symbols removed from editfns.c.
9449         * keyboard.h (num_input_events): Now uintmax_t.
9450         This is (very slightly) less likely to mess up due to wraparound.
9451         All uses changed.
9453         * buffer.c: Integer signedness fixes.
9454         (alloc_buffer_text, enlarge_buffer_text):
9455         Use ptrdiff_t rather than size_t when either will do, as we prefer
9456         signed integers.
9458         * alloc.c: Integer signedness and overflow fixes.
9459         Do not impose an arbitrary 32-bit limit on malloc sizes when debugging.
9460         (__malloc_size_t): Default to size_t, not to int.
9461         (pure_size, pure_bytes_used_before_overflow, stack_copy_size)
9462         (Fgarbage_collect, mark_object_loop_halt, mark_object):
9463         Prefer ptrdiff_t to size_t when either would do, as we prefer
9464         signed integers.
9465         (XMALLOC_OVERRUN_CHECK_OVERHEAD): New macro.
9466         (xmalloc_overrun_check_header, xmalloc_overrun_check_trailer):
9467         Now const.  Initialize with values that are in range even if char
9468         is signed.
9469         (XMALLOC_PUT_SIZE, XMALLOC_GET_SIZE): Remove, replacing with ...
9470         (xmalloc_put_size, xmalloc_get_size): New functions.  All uses changed.
9471         These functions do the right thing with sizes > 2**32.
9472         (check_depth): Now ptrdiff_t, not int.
9473         (overrun_check_malloc, overrun_check_realloc, overrun_check_free):
9474         Adjust to new way of storing sizes.  Check for size overflow bugs
9475         in rest of code.
9476         (STRING_BYTES_MAX): Adjust to new overheads.  The old code was
9477         slightly wrong anyway, as it missed one instance of
9478         XMALLOC_OVERRUN_CHECK_OVERHEAD.
9479         (refill_memory_reserve): Omit needless cast to size_t.
9480         (mark_object_loop_halt): Mark as externally visible.
9482         * xselect.c: Integer signedness and overflow fixes.
9483         (Fx_register_dnd_atom, x_handle_dnd_message):
9484         Use ptrdiff_t, not size_t, since we prefer signed.
9485         (Fx_register_dnd_atom): Check for ptrdiff_t (and size_t) overflow.
9486         * xterm.h (struct x_display_info): Use ptrdiff_t, not size_t, for
9487         x_dnd_atoms_size and x_dnd_atoms_length.
9489         * doprnt.c: Prefer signed to unsigned when either works.
9490         * eval.c (verror):
9491         * doprnt.c (doprnt):
9492         * lisp.h (doprnt):
9493         * xdisp.c (vmessage):
9494         Use ptrdiff_t, not size_t, when using or implementing doprnt,
9495         since the sizes cannot exceed ptrdiff_t bounds anyway, and we
9496         prefer signed arithmetic to avoid comparison confusion.
9497         * doprnt.c (doprnt): Avoid a "+ 1" that can't overflow,
9498         but is a bit tricky.
9500         Assume freestanding C89 headers, string.h, stdlib.h.
9501         * data.c, doprnt.c, floatfns.c, print.c:
9502         Include float.h unconditionally.
9503         * gmalloc.c: Assume C89-at-least behavior for preprocessor,
9504         limits.h, stddef.h, string.h.  Use memset instead of 'flood'.
9505         * regex.c: Likewise for stddef.h, string.h.
9506         (ISASCII): Remove; can assume it returns 1 now.  All uses removed.
9507         * s/aix4-2.h (HAVE_STRING_H): Remove obsolete undef.
9508         * s/ms-w32.h (HAVE_LIMITS_H, HAVE_STRING_H, HAVE_STDLIB_H)
9509         (STDC_HEADERS): Remove obsolete defines.
9510         * sysdep.c: Include limits.h unconditionally.
9512         Assume support for memcmp, memcpy, memmove, memset.
9513         * lisp.h, sysdep.c (memcmp, memcpy, memmove, memset):
9514         * regex.c (memcmp, memcpy):
9515         Remove; we assume C89 now.
9517         * gmalloc.c (memcpy, memset, memmove): Remove; we assume C89 now.
9518         (__malloc_safe_bcopy): Remove; no longer needed.
9520         * lisp.h (struct vectorlike_header, struct Lisp_Subr): Signed sizes.
9521         Use EMACS_INT, not EMACS_UINT, for sizes.  The code works equally
9522         well either way, and we prefer signed to unsigned.
9524 2011-07-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9526         * gnutls.c (emacs_gnutls_read): Don't message anything if the peer
9527         closes the connection while we're reading (bug#9182).
9529 2011-07-25  Jan Djärv  <jan.h.d@swipnet.se>
9531         * nsmenu.m (ns_popup_dialog): Add an "ok" button if no buttons
9532         are specified (Bug#9168).
9534 2011-07-25  Paul Eggert  <eggert@cs.ucla.edu>
9536         * bidi.c (bidi_dump_cached_states): Fix printf format mismatch.
9537         Found by GCC static checking and --with-wide-int on a 32-bit host.
9539 2011-07-25  Eli Zaretskii  <eliz@gnu.org>
9541         * xdisp.c (compute_display_string_pos): Fix logic of caching
9542         previous display string position.  Initialize cached_prev_pos to
9543         -1.  Fixes slow-down at the beginning of a buffer.
9545 2011-07-24  Eli Zaretskii  <eliz@gnu.org>
9547         * xfaces.c (check_lface_attrs) [HAVE_WINDOW_SYSTEM]: Allow `nil'
9548         for attrs[LFACE_FONTSET_INDEX].
9550 2011-07-23  Paul Eggert  <eggert@cs.ucla.edu>
9552         * xml.c (parse_region): Remove unused local
9553         that was recently introduced.
9555 2011-07-23  Eli Zaretskii  <eliz@gnu.org>
9557         * xfns.c (unwind_create_frame) [GLYPH_DEBUG]: Adapt to changes in
9558         2008-02-22T17:42:09Z!monnier@iro.umontreal.ca.
9560         * xdisp.c (move_it_in_display_line_to): Record the best matching
9561         position for TO_CHARPOS while scanning the line, and restore it on
9562         exit if none of the characters scanned was an exact match.
9563         Fixes vertical-motion and pos-visible-in-window-p under bidi redisplay
9564         when exact match is impossible due to invisible text, and the
9565         lines are truncated.
9567 2011-07-23  Jan Djärv  <jan.h.d@swipnet.se>
9569         * nsterm.m (initFrameFromEmacs): Set NSTitledWindowMask in styleMask
9570         for OSX >= 10.7.
9572 2011-07-22  Eli Zaretskii  <eliz@gnu.org>
9574         Fix a significant slow-down of cursor motion with C-n, C-p,
9575         C-f/C-b, and C-v/M-v that couldn't keep up with keyboard
9576         auto-repeat under bidi redisplay in fontified buffers.
9577         * xdisp.c (compute_stop_pos_backwards): New function.
9578         (next_element_from_buffer): Call compute_stop_pos_backwards to
9579         find a suitable prev_stop when we find ourselves before
9580         base_level_stop.
9581         (reseat): Don't look for prev_stop, as that could mean a very long
9582         run.
9583         <cached_disp_pos, cached_disp_buffer, cached_disp_modiff>
9584         <cached_disp_overlay_modiff>: Cache for last found display string
9585         position.
9586         (compute_display_string_pos): Return the cached position if asked
9587         about the same buffer in the same area of character positions, and
9588         the buffer wasn't changed since the time the display string
9589         position was cached.
9591 2011-07-22  Eli Zaretskii  <eliz@gnu.org>
9593         * xdisp.c (rows_from_pos_range): Don't ignore glyphs whose object
9594         is an integer, which is important for empty lines.  (Bug#9149)
9596 2011-07-22  Chong Yidong  <cyd@stupidchicken.com>
9598         * frame.c (Fmodify_frame_parameters): In tty case, update the
9599         default face if necessary (Bug#4238).
9601 2011-07-21  Chong Yidong  <cyd@stupidchicken.com>
9603         * editfns.c (Fstring_to_char): No need to explain what a character
9604         is in the docstring (Bug#6576).
9606 2011-07-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9608         * xml.c (parse_region): Make sure we always return a tree.
9610 2011-07-20  HAMANO Kiyoto  <khiker.mail@gmail.com>
9612         * xml.c (parse_region): If a document contains only comments,
9613         return that, too.
9615 2011-07-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9617         * xml.c (make_dom): Return comments, too.
9619 2011-07-19  Paul Eggert  <eggert@cs.ucla.edu>
9621         Port to OpenBSD.
9622         See http://lists.gnu.org/archive/html/emacs-devel/2011-07/msg00688.html
9623         and the surrounding thread.
9624         * minibuf.c (read_minibuf_noninteractive): Rewrite to use getchar
9625         rather than fgets, and retry after EINTR.  Otherwise, 'emacs
9626         --batch -f byte-compile-file' fails on OpenBSD if an inactivity
9627         timer goes off.
9628         * s/openbsd.h (BROKEN_SIGIO): Define.
9629         * unexelf.c (unexec) [__OpenBSD__]:
9630         Don't update the .mdebug section of the Alpha COFF symbol table.
9632 2011-07-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9634         * lread.c (syms_of_lread): Clarify when `lexical-binding' is used
9635         (bug#8460).
9637 2011-07-18  Paul Eggert  <eggert@cs.ucla.edu>
9639         * fileio.c (Fcopy_file) [!MSDOS]: Tighten created file's mask.
9640         This fixes some race conditions on the permissions of any newly
9641         created file.
9643         * alloc.c (valid_pointer_p): Use pipe, not open.
9644         This fixes some permissions issues when debugging.
9646         * fileio.c (Fcopy_file): Adjust mode if fchown fails.  (Bug#9002)
9647         If fchown fails to set both uid and gid, try to set just gid,
9648         as that is sometimes allowed.  Adjust the file's mode to eliminate
9649         setuid or setgid bits that are inappropriate if fchown fails.
9651 2011-07-18  Stefan Monnier  <monnier@iro.umontreal.ca>
9653         * xdisp.c (next_element_from_string, next_element_from_buffer): Use EQ
9654         to compare Lisp_Objects.
9655         * gnutls.c (syms_of_gnutls): Rename Vgnutls_log_level to
9656         global_gnutls_log_level, don't mistake it for a Lisp_Object.
9657         (init_gnutls_functions, emacs_gnutls_handle_error): Fix up uses.
9659 2011-07-17  Andreas Schwab  <schwab@linux-m68k.org>
9661         * lread.c (read_integer): Unread even EOF character.
9662         (read1): Likewise.  Properly record start position of symbol.
9664         * lread.c (read1): Read `#:' as empty uninterned symbol if no
9665         symbol character follows.
9667 2011-07-17  Paul Eggert  <eggert@cs.ucla.edu>
9669         * fileio.c (Fcopy_file): Pacify gcc re fchown.  (Bug#9002)
9670         This works around a problem with the previous change to Fcopy_file.
9671         Recent glibc declares fchown with __attribute__((warn_unused_result)),
9672         and without this change, GCC might complain about discarding
9673         fchown's return value.
9675 2011-07-16  Juanma Barranquero  <lekktu@gmail.com>
9677         * makefile.w32-in (GLOBAL_SOURCES): Add gnutls.c (followup to bug#9059).
9679 2011-07-16  Paul Eggert  <eggert@cs.ucla.edu>
9681         * fileio.c (Fcopy_file): Don't diagnose fchown failures.  (Bug#9002)
9683 2011-07-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9685         * gnutls.c (syms_of_gnutls): Define `gnutls-log-level' here, since
9686         it's used from the C level.
9688         * process.c: Use the same condition for POLL_FOR_INPUT in both
9689         keyboard.c and process.c (bug#1858).
9691 2011-07-09  Lawrence Mitchell  <wence@gmx.li>
9693         * gnutls.c (Qgnutls_bootprop_min_prime_bits): New variable.
9694         (Fgnutls_boot): Use it.
9696 2011-07-15  Andreas Schwab  <schwab@linux-m68k.org>
9698         * doc.c (Fsubstitute_command_keys): Revert last change.
9700 2011-07-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9702         * doc.c (Fsubstitute_command_keys): Clarify that \= really only
9703         quotes the next character, and doesn't affect other longer
9704         sequences (bug#8935).
9706         * lread.c (syms_of_lread): Clarify that is isn't only
9707         `eval-buffer' and `eval-defun' that's affected by
9708         `lexical-binding' (bug#8460).
9710 2011-07-15  Eli Zaretskii  <eliz@gnu.org>
9712         * xdisp.c (move_it_in_display_line_to): Fix vertical motion with
9713         bidi redisplay when a line includes both an image and is truncated.
9715 2011-07-14  Paul Eggert  <eggert@cs.ucla.edu>
9717         Fix minor problems found by static checking.
9718         * bidi.c (bidi_cache_size): Now EMACS_INT, not size_t.
9719         (elsz): Now a signed constant, not a size_t var.  We prefer signed
9720         types to unsigned, to avoid integer comparison confusion.  Without
9721         this change, GCC 4.6.1 with -Wunsafe-loop-optimizations complains
9722         "cannot optimize loop, the loop counter may overflow", a symptom
9723         of the confusion.
9724         * indent.c (Fvertical_motion): Mark locals as initialized.
9725         * xdisp.c (reseat_to_string): Fix pointer signedness issue.
9727 2011-07-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9729         * search.c (Fre_search_backward): Mention `case-fold-search' in
9730         all the re_search_* functions (bug#8138).
9732         * keyboard.c (Fopen_dribble_file): Document when the file is
9733         closed (bug#8056).
9735 2011-07-14  Eli Zaretskii  <eliz@gnu.org>
9737         * bidi.c (bidi_dump_cached_states): Fix format of displaying
9738         bidi_cache_idx.
9740         Support bidi reordering of display and overlay strings.
9741         * xdisp.c (compute_display_string_pos)
9742         (compute_display_string_end): Accept additional argument STRING.
9743         (init_iterator, reseat_1): Initialize bidi_it->string.s to NULL.
9744         (reseat_to_string): Initialize bidi_it->string.s and
9745         bidi_it->string.schars.
9746         (Fcurrent_bidi_paragraph_direction): Initialize itb.string.s to
9747         NULL (avoids a crash in bidi_paragraph_init).
9748         Initialize itb.string.lstring.
9749         (init_iterator): Call bidi_init_it only of a valid
9750         buffer position was specified.  Initialize paragraph_embedding to
9751         L2R.
9752         (reseat_to_string): Initialize the bidi iterator.
9753         (display_string): If we need to ignore text properties of
9754         LISP_STRING, set IT->stop_charpos to IT->end_charpos.  (The
9755         original value of -1 will not work with bidi.)
9756         (compute_display_string_pos): First arg is now struct
9757         `text_pos *'; all callers changed.  Support display properties on
9758         Lisp strings.
9759         (compute_display_string_end): Support display properties on Lisp
9760         strings.
9761         (init_iterator, reseat_1, reseat_to_string): Initialize the
9762         string.bufpos member to 0 (zero, for compatibility with IT_CHARPOS
9763         when iterating on a string not from display properties).
9764         (compute_display_string_pos, compute_display_string_end):
9765         Fix calculation of the object to scan.  Fixes an error when using
9766         arrow keys.
9767         (next_element_from_buffer): Don't abort when IT_CHARPOS is before
9768         base_level_stop; instead, set base_level_stop to BEGV.
9769         Fixes crashes in vertical-motion.
9770         (next_element_from_buffer): Improve commentary for when
9771         the iterator is before prev_stop.
9772         (init_iterator): Initialize bidi_p from the default value of
9773         bidi-display-reordering, not from buffer-local value.  Use the
9774         buffer-local value only if initializing for buffer iteration.
9775         (handle_invisible_prop): Support invisible properties on strings
9776         that are being bidi-reordered.
9777         (set_iterator_to_next): Support bidi reordering of C strings and
9778         Lisp strings.
9779         (next_element_from_string): Support bidi reordering of Lisp
9780         strings.
9781         (handle_stop_backwards): Support Lisp strings as well.
9782         (display_string): Support display of R2L glyph rows.
9783         Use IT_STRING_CHARPOS when displaying from a Lisp string.
9784         (init_iterator): Don't initialize it->bidi_p for strings
9785         here.
9786         (reseat_to_string): Initialize it->bidi_p for strings here.
9787         (next_element_from_string, next_element_from_c_string)
9788         (next_element_from_buffer): Add xassert's for correspondence
9789         between IT's object being iterated and it->bidi_it.string
9790         structure.
9791         (face_before_or_after_it_pos): Support bidi iteration.
9792         (next_element_from_c_string): Handle the case of the first string
9793         character that is not the first one in the visual order.
9794         (get_visually_first_element): New function, refactored from common
9795         parts of next_element_from_buffer, next_element_from_string, and
9796         next_element_from_c_string.
9797         (tool_bar_lines_needed, redisplay_tool_bar)
9798         (display_menu_bar): Force left-to-right direction.  Add a FIXME
9799         comment for making that be controlled by a user option.
9800         (push_it, pop_it): Save and restore the state of the
9801         bidi iterator.  Save and restore the bidi_p flag.
9802         (pop_it): Iterate out of display property for string iteration as
9803         well.
9804         (iterate_out_of_display_property): Support iteration over strings.
9805         (handle_single_display_spec): Set up it->bidi_it for iteration
9806         over a display string, and call bidi_init_it.
9807         (handle_single_display_spec, next_overlay_string)
9808         (get_overlay_strings_1, push_display_prop): Set up the bidi
9809         iterator for displaying display or overlay strings.
9810         (forward_to_next_line_start): Don't use the shortcut if
9811         bidi-iterating.
9812         (back_to_previous_visible_line_start): If handle_display_prop
9813         pushed the iterator stack, restore the internal state of the bidi
9814         iterator by calling bidi_pop_it same number of times.
9815         (reseat_at_next_visible_line_start): If ON_NEWLINE_P is non-zero,
9816         and we are bidi-iterating, don't decrement the iterator position;
9817         instead, set the first_elt flag in the bidi iterator, to produce
9818         the same effect.
9819         (reseat_1): Remove redundant setting of string_from_display_prop_p.
9820         (push_display_prop): xassert that we are iterating a buffer.
9821         (push_it, pop_it): Save and restore paragraph_embedding member.
9822         (handle_single_display_spec, next_overlay_string)
9823         (get_overlay_strings_1, reseat_1, reseat_to_string)
9824         (push_display_prop): Set up the `unibyte' member of bidi_it.string
9825         correctly.  Don't assume unibyte strings are not bidi-reordered.
9826         (compute_display_string_pos)
9827         (compute_display_string_end): Fix handling the case of C string.
9828         (push_it, pop_it): Save and restore from_disp_prop_p.
9829         (handle_single_display_spec, push_display_prop): Set the
9830         from_disp_prop_p flag.
9831         (get_overlay_strings_1): Reset the from_disp_prop_p flag.
9832         (pop_it): Call iterate_out_of_display_property only if we are
9833         popping after iteration over a string that came from a display
9834         property.  Fix a typo in popping stretch info.  Add an assertion
9835         for verifying that the iterator position is in sync with the bidi
9836         iterator.
9837         (handle_single_display_spec, get_overlay_strings_1)
9838         (push_display_prop): Fix initialization of paragraph direction for
9839         string when that of the parent object is not yet determined.
9840         (reseat_1): Call bidi_init_it to resync the bidi
9841         iterator with IT's position.  (Bug#7616)
9842         (find_row_edges): If ROW->start.pos gives position
9843         smaller than min_pos, use it as ROW->minpos.  (Bug#7616)
9844         (handle_stop, back_to_previous_visible_line_start, reseat_1):
9845         Reset the from_disp_prop_p flag.
9846         (SAVE_IT, RESTORE_IT): New macros.
9847         (pos_visible_p, face_before_or_after_it_pos)
9848         (back_to_previous_visible_line_start)
9849         (move_it_in_display_line_to, move_it_in_display_line)
9850         (move_it_to, move_it_vertically_backward, move_it_by_lines)
9851         (try_scrolling, redisplay_window, display_line): Use them when
9852         saving a temporary copy of the iterator and restoring it back.
9853         (back_to_previous_visible_line_start, reseat_1)
9854         (init_iterator): Empty the bidi cache "stack".
9855         (move_it_in_display_line_to): If iterator ended up at
9856         EOL, but we never saw any buffer positions smaller than
9857         to_charpos, return MOVE_POS_MATCH_OR_ZV.  Fixes vertical cursor
9858         motion in bidi-reordered lines.
9859         (move_it_in_display_line_to): Record prev_method and prev_pos
9860         immediately before the call to set_iterator_to_next.  Fixes cursor
9861         motion in bidi-reordered lines with stretch glyphs and strings
9862         displayed in margins.  (Bug#8133) (Bug#8867)
9863         Return MOVE_POS_MATCH_OR_ZV only if iterator position is past
9864         TO_CHARPOS.
9865         (pos_visible_p): Support positions in bidi-reordered lines.
9866         Save and restore bidi cache.
9868         * bidi.c (bidi_level_of_next_char): clen should be EMACS_NT, not int.
9869         (bidi_paragraph_info): Delete unused struct.
9870         (bidi_cache_idx, bidi_cache_last_idx): Declare EMACS_INT.
9871         (bidi_cache_start): New variable.
9872         (bidi_cache_reset): Reset bidi_cache_idx to bidi_cache_start, not
9873         to zero.
9874         (bidi_cache_fetch_state, bidi_cache_search)
9875         (bidi_cache_find_level_change, bidi_cache_iterator_state)
9876         (bidi_cache_find, bidi_peek_at_next_level)
9877         (bidi_level_of_next_char, bidi_find_other_level_edge)
9878         (bidi_move_to_visually_next): Compare cache index with
9879         bidi_cache_start rather than with zero.
9880         (bidi_fetch_char): Accept new argument STRING; all callers
9881         changed.  Support iteration over a string.  Support strings with
9882         display properties.  Support unibyte strings.  Fix the type of
9883         `len' according to what STRING_CHAR_AND_LENGTH expects.
9884         (bidi_paragraph_init, bidi_resolve_explicit_1)
9885         (bidi_resolve_explicit, bidi_resolve_weak)
9886         (bidi_level_of_next_char, bidi_move_to_visually_next):
9887         Support iteration over a string.
9888         (bidi_set_sor_type, bidi_resolve_explicit_1)
9889         (bidi_resolve_explicit, bidi_type_of_next_char): ignore_bn_limit
9890         can now be zero (for strings); special values 0 and -1 were
9891         changed to -1 and -2, respectively.
9892         (bidi_char_at_pos): New function.
9893         (bidi_paragraph_init, bidi_resolve_explicit, bidi_resolve_weak):
9894         Call it instead of FETCH_MULTIBYTE_CHAR.
9895         (bidi_move_to_visually_next): Abort if charpos or bytepos were not
9896         initialized to valid values.
9897         (bidi_init_it): Don't initialize charpos and bytepos with invalid
9898         values.
9899         (bidi_level_of_next_char): Allow the sentinel "position" to pass
9900         the test for valid cached positions.  Fix the logic for looking up
9901         the sentinel state in the cache.  GCPRO the Lisp string we are
9902         iterating.
9903         (bidi_push_it, bidi_pop_it): New functions.
9904         (bidi_initialize): Initialize the bidi cache start stack pointer.
9905         (bidi_cache_ensure_space): New function, refactored from part of
9906         bidi_cache_iterator_state.  Don't assume the required size is just
9907         one BIDI_CACHE_CHUNK away.
9908         (bidi_cache_start_stack, bidi_push_it): Use IT_STACK_SIZE.
9909         (bidi_count_bytes, bidi_char_at_pos): New functions.
9910         (bidi_cache_search): Don't assume bidi_cache_last_idx is
9911         always valid if bidi_cache_idx is valid.
9912         (bidi_cache_find_level_change): xassert that bidi_cache_last_idx
9913         is valid if it's going to be used.
9914         (bidi_shelve_cache, bidi_unshelve_cache): New functions.
9915         (bidi_cache_fetch_state, bidi_cache_search)
9916         (bidi_cache_find_level_change, bidi_cache_ensure_space)
9917         (bidi_cache_iterator_state, bidi_cache_find)
9918         (bidi_find_other_level_edge, bidi_cache_start_stack):
9919         All variables related to cache indices are now EMACS_INT.
9921         * dispextern.h (struct bidi_string_data): New structure.
9922         (struct bidi_it): New member `string'.  Make flag members be 1-bit
9923         fields, and put them last in the struct.
9924         (compute_display_string_pos, compute_display_string_end):
9925         Update prototypes.
9926         (bidi_push_it, bidi_pop_it): Add prototypes.
9927         (struct iterator_stack_entry): New members bidi_p,
9928         paragraph_embedding, and from_disp_prop_p.
9929         (struct it): Member bidi_p is now a bit field 1 bit wide.
9930         (bidi_shelve_cache, bidi_unshelve_cache):
9931         Declare prototypes.
9933         * .gdbinit (xvectype, xvector, xcompiled, xchartable, xboolvector)
9934         (xpr, xfont, xbacktrace): Use "header.size" when accessing vectors
9935         and vector-like objects.
9937         * dispnew.c (buffer_posn_from_coords): Save and restore the bidi
9938         cache around display iteration.
9940         * window.c (Fwindow_end, window_scroll_pixel_based)
9941         (displayed_window_lines, Frecenter): Save and restore the bidi
9942         cache around display iteration.
9944 2011-07-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9946         * editfns.c (Fdelete_region): Clarify the use of the named
9947         parameters (bug#6788).
9949 2011-07-14  Martin Rudalics  <rudalics@gmx.at>
9951         * indent.c (Fvertical_motion): Set and restore w->pointm when
9952         saving and restoring the window's buffer (Bug#9006).
9954 2011-07-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9956         * editfns.c (Fstring_to_char): Clarify just what is returned
9957         (bug#6576).  Text by Eli Zaretskii.
9959 2011-07-13  Juanma Barranquero  <lekktu@gmail.com>
9961         * gnutls.c (init_gnutls_functions): Honor gnutls_log_level (bug#9059).
9963 2011-07-13  Eli Zaretskii  <eliz@gnu.org>
9965         * buffer.c (mmap_find): Fix a typo.
9967 2011-07-13  Johan Bockgård  <bojohan@gnu.org>
9969         Fix execution of x selection hooks.
9970         * xselect.c (Qx_lost_selection_functions)
9971         (Qx_sent_selection_functions): New vars.
9972         (syms_of_xselect): DEFSYM them.
9973         (x_handle_selection_request): Pass Qx_sent_selection_functions
9974         rather than Vx_sent_selection_functions to Frun_hook_with_args.
9975         (x_handle_selection_clear,x_clear_frame_selections):
9976         Pass Qx_lost_selection_functions rather than
9977         Vx_lost_selection_functions to Frun_hook_with_args.
9979 2011-07-13  Paul Eggert  <eggert@cs.ucla.edu>
9981         * buffer.c (Fget_buffer_create): Initialize inhibit_shrinking.
9982         The old code sometimes used this field without initializing it.
9984         * alloc.c (gc_sweep): Don't read past end of array.
9985         In theory, the old code could also have corrupted Emacs internals,
9986         though it'd be very unlikely.
9988 2011-07-12  Andreas Schwab  <schwab@linux-m68k.org>
9990         * character.c (Fcharacterp): Don't advertise optional ignored
9991         argument.  (Bug#4026)
9993 2011-07-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9995         * keymap.c (syms_of_keymap): Clarify that "modifier" is "modifier
9996         key" (bug#4257).
9998         * window.c (Fset_window_start): Doc fix (bug#4199).
9999         (Fset_window_hscroll): Ditto.
10001 2011-07-12  Paul Eggert  <eggert@cs.ucla.edu>
10003         Fix minor new problems caught by GCC 4.6.1.
10004         * term.c (init_tty): Remove unused local.
10005         * xsettings.c (store_monospaced_changed): Define this function only
10006         if (defined HAVE_GSETTINGS || defined HAVE_GCONF), as it's
10007         not used otherwise.
10009 2011-07-12  Chong Yidong  <cyd@stupidchicken.com>
10011         * xdisp.c (Vresize_mini_windows): Minor doc fix (Bug#3300).
10013 2011-07-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10015         * xdisp.c (syms_of_xdisp): Make it explicit that the mini-windows
10016         are the mini-buffer and the echo area (bug#3320).
10018         * term.c (init_tty): Remove support for supdup, c10 and perq
10019         terminals, which are no longer supported (bug#1482).
10021 2011-07-10  Johan Bockgård  <bojohan@gnu.org>
10023         * xdisp.c (Ftool_bar_lines_needed): Fix WINDOWP check.
10025 2011-07-10  Jan Djärv  <jan.h.d@swipnet.se>
10027         * xmenu.c (menu_highlight_callback): Only pass frame to show_help_event
10028         for non-popups (Bug#3642).
10030 2011-07-10  Andreas Schwab  <schwab@linux-m68k.org>
10032         * alloc.c (reset_malloc_hooks): Protoize.
10033         * buffer.c (mmap_init, mmap_find, mmap_free_1, mmap_enlarge)
10034         (mmap_set_vars, mmap_alloc, mmap_free, mmap_realloc): Likewise.
10035         * cm.c (losecursor): Likewise.
10036         * data.c (fmod): Likewise.
10037         * dispnew.c (swap_glyphs_in_rows): Likewise.
10038         * emacs.c (memory_warning_signal): Likewise.
10039         * floatfns.c (float_error): Likewise.
10040         * font.c (check_gstring, check_otf_features, otf_tag_symbol)
10041         (otf_open, font_otf_capability, generate_otf_features)
10042         (font_otf_DeviceTable, font_otf_ValueRecord, font_otf_Anchor):
10043         Likewise.
10044         * image.c (pbm_read_file): Likewise.
10045         * indent.c (string_display_width): Likewise.
10046         * intervals.c (check_for_interval, search_for_interval)
10047         (inc_interval_count, count_intervals, root_interval)
10048         (adjust_intervals_for_insertion, make_new_interval): Likewise.
10049         * lread.c (defalias): Likewise.
10050         * ralloc.c (r_alloc_check): Likewise.
10051         * regex.c (set_image_of_range_1, set_image_of_range)
10052         (regex_grow_registers): Likewise.
10053         * sysdep.c (strerror): Likewise.
10054         * termcap.c (valid_filename_p, tprint, main): Likewise.
10055         * tparam.c (main): Likewise.
10056         * unexhp9k800.c (run_time_remap, save_data_space)
10057         (update_file_ptrs, read_header, write_header, calculate_checksum)
10058         (copy_file, copy_rest, display_header): Likewise.
10059         * widget.c (mark_shell_size_user_specified, create_frame_gcs):
10060         Likewise.
10061         * xdisp.c (check_it): Likewise.
10062         * xfaces.c (register_color, unregister_color, unregister_colors):
10063         Likewise.
10064         * xfns.c (print_fontset_result): Likewise.
10065         * xrdb.c (member, fatal, main): Likewise.
10067 2011-07-10  Paul Eggert  <eggert@cs.ucla.edu>
10069         Fix minor problems found by static checking (Bug#9031).
10070         * chartab.c (char_table_set_range, map_sub_char_table):
10071         Remove unused locals.
10072         (uniprop_table): Now static.
10073         * composite.c (_work_char): Remove unused static var.
10075 2011-07-09  Juanma Barranquero  <lekktu@gmail.com>
10077         * chartab.c (uniprop_table_uncompress): Remove unused local variable.
10079 2011-07-09  Jan Djärv  <jan.h.d@swipnet.se>
10081         * gtkutil.c (qttip_cb): Remove code without function.
10083 2011-07-09  Eli Zaretskii  <eliz@gnu.org>
10085         * w32.c (pthread_sigmask): New stub.
10087 2011-07-08  Paul Eggert  <eggert@cs.ucla.edu>
10089         Use pthread_sigmask, not sigprocmask (Bug#9010).
10090         sigprocmask is portable only for single-threaded applications, and
10091         Emacs can be multi-threaded when it uses GTK.
10092         * Makefile.in (LIB_PTHREAD_SIGMASK): New macro.
10093         (LIBES): Use it.
10094         * callproc.c (Fcall_process):
10095         * process.c (create_process):
10096         * sysdep.c (sys_sigblock, sys_sigunblock, sys_sigsetmask):
10097         Use pthread_sigmask, not sigprocmask.
10099 2011-07-08  Jan Djärv  <jan.h.d@swipnet.se>
10101         * gtkutil.c (qttip_cb): Set line wrap to FALSE for tooltip widget.
10102         (xg_prepare_tooltip): Revert text in x->ttip_lbl, margins was
10103         wrong (Bug#8591).
10105 2011-07-08  Jan Djärv  <jan.h.d@swipnet.se>
10107         * gtkutil.c (xg_prepare_tooltip): Fix indentation and comment.
10108         Put text in x->ttip_lbl instead of gtk_tooltip_set_text (Bug#8591).
10109         (xg_hide_tooltip): Fix comment.
10111         * nsterm.m (initFrameFromEmacs): Don't use ns_return_types
10112         in registerServicesMenuSendTypes.
10113         (validRequestorForSendType): Don't check ns_return_types.
10115         * nsfns.m (Fx_open_connection): Put NSStringPboardType into
10116         ns_return_type.
10118 2011-07-08  Jason Rumney  <jasonr@gnu.org>
10120         * w32term.c (x_make_frame_visible): Use SH_SHOWNORMAL rather than
10121         SH_SHOW for hidden windows (Bug#5482).
10123         * w32fns.c (w32_wnd_proc) [WM_TIMER, WM_SET_CURSOR]: Avoid using
10124         frame struct members of non-existent frames (Bug#6284).
10126 2011-07-08  Jan Djärv  <jan.h.d@swipnet.se>
10128         * nsterm.m (keyDown): Call to wantsToDelayTextChangeNotifications and
10129         variable firstTime not needed on OSX >= 10.6.
10130         (setPosition): setFloatValue:knobProportion: is deprecated on OSX
10131         >= 10.5.  Use setKnobProportion, setDoubleValue.
10133         * nsterm.h (MAC_OS_X_VERSION_10_3, MAC_OS_X_VERSION_10_4)
10134         (MAC_OS_X_VERSION_10_5): Define if not defined.
10135         (EmacsView, EmacsTooltip): Implements NSWindowDelegate on OSX >= 10.6.
10136         (EmacsMenu): Implements NSMenuDelegate on OSX >= 10.6.
10137         (EmacsToolbar): Implements NSToolbarDelegate on OSX >= 10.6.
10139         * nsselect.m (ns_string_from_pasteboard): Don't use deprecated methods
10140         cString and lossyCString on OSX >= 10.4.
10142         * nsmenu.m (fillWithWidgetValue): Don't use deprecated method
10143         sizeToFit on OSX >= 10.2.
10145         * nsimage.m (allocInitFromFile): Don't use deprecated method
10146         bestRepresentationForDevice on OSX >= 10.6.
10148         * nsfns.m (check_ns_display_info): Cast to long and use %ld in error
10149         to avoid warning.
10151         * emacs.c: Declare unexec_init_emacs_zone.
10153         * nsgui.h: Fix compiler warning about gnulib redefining verify.
10155         * nsselect.m (ns_get_local_selection): Change to extern (Bug#8842).
10157         * nsmenu.m (ns_update_menubar): Remove useless setDelegate call
10158         on svcsMenu (Bug#8842).
10160         * nsfns.m (Fx_open_connection): Remove NSStringPboardType from
10161         ns_return_types.
10162         (Fns_list_services): Just return Qnil on 10.6, code not working there.
10164         * nsterm.m (QUTF8_STRING): Declare.
10165         (initFrameFromEmacs): Call registerServicesMenuSendTypes.
10166         (validRequestorForSendType): Return type is (id).
10167         Change indexOfObjectIdenticalTo to indexOfObject.
10168         Check if we have local selection before returning self (Bug#8842).
10169         (writeSelectionToPasteboard): Put local selection into paste board
10170         if we have a local selection (Bug#8842).
10171         (syms_of_nsterm): DEFSYM QUTF8_STRING.
10173         * nsterm.h (MAC_OS_X_VERSION_10_6): Define here instead of nsterm.m.
10174         (ns_get_local_selection): Declare.
10176 2011-07-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10178         * keymap.c (describe_map_tree): Don't insert a double newline at
10179         the end of the buffer (bug#1169) and return whether we inserted
10180         something.
10182         * callint.c (Fcall_interactively): Change "reading args" to
10183         "providing args" to try to clarify what it does (bug#1010).
10185 2011-07-07  Kenichi Handa  <handa@m17n.org>
10187         * composite.c (composition_compute_stop_pos): Ignore a static
10188         composition starting before CHARPOS (Bug#8915).
10190         * xdisp.c (handle_composition_prop): Likewise.
10192 2011-07-07  Eli Zaretskii  <eliz@gnu.org>
10194         * term.c (produce_glyphs) <xassert>: Allow IT_GLYPHLESS in it->what.
10195         (Bug#9015)
10197 2011-07-07  Kenichi Handa  <handa@m17n.org>
10199         * character.h (unicode_category_t): New enum type.
10201         * chartab.c (uniprop_decoder_t, uniprop_encoder_t): New types.
10202         (Qchar_code_property_table): New variable.
10203         (UNIPROP_TABLE_P, UNIPROP_GET_DECODER)
10204         (UNIPROP_COMPRESSED_FORM_P): New macros.
10205         (char_table_ascii): Uncompress the compressed values.
10206         (sub_char_table_ref): New arg is_uniprop.  Callers changed.
10207         Uncompress the compressed values.
10208         (sub_char_table_ref_and_range): Likewise.
10209         (char_table_ref_and_range): Uncompress the compressed values.
10210         (sub_char_table_set): New arg is_uniprop.  Callers changed.
10211         Uncompress the compressed values.
10212         (sub_char_table_set_range): Args changed.  Callers changed.
10213         (char_table_set_range): Adjuted for the above change.
10214         (map_sub_char_table): Delete args default_val and parent.  Add arg
10215         top.  Give decoded values to a Lisp function.
10216         (map_char_table): Adjust for the above change.  Give decoded
10217         values to a Lisp function.  Gcpro more variables.
10218         (uniprop_table_uncompress)
10219         (uniprop_decode_value_run_length): New functions.
10220         (uniprop_decoder, uniprop_decoder_count): New variables.
10221         (uniprop_get_decoder, uniprop_encode_value_character)
10222         (uniprop_encode_value_run_length, uniprop_encode_value_numeric):
10223         New functions.
10224         (uniprop_encoder, uniprop_encoder_count): New variables.
10225         (uniprop_get_encoder, uniprop_table)
10226         (Funicode_property_table_internal, Fget_unicode_property_internal)
10227         (Fput_unicode_property_internal): New functions.
10228         (syms_of_chartab): DEFSYM Qchar_code_property_table, defsubr
10229         Sunicode_property_table_internal, Sget_unicode_property_internal,
10230         and Sput_unicode_property_internal.  Defvar_lisp
10231         char-code-property-alist.
10233         * composite.c (CHAR_COMPOSABLE_P): Adjust for the change of
10234         Vunicode_category_table.
10236         * font.c (font_range): Adjust for the change of
10237         Vunicode_category_table.
10239 2011-07-07  Dan Nicolaescu  <dann@ics.uci.edu>
10241         * m/iris4d.h: Remove file, move contents ...
10242         * s/irix6-5.h: ... here.
10244 2011-07-06  Paul Eggert  <eggert@cs.ucla.edu>
10246         Remove unportable assumption about struct layout (Bug#8884).
10247         * alloc.c (mark_buffer):
10248         * buffer.c (reset_buffer_local_variables, Fbuffer_local_variables)
10249         (clone_per_buffer_values): Don't assume that
10250         sizeof (struct buffer) is a multiple of sizeof (Lisp_Object).
10251         This isn't true in general, and it's particularly not true
10252         if Emacs is configured with --with-wide-int.
10253         * buffer.h (FIRST_FIELD_PER_BUFFER, LAST_FIELD_PER_BUFFER):
10254         New macros, used in the buffer.c change.
10256 2011-07-05  Jan Djärv  <jan.h.d@swipnet.se>
10258         * xsettings.c: Use both GConf and GSettings if both are available.
10259         (store_config_changed_event): Add comment.
10260         (dpyinfo_valid, store_font_name_changed, map_tool_bar_style)
10261         (store_tool_bar_style_changed): New functions.
10262         (store_monospaced_changed): Add comment.  Call dpyinfo_valid.
10263         (struct xsettings): Move font inside HAVE_XFT.
10264         (GSETTINGS_TOOL_BAR_STYLE, GSETTINGS_FONT_NAME): New defines.
10265         (GSETTINGS_MONO_FONT): Rename from SYSTEM_MONO_FONT.
10266         Move inside HAVE_XFT.
10267         (something_changed_gsettingsCB): Rename from something_changedCB.
10268         Check for changes in GSETTINGS_TOOL_BAR_STYLE and GSETTINGS_FONT_NAME
10269         also.
10270         (GCONF_TOOL_BAR_STYLE, GCONF_FONT_NAME): New defines.
10271         (GCONF_MONO_FONT): Rename from SYSTEM_MONO_FONT.  Move inside HAVE_XFT.
10272         (something_changed_gconfCB): Rename from something_changedCB.
10273         Check for changes in GCONF_TOOL_BAR_STYLE and GCONF_FONT_NAME also.
10274         (parse_settings): Move check for font inside HAVE_XFT.
10275         (read_settings, apply_xft_settings): Add comment.
10276         (read_and_apply_settings): Add comment.  Call map_tool_bar_style and
10277         store_tool_bar_style_changed.  Move check for font inside HAVE_XFT and
10278         call store_font_name_changed.
10279         (xft_settings_event): Add comment.
10280         (init_gsettings): Add comment.  Get values for GSETTINGS_TOOL_BAR_STYLE
10281         and GSETTINGS_FONT_NAME.  Move check for fonts within HAVE_XFT.
10282         (init_gconf): Add comment.  Get values for GCONF_TOOL_BAR_STYLE
10283         and GCONF_FONT_NAME.  Move check for fonts within HAVE_XFT.
10284         (xsettings_initialize): Call init_gsettings last.
10285         (xsettings_get_system_font, xsettings_get_system_normal_font):
10286         Add comment.
10288 2011-07-05  Paul Eggert  <eggert@cs.ucla.edu>
10290         Random fixes.  E.g., (random) never returned negative values.
10291         * fns.c (Frandom): Use GET_EMACS_TIME for random seed, and add the
10292         subseconds part to the entropy, as that's a bit more random.
10293         Prefer signed to unsigned, since the signedness doesn't matter and
10294         in general we prefer signed.  When given a limit, use a
10295         denominator equal to INTMASK + 1, not to VALMASK + 1, because the
10296         latter isn't right if USE_2_TAGS_FOR_INTS.
10297         * sysdep.c (get_random): Return a value in the range 0..INTMASK,
10298         not 0..VALMASK.  Don't discard "excess" bits that random () returns.
10300 2011-07-04  Stefan Monnier  <monnier@iro.umontreal.ca>
10302         * textprop.c (text_property_stickiness):
10303         Obey Vtext_property_default_nonsticky.
10304         (syms_of_textprop): Add `display' to Vtext_property_default_nonsticky.
10305         * w32fns.c (syms_of_w32fns):
10306         * xfns.c (syms_of_xfns): Don't Add `display' since it's there by default.
10308 2011-07-04  Paul Eggert  <eggert@cs.ucla.edu>
10310         * fileio.c (barf_or_query_if_file_exists): Use S_ISDIR.
10311         This is more efficient than Ffile_directory_p and avoids a minor race.
10313 2011-07-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10315         * buffer.c (Foverlay_put): Say what the return value is
10316         (bug#7835).
10318         * fileio.c (barf_or_query_if_file_exists): Check first if the file
10319         is a directory before asking whether to use the file name
10320         (bug#7564).
10321         (barf_or_query_if_file_exists): Make the "File is a directory"
10322         error be more correct.
10324         * fns.c (Frequire): Remove the mention of the .gz files, since
10325         that's installation-specific, but keep the mention of
10326         `get-load-suffixes'.
10328 2011-07-04  Paul Eggert  <eggert@cs.ucla.edu>
10330         * editfns.c (Fformat_time_string): Don't assume strlen fits in int.
10331         Report string overflow if the output is too long.
10333 2011-07-04  Juanma Barranquero  <lekktu@gmail.com>
10335         * gnutls.c (Fgnutls_boot): Don't mention :verify-error.
10336         (syms_of_gnutls): Remove duplicate DEFSYM for
10337         Qgnutls_bootprop_verify_hostname_error, an error for
10338         Qgnutls_bootprop_verify_error (which is no longer used).
10340         * eval.c (find_handler_clause): Remove parameters `sig' and `data',
10341         unused since 2011-01-26T20:02:07Z!monnier@iro.umontreal.ca.  All callers changed.
10342         Also (re)move comments that are misplaced or no longer relevant.
10344 2011-07-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10346         * callint.c (Finteractive): Clarify the meaning of "@" (bug#8813).
10348 2011-07-03  Chong Yidong  <cyd@stupidchicken.com>
10350         * xfaces.c (Finternal_merge_in_global_face): Modify the foreground
10351         and background color parameters if they have been changed.
10353 2011-07-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10355         * editfns.c (Fformat): Clarify the - and 0 flags (bug#6659).
10357 2011-07-03  Paul Eggert  <eggert@cs.ucla.edu>
10359         * xsettings.c (SYSTEM_FONT): Define only when used.
10360         No need to define when HAVE_GSETTINGS || !HAVE_XFT.
10362         * keymap.c (access_keymap_1): Now static.
10364 2011-07-02  Chong Yidong  <cyd@stupidchicken.com>
10366         * keyboard.c (command_loop_1): If a down-mouse event is unbound,
10367         leave any prefix arg for the up event (Bug#1586).
10369 2011-07-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10371         * lread.c (syms_of_lread): Mention single symbols defined by
10372         `defvar' or `defconst' (bug#7154).
10374         * fns.c (Frequire): Mention .el.gz files (bug#7314).
10375         (Frequire): Mention get-load-suffixes.
10377 2011-07-02  Martin Rudalics  <rudalics@gmx.at>
10379         * window.h (window): Remove clone_number slot.
10380         * window.c (Fwindow_clone_number, Fset_window_clone_number):
10381         Remove.
10382         (make_parent_window, make_window, saved_window)
10383         (Fset_window_configuration, save_window_save): Don't deal with
10384         clone numbers.
10385         * buffer.c (Qclone_number): Remove declaration.
10386         (sort_overlays, overlay_strings): Don't deal with clone numbers.
10388 2011-07-02  Stefan Monnier  <monnier@iro.umontreal.ca>
10390         Add multiple inheritance to keymaps.
10391         * keymap.c (Fmake_composed_keymap): New function.
10392         (Fset_keymap_parent): Simplify.
10393         (fix_submap_inheritance): Remove.
10394         (access_keymap_1): New function extracted from access_keymap to handle
10395         embedded parents and handle lists of maps.
10396         (access_keymap): Use it.
10397         (Fkeymap_prompt, map_keymap_internal, map_keymap, store_in_keymap)
10398         (Fcopy_keymap): Handle embedded parents.
10399         (Fcommand_remapping, define_as_prefix): Simplify.
10400         (Fkey_binding): Simplify.
10401         (syms_of_keymap): Move minibuffer-local-completion-map,
10402         minibuffer-local-filename-completion-map,
10403         minibuffer-local-must-match-map, and
10404         minibuffer-local-filename-must-match-map to Elisp.
10405         (syms_of_keymap): Defsubr make-composed-keymap.
10406         * keyboard.c (menu_bar_items): Use map_keymap_canonical.
10407         (parse_menu_item): Trivial simplification.
10409 2011-07-01  Glenn Morris  <rgm@gnu.org>
10411         * Makefile.in (SETTINGS_LIBS): Fix typo.
10413 2011-07-01  Kazuhiro Ito  <kzhr@d1.dion.ne.jp>  (tiny change)
10415         * coding.c (Fencode_coding_string): Record the last coding system
10416         used, as the function doc string says (bug#8738).
10418 2011-07-01  Jan Djärv  <jan.h.d@swipnet.se>
10420         * xsettings.c (store_monospaced_changed): Take new font as arg and
10421         check for change against current_mono_font.
10422         (EMACS_TYPE_SETTINGS): Remove this and related defines.
10423         (emacs_settings_constructor, emacs_settings_get_property)
10424         (emacs_settings_set_property, emacs_settings_class_init)
10425         (emacs_settings_init, gsettings_obj): Remove.
10426         (something_changedCB): New function for HAVE_GSETTINGS.
10427         (something_changedCB): HAVE_GCONF: Call store_monospaced_changed
10428         with value as argument.
10429         (init_gsettings): Check that GSETTINGS_SCHEMA exists before calling
10430         g_settings_new (Bug#8967).  Do not create gsettings_obj.
10431         Remove calls to g_settings_bind.  Connect something_changedCB to
10432         "changed".
10434         * xgselect.c: Add defined (HAVE_GSETTINGS).
10435         (xgselect_initialize): Ditto.
10437         * process.c: Add defined (HAVE_GSETTINGS) for xgselect.h
10438         (wait_reading_process_output): Add defined (HAVE_GSETTINGS) for
10439         xg_select.
10441 2011-07-01  Paul Eggert  <eggert@cs.ucla.edu>
10443         * eval.c (struct backtrace): Simplify and port the data structure.
10444         Do not assume that "int nargs : BITS_PER_INT - 2;" produces a
10445         signed bit field, as this assumption is not portable and it makes
10446         Emacs crash when compiled with Sun C 5.8 on sparc.  Do not use
10447         "char debug_on_exit : 1" as this is not portable either; instead,
10448         use the portable "unsigned int debug_on_exit : 1".  Remove unused
10449         member evalargs.  Remove obsolete comments about cc bombing out.
10451 2011-06-30  Jan Djärv  <jan.h.d@swipnet.se>
10453         * xsettings.c: Include glib-object.h, gio/gio.h if HAVE_GSETTINGS.
10454         Let HAVE_GSETTINGS override HAVE_GCONF.
10455         (store_monospaced_changed): New function.
10456         (EMACS_SETTINGS): A new type derived from GObject to handle
10457         GSettings notifications.
10458         (emacs_settings_constructor, emacs_settings_get_property)
10459         (emacs_settings_set_property, emacs_settings_class_init):
10460         New functions.
10461         (gsettings_client, gsettings_obj): New variables.
10462         (GSETTINGS_SCHEMA): New define.
10463         (something_changedCB): Call store_monospaced_changed.
10464         (init_gsettings): New function.
10465         (xsettings_initialize): Call init_gsettings.
10466         (syms_of_xsettings): Initialize gsettings_client, gsettings_obj
10467         to NULL.
10469         * Makefile.in (SETTINGS_CFLAGS, SETTINGS_LIBS): Rename from
10470         GCONF_CFLAGS/LIBS.
10472 2011-06-29  Martin Rudalics  <rudalics@gmx.at>
10474         * window.c (resize_root_window, grow_mini_window)
10475         (shrink_mini_window): Rename Qresize_root_window to
10476         Qwindow_resize_root_window and Qresize_root_window_vertically to
10477         Qwindow_resize_root_window_vertically.
10479 2011-06-28  Paul Eggert  <eggert@cs.ucla.edu>
10481         * gnutls.c (Qgnutls_bootprop_verify_error): Remove unused var.
10483 2011-06-27  Juanma Barranquero  <lekktu@gmail.com>
10485         * makefile.w32-in: Redesign dependencies so they reflect more
10486         clearly which files are directly included by each source file,
10487         and not through other includes.
10489 2011-06-27  Martin Rudalics  <rudalics@gmx.at>
10491         * buffer.c (Qclone_number): Declare static and DEFSYM it.
10492         (sort_overlays, overlay_strings): When an overlay's clone number
10493         matches the window's clone number process the overlay even if
10494         the overlay's window property doesn't match the current window.
10496         * window.c (Fwindow_vchild): Rename to Fwindow_top_child.
10497         (Fwindow_hchild): Rename to Fwindow_left_child.
10498         (Fwindow_next): Rename to Fwindow_next_sibling.
10499         (Fwindow_prev): Rename to Fwindow_prev_sibling.
10500         (resize_window_check): Rename to window_resize_check.
10501         (resize_window_apply): Rename to window_resize_apply.
10502         (Fresize_window_apply): Rename to Fwindow_resize_apply.
10503         (Fdelete_other_windows_internal, resize_frame_windows)
10504         (Fsplit_window_internal, Fdelete_window_internal)
10505         (grow_mini_window, shrink_mini_window)
10506         (Fresize_mini_window_internal): Fix callers accordingly.
10508 2011-06-26  Jan Djärv  <jan.h.d@swipnet.se>
10510         * emacsgtkfixed.h: State that this is only used with Gtk+3.
10511         (emacs_fixed_set_min_size): Remove.
10512         (emacs_fixed_new): Take frame as argument.
10514         * emacsgtkfixed.c: State that this is only used with Gtk+3.
10515         (_EmacsFixedPrivate): Remove minwidth/height.
10516         Add struct frame *f.
10517         (emacs_fixed_init): Initialize priv->f.
10518         (get_parent_class, emacs_fixed_set_min_size): Remove.
10519         (emacs_fixed_new): Set priv->f to argument.
10520         (emacs_fixed_get_preferred_width)
10521         (emacs_fixed_get_preferred_height): Use min_width/height from
10522         frames size_hint to set minimum and natural (Bug#8919).
10523         (XSetWMSizeHints, XSetWMNormalHints): Override these functions
10524         and use min_width/height from frames size_hint to set
10525         min_width/height (Bug#8919).
10527         * gtkutil.c (xg_create_frame_widgets): Pass f to emacs_fixed_new.
10528         (x_wm_set_size_hint): Remove call to emacs_fixed_set_min_size.
10529         Fix indentation.
10531 2011-06-26  Eli Zaretskii  <eliz@gnu.org>
10533         * bidi.c (bidi_paragraph_init): Test for ZV_BYTE before calling
10534         bidi_at_paragraph_end, since fast_looking_at doesn't like to be
10535         called at ZV.
10537 2011-06-26  Chong Yidong  <cyd@stupidchicken.com>
10539         * process.c (wait_reading_process_output): Bypass select if
10540         waiting for a cell while ignoring keyboard input, and input is
10541         pending.  Suggested by Jan Djärv (Bug#8869).
10543 2011-06-25  Paul Eggert  <eggert@cs.ucla.edu>
10545         Use gnulib's dup2 module instead of rolling our own.
10546         * sysdep.c (dup2) [!HAVE_DUP2]: Remove; gnulib now does this.
10548 2011-06-25  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
10550         * dispnew.c (scrolling_window): Before scrolling, turn off a
10551         mouse-highlight in the window being scrolled.
10553 2011-06-24  Juanma Barranquero  <lekktu@gmail.com>
10555         Move DEFSYM to lisp.h and use everywhere.
10557         * character.h (DEFSYM): Move declaration...
10558         * lisp.h (DEFSYM): ...here.
10560         * gnutls.c:
10561         * minibuf.c:
10562         * w32menu.c:
10563         * w32proc.c:
10564         * w32select.c: Don't include character.h.
10566         * alloc.c (syms_of_alloc):
10567         * buffer.c (syms_of_buffer):
10568         * bytecode.c (syms_of_bytecode):
10569         * callint.c (syms_of_callint):
10570         * casefiddle.c (syms_of_casefiddle):
10571         * casetab.c (init_casetab_once):
10572         * category.c (init_category_once, syms_of_category):
10573         * ccl.c (syms_of_ccl):
10574         * cmds.c (syms_of_cmds):
10575         * composite.c (syms_of_composite):
10576         * dbusbind.c (syms_of_dbusbind):
10577         * dired.c (syms_of_dired):
10578         * dispnew.c (syms_of_display):
10579         * doc.c (syms_of_doc):
10580         * editfns.c (syms_of_editfns):
10581         * emacs.c (syms_of_emacs):
10582         * eval.c (syms_of_eval):
10583         * fileio.c (syms_of_fileio):
10584         * fns.c (syms_of_fns):
10585         * frame.c (syms_of_frame):
10586         * fringe.c (syms_of_fringe):
10587         * insdel.c (syms_of_insdel):
10588         * keymap.c (syms_of_keymap):
10589         * lread.c (init_obarray, syms_of_lread):
10590         * macros.c (syms_of_macros):
10591         * msdos.c (syms_of_msdos):
10592         * print.c (syms_of_print):
10593         * process.c (syms_of_process):
10594         * search.c (syms_of_search):
10595         * sound.c (syms_of_sound):
10596         * syntax.c (init_syntax_once, syms_of_syntax):
10597         * terminal.c (syms_of_terminal):
10598         * textprop.c (syms_of_textprop):
10599         * undo.c (syms_of_undo):
10600         * w32.c (globals_of_w32):
10601         * window.c (syms_of_window):
10602         * xdisp.c (syms_of_xdisp):
10603         * xfaces.c (syms_of_xfaces):
10604         * xfns.c (syms_of_xfns):
10605         * xmenu.c (syms_of_xmenu):
10606         * xsettings.c (syms_of_xsettings):
10607         * xterm.c (syms_of_xterm): Use DEFSYM.
10609 2011-06-24  Teodor Zlatanov  <tzz@lifelogs.com>
10611         * gnutls.c (syms_of_gnutls): Use the DEFSYM macro from character.h.
10613 2011-06-23  Paul Eggert  <eggert@cs.ucla.edu>
10615         Integer and buffer overflow fixes (Bug#8873).
10617         * print.c (printchar, strout): Check for string overflow.
10618         (PRINTPREPARE, printchar, strout):
10619         Don't set size unless allocation succeeds.
10621         * minibuf.c (read_minibuf_noninteractive): Use ptrdiff_t, not int,
10622         for sizes.  Check for string overflow more accurately.
10623         Simplify newline removal at end; this suppresses a GCC 4.6.0 warning.
10625         * macros.c: Integer and buffer overflow fixes.
10626         * keyboard.h (struct keyboard.kbd_macro_bufsize):
10627         * macros.c (Fstart_kbd_macro, store_kbd_macro_char):
10628         Use ptrdiff_t, not int, for sizes.
10629         Don't increment bufsize until after realloc succeeds.
10630         Check for size-calculation overflow.
10631         (Fstart_kbd_macro): Use EMACS_INT, not int, for XINT result.
10633         * lisp.h (DEFVAR_KBOARD): Use offsetof instead of char * finagling.
10635         * lread.c: Integer overflow fixes.
10636         (read_integer): Radix is now EMACS_INT, not int,
10637         to improve quality of diagnostics for out-of-range radices.
10638         Calculate buffer size correctly for out-of-range radices.
10639         (read1): Check for integer overflow in radices, and in
10640         read-circle numbers.
10641         (read_escape): Avoid int overflow.
10642         (Fload, openp, read_buffer_size, read1)
10643         (substitute_object_recurse, read_vector, read_list, map_obarray):
10644         Use ptrdiff_t, not int, for sizes.
10645         (read1): Use EMACS_INT, not int, for sizes.
10646         Check for size overflow.
10648         * image.c (cache_image): Check for size arithmetic overflow.
10650         * lread.c: Integer overflow issues.
10651         (saved_doc_string_size, saved_doc_string_length)
10652         (prev_saved_doc_string_size, prev_saved_doc_string_length):
10653         Now ptrdiff_t, not int.
10654         (read1): Don't assume doc string length fits in int.  Check for
10655         out-of-range doc string lengths.
10656         (read_list): Don't assume file position fits in int.
10657         (read_escape): Check for hex character overflow.
10659 2011-06-22  Leo Liu  <sdl.web@gmail.com>
10661         * minibuf.c (Fcompleting_read_default, Vcompleting_read_function):
10662         Move to minibuffer.el.
10664 2011-06-22  Paul Eggert  <eggert@cs.ucla.edu>
10666         Fixes for GLYPH_DEBUG found by GCC 4.6.0 static checking.
10667         The following patches are for when GLYPH_DEBUG && !XASSERT.
10668         * dispextern.h (trace_redisplay_p, dump_glyph_string):
10669         * dispnew.c (flush_stdout):
10670         * xdisp.c (dump_glyph_row, dump_glyph_matrix, dump_glyph):
10671         Mark as externally visible.
10672         * dispnew.c (check_window_matrix_pointers): Now static.
10673         * dispnew.c (window_to_frame_vpos):
10674         * xfns.c (unwind_create_frame):
10675         * xterm.c (x_check_font): Remove unused local.
10676         * scroll.c (CHECK_BOUNDS):
10677         * xfaces.c (cache_fache): Rename local to avoid shadowing.
10678         * xfns.c, w32fns.c (image_cache_refcount, dpyinfo_refcount): Now static.
10679         * xdisp.c (check_window_end): Now a no-op if !XASSERTS.
10680         (debug_first_unchanged_at_end_vpos, debug_last_unchanged_at_beg_vpos)
10681         (debug_dvpos, debug_dy, debug_delta, debug_delta_bytes, debug_end_vpos):
10682         Now static.
10683         (debug_method_add): Use va_list and vsprintf rather than relying
10684         on undefined behavior with wrong number of arguments.
10685         (dump_glyph, dump_glyph_row, Fdump_glyph_matrix):
10686         Don't assume ptrdiff_t and EMACS_INT are the same width as int.
10687         In this code, it's OK to assume C99 behavior for ptrdiff_t formats
10688         since we're not interested in debugging glyphs with old libraries.
10689         * xfaces.c (cache_face): Move debugging code earlier; this pacifies
10690         GCC 4.6.0's static checking.
10692 2011-06-22  Paul Eggert  <eggert@cs.ucla.edu>
10694         Integer overflow and signedness fixes (Bug#8873).
10695         A few related buffer overrun fixes, too.
10697         * font.c (font_score): Use EMACS_INT, not int, to store XINT value.
10699         * dispextern.h (struct face.stipple):
10700         * image.c (x_bitmap_height, x_bitmap_width, x_bitmap_pixmap)
10701         (x_bitmap_mask, x_allocate_bitmap_record)
10702         (x_create_bitmap_from_data, x_create_bitmap_from_file)
10703         (x_destroy_bitmap, x_destroy_all_bitmaps, x_create_bitmap_mask)
10704         (x_create_bitmap_from_xpm_data):
10705         * nsterm.h (struct ns_display_info.bitmaps_size, .bitmaps_last):
10706         * w32term.h (struct w32_display_info.icon_bitmap_id, .bitmaps_size)
10707         (.bitmaps_last):
10708         * xfaces.c (load_pixmap):
10709         * xterm.c (x_bitmap_icon, x_wm_set_icon_pixmap):
10710         * xterm.h (struct x_display_info.icon_bitmap_id, .bitmaps_size)
10711         (.bitmaps_last, struct x_output.icon_bitmap):
10712         Use ptrdiff_t, not int, for bitmap indexes.
10713         (x_allocate_bitmap_record): Check for size overflow.
10714         * dispextern.h, lisp.h: Adjust to API changes elsewhere.
10716         Use ptrdiff_t, not int, for overlay counts.
10717         * buffer.h (overlays_at, sort_overlays, GET_OVERLAYS_AT):
10718         * editfns.c (overlays_around, get_pos_property):
10719         * textprop.c (get_char_property_and_overlay):
10720         * xdisp.c (next_overlay_change, note_mouse_highlight):
10721         * xfaces.c (face_at_buffer_position):
10722         * buffer.c (OVERLAY_COUNT_MAX): New macro.
10723         (overlays_at, overlays_in, sort_overlays, Foverlays_at)
10724         (Fnext_overlay_change, Fprevious_overlay_change)
10725         (mouse_face_overlay_overlaps, Foverlays_in):
10726         Use ptrdiff_t, not int, for sizes.
10727         (overlays_at, overlays_in): Check for size-calculation overflow.
10729         * xterm.c (xim_initialize, same_x_server): Strlen may not fit in int.
10731         * xsmfns.c (smc_save_yourself_CB, x_session_initialize): Avoid strlen.
10732         (x_session_initialize): Do not assume string length fits in int.
10734         * xsettings.c (apply_xft_settings): Fix potential buffer overrun.
10735         This is unlikely, but can occur if DPI is outlandish.
10737         * xsettings.c (Ffont_get_system_normal_font, Ffont_get_system_font):
10738         * xselect.c (Fx_get_atom_name): Avoid need for strlen.
10740         * xrdb.c: Don't assume strlen fits in int; avoid some strlens.
10741         * xrdb.c (magic_file_p, search_magic_path):
10742         Omit last arg SUFFIX; it was always 0.  All callers changed.
10743         (magic_file_p): Use ptrdiff_t, not int.  Check for size overflow.
10745         * xfont.c (xfont_match): Avoid need for strlen.
10747         * xfns.c: Don't assume strlen fits in int.
10748         (xic_create_fontsetname, x_window): Use ptrdiff_t, not int.
10750         * xdisp.c (message_log_check_duplicate): Return intmax_t,
10751         not unsigned long, as we prefer signed integers.  All callers changed.
10752         Detect integer overflow in repeat count.
10753         (message_dolog): Don't assume print length fits in 39 bytes.
10754         (display_mode_element): Don't assume strlen fits in int.
10756         * termcap.c: Don't assume sizes fit in int and never overflow.
10757         (struct termcap_buffer, tgetent): Use ptrdiff_t, not int, for sizes.
10758         (gobble_line): Check for size-calculation overflow.
10760         * minibuf.c (Fread_buffer):
10761         * lread.c (intern, intern_c_string):
10762         * image.c (xpm_scan) [HAVE_NS && !HAVE_XPM]:
10763         Don't assume string length fits in int.
10765         * keyboard.c (parse_tool_bar_item):
10766         * gtkutil.c (style_changed_cb): Avoid need for strlen.
10768         * font.c: Don't assume string length fits in int.
10769         (font_parse_xlfd, font_parse_fcname, font_unparse_fcname):
10770         Use ptrdiff_t, not int.
10771         (font_intern_prop): Don't assume string length fits in int.
10772         Don't assume integer property fits in fixnum.
10773         * font.h (font_intern_prop): 2nd arg is now ptrdiff_t, not int.
10775         * filelock.c: Fix some buffer overrun and integer overflow issues.
10776         (get_boot_time): Don't assume gzip command string fits in 100 bytes.
10777         Reformulate so as not to need the command string.
10778         Invoke gzip -cd rather than gunzip, as it's more portable.
10779         (lock_info_type, lock_file_1, lock_file):
10780         Don't assume pid_t and time_t fit in unsigned long.
10781         (LOCK_PID_MAX): Remove; we now use more-reliable bounds.
10782         (current_lock_owner): Prefer signed type for sizes.
10783         Use memcpy, not strncpy, where memcpy is what is really wanted.
10784         Don't assume (via atoi) that time_t and pid_t fit in int.
10785         Check for time_t and/or pid_t out of range, e.g., via a network share.
10786         Don't alloca where an auto var works fine.
10788         * fileio.c: Fix some integer overflow issues.
10789         (file_name_as_directory, Fexpand_file_name, Fsubstitute_in_file_name):
10790         Don't assume string length fits in int.
10791         (directory_file_name): Don't assume string length fits in long.
10792         (make_temp_name): Don't assume pid fits in int, or that its print
10793         length is less than 20.
10795         * data.c (Fsubr_name): Rewrite to avoid a strlen call.
10797         * coding.c (make_subsidiaries): Don't assume string length fits in int.
10799         * callproc.c (child_setup): Rewrite to avoid two strlen calls.
10801         * process.c (Fformat_network_address): Use EMACS_INT, not EMACS_UINT.
10802         We prefer signed integers, even for size calculations.
10804         * emacs.c: Don't assume string length fits in 'int'.
10805         (DEFINE_DUMMY_FUNCTION, sort_args): Use ptrdiff_t, not int.
10806         (main): Don't invoke strlen when not needed.
10808         * dbusbind.c (XD_ERROR): Don't arbitrarily truncate string.
10809         (XD_DEBUG_MESSAGE): Don't waste a byte.
10811         * callproc.c (getenv_internal_1, getenv_internal)
10812         (Fgetenv_internal):
10813         * buffer.c (init_buffer): Don't assume string length fits in 'int'.
10815         * lread.c (invalid_syntax): Omit length argument.
10816         All uses changed.  This doesn't fix a bug, but it simplifies the
10817         code away from its former Hollerith-constant appearance, and it's
10818         one less 'int' to worry about when looking at integer-overflow issues.
10819         (string_to_number): Simplify 2011-04-26 change by invoking xsignal1.
10821         * lisp.h (DEFUN): Remove bogus use of sizeof (struct Lisp_Subr).
10822         This didn't break anything, but it didn't help either.
10823         It's confusing to put a bogus integer in a place where the actual
10824         value does not matter.
10825         (LIST_END_P): Remove unused macro and its bogus comment.
10826         (make_fixnum_or_float): Remove unnecessary cast to EMACS_INT.
10828         * lisp.h (union Lisp_Object.i): EMACS_INT, not EMACS_UINT.
10829         This is for consistency with the ordinary, non-USE_LISP_UNION_TYPE,
10830         implementation.
10831         (struct Lisp_Bool_Vector.size): EMACS_INT, not EMACS_UINT.
10832         We prefer signed types, and the value cannot exceed the EMACS_INT
10833         range anyway (because otherwise the length would not be representable).
10834         (XSET) [USE_LISP_UNION_TYPE]: Use uintptr_t and intptr_t,
10835         not EMACS_UINT and EMACS_INT, when converting pointer to integer.
10836         This avoids a GCC warning when WIDE_EMACS_INT.
10838         * indent.c (sane_tab_width): New function.
10839         (current_column, scan_for_column, Findent_to, position_indentation)
10840         (compute_motion): Use it.  This is just for clarity.
10841         (Fcompute_motion): Don't assume hscroll and tab offset fit in int.
10843         * image.c (xbm_image_p): Don't assume stated width, height fit in int.
10845         * lisp.h (lint_assume): New macro.
10846         * composite.c (composition_gstring_put_cache):
10847         * ftfont.c (ftfont_shape_by_flt): Use it to pacify GCC 4.6.0.
10849         * editfns.c, insdel.c:
10850         Omit unnecessary forward decls, to simplify future changes.
10852         * ftfont.c (ftfont_shape_by_flt): Use signed integers for lengths.
10854         * font.c (Ffont_shape_gstring): Don't assume glyph len fits in 'int'.
10856         * fns.c (Ffillarray): Don't assume bool vector size fits in 'int'.
10857         Use much-faster test for byte-length change.
10858         Don't assume string byte-length fits in 'int'.
10859         Check that character arg fits in 'int'.
10860         (mapcar1): Declare byte as byte, for clarity.
10862         * alloc.c (Fmake_bool_vector): Avoid unnecessary multiplication.
10864         * fns.c (concat): Catch string overflow earlier.
10865         Do not rely on integer wraparound.
10867         * dispextern.h (struct it.overlay_strings_charpos)
10868         (struct it.selective): Now EMACS_INT, not int.
10869         * xdisp.c (forward_to_next_line_start)
10870         (back_to_previous_visible_line_start)
10871         (reseat_at_next_visible_line_start, next_element_from_buffer):
10872         Don't arbitrarily truncate the value of 'selective' to int.
10874         * xdisp.c (init_iterator): Use XINT, not XFASTINT; it might be < 0.
10876         * composite.c: Don't truncate sizes to 'int'.
10877         (composition_gstring_p, composition_reseat_it)
10878         (composition_adjust_point): Use EMACS_INT, not int.
10879         (get_composition_id, composition_gstring_put_cache): Use EMACS_INT,
10880         not EMACS_UINT, for indexes.
10882         * category.h (CATEGORY_SET_P): Remove unnecessary cast to EMACS_INT.
10884         * buffer.c: Include <verify.h>.
10885         (struct sortvec.priority, struct sortstr.priority):
10886         Now EMACS_INT, not int.
10887         (compare_overlays, cmp_for_strings): Avoid subtraction overflow.
10888         (struct sortstr.size, record_overlay_string)
10889         (struct sortstrlist.size, struct sortlist.used):
10890         Don't truncate size to int.
10891         (record_overlay_string): Check for size-calculation overflow.
10892         (init_buffer_once): Check at compile-time, not run-time.
10894 2011-06-22  Jim Meyering  <meyering@redhat.com>
10896         Don't leak an XBM-image-sized buffer
10897         * image.c (xbm_load): Free the image buffer after using it.
10899 2011-06-21  Paul Eggert  <eggert@cs.ucla.edu>
10901         Port to Sun C.
10902         * composite.c (find_automatic_composition): Omit needless 'return 0;'
10903         that Sun C diagnosed.
10904         * fns.c (secure_hash): Fix pointer signedness issue.
10905         * intervals.c (static_offset_intervals): New function.
10906         (offset_intervals): Use it.
10908 2011-06-21  Leo Liu  <sdl.web@gmail.com>
10910         * deps.mk (fns.o):
10911         * makefile.w32-in ($(BLD)/fns.$(O)): Include sha256.h and
10912         sha512.h.
10914         * fns.c (secure_hash): Rename from crypto_hash_function and change
10915         the first arg to accept symbols.
10916         (Fsecure_hash): New primitive.
10917         (syms_of_fns): New symbols.
10919 2011-06-20  Deniz Dogan  <deniz@dogan.se>
10921         * process.c (Fset_process_buffer): Clarify return value in
10922         docstring.
10924 2011-06-18  Chong Yidong  <cyd@stupidchicken.com>
10926         * dispnew.c (add_window_display_history): Use BVAR.
10928         * xdisp.c (debug_method_add): Use BVAR.
10929         (check_window_end, dump_glyph_matrix, dump_glyph)
10930         (dump_glyph_row, dump_glyph_string): Convert arglist to ANSI C.
10932         * xfaces.c (check_lface_attrs, check_lface, dump_realized_face):
10933         Likewise.
10935         * xfns.c (Fx_create_frame, x_create_tip_frame): Delay image cache
10936         check till after the cache is created in init_frame_faces.
10938 2011-06-17  Stefan Monnier  <monnier@iro.umontreal.ca>
10940         * fns.c (Fsafe_length): Yet another int/Lisp_Object mixup.
10942 2011-06-16  Paul Eggert  <eggert@cs.ucla.edu>
10944         * lisp.h: Include <limits.h>, for INT_MAX, LONG_MAX, LLONG_MAX.
10945         Without this, prin1 mishandles Lisp_Misc_Save_Value printing on
10946         hosts with pre-C99 libraries, because pD is wrongly defined to "t".
10948         Improve buffer-overflow checking (Bug#8873).
10949         * fileio.c (Finsert_file_contents):
10950         * insdel.c (insert_from_buffer_1, replace_range, replace_range_2):
10951         Remove the old (too-loose) buffer overflow checks.
10952         They weren't needed, since make_gap checks for buffer overflow.
10953         * insdel.c (make_gap_larger): Catch buffer overflows that were missed.
10954         The old code merely checked for Emacs fixnum overflow, and relied
10955         on undefined (wraparound) behavior.  The new code avoids undefined
10956         behavior, and also checks for ptrdiff_t and/or size_t overflow.
10958         * editfns.c (Finsert_char): Don't dump core with very negative counts.
10959         Tune.  Don't use wider integers than needed.  Don't use alloca.
10960         Use a bigger 'string' buffer.  Rewrite to avoid 'n > 0' test.
10962         * insdel.c (replace_range): Fix buf overflow when insbytes < outgoing.
10964         * insdel.c, lisp.h (buffer_overflow): New function.
10965         (insert_from_buffer_1, replace_range, replace_range_2):
10966         * insdel.c (make_gap_larger):
10967         * editfns.c (Finsert_char):
10968         * fileio.c (Finsert_file_contents): Use it, to normalize wording.
10970         * buffer.h (BUF_BYTES_MAX): Cast to ptrdiff_t so that it's signed.
10972 2011-06-15  Paul Eggert  <eggert@cs.ucla.edu>
10974         Integer overflow and signedness fixes (Bug#8873, Bug#8828).
10976         * ccl.c (ASCENDING_ORDER): New macro, to work around GCC bug 43772.
10977         (GET_CCL_RANGE, IN_INT_RANGE): Use it.
10979         * fileio.c: Don't assume EMACS_INT fits in off_t.
10980         (emacs_lseek): New static function.
10981         (Finsert_file_contents, Fwrite_region): Use it.
10982         Use SEEK_SET, SEEK_CUR, SEEK_END as appropriate.
10984         * fns.c (Fload_average): Don't assume 100 * load average fits in int.
10986         * fns.c: Don't overflow int when computing a list length.
10987         * fns.c (QUIT_COUNT_HEURISTIC): New constant.
10988         (Flength, Fsafe_length): Use EMACS_INT, not int, to avoid unwanted
10989         truncation on 64-bit hosts.  Check for QUIT every
10990         QUIT_COUNT_HEURISTIC entries rather than every other entry; that's
10991         faster and is responsive enough.
10992         (Flength): Report an error instead of overflowing an integer.
10993         (Fsafe_length): Return a float if the value is not representable
10994         as a fixnum.  This shouldn't happen except in contrived situations.
10995         (Fnthcdr, Fsort): Don't assume list length fits in int.
10996         (Fcopy_sequence): Don't assume vector length fits in int.
10998         * alloc.c: Check that resized vectors' lengths fit in fixnums.
10999         (header_size, word_size): New constants.
11000         (allocate_vectorlike): Don't check size overflow here.
11001         (allocate_vector): Check it here instead, since this is the only
11002         caller of allocate_vectorlike that could cause overflow.
11003         Check that the new vector's length is representable as a fixnum.
11005         * fns.c (next_almost_prime): Don't return a multiple of 3 or 5.
11006         The previous code was bogus.  For example, next_almost_prime (32)
11007         returned 39, which is undesirable as it is a multiple of 3; and
11008         next_almost_prime (24) returned 25, which is a multiple of 5 so
11009         why was the code bothering to check for multiples of 7?
11011         * bytecode.c (exec_byte_code): Use ptrdiff_t, not int, for vector length.
11013         * eval.c, doprnt.c (SIZE_MAX): Remove; inttypes.h defines this now.
11015         Variadic C functions now count arguments with ptrdiff_t.
11016         This partly undoes my 2011-03-30 change, which replaced int with size_t.
11017         Back then I didn't know that the Emacs coding style prefers signed int.
11018         Also, in the meantime I found a few more instances where arguments
11019         were being counted with int, which may truncate counts on 64-bit
11020         machines, or EMACS_INT, which may be unnecessarily wide.
11021         * lisp.h (struct Lisp_Subr.function.aMANY)
11022         (DEFUN_ARGS_MANY, internal_condition_case_n, safe_call):
11023         Arg counts are now ptrdiff_t, not size_t.
11024         All variadic functions and their callers changed accordingly.
11025         (struct gcpro.nvars): Now size_t, not size_t.  All uses changed.
11026         * bytecode.c (exec_byte_code): Check maxdepth for overflow,
11027         to avoid potential buffer overrun.  Don't assume arg counts fit in 'int'.
11028         * callint.c (Fcall_interactively): Check arg count for overflow,
11029         to avoid potential buffer overrun.  Use signed char, not 'int',
11030         for 'varies' array, so that we needn't bother to check its size
11031         calculation for overflow.
11032         * editfns.c (Fformat): Use ptrdiff_t, not EMACS_INT, to count args.
11033         * eval.c (apply_lambda):
11034         * fns.c (Fmapconcat): Use XFASTINT, not XINT, to get args length.
11035         (struct textprop_rec.argnum): Now ptrdiff_t, not int.  All uses changed.
11036         (mapconcat): Use ptrdiff_t, not int and EMACS_INT, to count args.
11038         * callint.c (Fcall_interactively): Don't use index var as event count.
11040         * vm-limit.c (check_memory_limits): Fix incorrect extern function decls.
11041         * mem-limits.h (SIZE): Remove; no longer used.
11043         * xterm.c (x_alloc_nearest_color_1): Prefer int to long when int works.
11045         Remove unnecessary casts.
11046         * xterm.c (x_term_init):
11047         * xfns.c (x_set_border_pixel):
11048         * widget.c (create_frame_gcs): Remove casts to unsigned long etc.
11049         These aren't needed now that we assume ANSI C.
11051         * sound.c (Fplay_sound_internal): Remove cast to unsigned long.
11052         It's more likely to cause problems (due to unsigned overflow)
11053         than to cure them.
11055         * dired.c (Ffile_attributes): Don't use 32-bit hack on 64-bit hosts.
11057         * unexelf.c (unexec): Don't assume BSS addr fits in unsigned.
11059         * xterm.c (handle_one_xevent): Omit unnecessary casts to unsigned.
11061         * keyboard.c (modify_event_symbol): Don't limit alist len to UINT_MAX.
11063         * lisp.h (CHAR_TABLE_SET): Omit now-redundant test.
11065         * lread.c (Fload): Don't compare a possibly-garbage time_t value.
11067         GLYPH_CODE_FACE returns EMACS_INT, not int.
11068         * dispextern.h (merge_faces):
11069         * xfaces.c (merge_faces):
11070         * xdisp.c (get_next_display_element, next_element_from_display_vector):
11071         Don't assume EMACS_INT fits in int.
11073         * character.h (CHAR_VALID_P): Remove unused parameter.
11074         * fontset.c, lisp.h, xdisp.c: All uses changed.
11076         * editfns.c (Ftranslate_region_internal): Omit redundant test.
11078         * fns.c (concat): Minor tuning based on overflow analysis.
11079         This doesn't fix any bugs.  Use int to hold character, instead
11080         of constantly refetching from Emacs object.  Use XFASTINT, not
11081         XINT, for value known to be a character.  Don't bother comparing
11082         a single byte to 0400, as it's always less.
11084         * floatfns.c (Fexpt):
11085         * fileio.c (make_temp_name): Omit unnecessary cast to unsigned.
11087         * editfns.c (Ftranslate_region_internal): Use int, not EMACS_INT
11088         for characters.
11090         * doc.c (get_doc_string): Omit (unsigned)c that mishandled negatives.
11092         * data.c (Faset): If ARRAY is a string, check that NEWELT is a char.
11093         Without this fix, on a 64-bit host (aset S 0 4294967386) would
11094         incorrectly succeed when S was a string, because 4294967386 was
11095         truncated before it was used.
11097         * chartab.c (Fchar_table_range): Use CHARACTERP to check range.
11098         Otherwise, an out-of-range integer could cause undefined behavior
11099         on a 64-bit host.
11101         * composite.c: Use int, not EMACS_INT, for characters.
11102         (fill_gstring_body, composition_compute_stop_pos): Use int, not
11103         EMACS_INT, for values that are known to be in character range.
11104         This doesn't fix any bugs but is the usual style inside Emacs and
11105         may generate better code on 32-bit machines.
11107         Make sure a 64-bit char is never passed to ENCODE_CHAR.
11108         This is for reasons similar to the recent CHAR_STRING fix.
11109         * charset.c (Fencode_char): Check that character arg is actually
11110         a character.  Pass an int to ENCODE_CHAR.
11111         * charset.h (ENCODE_CHAR): Verify that the character argument is no
11112         wider than 'int', as a compile-time check to prevent future regressions
11113         in this area.
11115         * character.c (char_string): Remove unnecessary casts.
11117         Make sure a 64-bit char is never passed to CHAR_STRING.
11118         Otherwise, CHAR_STRING would do the wrong thing on a 64-bit platform,
11119         by silently ignoring the top 32 bits, allowing some values
11120         that were far too large to be valid characters.
11121         * character.h: Include <verify.h>.
11122         (CHAR_STRING, CHAR_STRING_ADVANCE): Verify that the character
11123         arguments are no wider than unsigned, as a compile-time check
11124         to prevent future regressions in this area.
11125         * data.c (Faset):
11126         * editfns.c (Fchar_to_string, general_insert_function, Finsert_char)
11127         (Fsubst_char_in_region):
11128         * fns.c (concat):
11129         * xdisp.c (decode_mode_spec_coding):
11130         Adjust to CHAR_STRING's new requirement.
11131         * editfns.c (Finsert_char, Fsubst_char_in_region):
11132         * fns.c (concat): Check that character args are actually
11133         characters.  Without this test, these functions did the wrong
11134         thing with wildly out-of-range values on 64-bit hosts.
11136         Remove incorrect casts to 'unsigned' that lose info on 64-bit hosts.
11137         These casts should not be needed on 32-bit hosts, either.
11138         * keyboard.c (read_char):
11139         * lread.c (Fload): Remove casts to unsigned.
11141         * lisp.h (UNSIGNED_CMP): New macro.
11142         This fixes comparison bugs on 64-bit hosts.
11143         (ASCII_CHAR_P): Use it.
11144         * casefiddle.c (casify_object):
11145         * character.h (ASCII_BYTE_P, CHAR_VALID_P)
11146         (SINGLE_BYTE_CHAR_P, CHAR_STRING):
11147         * composite.h (COMPOSITION_ENCODE_RULE_VALID):
11148         * dispextern.h (FACE_FROM_ID):
11149         * keyboard.c (read_char): Use UNSIGNED_CMP.
11151         * xmenu.c (dialog_selection_callback) [!USE_GTK]: Cast to intptr_t,
11152         not to EMACS_INT, to avoid GCC warning.
11154         * xfns.c (x_set_scroll_bar_default_width): Remove unused 'int' locals.
11156         * buffer.h (PTR_BYTE_POS, BUF_PTR_BYTE_POS): Remove harmful cast.
11157         The cast incorrectly truncated 64-bit byte offsets to 32 bits, and
11158         isn't needed on 32-bit machines.
11160         * buffer.c (Fgenerate_new_buffer_name):
11161         Use EMACS_INT for count, not int.
11162         (advance_to_char_boundary): Return EMACS_INT, not int.
11164         * data.c (Qcompiled_function): Now static.
11166         * window.c (window_body_lines): Now static.
11168         * image.c (gif_load): Rename local to avoid shadowing.
11170         * lisp.h (SAFE_ALLOCA_LISP): Check for integer overflow.
11171         (struct Lisp_Save_Value): Use ptrdiff_t, not int, for 'integer' member.
11172         * alloc.c (make_save_value): Integer argument is now of type
11173         ptrdiff_t, not int.
11174         (mark_object): Use ptrdiff_t, not int.
11175         * lisp.h (pD): New macro.
11176         * print.c (print_object): Use it.
11178         * alloc.c: Use EMACS_INT, not int, to count objects.
11179         (total_conses, total_markers, total_symbols, total_vector_size)
11180         (total_free_conses, total_free_markers, total_free_symbols)
11181         (total_free_floats, total_floats, total_free_intervals)
11182         (total_intervals, total_strings, total_free_strings):
11183         Now EMACS_INT, not int.  All uses changed.
11184         (Fgarbage_collect): Compute overall total using a double, so that
11185         integer overflow is less likely to be a problem.  Check for overflow
11186         when converting back to an integer.
11187         (n_interval_blocks, n_string_blocks, n_float_blocks, n_cons_blocks)
11188         (n_vectors, n_symbol_blocks, n_marker_blocks): Remove.
11189         These were 'int' variables that could overflow on 64-bit hosts;
11190         they were never used, so remove them instead of repairing them.
11191         (nzombies, ngcs, max_live, max_zombies): Now EMACS_INT, not 'int'.
11192         (inhibit_garbage_collection): Set gc_cons_threshold to max value.
11193         Previously, this ceilinged at INT_MAX, but that doesn't work on
11194         64-bit machines.
11195         (allocate_pseudovector): Don't use EMACS_INT when int would do.
11197         * alloc.c (Fmake_bool_vector): Don't assume vector size fits in int.
11198         (allocate_vectorlike): Check for ptrdiff_t overflow.
11199         (mark_vectorlike, mark_char_table, mark_object): Avoid EMACS_UINT
11200         when a (possibly-narrower) signed value would do just as well.
11201         We prefer using signed arithmetic, to avoid comparison confusion.
11203         * alloc.c: Catch some string size overflows that we were missing.
11204         (XMALLOC_OVERRUN_CHECK_SIZE) [!XMALLOC_OVERRUN_CHECK]: Define to 0,
11205         for convenience in STRING_BYTES_MAX.
11206         (STRING_BYTES_MAX): New macro, superseding the old one in lisp.h.
11207         The definition here is exact; the one in lisp.h was approximate.
11208         (allocate_string_data): Check for string overflow.  This catches
11209         some instances we weren't catching before.  Also, it catches
11210         size_t overflow on (unusual) hosts where SIZE_MAX <= min
11211         (PTRDIFF_MAX, MOST_POSITIVE_FIXNUM), e.g., when size_t is 32 bits
11212         and ptrdiff_t and EMACS_INT are both 64 bits.
11214         * character.c, coding.c, doprnt.c, editfns.c, eval.c:
11215         All uses of STRING_BYTES_MAX replaced by STRING_BYTES_BOUND.
11216         * lisp.h (STRING_BYTES_BOUND): Rename from STRING_BYTES_MAX.
11218         * character.c (string_escape_byte8): Fix nbytes/nchars typo.
11220         * alloc.c (Fmake_string): Check for out-of-range init.
11222 2011-06-15  Stefan Monnier  <monnier@iro.umontreal.ca>
11224         * eval.c (Fdefvaralias): Also mark the target as variable-special-p.
11226 2011-06-14  Jan Djärv  <jan.h.d@swipnet.se>
11228         * xfns.c (x_set_scroll_bar_default_width): Remove argument to
11229         xg_get_default_scrollbar_width.
11231         * gtkutil.c: Include emacsgtkfixed.h if HAVE_GTK3.
11232         (int_gtk_range_get_value): Move to the scroll bar part of the file.
11233         (style_changed_cb): Call update_theme_scrollbar_width and call
11234         x_set_scroll_bar_default_width and xg_frame_set_char_size for
11235         all frames (Bug#8505).
11236         (xg_create_frame_widgets): Call emacs_fixed_new if HAVE_GTK3 (Bug#8505).
11237         Call gtk_window_set_resizable if HAVE_GTK3.
11238         (x_wm_set_size_hint): Call emacs_fixed_set_min_size with min width
11239         and height if HAVE_GTK3 (Bug#8505).
11240         (scroll_bar_width_for_theme): New variable.
11241         (update_theme_scrollbar_width): New function.
11242         (xg_get_default_scrollbar_width): Move code to
11243         update_theme_scrollbar_width, just return scroll_bar_width_for_theme.
11244         (xg_initialize): Call update_theme_scrollbar_width.
11246         * gtkutil.h (xg_get_default_scrollbar_width): Remove argument.
11248         * emacsgtkfixed.c, emacsgtkfixed.h: New files.
11250 2011-06-12  Martin Rudalics  <rudalics@gmx.at>
11252         * frame.c (make_frame): Call other_buffer_safely instead of
11253         other_buffer.
11255         * window.c (temp_output_buffer_show): Call display_buffer with
11256         second argument Vtemp_buffer_show_specifiers and reset latter
11257         immediately after the call.
11258         (Vtemp_buffer_show_specifiers): New variable.
11259         (auto_window_vscroll_p, next_screen_context_lines)
11260         (Vscroll_preserve_screen_position): Remove leading asterisks from
11261         doc-strings.
11263 2011-06-12  Paul Eggert  <eggert@cs.ucla.edu>
11265         Fix minor problems found by GCC 4.6.0 static checking.
11266         * buffer.c (Qclone_number): Remove for now, as it's unused.
11267         (record_buffer, Funrecord_buffer): Rename local to avoid shadowing.
11268         (record_buffer): Remove unused local.
11269         * frame.c (other_visible_frames, frame_buffer_list): Now static.
11270         (set_frame_buffer_list): Remove; unused.
11271         * frame.h (other_visible_frames): Remove decl.
11272         * keyboard.h (menu_items_inuse): Declare only if USE_GTK || USE_MOTIF.
11273         * lisp.h (frame_buffer_list, set_frame_buffer_list): Remove decls.
11274         (add_gpm_wait_descriptor, delete_gpm_wait_descriptor): Declare only
11275         if HAVE_GPM.
11276         * menu.c (menu_items_inuse): Now static unless USE_GTK || USE_MOTIF.
11277         * process.c (add_gpm_wait_descriptor, delete_gpm_wait_descriptor):
11278         Define only if HAVE_GPM.
11279         * widget.c (EmacsFrameResize, emacsFrameClassRec): Now static.
11280         (update_hints_inhibit): Remove; never set.  All uses removed.
11281         * widgetprv.h (emacsFrameClassRec): Remove decl.
11282         * window.c (delete_deletable_window): Now returns void, since it
11283         wasn't returning anything.
11284         (compare_window_configurations): Remove unused locals.
11285         * xfns.c (x_set_scroll_bar_default_width): Remove unused locals.
11286         * xmenu.c (x_menu_set_in_use): Define only if USE_GTK || USE_MOTIF.
11287         (dialog_selection_callback) [!USE_GTK]: Prefer intptr_t for integers
11288         the same widths as pointers.  This follows up on the 2011-05-06 patch.
11289         * xterm.c (x_alloc_lighter_color_for_widget): Define only if USE_LUCID.
11290         * xterm.h: Likewise.
11291         (x_menu_set_in_use): Declare only if USE_GTK || USE_MOTIF.
11293 2011-06-12  Juanma Barranquero  <lekktu@gmail.com>
11295         * makefile.w32-in: Update dependencies.
11296         (LISP_H): Add lib/intprops.h.
11298 2011-06-11  Chong Yidong  <cyd@stupidchicken.com>
11300         * image.c (gif_load): Add animation frame delay to the metadata.
11301         (syms_of_image): Use DEFSYM.  New symbol `delay'.
11303 2011-06-11  Martin Rudalics  <rudalics@gmx.at>
11305         * window.c (delete_deletable_window): Re-add.
11306         (Fset_window_configuration): Rewrite to handle dead buffers and
11307         consequently deletable windows.
11308         (window_tree, Fwindow_tree): Remove.  Supply functionality in
11309         window.el.
11310         (compare_window_configurations): Simplify code.
11312 2011-06-11  Andreas Schwab  <schwab@linux-m68k.org>
11314         * image.c (imagemagick_load_image): Fix type mismatch.
11315         (Fimagemagick_types): Likewise.
11317         * window.h (replace_buffer_in_windows): Declare.
11319 2011-06-11  Martin Rudalics  <rudalics@gmx.at>
11321         * buffer.c: New Lisp objects Qbuffer_list_update_hook and
11322         Qclone_number.  Remove external declaration of Qdelete_window.
11323         (Fbuffer_list): Rewrite doc-string.  Minor restructuring of
11324         code.
11325         (Fget_buffer_create, Fmake_indirect_buffer, Frename_buffer):
11326         Run Qbuffer_list_update_hook if allowed.
11327         (Fother_buffer): Rewrite doc-string.  Major rewrite for new
11328         buffer list implementation.
11329         (other_buffer_safely): New function.
11330         (Fkill_buffer): Replace call to replace_buffer_in_all_windows by
11331         calls to replace_buffer_in_windows and
11332         replace_buffer_in_windows_safely.  Run Qbuffer_list_update_hook
11333         if allowed.
11334         (record_buffer): Inhibit quitting and rewrite using quittable
11335         functions.  Run Qbuffer_list_update_hook if allowed.
11336         (Frecord_buffer, Funrecord_buffer): New functions.
11337         (switch_to_buffer_1, Fswitch_to_buffer): Remove.
11338         Move switch-to-buffer to window.el.
11339         (bury-buffer): Move to window.el.
11340         (Vbuffer_list_update_hook): New variable.
11342         * lisp.h (other_buffer_safely): Add prototype in buffer.c
11343         section.
11345         * window.h (resize_frame_windows): Move up in code.
11346         (Fwindow_frame): Remove EXFUN.
11347         (replace_buffer_in_all_windows): Remove prototype.
11348         (replace_buffer_in_windows_safely): Add prototype.
11350         * window.c: Declare Qdelete_window static again.  Move down
11351         declaration of select_count.
11352         (Fnext_window, Fprevious_window): Rewrite doc-strings.
11353         (Fother_window): Move to window.el.
11354         (window_loop): Remove DELETE_BUFFER_WINDOWS and UNSHOW_BUFFER
11355         cases.  Add REPLACE_BUFFER_IN_WINDOWS_SAFELY case.
11356         (Fdelete_windows_on, Freplace_buffer_in_windows): Move to
11357         window.el.
11358         (replace_buffer_in_windows): Implement by calling
11359         Qreplace_buffer_in_windows.
11360         (replace_buffer_in_all_windows): Remove with some functionality
11361         moved into replace_buffer_in_windows_safely.
11362         (replace_buffer_in_windows_safely): New function.
11363         (select_window_norecord, select_frame_norecord): Move in front
11364         of run_window_configuration_change_hook.  Remove now obsolete
11365         declarations.
11366         (Fset_window_buffer): Rewrite doc-string.
11367         Call Qrecord_window_buffer.
11368         (keys_of_window): Move binding for other-window to window.el.
11370 2011-06-11  Chong Yidong  <cyd@stupidchicken.com>
11372         * dispextern.h (struct image): Replace data member, whose int_val
11373         and ptr_val fields were not used by anything, with a single
11374         lisp_val object.
11376         * image.c (Fimage_metadata, make_image, mark_image, tiff_load)
11377         (gif_clear_image, gif_load, imagemagick_load_image)
11378         (gs_clear_image, gs_load): Callers changed.
11380 2011-06-10  Paul Eggert  <eggert@cs.ucla.edu>
11382         * buffer.h: Include <time.h>, for time_t.
11383         Needed to build on FreeBSD 8.2.  Problem reported by Herbert J. Skuhra.
11385         Fix minor problems found by static checking.
11387         * image.c (PixelGetMagickColor): Declare if ImageMagick headers don't.
11389         Make identifiers static if they are not used in other modules.
11390         * data.c (Qcompiled_function, Qframe, Qvector):
11391         * image.c (QimageMagick, Qsvg):
11392         * minibuf.c (Qmetadata):
11393         * window.c (resize_window_check, resize_root_window): Now static.
11394         * window.h (resize_window_check, resize_root_window): Remove decls.
11396         * window.c (window_deletion_count, delete_deletable_window):
11397         Remove; unused.
11398         (window_body_lines): Now static.
11399         (Fdelete_other_windows_internal): Mark vars as initialized.
11400         Make sure 'resize_failed' is initialized.
11401         (run_window_configuration_change_hook): Rename local to avoid shadowing.
11402         (resize_window_apply): Remove unused local.
11403         * window.h (delete_deletable_window): Remove decl.
11405         * image.c (gif_load, svg_load_image): Rename locals to avoid shadowing.
11406         (imagemagick_load_image): Fix pointer signedness problem by changing
11407         last arg from unsigned char * to char *.  All uses changed.
11408         Also, fix a local for similar reasons.
11409         Remove unused locals.  Remove locals to avoid shadowing.
11410         (fn_rsvg_handle_free): Remove; unused.
11411         (svg_load, svg_load_image): Fix pointer signedness problem.
11412         (imagemagick_load_image): Don't use garbage pointer image_wand.
11414         * ftfont.c (ftfont_get_metrics, ftfont_drive_otf): Remove unused locals.
11416 2011-06-10  Chong Yidong  <cyd@stupidchicken.com>
11418         * image.c (gif_load): Fix omitted cast error introduced by
11419         2011-06-06 change.
11421 2011-06-10  Martin Rudalics  <rudalics@gmx.at>
11423         * window.h (resize_proportionally, orig_total_lines)
11424         (orig_top_line): Remove from window structure.
11425         (set_window_height, set_window_width, change_window_heights)
11426         (Fdelete_window): Remove prototypes.
11427         (resize_frame_windows): Remove duplicate declaration.
11429 2011-06-10  Eli Zaretskii  <eliz@gnu.org>
11431         * window.h (resize_frame_windows, resize_window_check)
11432         (delete_deletable_window, resize_root_window)
11433         (resize_frame_windows): Declare prototypes.
11435         * window.c (resize_window_apply): Make definition be "static" to
11436         match the prototype.
11438 2011-06-10  Martin Rudalics  <rudalics@gmx.at>
11440         * window.c: Remove declarations of Qwindow_size_fixed,
11441         window_min_size_1, window_min_size_2, window_min_size,
11442         size_window, window_fixed_size_p, enlarge_window, delete_window.
11443         Remove static from declaration of Qdelete_window, it's
11444         temporarily needed by Fbury_buffer.
11445         (replace_window): Don't assign orig_top_line and
11446         orig_total_lines.
11447         (Fdelete_window, delete_window): Remove.  Window deletion is
11448         handled by window.el.
11449         (window_loop): Remove DELETE_OTHER_WINDOWS case.
11450         Replace Fdelete_window calls with calls to Qdelete_window.
11451         (Fdelete_other_windows): Remove.  Deleting other windows is
11452         handled by window.el.
11453         (window_fixed_size_p): Remove.  Fixed-sizeness of windows is
11454         handled in window.el.
11455         (window_min_size_2, window_min_size_1, window_min_size): Remove.
11456         Window minimum sizes are handled in window.el.
11457         (shrink_windows, size_window, set_window_height)
11458         (set_window_width, change_window_heights, window_height)
11459         (window_width, CURBEG, CURSIZE, enlarge_window)
11460         (adjust_window_trailing_edge, Fadjust_window_trailing_edge)
11461         (Fenlarge_window, Fshrink_window): Remove.  Window resizing is
11462         handled in window.el.
11463         (make_dummy_parent): Rename to make_parent_window and give it a
11464         second argument horflag.
11465         (make_window): Don't set resize_proportionally any more.
11466         (Fsplit_window): Remove.  Windows are split in window.el.
11467         (save_restore_action, save_restore_orig_size)
11468         (shrink_window_lowest_first, save_restore_orig_size): Remove.
11469         Resize mini windows in window.el.
11470         (grow_mini_window, shrink_mini_window): Implement by calling
11471         Qresize_root_window_vertically, resize_window_check and
11472         resize_window_apply.
11473         (saved_window, Fset_window_configuration, save_window_save):
11474         Do not handle orig_top_line, orig_total_lines, and
11475         resize_proportionally.
11476         (window_min_height, window_min_width): Move to window.el.
11477         (keys_of_window): Move bindings for delete-other-windows,
11478         split-window, delete-window and enlarge-window to window.el.
11480         * buffer.c: Temporarily extern Qdelete_window.
11481         (Fbury_buffer): Temporarily call Qdelete_window instead of
11482         Fdelete_window (Fbury_buffer will move to window.el soon).
11484         * frame.c (set_menu_bar_lines_1): Remove code handling
11485         orig_top_line and orig_total_lines.
11487         * dispnew.c (adjust_frame_glyphs_initially): Don't use
11488         set_window_height but set heights directly.
11489         (change_frame_size_1): Use resize_frame_windows.
11491         * xdisp.c (init_xdisp): Don't use set_window_height but set
11492         heights directly.
11494         * xfns.c (x_set_menu_bar_lines, x_set_tool_bar_lines):
11495         Use resize_frame_windows instead of change_window_heights and run
11496         run_window_configuration_change_hook.
11498         * w32fns.c (x_set_tool_bar_lines): Use resize_frame_windows
11499         instead of change_window_heights and run
11500         run_window_configuration_change_hook.
11502 2011-06-09  Martin Rudalics  <rudalics@gmx.at>
11504         * window.c (replace_window): Rename second argument REPLACEMENT to
11505         NEW.  New third argument SETFLAG.  Rewrite.
11506         (delete_window, make_dummy_parent): Call replace_window with
11507         third argument 1.
11508         (window_list_1): Move down in code.
11509         (run_window_configuration_change_hook): Move set_buffer part
11510         before select_frame_norecord part in order to unwind correctly.
11511         Rename count1 to count.
11512         (recombine_windows, delete_deletable_window, resize_root_window)
11513         (Fdelete_other_windows_internal)
11514         (Frun_window_configuration_change_hook, make_parent_window)
11515         (resize_window_check, resize_window_apply, Fresize_window_apply)
11516         (resize_frame_windows, Fsplit_window_internal)
11517         (Fdelete_window_internal, Fresize_mini_window_internal):
11518         New functions.
11519         (syms_of_window): New variables Vwindow_splits and Vwindow_nest.
11521 2011-06-08  Martin Rudalics  <rudalics@gmx.at>
11523         * window.h (window): Add some new members to window structure -
11524         normal_lines, normal_cols, new_total, new_normal, clone_number,
11525         splits, nest, prev_buffers, next_buffers.
11526         (WINDOW_TOTAL_SIZE): Move here from window.c.
11527         (MIN_SAFE_WINDOW_WIDTH, MIN_SAFE_WINDOW_HEIGHT): Define here.
11529         * window.c (Fwindow_height, Fwindow_width, Fwindow_full_width_p):
11530         Remove.
11531         (make_dummy_parent): Set new members of windows structure.
11532         (make_window): Move down in code.  Handle new members of window
11533         structure.
11534         (Fwindow_clone_number, Fwindow_splits, Fset_window_splits)
11535         (Fwindow_nest, Fset_window_nest, Fwindow_new_total)
11536         (Fwindow_normal_size, Fwindow_new_normal, Fwindow_prev_buffers)
11537         (Fset_window_prev_buffers, Fwindow_next_buffers)
11538         (Fset_window_next_buffers, Fset_window_clone_number):
11539         New functions.
11540         (Fwindow_hscroll, Fwindow_at, Fwindow_point, Fwindow_start)
11541         (Fwindow_end, Fwindow_line_height, Fset_window_dedicated_p):
11542         Doc-string fixes.
11543         (Fwindow_parameters, Fwindow_parameter, Fset_window_parameter):
11544         Argument WINDOW can be now internal window too.
11545         (Fwindow_use_time): Move up in code.
11546         (Fget_buffer_window): Rename argument FRAME to ALL-FRAMES.
11547         Rewrite doc-string.
11548         (Fset_window_configuration, saved_window)
11549         (Fcurrent_window_configuration, save_window_save): Handle new
11550         members of window structure.
11551         (WINDOW_TOTAL_SIZE, MIN_SAFE_WINDOW_WIDTH)
11552         (MIN_SAFE_WINDOW_HEIGHT): Move to window.h.
11553         (syms_of_window): New Lisp objects Qrecord_window_buffer,
11554         Qwindow_deletable_p, Qdelete_window, Qreplace_buffer_in_windows,
11555         Qget_mru_window, Qresize_root_window,
11556         Qresize_root_window_vertically, Qsafe, Qabove, Qbelow,
11557         Qauto_buffer_name; staticpro them.
11559 2011-06-07  Martin Rudalics  <rudalics@gmx.at>
11561         * window.c (Fwindow_total_size, Fwindow_left_column)
11562         (Fwindow_top_line, window_body_lines, Fwindow_body_size)
11563         (Fwindow_list_1): New functions.
11564         (window_box_text_cols): Replace with window_body_cols.
11565         (Fwindow_width, Fscroll_left, Fscroll_right):
11566         Use window_body_cols instead of window_box_text_cols.
11567         (delete_window, Fset_window_configuration):
11568         Call delete_all_subwindows with window as argument.
11569         (delete_all_subwindows): Take a window as argument and not a
11570         structure.  Rewrite.
11571         (window_loop): Remove handling of GET_LRU_WINDOW and
11572         GET_LARGEST_WINDOW.
11573         (Fget_lru_window, Fget_largest_window): Move to window.el.
11575         * window.h: Extern window_body_cols instead of
11576         window_box_text_cols.  delete_all_subwindows now takes a
11577         Lisp_Object as argument.
11579         * indent.c (compute_motion, Fcompute_motion):
11580         Use window_body_cols instead of window_box_text_cols.
11582         * frame.c (delete_frame): Call delete_all_subwindows with root
11583         window as argument.
11585 2011-06-07  Daniel Colascione  <dan.colascione@gmail.com>
11587         * fns.c (Fputhash): Document return value.
11589 2011-06-06  Chong Yidong  <cyd@stupidchicken.com>
11591         * image.c (gif_load): Implement gif89a spec "no disposal" method.
11593 2011-06-06  Paul Eggert  <eggert@cs.ucla.edu>
11595         Cons<->int and similar integer overflow fixes (Bug#8794).
11597         Check for overflow when converting integer to cons and back.
11598         * charset.c (Fdefine_charset_internal, Fdecode_char):
11599         Use cons_to_unsigned to catch overflow.
11600         (Fencode_char): Use INTEGER_TO_CONS.
11601         * composite.h (LGLYPH_CODE): Use cons_to_unsigned.
11602         (LGLYPH_SET_CODE): Use INTEGER_TO_CONS.
11603         * data.c (long_to_cons, cons_to_long): Remove.
11604         (cons_to_unsigned, cons_to_signed): New functions.
11605         These signal an error for invalid or out-of-range values.
11606         * dired.c (Ffile_attributes): Use INTEGER_TO_CONS.
11607         * fileio.c (Fset_visited_file_modtime): Use CONS_TO_INTEGER.
11608         * font.c (Ffont_variation_glyphs):
11609         * fontset.c (Finternal_char_font): Use INTEGER_TO_CONS.
11610         * lisp.h: Include <intprops.h>.
11611         (INTEGER_TO_CONS, CONS_TO_INTEGER): New macros.
11612         (cons_to_signed, cons_to_unsigned): New decls.
11613         (long_to_cons, cons_to_long): Remove decls.
11614         * undo.c (record_first_change): Use INTEGER_TO_CONS.
11615         (Fprimitive_undo): Use CONS_TO_INTEGER.
11616         * xfns.c (Fx_window_property): Likewise.
11617         * xselect.c: Include <limits.h>.
11618         (x_own_selection, selection_data_to_lisp_data):
11619         Use INTEGER_TO_CONS.
11620         (x_handle_selection_request, x_handle_selection_clear)
11621         (x_get_foreign_selection, Fx_disown_selection_internal)
11622         (Fx_get_atom_name, x_send_client_event): Use CONS_TO_INTEGER.
11623         (lisp_data_to_selection_data): Use cons_to_unsigned.
11624         (x_fill_property_data): Use cons_to_signed.
11625         Report values out of range.
11627         Check for buffer and string overflow more precisely.
11628         * buffer.h (BUF_BYTES_MAX): New macro.
11629         * lisp.h (STRING_BYTES_MAX): New macro.
11630         * alloc.c (Fmake_string):
11631         * character.c (string_escape_byte8):
11632         * coding.c (coding_alloc_by_realloc):
11633         * doprnt.c (doprnt):
11634         * editfns.c (Fformat):
11635         * eval.c (verror):
11636         Use STRING_BYTES_MAX, not MOST_POSITIVE_FIXNUM,
11637         since they may not be the same number.
11638         * editfns.c (Finsert_char):
11639         * fileio.c (Finsert_file_contents):
11640         Likewise for BUF_BYTES_MAX.
11642         * image.c: Use ptrdiff_t, not int, for sizes.
11643         (slurp_file): Switch from int to ptrdiff_t.
11644         All uses changed.
11645         (slurp_file): Check that file size fits in both size_t (for
11646         malloc) and ptrdiff_t (for sanity and safety).
11648         * fileio.c (Fverify_visited_file_modtime): Avoid time overflow
11649         if b->modtime has its maximal value.
11651         * dired.c (Ffile_attributes): Don't assume EMACS_INT has >32 bits.
11653         Don't assume time_t can fit into int.
11654         * buffer.h (struct buffer.modtime): Now time_t, not int.
11655         * fileio.c (Fvisited_file_modtime): No need for time_t cast now.
11656         * undo.c (Fprimitive_undo): Use time_t, not int, for time_t value.
11658         Minor fixes for signed vs unsigned integers.
11659         * character.h (MAYBE_UNIFY_CHAR):
11660         * charset.c (maybe_unify_char):
11661         * keyboard.c (read_char, reorder_modifiers):
11662         XINT -> XFASTINT, since the integer must be nonnegative.
11663         * ftfont.c (ftfont_spec_pattern):
11664         * keymap.c (access_keymap, silly_event_symbol_error):
11665         XUINT -> XFASTINT, since the integer must be nonnegative.
11666         (Fsingle_key_description, preferred_sequence_p): XUINT -> XINT,
11667         since it makes no difference and we prefer signed.
11668         * keyboard.c (record_char): Use XUINT when all the neighbors do.
11669         (access_keymap): NATNUMP -> INTEGERP, since the integer must be
11670         nonnegative.
11672 2011-06-06  Stefan Monnier  <monnier@iro.umontreal.ca>
11674         * window.h (Fwindow_frame): Declare.
11676 2011-06-06  Paul Eggert  <eggert@cs.ucla.edu>
11678         * alloc.c: Simplify handling of large-request failures (Bug#8800).
11679         (SPARE_MEMORY): Always define.
11680         (LARGE_REQUEST): Remove.
11681         (memory_full): Use SPARE_MEMORY rather than LARGE_REQUEST.
11683 2011-06-06  Martin Rudalics  <rudalics@gmx.at>
11685         * lisp.h: Move EXFUNS for Fframe_root_window,
11686         Fframe_first_window and Fset_frame_selected_window to window.h.
11688         * window.h: Move EXFUNS for Fframe_root_window,
11689         Fframe_first_window and Fset_frame_selected_window here from
11690         lisp.h.
11692         * frame.c (Fwindow_frame, Fframe_first_window)
11693         (Fframe_root_window, Fframe_selected_window)
11694         (Fset_frame_selected_window): Move to window.c.
11695         (Factive_minibuffer_window): Move to minibuf.c.
11696         (Fother_visible_frames_p): New function.
11698         * minibuf.c (Factive_minibuffer_window): Move here from frame.c.
11700         * window.c (decode_window, decode_any_window): Move up in code.
11701         (Fwindowp, Fwindow_live_p): Rewrite doc-strings.
11702         (inhibit_frame_unsplittable): Remove unused variable.
11703         (Fwindow_buffer): Move up and rewrite doc-string.
11704         (Fwindow_parent, Fwindow_vchild, Fwindow_hchild, Fwindow_next)
11705         (Fwindow_prev): New functions.
11706         (Fwindow_frame): Move here from frame.c.  Accept any window as
11707         argument.
11708         (Fframe_root_window, Fframe_first_window)
11709         (Fframe_selected_window): Move here from frame.c.  Accept frame
11710         or arbitrary window as argument.  Update doc-strings.
11711         (Fminibuffer_window): Move up in code.
11712         (Fwindow_minibuffer_p): Move up in code and simplify.
11713         (Fset_frame_selected_window): Move here from frame.c.
11714         Marginal rewrite.
11715         (Fselected_window, select_window, Fselect_window): Move up in
11716         code.  Minor doc-string fixes.
11718 2011-06-06  Paul Eggert  <eggert@cs.ucla.edu>
11720         * alloc.c (memory_full) [SYSTEM_MALLOC]: Port to MacOS (Bug#8800).
11721         Do not assume that spare memory exists; that assumption is valid
11722         only if SYSTEM_MALLOC.
11723         (LARGE_REQUEST): New macro, so that the issue of large requests
11724         is separated from the issue of spare memory.
11726 2011-06-05  Andreas Schwab  <schwab@linux-m68k.org>
11728         * editfns.c (Fformat): Correctly handle zero flag with hexadecimal
11729         format.  (Bug#8806)
11731         * gtkutil.c (xg_get_default_scrollbar_width): Avoid warning.
11733         * xfns.c (x_set_scroll_bar_default_width): Move declarations
11734         before statements.
11736 2011-06-05  Jan Djärv  <jan.h.d@swipnet.se>
11738         * gtkutil.c (xg_get_default_scrollbar_width): New function.
11740         * gtkutil.h: Declare xg_get_default_scrollbar_width.
11742         * xfns.c (x_set_scroll_bar_default_width): If USE_GTK, get
11743         min width by calling x_set_scroll_bar_default_width (Bug#8505).
11745 2011-06-05  Juanma Barranquero  <lekktu@gmail.com>
11747         * xdisp.c (single_display_spec_intangible_p): Remove declaration.
11749 2011-06-04  Chong Yidong  <cyd@stupidchicken.com>
11751         * xselect.c (x_clipboard_manager_save): Remove redundant arg.
11752         (x_clipboard_manager_save): Add return value.
11753         (x_clipboard_manager_error_1, x_clipboard_manager_error_2):
11754         New error handlers.
11755         (x_clipboard_manager_save_frame, x_clipboard_manager_save_all):
11756         Obey Vx_select_enable_clipboard_manager.  Catch errors in
11757         x_clipboard_manager_save (Bug#8779).
11758         (Vx_select_enable_clipboard_manager): New variable.
11759         (x_get_foreign_selection): Reduce scope of x_catch_errors (Bug#8790).
11761 2011-06-04  Dan Nicolaescu  <dann@ics.uci.edu>
11763         * emacs.c (main): Warn when starting a GTK emacs in daemon mode.
11765 2011-06-04  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
11767         * fringe.c (update_window_fringes): Don't update overlay arrow bitmap
11768         in the current matrix if keep_current_p is non-zero.
11770 2011-06-04  Eli Zaretskii  <eliz@gnu.org>
11772         * bidi.c (bidi_level_of_next_char): Fix last change.
11774 2011-06-03  Eli Zaretskii  <eliz@gnu.org>
11776         Support bidi reordering of text covered by display properties.
11778         * bidi.c (bidi_copy_it): Use offsetof instead of emulating it.
11779         (bidi_fetch_char, bidi_fetch_char_advance): New functions.
11780         (bidi_cache_search, bidi_cache_iterator_state)
11781         (bidi_paragraph_init, bidi_resolve_explicit, bidi_resolve_weak)
11782         (bidi_level_of_next_char, bidi_move_to_visually_next):
11783         Support character positions inside a run of characters covered by a
11784         display string.
11785         (bidi_paragraph_init, bidi_resolve_explicit_1)
11786         (bidi_level_of_next_char): Call bidi_fetch_char and
11787         bidi_fetch_char_advance instead of FETCH_CHAR and
11788         FETCH_CHAR_ADVANCE.
11789         (bidi_init_it): Initialize new members.
11790         (LRE_CHAR, RLE_CHAR, PDF_CHAR, LRO_CHAR, RLO_CHAR): Remove macro
11791         definitions.
11792         (bidi_explicit_dir_char): Lookup character type in bidi_type_table,
11793         instead of using explicit *_CHAR codes.
11794         (bidi_resolve_explicit, bidi_resolve_weak):
11795         Use FETCH_MULTIBYTE_CHAR instead of FETCH_CHAR, as reordering of
11796         bidirectional text is supported only in multibyte buffers.
11797         (bidi_init_it): Accept additional argument FRAME_WINDOW_P and use
11798         it to initialize the frame_window_p member of struct bidi_it.
11799         (bidi_cache_iterator_state, bidi_resolve_explicit_1)
11800         (bidi_resolve_explicit, bidi_resolve_weak)
11801         (bidi_level_of_next_char, bidi_move_to_visually_next): Abort if
11802         bidi_it->nchars is non-positive.
11803         (bidi_level_of_next_char): Don't try to lookup the cache for the
11804         next/previous character if nothing is cached there yet, or if we
11805         were just reseat()'ed to a new position.
11807         * xdisp.c (set_cursor_from_row): Set start and stop points
11808         according to the row's direction when priming the loop that looks
11809         for the glyph on which to display cursor.
11810         (single_display_spec_intangible_p): Function deleted.
11811         (display_prop_intangible_p): Reimplement to call
11812         handle_display_spec instead of single_display_spec_intangible_p.
11813         Accept 3 additional arguments needed by handle_display_spec.
11814         This fixes incorrect cursor motion across display property with complex
11815         values: lists, `(when COND...)' forms, etc.
11816         (single_display_spec_string_p): Support property values that are
11817         lists with the argument STRING its top-level element.
11818         (display_prop_string_p): Fix the condition for processing a
11819         property that is a list to be consistent with handle_display_spec.
11820         (handle_display_spec): New function, refactored from the
11821         last portion of handle_display_prop.
11822         (compute_display_string_pos): Accept additional argument
11823         FRAME_WINDOW_P.  Call handle_display_spec to determine whether the
11824         value of a `display' property is a "replacing spec".
11825         (handle_single_display_spec): Accept 2 additional arguments BUFPOS
11826         and FRAME_WINDOW_P.  If IT is NULL, don't set up the iterator from
11827         the display property, but just return a value indicating whether
11828         the display property will replace the characters it covers.
11829         (Fcurrent_bidi_paragraph_direction): Initialize the nchars and
11830         frame_window_p members of struct bidi_it.
11831         (compute_display_string_pos, compute_display_string_end):
11832         New functions.
11833         (push_it): Accept second argument POSITION, where pop_it should
11834         jump to continue iteration.
11835         (reseat_1): Initialize bidi_it.disp_pos.
11837         * keyboard.c (adjust_point_for_property): Adjust the call to
11838         display_prop_intangible_p to its new signature.
11840         * dispextern.h (struct bidi_it): New member frame_window_p.
11841         (bidi_init_it): Update prototypes.
11842         (display_prop_intangible_p): Update prototype.
11843         (compute_display_string_pos, compute_display_string_end):
11844         Declare prototypes.
11845         (struct bidi_it): New members nchars and disp_pos.  ch_len is now
11846         EMACS_INT.
11848 2011-06-02  Paul Eggert  <eggert@cs.ucla.edu>
11850         Malloc failure behavior now depends on size of allocation.
11851         * alloc.c (buffer_memory_full, memory_full): New arg NBYTES.
11852         * lisp.h: Change signatures accordingly.
11853         * alloc.c, buffer.c, editfns.c, menu.c, minibuf.c, xterm.c:
11854         All callers changed.  (Bug#8762)
11856         * gnutls.c: Use Emacs's memory allocators.
11857         Without this change, the gnutls library would invoke malloc etc.
11858         directly, which causes problems on non-SYNC_INPUT hosts, and which
11859         runs afoul of improving memory_full behavior.  (Bug#8761)
11860         (fn_gnutls_global_set_mem_functions): New macro or function pointer.
11861         (emacs_gnutls_global_init): Use it to specify xmalloc, xrealloc,
11862         xfree instead of the default malloc, realloc, free.
11863         (Fgnutls_boot): No need to check for memory allocation failure,
11864         since xmalloc does that for us.
11866         Remove arbitrary limit of 2**31 entries in hash tables.  (Bug#8771)
11867         * category.c (hash_get_category_set):
11868         * ccl.c (ccl_driver):
11869         * charset.c (Fdefine_charset_internal):
11870         * charset.h (struct charset.hash_index):
11871         * composite.c (get_composition_id, gstring_lookup_cache)
11872         (composition_gstring_put_cache):
11873         * composite.h (struct composition.hash_index):
11874         * dispextern.h (struct image.hash):
11875         * fns.c (next_almost_prime, larger_vector, cmpfn_eql)
11876         (cmpfn_equal, cmpfn_user_defined, hashfn_eq, hashfn_eql)
11877         (hashfn_equal, hashfn_user_defined, make_hash_table)
11878         (maybe_resize_hash_table, hash_lookup, hash_put)
11879         (hash_remove_from_table, hash_clear, sweep_weak_table, SXHASH_COMBINE)
11880         (sxhash_string, sxhash_list, sxhash_vector, sxhash_bool_vector)
11881         (Fsxhash, Fgethash, Fputhash, Fmaphash):
11882         * image.c (make_image, search_image_cache, lookup_image)
11883         (xpm_put_color_table_h):
11884         * lisp.h (struct Lisp_Hash_Table):
11885         * minibuf.c (Ftry_completion, Fall_completions, Ftest_completion):
11886         * print.c (print): Use 'EMACS_UINT' and 'EMACS_INT'
11887         for hashes and hash indexes, instead of 'unsigned' and 'int'.
11888         * alloc.c (allocate_vectorlike):
11889         Check for overflow in vector size calculations.
11890         * ccl.c (ccl_driver):
11891         Check for overflow when converting EMACS_INT to int.
11892         * fns.c, image.c: Remove unnecessary static decls that would otherwise
11893         need to be updated by these changes.
11894         * fns.c (make_hash_table, maybe_resize_hash_table):
11895         Check for integer overflow with large hash tables.
11896         (make_hash_table, maybe_resize_hash_table, Fmake_hash_table):
11897         Prefer the faster XFLOAT_DATA to XFLOATINT where either will do.
11898         (SXHASH_REDUCE): New macro.
11899         (sxhash_string, sxhash_list, sxhash_vector, sxhash_bool_vector):
11900         Use it instead of discarding useful hash info with large hash values.
11901         (sxhash_float): New function.
11902         (sxhash): Use it.  No more need for "& INTMASK" due to above changes.
11903         * lisp.h (FIXNUM_BITS): New macro, useful for SXHASH_REDUCE etc.
11904         (MOST_NEGATIVE_FIXNUM, MOST_POSITIVE_FIXNUM, INTMASK):
11905         Rewrite to use FIXNUM_BITS, as this simplifies things.
11906         (next_almost_prime, larger_vector, sxhash, hash_lookup, hash_put):
11907         Adjust signatures to match updated version of code.
11908         (consing_since_gc): Now EMACS_INT, since a single hash table can
11909         use more than INT_MAX bytes.
11911 2011-06-01  Dan Nicolaescu  <dann@ics.uci.edu>
11913         Make it possible to build with GCC-4.6+ -O2 -flto.
11915         * emacs.c (__malloc_initialize_hook): Mark as EXTERNALLY_VISIBLE.
11917 2011-06-01  Stefan Monnier  <monnier@iro.umontreal.ca>
11919         * minibuf.c (get_minibuffer, read_minibuf_unwind):
11920         Call minibuffer-inactive-mode.
11922 2011-05-31  Juanma Barranquero  <lekktu@gmail.com>
11924         * makefile.w32-in ($(BLD)/data.$(O), $(BLD)/editfns.$(O)):
11925         Update dependencies.
11927 2011-05-31  Dan Nicolaescu  <dann@ics.uci.edu>
11929         * data.c (init_data): Remove code for UTS, this system is not
11930         supported anymore.
11932 2011-05-31  Dan Nicolaescu  <dann@ics.uci.edu>
11934         Don't force ./temacs to start in terminal mode.
11936         * frame.c (make_initial_frame): Initialize faces in all cases, not
11937         only when CANNOT_DUMP is defined.
11938         * dispnew.c (init_display): Remove CANNOT_DUMP condition.
11940 2011-05-31  Dan Nicolaescu  <dann@ics.uci.edu>
11942         * dispnew.c (add_window_display_history): Use const for the string
11943         pointer.  Remove declaration, not needed.
11945 2011-05-31  Paul Eggert  <eggert@cs.ucla.edu>
11947         Use 'inline', not 'INLINE'.
11948         <http://lists.gnu.org/archive/html/emacs-devel/2011-05/msg00914.html>
11949         * alloc.c, fontset.c (INLINE): Remove.
11950         * alloc.c, bidi.c, charset.c, coding.c, dispnew.c, fns.c, image.c:
11951         * intervals.c, keyboard.c, process.c, syntax.c, textprop.c, w32term.c:
11952         * xdisp.c, xfaces.c, xterm.c: Replace all uses of INLINE with inline.
11953         * gmalloc.c (register_heapinfo): Use inline unconditionally.
11954         * lisp.h (LISP_MAKE_RVALUE): Use inline, not __inline__.
11956 2011-05-31  Dan Nicolaescu  <dann@ics.uci.edu>
11958         Make it possible to run ./temacs.
11960         * callproc.c (set_initial_environment): Remove CANNOT_DUMP code,
11961         syms_of_callproc does the same thing.  Remove test for
11962         "initialized", do it in the caller.
11963         * emacs.c (main): Avoid calling set_initial_environment when dumping.
11965 2011-05-31  Stefan Monnier  <monnier@iro.umontreal.ca>
11967         * minibuf.c (Finternal_complete_buffer): Return `category' metadata.
11968         (read_minibuf): Use get_minibuffer.
11969         (syms_of_minibuf): Use DEFSYM.
11970         (Qmetadata): New var.
11971         * data.c (Qbuffer): Don't make it static.
11972         (syms_of_data): Use DEFSYM.
11974 2011-05-31  Paul Eggert  <eggert@cs.ucla.edu>
11976         * ccl.c (CCL_CODE_RANGE): Allow negative numbers.  (Bug#8751)
11977         (CCL_CODE_MIN): New macro.
11979 2011-05-30  Paul Eggert  <eggert@cs.ucla.edu>
11981         * alloc.c (lisp_align_malloc): Omit unnecessary val==NULL tests.
11983         * eval.c (Qdebug): Now static.
11984         * lisp.h (Qdebug): Remove decl.  This reverts a part of the
11985         2011-04-26T11:26:05Z!dan.colascione@gmail.com that inadvertently undid part of
11986         2011-04-14T06:48:41Z!eggert@cs.ucla.edu.
11988 2011-05-29  Chong Yidong  <cyd@stupidchicken.com>
11990         * image.c: Various fixes to ImageMagick code comments.
11991         (Fimagemagick_types): Doc fix.
11993 2011-05-29  Paul Eggert  <eggert@cs.ucla.edu>
11995         Minor fixes prompted by GCC 4.6.0 warnings.
11997         * xselect.c (converted_selections, conversion_fail_tag): Now static.
11999         * emacs.c [HAVE_X_WINDOWS]: Include "xterm.h".
12000         (x_clipboard_manager_save_all): Move extern decl to ...
12001         * xterm.h: ... here, so that it can be checked for consistency.
12003 2011-05-29  Chong Yidong  <cyd@stupidchicken.com>
12005         * xselect.c (x_clipboard_manager_save_frame)
12006         (x_clipboard_manager_save_all): New functions.
12007         (Fx_clipboard_manager_save): Lisp function deleted.
12009         * emacs.c (Fkill_emacs): Call x_clipboard_manager_save_all.
12010         * frame.c (delete_frame): Call x_clipboard_manager_save_frame.
12012         * xterm.h: Update prototype.
12014 2011-05-28  William Xu  <william.xwl@gmail.com>
12016         * nsterm.m (ns_term_shutdown): Synchronize user defaults before
12017         exiting (Bug#8239).
12019 2011-05-28  Jim Meyering  <meyering@redhat.com>
12021         Avoid a sign-extension bug in crypto_hash_function.
12022         * fns.c (to_uchar): Define.
12023         (crypto_hash_function): Use it to convert some newly-signed
12024         variables to unsigned, to avoid sign-extension bugs.  For example,
12025         without this change, (md5 "truc") would evaluate to
12026         45723a2aff78ff4fff7fff1114760e62 rather than the expected
12027         45723a2af3788c4ff17f8d1114760e62.  Reported by Antoine Levitt in
12028         https://lists.gnu.org/archive/html/emacs-devel/2011-05/msg00883.html.
12030 2011-05-27  Paul Eggert  <eggert@cs.ucla.edu>
12032         Integer overflow fixes.
12034         * dbusbind.c: Serial number integer overflow fixes.
12035         (CHECK_DBUS_SERIAL_GET_SERIAL): New macro.
12036         (Fdbus_call_method_asynchronously, xd_read_message_1): Use a float
12037         to hold a serial number that is too large for a fixnum.
12038         (Fdbus_method_return_internal, Fdbus_method_error_internal):
12039         Check for serial numbers out of range.  Decode any serial number
12040         that was so large that it became a float.  (Bug#8722)
12042         * dbusbind.c: Use XFASTINT rather than XUINT, and check for nonneg.
12043         (Fdbus_call_method, Fdbus_call_method_asynchronously):
12044         Use XFASTINT rather than XUINT when numbers are nonnegative.
12045         (xd_append_arg, Fdbus_method_return_internal):
12046         (Fdbus_method_error_internal): Likewise.  Also, for unsigned
12047         arguments, check that Lisp number is nonnegative, rather than
12048         silently wrapping negative numbers around.  (Bug#8722)
12049         (xd_read_message_1): Don't assume dbus_uint32_t can fit in int.
12050         (Bug#8722)
12052         * data.c (arith_driver, Flsh): Avoid unnecessary casts to EMACS_UINT.
12054         * ccl.c (ccl_driver): Redo slightly to avoid the need for 'unsigned'.
12056         ccl: Add integer overflow checks.
12057         * ccl.c (CCL_CODE_MAX, GET_CCL_RANGE, GET_CCL_CODE, GET_CCL_INT):
12058         (IN_INT_RANGE): New macros.
12059         (ccl_driver): Use them to check for integer overflow when
12060         decoding a CCL program.  Many of the new checks are whether XINT (x)
12061         fits in int; it doesn't always, on 64-bit hosts.  The new version
12062         doesn't catch all possible integer overflows, but it's an
12063         improvement.  (Bug#8719)
12065         * alloc.c (make_event_array): Use XINT, not XUINT.
12066         There's no need for unsigned here.
12068         * mem-limits.h (EXCEEDS_LISP_PTR) [!USE_LSB_TAG]: EMACS_UINT -> uintptr_t
12069         This follows up to the 2011-05-06 change that substituted uintptr_t
12070         for EMACS_INT.  This case wasn't caught back then.
12072         Rework Fformat to avoid integer overflow issues.
12073         * editfns.c: Include <float.h> unconditionally, as it's everywhere
12074         now (part of C89).  Include <verify.h>.
12075         (MAX_10_EXP, CONVERTED_BYTE_SIZE): Remove; no longer needed.
12076         (pWIDE, pWIDElen, signed_wide, unsigned_wide): New defns.
12077         (Fformat): Avoid the prepass trying to compute sizes; it was only
12078         approximate and thus did not catch overflow reliably.  Instead, walk
12079         through the format just once, formatting and computing sizes as we go,
12080         checking for integer overflow at every step, and allocating a larger
12081         buffer as needed.  Keep track separately whether the format is
12082         multibyte.  Keep only the most-recently calculated precision, rather
12083         than them all.  Record whether each argument has been converted to
12084         string.  Use EMACS_INT, not int, for byte and char and arg counts.
12085         Support field widths and precisions larger than INT_MAX.  Avoid
12086         sprintf's undefined behavior with conversion specifications such as %#d
12087         and %.0c.  Fix bug with strchr succeeding on '\0' when looking for
12088         flags.  Fix bug with (format "%c" 256.0).  Avoid integer overflow when
12089         formatting out-of-range floating point numbers with int
12090         formats.  (Bug#8668)
12092         * lisp.h (FIXNUM_OVERFLOW_P): Work even if arg is a NaN.
12094         * data.c: Avoid integer truncation in expressions involving floats.
12095         * data.c: Include <intprops.h>.
12096         (arith_driver): When there's an integer overflow in an expression
12097         involving floating point, convert the integers to floating point
12098         so that the resulting value does not suffer from catastrophic
12099         integer truncation.  For example, on a 64-bit host (* 4
12100         most-negative-fixnum 0.5) should yield about -4.6e+18, not zero.
12101         Do not rely on undefined behavior after integer overflow.
12103         merge count_size_as_multibyte, parse_str_to_multibyte
12104         * character.c, character.h (count_size_as_multibyte):
12105         Rename from parse_str_to_multibyte; all uses changed.
12106         Check for integer overflow.
12107         * insdel.c, lisp.h (count_size_as_multibyte): Remove,
12108         since it's now a duplicate of the other.  This is more of
12109         a character than a buffer op, so better that it's in character.c.
12110         * fns.c, print.c: Adjust to above changes.
12112 2011-05-27  Stefan Monnier  <monnier@iro.umontreal.ca>
12114         * xselect.c (x_convert_selection): Yet another int/Lisp_Object mixup.
12116 2011-05-27  Paul Eggert  <eggert@cs.ucla.edu>
12118         * xselect.c: Fix minor problems prompted by GCC 4.6.0 warnings.
12119         (x_handle_selection_request, frame_for_x_selection): Remove unused vars.
12120         (x_clipboard_manager_save): Now static.
12121         (Fx_clipboard_manager_save): Rename local to avoid shadowing.
12123         * fns.c: Fix minor problems prompted by GCC 4.6.0 warnings.
12124         (crypto_hash_function): Now static.
12125         Fix pointer signedness problems.  Avoid unnecessary initializations.
12127 2011-05-27  Chong Yidong  <cyd@stupidchicken.com>
12129         * termhooks.h (Vselection_alist): Make it terminal-local.
12131         * terminal.c (create_terminal): Initialize it.
12133         * xselect.c: Support for clipboard managers.
12134         (Vselection_alist): Move to termhooks.h as terminal-local var.
12135         (LOCAL_SELECTION): New macro.
12136         (x_atom_to_symbol): Handle x_display_info_for_display fail case.
12137         (symbol_to_x_atom): Remove gratuitous arg.
12138         (x_handle_selection_request, lisp_data_to_selection_data)
12139         (x_get_foreign_selection, Fx_register_dnd_atom): Callers changed.
12140         (x_own_selection, x_get_local_selection, x_convert_selection):
12141         New arg, specifying work frame.  Use terminal-local Vselection_alist.
12142         (some_frame_on_display): Delete unused function.
12143         (Fx_own_selection_internal, Fx_get_selection_internal)
12144         (Fx_disown_selection_internal, Fx_selection_owner_p)
12145         (Fx_selection_exists_p): New optional frame arg.
12146         (frame_for_x_selection, Fx_clipboard_manager_save): New functions.
12147         (x_handle_selection_clear): Don't treat other terminals with the
12148         same keyboard specially.  Use the terminal-local Vselection_alist.
12149         (x_clear_frame_selections): Use Frun_hook_with_args.
12151         * xterm.c (x_term_init): Intern ATOM and CLIPBOARD_MANAGER atoms.
12153         * xterm.h: Add support for those atoms.
12155 2011-05-26  Chong Yidong  <cyd@stupidchicken.com>
12157         * xselect.c: ICCCM-compliant handling of MULTIPLE targets.
12158         (converted_selections, conversion_fail_tag): New global variables.
12159         (x_selection_request_lisp_error): Free the above.
12160         (x_get_local_selection): Remove unnecessary code.
12161         (x_reply_selection_request): Args changed; handle arbitrary array
12162         of converted selections stored in converted_selections.
12163         Separate the XChangeProperty and SelectionNotify steps.
12164         (x_handle_selection_request): Rewrite to handle MULTIPLE target.
12165         (x_convert_selection): New function.
12166         (x_handle_selection_event): Simplify.
12167         (x_get_foreign_selection): Don't ignore incoming requests while
12168         waiting for an answer; this will fail when we implement
12169         SAVE_TARGETS, and seems unnecessary anyway.
12170         (selection_data_to_lisp_data): Recognize ATOM_PAIR type.
12171         (Vx_sent_selection_functions): Doc fix.
12173 2011-05-26  Leo Liu  <sdl.web@gmail.com>
12175         * editfns.c (Ftranspose_regions): Allow empty regions.  (Bug#8699)
12177 2011-05-25  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
12179         * dispextern.h (struct glyph_row): New member fringe_bitmap_periodic_p.
12181         * dispnew.c (shift_glyph_matrix, scrolling_window): Mark scrolled row
12182         for fringe update if it has periodic bitmap.
12183         (row_equal_p): Also compare left_fringe_offset, right_fringe_offset,
12184         and fringe_bitmap_periodic_p.
12186         * fringe.c (get_fringe_bitmap_data): New function.
12187         (draw_fringe_bitmap_1, update_window_fringes): Use it.
12188         (update_window_fringes): Record periodicity of fringe bitmap in glyph
12189         row.  Mark glyph row for fringe update if periodicity changed.
12191         * xdisp.c (try_window_reusing_current_matrix): Don't mark scrolled row
12192         for fringe update unless it has periodic bitmap.
12194 2011-05-25  Kenichi Handa  <handa@m17n.org>
12196         * xdisp.c (get_next_display_element): Set correct it->face_id for
12197         a static composition.
12199 2011-05-24  Leo Liu  <sdl.web@gmail.com>
12201         * deps.mk (fns.o):
12202         * makefile.w32-in ($(BLD)/fns.$(O)): Include sha1.h.
12204         * fns.c (crypto_hash_function, Fsha1): New function.
12205         (Fmd5): Use crypto_hash_function.
12206         (syms_of_fns): Add Ssha1.
12208 2011-05-22  Paul Eggert  <eggert@cs.ucla.edu>
12210         * gnutls.c: Remove unused macros.
12211         (fn_gnutls_transport_set_lowat, fn_gnutls_transport_set_pull_function):
12212         (fn_gnutls_transport_set_push_function) [!WINDOWSNT]:
12213         Remove macros that are defined and never used.
12214         Caught by gcc -Wunused-macros (GCC 4.6.0, Fedora 14).
12216 2011-05-22  Chong Yidong  <cyd@stupidchicken.com>
12218         * xselect.c (syms_of_xselect): Remove unused symbol SAVE_TARGETS.
12219         (Fx_get_selection_internal): Minor cleanup.
12220         (Fx_own_selection_internal): Rename arguments for consistency with
12221         select.el.
12223 2011-05-22  Paul Eggert  <eggert@cs.ucla.edu>
12225         * xselect.c (QSAVE_TARGETS): New static var, to fix build failure.
12227 2011-05-22  Chong Yidong  <cyd@stupidchicken.com>
12229         * xselect.c (syms_of_xselect): Include character.h; use DEFSYM.
12231 2011-05-21  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
12233         * dispnew.c (scrolling_window): Don't exclude the case that the
12234         last enabled row in the desired matrix touches the bottom boundary.
12236 2011-05-21  Glenn Morris  <rgm@gnu.org>
12238         * Makefile.in ($(etc)/DOC): Make second command line even shorter.
12239         (SOME_MACHINE_OBJECTS): Replace FONT_OBJ by its maximal expansion,
12240         and add some more files.
12242 2011-05-20  Eli Zaretskii  <eliz@gnu.org>
12244         * callproc.c (Fcall_process) [MSDOS]: Fix arguments to
12245         report_file_error introduced by the change from 2011-05-07.
12247 2011-05-20  Paul Eggert  <eggert@cs.ucla.edu>
12249         * systime.h (Time): Define only if emacs is defined.
12250         This is to allow ../lib-src/profile.c to be compiled on FreeBSD,
12251         where the include path doesn't have X11/X.h by default.  See
12252         <http://lists.gnu.org/archive/html/emacs-devel/2011-05/msg00561.html>.
12254 2011-05-20  Kenichi Handa  <handa@m17n.org>
12256         * composite.c (find_automatic_composition): Fix previous change.
12258 2011-05-20  Glenn Morris  <rgm@gnu.org>
12260         * lisp.mk: New file, split from Makefile.in.
12261         * Makefile.in (lisp): Move to separate file, inserted by @lisp_frag@.
12262         (shortlisp): Remove.
12263         ($(etc)/DOC): Edit lisp.mk rather than using $shortlisp.
12265 2011-05-19  Glenn Morris  <rgm@gnu.org>
12267         * Makefile.in (MSDOS_SUPPORT_REAL, MSDOS_SUPPORT, NS_SUPPORT)
12268         (REAL_MOUSE_SUPPORT, GPM_MOUSE_SUPPORT, MOUSE_SUPPORT, TOOLTIP_SUPPORT)
12269         (BASE_WINDOW_SUPPORT, X_WINDOW_SUPPORT, WINDOW_SUPPORT): Remove.
12270         (lisp): Set the order to that of loadup.el.
12271         (shortlisp): Make it a copy of $lisp.
12272         (SOME_MACHINE_LISP): Remove.
12273         ($(etc)/DOC): Depend just on $lisp, not $SOME_MACHINE_LISP too.
12274         Use just $shortlisp, not $SOME_MACHINE_LISP too.
12276 2011-05-18  Kenichi Handa  <handa@m17n.org>
12278         * composite.c (CHAR_COMPOSABLE_P): Add more check for efficiency.
12279         (BACKWARD_CHAR): Wrap the arg STOP by parenthesis.
12280         (find_automatic_composition): Mostly rewrite for efficiency.
12282 2011-05-18  Juanma Barranquero  <lekktu@gmail.com>
12284         * makefile.w32-in: Update dependencies.
12286 2011-05-18  Christoph Scholtes  <cschol2112@googlemail.com>
12288         * menu.c: Include limits.h (fixes the MS-Windows build broken by
12289         2011-06-18T18:49:19Z!cyd@stupidchicken.com).
12291 2011-05-18  Paul Eggert  <eggert@cs.ucla.edu>
12293         Fix some integer overflow issues, such as string length overflow.
12295         * insdel.c (count_size_as_multibyte): Check for string overflow.
12297         * character.c (lisp_string_width): Check for string overflow.
12298         Use EMACS_INT, not int, for string indexes and lengths; in
12299         particular, 2nd arg is now EMACS_INT, not int.  Do not crash if
12300         the resulting string length overflows an EMACS_INT; instead,
12301         report a string overflow if no precision given.  When checking for
12302         precision exhaustion, use a check that cannot possibly have
12303         integer overflow.  (Bug#8675)
12304         * character.h (lisp_string_width): Adjust to new signature.
12306         * alloc.c (string_overflow): New function.
12307         (Fmake_string): Use it.  This doesn't change behavior, but saves
12308         a few bytes and will simplify future changes.
12309         * character.c (string_escape_byte8): Likewise.
12310         * lisp.h (string_overflow): New decl.
12312         Fixups, following up to the user-interface timestamp change.
12313         * nsterm.m (last_mouse_movement_time, ns_mouse_position): Use Time
12314         for UI timestamps, instead of unsigned long.
12315         * msdos.c (mouse_get_pos): Likewise.
12316         * w32inevt.c (movement_time, w32_console_mouse_position): Likewise.
12317         * w32gui.h (Time): Define by including "systime.h" rather than by
12318         declaring it ourselves.  (Bug#8664)
12320         * dispextern.h (struct image): Don't assume time_t <= unsigned long.
12321         * image.c (clear_image_cache): Likewise.
12323         * term.c (term_mouse_position): Don't assume time_t wraparound.
12325         Be more systematic about user-interface timestamps.
12326         Before, the code sometimes used 'Time', sometimes 'unsigned long',
12327         and sometimes 'EMACS_UINT', to represent these timestamps.
12328         This change causes it to use 'Time' uniformly, as that's what X uses.
12329         This makes the code easier to follow, and makes it easier to catch
12330         integer overflow bugs such as Bug#8664.
12331         * frame.c (Fmouse_position, Fmouse_pixel_position):
12332         Use Time, not unsigned long, for user-interface timestamps.
12333         * keyboard.c (last_event_timestamp, kbd_buffer_get_event): Likewise.
12334         (button_down_time, make_lispy_position, make_lispy_movement): Likewise.
12335         * keyboard.h (last_event_timestamp): Likewise.
12336         * menu.c (Fx_popup_menu) [!HAVE_X_WINDOWS]: Likewise.
12337         * menu.h (xmenu_show): Likewise.
12338         * term.c (term_mouse_position): Likewise.
12339         * termhooks.h (struct input_event.timestamp): Likewise.
12340         (struct terminal.mouse_position_hook): Likewise.
12341         * xmenu.c (create_and_show_popup_menu, xmenu_show): Likewise.
12342         * xterm.c (XTmouse_position, x_scroll_bar_report_motion): Likewise.
12343         * systime.h (Time): New decl.  Pull it in from <X11/X.h> if
12344         HAVE_X_WINDOWS, otherwise define it as unsigned long, which is
12345         what it was before.
12346         * menu.h, termhooks.h: Include "systime.h", for Time.
12348         * keyboard.c (make_lispy_event): Fix problem in integer overflow.
12349         Don't assume that the difference between two unsigned long values
12350         can fit into an integer.  At this point, we know button_down_time
12351         <= event->timestamp, so the difference must be nonnegative, so
12352         there's no need to cast the result if double-click-time is
12353         nonnegative, as it should be; check that it's nonnegative, just in
12354         case.  This bug is triggered when events are more than 2**31 ms
12355         apart (about 25 days).  (Bug#8664)
12357         * xselect.c (last_event_timestamp): Remove duplicate decl.
12358         (x_own_selection): Remove needless cast to unsigned long.
12360         * xmenu.c (set_frame_menubar): Use int, not EMACS_UINT, for indexes
12361         that always fit in int.  Use a sentinel instead of a counter, to
12362         avoid a temp and to allay GCC's concerns about possible int overflow.
12363         * frame.h (struct frame): Use int for menu_bar_items_used
12364         instead of EMACS_INT, since it always fits in int.
12366         * menu.c (grow_menu_items): Check for int overflow.
12368         * xmenu.c (set_frame_menubar): Don't mishandle vectors with no nils.
12370         * xterm.c: Use EMACS_INT for Emacs modifiers, and int for X modifiers.
12371         Before, the code was not consistent.  These values cannot exceed
12372         2**31 - 1 so there's no need to make them unsigned.
12373         (x_x_to_emacs_modifiers): Accept int and return EMACS_INT.
12374         (x_emacs_to_x_modifiers): Accept EMACS_INT and return int.
12375         (x_x_to_emacs_modifiers, x_emacs_to_x_modifiers): Reject non-integers
12376         as modifiers.
12377         * xterm.h (x_x_to_emacs_modifiers): Adjust to signature change.
12379         * lisp.h (XINT) [USE_LISP_UNION_TYPE]: Cast to EMACS_INT.
12380         (XUINT) [USE_LISP_UNION_TYPE]: Cast to EMACS_UINT.
12381         Otherwise, GCC 4.6.0 warns about printf (pI, XINT (...)),
12382         presumably because the widths might not match.
12384         * window.c (size_window): Avoid needless test at loop start.
12386 2011-05-18  Courtney Bane  <emacs-bugs-7626@cbane.org>  (tiny change)
12388         * term.c (Fresume_tty): Restore hooks before reinitializing (bug#8687).
12390 2011-05-12  Drew Adams  <drew.adams@oracle.com>
12392         * textprop.c (Fprevious_single_char_property_change): Doc fix (bug#8655).
12394 2011-05-12  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
12396         * w32term.c (w32_draw_fringe_bitmap): Rename local vars `left' and
12397         `width' to `bar_area_x' and `bar_area_width', respectively.
12398         (x_scroll_run): Take account of fringe background extension.
12400         * xterm.c (x_draw_fringe_bitmap) [USE_TOOLKIT_SCROLL_BARS]:
12401         Rename local vars `left' and `width' to `bar_area_x' and
12402         `bar_area_width', respectively.
12403         (x_scroll_run) [USE_TOOLKIT_SCROLL_BARS]: Take account of fringe
12404         background extension.
12406 2011-05-10  Jim Meyering  <meyering@redhat.com>
12408         * xdisp.c (x_intersect_rectangles): Fix typo "the the -> the".
12410 2011-05-10  Juanma Barranquero  <lekktu@gmail.com>
12412         * image.c (Finit_image_library): Return t for built-in image types,
12413         like pbm and xbm.  (Bug#8640)
12415 2011-05-09  Andreas Schwab  <schwab@linux-m68k.org>
12417         * w32menu.c (set_frame_menubar): Fix submenu allocation.
12419 2011-05-07  Eli Zaretskii  <eliz@gnu.org>
12421         * w32console.c (Fset_screen_color): Doc fix.
12422         (Fget_screen_color): New function.
12423         (syms_of_ntterm): Defsubr it.
12425         * callproc.c (call_process_cleanup) [MSDOS]: Don't close and
12426         unlink the temporary file if Fcall_process didn't create it in the
12427         first place.
12428         (Fcall_process) [MSDOS]: Don't create tempfile if stdout of the
12429         child process will be redirected to a file specified with `:file'.
12430         Don't try to re-open tempfile in that case, and set fd[0] to -1 as
12431         cue to call_process_cleanup not to close that handle.
12433 2011-05-07  Ben Key  <bkey76@gmail.com>
12435         * makefile.w32-in: The bootstrap-temacs rule now makes use of
12436         one of two shell specific rules, either bootstrap-temacs-CMD or
12437         bootstrap-temacs-SH.  The bootstrap-temacs-SH rule is identical
12438         to the previous implementation of the bootstrap-temacs rule.
12439         The bootstrap-temacs-CMD rule is similar to the previous
12440         implementation of the bootstrap-temacs rule except that it
12441         makes use of the ESC_CFLAGS variable instead of the CFLAGS
12442         variable.
12444         These changes, along with some changes to nt/configure.bat,
12445         nt/gmake.defs, and nt/nmake.defs, are required to extend my
12446         earlier fix to add support for --cflags and --ldflags options
12447         that include quotes so that it works whether make uses cmd or
12448         sh as the shell.
12450 2011-05-06  Michael Albinus  <michael.albinus@gmx.de>
12452         * dbusbind.c (QCdbus_type_unix_fd): Declare static.
12453         (xd_remove_watch): Don't check QCdbus_type_unix_fd for SYMBOLP, it
12454         is a constant.
12455         (Fdbus_init_bus, xd_read_queued_messages): Bus can be a symbol or
12456         a string.  Handle both cases.
12457         (Fdbus_call_method_asynchronously, Fdbus_register_signal)
12458         (Fdbus_register_method): Use Qinvalid_function.
12460 2011-05-06  Juanma Barranquero  <lekktu@gmail.com>
12462         * makefile.w32-in: Update dependencies.
12463         (LISP_H): Add inttypes.h and stdin.h.
12464         (PROCESS_H): Add unistd.h.
12466 2011-05-06  Eli Zaretskii  <eliz@gnu.org>
12468         * lread.c: Include limits.h (fixes the MS-Windows build broken by
12469         2011-05-06T07:13:19Z!eggert@cs.ucla.edu).
12471 2011-05-06  Paul Eggert  <eggert@cs.ucla.edu>
12473         * image.c (Finit_image_library) [!HAVE_NTGUI]: Omit unused local.
12475         * term.c (vfatal): Remove stray call to va_end.
12476         It's not needed and the C Standard doesn't allow it here anyway.
12478         Use C99's va_copy to avoid undefined behavior on x86-64 GNU/Linux.
12479         * eval.c (verror): doprnt a copy of ap, not the original.  (Bug#8545)
12481         * eval.c (verror): OK to create a string of up to MOST_POSITIVE_FIXNUM
12482         bytes.
12484         * term.c: Don't include <stdarg.h>, as <lisp.h> does that.
12486         * callproc.c (Fcall_process): Use 'volatile' to avoid vfork clobbering.
12488         * process.c (Fformat_network_address): Fix typo: args2 -> *args2.
12490         * xmenu.c (set_frame_menubar): Fix typo: int * -> int (3 times).
12492         * coding.c (detect_coding_charset): Fix typo: * 2 -> *4 (Bug#8601).
12494         * charset.h (struct charset.code_space): Now has 15 elements, not 16.
12495         * charset.c (Fdefine_charset_internal): Don't initialize
12496         charset.code_space[15].  The value was garbage, on hosts with
12497         32-bit int (Bug#8600).
12499         * lread.c (read_integer): Be more consistent with string-to-number.
12500         Use string_to_number to do the actual conversion; this avoids
12501         rounding errors and fixes some other screwups.  Without this fix,
12502         for example, #x1fffffffffffffff was misread as -2305843009213693952.
12503         (digit_to_number): Move earlier, for benefit of read_integer.
12504         Return -1 if the digit is out of range for the base, -2 if it is
12505         not a digit in any supported base.  (Bug#8602)
12507         * doprnt.c (doprnt): Support arbitrary pI values, such as "I64".
12509         * dispnew.c (scrolling_window): Return 1 if we scrolled,
12510         to match comment at start of function.  This also removes a
12511         GCC warning about overflow in a 32+64-bit port.
12513         * lisp.h (EMACS_INT, EMACS_UINT, BITS_PER_EMACS_INT, pI): Simplify.
12515         * dbusbind.c: Do not use XPNTR on a value that may be an integer.
12516         Reported by Stefan Monnier in
12517         <http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00919.html>.
12518         (xd_remove_watch, Fdbus_init_bus, xd_read_queued_messages):
12519         Use SYMBOLP-guarded XSYMBOL, not XPNTR.
12521         * lisp.h (EMACS_INTPTR): Remove.  All uses changed to intptr_t.
12522         (EMACS_UINTPTR): Likewise, with uintptr_t.
12524         * lisp.h: Prefer 64-bit EMACS_INT if available.
12525         (EMACS_INT, EMACS_UINT, BITS_PER_EMACS_INT, pI): Define to 64-bit
12526         on 32-bit hosts that have 64-bit int, so that they can access
12527         large files.
12528         However, temporarily disable this change unless the temporary
12529         symbol WIDE_EMACS_INT is defined.
12531         * lread.c, process.c: Do not include <inttypes.h>; lisp.h does it now.
12533         Prefer intptr_t/uintptr_t for integers the same widths as pointers.
12534         This removes an assumption that EMACS_INT and long are the same
12535         width as pointers.  The assumption is true for Emacs porting targets
12536         now, but we want to make other targets possible.
12537         * lisp.h: Include <inttypes.h>, for INTPTR_MAX, UINTPTR_MAX.
12538         (EMACS_INTPTR, EMACS_UINTPTR): New macros.
12539         In the rest of the code, change types of integers that hold casted
12540         pointers to EMACS_INTPTR and EMACS_UINTPTR, systematically
12541         replacing EMACS_INT, long, EMACS_UINT, and unsigned long.
12542         (XTYPE): Don't cast arg to EMACS_UINT; normally is not needed.
12543         (XSET): Cast type of XTYPE arg to EMACS_INTPTR; it is needed here.
12544         No need to cast type when ORing.
12545         (XPNTR): Return a value of type EMACS_INTPTR or EMACS_UINTPTR.
12546         * alloc.c (lisp_align_malloc): Remove a no-longer-needed cast.
12547         * doc.c (store_function_docstring): Use EMACS_INTPTR, so as not to
12548         assume EMACS_INT is the same width as char *.
12549         * gtkutil.c (xg_gtk_scroll_destroy, xg_tool_bar_button_cb):
12550         (xg_tool_bar_callback, xg_tool_bar_help_callback, xg_make_tool_item):
12551         Remove no-longer-needed casts.
12552         (xg_create_scroll_bar, xg_tool_bar_button_cb, xg_tool_bar_callback):
12553         (xg_tool_bar_help_callback, xg_make_tool_item):
12554         Use EMACS_INTPTR to hold an integer
12555         that will be cast to void *; this can avoid a GCC warning
12556         if EMACS_INT is not the same width as void *.
12557         * menu.c (find_and_call_menu_selection): Remove no-longer-needed cast.
12558         * xdisp.c (display_echo_area_1, resize_mini_window_1):
12559         (current_message_1, set_message_1):
12560         Use a local to convert to proper width without a cast.
12561         * xmenu.c (dialog_selection_callback): Likewise.
12563         * sysdep.c (get_random): Don't assume EMACS_INT is no wider than long.
12564         Also, don't assume VALBITS / RAND_BITS is less than 5,
12565         and don't rely on undefined behavior when shifting a 1 left into
12566         the sign bit.
12567         * lisp.h (get_random): Change signature to match.
12569         * lread.c (hash_string): Use size_t, not int, for hash computation.
12570         Normally we prefer signed values; but hashing is special, because
12571         it's better to use unsigned division on hash table sizes so that
12572         the remainder is nonnegative.  Also, size_t is the natural width
12573         for hashing into memory.  The previous code used 'int', which doesn't
12574         retain enough info to hash well into very large tables.
12575         (oblookup, oblookup_last_bucket_number, Funintern): Likewise.
12577         * dbusbind.c: Don't possibly lose pointer info when converting.
12578         (xd_remove_watch, Fdbus_init_bus, xd_read_queued_messages):
12579         Use XPNTR rather than XHASH, so that the high-order bits of
12580         the pointer aren't lost when converting through void *.
12582         * eval.c (Fautoload): Don't double-shift a pointer.
12584         * fns.c (Frandom): Let EMACS_UINT be wider than unsigned long.
12586 2011-05-06  Juanma Barranquero  <lekktu@gmail.com>
12588         * gnutls.c (DEF_GNUTLS_FN):
12589         * image.c (DEF_IMGLIB_FN): Make function pointers static.
12591 2011-05-05  Andreas Schwab  <schwab@linux-m68k.org>
12593         * lread.c (lisp_file_lexically_bound_p): Stop scanning at end
12594         marker.  (Bug#8610)
12596 2011-05-05  Eli Zaretskii  <eliz@gnu.org>
12598         * w32heap.c (allocate_heap) [USE_LISP_UNION_TYPE || USE_LSB_TAG]:
12599         New version that can reserve upto 2GB of heap space.
12601 2011-05-05  Chong Yidong  <cyd@stupidchicken.com>
12603         * nsfns.m (Fns_read_file_name): Doc fix (Bug#8534).
12605 2011-05-05  Teodor Zlatanov  <tzz@lifelogs.com>
12607         * gnutls.c (fn_gnutls_certificate_set_x509_key_file): Add alias to
12608         `gnutls_certificate_set_x509_key_file'.
12610 2011-05-05  Juanma Barranquero  <lekktu@gmail.com>
12612         * makefile.w32-in ($(BLD)/image.$(O), $(BLD)/process.$(O)):
12613         Update dependencies.
12615 2011-05-04  Juanma Barranquero  <lekktu@gmail.com>
12617         * gnutls.h (emacs_gnutls_write, emacs_gnutls_read):
12618         * gnutls.c (emacs_gnutls_write, emacs_gnutls_read):
12619         Remove unused parameter `fildes'.
12620         * process.c (read_process_output, send_process): Don't pass it.
12622 2011-05-04  Juanma Barranquero  <lekktu@gmail.com>
12624         Fix previous change: the library cache is defined in w32.c.
12625         * image.c (CACHE_IMAGE_TYPE) [!HAVE_NTGUI]: Define to noop.
12626         (Finit_image_library): Wrap Vlibrary_cache on "#ifdef HAVE_NTGUI".
12628 2011-05-04  Juanma Barranquero  <lekktu@gmail.com>
12630         Implement dynamic loading of GnuTLS on Windows.
12632         * gnutls.h (GNUTLS_EMACS_ERROR_NOT_LOADED): New macro.
12633         (emacs_gnutls_write, emacs_gnutls_read): Mark as extern.
12634         (emacs_gnutls_record_check_pending, emacs_gnutls_transport_set_errno):
12635         Declare.
12637         * gnutls.c (Qgnutls_dll): Define.
12638         (DEF_GNUTLS_FN, LOAD_GNUTLS_FN): New macros.
12639         (gnutls_*): Declare function pointers.
12640         (init_gnutls_functions): New function to initialize function pointers.
12641         (emacs_gnutls_handshake, Fgnutls_error_string, Fgnutls_deinit)
12642         (emacs_gnutls_global_init, Fgnutls_bye): Use function pointers.
12643         (emacs_gnutls_record_check_pending, emacs_gnutls_transport_set_errno):
12644         Wrappers for gnutls_record_check_pending and gnutls_transport_set_errno.
12645         (emacs_gnutls_write, emacs_gnutls_read)
12646         (emacs_gnutls_handle_error, Fgnutls_error_fatalp)
12647         (Fgnutls_available_p): New function.
12648         (Fgnutls_boot): Call Fgnutls_available_p.  Use function pointers.
12649         (syms_of_gnutls) <Qgnutls_dll>: Initialize and staticpro it.
12650         (syms_of_gnutls) <Sgnutls_available_p>: defsubr it.
12652         * image.c: Include w32.h.
12653         (Vimage_type_cache): Delete.
12654         (syms_of_image) <Vimage_type_cache>: Don't initialize and staticpro it.
12655         (CACHE_IMAGE_TYPE, Finit_image_library): Use Vlibrary_cache instead.
12656         (w32_delayed_load): Move to w32.c.
12658         * w32.h (VlibraryCache, QCloaded_from, w32_delayed_load): Declare.
12660         * w32.c (QCloaded_from, Vlibrary_cache): Define.
12661         (w32_delayed_load): Move from image.c.  When loading a library, record
12662         its filename in the :loaded-from property of the library id.
12663         (globals_of_w32) <QCloaded_from, Vlibrary_cache>:
12664         Initialize and staticpro them.
12665         (emacs_gnutls_pull, emacs_gnutls_push): Call emacs_gnutls_* functions.
12667         * process.c: Include lisp.h before w32.h, not after.
12668         (wait_reading_process_output): Call emacs_gnutls_record_check_pending
12669         instead of gnutls_record_check_pending.
12671         * callproc.c, emacs.c: Include lisp.h before w32.h, not after.
12673 2011-05-04  Teodor Zlatanov  <tzz@lifelogs.com>
12675         * gnutls.c (Fgnutls_boot): Support :keylist and :crlfiles options
12676         instead of :keyfiles.  Give GnuTLS the keylist and the CRL lists
12677         as passed in.
12679 2011-05-03  Jan Djärv  <jan.h.d@swipnet.se>
12681         * xterm.c (x_set_frame_alpha): Do not set property on anything
12682         else than FRAME_X_OUTER_WINDOW (Bug#8608).
12684 2011-05-02  Juanma Barranquero  <lekktu@gmail.com>
12686         * sysdep.c (get_tty_size) [WINDOWSNT]: Implement.  (Bug#8596)
12688 2011-05-02  Juanma Barranquero  <lekktu@gmail.com>
12690         * gnutls.c (Qgnutls_log_level, Qgnutls_code, Qgnutls_anon)
12691         (Qgnutls_x509pki, Qgnutls_e_interrupted, Qgnutls_e_again)
12692         (Qgnutls_e_invalid_session, Qgnutls_e_not_ready_for_handshake)
12693         (gnutls_global_initialized, Qgnutls_bootprop_priority)
12694         (Qgnutls_bootprop_trustfiles, Qgnutls_bootprop_keyfiles)
12695         (Qgnutls_bootprop_callbacks, Qgnutls_bootprop_loglevel)
12696         (Qgnutls_bootprop_hostname, Qgnutls_bootprop_verify_flags)
12697         (Qgnutls_bootprop_verify_error, Qgnutls_bootprop_verify_hostname_error)
12698         (Qgnutls_bootprop_callbacks_verify): Make static.
12700 2011-05-01  Andreas Schwab  <schwab@linux-m68k.org>
12702         * callproc.c: Indentation fixup.
12704         * sysdep.c (wait_for_termination_1): Make static.
12705         (wait_for_termination, interruptible_wait_for_termination):
12706         Move after wait_for_termination_1.
12708 2011-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12710         * sysdep.c (interruptible_wait_for_termination): New function
12711         which is like wait_for_termination, but allows keyboard
12712         interruptions.
12714         * callproc.c (Fcall_process): Add (:file "file") as an option for
12715         the STDOUT buffer.
12716         (Fcall_process_region): Ditto.
12718 2011-04-30  Eli Zaretskii  <eliz@gnu.org>
12720         * dosfns.c (Fint86, Fdos_memget, Fdos_memput): Use `ASIZE (FOO)'
12721         rather than `XVECTOR (FOO)->size'.
12723         * process.c: Remove HAVE_INTTYPES_H condition from inclusion of
12724         inttypes.h, as a gnulib replacement is used if it not available in
12725         system headers.
12727 2011-04-21  Eli Zaretskii  <eliz@gnu.org>
12729         Lift the MOST_POSITIVE_FIXNUM/4 limitation on visited files.
12730         * fileio.c (Finsert_file_contents): Don't limit file size to 1/4
12731         of MOST_POSITIVE_FIXNUM.  (Bug#8528)
12733         * coding.c (coding_alloc_by_realloc): Error out if destination
12734         will grow beyond MOST_POSITIVE_FIXNUM.
12735         (decode_coding_emacs_mule): Abort if there isn't enough place in
12736         charbuf for the composition carryover bytes.  Reserve an extra
12737         space for up to 2 characters produced in a loop.
12738         (decode_coding_iso_2022): Abort if there isn't enough place in
12739         charbuf for the composition carryover bytes.
12741 2011-04-21  Eli Zaretskii  <eliz@gnu.org>
12743         * doprnt.c (doprnt) [!HAVE_LONG_LONG_INT]: Error out instead of
12744         aborting when %lld or %lll format is passed.
12745         [!HAVE_UNSIGNED_LONG_LONG_INT]: Error out instead of aborting when
12746         %llo or %llx format is passed.  (Bug#8545)
12748         * window.c (window_scroll_line_based): Use a marker instead of
12749         simple variables to record original value of point.  (Bug#7952)
12751         * doprnt.c (doprnt): Fix the case where a multibyte sequence
12752         produced by %s or %c overflows available buffer space.  (Bug#8545)
12754 2011-04-28  Paul Eggert  <eggert@cs.ucla.edu>
12756         * doprnt.c (doprnt): Omit useless test; int overflow check (Bug#8545).
12757         (SIZE_MAX): Move defn after all includes, as they might #define it.
12759 2011-04-28  Juanma Barranquero  <lekktu@gmail.com>
12761         * w32.c (init_environment): Warn about defaulting HOME to C:\.
12763 2011-04-28  Juanma Barranquero  <lekktu@gmail.com>
12765         * keyboard.c (Qdelayed_warnings_hook): Define.
12766         (command_loop_1): Run `delayed-warnings-hook'
12767         if Vdelayed_warnings_list is non-nil.
12768         (syms_of_keyboard) <delayed-warnings-hook>: DEFSYM it.
12769         (syms_of_keyboard) <delayed-warnings-list>: DEFVAR_LISP it.
12771 2011-04-28  Eli Zaretskii  <eliz@gnu.org>
12773         * doprnt.c (doprnt): Don't return value smaller than the buffer
12774         size if the message was truncated.  (Bug#8545).
12776 2011-04-28  Juanma Barranquero  <lekktu@gmail.com>
12778         * w32fns.c (Fx_change_window_property, Fx_delete_window_property)
12779         (Fx_window_property): #if-0 the whole functions, not just the bodies.
12781 2011-04-27  Paul Eggert  <eggert@cs.ucla.edu>
12783         * doprnt.c (doprnt): Support "ll" length modifier, for long long.
12785 2011-04-27  Juanma Barranquero  <lekktu@gmail.com>
12787         * makefile.w32-in: Update dependencies.
12789 2011-04-27  Eli Zaretskii  <eliz@gnu.org>
12791         Improve `doprnt' and its usage.  (Bug#8545)
12792         * doprnt.c (doprnt): Make sure `format' is never accessed beyond
12793         `format_end'.  Remove support for %l as a conversion specifier.
12794         Don't use xrealloc.  Improve diagnostics when the %l size modifier
12795         is used.  Update the commentary.
12797         * eval.c (verror): Simplify calculation of size_t.
12799         * coding.c (Ffind_operation_coding_system): Fix diagnostic error
12800         messages.
12802 2011-04-27  Yoshiaki Kasahara  <kasahara@nc.kyushu-u.ac.jp>  (tiny change)
12804         * buffer.c (init_buffer) [USE_MMAP_FOR_BUFFERS]: Adjust to aliasing
12805         change.
12807 2011-04-27  Paul Eggert  <eggert@cs.ucla.edu>
12809         * nsmenu.m: Replace all uses of XVECTOR with ASIZE and AREF.
12810         This makes this file independent of the recent pseudovector change.
12812 2011-04-26  Paul Eggert  <eggert@cs.ucla.edu>
12814         * keyboard.c (handle_user_signal): Fix pointer signedness problem.
12816         * gnutls.c (emacs_gnutls_handle_error): Remove unused local.
12817         (Fgnutls_boot): gnutls_certificate_verify_peers2 wants unsigned *.
12818         Remove unused local.
12819         (emacs_gnutls_write): Don't use uninitialized rtnval if nbyte <= 0.
12821         * lisp.h: Fix a problem with aliasing and vector headers.  (Bug#8546)
12822         GCC 4.6.0 optimizes based on type-based alias analysis.
12823         For example, if b is of type struct buffer * and v of type struct
12824         Lisp_Vector *, then gcc -O2 was incorrectly assuming that &b->size
12825         != &v->size, and therefore "v->size = 1; b->size = 2; return
12826         v->size;" must therefore return 1.  This assumption is incorrect
12827         for Emacs, since it type-puns struct Lisp_Vector * with many other
12828         types.  To fix this problem, this patch adds a new type struct
12829         vectorlike_header that documents the constraints on layout of vectors
12830         and pseudovectors, and helps optimizing compilers not get fooled
12831         by Emacs's type punning.  It also adds the macros XSETTYPED_PVECTYPE
12832         XSETTYPED_PSEUDOVECTOR, TYPED_PSEUDOVECTORP, for similar reasons.
12833         * lisp.h (XSETTYPED_PVECTYPE): New macro, specifying the name of
12834         the size member.
12835         (XSETPVECTYPE): Rewrite in terms of new macro.
12836         (XSETPVECTYPESIZE): New macro, specifying both type and size.
12837         This is a bit clearer, and further avoids the possibility of
12838         undesirable aliasing.
12839         (XSETTYPED_PSEUDOVECTOR): New macro, specifying the size.
12840         (XSETPSEUDOVECTOR): Rewrite in terms of XSETTYPED_PSEUDOVECTOR.
12841         (XSETSUBR): Rewrite in terms of XSETTYPED_PSEUDOVECTOR and XSIZE,
12842         since Lisp_Subr is a special case (no "next" field).
12843         (ASIZE): Now uses header.size rather than size.
12844         All previous uses of XVECTOR (foo)->size replaced to use this macro,
12845         to avoid the hassle of writing XVECTOR (foo)->header.size.
12846         (struct vectorlike_header): New type.
12847         (TYPED_PSEUDOVECTORP): New macro, also specifying the C type of the
12848         object, to help avoid aliasing.
12849         (PSEUDOVECTORP): Rewrite in terms of TYPED_PSEUDOVECTORP.
12850         (SUBRP): Likewise, since Lisp_Subr is a special case.
12851         * lisp.h (struct Lisp_Vector, struct Lisp_Char_Table):
12852         (struct Lisp_Sub_Char_Table, struct Lisp_Bool_Vector):
12853         (struct Lisp_Hash_Table): Combine first two members into a single
12854         struct vectorlike_header member.  All uses of "size" and "next" members
12855         changed to be "header.size" and "header.next".
12856         * buffer.h (struct buffer): Likewise.
12857         * font.h (struct font_spec, struct font_entity, struct font): Likewise.
12858         * frame.h (struct frame): Likewise.
12859         * process.h (struct Lisp_Process): Likewise.
12860         * termhooks.h (struct terminal): Likewise.
12861         * window.c (struct save_window_data, struct saved_window): Likewise.
12862         * window.h (struct window): Likewise.
12863         * alloc.c (allocate_buffer, Fmake_bool_vector, allocate_pseudovector):
12864         Use XSETPVECTYPESIZE, not XSETPVECTYPE, to avoid aliasing problems.
12865         * buffer.c (init_buffer_once): Likewise.
12866         * lread.c (defsubr): Use XSETTYPED_PVECTYPE, since Lisp_Subr is a
12867         special case.
12868         * process.c (Fformat_network_address): Use local var for size,
12869         for brevity.
12871         * bytecode.c (exec_byte_code): Don't use XVECTOR before CHECK_VECTOR.
12873         Make the Lisp reader and string-to-float more consistent (Bug#8525)
12874         * data.c (atof): Remove decl; no longer used or needed.
12875         (digit_to_number): Move to lread.c.
12876         (Fstring_to_number): Use new string_to_number function, to be
12877         consistent with how the Lisp reader treats infinities and NaNs.
12878         Do not assume that floating-point numbers represent EMACS_INT
12879         without losing information; this is not true on most 64-bit hosts.
12880         Avoid double-rounding errors, by insisting on integers when
12881         parsing non-base-10 numbers, as the documentation specifies.
12882         * lisp.h (string_to_number): New decl, replacing ...
12883         (isfloat_string): Remove.
12884         * lread.c: Include <inttypes.h>, for uintmax_t and strtoumax.
12885         (read1): Do not accept +. and -. as integers; this
12886         appears to have been a coding error.  Similarly, do not accept
12887         strings like +-1e0 as floating point numbers.  Do not report
12888         overflow for integer overflows unless the base is not 10 which
12889         means we have no simple and reliable way to continue.
12890         Break out the floating-point parsing into a new
12891         function string_to_number, so that Fstring_to_number parses
12892         floating point numbers consistently with the Lisp reader.
12893         (digit_to_number): Move here from data.c.  Make it static inline.
12894         (E_CHAR, EXP_INT): Remove, replacing with ...
12895         (E_EXP): New macro, to solve the "1.0e+" problem mentioned below.
12896         (string_to_number): New function, replacing isfloat_string.
12897         This function checks for valid syntax and produces the resulting
12898         Lisp float number too.  Rework it so that string-to-number
12899         no longer mishandles examples like "1.0e+".  Use strtoumax,
12900         so that overflow for non-base-10 numbers is reported only when
12901         there's no portable and simple way to convert to floating point.
12903         * textprop.c (set_text_properties_1): Rewrite for clarity,
12904         and to avoid GCC warning about integer overflow.
12906         * intervals.h (struct interval): Use EMACS_INT for members
12907         where EMACS_UINT might cause problems.  See
12908         <http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00514.html>.
12909         (CHECK_TOTAL_LENGTH): Remove cast to EMACS_INT; no longer needed.
12910         * intervals.c (interval_deletion_adjustment): Now returns EMACS_INT.
12911         All uses changed.
12912         (offset_intervals): Tell GCC not to worry about length overflow
12913         when negating a negative length.
12915         * alloc.c (overrun_check_malloc, overrun_check_realloc): Now static.
12916         (overrun_check_free): Likewise.
12918         * alloc.c (SDATA_SIZE) [!GC_CHECK_STRING_BYTES]: Avoid runtime check
12919         in the common case where SDATA_DATA_OFFSET is a multiple of Emacs
12920         word size.
12922         * gnutls.c: Fix problems found by GCC 4.6.0 on Ubuntu 10.10.
12923         (gnutls_make_error): Rename local to avoid shadowing.
12924         (gnutls_emacs_global_deinit): ifdef out; not used.
12925         (Fgnutls_boot): Use const for pointer to readonly storage.
12926         Comment out unused local.  Fix pointer signedness problems.
12928         * lread.c (openp): Don't stuff size_t into an 'int'.
12929         Use <= on length, not < on length + 1, to avoid GCC 4.6.0 warning
12930         about possible signed overflow.
12932         * gtkutil.c: Fix problems found by GCC 4.6.0 on Ubuntu 10.10.
12933         (GDK_KEY_g): Don't define if already defined.
12934         (xg_prepare_tooltip): Avoid pointer signedness problem.
12935         (xg_set_toolkit_scroll_bar_thumb): Redo to avoid two casts.
12937         * process.c (Fnetwork_interface_info): Avoid left-shift undefined
12938         behavior with 1 << 31.  GCC 4.6.0 warns about this on 32-bit hosts.
12940         * xfns.c (Fx_window_property): Simplify a bit,
12941         to make a bit faster and to avoid GCC 4.6.0 warning.
12942         * xselect.c (x_get_window_property, x_handle_dnd_message): Likewise.
12944         * fns.c (internal_equal): Don't assume size_t fits in int.
12946         * alloc.c (compact_small_strings): Tighten assertion a little.
12948         Replace pEd with more-general pI, and fix some printf arg casts.
12949         * lisp.h (pI): New macro, generalizing old pEd macro to other
12950         conversion specifiers.  For example, use "...%"pI"d..." rather
12951         than "...%"pEd"...".
12952         (pEd): Remove.  All uses replaced with similar uses of pI.
12953         * m/amdx86-64.h, m/ia64.h, m/ibms390x.h: Likewise.
12954         * alloc.c (check_pure_size): Don't overflow by converting size to int.
12955         * bidi.c (bidi_dump_cached_states): Use pI to avoid cast.
12956         * data.c (Fnumber_to_string): Use pI instead of if-then-else-abort.
12957         * dbusbind.c (xd_append_arg): Use pI to avoid cast.
12958         (Fdbus_method_return_internal, Fdbus_method_error_internal): Likewise.
12959         * font.c (font_unparse_xlfd): Avoid potential buffer overrun on
12960         64-bit hosts.
12961         (font_unparse_xlfd, font_unparse_fcname): Use pI to avoid casts.
12962         * keyboard.c (record_char, modify_event_symbol): Use pI to avoid casts.
12963         * print.c (safe_debug_print, print_object): Likewise.
12964         (print_object): Don't overflow by converting EMACS_INT or EMACS_UINT
12965         to int.
12966         Use pI instead of if-then-else-abort.  Use %p to avoid casts,
12967         avoiding the 0 flag, which is not portable.
12968         * process.c (Fmake_network_process): Use pI to avoid cast.
12969         * region-cache.c (pp_cache): Likewise.
12970         * xdisp.c (decode_mode_spec): Likewise.
12971         * xrdb.c (x_load_resources) [USE_MOTIF]: Use pI to avoid undefined
12972         behavior on 64-bit hosts with printf arg.
12973         * xselect.c (x_queue_event): Use %p to avoid casts, avoiding 0 flag.
12974         (x_stop_queuing_selection_requests): Likewise.
12975         (x_get_window_property): Don't truncate byte count to an 'int'
12976         when tracing.
12978         * frame.c (frame_name_fnn_p): Get rid of strtol, which isn't right
12979         here, since it parses constructs like leading '-' and spaces,
12980         which are not wanted; and it overflows with large numbers.
12981         Instead, simply match F[0-9]+, which is what is wanted anyway.
12983         * alloc.c: Remove unportable assumptions about struct layout.
12984         (SDATA_SELECTOR, SDATA_DATA_OFFSET): New macros.
12985         (SDATA_OF_STRING, SDATA_SIZE, allocate_string_data):
12986         (allocate_vectorlike, make_pure_vector): Use the new macros,
12987         plus offsetof, to remove unportable assumptions about struct layout.
12988         These assumptions hold on all porting targets that I know of, but
12989         they are not guaranteed, they're easy to remove, and removing them
12990         makes further changes easier.
12992         * alloc.c (BLOCK BYTES): Fix typo by changing "ablock" to "ablocks".
12993         This doesn't fix a bug but makes the code clearer.
12994         (string_overrun_cookie): Now const.  Use initializers that
12995         don't formally overflow signed char, to avoid warnings.
12996         (allocate_string_data) [GC_CHECK_STRING_OVERRUN]: Fix typo that
12997         can cause Emacs to crash when string overrun checking is enabled.
12998         (allocate_buffer): Don't assume sizeof (struct buffer) is a
12999         multiple of sizeof (EMACS_INT); it need not be, if
13000         alignof(EMACS_INT) < sizeof (EMACS_INT).
13001         (check_sblock, check_string_bytes, check_string_free_list): Protoize.
13003 2011-04-26  Juanma Barranquero  <lekktu@gmail.com>
13005         * keyboard.c (QCrtl): Rename from Qrtl.  All uses changed.
13007 2011-04-26  Teodor Zlatanov  <tzz@lifelogs.com>
13009         * gnutls.c (emacs_gnutls_handshake): Return an error if we're not
13010         supposed to be handshaking.  (Bug#8556)
13011         Reported by Paul Eggert <eggert@cs.ucla.edu>.
13013 2011-04-26  Daniel Colascione  <dan.colascione@gmail.com>
13015         * lisp.h (Qdebug): List symbol.
13016         * eval.c (Qdebug): Restore global linkage.
13017         * keyboard.c (debug-on-event): New variable.
13018         (handle_user_signal): Break into debugger when debug-on-event
13019         matches the current signal symbol.
13021 2011-04-25  Dan Nicolaescu  <dann@ics.uci.edu>
13023         * alloc.c (check_sblock, check_string_bytes)
13024         (check_string_free_list): Convert to standard C.
13026 2011-04-25  Teodor Zlatanov  <tzz@lifelogs.com>
13028         * w32.c (emacs_gnutls_push): Fix typo.
13030 2011-04-25  Eli Zaretskii  <eliz@gnu.org>
13032         * gnutls.c (emacs_gnutls_handshake): Avoid compiler warnings about
13033         "cast to pointer from integer of different size".
13035         Improve doprnt and its use in verror.  (Bug#8545)
13036         * doprnt.c (doprnt): Document the set of format control sequences
13037         supported by the function.  Use SAFE_ALLOCA instead of always
13038         using `alloca'.
13040         * eval.c (verror): Don't limit the buffer size at size_max-1, that
13041         is one byte too soon.  Don't use xrealloc; instead xfree and
13042         xmalloc anew.
13044 2011-04-24  Teodor Zlatanov  <tzz@lifelogs.com>
13046         * gnutls.h: Add GNUTLS_STAGE_CALLBACKS enum to denote we're in the
13047         callbacks stage.
13049         * gnutls.c: Renamed global_initialized to
13050         gnutls_global_initialized.  Added internals for the
13051         :verify-hostname-error, :verify-error, and :verify-flags
13052         parameters of `gnutls-boot' and documented those parameters in the
13053         docstring.  Start callback support.
13054         (emacs_gnutls_handshake): Add Woe32 support.  Retry handshake
13055         unless a fatal error occurred.  Call gnutls_alert_send_appropriate
13056         on error.  Return error code.
13057         (emacs_gnutls_write): Call emacs_gnutls_handle_error.
13058         (emacs_gnutls_read): Likewise.
13059         (Fgnutls_boot): Return handshake error code.
13060         (emacs_gnutls_handle_error): New function.
13061         (wsaerror_to_errno): Likewise.
13063         * w32.h (emacs_gnutls_pull): Add prototype.
13064         (emacs_gnutls_push): Likewise.
13066         * w32.c (emacs_gnutls_pull): New function for GnuTLS on Woe32.
13067         (emacs_gnutls_push): Likewise.
13069 2011-04-24  Claudio Bley  <claudio.bley@gmail.com>  (tiny change)
13071         * process.c (wait_reading_process_output): Check if GnuTLS
13072         buffered some data internally if no FDs are set for TLS
13073         connections.
13075         * makefile.w32-in (OBJ2): Add gnutls.$(O).
13076         (LIBS): Link to USER_LIBS.
13077         ($(BLD)/gnutls.$(0)): New target.
13079 2011-04-24  Eli Zaretskii  <eliz@gnu.org>
13081         * xdisp.c (handle_single_display_spec): Rename the
13082         display_replaced_before_p argument into display_replaced_p, to
13083         make it consistent with the commentary.  Fix typos in the
13084         commentary.
13086         * textprop.c (syms_of_textprop): Remove dead code.
13087         (copy_text_properties): Delete obsolete commentary about an
13088         interface that was deleted long ago.  Fix typos in the description
13089         of arguments.
13091         * msdos.c (XMenuActivate, XMenuAddSelection): Adjust argument list
13092         to changes in oldXMenu/XMenu.h from 2011-04-16.
13093         <menu_help_message, prev_menu_help_message>: Constify.
13094         (IT_menu_make_room): menu->help_text is now `const char **';
13095         adjust.
13097         * msdos.h (XMenuActivate, XMenuAddSelection): Adjust prototypes
13098         to changes in oldXMenu/XMenu.h from 2011-04-16.
13099         (struct XMenu): Declare `help_text' `const char **'.
13101         * xfaces.c <Qunspecified>: Make extern again.
13103         * syntax.c: Include sys/types.h before including regex.h, as
13104         required by POSIX.
13106         * doc.c (get_doc_string): Improve the format passed to `error'.
13108         * doprnt.c (doprnt): Improve commentary.
13110         * term.c (init_tty) [MSDOS]: Fix 1st argument to maybe_fatal.
13112         * Makefile.in (TAGS): Depend on $(M_FILE) and $(S_FILE), and scan
13113         them with etags.
13115         * makefile.w32-in (globals.h): Add a dummy recipe, to make any
13116         changes in globals.h immediately force recompilation.
13117         (TAGS): Depend on $(CURDIR)/m/intel386.h and
13118         $(CURDIR)/s/ms-w32.h.
13119         (TAGS-gmake): Scan $(CURDIR)/m/intel386.h and $(CURDIR)/s/ms-w32.h.
13121         * character.c (Fchar_direction): Function deleted.
13122         (syms_of_character): Don't defsubr it.
13123         <char-direction-table>: Deleted.
13125 2011-04-23  Eli Zaretskii  <eliz@gnu.org>
13127         Fix doprnt so it could be used again safely in `verror'.  (Bug#8435)
13128         * doprnt.c: Include limits.h.
13129         (SIZE_MAX): New macro.
13130         (doprnt): Return a size_t value.  2nd arg is now size_t.
13131         Many local variables are now size_t instead of int or unsigned.
13132         Improve overflow protection.  Support `l' modifier for integer
13133         conversions.  Support %l conversion.  Don't assume an EMACS_INT
13134         argument for integer conversions and for %c.
13136         * lisp.h (doprnt): Restore prototype.
13138         * makefile.w32-in ($(BLD)/callint.$(O)): Depend on
13139         $(SRC)/character.h.
13141         * Makefile.in (base_obj): Add back doprnt.o.
13143         * deps.mk (doprnt.o): Add back prerequisites.
13144         (callint.o): Depend on character.h.
13146         * eval.c (internal_lisp_condition_case): Include the handler
13147         representation in the error message.
13148         (verror): Call doprnt instead of vsnprintf.  Fix an off-by-one bug
13149         when breaking from the loop.
13151         * xdisp.c (vmessage): Call doprnt instead of vsnprintf.
13153         * callint.c (Fcall_interactively): When displaying error message
13154         about invalid control letter, pass the character's codepoint, not
13155         a pointer to its multibyte form.  Improve display of the character
13156         in octal and display also its hex code.
13158         * character.c (char_string): Use %x to display the (unsigned)
13159         codepoint of an invalid character, to avoid displaying a bogus
13160         negative value.
13162         * font.c (check_otf_features): Pass SDATA of SYMBOL_NAME to
13163         `error', not SYMBOL_NAME itself.
13165         * coding.c (Fencode_sjis_char, Fencode_big5_char): Use %c for
13166         character arguments to `error'.
13168         * charset.c (check_iso_charset_parameter): Fix incorrect argument
13169         to `error' in error message about FINAL_CHAR argument.  Make sure
13170         FINAL_CHAR is a character, and use %c when it is passed as
13171         argument to `error'.
13173 2011-04-23  Eli Zaretskii  <eliz@gnu.org>
13175         * s/ms-w32.h (localtime): Redirect to sys_localtime.
13177         * w32.c: Include <time.h>.
13178         (sys_localtime): New function.
13180 2011-04-23  Chong Yidong  <cyd@stupidchicken.com>
13182         * xdisp.c (init_xdisp): Initialize echo_area_window (Bug#6451).
13184         * buffer.c (syms_of_buffer): Doc fix (Bug#6902).
13186 2011-04-23  Samuel Thibault  <sthibault@debian.org>  (tiny change)
13188         * sysdep.c (wait_for_termination): On GNU Hurd, kill returns -1 on
13189         zombies (Bug#8467).
13191 2011-04-19  Eli Zaretskii  <eliz@gnu.org>
13193         * syntax.h (SETUP_SYNTAX_TABLE_FOR_OBJECT): Fix setting of
13194         gl_state.e_property when gl_state.object is Qt.
13196         * insdel.c (make_gap_larger): Remove limitation of buffer size
13197         to <= INT_MAX.
13199 2011-04-18  Chong Yidong  <cyd@stupidchicken.com>
13201         * xdisp.c (lookup_glyphless_char_display)
13202         (produce_glyphless_glyph): Handle cons cell entry in
13203         glyphless-char-display.
13204         (Vglyphless_char_display): Document it.
13206         * term.c (produce_glyphless_glyph): Handle cons cell entry in
13207         glyphless-char-display.
13209 2011-04-17  Chong Yidong  <cyd@stupidchicken.com>
13211         * xdisp.c (get_next_display_element): Remove unnecessary ifdefs.
13213         * termhooks.h (FRAME_WINDOW_P): Remove duplicated definitions.
13215         * dispextern.h (FACE_SUITABLE_FOR_ASCII_CHAR_P): Add missing
13216         definition for no-X builds.
13218 2011-04-16  Paul Eggert  <eggert@cs.ucla.edu>
13220         Static checks with GCC 4.6.0 and non-default toolkits.
13222         * s/sol2-6.h, s/unixware.h (PTY_TTY_NAME_SPRINTF): Protoize decl.
13224         * process.c (keyboard_bit_set): Define only if SIGIO.
13225         (send_process_trap): Mark it with NO_RETURN if it doesn't return.
13226         (send_process): Repair possible setjmp clobbering.
13228         * s/usg5-4-common.h (SETUP_SLAVE_PTY): Don't pass extra arg to 'fatal'.
13230         * eval.c: Include <stdio.h>, for vsnprintf on non-GNU/Linux hosts.
13232         * data.c (arith_error): Mark with NO_RETURN if it doesn't return.
13234         * alloc.c (bytes_used_when_full, SPARE_MEMORY, BYTES_USED):
13235         Define only if needed.
13237         * sysdep.c (_FILE_OFFSET_BITS): Make this hack even uglier
13238         by pacifying GCC about it.  Maybe it's time to retire it?
13239         * xfaces.c (USG, __TIMEVAL__): Likewise.
13241         * dispextern.h (struct redisplay_interface): Rename param
13242         to avoid shadowing.
13243         * termhooks.h (struct terminal): Likewise.
13244         * xterm.c (xembed_send_message): Likewise.
13246         * insdel.c (make_gap_smaller): Define only if
13247         USE_MMAP_FOR_BUFFERS || REL_ALLOC || DOUG_LEA_MALLOC.
13249         * keyboard.c (read_char): Make a var volatile so longjmp won't clobber
13250         it.
13252         * emacs.c (MAX_HEAP_BSS_DIFF, my_edata): Move to where they're used,
13253         so that we aren't warned about unused symbols.
13255         * xfns.c (Fx_file_dialog): Rename local to avoid shadowing.
13257         * xdisp.c (x_produce_glyphs): Mark var as initialized (Bug#8512).
13259         * xfns.c (x_real_positions): Mark locals as initialized.
13261         * xmenu.c (xmenu_show): Don't use uninitialized vars.
13263         * xterm.c: Fix problems found by static analysis with other toolkits.
13264         (toolkit_scroll_bar_interaction): Define and use only if USE_X_TOOLKIT.
13265         (x_dispatch_event): Declare static if USE_GTK, and
13266         define if USE_GTK || USE_X_TOOLKIT.
13267         (SET_SAVED_BUTTON_EVENT): Define only if USE_X_TOOLKIT || USE_GTK.
13268         * xterm.h (x_dispatch_event): Extern only if USE_X_TOOLKIT.
13269         * xterm.c, xterm.h (x_mouse_leave): Bring this function back, but only
13270         if defined HAVE_MENUS && !defined USE_X_TOOLKIT && !defined USE_GTK.
13272         * xmenu.c (menu_help_callback): Pointer type fixes.
13273         Use const pointers when pointing at readonly data.  Avoid pointer
13274         signedness clashes.
13275         (FALSE): Remove unused macro.
13276         (update_frame_menubar): Remove unused decl.
13278         * xfns.c (Fx_hide_tip): Move locals to avoid shadowing.
13280         * menu.c (push_submenu_start, push_submenu_end): Do not define unless
13281         USE_X_TOOLKIT || USE_GTK || HAVE_NS || defined HAVE_NTGUI.
13282         (single_menu_item): Rename local to avoid shadowing.
13284         * keyboard.c (make_lispy_event): Remove unused local var.
13286         * frame.c, frame.h (x_get_resource_string): Bring this back, but
13287         only if HAVE_X_WINDOWS && !USE_X_TOOLKIT.
13289         * bitmaps: Change bitmaps from unsigned char back to the X11
13290         compatible char.  Avoid the old compiler warnings about
13291         out-of-range initializers by using, for example, '\xab' rather
13292         than 0xab.
13294         * xgselect.c (xgselect_initialize): Check vs interface
13295         even if ! (defined (USE_GTK) || defined (HAVE_GCONF)).
13297         * xmenu.c (xmenu_show): Rename parm to avoid shadowing.
13299         * xterm.c (x_create_toolkit_scroll_bar): Use const * for pointers
13300         to read-only memory.
13302         * fns.c (vector): Remove; this old hack is no longer needed.
13304         * xsmfns.c (create_client_leader_window): Rename shadowing arg.
13305         Remove unused var.
13306         (gdk_x11_set_sm_client_id) [!USE_GTK]: Don't define.
13308         * xrdb.c (x_load_resources): Omit unused local.
13310         * xfns.c (free_frame_menubar, atof): Remove duplicate decls.
13311         (x_window): Rename locals to avoid shadowing.
13312         (USG): Use the kludged USG macro, to pacify gcc.
13314         * xterm.c (x_alloc_nearest_color_for_widget): Remove; unused.
13315         (x_term_init): Remove local to avoid shadowing.
13317         * xfns.c, xterm.c (_XEditResCheckMessages): Protoize decl.
13319         * xdisp.c, dispextern.h (set_vertical_scroll_bar): Now extern if
13320         USE_TOOLKIT_SCROLL_BARS && !USE_GTK, as xterm.c needs it then.
13322 2011-04-16  Eli Zaretskii  <eliz@gnu.org>
13324         * gnutls.c (Fgnutls_boot): Don't pass Lisp_Object to `error'.
13326         Fix regex.c, syntax.c and friends for buffers > 2GB.
13327         * syntax.h (struct gl_state_s): Declare character position members
13328         EMACS_INT.
13330         * syntax.c (update_syntax_table): Declare 2nd argument EMACS_INT.
13332         * textprop.c (verify_interval_modification, interval_of):
13333         Declare arguments EMACS_INT.
13335         * intervals.c (adjust_intervals_for_insertion): Declare arguments
13336         EMACS_INT.
13338         * intervals.h (CHECK_TOTAL_LENGTH): Cast to EMACS_INT, not `int'.
13340         * indent.c (Fvertical_motion): Local variable it_start is now
13341         EMACS_INT.
13343         * regex.c (re_match, re_match_2, re_match_2_internal)
13344         (bcmp_translate, regcomp, regexec, print_double_string)
13345         (group_in_compile_stack, re_search, re_search_2, regex_compile)
13346         (re_compile_pattern, re_exec): Declare arguments and local
13347         variables `size_t' and `ssize_t' and return values `regoff_t', as
13348         appropriate.
13349         (POP_FAILURE_REG_OR_COUNT) <pfreg>: Declare `long'.
13350         (CHECK_INFINITE_LOOP) <failure>: Declare `ssize_t'.
13351         <compile_stack_type>: `size' and `avail' are now `size_t'.
13353         * regex.h <regoff_t>: Use ssize_t, not int.
13354         (re_search, re_search_2, re_match, re_match_2): Arguments that
13355         specify buffer/string position and length are now ssize_t and
13356         size_t.  Return type is regoff_t.
13358 2011-04-16  Ben Key  <bkey76@gmail.com>
13360         * nsfont.m: Fixed bugs in ns_get_family and
13361         ns_descriptor_to_entity that were caused by using free to
13362         deallocate memory blocks that were allocated by xmalloc (via
13363         xstrdup).  This caused Emacs to crash when compiled with
13364         XMALLOC_OVERRUN_CHECK defined (when Emacs was configured with
13365         --enable-checking=xmallocoverrun).  xfree is now used to
13366         deallocate these memory blocks.
13368 2011-04-15  Paul Eggert  <eggert@cs.ucla.edu>
13370         * sysdep.c (emacs_read): Remove unnecessary check vs MAX_RW_COUNT.
13372         emacs_write: Accept and return EMACS_INT for sizes.
13373         See http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00514.html
13374         et seq.
13375         * gnutls.c, gnutls.h (emacs_gnutls_read, emacs_gnutls_write):
13376         Accept and return EMACS_INT.
13377         (emacs_gnutls_write): Return the number of bytes written on
13378         partial writes.
13379         * sysdep.c, lisp.h (emacs_read, emacs_write): Likewise.
13380         (emacs_read, emacs_write): Remove check for negative size, as the
13381         Emacs source code has been audited now.
13382         * sysdep.c (MAX_RW_COUNT): New macro, to work around kernel bugs.
13383         (emacs_read, emacs_write): Use it.
13384         * process.c (send_process): Adjust to the new signatures of
13385         emacs_write and emacs_gnutls_write.  Do not attempt to store
13386         a byte offset into an 'int'; it might overflow.
13387         See http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00483.html
13389         * sound.c: Don't assume sizes fit in 'int'.
13390         (struct sound_device.period_size, alsa_period_size):
13391         Return EMACS_INT, not int.
13392         (struct sound_device.write, vox_write, alsa_write):
13393         Accept EMACS_INT, not int.
13394         (wav_play, au_play): Use EMACS_INT to store sizes and to
13395         record read return values.
13397 2011-04-15  Ben Key  <bkey76@gmail.com>
13399         * keyboard.c (Qundefined): Don't declare static since it is used
13400         in nsfns.m.
13401         * xfaces.c (Qbold, Qexpanded, Qitalic, Qcondensed): Don't declare
13402         static since they are used in nsfont.m.
13404 2011-04-15  Stefan Monnier  <monnier@iro.umontreal.ca>
13406         * process.c (Qprocessp): Don't declare static.
13407         * lisp.h (Qprocessp): Declare again.
13409 2011-04-15  Juanma Barranquero  <lekktu@gmail.com>
13411         * font.c (Qopentype): Don't make static (used from w32uniscribe.c).
13413 2011-04-14  Paul Eggert  <eggert@cs.ucla.edu>
13415         Improve C-level modularity by making more things 'static'.
13417         Don't publish debugger-only interfaces to other modules.
13418         * lisp.h (safe_debug_print, debug_output_compilation_hack):
13419         (verify_bytepos, count_markers): Move decls to the only modules
13420         that need them.
13421         * region-cache.h (pp_cache): Likewise.
13422         * window.h (check_all_windows): Likewise.
13423         * marker.c, print.c, region-cache.c, window.c: Decls moved here.
13425         * sysdep.c (croak): Now static, if
13426         defined TIOCNOTTY || defined USG5 || defined CYGWIN.
13427         * syssignal.h (croak): Declare only if not static.
13429         * alloc.c (refill_memory_reserve): Now static if
13430         !defined REL_ALLOC || defined SYSTEM_MALLOC.
13431         * lisp.h (refill_memory_reserve): Declare only if not static.
13433         * xsettings.c, xsettings.h (xsettings_get_system_normal_font):
13434         Define only if USE_LUCID.
13436         * xrdb.c (x_customization_string, x_rm_string): Now static.
13438         * xmenu.c (x_menu_wait_for_event): Export only if USE_MOTIF.
13439         * xterm.h (x_menu_wait_for_event): Declare only if USE_MOTIF.
13441         * xdisp.c (draw_row_with_mouse_face): Now static.
13442         * dispextern.h (draw_row_with_mouse_fave): Remove decl.
13444         * window.h (check_all_windows): Mark externally visible.
13446         * window.c (window_deletion_count): Now static.
13448         * undo.c: Make symbols static if they're not exported.
13449         (last_undo_buffer, last_boundary_position, pending_boundary):
13450         Now static.
13452         * textprop.c (interval_insert_behind_hooks): Now static.
13453         (interval_insert_in_front_hooks): Likewise.
13455         * term.c: Make symbols static if they're not exported.
13456         (tty_turn_off_highlight, get_tty_terminal, max_frame_cols):
13457         (max_frame_lines, tty_set_terminal_modes):
13458         (tty_reset_terminal_modes, tty_turn_off_highlight):
13459         (get_tty_terminal): Now static.
13460         (term_mouse_moveto): Do not define if HAVE_WINDOW_SYSTEM.
13461         * termhooks.h (term_mouse_moveto): Do not declare if
13462         HAVE_WINDOW_SYSTEM.
13463         * dispextern.h (tty_set_terminal_modes, tty_reset_terminal_modes):
13464         (tty_turn_off_highlight, get_tty_terminal): Remove decls.
13466         * sysdep.c: Make symbols static if they're not exported.
13467         (emacs_get_tty, emacs_set_tty, old_fcntl_flags, old_fcntl_owner):
13468         Now static.
13469         (sigprocmask_set, full_mask): Remove; unused.
13470         (wait_debugging): Mark as visible.
13471         * syssignal.h (SIGFULLMASK, full_mask): Remove decls.
13472         * systty.h (emacs_get_tty, emacs_set_tty): Remove decls.
13474         * syntax.c (syntax_temp): Define only if !__GNUC__.
13476         * sound.c (current_sound_device, current_sound): Now static.
13478         * search.c (searchbufs, searchbuf_head): Now static.
13480         * scroll.c (scroll_cost): Remove; unused.
13481         * dispextern.h (scroll_cost): Remove decl.
13483         * region-cache.h (pp_cache): Mark as externally visible.
13485         * process.c: Make symbols static if they're not exported.
13486         (process_tick, update_tick, create_process, chan_process):
13487         (Vprocess_alist, proc_buffered_char, datagram_access):
13488         (fd_callback_data, send_process_frame, process_sent_to): Now static.
13489         (deactivate_process): Mark defn as static, as well as decl.
13490         * lisp.h (create_process): Remove decl.
13491         * process.h (chan_process, Vprocess_alist): Remove decls.
13493         * print.c: Make symbols static if they're not exported.
13494         (print_depth, new_backquote_output, being_printed, print_buffer):
13495         (print_buffer_size, print_buffer_pos, print_buffer_pos_byte):
13496         (print_interval, print_number_index, initial_stderr_stream):
13497         Now static.
13498         * lisp.h (Fprinc): Remove decl.
13499         (debug_output_compilation_hack): Mark as externally visible.
13501         * sysdep.c (croak): Move decl from here to syssignal.h.
13502         * syssignal.h (croak): Put it here, so the API can be checked when
13503         'croak' is called from dissociate_if_controlling_tty.
13505         * minibuf.c: Make symbols static if they're not exported.
13506         (minibuf_save_list, choose_minibuf_frame): Now static.
13507         * lisp.h (choose_minibuf_frame): Remove decl.
13509         * lisp.h (verify_bytepos, count_markers): Mark as externally visible.
13511         * lread.c: Make symbols static if they're not exported.
13512         (read_objects, initial_obarray, oblookup_last_bucket_number):
13513         Now static.
13514         (make_symbol): Remove; unused.
13515         * lisp.h (initial_obarray, make_symbol): Remove decls.
13517         * keyboard.c: Make symbols static if they're not exported.
13518         (single_kboard, recent_keys_index, total_keys, recent_keys):
13519         (this_command_key_count_reset, raw_keybuf, raw_keybuf_count):
13520         (this_single_command_key_start, echoing, last_auto_save):
13521         (read_key_sequence_cmd, dribble, recursive_edit_unwind):
13522         (command_loop, echo_now, keyboard_init_hook, help_char_p):
13523         (quit_throw_to_read_char, command_loop_2, top_level_1, poll_timer):
13524         (Vlispy_mouse_stem, double_click_count):
13525         Now static.
13526         (force_auto_save_soon): Define only if SIGDANGER.
13527         (ignore_mouse_drag_p): Now static if
13528         !defined HAVE_WINDOW_SYSTEM || defined USE_GTK || defined HAVE_NS.
13529         (print_help): Remove; unused.
13530         (stop_character, last_timer_event): Mark as externally visible.
13531         * keyboard.h (ignore_mouse_drag_p): Declare only if
13532         defined HAVE_WINDOW_SYSTEM && !defined USE_GTK && !defined HAVE_NS.
13533         (echo_now, help_char_p, quit_throw_to_read_char): Remove decls.
13534         * lisp.h (echoing): Remove decl.
13535         (force_auto_save_soon): Declare only if SIGDANGER.
13536         * xdisp.c (redisplay_window): Simplify code, to make it more
13537         obvious that ignore_mouse_drag_p is not accessed if !defined
13538         USE_GTK && !defined HAVE_NS.
13540         * intervals.c: Make symbols static if they're not exported.
13541         (merge_properties_sticky, merge_interval_right, delete_interval):
13542         Now static.
13543         * intervals.h (merge_interval_right, delete_interval): Remove decls.
13545         * insdel.c: Make symbols static if they're not exported.
13546         However, leave prepare_to_modify_buffer alone.  It's never
13547         called from outside this function, but that appears to be a bug.
13548         (combine_after_change_list, combine_after_change_buffer):
13549         (adjust_after_replace, signal_before_change): Now static.
13550         (adjust_after_replace_noundo): Remove; unused.
13551         * lisp.h (adjust_after_replace, adjust_after_replace_noundo):
13552         (signal_before_change): Remove decls.
13554         * indent.c (val_compute_motion, val_vmotion): Now static.
13556         * image.c: Make symbols static if they're not exported.
13557         * dispextern.h (x_create_bitmap_from_xpm_data): Do not declare
13558         if USE_GTK.
13559         * image.c (x_create_bitmap_from_xpm_data): Do not define if USE_GTK.
13560         (xpm_color_cache, ct_table, ct_colors_allocated): Now static.
13562         * fringe.c (standard_bitmaps): Now static.
13563         (max_used_fringe_bitmap): Now static, unless HAVE_NS.
13565         * frame.c: Make symbols static if they're not exported.
13566         (x_report_frame_params, make_terminal_frame): Now static.
13567         (get_frame_param): Now static, unless HAVE_NS.
13568         (x_fullscreen_adjust): Define if WINDOWSNT, not if HAVE_WINDOW_SYSTEM.
13569         (x_get_resource_string): Remove; not used.
13570         * frame.h (make_terminal_frame, x_report_frame_params):
13571         (x_get_resource_string); Remove decls.
13572         (x_fullscreen_adjust): Declare only if WINDOWSNT.
13573         * lisp.h (get_frame_param): Declare only if HAVE_NS.
13575         * font.c, fontset.c: Make symbols static if they're not exported.
13576         * dispextern.h (FACE_SUITABLE_FOR_ASCII_CHAR_P): New macro.
13577         (FACE_SUITABLE_FOR_CHAR_P): Use it.
13578         * font.c (font_close_object): Now static.
13579         * font.h (font_close_object): Remove.
13580         * fontset.c (FONTSET_OBJLIST): Remove.
13581         (free_realized_fontset) #if-0 the body, which does nothing.
13582         (face_suitable_for_char_p): #if-0, as it's never called.
13583         * fontset.h (face_suitable_for_char_p): Remove decl.
13584         * xfaces.c (face_at_string_position):
13585         Use FACE_SUITABLE_FOR_ASCII_CHAR_P, not FACE_SUITABLE_FOR_CHAR_P,
13586         since 0 is always ASCII.
13588         * fns.c (weak_hash_tables): Now static.
13590         * fileio.c: Make symbols static if they're not exported.
13591         (auto_saving, auto_save_mode_bits, auto_save_error_occurred):
13592         (Vwrite_region_annotation_buffers): Now static.
13594         * eval.c: Make symbols static if they're not exported.
13595         (backtrace_list, lisp_eval_depth, when_entered_debugger): Now static.
13596         * lisp.h (backtrace_list): Remove decl.
13598         * emacs.c: Make symbols static if they're not exported.
13599         (malloc_state_ptr, malloc_using_checking, syms_of_emacs):
13600         (fatal_error_code, fatal_error_signal_hook, standard_args):
13601         Now static.
13602         (fatal_error_signal): Now static, unless FLOAT_CATCH_SIGKILL.
13603         (DEFINE_DUMMY_FUNCTION): Mark function as externally visible.
13604         (__CTOR_LIST__, __DTOR_LIST__): Now externally visible.
13605         * lisp.h (fatal_error_signal_hook): Remove decl.
13606         (fatal_error_signal): Declare only if FLOAT_CATCH_SIGKILL.
13608         * editfns.c: Move a (normally-unused) function to its only use.
13609         * editfns.c, lisp.h (get_operating_system_release): Remove.
13610         * process.c (init_process) [DARWIN_OS]: Do it inline, as it is not
13611         worth the hassle of breaking this out.
13613         * xterm.c: Make symbols static if they're not exported.
13614         (x_raise_frame, x_lower_frame, x_wm_set_window_state):
13615         (x_wm_set_icon_pixmap, x_initialize, XTread_socket_fake_io_error):
13616         (x_destroy_window, x_delete_display):
13617         Now static.
13618         (x_dispatch_event): Now static if ! (USE_MOTIF || USE_X_TOOLKIT).
13619         (x_mouse_leave): Remove; unused.
13620         * xterm.h (x_display_info_for_name, x_raise_frame, x_lower_frame):
13621         (x_destroy_window, x_wm_set_window_state, x_wm_set_icon_pixmap):
13622         (x_delete_display, x_initialize, x_set_border_pixel, x_screen_planes):
13623         Remove decls.
13624         (x_mouse_leave): Declare only if WINDOWSNT.
13625         (x_dispatch_event): Declare only if USE_MOTIF or USE_X_TOOLKIT.
13626         (xic_create_fontsetname): Declare only if HAVE_X_WINDOWS &&
13627         USE_X_TOOLKIT.
13629         * ftxfont.c: Make symbols static if they're not exported.
13630         (ftxfont_driver): Export only if !defined HAVE_XFT && def8ined
13631         HAVE_FREETYPE.
13632         * font.h (ftxfont_driver): Likewise.
13634         * xfns.c: Make symbols static if they're not exported.
13635         (x_last_font_name, x_display_info_for_name):
13636         (x_set_foreground_color, x_set_background_color, x_set_mouse_color):
13637         (x_set_cursor_color, x_set_border_pixel, x_set_border_color):
13638         (x_set_cursor_type, x_set_icon_type, x_set_icon_name):
13639         (x_set_scroll_bar_foreground, x_set_scroll_bar_background):
13640         (x_explicitly_set_name, x_set_title, xic_defaut_fontset, tip_timer):
13641         (last_show_tip_args): Now static.
13642         (xic_defaut_fontset, xic_create_fontsetname): Define only if
13643         defined HAVE_X_WINDOWS && defined USE_X_TOOLKIT
13644         (x_screen_planes): Remove; unused.
13645         * dispextern.h (x_screen_planes): Remove decl.
13647         * dispnew.c: Make symbols static if they're not exported.
13648         * dispextern.h (redraw_garbaged_frames, scrolling):
13649         (increment_row_positions): Remove.
13650         * dispnew.c (new_glyph_matrix, increment_row_positions, scrolling):
13651         (delayed_size_change, glyph_matrix_count, glyph_pool_count):
13652         Now static.
13653         (redraw_garbaged_frames): Remove; unused.
13655         * xfaces.c: Make symbols static if they're not exported.
13656         * dispextern.h (ascii_face_of_lisp_face, free_realized_face):
13657         Remove decls.
13658         * xterm.h (defined_color): Remove decls.
13659         (x_free_dpy_colors): Declare only if USE_X_TOOLKIT.
13660         * xfaces.c (tty_suppress_bold_inverse_default_colors_p):
13661         (menu_face_changed_default, defined_color, free_realized_face):
13662         (x_free_dpy_colors): Define only if USE_X_TOOLKIT.
13663         (ascii_face_of_lisp_face): Remove; unused.
13665         * xdisp.c: Make symbols static if they're not exported.
13666         * dispextern.h (scratch_glyph_row, window_box_edges):
13667         (glyph_to_pixel_coords, set_cursor_from_row):
13668         (get_next_display_element, set_iterator_to_next):
13669         (highlight_trailing_whitespace, frame_to_window_pixel_xy):
13670         (show_mouse_face): Remove decls
13671         * frame.h (message_buf_print): Likewise.
13672         * lisp.h (pop_message, set_message, check_point_in_composition):
13673         Likewise.
13674         * xterm.h (set_vertical_scroll_bar): Likewise.
13675         * xdisp.c (list_of_error, Vmessage_stack, line_number_displayed):
13676         (message_buf_print, scratch_glyph_row, displayed_buffer):
13677         (set_iterator_to_next, pop_message, set_message, set_cursor_from_row):
13678         (get_next_display_element, show_mouse_face, window_box_edges):
13679         (frame_to_window_pixel_xy, check_point_in_composition):
13680         (set_vertical_scroll_bar, highlight_trailing_whitespace): Now static.
13681         (glyph_to_pixel_coords): Remove; unused.
13683         * dired.c (file_name_completion): Now static.
13685         * dbusbind.c (xd_in_read_queued_messages): Now static.
13687         * lisp.h (circular_list_error, FOREACH): Remove; unused.
13688         * data.c (circular_list_error): Remove.
13690         * commands.h (last_point_position, last_point_position_buffer):
13691         (last_point_position_window): Remove decls.
13692         * keyboard.c: Make these variables static.
13694         * coding.h (coding, code_convert_region, encode_coding_gap):
13695         Remove decls.
13696         * coding.c (Vsjis_coding_system, Vbig5_coding_system):
13697         (iso_code_class, detect_coding, code_convert_region): Now static.
13698         (encode_coding_gap): Remove; unused.
13700         * chartab.c (chartab_chars, chartab_bits): Now static.
13702         * charset.h (charset_iso_8859_1): Remove decl.
13703         * charset.c (charset_iso_8859_1, charset_emacs, map_charset_for_dump):
13704         Now static.
13706         * ccl.h (check_ccl_update, Vccl_program_table): Remove decls.
13707         * ccl.c (Vccl_program_table): Now static.
13708         (check_ccl_update): Remove; unused.
13710         * category.c (SET_CATEGORY_SET, set_category_set): Move here.
13711         * category.h: ... from here.
13712         * category.c (check_category_table, set_category_set): Now static.
13714         * casetab.c (Vascii_upcase_table, Vascii_eqv_table): Now static.
13715         * lisp.h: Remove these decls.
13717         * buffer.c (buffer_count): Remove unused var.
13719         * bidi.c (bidi_dump_cached_states): Mark as externally visible,
13720         so that it's not optimized away.
13721         (bidi_ignore_explicit_marks_for_paragraph_level): Likewise.
13722         * dispextern.h (bidi_dump_cached_states): Remove, since it's
13723         exported only to the debugger.
13725         * atimer.c (alarm_signal_handler, run_all_atimers): Now static.
13726         * atimer.h (run_all_atimers): Remove; not exported.
13728         font.c: Make copy_font_spec and merge_font_spec ordinary C functions.
13729         * font.c (copy_font_spec): Rename from Fcopy_font_spec, since it
13730         was inaccessible from Lisp.
13731         (merge_font_spec): Likewise, renaming from Fmerge_font_spec.
13732         * font.c, font.h, fontset.c, xfaces.c, xfont.c: Change all uses.
13734         alloc.c: Import and export fewer symbols, and remove unused items.
13735         * lisp.h (suppress_checking, die): Declare only if ENABLE_CHECKING
13736         is defined.
13737         (suppress_checking): Add EXTERNALLY_VISIBLE attribute, so that
13738         it's not optimized away by whole-program optimization.
13739         (message_enable_multibyte, free_misc): Remove.
13740         (catchlist, handlerlist, mark_backtrace):
13741         Declare only if BYTE_MARK_STACK.
13742         (mark_byte_stack): Likewise, fixing a ifdef-vs-if typo.
13743         * alloc.c (pure): Export only if VIRT_ADDR_VARIES is defined.
13744         (message_enable_multibyte): Remove decl.
13745         (free_misc, interval_free_list, float_block, float_block_index):
13746         (n_float_blocks, float_free_list, cons_block, cons_block_index):
13747         (cons_free_list, last_marked_index):
13748         Now static.
13749         (suppress_checking, die): Define only if ENABLE_CHECKING is defined.
13750         * eval.c (catchlist, handlerlist): Export only if BYTE_MARK_STACK.
13751         (mark_backtrace): Define only if BYTE_MARK_STACK.
13752         * xdisp.c (message_enable_multibyte): Now static.
13754         Declare Lisp_Object Q* variables to be 'static' if not exported.
13755         This makes it easier for human readers (and static analyzers)
13756         to see whether these variables are used from other modules.
13757         * alloc.c, buffer.c, bytecode.c, callint.c, casetab.c, category.c:
13758         * ccl.c, character.c, charset.c, cmds.c, coding.c, composite.c:
13759         * data.c, dbusbind.c, dired.c, editfns.c, eval.c, fileio.c, fns.c:
13760         * font.c, frame.c, fringe.c, ftfont.c, image.c, keyboard.c, keymap.c:
13761         * lread.c, macros.c, minibuf.c, print.c, process.c, search.c:
13762         * sound.c, syntax.c, textprop.c, window.c, xdisp.c, xfaces.c, xfns.c:
13763         * xmenu.c, xselect.c:
13764         Declare Q* vars static if they are not used in other modules.
13765         * ccl.h, character.h, charset.h, coding.h, composite.h, font.h:
13766         * frame.h, intervals.h, keyboard.h, lisp.h, process.h, syntax.h:
13767         Remove decls of unexported vars.
13768         * keyboard.h (EVENT_HEAD_UNMODIFIED): Remove now-unused macro.
13770         * lisp.h (DEFINE_FUNC): Make sname 'static'.
13772         Make Emacs functions such as Fatom 'static' by default.
13773         This makes it easier for human readers (and static analyzers)
13774         to see whether these functions can be called from other modules.
13775         DEFUN now defines a static function.  To make the function external
13776         so that it can be used in other C modules, use the new macro DEFUE.
13777         * lisp.h (Funibyte_char_to_multibyte, Fsyntax_table_p):
13778         (Finit_image_library):
13779         (Feval_region, Fbacktrace, Ffetch_bytecode, Fswitch_to_buffer):
13780         (Ffile_executable_p, Fmake_symbolic_link, Fcommand_execute):
13781         (Fget_process, Fdocumentation_property, Fbyte_code, Ffile_attributes):
13782         Remove decls, since these functions are now static.
13783         (Funintern, Fget_internal_run_time): New decls, since these functions
13784         were already external.
13786         * alloc.c, buffer.c, callint.c, callproc.c, casefiddle.c, casetab.c:
13787         * ccl.c, character.c, chartab.c, cmds.c, coding.c, data.c, dispnew.c:
13788         * doc.c, editfns.c, emacs.c, eval.c, fileio.c, filelock.c, floatfns.c:
13789         * fns.c, font.c, fontset.c, frame.c, image.c, indent.c:
13790         * keyboard.c, keymap.c, lread.c:
13791         * macros.c, marker.c, menu.c, minibuf.c, print.c, process.c, search.c:
13792         * syntax.c, term.c, terminal.c, textprop.c, undo.c:
13793         * window.c, xdisp.c, xfaces.c, xfns.c, xmenu.c, xsettings.c:
13794         Mark functions with DEFUE instead of DEFUN,
13795         if they are used in other modules.
13796         * buffer.c (Fset_buffer_major_mode, Fdelete_overlay): New forward
13797         decls for now-static functions.
13798         * buffer.h (Fdelete_overlay): Remove decl.
13799         * callproc.c (Fgetenv_internal): Mark as internal.
13800         * composite.c (Fremove_list_of_text_properties): Remove decl.
13801         (Fcomposition_get_gstring): New forward static decl.
13802         * composite.h (Fcomposite_get_gstring): Remove decl.
13803         * dired.c (Ffile_attributes): New forward static decl.
13804         * doc.c (Fdocumntation_property): New forward static decl.
13805         * eval.c (Ffetch_bytecode): New forward static decl.
13806         (Funintern): Remove extern decl; now in .h file where it belongs.
13807         * fileio.c (Fmake_symbolic_link): New forward static decl.
13808         * image.c (Finit_image_library): New forward static decl.
13809         * insdel.c (Fcombine_after_change_execute): Make forward decl static.
13810         * intervals.h (Fprevious_property_change):
13811         (Fremove_list_of_text_properties): Remove decls.
13812         * keyboard.c (Fthis_command_keys): Remove decl.
13813         (Fcommand_execute): New forward static decl.
13814         * keymap.c (Flookup_key): New forward static decl.
13815         (Fcopy_keymap): Now static.
13816         * keymap.h (Flookup_key): Remove decl.
13817         * process.c (Fget_process): New forward static decl.
13818         (Fprocess_datagram_address): Mark as internal.
13819         * syntax.c (Fsyntax_table_p): New forward static decl.
13820         (skip_chars): Remove duplicate decl.
13821         * textprop.c (Fprevious_property_change): New forward static decl.
13822         * window.c (Fset_window_fringes, Fset_window_scroll_bars):
13823         Now internal.
13824         (Fset_window_margins, Fset_window_vscroll): New forward static decls.
13825         * window.h (Fset_window_vscroll, Fset_window_margins): Remove decls.
13827         * editfns.c (Fformat): Remove unreachable code.
13829 2011-04-14  Andreas Schwab  <schwab@linux-m68k.org>
13831         * fileio.c (Finsert_file_contents): Fix typo in 2005-05-13
13832         change.  (Bug#8496)
13834 2011-04-13  Eli Zaretskii  <eliz@gnu.org>
13836         * xdisp.c (handle_invisible_prop): Don't call bidi_paragraph_init
13837         when at ZV.  (Bug#8487)
13839 2011-04-12  Andreas Schwab  <schwab@linux-m68k.org>
13841         * charset.c (Fclear_charset_maps): Use xfree instead of free.
13842         (Bug#8437)
13843         * keyboard.c (parse_tool_bar_item): Likewise.
13844         * sound.c (sound_cleanup, alsa_close): Likewise.
13845         * termcap.c (tgetent): Likewise.
13846         * xfns.c (x_default_font_parameter): Likewise.
13847         * xsettings.c (read_and_apply_settings): Likewise.
13849         * alloc.c (overrun_check_malloc, overrun_check_realloc)
13850         (overrun_check_free): Protoize.
13852 2011-04-12  Paul Eggert  <eggert@cs.ucla.edu>
13854         * sysdep.c (emacs_read, emacs_write): Check for negative sizes
13855         since callers should never pass a negative size.
13856         Change the signature to match that of plain 'read' and 'write'; see
13857         <http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00397.html>.
13858         * lisp.h: Update prototypes of emacs_write and emacs_read.
13860 2011-04-11  Eli Zaretskii  <eliz@gnu.org>
13862         * xdisp.c (redisplay_window): Don't try to determine the character
13863         position of the scroll margin if the window start point w->startp
13864         is outside the buffer's accessible region.  (Bug#8468)
13866 2011-04-10  Eli Zaretskii  <eliz@gnu.org>
13868         Fix write-region and its subroutines for buffers > 2GB.
13869         * fileio.c (a_write, e_write): Modify declaration of arguments and
13870         local variables to support buffers larger than 2GB.
13871         (Fcopy_file): Use EMACS_INT for return value of emacs_read.
13873         * sysdep.c (emacs_write, emacs_read): Use ssize_t for last
13874         argument, local variables, and return value.
13876         * lisp.h: Update prototypes of emacs_write and emacs_read.
13878         * sound.c (vox_write): Use ssize_t for return value of emacs_write.
13880 2011-04-10  Paul Eggert  <eggert@cs.ucla.edu>
13882         * xdisp.c (vmessage): Use memchr, not strnlen, which some hosts lack.
13884         Fix more problems found by GCC 4.6.0's static checks.
13886         * xdisp.c (vmessage): Use a better test for character truncation.
13888         * charset.c (load_charset_map): <, not <=, for optimization,
13889         and to avoid potential problems with integer overflow.
13890         * chartab.c (sub_char_table_set_range, char_table_set_range): Likewise.
13891         * casetab.c (set_identity, shuffle): Likewise.
13892         * editfns.c (Fformat): Likewise.
13893         * syntax.c (skip_chars): Likewise.
13895         * xmenu.c (set_frame_menubar): Allocate smaller local vectors.
13896         This also lets GCC 4.6.0 generate slightly better loop code.
13898         * callint.c (Fcall_interactively): <, not <=, for optimization.
13899         (Fcall_interactively): Count the number of arguments produced,
13900         not the number of arguments given.  This is simpler and lets GCC
13901         4.6.0 generate slightly better code.
13903         * ftfont.c: Distingish more carefully between FcChar8 and char.
13904         The previous code passed unsigned char * to a functions like
13905         strlen and xstrcasecmp that expect char *, which does not
13906         conform to the C standard.
13907         (get_adstyle_property, ftfont_pattern_entity): Use FcChar8 for
13908         arguments to FcPatternGetString, and explicitly cast FcChar8 * to
13909         char * when the C standard requires it.
13911         * keyboard.c (read_char): Remove unused var.
13913         * eval.c: Port to Windows vsnprintf (Bug#8435).
13914         Include <limits.h>.
13915         (SIZE_MAX): Define if the headers do not.
13916         (verror): Do not give up if vsnprintf returns a negative count.
13917         Instead, grow the buffer.  This ports to Windows vsnprintf, which
13918         does not conform to C99.  Problem reported by Eli Zaretskii.
13919         Also, simplify the allocation scheme, by avoiding the need for
13920         calling realloc, and removing the ALLOCATED variable.
13922         * eval.c (verror): Initial buffer size is 4000 (not 200) bytes.
13924         Remove invocations of doprnt, as Emacs now uses vsnprintf.
13925         But keep the doprint source code for now, as we might revamp it
13926         and use it again (Bug#8435).
13927         * lisp.h (doprnt): Remove.
13928         * Makefile.in (base_obj): Remove doprnt.o.
13929         * deps.mk (doprnt.o): Remove.
13931         error: Print 32- and 64-bit integers portably (Bug#8435).
13932         Without this change, on typical 64-bit hosts error ("...%d...", N)
13933         was used to print both 32- and 64-bit integers N, which relied on
13934         undefined behavior.
13935         * lisp.h, m/amdx86-64.h, m/ia64.h, m/ibms390x.h (pEd): New macro.
13936         * lisp.h (error, verror): Mark as printf-like functions.
13937         * eval.c (verror): Use vsnprintf, not doprnt, to do the real work.
13938         Report overflow in size calculations when allocating printf buffer.
13939         Do not truncate output string at its first null byte.
13940         * xdisp.c (vmessage): Use vsnprintf, not doprnt, to do the real work.
13941         Truncate the output at a character boundary, since vsnprintf does not
13942         do that.
13943         * charset.c (check_iso_charset_parameter): Convert internal
13944         character to string before calling 'error', since %c now has the
13945         printf meaning.
13946         * coding.c (Fdecode_sjis_char, Fdecode_big5_char): Avoid int
13947         overflow when computing char to be passed to 'error'.  Do not
13948         pass Lisp_Object to 'error'; pass the integer instead.
13949         * nsfns.m (Fns_do_applescript): Use int, not long, since it's
13950         formatted with plain %d.
13952         * eval.c (internal_lisp_condition_case): Don't pass spurious arg.
13954         * keyboard.c (access_keymap_keyremap): Print func name, not garbage.
13956         * coding.c (Fdecode_sjis_char): Don't assume CODE fits in int.
13958         * xterm.c (x_catch_errors): Remove duplicate declaration.
13960         * term.c (maybe_fatal): Mark its 3rd arg as a printf format, too.
13962         * xdisp.c, lisp.h (message_nolog): Remove; unused.
13964 2011-04-10  Jim Meyering  <meyering@redhat.com>
13966         use ssize_t and size_t for read- and write-like emacs_gnutls_* functions
13967         * gnutls.c (emacs_gnutls_read): Adjust signature to be more read-like:
13968         return ssize_t not "int", and use size_t as the buffer length.
13969         (emacs_gnutls_write): Likewise, and make the buffer pointer "const".
13970         * gnutls.h: Update declarations.
13971         * process.c (read_process_output): Use ssize_t, to match.
13972         (send_process): Likewise.
13974 2011-04-09  Chong Yidong  <cyd@stupidchicken.com>
13976         * image.c (Fimagemagick_types): Doc fix, and comment cleanup.
13978 2011-04-09  Chong Yidong  <cyd@stupidchicken.com>
13980         * ftfont.c (get_adstyle_property, ftfont_pattern_entity):
13981         Use unsigned char, to match FcChar8 type definition.
13983         * xterm.c (handle_one_xevent):
13984         * xmenu.c (create_and_show_popup_menu):
13985         * xselect.c (x_decline_selection_request)
13986         (x_reply_selection_request): Avoid type-punned deref of X events.
13988 2011-04-09  Eli Zaretskii  <eliz@gnu.org>
13990         Fix some uses of `int' instead of EMACS_INT.
13991         * search.c (string_match_1, fast_string_match)
13992         (fast_c_string_match_ignore_case, fast_string_match_ignore_case)
13993         (scan_buffer, find_next_newline_no_quit)
13994         (find_before_next_newline, search_command, Freplace_match)
13995         (Fmatch_data): Make some `int' variables be EMACS_INT.
13997         * xdisp.c (display_count_lines): 3rd argument and return value now
13998         EMACS_INT.  All callers changed.
13999         (pint2hrstr): Last argument is now EMACS_INT.
14001         * coding.c (detect_coding_utf_8, detect_coding_emacs_mule)
14002         (detect_coding_iso_2022, detect_coding_sjis, detect_coding_big5)
14003         (detect_coding_ccl, detect_coding_charset, decode_coding_utf_8)
14004         (decode_coding_utf_16, decode_coding_emacs_mule)
14005         (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
14006         (decode_coding_ccl, decode_coding_charset)
14007         <consumed_chars, consumed_chars_base>: Declare EMACS_INT.
14008         (decode_coding_iso_2022, decode_coding_emacs_mule)
14009         (decode_coding_sjis, decode_coding_big5, decode_coding_charset)
14010         <char_offset, last_offset>: Declare EMACS_INT.
14011         (encode_coding_utf_8, encode_coding_utf_16)
14012         (encode_coding_emacs_mule, encode_invocation_designation)
14013         (encode_designation_at_bol, encode_coding_iso_2022)
14014         (encode_coding_sjis, encode_coding_big5, encode_coding_ccl)
14015         (encode_coding_raw_text, encode_coding_charset) <produced_chars>:
14016         Declare EMACS_INT.
14017         (ASSURE_DESTINATION): Declare more_bytes EMACS_INT.
14018         (encode_invocation_designation): Last argument P_NCHARS is now
14019         EMACS_INT.
14020         (decode_eol): Declare pos_byte, pos, and pos_end EMACS_INT.
14021         (produce_chars): from_nchars and to_nchars are now EMACS_INT.
14023         * coding.h (struct coding_system) <head_ascii>: Declare EMACS_INT.
14024         All users changed.
14026         * ccl.c (Fccl_execute_on_string): Declare some variables
14027         EMACS_INT.
14029 2011-04-08  Samuel Thibault  <sthibault@debian.org>  (tiny change)
14031         * term.c (init_tty): Fix incorrect ifdef placement (Bug#8450).
14033 2011-03-19  Christoph Scholtes  <cschol2112@googlemail.com>
14035         * process.c (Fformat_network_address): Doc fix.
14037 2011-04-08  T.V. Raman  <tv.raman.tv@gmail.com>  (tiny change)
14039         * xml.c (parse_region): Avoid creating spurious whitespace nodes.
14041 2011-04-08  Chong Yidong  <cyd@stupidchicken.com>
14043         * keyboard.c (read_char): Call Lisp function help-form-show,
14044         instead of using internal_with_output_to_temp_buffer.
14045         (Qhelp_form_show): New var.
14046         (syms_of_keyboard): Use DEFSYM macro.
14048         * print.c (internal_with_output_to_temp_buffer): Function deleted.
14050         * lisp.h (internal_with_output_to_temp_buffer): Remove prototype.
14052 2011-04-06  Chong Yidong  <cyd@stupidchicken.com>
14054         * process.c (Flist_processes): Remove to Lisp.
14055         (list_processes_1): Delete.
14057 2011-04-06  Eli Zaretskii  <eliz@gnu.org>
14059         * msdos.c (careadlinkat, careadlinkatcwd): MS-DOS replacements.
14061         * w32.c (careadlinkat, careadlinkatcwd): New always-fail stubs.
14063 2011-04-06  Paul Eggert  <eggert@cs.ucla.edu>
14065         Fix more problems found by GCC 4.6.0's static checks.
14067         * xmenu.c (Fx_popup_dialog): Don't assume string is free of formats.
14069         * menu.c (Fx_popup_menu): Don't assume error_name lacks printf formats.
14071         * lisp.h (message, message_nolog, fatal): Mark as printf-like.
14073         * xdisp.c (vmessage): Mark as a printf-like function.
14075         * term.c (vfatal, maybe_fatal): Mark as printf-like functions.
14077         * sound.c (sound_warning): Don't crash if arg contains a printf format.
14079         * image.c (tiff_error_handler, tiff_warning_handler): Mark as
14080         printf-like functions.
14081         (tiff_load): Add casts to remove these marks before passing them
14082         to system-supplied API.
14084         * eval.c (Fsignal): Remove excess argument to 'fatal'.
14086         * coding.c (EMIT_ONE_BYTE, EMIT_TWO_BYTES): Use unsigned, not int.
14087         This avoids several warnings with gcc -Wstrict-overflow.
14088         (DECODE_COMPOSITION_RULE): If the rule is invalid, goto invalid_code
14089         directly, rather than having caller test rule sign.  This avoids
14090         some unnecessary tests.
14091         * composite.h (COMPOSITION_ENCODE_RULE_VALID): New macro.
14092         (COMPOSITION_ENCODE_RULE): Arguments now must be valid.  This
14093         affects only one use, in DECODE_COMPOSITION_RULE, which is changed.
14095         * xfont.c (xfont_text_extents): Remove var that was set but not used.
14096         (xfont_open): Avoid unnecessary tests.
14098         * composite.c (composition_gstring_put_cache): Use unsigned integer.
14100         * composite.h, composite.c (composition_gstring_put_cache):
14101         Use EMACS_INT, not int, for length.
14103         * composite.h (COMPOSITION_DECODE_REFS): New macro,
14104         breaking out part of COMPOSITION_DECODE_RULE.
14105         (COMPOSITION_DECODE_RULE): Use it.
14106         * composite.c (get_composition_id): Remove unused local vars,
14107         by using the new macro.
14109         * textprop.c (set_text_properties_1): Change while to do-while,
14110         since the condition is always true at first.
14112         * intervals.c (graft_intervals_into_buffer): Mark var as used.
14113         (interval_deletion_adjustment): Return unsigned value.
14114         All uses changed.
14116         * process.c (list_processes_1, create_pty, read_process_output):
14117         (exec_sentinel): Remove vars that were set but not used.
14118         (create_pty): Remove unnecessary "volatile"s.
14119         (Fnetwork_interface_info): Avoid possibility of int overflow.
14120         (read_process_output): Do adaptive read buffering even if carryover.
14121         (read_process_output): Simplify nbytes computation if buffered.
14123         * bytecode.c (exec_byte_code): Rename local to avoid shadowing.
14125         * syntax.c (scan_words): Remove var that was set but not used.
14126         (update_syntax_table): Use unsigned instead of int.
14128         * lread.c (lisp_file_lexically_bound_p): Use ints rather than endptrs.
14129         (lisp_file_lexically_bound_p, read1): Use unsigned instead of int.
14130         (safe_to_load_p): Make the end-of-loop test the inverse of the in-loop.
14132         * print.c (print_error_message): Avoid int overflow.
14134         * font.c (font_list_entities): Redo for clarity,
14135         so that reader need not know FONT_DPI_INDEX + 1 == FONT_SPACING_INDEX.
14137         * font.c (font_find_for_lface, Ffont_get_glyphs): Remove unused vars.
14138         (font_score): Avoid potential overflow in diff calculation.
14140         * fns.c (substring_both): Remove var that is set but not used.
14141         (sxhash): Redo loop for clarity and to avoid wraparound warning.
14143         * eval.c (funcall_lambda): Rename local to avoid shadowing.
14145         * alloc.c (mark_object_loop_halt, mark_object): Use size_t, not int.
14146         Otherwise, GCC 4.6.0 optimizes the loop check away since the check
14147         can always succeed if overflow has undefined behavior.
14149         * search.c (boyer_moore, wordify): Remove vars set but not used.
14150         (wordify): Omit three unnecessary tests.
14152         * indent.c (MULTIBYTE_BYTES_WIDTH): Don't compute wide_column.
14153         All callers changed.  This avoids the need for an unused var.
14155         * casefiddle.c (casify_region): Remove var that is set but not used.
14157         * dired.c (file_name_completion): Remove var that is set but not used.
14159         * fileio.c (Finsert_file_contents): Make EOF condition clearer.
14161         * fileio.c (Finsert_file_contents): Avoid signed integer overflow.
14162         (Finsert_file_contents): Remove unnecessary code checking fd.
14164         * minibuf.c (read_minibuf_noninteractive): Use size_t for sizes.
14165         Check for integer overflow on size calculations.
14167         * buffer.c (Fprevious_overlay_change): Remove var that is set
14168         but not used.
14170         * keyboard.c (menu_bar_items, read_char_minibuf_menu_prompt):
14171         Remove vars that are set but not used.
14172         (timer_check_2): Don't assume timer-list and idle-timer-list are lists.
14173         (timer_check_2): Mark vars as initialized.
14175         * gtkutil.c (xg_get_file_with_chooser): Mark var as initialized.
14177         * image.c (lookup_image): Remove var that is set but not used.
14178         (xbm_load): Use parse_p, for gcc -Werror=unused-but-set-variable.
14180         * fontset.c (Finternal_char_font, Ffontset_info): Remove vars
14181         that are set but not used.
14183         * xfns.c (make_invisible_cursor): Don't return garbage
14184         if XCreateBitmapFromData fails (Bug#8410).
14186         * xselect.c (x_get_local_selection, x_handle_property_notify):
14187         Remove vars that are set but not used.
14189         * xfns.c (x_create_tip_frame): Remove var that is set but not used.
14190         (make_invisible_cursor): Initialize a possibly-uninitialized variable.
14192         * xterm.c (x_scroll_bar_to_input_event) [!USE_GTK]:
14193         Remove var that is set but not used.
14194         (scroll_bar_windows_size): Now size_t, not int.
14195         (x_send_scroll_bar_event): Use size_t, not int, for sizes.
14196         Check for overflow.
14198         * xfaces.c (realize_named_face): Remove vars that are set but not used.
14199         (map_tty_color) [!defined MSDOS]: Likewise.
14201         * term.c (tty_write_glyphs): Use size_t; this avoids overflow warning.
14203         * coding.c: Remove vars that are set but not used.
14204         (DECODE_COMPOSITION_RULE): Remove 2nd arg, which is unused.
14205         All callers changed.
14206         (decode_coding_utf_8, decode_coding_utf_16 decode_coding_emacs_mule):
14207         (decode_coding_iso_2022, encode_coding_sjis, encode_coding_big5):
14208         (decode_coding_charset): Remove vars that are set but not used.
14210         * bytecode.c (Fbyte_code) [!defined BYTE_CODE_SAFE]: Remove var
14211         that is set but not used.
14213         * print.c (print_object): Remove var that is set but not used.
14215         Replace 2 copies of readlink code with 1 gnulib version (Bug#8401).
14216         The gnulib version avoids calling malloc in the usual case,
14217         and on 64-bit hosts doesn't have some arbitrary 32-bit limits.
14218         * fileio.c (Ffile_symlink_p): Use emacs_readlink.
14219         * filelock.c (current_lock_owner): Likewise.
14220         * lisp.h (READLINK_BUFSIZE, emacs_readlink): New function.
14221         * sysdep.c: Include allocator.h, careadlinkat.h.
14222         (emacs_no_realloc_allocator): New static constant.
14223         (emacs_readlink): New function.
14224         * deps.mk (sysdep.o): Depend on ../lib/allocator.h and on
14225         ../lib/careadlinkat.h.
14227 2011-04-04  Stefan Monnier  <monnier@iro.umontreal.ca>
14229         * keyboard.c (safe_run_hook_funcall): Fix last change (don't stop at the
14230         first non-nil return value).
14232 2011-04-03  Jan Djärv  <jan.h.d@swipnet.se>
14234         * nsterm.m (ns_update_auto_hide_menu_bar): Define MAC_OS_X_VERSION_10_6
14235         if not defined (Bug#8403).
14237 2011-04-02  Juanma Barranquero  <lekktu@gmail.com>
14239         * xdisp.c (display_count_lines): Remove parameter `start',
14240         unused since 1998-01-01T02:27:27Z!rms@gnu.org.  All callers changed.
14241         (get_char_face_and_encoding): Remove parameter `multibyte_p',
14242         unused since 2008-05-14T01:40:23Z!handa@m17n.org.  All callers changed.
14243         (fill_stretch_glyph_string): Remove parameters `row' and `area',
14244         unused at least since Kim's GUI unification at 2003-03-16T20:45:46Z!storm@cua.dk
14245         and thereabouts.  All callers changed.
14246         (get_per_char_metric): Remove parameter `f', unused since
14247         2008-05-14T01:40:23Z!handa@m17n.org.  All callers changed.
14249 2011-04-02  Jim Meyering  <meyering@redhat.com>
14251         do not dereference NULL upon failed strdup
14252         * nsfont.m (ns_descriptor_to_entity): Use xstrdup, not strdup.
14253         (ns_get_family): Likewise.
14255 2011-04-02  Juanma Barranquero  <lekktu@gmail.com>
14257         * eval.c (unwind_to_catch) [DEBUG_GCPRO]: Remove redundant assignment.
14259 2011-04-02  Jan Djärv  <jan.h.d@swipnet.se>
14261         * nsterm.m (ns_update_auto_hide_menu_bar): Only for OSX 10.6 or
14262         later (Bug#8403).
14264 2011-04-01  Stefan Monnier  <monnier@iro.umontreal.ca>
14266         Add lexical binding.
14268         * window.c (Ftemp_output_buffer_show): New fun.
14269         (Fsave_window_excursion):
14270         * print.c (Fwith_output_to_temp_buffer): Move to subr.el.
14272         * lread.c (lisp_file_lexically_bound_p): New function.
14273         (Fload): Bind Qlexical_binding.
14274         (readevalloop): Remove `evalfun' arg.
14275         Bind Qinternal_interpreter_environment.
14276         (Feval_buffer): Bind Qlexical_binding.
14277         (defvar_int, defvar_bool, defvar_lisp_nopro, defvar_kboard):
14278         Mark as dynamic.
14279         (syms_of_lread): Declare `lexical-binding'.
14281         * lisp.h (struct Lisp_Symbol): New field `declared_special'.
14283         * keyboard.c (eval_dyn): New fun.
14284         (menu_item_eval_property): Use it.
14286         * image.c (parse_image_spec): Use Ffunctionp.
14288         * fns.c (concat, mapcar1): Accept byte-code-functions.
14290         * eval.c (Fsetq): Handle lexical vars.
14291         (Fdefun, Fdefmacro, Ffunction): Make closures when needed.
14292         (Fdefconst, Fdefvaralias, Fdefvar): Mark as dynamic.
14293         (FletX, Flet): Obey lexical binding.
14294         (Fcommandp): Handle closures.
14295         (Feval): New `lexical' arg.
14296         (eval_sub): New function extracted from Feval.  Use it almost
14297         everywhere where Feval was used.  Look up vars in lexical env.
14298         Handle closures.
14299         (Ffunctionp): Move from subr.el.
14300         (Ffuncall): Handle closures.
14301         (apply_lambda): Remove `eval_flags'.
14302         (funcall_lambda): Handle closures and new byte-code-functions.
14303         (Fspecial_variable_p): New function.
14304         (syms_of_eval): Initialize the Vinternal_interpreter_environment var,
14305         but without exporting it to Lisp.
14307         * doc.c (Fdocumentation, store_function_docstring):
14308         * data.c (Finteractive_form): Handle closures.
14310         * callint.c (Fcall_interactively): Preserve lexical-binding mode for
14311         interactive spec.
14313         * bytecode.c (Bstack_ref, Bstack_set, Bstack_set2, BdiscardN):
14314         New byte-codes.
14315         (exec_byte_code): New function extracted from Fbyte_code to handle new
14316         calling convention for byte-code-functions.  Add new byte-codes.
14318         * buffer.c (defvar_per_buffer): Set new `declared_special' field.
14320         * alloc.c (Fmake_symbol): Init new `declared_special' field.
14322 2011-03-31  Juanma Barranquero  <lekktu@gmail.com>
14324         * xdisp.c (redisplay_internal): Fix prototype.
14326 2011-03-31  Eli Zaretskii  <eliz@gnu.org>
14328         * xdisp.c (SCROLL_LIMIT): New macro.
14329         (try_scrolling): Use it when setting scroll_limit.
14330         Limit scrolling to 100 screen lines.
14331         (redisplay_window): Even when falling back on "recentering",
14332         position point in the window according to scroll-conservatively,
14333         scroll-margin, and scroll-*-aggressively variables.  (Bug#6671)
14335         (try_scrolling): When point is above the window, allow searching
14336         as far as scroll_max, or one screenful, to compute vertical
14337         distance from PT to the scroll margin position.  This prevents
14338         try_scrolling from unnecessarily failing when
14339         scroll-conservatively is set to a value slightly larger than the
14340         window height.  Clean up the case of PT below the margin at bottom
14341         of window: scroll_max can no longer be INT_MAX.  When aggressive
14342         scrolling is in use, don't let point enter the opposite scroll
14343         margin as result of the scroll.
14344         (syms_of_xdisp) <scroll-conservatively>: Document the
14345         threshold of 100 lines for never-recentering scrolling.
14347 2011-03-31  Juanma Barranquero  <lekktu@gmail.com>
14349         * dispextern.h (move_it_by_lines):
14350         * xdisp.c (move_it_by_lines): Remove parameter `need_y_p', unused
14351         since 2000-12-29T14:24:09Z!gerd@gnu.org.  All callers changed.
14352         (message_log_check_duplicate): Remove parameters `prev_bol' and
14353         `this_bol', unused since 1998-01-01T02:27:27Z!rms@gnu.org.  All callers changed.
14354         (redisplay_internal): Remove parameter `preserve_echo_area',
14355         unused since 1999-07-21T21:43:52Z!gerd@gnu.org.  All callers changed.
14357         * indent.c (Fvertical_motion):
14358         * window.c (window_scroll_pixel_based, Frecenter):
14359         Don't pass `need_y_p' to `move_it_by_lines'.
14361 2011-03-30  Stefan Monnier  <monnier@iro.umontreal.ca>
14363         * eval.c (struct backtrace): Don't cheat with negative numbers, but do
14364         steal a few bits to be more compact.
14365         (interactive_p, Fbacktrace, Fbacktrace_frame, mark_backtrace):
14366         Remove unneeded casts.
14368         * bytecode.c (Fbyte_code): CAR and CDR can GC.
14370 2011-03-30  Zachary Kanfer  <zkanfer@gmail.com>  (tiny change)
14372         * keyboard.c (Fexecute_extended_command): Do log the "suggest key
14373         binding" message (bug#7967).
14375 2011-03-30  Paul Eggert  <eggert@cs.ucla.edu>
14377         Fix more problems found by GCC 4.6.0's static checks.
14379         * unexelf.c (unexec) [! (defined _SYSTYPE_SYSV || defined __sgi)]:
14380         Remove unused local var.
14382         * editfns.c (Fmessage_box): Remove unused local var.
14384         * xdisp.c (try_window_reusing_current_matrix, x_produce_glyphs):
14385         (note_mode_line_or_margin_highlight, note_mouse_highlight):
14386         Omit unused local vars.
14387         * window.c (shrink_windows): Omit unused local var.
14388         * menu.c (digest_single_submenu): Omit unused local var.
14389         * dispnew.c (update_window) [PERIODIC_PREEMPTION_CHECKING]:
14390         Omit unused local var.
14392         * keyboard.c (parse_modifiers_uncached, parse_modifiers):
14393         Don't assume string length fits in int.
14394         (keyremap_step, read_key_sequence): Use size_t for sizes.
14395         (read_key_sequence): Don't check last_real_key_start redundantly.
14397         * callproc.c (Fcall_process, Fcall_process_region): Use SAFE_ALLOCA
14398         instead of alloca (Bug#8344).
14400         * eval.c (Fbacktrace): Don't assume nargs fits in int.
14401         (Fbacktrace_frame): Don't assume nframes fits in int.
14403         * syntax.c (scan_sexps_forward): Avoid pointer wraparound.
14405         * xterm.c (x_make_frame_visible, same_x_server): Redo to avoid overflow
14406         concerns.
14408         * term.c (produce_glyphless_glyph): Remove unnecessary test.
14410         * cm.c (calccost): Turn while-do into do-while, for clarity.
14412         * keyboard.c (syms_of_keyboard): Use the same style as later
14413         in this function when indexing through an array.  This also
14414         works around GCC bug 48267.
14416         * image.c (tiff_load): Fix off-by-one image count (Bug#8336).
14418         * xselect.c (x_check_property_data): Return correct size (Bug#8335).
14420         * chartab.c (sub_char_table_ref_and_range): Redo for slight
14421         efficiency gain, and to bypass a gcc -Wstrict-overflow warning.
14423         * keyboard.c, keyboard.h (num_input_events): Now size_t.
14424         This avoids undefined behavior on integer overflow, and is a bit
14425         more convenient anyway since it is compared to a size_t variable.
14427         Variadic C functions now count arguments with size_t, not int.
14428         This avoids an unnecessary limitation on 64-bit machines, which
14429         caused (substring ...) to crash on large vectors (Bug#8344).
14430         * lisp.h (struct Lisp_Subr.function.aMANY): Now takes size_t, not int.
14431         (DEFUN_ARGS_MANY, internal_condition_case_n, safe_call): Likewise.
14432         All variadic functions and their callers changed accordingly.
14433         (struct gcpro.nvars): Now size_t, not int.  All uses changed.
14434         * data.c (arith_driver, float_arith_driver): Likewise.
14435         * editfns.c (general_insert_function): Likewise.
14436         * eval.c (struct backtrace.nargs, interactive_p)
14437         (internal_condition_case_n, run_hook_with_args, apply_lambda)
14438         (funcall_lambda, mark_backtrace): Likewise.
14439         * fns.c (concat): Likewise.
14440         * frame.c (x_set_frame_parameters): Likewise.
14441         * fns.c (get_key_arg): Now accepts and returns size_t, and returns
14442         0 if not found, not -1.  All callers changed.
14444         * alloc.c (garbage_collect): Don't assume stack size fits in int.
14445         (stack_copy_size): Now size_t, not int.
14446         (stack_copy, stack_copy_size): Define only if MAX_SAVE_STACK > 0.
14448 2011-03-28  Juanma Barranquero  <lekktu@gmail.com>
14450         * coding.c (encode_designation_at_bol): Remove parameter `charbuf_end',
14451         unused since 2002-03-01T01:17:24Z!handa@m17n.org and 2008-02-01T16:01:31Z!miles@gnu.org.
14452         All callers changed.
14454         * lisp.h (multibyte_char_to_unibyte):
14455         * character.c (multibyte_char_to_unibyte): Remove parameter `rev_tbl',
14456         unused since 2002-03-01T01:16:34Z!handa@m17n.org and 2008-02-01T16:01:31Z!miles@gnu.org.
14457         * character.h (CHAR_TO_BYTE8):
14458         * cmds.c (internal_self_insert):
14459         * editfns.c (general_insert_function):
14460         * keymap.c (push_key_description):
14461         * search.c (Freplace_match):
14462         * xdisp.c (message_dolog, set_message_1): All callers changed.
14464 2011-03-28  Stefan Monnier  <monnier@iro.umontreal.ca>
14466         * keyboard.c (safe_run_hook_funcall): New function.
14467         (safe_run_hooks_1, safe_run_hooks_error, safe_run_hooks): On error,
14468         don't set the hook to nil, but remove the offending function instead.
14469         (Qcommand_hook_internal): Remove, unused.
14470         (syms_of_keyboard): Don't initialize Qcommand_hook_internal nor define
14471         Vcommand_hook_internal.
14473         * eval.c (enum run_hooks_condition): Remove.
14474         (funcall_nil, funcall_not): New functions.
14475         (run_hook_with_args): Call each function through a `funcall' argument.
14476         Remove `cond' argument, now redundant.
14477         (Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success)
14478         (Frun_hook_with_args_until_failure): Adjust accordingly.
14479         (run_hook_wrapped_funcall, Frun_hook_wrapped): New functions.
14481 2011-03-28  Juanma Barranquero  <lekktu@gmail.com>
14483         * dispextern.h (string_buffer_position): Remove declaration.
14485         * print.c (strout): Remove parameter `multibyte', unused since
14486         1999-08-21T19:30:21Z!gerd@gnu.org.  All callers changed.
14488         * search.c (boyer_moore): Remove parameters `len', `pos' and `lim',
14489         never used since function introduction in 1998-02-08T21:33:56Z!rms@gnu.org.
14490         All callers changed.
14492         * w32.c (_wsa_errlist): Use braces for struct initializers.
14494         * xdisp.c (string_buffer_position_lim): Remove parameter `w',
14495         never used since function introduction in 2001-03-09T18:41:50Z!gerd@gnu.org.
14496         All callers changed.
14497         (string_buffer_position): Likewise.  Also, make static (it's never
14498         used outside xdisp.c).
14499         (cursor_row_p): Remove parameter `w', unused since
14500         2000-10-17T16:08:57Z!gerd@gnu.org.  All callers changed.
14501         (decode_mode_spec): Remove parameter `precision', introduced during
14502         Gerd Moellmann's rewrite at 1999-07-21T21:43:52Z!gerd@gnu.org, but never used.
14503         All callers changed.
14505 2011-03-27  Jan Djärv  <jan.h.d@swipnet.se>
14507         * nsterm.m (syms_of_nsterm): Use doc: for ns-auto-hide-menu-bar.
14509 2011-03-27  Anders Lindgren  <andlind@gmail.com>
14511         * nsterm.m (ns_menu_bar_is_hidden): New variable.
14512         (ns_constrain_all_frames, ns_menu_bar_should_be_hidden)
14513         (ns_update_auto_hide_menu_bar): New functions.
14514         (ns_update_begin): Call ns_update_auto_hide_menu_bar.
14515         (applicationDidBecomeActive): Call ns_update_auto_hide_menu_bar and
14516         ns_constrain_all_frames.
14517         (constrainFrameRect): Return at once if ns_menu_bar_should_be_hidden.
14518         (syms_of_nsterm): DEFVAR ns-auto-hide-menu-bar, init to Qnil.
14520 2011-03-27  Jan Djärv  <jan.h.d@swipnet.se>
14522         * nsmenu.m (runDialogAt): Remove argument to timer_check.
14524 2011-03-27  Glenn Morris  <rgm@gnu.org>
14526         * syssignal.h: Replace RETSIGTYPE with void.
14527         * atimer.c, data.c, dispnew.c, emacs.c, floatfns.c, keyboard.c:
14528         * keyboard.h, lisp.h, process.c, sysdep.c, xterm.c:
14529         Replace SIGTYPE with void everywhere.
14530         * s/usg5-4-common.h (SIGTYPE): Remove definition.
14531         * s/template.h (SIGTYPE): Remove commented out definition.
14533 2011-03-26  Eli Zaretskii  <eliz@gnu.org>
14535         * xdisp.c (redisplay_window): Don't check buffer's clip_changed
14536         flag as a prerequisite for invoking try_scrolling.  (Bug#6671)
14538 2011-03-26  Juanma Barranquero  <lekktu@gmail.com>
14540         * w32.c (read_unc_volume): Use parameter `henum', instead of
14541         global variable `wget_enum_handle'.
14543         * keymap.c (describe_vector): Remove parameters `indices' and
14544         `char_table_depth', unused since 2002-03-01T01:43:26Z!handa@m17n.org.
14545         (describe_map, Fdescribe_vector): Adjust calls to `describe_vector'.
14547         * keyboard.h (timer_check, show_help_echo): Remove unused parameters.
14549         * keyboard.c (timer_check): Remove parameter `do_it_now',
14550         unused since 1996-04-12T06:01:29Z!rms@gnu.org.
14551         (show_help_echo): Remove parameter `ok_to_overwrite_keystroke_echo',
14552         unused since 2008-04-19T19:30:53Z!monnier@iro.umontreal.ca.
14554         * keyboard.c (read_char):
14555         * w32menu.c (w32_menu_display_help):
14556         * xmenu.c (show_help_event, menu_help_callback):
14557         Adjust calls to `show_help_echo'.
14559         * gtkutil.c (xg_maybe_add_timer):
14560         * keyboard.c (readable_events):
14561         * process.c (wait_reading_process_output):
14562         * xmenu.c (x_menu_wait_for_event): Adjust calls to `timer_check'.
14564         * insdel.c (adjust_markers_gap_motion):
14565         Remove; no-op since 1998-01-02T21:29:48Z!rms@gnu.org.
14566         (gap_left, gap_right): Don't call it.
14568 2011-03-25  Chong Yidong  <cyd@stupidchicken.com>
14570         * xdisp.c (handle_fontified_prop): Discard changes to clip_changed
14571         incurred during fontification.
14573 2011-03-25  Juanma Barranquero  <lekktu@gmail.com>
14575         * buffer.c (defvar_per_buffer): Remove unused parameter `doc'.
14576         (DEFVAR_PER_BUFFER): Don't pass it.
14578         * dispnew.c (row_equal_p, add_row_entry): Remove unused parameter `w'.
14579         (scrolling_window): Don't pass it.
14581 2011-03-25  Juanma Barranquero  <lekktu@gmail.com>
14583         * dispextern.h (glyph_matric): Use #if GLYPH_DEBUG, not #ifdef.
14585         * fileio.c (check_executable) [DOS_NT]: Remove unused variables `len'
14586         and `suffix'.
14587         (Fset_file_selinux_context) [HAVE_LIBSELINUX]: Move here declaration
14588         of variables specific to SELinux and computation of `encoded_absname'.
14590         * image.c (XPutPixel): Remove unused variable `height'.
14592         * keyboard.c (make_lispy_event): Remove unused variable `hpos'.
14594         * unexw32.c (get_section_info): Remove unused variable `section'.
14596         * w32.c (stat): Remove unused variables `drive_root' and `devtype'.
14597         (system_process_attributes): Remove unused variable `sess'.
14598         (sys_read): Remove unused variable `err'.
14600         * w32fns.c (top): Wrap variables with #if GLYPH_DEBUG, not #ifdef.
14601         (w32_wnd_proc): Remove unused variable `isdead'.
14602         (unwind_create_frame): Use #if GLYPH_DEBUG, not #ifdef.
14603         (Fx_server_max_request_size): Remove unused variable `dpyinfo'.
14604         (x_create_tip_frame): Remove unused variable `tem'.
14606         * w32inevt.c (w32_console_read_socket):
14607         Remove unused variable `no_events'.
14609         * w32term.c (x_draw_composite_glyph_string_foreground):
14610         Remove unused variable `width'.
14612 2011-03-24  Juanma Barranquero  <lekktu@gmail.com>
14614         * w32term.c (x_set_glyph_string_clipping):
14615         Don't pass uninitialized region to CombineRgn.
14617 2011-03-23  Juanma Barranquero  <lekktu@gmail.com>
14619         * w32fns.c (x_set_menu_bar_lines): Remove unused variable `olines'.
14620         (w32_wnd_proc): Pass NULL to Windows API, not uninitialized buffer.
14621         (Fx_close_connection): Remove unused variable `i'.
14623         * w32font.c (w32font_draw): Return number of glyphs.
14624         (w32font_open_internal): Remove unused variable `i'.
14625         (w32font_driver): Add missing initializer.
14627         * w32menu.c (utf8to16): Remove unused variable `utf16'.
14628         (fill_in_menu): Remove unused variable `items_added'.
14630         * w32term.c (last_mouse_press_frame): Remove static global variable.
14631         (w32_clip_to_row): Remove unused variable `f'.
14632         (x_delete_terminal): Remove unused variable `i'.
14634         * w32uniscribe.c (uniscribe_shape): Remove unused variable `nclusters'.
14635         (NOTHING): Remove unused static global variable.
14636         (uniscribe_check_otf): Remove unused variable `table'.
14637         (uniscribe_font_driver): Add missing initializers.
14639 2011-03-23  Julien Danjou  <julien@danjou.info>
14641         * term.c (Fsuspend_tty, Fresume_tty):
14642         * minibuf.c (read_minibuf, run_exit_minibuf_hook):
14643         * window.c (temp_output_buffer_show):
14644         * insdel.c (signal_before_change):
14645         * frame.c (Fhandle_switch_frame):
14646         * fileio.c (Fdo_auto_save):
14647         * emacs.c (Fkill_emacs):
14648         * editfns.c (save_excursion_restore):
14649         * cmds.c (internal_self_insert):
14650         * callint.c (Fcall_interactively):
14651         * buffer.c (Fkill_all_local_variables):
14652         * keyboard.c (Fcommand_execute, Fsuspend_emacs, safe_run_hooks_1):
14653         Use Frun_hooks.
14654         (command_loop_1): Use Frun_hooks.  Call safe_run_hooks
14655         unconditionally since it does the check itself.
14657 2011-03-23  Paul Eggert  <eggert@cs.ucla.edu>
14659         Fix more problems found by GCC 4.5.2's static checks.
14661         * coding.c (encode_coding_raw_text): Avoid unnecessary test
14662         the first time through the loop, since we know p0 < p1 then.
14663         This also avoids a gcc -Wstrict-overflow warning.
14665         * lisp.h (SAFE_ALLOCA, SAFE_ALLOCA_LISP): Avoid 'int' overflow
14666         leading to a memory leak, possible in functions like
14667         load_charset_map_from_file that can allocate an unbounded number
14668         of objects (Bug#8318).
14670         * xmenu.c (set_frame_menubar): Use EMACS_UINT, not int, for indexes
14671         that could (at least in theory) be that large.
14673         * xdisp.c (message_log_check_duplicate): Return unsigned long, not int.
14674         This is less likely to overflow, and avoids undefined behavior if
14675         overflow does occur.  All callers changed.  Use strtoul to scan
14676         for the unsigned long integer.
14677         (pint2hrstr): Simplify and tune code slightly.
14678         This also avoids a (bogus) GCC warning with gcc -Wstrict-overflow.
14680         * scroll.c (do_scrolling): Work around GCC bug 48228.
14681         See <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=48228>.
14683         * frame.c (Fmodify_frame_parameters): Simplify loop counter.
14684         This also avoids a warning with gcc -Wstrict-overflow.
14685         (validate_x_resource_name): Simplify count usage.
14686         This also avoids a warning with gcc -Wstrict-overflow.
14688         * fileio.c (Fcopy_file): Report error if fchown or fchmod
14689         fail (Bug#8306).
14691         * emacs.c (Fdaemon_initialized): Do not ignore I/O errors (Bug#8303).
14693         * process.c (Fmake_network_process): Use socklen_t, not int,
14694         where POSIX says socklen_t is required in portable programs.
14695         This fixes a porting bug on hosts like 64-bit HP-UX, where
14696         socklen_t is wider than int (Bug#8277).
14697         (Fmake_network_process, server_accept_connection):
14698         (wait_reading_process_output, read_process_output):
14699         Likewise.
14701         * process.c: Rename or move locals to avoid shadowing.
14702         (list_processes_1, Fmake_network_process):
14703         (read_process_output_error_handler, exec_sentinel_error_handler):
14704         Rename or move locals.
14705         (Fmake_network_process): Define label "retry_connect" only if needed.
14706         (Fnetwork_interface_info): Fix pointer signedness.
14707         (process_send_signal): Add cast to avoid pointer signedness problem.
14708         (FIRST_PROC_DESC, IF_NON_BLOCKING_CONNECT): Remove unused macros.
14709         (create_process): Use 'volatile' to avoid vfork clobbering (Bug#8298).
14711         Make tparam.h and terminfo.c consistent.
14712         * cm.c (tputs, tgoto, BC, UP): Remove extern decls.
14713         Include tparam.h instead, since it declares them.
14714         * cm.h (PC): Remove extern decl; tparam.h now does this.
14715         * deps.mk (cm.o, terminfo.o): Depend on tparam.h.
14716         * terminfo.c: Include tparam.h, to check interfaces.
14717         (tparm): Make 1st arg a const pointer in decl.  Put it at top level.
14718         (tparam): Adjust signature to match interface in tparam.h;
14719         this removes some undefined behavior.  Check that outstring and len
14720         are zero, which they always are with Emacs.
14721         * tparam.h (PC, BC, UP): New extern decls.
14723         * xftfont.c (xftfont_shape): Now static, and defined only if needed.
14724         (xftfont_open): Rename locals to avoid shadowing.
14726         * ftfont.c (ftfont_resolve_generic_family): Fix pointer signedness.
14727         (ftfont_otf_capability, ftfont_shape): Omit decls if not needed.
14728         (OTF_TAG_SYM): Omit macro if not needed.
14729         (ftfont_list): Remove unused local.
14730         (get_adstyle_property, ftfont_pattern_entity):
14731         (ftfont_lookup_cache, ftfont_open, ftfont_anchor_point):
14732         Rename locals to avoid shadowing.
14734         * xfont.c (xfont_list_family): Mark var as initialized.
14736         * xml.c (make_dom): Now static.
14738         * composite.c (composition_compute_stop_pos): Rename local to
14739         avoid shadowing.
14740         (composition_reseat_it): Remove unused locals.
14741         (find_automatic_composition, composition_adjust_point): Likewise.
14742         (composition_update_it): Mark var as initialized.
14743         (find_automatic_composition): Mark vars as initialized,
14744         with a FIXME (Bug#8290).
14746         character.h: Rename locals to avoid shadowing.
14747         * character.h (PREV_CHAR_BOUNDARY, FETCH_STRING_CHAR_ADVANCE):
14748         (FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE, FETCH_CHAR_ADVANCE):
14749         (FETCH_CHAR_ADVANCE_NO_CHECK, INC_POS, DEC_POS, BUF_INC_POS):
14750         (BUF_DEC_POS): Be more systematic about renaming local temporaries
14751         to avoid shadowing.
14753         * textprop.c (property_change_between_p): Remove; unused.
14755         * intervals.c (interval_start_pos): Now static.
14757         * intervals.h (CHECK_TOTAL_LENGTH): Avoid empty "else".
14759         * atimer.c (start_atimer, append_atimer_lists, set_alarm):
14760         Rename locals to avoid shadowing.
14762         * sound.c (wav_play, au_play, Fplay_sound_internal):
14763         Fix pointer signedness.
14764         (alsa_choose_format): Remove unused local var.
14765         (wav_play): Initialize a variable to 0, to prevent undefined
14766         behavior (Bug#8278).
14768         * region-cache.c (insert_cache_boundary): Redo var to avoid shadowing.
14770         * region-cache.h (pp_cache): New decl, for gcc -Wmissing-prototypes.
14772         * callproc.c (Fcall_process): Use 'volatile' to avoid vfork
14773         clobbering (Bug#8298).
14774         * sysdep.c (sys_subshell): Likewise.
14775         Previously, the sys_subshell 'volatile' was incorrectly IF_LINTted out.
14777         * lisp.h (child_setup): Now NO_RETURN unless DOS_NT.
14778         This should get cleaned up, so that child_setup has the
14779         same signature on all platforms.
14781         * callproc.c (call_process_cleanup): Now static.
14782         (relocate_fd): Rename locals to avoid shadowing.
14784 2011-03-22  Chong Yidong  <cyd@stupidchicken.com>
14786         * xterm.c (x_clear_frame): Remove XClearWindow call.  This appears
14787         not to be necessary, and produces flickering.
14789 2011-03-20  Glenn Morris  <rgm@gnu.org>
14791         * config.in: Remove file.
14793 2011-03-20  Juanma Barranquero  <lekktu@gmail.com>
14795         * minibuf.c (Vcompleting_read_function): Don't declare, global variables
14796         are now in src/globals.h.
14797         (syms_of_minibuf): Remove spurious & from previous change.
14799 2011-03-20  Leo Liu  <sdl.web@gmail.com>
14801         * minibuf.c (completing-read-function): New variable.
14802         (completing-read-default): Rename from completing-read.
14803         (completing-read): Call completing-read-function.
14805 2011-03-19  Juanma Barranquero  <lekktu@gmail.com>
14807         * xfaces.c (Fx_load_color_file):
14808         Read color file from absolute filename (bug#8250).
14810 2011-03-19  Juanma Barranquero  <lekktu@gmail.com>
14812         * makefile.w32-in: Update dependencies.
14814 2011-03-17  Eli Zaretskii  <eliz@gnu.org>
14816         * makefile.w32-in ($(BLD)/unexw32.$(O)): Depend on $(SRC)/unexec.h.
14818 2011-03-17  Paul Eggert  <eggert@cs.ucla.edu>
14820         Fix more problems found by GCC 4.5.2's static checks.
14822         * process.c (make_serial_process_unwind, send_process_trap):
14823         (sigchld_handler): Now static.
14825         * process.c (allocate_pty): Let PTY_ITERATION declare iteration vars.
14826         That way, the code declares only the vars that it needs.
14827         * s/aix4-2.h (PTY_ITERATION): Declare iteration vars.
14828         * s/cygwin.h (PTY_ITERATION): Likewise.
14829         * s/darwin.h (PTY_ITERATION): Likewise.
14830         * s/gnu-linux.h (PTY_ITERATION): Likewise.
14832         * s/irix6-5.h (PTY_OPEN): Declare stb, to loosen coupling.
14833         * process.c (allocate_pty): Don't declare stb unless it's needed.
14835         * bytecode.c (MAYBE_GC): Rewrite so as not to use empty "else".
14836         (CONSTANTLIM): Remove; unused.
14837         (METER_CODE, Bscan_buffer, Bread_char, Bset_mark):
14838         Define only if needed.
14840         * unexelf.c (unexec): Name an expression,
14841         to avoid gcc -Wbad-function-cast warning.
14842         Use a different way to cause a compilation error if anyone uses
14843         n rather than nn, a way that does not involve shadowing.
14844         (ELF_BSS_SECTION_NAME, OLD_PROGRAM_H): Remove; unused.
14846         * deps.mk (unexalpha.o): Remove; unused.
14848         New file unexec.h, the (simple) interface for unexec (Bug#8267).
14849         * unexec.h: New file.
14850         * deps.mk (emacs.o, unexaix.o, unexcw.o, unexcoff.o, unexelf.o):
14851         (unexhp9k800.o, unexmacosx.o, unexsol.o, unexw32.o):
14852         Depend on unexec.h.
14853         * emacs.c [!defined CANNOT_DUMP]: Include unexec.h.
14854         * unexaix.c, unexcoff.c, unexcw.c, unexelf.c, unexhp9k800.c:
14855         * unexmacosx.c, unexsol.c, unexw32.c: Include unexec.h.
14856         Change as necessary to match prototype in unexec.h.
14858         * syntax.c (Fforward_comment, scan_lists): Rename locals to avoid
14859         shadowing.
14860         (back_comment, skip_chars): Mark vars as initialized.
14862         * character.h (FETCH_STRING_CHAR_ADVANCE_NO_CHECK, BUF_INC_POS):
14863         Rename locals to avoid shadowing.
14865         * lread.c (read1): Rewrite so as not to use empty "else".
14866         (Fload, readevalloop, read1): Rename locals to avoid shadowing.
14868         * print.c (Fredirect_debugging_output): Fix pointer signedess.
14870         * lisp.h (debug_output_compilation_hack): Add decl here, to avoid
14871         warning when compiling print.c.
14873         * font.c (font_unparse_fcname): Abort in an "impossible" situation
14874         instead of using an uninitialized var.
14875         (font_sort_entities): Mark var as initialized.
14877         * character.h (FETCH_CHAR_ADVANCE): Rename locals to avoid shadowing.
14879         * font.c (font_unparse_xlfd): Don't mix pointers to variables with
14880         pointers to constants.
14881         (font_parse_fcname): Remove unused vars.
14882         (font_delete_unmatched): Now static.
14883         (font_get_spec): Remove; unused.
14884         (font_style_to_value, font_prop_validate_style, font_unparse_fcname):
14885         (font_update_drivers, Ffont_get_glyphs, font_add_log):
14886         Rename or move locals to avoid shadowing.
14888         * fns.c (require_nesting_list, require_unwind): Now static.
14889         (Ffillarray): Rename locals to avoid shadowing.
14891         * floatfns.c (domain_error2): Define only if needed.
14892         (Ffrexp, Fldexp): Rename locals to avoid shadowing.
14894         * alloc.c (mark_backtrace): Move decl from here ...
14895         * lisp.h: ... to here, so that it can be checked.
14897         * eval.c (call_debugger, do_debug_on_call, grow_specpdl): Now static.
14898         (Fdefvar): Rewrite so as not to use empty "else".
14899         (lisp_indirect_variable): Name an expression,
14900         to avoid gcc -Wbad-function-cast warning.
14901         (Fdefvar): Rename locals to avoid shadowing.
14903         * callint.c (quotify_arg, quotify_args): Now static.
14904         (Fcall_interactively): Rename locals to avoid shadowing.
14905         Use const pointer when appropriate.
14907         * lisp.h (get_system_name, get_operating_system_release):
14908         Move decls here, to check interfaces.
14909         * process.c (get_operating_system_release): Move decl to lisp.h.
14910         * xrdb.c (get_system_name): Likewise.
14911         * editfns.c (init_editfns, Fuser_login_name, Fuser_uid):
14912         (Fuser_real_uid, Fuser_full_name): Remove unnecessary casts,
14913         some of which prompt warnings from gcc -Wbad-function-cast.
14914         (Fformat_time_string, Fencode_time, Finsert_char):
14915         (Ftranslate_region_internal, Fformat):
14916         Rename or remove local vars to avoid shadowing.
14917         (Ftranslate_region_internal): Mark var as initialized.
14919         * doc.c (Fdocumentation, Fsnarf_documentation): Move locals to
14920         avoid shadowing.
14922         * lisp.h (eassert): Check that the argument compiles, even if
14923         ENABLE_CHECKING is not defined.
14925         * data.c (Findirect_variable): Name an expression, to avoid
14926         gcc -Wbad-function-cast warning.
14927         (default_value, arithcompare, arith_driver, arith_error): Now static.
14928         (store_symval_forwarding): Rename local to avoid shadowing.
14929         (Fmake_variable_buffer_local, Fmake_local_variable):
14930         Mark variables as initialized.
14931         (do_blv_forwarding, do_symval_forwarding): Remove; unused.
14933         * alloc.c (check_cons_list): Do not define unless GC_CHECK_CONS_LIST.
14934         (Fmake_vector, Fvector, Fmake_byte_code, Fgarbage_collect):
14935         Rename locals to avoid shadowing.
14936         (mark_stack): Move local variables into the #ifdef region where
14937         they're used.
14938         (BLOCK_INPUT_ALLOC, UNBLOCK_INPUT_ALLOC): Define only if
14939         ! defined SYSTEM_MALLOC && ! defined SYNC_INPUT, as they are not
14940         needed otherwise.
14941         (CHECK_ALLOCATED): Define only if GC_CHECK_MARKED_OBJECTS.
14942         (GC_STRING_CHARS): Remove; not used.
14943         (Fmemory_limit): Cast sbrk's returned value to char *.
14945         * lisp.h (check_cons_list): Declare if GC_CHECK_CONS_LIST; this
14946         avoids undefined behavior in theory.
14948         * regex.c (IF_LINT): Add defn, for benefit of ../lib-src.
14950         Use functions, not macros, for up- and down-casing (Bug#8254).
14951         * buffer.h (DOWNCASE_TABLE, UPCASE_TABLE, DOWNCASE, UPPERCASEP):
14952         (NOCASEP, LOWERCASEP, UPCASE, UPCASE1): Remove.  All callers changed
14953         to use the following functions instead of these macros.
14954         (downcase): Adjust to lack of DOWNCASE_TABLE.  Return int, not
14955         EMACS_INT, since callers assume the returned value fits in int.
14956         (upcase1): Likewise, for UPCASE_TABLE.
14957         (uppercasep, lowercasep, upcase): New static inline functions.
14958         * editfns.c (Fchar_equal): Remove no-longer-needed workaround for
14959         the race-condition problem in the old DOWNCASE.
14961         * regex.c (CHARSET_LOOKUP_RANGE_TABLE_RAW, POP_FAILURE_REG_OR_COUNT):
14962         Rename locals to avoid shadowing.
14963         (regex_compile, re_match_2_internal): Move locals to avoid shadowing.
14964         (regex_compile, re_search_2, re_match_2_internal):
14965         Remove unused local vars.
14966         (FREE_VAR): Rewrite so as not to use empty "else",
14967         which gcc can warn about.
14968         (regex_compile, re_match_2_internal): Mark locals as initialized.
14969         (RETALLOC_IF): Define only if needed.
14970         (WORDCHAR_P): Likewise.  This one is never needed, but is used
14971         only in a comment talking about a compiler bug, so put inside
14972         the #if 0 of that comment.
14973         (CHARSET_LOOKUP_BITMAP, FAIL_STACK_FULL, RESET_FAIL_STACK):
14974         (PUSH_FAILURE_ELT, BUF_PUSH_3, STOP_ADDR_VSTRING):
14975         Remove; unused.
14977         * search.c (boyer_moore): Rename locals to avoid shadowing.
14978         * character.h (FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE):
14979         (PREV_CHAR_BOUNDARY): Likewise.
14981         * search.c (simple_search): Remove unused var.
14983         * dired.c (compile_pattern): Move decl from here ...
14984         * lisp.h: ... to here, so that it can be checked.
14985         (struct re_registers): New forward decl.
14987         * character.h (INC_POS, DEC_POS): Rename locals to avoid shadowing.
14989         * indent.c (MULTIBYTE_BYTES_WIDTH): New args bytes, width.
14990         All uses changed.
14991         (MULTIBYTE_BYTES_WIDTH, scan_for_column, compute_motion):
14992         Rename locals to avoid shadowing.
14993         (Fvertical_motion): Mark locals as initialized.
14995         * casefiddle.c (casify_object, casify_region): Now static.
14996         (casify_region): Mark local as initialized.
14998         * cmds.c (internal_self_insert): Rename local to avoid shadowing.
15000         * lisp.h (GCPRO2_VAR, GCPRO3_VAR, GCPRO4_VAR, GCPRO5_VAR, GCPRO6_VAR):
15001         New macros, so that the caller can use some names other than
15002         gcpro1, gcpro2, etc.
15003         (GCPRO2, GCPRO3, GCPRO4, GCPRO5, GCPRO6): Reimplement in terms
15004         of the new macros.
15005         (GCPRO1_VAR, UNGCPRO_VAR): Change the meaning of the second
15006         argument, for consistency with GCPRO2_VAR, etc: it is now the
15007         prefix of the variable, not the variable itself.  All uses
15008         changed.
15009         * dired.c (directory_files_internal, file_name_completion):
15010         Rename locals to avoid shadowing.
15012         Fix a race condition diagnosed by gcc -Wsequence-point (Bug#8254).
15013         An expression of the form (DOWNCASE (x) == DOWNCASE (y)), found in
15014         dired.c's scmp function, had undefined behavior.
15015         * lisp.h (DOWNCASE_TABLE, UPCASE_TABLE, DOWNCASE, UPPERCASEP):
15016         (NOCASEP, LOWERCASEP, UPCASE, UPCASE1): Move from here ...
15017         * buffer.h: ... to here, because these macros use current_buffer,
15018         and the new implementation with inline functions needs to have
15019         current_buffer in scope now, rather than later when the macros
15020         are used.
15021         (downcase, upcase1): New static inline functions.
15022         (DOWNCASE, UPCASE1): Reimplement using these functions.
15023         This avoids undefined behavior in expressions like
15024         DOWNCASE (x) == DOWNCASE (y), which previously suffered
15025         from race conditions in accessing the global variables
15026         case_temp1 and case_temp2.
15027         * casetab.c (case_temp1, case_temp2): Remove; no longer needed.
15028         * lisp.h (case_temp1, case_temp2): Remove their decls.
15029         * character.h (ASCII_CHAR_P): Move from here ...
15030         * lisp.h: ... to here, so that the inline functions mentioned
15031         above can use them.
15033         * dired.c (directory_files_internal_unwind): Now static.
15035         * fileio.c (file_name_as_directory, directory_file_name):
15036         (barf_or_query_if_file_exists, auto_save_error, auto_save_1):
15037         Now static.
15038         (file_name_as_directory): Use const pointers when appropriate.
15039         (Fexpand_file_name): Likewise.  In particular, newdir might
15040         point at constant storage, so make it a const pointer.
15041         (Fmake_directory_internal, Fread_file_name): Remove unused vars.
15042         (Ffile_selinux_context, Fset_file_selinux_context): Fix pointer
15043         signedness issues.
15044         (Fset_file_times, Finsert_file_contents, auto_save_error):
15045         Rename locals to avoid shadowing.
15047         * minibuf.c (choose_minibuf_frame_1): Now static.
15048         (Ftry_completion, Fall_completions): Rename or remove locals
15049         to avoid shadowing.
15051         * marker.c (bytepos_to_charpos): Remove; unused.
15053         * lisp.h (verify_bytepos, count_markers): New decls,
15054         so that gcc does not warn that these functions aren't declared.
15056         * insdel.c (check_markers, make_gap_larger, make_gap_smaller):
15057         (reset_var_on_error, Fcombine_after_change_execute_1): Now static.
15058         (CHECK_MARKERS): Redo to avoid gcc -Wempty-body diagnostic.
15059         (copy_text): Remove unused local var.
15061         * filelock.c (within_one_second): Now static.
15062         (lock_file_1): Rename local to avoid shadowing.
15064         * buffer.c (fix_overlays_before): Mark locals as initialized.
15065         (fix_start_end_in_overlays): Likewise.  This function should be
15066         simplified by using pointers-to-pointers, but that's a different
15067         matter.
15068         (switch_to_buffer_1): Now static.
15069         (Fkill_buffer, record_buffer, Fbury_buffer, Fset_buffer_multibyte):
15070         (report_overlay_modification): Rename locals to avoid shadowing.
15072         * sysdep.c (system_process_attributes): Rename vars to avoid shadowing.
15073         Fix pointer signedness issue.
15074         (sys_subshell): Mark local as volatile if checking for lint,
15075         to suppress a gcc -Wclobbered warning that does not seem to be right.
15076         (MAXPATHLEN): Define only if needed.
15078         * process.c (serial_open, serial_configure): Move decls from here ...
15079         * systty.h: ... to here, so that they can be checked.
15081         * fns.c (get_random, seed_random): Move extern decls from here ...
15082         * lisp.h: ... to here, so that they can be checked.
15084         * sysdep.c (reset_io): Now static.
15085         (wait_for_termination_signal): Remove; unused.
15087         * keymap.c (keymap_parent, keymap_memberp, map_keymap_internal):
15088         (copy_keymap_item, append_key, push_text_char_description):
15089         Now static.
15090         (Fwhere_is_internal): Don't test CONSP (sequences) unnecessarily.
15091         (DENSE_TABLE_SIZE): Remove; unused.
15092         (get_keymap, access_keymap, Fdefine_key, Fwhere_is_internal):
15093         (describe_map_tree):
15094         Rename locals to avoid shadowing.
15096         * keyboard.c: Declare functions static if they are not used elsewhere.
15097         (echo_char, echo_dash, cmd_error, top_level_2):
15098         (poll_for_input, handle_async_input): Now static.
15099         (read_char, kbd_buffer_get_event, make_lispy_position):
15100         (make_lispy_event, make_lispy_movement, apply_modifiers):
15101         (decode_keyboard_code, tty_read_avail_input, menu_bar_items):
15102         (parse_tool_bar_item, read_key_sequence, Fread_key_sequence):
15103         (Fread_key_sequence_vector): Rename locals to avoid shadowing.
15104         (read_key_sequence, read_char): Mark locals as initialized.
15105         (Fexit_recursive_edit, Fabort_recursive_edit): Mark with NO_RETURN.
15107         * keyboard.h (make_ctrl_char): New decl.
15108         (mark_kboards): Move decl here ...
15109         * alloc.c (mark_kboards): ... from here.
15111         * lisp.h (force_auto_save_soon): New decl.
15113         * emacs.c (init_cmdargs): Rename local to avoid shadowing.
15114         (DEFINE_DUMMY_FUNCTION): New macro.
15115         (__do_global_ctors, __do_global_ctors_aux, __do_global_dtors, __main):
15116         Use it.
15117         (main): Add casts to avoid warnings
15118         if GCC considers string literals to be constants.
15120         * lisp.h (fatal_error_signal): Add decl, since it's exported.
15122         * dbusbind.c: Pointer signedness fixes.
15123         (xd_signature, xd_append_arg, xd_initialize):
15124         (Fdbus_call_method, Fdbus_call_method_asynchronously):
15125         (Fdbus_method_return_internal, Fdbus_method_error_internal):
15126         (Fdbus_send_signal, xd_read_message_1, Fdbus_register_service):
15127         (Fdbus_register_signal): Use SSDATA when the context wants char *.
15129         * dbusbind.c (Fdbus_init_bus): Add cast to avoid warning
15130         if GCC considers string literals to be constants.
15131         (Fdbus_register_service, Fdbus_register_method): Remove unused vars.
15133 2011-03-16  Stefan Monnier  <monnier@iro.umontreal.ca>
15135         * print.c (PRINT_CIRCLE_CANDIDATE_P): New macro.
15136         (print_preprocess, print_object): New macro to fix last change.
15138         * print.c (print_preprocess): Don't forget font objects.
15140 2011-03-16  Juanma Barranquero  <lekktu@gmail.com>
15142         * emacs.c (USAGE3): Doc fixes.
15144 2011-03-15  Andreas Schwab  <schwab@linux-m68k.org>
15146         * coding.c (detect_coding_iso_2022): Reorganize code to clarify
15147         structure.
15149 2011-03-14  Juanma Barranquero  <lekktu@gmail.com>
15151         * lisp.h (VWindow_system, Qfile_name_history):
15152         * keyboard.h (lispy_function_keys) [WINDOWSNT]:
15153         * w32term.h (w32_system_caret_hwnd, w32_system_caret_height)
15154         (w32_system_caret_x, w32_system_caret_y): Declare extern.
15156         * w32select.c: Don't #include "keyboard.h".
15157         (run_protected): Add extern declaration for waiting_for_input.
15159         * w32.c (Qlocal, noninteractive1, inhibit_window_system):
15160         * w32console.c (detect_input_pending, read_input_pending)
15161         (encode_terminal_code):
15162         * w32fns.c (quit_char, lispy_function_keys, Qtooltip)
15163         (w32_system_caret_hwnd, w32_system_caret_height, w32_system_caret_x)
15164         (w32_system_caret_y, Qfile_name_history):
15165         * w32font.c (w32font_driver, QCantialias, QCotf, QClang):
15166         * w32inevt.c (reinvoke_input_signal, lispy_function_keys):
15167         * w32menu.c (Qmenu_bar, QCtoggle, QCradio, Qoverriding_local_map)
15168         (Qoverriding_terminal_local_map, Qmenu_bar_update_hook):
15169         * w32proc.c (Qlocal, report_file_error):
15170         * w32term.c (Vwindow_system, updating_frame):
15171         * w32uniscribe.c (initialized, uniscribe_font_driver):
15172         Remove unneeded extern declarations.
15174 2011-03-14  Chong Yidong  <cyd@stupidchicken.com>
15176         * buffer.c (Fmake_indirect_buffer): Fix incorrect assertions.
15178 2011-03-13  Chong Yidong  <cyd@stupidchicken.com>
15180         * buffer.h (BUF_BEGV, BUF_BEGV_BYTE, BUF_ZV, BUF_ZV_BYTE, BUF_PT)
15181         (BUF_PT_BYTE): Rewrite to handle indirect buffers (Bug#8219).
15182         These macros can no longer be used for assignment.
15184         * buffer.c (Fget_buffer_create, Fmake_indirect_buffer):
15185         Assign struct members directly, instead of using BUF_BEGV etc.
15186         (record_buffer_markers, fetch_buffer_markers): New functions for
15187         recording and fetching special buffer markers.
15188         (set_buffer_internal_1, set_buffer_temp): Use them.
15190         * lread.c (unreadchar): Use SET_BUF_PT_BOTH.
15192         * insdel.c (adjust_point): Use SET_BUF_PT_BOTH.
15194         * intervals.c (temp_set_point_both): Use SET_BUF_PT_BOTH.
15195         (get_local_map): Use SET_BUF_BEGV_BOTH and SET_BUF_ZV_BOTH.
15197         * xdisp.c (hscroll_window_tree):
15198         (reconsider_clip_changes): Use PT instead of BUF_PT.
15200 2011-03-13  Eli Zaretskii  <eliz@gnu.org>
15202         * makefile.w32-in ($(BLD)/editfns.$(O)): Depend on
15203         $(EMACS_ROOT)/lib/intprops.h.
15205 2011-03-13  Paul Eggert  <eggert@cs.ucla.edu>
15207         Fix more problems found by GCC 4.5.2's static checks.
15209         * gtkutil.c (xg_get_pixbuf_from_pixmap): Add cast from char *
15210         to unsigned char * to avoid compiler diagnostic.
15211         (xg_free_frame_widgets): Make it clear that a local variable is
15212         needed only if USE_GTK_TOOLTIP.
15213         (gdk_window_get_screen): Make it clear that this macro is needed
15214         only if USE_GTK_TOOLTIP.
15215         (int_gtk_range_get_value): New function, which avoids a diagnostic
15216         from gcc -Wbad-function-cast.
15217         (xg_set_toolkit_scroll_bar_thumb): Use it.
15218         (xg_tool_bar_callback, xg_tool_item_stale_p): Rewrite to avoid
15219         diagnostic from gcc -Wbad-function-cast.
15220         (get_utf8_string, xg_get_file_with_chooser):
15221         Rename locals to avoid shadowing.
15222         (create_dialog): Move locals to avoid shadowing.
15224         * xgselect.c (xg_select): Remove unused var.
15226         * image.c (four_corners_best): Mark locals as initialized.
15227         (gif_load): Initialize transparent_p to zero (Bug#8238).
15228         Mark another local as initialized.
15229         (my_png_error, my_error_exit): Mark with NO_RETURN.
15231         * image.c (clear_image_cache): Now static.
15232         (DIM, HAVE_STDLIB_H_1): Remove unused macros.
15233         (xpm_load): Redo to avoid "discards qualifiers" gcc warning.
15234         (x_edge_detection): Remove unnecessary cast that
15235         gcc -Wbad-function-cast diagnoses.
15236         (gif_load): Fix pointer signedness.
15237         (clear_image_cache, xbm_read_bitmap_data, x_detect_edges):
15238         (jpeg_load, gif_load): Rename locals to avoid shadowing.
15240 2011-03-12  Paul Eggert  <eggert@cs.ucla.edu>
15242         Improve quality of tests for time stamp overflow.
15243         For example, without this patch (encode-time 0 0 0 1 1
15244         1152921504606846976) returns the obviously-bogus value (-948597
15245         62170) on my RHEL 5.5 x86-64 host.  With the patch, it correctly
15246         reports time overflow.  See
15247         <http://lists.gnu.org/archive/html/emacs-devel/2011-03/msg00470.html>.
15248         * deps.mk (editfns.o): Depend on ../lib/intprops.h.
15249         * editfns.c: Include limits.h and intprops.h.
15250         (TIME_T_MIN, TIME_T_MAX): New macros.
15251         (time_overflow): Move earlier, to before first use.
15252         (hi_time, lo_time): New functions, for an accurate test for
15253         out-of-range times.
15254         (Fcurrent_time, Fget_internal_run_time, make_time): Use them.
15255         (Fget_internal_run_time): Don't assume time_t fits in int.
15256         (make_time): Use list2 instead of Fcons twice.
15257         (Fdecode_time): More accurate test for out-of-range times.
15258         (check_tm_member): New function.
15259         (Fencode_time): Use it, to test for out-of-range times.
15260         (lisp_time_argument): Don't rely on undefined left-shift and
15261         right-shift behavior when checking for time stamp overflow.
15263         * editfns.c (time_overflow): New function, refactoring common code.
15264         (Fformat_time_string, Fdecode_time, Fencode_time):
15265         (Fcurrent_time_string): Use it.
15267         Move 'make_time' to be next to its inverse 'lisp_time_argument'.
15268         * dired.c (make_time): Move to ...
15269         * editfns.c (make_time): ... here.
15270         * systime.h: Note the move.
15272 2011-03-12  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
15274         * fringe.c (update_window_fringes): Remove unused variables.
15276         * unexmacosx.c (copy_data_segment): Also copy __got section.
15277         (Bug#8223)
15279 2011-03-12  Eli Zaretskii  <eliz@gnu.org>
15281         * termcap.c [MSDOS]: Include "msdos.h".
15282         (find_capability, tgetnum, tgetflag, tgetstr, tputs, tgetent):
15283         Constify `char *' arguments and their references according to
15284         prototypes in tparam.h.
15286         * deps.mk (termcap.o): Depend on tparam.h and msdos.h.
15288         * msdos.c (XMenuAddPane): 3rd argument is `const char *' now.
15289         Adapt all references accordingly.
15291         * msdos.h (XMenuAddPane): 3rd argument is `const char *' now.
15293 2011-03-11  Tom Tromey  <tromey@redhat.com>
15295         * buffer.c (syms_of_buffer): Remove obsolete comment.
15297 2011-03-11  Eli Zaretskii  <eliz@gnu.org>
15299         * termhooks.h (encode_terminal_code): Declare prototype.
15301         * msdos.c (encode_terminal_code): Don't declare prototype.
15303         * term.c (encode_terminal_code): Now external again, used by
15304         w32console.c and msdos.c.
15306         * makefile.w32-in ($(BLD)/term.$(O), ($(BLD)/tparam.$(O)):
15307         Depend on $(SRC)/tparam.h, see 2011-03-11T07:24:21Z!eggert@cs.ucla.edu.
15309 2011-03-11  Paul Eggert  <eggert@cs.ucla.edu>
15311         Fix some minor problems found by GCC 4.5.2's static checks.
15313         * fringe.c (update_window_fringes): Mark locals as initialized
15314         (Bug#8227).
15315         (destroy_fringe_bitmap, init_fringe_bitmap): Now static.
15317         * alloc.c (mark_fringe_data): Move decl from here ...
15318         * lisp.h (mark_fringe_data) [HAVE_WINDOW_SYSTEM]: ... to here,
15319         to check its interface.
15320         (init_fringe_once): Do not declare unless HAVE_WINDOW_SYSTEM.
15322         * fontset.c (free_realized_fontset): Now static.
15323         (Fset_fontset_font): Rename local to avoid shadowing.
15324         (fontset_font): Mark local as initialized.
15325         (FONTSET_SPEC, FONTSET_REPERTORY, RFONT_DEF_REPERTORY): Remove; unused.
15327         * xrdb.c: Include "xterm.h", to check x_load_resources's interface.
15329         * xselect.c (x_disown_buffer_selections): Remove; not used.
15330         (TRACE3) [!defined TRACE_SELECTION]: Remove; not used.
15331         (x_own_selection, Fx_disown_selection_internal): Rename locals
15332         to avoid shadowing.
15333         (x_handle_dnd_message): Remove local to avoid shadowing.
15335         * lisp.h (GCPRO1_VAR, UNGCPRO_VAR): New macros,
15336         so that the caller can use some name other than gcpro1.
15337         (GCPRO1, UNGCPRO): Reimplement in terms of the new macros.
15338         * xfns.c (Fx_create_frame, x_create_tip_frame, Fx_show_tip):
15339         (Fx_backspace_delete_keys_p):
15340         Use them to avoid shadowing, and rename vars to avoid shadowing.
15341         (x_decode_color, x_set_name, x_window): Now static.
15342         (Fx_create_frame): Add braces to silence GCC warning.
15343         (Fx_file_dialog, Fx_select_font): Fix pointer signedness.
15344         (x_real_positions, xg_set_icon_from_xpm_data, x_create_tip_frame):
15345         Remove unused locals.
15346         (Fx_create_frame, x_create_tip_frame, Fx_show_tip):
15347         (Fx_backspace_delete_keys_p): Rename locals to avoid shadowing.
15348         Some of these renamings use the new GCPRO1_VAR and UNGCPRO_VAR
15349         macros.
15351         * xterm.h (x_mouse_leave): New decl.
15353         * xterm.c (x_copy_dpy_color, x_focus_on_frame, x_unfocus_frame):
15354         Remove unused functions.
15355         (x_shift_glyphs_for_insert, XTflash, XTring_bell):
15356         (x_calc_absolute_position): Now static.
15357         (XTread_socket): Don't define label "out" unless it's used.
15358         Don't declare local "event" unless it's used.
15359         (x_iconify_frame, x_free_frame_resources): Don't declare locals
15360         unless they are used.
15361         (XEMBED_VERSION, xembed_set_info): Don't define unless needed.
15362         (x_fatal_error_signal): Remove; not used.
15363         (x_draw_image_foreground, redo_mouse_highlight, XTmouse_position):
15364         (x_scroll_bar_report_motion, handle_one_xevent, x_draw_bar_cursor):
15365         (x_error_catcher, x_connection_closed, x_error_handler):
15366         (x_error_quitter, xembed_send_message, x_iconify_frame):
15367         (my_log_handler): Rename locals to avoid shadowing.
15368         (x_delete_glyphs, x_ins_del_lines): Mark with NO_RETURN.
15369         (x_connection_closed): Tell GCC not to suggest NO_RETURN.
15371         * xfaces.c (clear_face_cache, Fx_list_fonts, Fface_font):
15372         Rename or move locals to avoid shadowing.
15373         (tty_defined_color, merge_face_heights): Now static.
15374         (free_realized_faces_for_fontset): Remove; not used.
15375         (Fx_list_fonts): Mark variable that gcc -Wuninitialized
15376         does not deduce is never used uninitialized.
15377         (STRDUPA, LSTRDUPA, FONT_POINT_SIZE_QUANTUM): Remove; not used.
15378         (LFACEP): Define only if XASSERTS, as it's not needed otherwise.
15380         * terminal.c (store_terminal_param): Now static.
15382         * xmenu.c (menu_highlight_callback): Now static.
15383         (set_frame_menubar): Remove unused local.
15384         (xmenu_show): Rename parameter to avoid shadowing.
15385         (xmenu_show, xdialog_show, xmenu_show): Make local pointers "const"
15386         since they might point to immutable storage.
15387         (next_menubar_widget_id): Declare only if USE_X_TOOLKIT,
15388         since it's unused otherwise.
15390         * xdisp.c (produce_glyphless_glyph): Initialize lower_xoff.
15391         Add a FIXME, since the code still doesn't look right.  (Bug#8215)
15392         (Fcurrent_bidi_paragraph_direction): Simplify slightly; this
15393         avoids a gcc -Wuninitialized diagnostic.
15394         (display_line, BUILD_COMPOSITE_GLYPH_STRING, draw_glyphs):
15395         (note_mouse_highlight): Mark variables that gcc -Wuninitialized
15396         does not deduce are never used uninitialized.
15398         * lisp.h (IF_LINT): New macro, copied from ../lib-src/emacsclient.c.
15400         * xdisp.c (redisplay_window): Rename local to avoid shadowing.
15401         * window.c (window_loop, size_window):
15402         (run_window_configuration_change_hook, enlarge_window): Likewise.
15404         * window.c (display_buffer): Now static.
15405         (size_window): Mark variables that gcc -Wuninitialized
15406         does not deduce are never used uninitialized.
15407         * window.h (check_all_windows): New decl, to forestall
15408         gcc -Wmissing-prototypes diagnostic.
15409         * dispextern.h (bidi_dump_cached_states): Likewise.
15411         * charset.h (CHECK_CHARSET_GET_CHARSET): Rename locals to avoid
15412         shadowing.
15413         * charset.c (map_charset_for_dump, Fchar_charset): Likewise.
15414         Include <limits.h>.
15415         (Fsort_charsets): Redo min/max calculation to shorten the code a bit
15416         and to avoid gcc -Wuninitialized warning.
15417         (load_charset_map): Mark variables that gcc -Wuninitialized
15418         does not deduce are never used uninitialized.
15419         (load_charset): Abort instead of using uninitialized var (Bug#8229).
15421         * coding.c (coding_set_source, coding_set_destination):
15422         Use "else { /* comment */ }" rather than "else /* comment */;"
15423         for clarity, and to avoid gcc -Wempty-body warning.
15424         (Fdefine_coding_system_internal): Don't redeclare 'i' inside
15425         a block, when the outer 'i' will do.
15426         (decode_coding_utf_8, decode_coding_utf_16, detect_coding_emacs_mule):
15427         (emacs_mule_char, decode_coding_emacs_mule, detect_coding_iso_2022):
15428         (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5):
15429         (decode_coding_raw_text, decode_coding_charset, get_translation_table):
15430         (Fdecode_sjis_char, Fdefine_coding_system_internal):
15431         Rename locals to avoid shadowing.
15432         * character.h (FETCH_STRING_CHAR_ADVANCE): Likewise.
15433         * coding.c (emacs_mule_char, encode_invocation_designation):
15434         Now static, since they're not used elsewhere.
15435         (decode_coding_iso_2022): Add "default: abort ();" as a safety check.
15436         (decode_coding_object, encode_coding_object, detect_coding_system):
15437         (decode_coding_emacs_mule): Mark variables that gcc
15438         -Wuninitialized does not deduce are never used uninitialized.
15439         (detect_coding_iso_2022): Initialize a local variable that might
15440         be used uninitialized.  Leave a FIXME because it's not clear that
15441         this initialization is needed.  (Bug#8211)
15442         (ISO_CODE_LF, ISO_CODE_CR, CODING_ISO_FLAG_EUC_TW_SHIFT):
15443         (ONE_MORE_BYTE_NO_CHECK, UTF_BOM, UTF_16_INVALID_P):
15444         (SHIFT_OUT_OK, ENCODE_CONTROL_SEQUENCE_INTRODUCER):
15445         (ENCODE_DIRECTION_R2L, ENCODE_DIRECTION_L2R):
15446         Remove unused macros.
15448         * category.c (hash_get_category_set): Remove unused local var.
15449         (copy_category_table): Now static, since it's not used elsewhere.
15450         * character.c (string_count_byte8): Likewise.
15452         * ccl.c (CCL_WRITE_STRING, CCL_ENCODE_CHAR, Fccl_execute_on_string):
15453         (Fregister_code_conversion_map): Rename locals to avoid shadowing.
15455         * chartab.c (copy_sub_char_table): Now static, since it's not used
15456         elsewhere.
15457         (sub_char_table_ref_and_range, char_table_ref_and_range):
15458         Rename locals to avoid shadowing.
15459         (ASET_RANGE, GET_SUB_CHAR_TABLE): Remove unused macros.
15461         * bidi.c (bidi_check_type): Now static, since it's not used elsewhere.
15462         (BIDI_BOB): Remove unused macro.
15464         * cm.c (cmgoto): Mark variables that gcc -Wuninitialized does not
15465         deduce are never used uninitialized.
15466         * term.c (encode_terminal_code): Likewise.
15468         * term.c (encode_terminal_code): Now static.  Remove unused local.
15470         * tparam.h: New file.
15471         * term.c, tparam.h: Include it.
15472         * deps.mk (term.o, tparam.o): Depend on tparam.h.
15473         * term.c (tputs, tgetent, tgetflag, tgetnum, tparam, tgetstr):
15474         Move these decls to tparam.h, and make them agree with what
15475         is actually in tparam.c.  The previous trick of using incompatible
15476         decls in different modules does not conform to the C standard.
15477         All callers of tparam changed to use tparam's actual API.
15478         * tparam.c (tparam1, tparam, tgoto):
15479         Use const pointers where appropriate.
15481         * cm.c (calccost, cmgoto): Use const pointers where appropriate.
15482         * cm.h (struct cm): Likewise.
15483         * dispextern.h (do_line_insertion_deletion_costs): Likewise.
15484         * scroll.c (ins_del_costs, do_line_insertion_deletion_costs): Likewise.
15485         * term.c (tty_ins_del_lines, calculate_costs, struct fkey_table):
15486         (term_get_fkeys_1, append_glyphless_glyph, produce_glyphless_glyph):
15487         (turn_on_face, init_tty): Likewise.
15488         * termchar.h (struct tty_display_info): Likewise.
15490         * term.c (term_mouse_position): Rename local to avoid shadowing.
15492         * alloc.c (mark_ttys): Move decl from here ...
15493         * lisp.h (mark_ttys): ... to here, so that it's checked against defn.
15495 2011-03-11  Andreas Schwab  <schwab@linux-m68k.org>
15497         * .gdbinit (pwinx, xbuffer): Fix access to buffer name.
15499 2011-03-09  Juanma Barranquero  <lekktu@gmail.com>
15501         * search.c (compile_pattern_1): Remove argument regp, unused since
15502         revid:rms@gnu.org-19941211082627-3x1g1wyqkjmwloig.
15503         (compile_pattern): Don't pass it.
15505 2011-03-08  Jan Djärv  <jan.h.d@swipnet.se>
15507         * xterm.h (DEFAULT_GDK_DISPLAY): New define.
15508         (GDK_WINDOW_XID, gtk_widget_get_preferred_size): New defines
15509         for ! HAVE_GTK3.
15510         (GTK_WIDGET_TO_X_WIN): Use GDK_WINDOW_XID.
15512         * xmenu.c (menu_position_func): Call gtk_widget_get_preferred_size.
15514         * gtkutil.c: Include gtkx.h if HAVE_GTK3.  If ! HAVE_GTK3, define
15515         gdk_window_get_screen, gdk_window_get_geometry,
15516         gdk_x11_window_lookup_for_display and GDK_KEY_g.
15517         (xg_set_screen): Use DEFAULT_GDK_DISPLAY.
15518         (xg_get_pixbuf_from_pixmap): New function.
15519         (xg_get_pixbuf_from_pix_and_mask): Change parameters from GdkPixmap
15520         to Pixmap, take frame as parameter, remove GdkColormap parameter.
15521         Call xg_get_pixbuf_from_pixmap instead of
15522         gdk_pixbuf_get_from_drawable.
15523         (xg_get_image_for_pixmap): Do not make GdkPixmaps, call
15524         xg_get_pixbuf_from_pix_and_mask with Pixmap parameters instead.
15525         (xg_check_special_colors): Use GtkStyleContext and its functions
15526         for HAVE_GTK3.
15527         (xg_prepare_tooltip, xg_hide_tooltip): Call gdk_window_get_screen.
15528         (xg_prepare_tooltip, create_dialog, menubar_map_cb)
15529         (xg_update_frame_menubar, xg_tool_bar_detach_callback)
15530         (xg_tool_bar_attach_callback, xg_update_tool_bar_sizes):
15531         Call gtk_widget_get_preferred_size.
15532         (xg_frame_resized): gdk_window_get_geometry only takes 5
15533         parameters.
15534         (xg_win_to_widget, xg_event_is_for_menubar):
15535         Call gdk_x11_window_lookup_for_display.
15536         (xg_set_widget_bg): New function.
15537         (delete_cb): New function.
15538         (xg_create_frame_widgets): Connect delete-event to delete_cb.
15539         Call xg_set_widget_bg.  Only set background pixmap for ! HAVE_GTK3
15540         (xg_set_background_color): Call xg_set_widget_bg.
15541         (xg_set_frame_icon): Call xg_get_pixbuf_from_pix_and_mask.
15542         (xg_create_scroll_bar): vadj is a GtkAdjustment for HAVE_GTK3.
15543         Only call gtk_range_set_update_policy if ! HAVE_GTK3.
15544         (xg_make_tool_item): Only connect xg_tool_bar_item_expose_callback
15545         if ! HAVE_GTK3.
15546         (update_frame_tool_bar): Call gtk_widget_hide.
15547         (xg_initialize): Use GDK_KEY_g.
15549         * xsmfns.c (gdk_set_sm_client_id): Define to gdk_set_sm_client_id
15550         if ! HAVE_GTK3
15551         (x_session_initialize): Call gdk_x11_set_sm_client_id.
15553         * xterm.c (XFillRectangle): Use cairo routines for HAVE_GTK3.
15554         (x_term_init): Disable Xinput(2) with GDK_CORE_DEVICE_EVENTS.
15555         Load ~/emacs.d/gtkrc only for ! HAVE_GTK3.
15557 2011-03-08  Juanma Barranquero  <lekktu@gmail.com>
15559         * w32xfns.c (select_palette): Check success of RealizePalette against
15560         GDI_ERROR, not zero.
15562 See ChangeLog.11 for earlier changes.
15564 ;; Local Variables:
15565 ;; coding: utf-8
15566 ;; End:
15568   Copyright (C) 2011-2012 Free Software Foundation, Inc.
15570   This file is part of GNU Emacs.
15572   GNU Emacs is free software: you can redistribute it and/or modify
15573   it under the terms of the GNU General Public License as published by
15574   the Free Software Foundation, either version 3 of the License, or
15575   (at your option) any later version.
15577   GNU Emacs is distributed in the hope that it will be useful,
15578   but WITHOUT ANY WARRANTY; without even the implied warranty of
15579   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15580   GNU General Public License for more details.
15582   You should have received a copy of the GNU General Public License
15583   along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.