Improve the fix for bug #14558.
[emacs.git] / src / ChangeLog
blob3b65ff105e9ea56a107d71605ebd2ba3f3501c7b
1 2013-06-06  Eli Zaretskii  <eliz@gnu.org>
3         * xdisp.c (note_mouse_highlight): When mouse-highlight is off,
4         still need to set the mouse pointer shape and activate help-echo.
5         (Bug#14558)
7 2013-06-06  Paul Eggert  <eggert@cs.ucla.edu>
9         A few porting etc. fixes for the new file monitor code.
10         See the thread containing
11         <http://lists.gnu.org/archive/html/emacs-devel/2013-06/msg00109.html>.
12         * gfilenotify.c (dir_monitor_callback, Fgfile_add_watch)
13         (Fgfile_rm_watch): Don't assume EMACS_INT is the same width as a pointer.
14         (dir_monitor_callback, Fgfile_rm_watch):
15         Use assq_no_quit instead of Fassoc, for speed.
16         (dir_monitor_callback, Fgfile_rm_watch):
17         eassert that the monitor is a fixnum.
18         (dir_monitor_callback): No need for CDR_SAFE.
19         Simplify building of lisp with alternative tails.
20         (Fgfile_add_watch, Fgfile_rm_watch):
21         Do not assume glib functions set errno reliably on failure.
22         (Fgfile_add_watch): Check that the monitor survives the XIL trick,
23         and signal an error otherwise.
24         (Fgfile_rm_watch): Prefer CONSP to !NILP.
25         Use Fdelq instead of Fdelete, for speed.
27 2013-06-05  Eli Zaretskii  <eliz@gnu.org>
29         * xdisp.c (handle_tool_bar_click): When mouse-highlight is off,
30         don't insist on being invoked on a highlighted tool-bar button.
31         Avoids losing tool-bar functionality when mouse-highlight is nil.
32         (note_tool_bar_highlight, note_mode_line_or_margin_highlight):
33         Don't highlight when mouse-highlight is nil.
34         (note_mouse_highlight): When mouse-highlight is nil, don't return
35         right away; instead, run tool-bar and mode-line highlight
36         subroutine, clear any existing highlight, and revert the mouse
37         pointer to its default shape.  (Bug#14558)
39 2013-06-05  Stefan Monnier  <monnier@iro.umontreal.ca>
41         * lisp.mk (lisp): Add prog-mode.el.
43 2013-06-05  Paul Eggert  <eggert@cs.ucla.edu>
45         Chain glib's SIGCHLD handler from Emacs's (Bug#14474).
46         * process.c (dummy_handler): New function.
47         (lib_child_handler): New static var.
48         (handle_child_signal): Invoke it.
49         (catch_child_signal): If a library has set up a signal handler,
50         save it into lib_child_handler.
51         (init_process_emacs): If using glib and not on Windows, tickle glib's
52         child-handling code so that it initializes its private SIGCHLD handler.
53         * syssignal.h (SA_SIGINFO): Default to 0.
54         * xterm.c (x_term_init): Remove D-bus hack that I installed on May
55         31; it should no longer be needed now.
57 2013-06-05  Michael Albinus  <michael.albinus@gmx.de>
59         * emacs.c (main) [HAVE_GFILENOTIFY]: Call globals_of_gfilenotify.
61         * gfilenotify.c (globals_of_gfilenotify): New function.
62         (syms_of_gfilenotify): Move global initialization there.
64         * lisp.h (globals_of_gfilenotify) [HAVE_GFILENOTIFY]: Add prototype.
66 2013-06-05  Stefan Monnier  <monnier@iro.umontreal.ca>
68         * keymap.c (Fcurrent_active_maps, Fdescribe_buffer_bindings):
69         * keyboard.c (menu_bar_items, tool_bar_items):
70         * doc.c (Fsubstitute_command_keys): Voverriding_terminal_local_map does
71         not override local keymaps any more.
73 2013-06-04  Eli Zaretskii  <eliz@gnu.org>
75         * window.c (Fpos_visible_in_window_p): Doc fix.  (Bug#14540)
77 2013-06-03  Eli Zaretskii  <eliz@gnu.org>
79         * w32console.c (initialize_w32_display): Return the dimensions of
80         the console window via 2 additional arguments, not via the current
81         frame.  This avoids crashes due to overrunning the bounds of
82         frame's decode_mode_spec_buffer, which is not resized following
83         the change of the frame dimensions from the initial 10x10.
85         * w32term.h (w32_initialize_display_info): Adjust prototype.
87         * term.c (init_tty): Take dimensions of the frame from the values
88         returned by initialize_w32_display.
90         * Makefile.in (GFILENOTIFY_CFLAGS, GFILENOTIFY_LIBS): New variables.
91         (ALL_CFLAGS): Add $(GFILENOTIFY_CFLAGS).
92         (LIBES): Add $(GFILENOTIFY_LIBS).
94         * w32inevt.c (handle_file_notifications): Add dummy implementation
95         for !HAVE_W32NOTIFY.
97         * w32term.c: Wrap code with HAVE_W32NOTIFY.
99 2013-06-03  Jan Djärv  <jan.h.d@swipnet.se>
101         * xgselect.c: Replace #if defined ... with #ifdef HAVE_GLIB.
103         * process.c (wait_reading_process_output): Call xg_select if HAVE_GLIB.
105         * Makefile.in (XGSELOBJ): New, xgselect.o if GLib is used, or empty.
107 2013-06-03  Paul Eggert  <eggert@cs.ucla.edu>
109         Fix minor problems found by static checking.
110         * data.c (pure_write_error):
111         Use xsignal2, not Fsignal, as Fsignal might return.
112         * eval.c (set_backtrace_debug_on_exit): Now static.
113         (backtrace_p, backtrace_top, backtrace_next, record_in_backtrace):
114         No longer inline.  EXTERN_INLINE is needed only for functions
115         defined in .h files.  Reindent function header as per GNU style.
116         (backtrace_p, backtrace_top, backtrace_next):
117         Mark EXTERNALLY_VISIBLE so they don't get optimized away by the
118         compiler or linker.  Add extern decls to pacify gcc -Wall.
119         * frame.c, frame.h (Qgeometry, Qworkarea, Qmm_size, Qframes, Qsource):
120         Now static.
121         * frame.c (free_monitors): Define only on platforms that need it.
122         * nsterm.m (ns_term_init):
123         * process.c (catch_child_signal):
124         Don't worry about whether SIGCHLD is defined, as SIGCHLD is
125         defined on all porting targets these days.
126         * process.c, process.h (catch_child_signal):
127         Make it extern only if NS_IMPL_GNUSTEP is defined.
129 2013-06-03  Eli Zaretskii  <eliz@gnu.org>
131         * w32.c (gettimeofday): Make the signature identical to prototype
132         in nt/inc/sys/time.h.
134 2013-06-03  Stefan Monnier  <monnier@iro.umontreal.ca>
136         * eval.c (backtrace_p, backtrace_top, backtrace_next): Export them to
137         .gdbinit.
139         * keyboard.c (safe_run_hooks_error): Improve error message.
141         * data.c (pure_write_error): Add `object' argument.
142         * puresize.h (CHECK_IMPURE): Use it.
144 2013-06-03  Michael Albinus  <michael.albinus@gmx.de>
146         * Makefile.in (NOTIFY_OBJ): New variable.
147         (base_obj): Replace inotify.o by $(NOTIFY_OBJ).
149         * emacs.c (main): Use HAVE_W32NOTIFY to wrap respective code.
150         Call syms_of_gfilenotify.
152         * gfilenotify.c: New file.
154         * keyboard.c (Qfile_notify): New variable.  Replaces Qfile_inotify
155         and Qfile_w32notify.
156         (top): Wrap respective code by HAVE_GFILENOTIFY, HAVE_INOTIFY,
157         HAVE_W32NOTIFY and USE_FILE_NOTIFY.
159         * lisp.h: Declare syms_of_gfilenotify.
161         * termhooks.h (e): Wrap enum by USE_FILE_NOTIFY.
163 2013-06-03  Stefan Monnier  <monnier@iro.umontreal.ca>
165         Merge the specpdl and backtrace stacks.  Make the structure of the
166         specpdl entries more obvious via a tagged union of structs.
167         * lisp.h (BITS_PER_PTRDIFF_T): New constant.
168         (enum specbind_tag): New enum.
169         (struct specbinding): Make it a tagged union of structs.
170         Add a case for backtrace records.
171         (specpdl_symbol, specpdl_old_value, specpdl_where, specpdl_arg)
172         (specpdl_func, backtrace_function, backtrace_nargs, backtrace_args)
173         (backtrace_debug_on_exit): New accessors.
174         (struct backtrace): Remove.
175         (struct catchtag): Remove backlist field.
176         * data.c (let_shadows_buffer_binding_p, let_shadows_global_binding_p):
177         Move to eval.c.
178         (Flocal_variable_p): Speed up the common case where the binding is
179         already loaded.
180         * eval.c (backtrace_list): Remove.
181         (set_specpdl_symbol, set_specpdl_old_value): Remove.
182         (set_backtrace_args, set_backtrace_nargs)
183         (set_backtrace_debug_on_exit, backtrace_p, backtrace_top)
184         (backtrace_next): New functions.
185         (Fdefvaralias, Fdefvar): Adjust to new specpdl format.
186         (unwind_to_catch, internal_lisp_condition_case)
187         (internal_condition_case, internal_condition_case_1)
188         (internal_condition_case_2, internal_condition_case_n): Don't bother
189         with backtrace_list any more.
190         (Fsignal): Adjust to new backtrace format.
191         (grow_specpdl): Move up.
192         (record_in_backtrace): New function.
193         (eval_sub, Ffuncall): Use it.
194         (apply_lambda): Adjust to new backtrace format.
195         (let_shadows_buffer_binding_p, let_shadows_global_binding_p): Move from
196         data.c.
197         (specbind): Adjust to new specpdl format.  Simplify.
198         (record_unwind_protect, unbind_to): Adjust to new specpdl format.
199         (Fbacktrace_debug, Fbacktrace, Fbacktrace_frame): Adjust to new
200         backtrace format.
201         (mark_backtrace): Remove.
202         (mark_specpdl, get_backtrace, backtrace_top_function): New functions.
203         * xdisp.c (redisplay_internal): Use record_in_backtrace.
204         * alloc.c (Fgarbage_collect): Use record_in_backtrace.
205         Use mark_specpdl.
206         * profiler.c (record_backtrace): Use get_backtrace.
207         (handle_profiler_signal): Use backtrace_top_function.
208         * .gdbinit (xbacktrace, hookpost-backtrace): Use new backtrace
209         accessor functions.
211 2013-06-02  Jan Djärv  <jan.h.d@swipnet.se>
213         * process.h (catch_child_signal): Declare.
215         * process.c (catch_child_signal): New function.
216         (init_process_emacs): Call it.
218         * nsterm.m: Include process.h if NS_IMPL_GNUSTEP.
219         (ns_menu_bar_is_hidden, menu_will_open_state): Define only if
220         NS_IMPL_COCOA.
221         (x_set_cursor_type): Remove declaration.
222         (ns_update_begin): Only use r and bp if NS_IMPL_COCOA.
223         (ns_update_end, ns_focus, ns_unfocus): Remove GNUStep specific code.
224         (x_set_window_size): Remove 3 pixels from toolbar if NS_IMPL_GNUSTEP.
225         (ns_get_color): Use F suffix on float.
226         (ns_color_to_lisp, ns_query_color): Use EmacsCGFloat.
227         (ns_get_rgb_color): Remove.
228         (x_set_frame_alpha): Move view inside NS_IMPL_COCOA.
229         (note_mouse_movement): x and y are CGFloat.
230         (ns_draw_fringe_bitmap): Remove unused rowY.
231         Change #if to COCOA && >= 10_6.
232         (ns_draw_window_cursor): Remove unused overspill.
233         (ns_draw_underwave): width and x are EamcsCGFloat.
234         (ns_draw_box): thickness is CGFloat.
235         (ns_dumpglyphs_image): Change #if to COCOA && >= 10_6.
236         (ns_send_appdefined): When NS_IMPL_GNUSTEP, redirect to main thread
237         if not in main thread.
238         (ns_get_pending_menu_title, ns_check_menu_open)
239         (ns_check_pending_open_menu): Put inside #if COCOA && >= 10_5.
240         (ns_term_init): Call catch_child_signal if NS_IMPL_GNUSTEP && SIGCHLD.
241         (sendFromMainThread:): New method.
242         (changeFont:): size is CGFloat.
243         (keyDown:): Check for Delete when NS_IMPL_GNUSTEP.
244         Disable warning about permanent text.
245         (characterIndexForPoint:): Adjust return type depending on GNUStep
246         version.
247         (mouseDown:): delta is CGFloat.
248         (updateFrameSize): Remove unised variable f.
249         (initFrameFromEmacs): Move toggleButton inside NS_IMPL_COCOA.
250         Cast float to EmacsCGFloat.
251         (windowWillUseStandardFrame:defaultFrame:): Set maximized_height
252         also to -1 when restoring.
253         (windowDidExitFullScreen:): Put call to updateCollectionBehaviour
254         inside NS_IMPL_COCOA.
255         (toggleFullScreen:): Put call to toggleFullScreen inside
256         NS_IMPL_COCOA.  Cast float to EmacsCGFloat.
257         (setPosition:portion:whole:): por is CGFloat.
258         (getMouseMotionPart:window:x:y:): Add F suffix to float.
259         (mouseDown:): Use CGFloat.
260         (mouseDragged:): Remove unised variable edge.
261         (EmacsDocument): Implement for NS_IMPL_GNUSTEP.
263         * nsterm.h (EmacsCGFloat): Typedef for OSX and GNUStep when the size
264         of CGFloat differs.
265         (EmacsApp): New variable nextappdefined.  Declare sendFromMainThread
266         when NS_IMPL_GNUSTEP.
267         (EmacsDocument): Declare when NS_IMPL_GNUSTEP.
268         (EmacsView): Remove unlockFocusNeedsFlush, add windowDidMove.
269         (EmacsToolbar): Add clearAll.  Add tag argument to
270         addDisplayItemWithImage.
271         (EmacsSavePanel, EmacsOpenPanel): Remove getFilename and getDirectory.
273         * nsselect.m (ns_get_local_selection): Remove unused variable type.
275         * nsmenu.m (ns_update_menubar): Make static.
276         (x_activate_menubar): Surround with ifdef NS_IMPL_COCOA
277         (fillWithWidgetValue:): Add cast to SEL for setAction.
278         (addSubmenuWithTitle:forFrame:): Add cast to SEL for action.
279         (update_frame_tool_bar): Update code for GNUStep.
280         (clearAll): New method.
281         (addDisplayItemWithImage:idx:tag:helpText:enabled:): Handle new tag
282         argument. Call insertItemWithItemIdentifier when NS_IMPL_GNUSTEP. Move
283         identifierToItem setObject and activeIdentifiers addObject before
284         call to insertItemWithItemIdentifier.
285         (validateVisibleItems): Fix indentation.
286         (toolbarAllowedItemIdentifiers:): Return activeIdentifiers.
287         (initWithContentRect:styleMask:backing:defer:): Add ClosableWindow and
288         UtilityWindow to aStyle, remove call to setStyleMask.
290         * nsimage.m (setXBMColor:, getPixelAtX:Y:): Use EmacsCGFloat.
292         * nsfont.m (ns_attribute_fvalue, ns_spec_to_descriptor)
293         (ns_charset_covers, ns_get_covering_families, nsfont_open):
294         Use F suffix on floats.
295         (ns_char_width): Returns CGFloat.
296         (ns_ascii_average_width): w is CGFloat instead of float.
297         (nsfont_draw): cbuf and c are unsigned. Cast to char* in call to
298         DPSxshow.
299         (ns_glyph_metrics): CGFloat instead of float.
301         * nsfns.m (x_set_foreground_color, x_set_background_color): Use
302         EmacsCGFloat.
303         (ns_implicitly_set_icon_type, Fx_create_frame): Make static, remove
304         unused variables.
305         (Fns_read_file_name): Keep track if panel is for save.  Use
306         ns_filename_from_panel/ns_directory_from_panel.
307         (Fns_list_services): delegate only used for COCOA.
308         (Fns_convert_utf8_nfd_to_nfc): Remove warning for GNUStep.  Just
309         return the input if GNUStep.
310         (x_screen_planes): Remove.
311         (Fxw_color_values): Use EmacsCGFloat
312         (Fns_display_monitor_attributes_list): Only get screen number for
313         Cocoa.
314         (getDirectory, getFilename): Removed from EmacsOpenPanel and
315         EmacsSavePanel.
316         (EmacsOpenPanel:ok:): Use ns_filename_from_panel and
317         ns_directory_from_panel.
319 2013-06-01  Paul Eggert  <eggert@cs.ucla.edu>
321         * process.c (handle_child_signal): Also use WCONTINUED.
322         This is so that list-processes doesn't mistakenly list the process
323         as stopped, when the process has actually been continued and is
324         now running.
326 2013-05-31  Paul Eggert  <eggert@cs.ucla.edu>
328         Don't let D-bus autolaunch mess up SIGCHLD handling (Bug#14474).
329         * xterm.c (x_term_init): Inhibit D-Bus autolaunch if D-Bus is
330         not already configured.
332         * fileio.c (Finsert_file_contents): Remove unused local (Bug#8447).
334 2013-05-29  Eli Zaretskii  <eliz@gnu.org>
336         * Makefile.in (mostlyclean): Remove *.res files.
338 2013-05-29  Stefan Monnier  <monnier@iro.umontreal.ca>
340         * fileio.c (Finsert_file_contents): Preserve undo info when reverting
341         a buffer (bug#8447).
343 2013-05-27  Eli Zaretskii  <eliz@gnu.org>
345         * xdisp.c (pos_visible_p): When CHARPOS is displayed frrom a
346         display vector, and we backtrack, handle the case that the
347         previous character position is also displayed from a display
348         vector or covered by a display string or image.  (Bug#14476)
350 2013-05-25  Jan Djärv  <jan.h.d@swipnet.se>
352         * xfns.c (Qgeometry, Qworkarea, Qmm_size, Qframes, Qsource): Remove.
353         (struct MonitorInfo, free_monitors): Remove.
354         (x_make_monitor_attribute_list): Call make_monitor_attribute_list.
355         (Fx_display_monitor_attributes_list): Call make_monitor_attribute_list.
356         (syms_of_xfns): Remove DEFSYM for Qgeometry, Qworkarea, Qmm_size,
357         Qframes, Qsource.
359         * nsfns.m (Qgeometry, Qworkarea, Qmm_size, Qframes, Qsource): Remove.
360         (struct MonitorInfo, free_monitors): Remove.
361         (ns_screen_name): Make static.
362         (ns_make_monitor_attribute_list): Call make_monitor_attribute_list.
363         (syms_of_nsfns): Remove DEFSYM for Qgeometry, Qworkarea, Qmm_size,
364         Qframes, Qsource.
366         * frame.h (Qgeometry, Qworkarea, Qmm_size, Qframes, Qsource): Declare.
367         (struct MonitorInfo): New struct.
368         (free_monitors, make_monitor_attribute_list): Declare.
370         * frame.c (Qgeometry, Qworkarea, Qmm_size, Qframes, Qsource):
371         New Lisp_Object:s.
372         (free_monitors, make_monitor_attribute_list): New functions.
373         (syms_of_frame): DEFSYM Qgeometry, Qworkarea, Qmm_size, Qframes,
374         Qsource.
376 2013-05-25  Xue Fuqiao  <xfq.free@gmail.com>
378         * callproc.c (call_process): Refine the doc string.  (Bug#14045)
380 2013-05-23  Stefan Monnier  <monnier@iro.umontreal.ca>
382         * keyboard.c: Apply keyboard decoding only to events that come directly
383         from the tty, not from unread-command-events (bug#14368).
384         (read_event_from_main_queue): New function, extracted from read_char).
385         (read_decoded_char): Remove.
386         (read_decoded_event_from_main_queue): New function to replace it.
387         (read_char): Use it.
388         (read_key_sequence): Use read_char rather than read_decoded_char.
390         * keyboard.c (read_decoded_char): Don't decode under w32 (bug#14403).
392 2013-05-22  Barry OReilly  <gundaetiapo@gmail.com>  (tiny change)
394         * casetab.c (init_casetab_once): Fix last change (bug#14424).
396 2013-05-22  Kenichi Handa  <handa@gnu.org>
398         The following changes are to fix the setting of
399         buffer-file-coding-system on, for instance, C-x RET c unix RET
400         _FILE_OF_DOS_EOL_TYPE_ RET.
402         * coding.h (struct coding_system): New member detected_utf8_chars.
404         * coding.c (detect_coding_utf_8): Count characters and check EOL
405         format.  Include CATEGORY_MASK_UTF_8_AUTO in detect_info->found if
406         BOM is there.
407         (setup_coding_system): Do not initialize coding->head_ascii.
408         (check_ascii): Do not set coding->eol_seen but update it.  Do not
409         call adjust_coding_eol_type here.
410         (detect_coding): Fix detection of BOM for utf-8 and utf-16.
411         If the eol-type of CODING is already specified, adjust the eol type
412         of the found coding-system.
413         (decode_coding_gap): Cancel previous change.  Utilize the
414         character numbers counted by detect_coding_utf_8.  Fix detection
415         of BOM for utf-8.
417 2013-05-21  Barry OReilly  <gundaetiapo@gmail.com>  (tiny change)
419         * search.c (looking_at_1): Only set last_thing_searched if the match
420         changed the match-data (bug#14281).
422 2013-05-21  Dmitry Antipov  <dmantipov@yandex.ru>
424         * xdisp.c (reseat_at_previous_visible_line_start):
425         Already declared in dispextern.h, so remove it here.
426         (move_it_vertically_backward): Likewise.
428 2013-05-20  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
430         * xfns.c (check_x_display_info): Don't use XINT for terminal object.
431         (Fx_display_pixel_width, Fx_display_pixel_height)
432         (Fx_display_mm_width, Fx_display_mm_height):
433         Mention `display-monitor-attributes-list' in docstrings.
435         * nsfns.m (ns_get_screen): Remove function.  All uses removed.
436         (check_ns_display_info): Sync with check_x_display_info in xfns.c.
437         (Fx_server_max_request_size, Fx_server_vendor, Fx_server_version)
438         (Fx_display_screens, Fx_display_mm_width, Fx_display_mm_height)
439         (Fx_display_backing_store, Fx_display_visual_class)
440         (Fx_display_save_under, Fx_close_connection, Fxw_display_color_p)
441         (Fx_display_grayscale_p, Fx_display_pixel_width)
442         (Fx_display_pixel_height, Fx_display_planes)
443         (Fx_display_color_cells): Sync args and docstrings with xfns.c.
444         (Fx_display_screens): Don't confuse X11 screens with NS screens.
445         (Fx_display_mm_width, Fx_display_mm_height)
446         (Fx_display_pixel_width, Fx_display_pixel_width): Return width or
447         height for all physical monitors as in X11.
449         * nsterm.m (x_display_pixel_width, x_display_pixel_height):
450         Return pixel width or height for all physical monitors as in X11.
452 2013-05-18  Paul Eggert  <eggert@cs.ucla.edu>
454         Port --enable-gcc-warnings to clang.
455         * bytecode.c (exec_byte_code):
456         * regex.c:
457         Redo diagnostic pragmas to pacify clang, too.
458         * dbusbind.c (xd_retrieve_arg): Do not use uninitialized variable.
459         * editfns.c (Fencode_time):
460         * fileio.c (file_accessible_directory_p):
461         * font.c (font_unparse_xlfd):
462         Use '&"string"[index]' instead of '"string" + (index)'.
463         * undo.c (user_error): Remove; unused.
465 2013-05-16  Eli Zaretskii  <eliz@gnu.org>
467         * insdel.c (insert_1_both): Document the arguments, instead of
468         referring to insert_1, which no longer exists.
470         * xdisp.c (message_dolog): If the *Messages* buffer is shown in
471         some window, increment windows_or_buffers_changed, so that
472         *Messages* display in that window is updated.  (Bug#14408)
474         * w32.c: Include epaths.h.
475         (init_environment): Use cmdproxy.exe without leading directories.
476         Support emacs.exe in src; point SHELL to cmdproxy in ../nt in that
477         case.
478         (gettimeofday): Adjust signature and return value to Posix
479         expectations.
481         * unexw32.c (open_output_file): Delete the existing emacs.exe
482         before creating it, to break the hard link to the versioned
483         executable.
485         * Makefile.in (EMACS_MANIFEST, CM_OBJ, TEMACS_POST_LINK)
486         (ADDSECTION, EMACS_HEAPSIZE, MINGW_TEMACS_POST_LINK)
487         (FIRSTFILE_OBJ): New variables.
488         (W32_RES): Rename to EMACSRES.  All users changed.
489         (base_obj): Use $(CM_OBJ).
490         (ALLOBJS): Use $(FIRSTFILE_OBJ).
491         (emacs$(EXEEXT)): Depend on $(ADDSECTION).
492         (temacs$(EXEEXT)): Use $(TEMACS_POST_LINK), and move
493         $(W32_RES_LINK) before $(LIBES).
494         (emacs.res): Depend on $(EMACS_MANIFEST).  Put emacs.rc in nt.
496 2013-05-15  Stefan Monnier  <monnier@iro.umontreal.ca>
498         * makefile.w32-in (DOC): Use just "DOC".
500         * Makefile.in (bootstrap-clean): DOC-* doesn't exist any more.
502         * process.c: Export default filters and sentinels to Elisp.
503         (Qinternal_default_process_sentinel, Qinternal_default_process_filter):
504         New constants.
505         (pset_filter, pset_sentinel, make_process, Fset_process_filter)
506         (Fset_process_sentinel, Fformat_network_address):
507         Default to them instead of nil.
508         (server_accept_connection): Sentinels can't be nil any more.
509         (read_and_dispose_of_process_output): New function, extracted from
510         read_process_output.
511         (read_process_output): Use it; filters can't be nil.
512         (Finternal_default_process_filter): New function, extracted from
513         read_process_output.
514         (exec_sentinel_unwind): Remove function.
515         (exec_sentinel): Don't zilch sentinel while running.
516         (status_notify): Sentinels can't be nil.
517         (Finternal_default_process_sentinel): New function extracted from
518         status_notify.
519         (setup_process_coding_systems): Default filter is not nil any more.
520         (syms_of_process): Export new Elisp functions and initialize
521         new constants.
522         * lisp.h (make_lisp_proc): New function.
524 2013-05-15  Stefan Monnier  <monnier@iro.umontreal.ca>
526         * regex.c (regex_compile) [\=, \>, \<]: Don't forget to set laststart.
528 2013-05-14  Eli Zaretskii  <eliz@gnu.org>
530         * w32fns.c (w32_wnd_proc): Don't call WINDOW_HEADER_LINE_HEIGHT
531         unless we know that the window w is a leaf window.
532         Another attempt at solving bug#14062.
534 2013-05-14  Jan Djärv  <jan.h.d@swipnet.se>
536         * nsfont.m (ns_spec_to_descriptor): Retain and autorelease
537         fdesc (Bug#14375).
539 2013-05-12  Paul Eggert  <eggert@cs.ucla.edu>
541         * image.c (gif_load): Check that subimages fit (Bug#14345).
543 2013-05-09  Stefan Monnier  <monnier@iro.umontreal.ca>
545         * lread.c (skip_dyn_eof): New function.
546         (read1): Use it to skip the end of a file in response to #@00.
548         * doc.c (get_doc_string): Slightly relax the sanity checking.
550 2013-05-09  Jan Djärv  <jan.h.d@swipnet.se>
552         * nsfns.m: Include IOGraphicsLib.h if Cocoa.
553         (Qgeometry, Qworkarea, Qmm_size, Qframes, Qsource): Declare.
554         (MonitorInfo): New struct.
555         (free_monitors, ns_screen_name, ns_make_monitor_attribute_list)
556         (Fns_display_monitor_attributes_list): New functions.
557         (display-usable-bounds): Remove.
558         (syms_of_nsfns): DEFSYM Qgeometry, Qworkarea, Qmm_size, Qframes and
559         Qsource.
561 2013-05-09  Paul Eggert  <eggert@cs.ucla.edu>
563         * xterm.h (GTK_PREREQ): Remove, replacing with GTK_CHECK_VERSION.
564         (GTK_CHECK_VERSION): New macro, if not already defined.
565         All uses of GTK_PREREQ, GTK_MAJOR_VERSION, etc.
566         replaced by GTK_CHECK_VERSION.
568 2013-05-08  Paul Eggert  <eggert@cs.ucla.edu>
570         * xterm.h (GTK_PREREQ): New macro.
571         All simple uses of GTK_MAJOR_VERSION and GTK_MINOR_VERSION changed
572         to use this macro instead, for consistency and clarity.
574 2013-05-08  Eli Zaretskii  <eliz@gnu.org>
576         * xdisp.c (row_for_charpos_p): New function, with code of
577         cursor_row_p, but accepts an additional argument CHARPOS instead
578         of using a hardcoded PT.
579         (cursor_row_p): Call row_for_charpos_p with 2nd argument PT.
580         (row_containing_pos): Call row_for_charpos_p instead of partially
581         doing the same.  Fixes cursor positioning under longlines-mode
582         when longlines-show-effect includes more than one newline, when
583         moving the cursor vertically up.
585 2013-05-08  Juanma Barranquero  <lekktu@gmail.com>
587         * makefile.w32-in (ACL_H): New macro.
588         ($(BLD)/fileio.$(O)): Update dependencies.
590 2013-05-07  Paul Eggert  <eggert@cs.ucla.edu>
592         Use Gnulib ACL implementation, for benefit of Solaris etc. (Bug#14295)
593         * Makefile.in (LIB_ACL): New macro.
594         (LIBACL_LIBS): Remove.
595         (LIBES): Use LIB_ACL, not LIBACL_LIBS.
596         * fileio.c: Include <acl.h>.
597         Use HAVE_ACL_SET_FILE rather than HAVE_POSIX_ACL.
598         (ACL_NOT_WELL_SUPPORTED): Remove.  All uses replaced by
599         !acl_errno_valid.
600         (Fcopy_file) [!WINDOWSNT]: Use qcopy_acl instead of rolling
601         it ourselves.
603         * unexelf.c: Don't assume ElfW (Half) fits in int.
604         (entry_address, find_section, unexec): Use ptrdiff_t, not int,
605         when dealing with ElfW (Half) values, since they can exceed 2**31
606         on 64-bit OpenBSD hosts.  Problem reported privately by Han Boetes.
607         (entry_address): Omit unused NUM arg.  All uses changed.
609 2013-05-07  Juri Linkov  <juri@jurta.org>
611         * callint.c (Fcall_interactively): Set `visargs[i]' for code 'n'
612         to the string converted from number with `Fnumber_to_string'.
613         (Bug#14254)
615 2013-05-07  Paul Eggert  <eggert@cs.ucla.edu>
617         * xfns.c (x_get_net_workarea): Define only if !GTK || GTK<3.4.
618         This fixes a problem introduced by my previous change.
620 2013-05-07  Glenn Morris  <rgm@gnu.org>
622         * lread.c (readchar): Don't read from a dead buffer.  (Bug#14280)
624 2013-05-07  Jan Djärv  <jan.h.d@swipnet.se>
626         * xfns.c: Move misplaced ifndef USE_GTK from previous checkin.
628 2013-05-07  Paul Eggert  <eggert@cs.ucla.edu>
630         Static checking by GCC 4.8.0.
631         * xfns.c (x_get_net_workarea, struct MonitorInfo, free_monitors)
632         (x_get_monitor_for_frame, x_make_monitor_attribute_list)
633         (x_get_monitor_attributes_fallback)
634         (x_get_monitor_attributes_xinerama)
635         (x_get_monitor_attributes_xrandr, x_get_monitor_attributes):
636         Define only if USE_GTK.
637         (free_monitors): Define only if HAVE_XINERAMA || HAVE_XRANDR.
638         (x_get_monitor_attributes_fallback): Omit unused locals.
639         (x_get_monitor_attributes_xinerama, Fx_display_monitor_attributes_list):
640         Use double, not float, to avoid mixed-mode floating point arithmetic.
642 2013-05-07  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
643             Jan Djärv  <jan.h.d@swipnet.se>
645         * Makefile.in (XRANDR_LIBS, XRANDR_CFLAGS, XINERAMA_LIBS)
646         (XINERAMA_CFLAGS): New macros.
647         (ALL_CFLAGS, LIBES): Use them.
649         * xfns.c: Include <X11/extensions/Xrandr.h> if HAVE_XRANDR, and
650         include <X11/extensions/Xinerama.h> if HAVE_XINERAMA.
651         (Qgeometry, Qworkarea, Qmm_size, Qframes, Qsource): New variables.
652         (syms_of_xfns): DEFSYM them.
653         (struct MonitorInfo): New struct.
654         (x_get_net_workarea, free_monitors, x_get_monitor_for_frame)
655         (x_make_monitor_attribute_list, x_get_monitor_attributes_fallback)
656         (x_get_monitor_attributes_xrandr, x_get_monitor_attributes)
657         (x_get_monitor_attributes_xinerama): New functions.
658         (Fx_display_monitor_attributes_list): New primitive.
659         (syms_of_xfns): Defsubr it.
661         * xterm.h (x_display_info): Add Xatom_net_workarea and
662         Xatom_net_current_desktop.
664         * xterm.c (x_term_init): Initialize dpyinfo->Xatom_net_workarea
665         and dpyinfo->Xatom_net_current_desktop.
667 2013-05-06  Eli Zaretskii  <eliz@gnu.org>
669         * xdisp.c (pos_visible_p): Use the special code for finding the
670         beginning of a display property or overlay for any "replacing"
671         display property, not just for display strings.  This solves
672         incorrect reporting of position by posn-at-point.  (Bug#14241)
674 2013-05-06  Paul Eggert  <eggert@cs.ucla.edu>
676         * unexelf.c: Fix some 32-bit integer problems, notably when debugging.
677         Include <limits.h>, <stdbool.h>, <intprops.h>, <verify.h>.
678         Verify that ElfW (Half) fits in int.
679         (fatal): Use same signature as lisp.h.
680         (UNEXELF_DEBUG): New macro, replacing DEBUG, so that people can
681         configure and build with -DUNEXELF_DEBUG without worrying about
682         other modules that use DEBUG.
683         (DEBUG_LOG) [UNEXELF_DEBUG]: New macro.  All debug code that prints
684         possibly-wide integers now uses it instead of plain fprintf.
685         (entry_address): New function, which avoids problems with 32-bit
686         overflow on 64-bit hosts.
687         (OLD_SECTION_H, NEW_SECTION_H, NEW_PROGRAM_H): Use it.
688         (round_up): Don't assume the remainder fits in int.
689         (find_section): Use bool for boolean.  Simplify debug code.
690         (unexec): Don't assume file sizes fit in int or size_t.
691         Omit unnecessary trailing newline in 'fatal' format.
692         Use strerror rather than outputting decimal error number.
693         Remove unused code when emacs is not defined;
694         this file relies on Emacs now.
695         Don't assume e_phnum and e_shnum are positive.
697         * regex.c: Fix problems when DEBUG is defined.
698         (extract_number, extract_number_and_incr): Define regardless of
699         whether DEBUG is defined; that's simpler and makes the code less
700         likely to go stale in the normal case when DEBUG is not defined.
701         Return int rather than taking an int * arg.  All callers changed.
702         (DEBUG_PRINT1, DEBUG_PRINT2, DEBUG_PRINT3, DEBUG_PRINT4):
703         Remove, replacing with ...
704         (DEBUG_PRINT): New macro.  All callers changed.
705         (DEBUG_COMPILES_ARGUMENTS): New macro.
706         (print_fastmap, print_partial_compiled_pattern) [DEBUG]:
707         (print_compiled_pattern, print_double_string) [DEBUG]:
708         Use prototype rather than old-style definition.
709         (print_partial_compiled_pattern, print_compiled_pattern) [DEBUG]:
710         (ENSURE_FAIL_STACK, PUSH_FAILURE_REG) [DEBUG]:
711         (POP_FAILURE_REG_OR_COUNT, PUSH_FAILURE_POINT) [DEBUG]:
712         (POP_FAILURE_POINT, re_match_2_internal) [DEBUG]:
713         Don't assume ptrdiff_t, size_t, and long are the same width as int.
714         (POINTER_TO_OFFSET): Return ptrdiff_t, not regoff_t.
715         This matters only when DEBUG is defined.
717 2013-05-05  Eli Zaretskii  <eliz@gnu.org>
719         * xdisp.c (set_iterator_to_next): Set the
720         ignore_overlay_strings_at_pos_p flag only if we are _really_
721         iterating over an overlay string, as indicated by the
722         current.overlay_string_index member.  (Bug#14306)
724 2013-05-05  Jan Djärv  <jan.h.d@swipnet.se>
726         * nsmenu.m (ns_update_menubar): Move initialization of submenuTitle
727         to where it is used, to avoid autorelease issues (Bug#14050).
729 2013-05-05  Paul Eggert  <eggert@cs.ucla.edu>
731         `write-region-inhibit-fsync' defaults to noninteractive (Bug#14273).
732         * fileio.c (syms_of_fileio): Implement this.
733         * filelock.c (create_lock_file): If symbolic links don't work, so
734         we use a regular file as a lock file, do not fsync the lock file;
735         it's not needed.
737 2013-05-04  Stefan Monnier  <monnier@iro.umontreal.ca>
739         * minibuf.c (Fread_minibuffer, Feval_minibuffer): Move to Elisp.
740         (syms_of_minibuf): Adjust accodingly.
741         * lread.c (Fread):
742         * callint.c (Fcall_interactively): Adjust calls accordingly.
744 2013-05-04  Eli Zaretskii  <eliz@gnu.org>
746         * dispextern.h (WINDOW_WANTS_HEADER_LINE_P): Verify that
747         w->contents is a buffer before computing everything else.
748         Use parentheses to disambiguate last part of the condition.
750         * w32fns.c (w32_wnd_proc): Remove temporary code used to trap
751         assertion violations.  (Bug#14062)
753 2013-05-01  David Reitter  <david.reitter@gmail.com>
755         * nsfns.m (ns_tooltip): Initialize.
757 2013-04-28  Eli Zaretskii  <eliz@gnu.org>
759         * coding.c (decode_coding_gap): Don't remove the character before
760         a newline unless it's a CR character.  (Bug#14287)
762 2013-04-28  Dan Nicolaescu  <dann@gnu.org>
764         * dispextern.h (struct face): Move enum face_underline_type
765         earlier so that bitfields can be in the same word.
767 2013-04-28  Jan Djärv  <jan.h.d@swipnet.se>
769         * nsfns.m (handlePanelKeys): New function.
770         (EmacsOpenPanel:performKeyEquivalent:)
771         (EmacsSavePanel:performKeyEquivalent:): Call handlePanelKeys to handle
772         arrows/function/control and copy/paste keys (Bug#14296).
774 2013-04-27  Juri Linkov  <juri@jurta.org>
776         * callint.c (Fcall_interactively): Call `Qread_number' for
777         interactive code letter `n' instead of using duplicate code.
778         (Bug#14254)
780 2013-04-27  Paul Eggert  <eggert@cs.ucla.edu>
782         * systime.h (make_timeval): Declare as 'const'.
784 2013-04-27  Kenichi Handa  <handa@gnu.org>
786         * font.c (font_open_entity): Always open a font of manageable
787         size.
789 2013-04-26  Paul Eggert  <eggert@cs.ucla.edu>
791         Port better to AIX (Bug#14258).
792         * lisp.h (ENUM_BF) [__IBMC__]: Make it 'unsigned int' here, too,
793         to pacify AIX xlc.
795 2013-04-24  Kenichi Handa  <handa@gnu.org>
797         * coding.c (decode_coding_iso_2022): When an invalid escape
798         sequence is encountered, reset the invocation and designation
799         status to the safest one.
801 2013-04-22  Paul Eggert  <eggert@cs.ucla.edu>
803         * Makefile.in (bootstrap-clean): Remove stamp-h1 too.
804         Without this fix, "make distclean" leaves stamp-h1 behind.
806 2013-04-20  Erik Charlebois  <erikcharlebois@gmail.com>
808         * w32fns.c (w32_fullscreen_rect): New function to compute the
809         window rectangle for the given fullscreen mode.
810         (w32_wnd_proc): When in a fullscreen mode, WM_WINDOWPOSCHANGING no
811         longer tunes the window size.  This keeps the window's edges flush
812         with the screen and allows the taskbar to hide itself in fullboth.
814         * w32term.c (w32fullscreen_hook): 'fullboth' now shows without
815         window decorations and uses the entire screen.
817         * w32term.h  (w32_fullscreen_rect) Add prototype.
818         (struct w32_output): Replace normal_width, normal_height,
819         normal_top, and normal_left members with a single normal_placement
820         struct.
821         (FRAME_NORMAL_WIDTH, FRAME_NORMAL_HEIGHT, FRAME_NORMAL_TOP):
822         Remove macros.
823         (FRAME_NORMAL_PLACEMENT): New macro.
825 2013-04-16  Juanma Barranquero  <lekktu@gmail.com>
827         * minibuf.c (Ftest_completion): Silence compiler warning.
829 2013-04-15  Eli Zaretskii  <eliz@gnu.org>
831         * w32fns.c (w32_wnd_proc): Add more assertions to investigate
832         bug#14062.
834         * frame.h (WINDOW_FRAME): Protect macro and its argument with
835         parentheses.
837         * dispextern.h (CURRENT_MODE_LINE_HEIGHT)
838         (CURRENT_HEADER_LINE_HEIGHT, WINDOW_WANTS_MODELINE_P)
839         (WINDOW_WANTS_HEADER_LINE_P): Protect macro arguments with
840         parentheses where appropriate.
842 2013-04-14  Paul Eggert  <eggert@cs.ucla.edu>
844         * keyboard.c (timer_start_idle): Remove no-longer-used local.
846 2013-04-14  Eli Zaretskii  <eliz@gnu.org>
848         * buffer.c (syms_of_buffer) <left-margin-width, right-margin-width>
849         <left-fringe-width, right-fringe-width, fringes-outside-margins>:
850         Mention in the doc string that setting these variables takes
851         effect only after a call to set-window-buffer.  (Bug#14200)
853 2013-04-13  Eli Zaretskii  <eliz@gnu.org>
855         * indent.c (Fvertical_motion): Don't consider display strings on
856         overlay strings as display strings on the buffer position we
857         started from.  This prevents vertical cursor motion from jumping
858         more than one line when there's an overlay string with a display
859         property at end of line.
860         Reported by Karl Chen <Karl.Chen@quarl.org> in
861         http://lists.gnu.org/archive/html/emacs-devel/2013-04/msg00362.html.
863 2013-04-12  Stefan Monnier  <monnier@iro.umontreal.ca>
865         * window.c (select_window): `record_buffer' even if window is
866         already selected (bug#14191).
868 2013-04-11  Eli Zaretskii  <eliz@gnu.org>
870         * window.c (Fwindow_end): Test more flags, including the buffer's
871         last_overlay_modified flag, to determine whether the window's
872         display is really up-to-date.  Prevents the function from
873         returning a stale value.  (Bug#14170)
874         (Fwindow_line_height): Fix the test for up-to-date-ness of the
875         current matrix.
877 2013-04-10  Eli Zaretskii  <eliz@gnu.org>
879         * frame.c (do_switch_frame): Mark the TTY frame we switch to as
880         garbaged only if it is not already the top frame on its TTY.
881         This prevents flickering due to constant redrawing of TTY frames when
882         there are GUI frames open in the same session.  (Bug#13864)
884 2013-04-10  Stefan Monnier  <monnier@iro.umontreal.ca>
886         * keyboard.c (timer_start_idle): Call internal-timer-start-idle instead
887         of marking the idle timers directly.
889 2013-04-09  Stefan Monnier  <monnier@iro.umontreal.ca>
891         * minibuf.c (Ftest_completion): Ignore non-string/symbol keys in hash
892         tables (bug#14054).
894 2013-04-08  Stefan Monnier  <monnier@iro.umontreal.ca>
896         * window.c (select_window): Don't record_buffer while the invariant is
897         temporarily broken (bug#14161).
899         * fns.c (Fdelq): Don't assume !NILP => CONSP.
901 2013-04-07  Eli Zaretskii  <eliz@gnu.org>
903         * fileio.c (ACL_NOT_WELL_SUPPORTED): Define macro for WINDOWSNT.
905 2013-04-07  Romain Francoise  <romain@orebokech.com>
907         Ignore additional platform-specific ACL errors (Bug#13702).
908         * fileio.c (ACL_NOT_WELL_SUPPORTED): New macro copied from gnulib.
909         (Fcopy_file, Fset_file_acl) [HAVE_POSIX_ACL]: Use it.
911 2013-03-31  Jan Djärv  <jan.h.d@swipnet.se>
913         * nsterm.m (ns_mouse_position): Use NS_FRAME_P instead of checking
914         f->output_data.ns.
916 2013-04-07  Paul Eggert  <eggert@cs.ucla.edu>
918         Fix --enable-profiling bug introduced by 2013-02-25 change (Bug#13783).
919         This bug was introduced by my 2013-02-25 change that simplified
920         data_start configuration.  Without this change, on GNU/Linux
921         an Emacs configured with --enable-profiling fails immediately
922         due to a profiler signal.
923         * Makefile.in: Compile with $(PROFILING_CFLAGS), but do not link
924         with these flags.  On platforms where special flags are needed
925         when linking temacs, the flags are now in LD_SWITCH_SYSTEM_TEMACS.
926         (ALL_CFLAGS): Remove $(PROFILING_CFLAGS).
927         (.c.o, .m.o): Compile with $(PROFILING_CFLAGS).
929 2013-04-07  Dmitry Antipov  <dmantipov@yandex.ru>
931         Get rid of some platform-specific functions examining window
932         system and its capabilities.  This is a partial rework of the
933         2013-04-05 change.
934         * lisp.h (have_menus_p): Remove prototype.  This function is
935         replaced with platform-independent window_system_available.
936         (check_window_system): Move to...
937         * frame.h (decode_window_system_frame, window_system_available):
938         ...here, add new prototypes.
939         * frame.c (window_system_available, decode_window_system_frame):
940         New functions.
941         (check_window_system): Platform-independent now.
942         * xterm.h (x_in_use): Remove declaration.
943         (check_x_frame):
944         * w32term.h (check_x_frame):
945         * nsterm.h (check_x_frame): Remove prototypes.  This function
946         is replaced with platform-independent decode_window_system_frame.
947         * msdos.c (have_menus_p): Remove.
948         * nsfns.m (check_window_system, have_menus_p, check_ns_frame):
949         Remove platform-specific functions.  Use check_window_system,
950         decode_window_system_frame and check_ns_display_info where
951         appropriate.  Minor style and comment tweaks.
952         * w32fns.c (w32_in_use, check_window_system, have_menus_p)
953         (check_x_frame): Likewise.
954         * xfns.c (x_in_use, check_window_system, have_menus_p, check_x_frame):
955         Likewise.
956         * fileio.c, fns.c, font.c, fontset.c, image.c, menu.c, nsmenu.m:
957         * nsselect.m, nsterm.m, w32font.c, w32menu.c, xfaces.c, xgselect.c:
958         * xmenu.c, xselect.c: All related users changed.
960 2013-04-03  Kenichi Handa  <handa@gnu.org>
962         The following changes is to optimize the code for reading UTF-8
963         files.
965         * coding.c (check_ascii): Rename from detect_ascii.  Return value
966         changed.  Check EOL format.  Do not call adjust_coding_eol_type
967         here.
968         (check_utf_8): New function.
969         (adjust_coding_eol_type): Do nothing if already adjusted.
970         (detect_coding): Compare the return value of check_ascii with
971         coding->src_bytes.  Call adjust_coding_eol_type if necessary.
972         (decode_coding_gap): Optimize for valid UTF-8.
974 2013-03-21  Kenichi Handa  <handa@gnu.org>
976         * coding.c (syms_of_coding): Cancel previous change.
978         * insdel.c (insert_from_gap): Fix previous change.
980 2013-04-05  Dmitry Antipov  <dmantipov@yandex.ru>
982         Consistently use platform-specific function to detect window system.
983         * lisp.h (check_window_system): New prototype.  This function is
984         going to replace check_x, check_w32 and check_ns.
985         (have_menus_p): Mention msdos.c in comment.
986         * fontset.c (check_window_system_func): Remove.  Adjust all users.
987         * fontset.h (check_window_system_func): Remove prototype.
988         * nsterm.h (check_ns):
989         * xterm.h (check_x):
990         * w32term.h (check_w32): Likewise.
991         * menu.c (Fx_popup_menu): Use check_window_system.
992         * msdos.c (check_window_system): Define for MS-DOS.
993         * nsfns.m (check_window_system): Define for NS.  Adjust all users.
994         * w32fns.c (check_window_system): Likewise for MS-Windows.
995         * xfns.c (check_window_system): Likewise for X.
996         * font.c, frame.c, nsmenu.m, nsselect.m, nsterm.m, w32menu.c:
997         * xfaces.c, xmenu.c: Use check_window_system where appropriate.
999 2013-04-02  Paul Eggert  <eggert@cs.ucla.edu>
1001         Prefer < to > in range checks such as 0 <= i && i < N.
1002         This makes it easier to visualize quantities on a number line.
1003         This patch doesn't apply to all such range checks,
1004         only to the range checks affected by the 2013-03-24 change.
1005         This patch reverts most of the 2013-03-24 change.
1006         * alloc.c (xpalloc, Fgarbage_collect):
1007         * ccl.c (ccl_driver, resolve_symbol_ccl_program):
1008         * character.c (string_escape_byte8):
1009         * charset.c (read_hex):
1010         * data.c (cons_to_unsigned):
1011         * dispnew.c (update_frame_1):
1012         * doc.c (Fsubstitute_command_keys):
1013         * doprnt.c (doprnt):
1014         * editfns.c (hi_time, decode_time_components):
1015         * fileio.c (file_offset):
1016         * fns.c (larger_vector, make_hash_table, Fmake_hash_table):
1017         * font.c (font_intern_prop):
1018         * frame.c (x_set_alpha):
1019         * gtkutil.c (get_utf8_string):
1020         * indent.c (check_display_width):
1021         * keymap.c (Fkey_description):
1022         * lisp.h (FIXNUM_OVERFLOW_P, vcopy):
1023         * lread.c (read1):
1024         * minibuf.c (read_minibuf_noninteractive):
1025         * process.c (wait_reading_process_output):
1026         * search.c (Freplace_match):
1027         * window.c (get_phys_cursor_glyph):
1028         * xdisp.c (redisplay_internal):
1029         * xsmfns.c (smc_save_yourself_CB):
1030         Prefer < to > for range checks.
1031         * dispnew.c (sit_for): Don't mishandle NaNs.
1032         This fixes a bug introduced in the 2013-03-24 change.
1033         * editfns.c (decode_time_components): Don't hoist comparison.
1034         This fixes another bug introduced in the 2013-03-24 change.
1036 2013-03-31  Dmitry Antipov  <dmantipov@yandex.ru>
1038         * frame.h (struct frame): Drop scroll_bottom_vpos
1039         member becaue all real users are dead long ago.
1040         (FRAME_SCROLL_BOTTOM_VPOS): Remove.
1041         * xdisp.c (redisplay_internal): Adjust user.
1043 2013-03-30  Darren Ho  <darren.hoo@gmail.com>  (tiny change)
1045         * nsmenu.m (showAtX:Y:for:): setLevel to
1046         NSPopUpMenuWindowLevel (Bug#13998).
1048 2013-03-30  Jan Djärv  <jan.h.d@swipnet.se>
1050         * nsterm.h (ns_get_pending_menu_title, ns_check_menu_open)
1051         (ns_check_pending_open_menu): Declare.
1053         * nsmenu.m (ns_update_menubar): Correct NSTRACE.
1054         (x_activate_menubar): Update the menu with title that matches
1055         ns_get_pending_menu_title, and call
1056         ns_check_pending_openmenu (Bug#12698).
1057         (menuWillOpen:): New method.
1058         (menuNeedsUpdate:): Add check for ! COCOA || OSX < 10.5 (Bug#12698).
1060         * nsterm.m (menu_will_open_state, menu_mouse_point)
1061         (menu_pending_title): New varaibles.
1062         (ns_get_pending_menu_title, ns_check_menu_open)
1063         (ns_check_pending_open_menu): New functions.
1065 2013-03-29  Dmitry Antipov  <dmantipov@yandex.ru>
1067         * indent.c (current_column_bol_cache): Remove leftover which is not
1068         used in Fmove_to_column any more.
1069         (current_column, scan_for_column): Adjust users.
1070         * keyboard.c (last_point_position_buffer, last_point_position_window):
1071         Remove leftovers which are not used for recording undo any more.
1072         (command_loop_1, syms_of_keyboard): Adjust users.
1073         * xdisp.c (last_max_ascent): Remove leftover which is not used in
1074         redisplay_window any more.
1075         (move_it_to): Adjust user.
1077 2013-03-29  Juanma Barranquero  <lekktu@gmail.com>
1079         * makefile.w32-in ($(BLD)/filelock.$(O), $(BLD)/filelock.$(O)):
1080         Update dependencies.
1082 2013-03-28  Stefan Monnier  <monnier@iro.umontreal.ca>
1084         * lisp.h (save_type, XSAVE_POINTER, set_save_pointer, XSAVE_INTEGER)
1085         (set_save_integer, XSAVE_OBJECT, XSAVE_VALUE): Move to avoid
1086         forward references.
1088 2013-03-28  Dmitry Antipov  <dmantipov@yandex.ru>
1090         * window.h (struct window): Replace hchild, vchild and buffer slots
1091         with the only contents slot.  This is possible because each valid
1092         window may have either the child window (in vertical or horizontal
1093         combination) or buffer to display (for the leaf window).  Using that,
1094         a lof of operations to traverse and/or change window hierarchies may
1095         be simplified.  New member horizontal is used to distinguish between
1096         horizontal and vertical combinations of internal windows.
1097         (WINDOW_LEAF_P, WINDOW_HORIZONTAL_COMBINATION_P)
1098         (WINDOW_VERTICAL_COMBINATION_P): New macros.
1099         (WINDOW_VALID_P, WINDOW_LIVE_P): Adjust to match struct window changes.
1100         * window.c (wset_hchild, wset_vchild): Remove.  Adjust all users.
1101         Use contents slot, not buffer, where appropriate.
1102         (wset_combination): New function.
1103         (wset_buffer): Add eassert.
1104         (Fframe_first_window): Simplify the loop reaching first window.
1105         (Fwindow_buffer): Use WINDOW_LEAF_P.
1106         (Fwindow_top_child): Use WINDOW_VERTICAL_COMBINATION_P.
1107         (Fwindow_left_child): Use WINDOW_HORIZONTAL_COMBINATION_P.
1108         (unshow_buffer): Convert initial debugging check to eassert.
1109         (replace_window, recombine_windows, Fdelete_other_windows_internal)
1110         (make_parent_window, window_resize_check, window_resize_apply)
1111         (resize_frame_windows, Fsplit_window_internal, Fdelete_window_internal)
1112         (Fset_window_configuration, delete_all_child_windows, save_window_save):
1113         Adjust to match struct window changes.
1114         (window_loop): Check for broken markers in CHECK_ALL_WINDOWS.
1115         (mark_window_cursors_off, count_windows, get_leaf_windows)
1116         (foreach_window_1): Simplify the loop.
1117         * alloc.c (mark_object): Do not check for the leaf window because
1118         internal windows has no glyph matrices anyway.
1119         * dispnew.c (clear_window_matrices, showing_window_margins_p)
1120         (allocate_matrices_for_window_redisplay, fake_current_matrices)
1121         (allocate_matrices_for_frame_redisplay, free_window_matrices)
1122         (build_frame_matrix_from_window_tree, mirror_make_current)
1123         (frame_row_to_window, mirror_line_dance, check_window_matrix_pointers)
1124         (update_window_tree, set_window_update_flags): Simplify the loop.
1125         (sync_window_with_frame_matrix_rows): Enforce live window.
1126         Use contents slot, not buffer, where appropriate.
1127         * frame.c (set_menu_bar_lines_1): Use WINDOW_VERTICAL_COMBINATION_P
1128         and WINDOW_HORIZONTAL_COMBINATION_P.
1129         (make_frame_visible_1): Simplify the loop.
1130         Use contents slot, not buffer, where appropriate.
1131         * xdisp.c (hscroll_window_tree, mark_window_display_accurate)
1132         (redisplay_windows, redisplay_mode_lines, update_cursor_in_window_tree)
1133         (expose_window_tree): Likewise.
1134         Use contents slot, not buffer, where appropriate.
1135         * textprop.c (get_char_property_and_overlay): Add CHECK_LIVE_WINDOW
1136         to avoid deleted windows.  Use contents slot instead of buffer.
1137         * buffer.c, dispextern.h, editfns.c, fileio.c, font.c, fringe.c:
1138         * indent.c, insdel.c, keyboard.c, keymap.c, minibuf.c, msdos.c:
1139         * nsfns.m, nsmenu.m, nsterm.m, print.c, w32fns.c, w32menu.c, xfaces.c:
1140         * xfns.c, xmenu.c: Use contents slot, not buffer, where appropriate.
1142 2013-03-28  Eli Zaretskii  <eliz@gnu.org>
1144         * w32fns.c (w32_wnd_proc) [ENABLE_CHECKING]: Add code to help
1145         identify the reasons for assertion violations in bug#14062 and
1146         similar ones.
1147         (Fx_show_tip): Fix compilation error under
1148         "--enable-check-lisp-object-type".  (Bug#14073)
1150         * image.c (g_error_free) [WINDOWSNT]: Add DEF_IMGLIB_FN.
1151         Reported by <rzl24ozi@gmail.com>.
1153 2013-03-28  Dmitry Antipov  <dmantipov@yandex.ru>
1155         * xdisp.c (with_echo_area_buffer_unwind_data): Save window
1156         start marker...
1157         (unwind_with_echo_area_buffer): ...to restore it here.
1158         This is needed to ensure that...
1159         (redisplay_window): ...both window markers are valid here,
1160         which is verified by eassert.
1161         * editfns.c (save_excursion_save): Do not assume that
1162         selected_window always displays the buffer.
1163         * buffer.c (Fbuffer_swap_text): Adjust window start markers.
1164         Fix comment.
1166 2013-03-27  Stefan Monnier  <monnier@iro.umontreal.ca>
1168         * casetab.c (init_casetab_once): Don't abuse the ascii eqv table for
1169         the upcase table.
1171 2013-03-27  rzl24ozi  <rzl24ozi@gmail.com>  (tiny changes)
1173         * image.c [WINDOWSNT]: Fix calls to DEF_IMGLIB_FN for SVG function.
1175 2013-03-27  Eli Zaretskii  <eliz@gnu.org>
1177         * w32proc.c (IsValidLocale) [__GNUC__]: Don't declare prototype,
1178         since MinGW's w32api headers do.  This avoids compiler warnings.
1180         * w32.c (FSCTL_GET_REPARSE_POINT) [_MSC_VER || _W64]: Don't define
1181         if already defined.
1183 2013-03-26  Eli Zaretskii  <eliz@gnu.org>
1185         * w32.c (_REPARSE_DATA_BUFFER): Condition by _MSVC and _W64.
1187 2013-03-26  Jan Djärv  <jan.h.d@swipnet.se>
1189         * gtkutil.c (style_changed_cb): Check if frame is live and an
1190         X frame (Bug#14038).
1192 2013-03-26  Eli Zaretskii  <eliz@gnu.org>
1194         * w32.c (_PROCESS_MEMORY_COUNTERS_EX) [_WIN32_WINNT < 0x0500]:
1195         Define only for _WIN32_WINNT less than 0x0500.
1196         (_ANONYMOUS_UNION, _ANONYMOUS_STRUCT) [!_W64]: Don't define for
1197         MinGW64.
1198         Move inclusion of time.h before sys/time.h, so that MinGW64 could
1199         see its own definitions of 'struct timeval' and 'struct timezone'.
1201         Fix incompatibilities between MinGW.org and MinGW64 headers.
1202         * w32term.c (WCRANGE, GLYPHSET): Don't define if _W64 is defined.
1204         * w32.c (REPARSE_DATA_BUFFER): Guard with
1205         MAXIMUM_REPARSE_DATA_BUFFER_SIZE being defined.
1207 2013-03-25  Jan Djärv  <jan.h.d@swipnet.se>
1209         * xterm.c: Include X11/XKBlib.h
1210         (XTring_bell): Use XkbBell if HAVE_XKB (Bug#14041).
1212 2013-03-24  Andreas Schwab  <schwab@linux-m68k.org>
1214         * alloc.c (xpalloc, Fgarbage_collect): Reorder conditions that are
1215         written backwards.
1216         * blockinput.h (input_blocked_p): Likewise.
1217         * bytecode.c (exec_byte_code): Likewise.
1218         * callproc.c (call_process_kill, call_process_cleanup)
1219         (Fcall_process): Likewise.
1220         * ccl.c (ccl_driver, resolve_symbol_ccl_program)
1221         (Fccl_execute_on_string): Likewise.
1222         * character.c (string_escape_byte8): Likewise.
1223         * charset.c (read_hex): Likewise.
1224         * cm.c (calccost): Likewise.
1225         * data.c (cons_to_unsigned): Likewise.
1226         * dired.c (directory_files_internal, file_name_completion):
1227         Likewise.
1228         * dispnew.c (scrolling_window, update_frame_1, Fsleep_for)
1229         (sit_for): Likewise.
1230         * doc.c (Fsubstitute_command_keys): Likewise.
1231         * doprnt.c (doprnt): Likewise.
1232         * editfns.c (hi_time, decode_time_components, Fformat): Likewise.
1233         * emacsgtkfixed.c: Likewise.
1234         * fileio.c (file_offset, Fwrite_region): Likewise.
1235         * floatfns.c (Fexpt, fmod_float): Likewise.
1236         * fns.c (larger_vector, make_hash_table, Fmake_hash_table):
1237         Likewise.
1238         * font.c (font_intern_prop): Likewise.
1239         * frame.c (x_set_alpha): Likewise.
1240         * gtkutil.c (get_utf8_string): Likewise.
1241         * indent.c (check_display_width): Likewise.
1242         * intervals.c (create_root_interval, rotate_right, rotate_left)
1243         (split_interval_right, split_interval_left)
1244         (adjust_intervals_for_insertion, delete_node)
1245         (interval_deletion_adjustment, adjust_intervals_for_deletion)
1246         (merge_interval_right, merge_interval_left, copy_intervals)
1247         (set_intervals_multibyte_1): Likewise.
1248         * keyboard.c (gobble_input, append_tool_bar_item): Likewise.
1249         * keymap.c (Fkey_description): Likewise.
1250         * lisp.h (FIXNUM_OVERFLOW_P, vcopy): Likewise.
1251         * lread.c (openp, read_integer, read1, string_to_number):
1252         Likewise.
1253         * menu.c (ensure_menu_items): Likewise.
1254         * minibuf.c (read_minibuf_noninteractive): Likewise.
1255         * print.c (printchar, strout): Likewise.
1256         * process.c (create_process, Faccept_process_output)
1257         (wait_reading_process_output, read_process_output, send_process)
1258         (wait_reading_process_output): Likewise.
1259         * profiler.c (make_log, handle_profiler_signal): Likewise.
1260         * regex.c (re_exec): Likewise.
1261         * regex.h: Likewise.
1262         * search.c (looking_at_1, Freplace_match): Likewise.
1263         * sysdep.c (get_child_status, procfs_ttyname)
1264         (procfs_get_total_memory): Likewise.
1265         * systime.h (EMACS_TIME_VALID_P): Likewise.
1266         * term.c (dissociate_if_controlling_tty): Likewise.
1267         * window.c (get_phys_cursor_glyph): Likewise.
1268         * xdisp.c (init_iterator, redisplay_internal, redisplay_window)
1269         (try_window_reusing_current_matrix, try_window_id, pint2hrstr):
1270         Likewise.
1271         * xfns.c (Fx_window_property): Likewise.
1272         * xmenu.c (set_frame_menubar): Likewise.
1273         * xselect.c (x_get_window_property, x_handle_dnd_message):
1274         Likewise.
1275         * xsmfns.c (smc_save_yourself_CB): Likewise.
1276         * xterm.c (x_scroll_bar_set_handle): Likewise.
1278 2013-03-24  Dmitry Antipov  <dmantipov@yandex.ru>
1280         * xfaces.c (Finternal_face_x_get_resource): Allow 3rd (frame) argument
1281         to be optional or nil.  Adjust comment and convert it to docstring.
1282         * xselect.c (Fx_send_client_event): Rename to Fx_send_client_message.
1283         * frame.c (display_x_get_resource, Fx_get_resource): Break long line.
1285 2013-03-24  Paul Eggert  <eggert@cs.ucla.edu>
1287         Static checking by GCC 4.8-20130319.
1288         * image.c (gif_load): Assume pass < 3 to pacify GCC.
1289         * process.c (Fset_process_datagram_address)
1290         (Fmake_network_process): Check get_lisp_to_sockaddr_size return value.
1291         * xdisp.c (get_char_face_and_encoding):
1292         (get_glyph_face_and_encoding): Ensure that *CHAR2B is initialized.
1293         (get_glyph_face_and_encoding): Prepare face before possibly using it.
1294         (get_per_char_metric): Don't use CHAR2B if it might not be initialized.
1296 2013-03-24  Ken Brown  <kbrown@cornell.edu>
1298         * w32fns.c (emacs_abort) [CYGWIN]: Define `_open' as a macro to
1299         fix compilation on 64-bit Cygwin, where underscores are not
1300         automatically prepended.
1302         * w32term.c (w32_initialize): Silence compiler warning.
1304 2013-03-23  Eli Zaretskii  <eliz@gnu.org>
1306         * w32term.c (w32fullscreen_hook): Use FRAME_NORMAL_WIDTH,
1307         FRAME_NORMAL_HEIGHT, and FRAME_PREV_FSMODE, instead of static
1308         variables, to save and restore frame dimensions.
1309         Use FRAME_NORMAL_LEFT and FRAME_NORMAL_TOP to restore frame position
1310         after returning from a 'fullscreen' configuration.
1311         use SendMessage instead of PostMessage to send the SC_RESTORE message,
1312         to avoid races between the main thread and the input thread.
1314         * w32term.h (struct w32_output): New members normal_width,
1315         normal_height, normal_top, normal_left, and prev_fsmode.
1316         (FRAME_NORMAL_WIDTH, FRAME_NORMAL_HEIGHT, FRAME_NORMAL_TOP)
1317         (FRAME_NORMAL_LEFT, FRAME_PREV_FSMODE): New macros to access these
1318         members of a frame.
1320         * w32term.c (w32fullscreen_hook): Record last value of the frame's
1321         'fullscreen' parameter.  Always record previous width and height
1322         of the frame, except when switching out of maximized modes, so
1323         that they could be restored correctly, instead of resetting to the
1324         default frame dimensions.  Send SC_RESTORE command to the frame,
1325         unless we are going to send SC_MAXIMIZE, to restore the frame
1326         resize hints in the mouse pointer shown by the window manager.
1327         (Bug#14032)
1329         * frame.c (get_frame_param): Now extern for WINDOWSNT as well.
1331         * lisp.h (get_frame_param): Adjust conditions for prototype
1332         declaration.
1334 2013-03-22  Ken Brown  <kbrown@cornell.edu>
1336         * unexcw.c: Drop unneeded inclusion of w32common.h.
1337         (report_sheap_usage): Declare.
1338         (read_exe_header): Add magic numbers for x86_64.
1339         (fixup_executable): Fix printf format specifier for unsigned long
1340         argument.
1342 2013-03-22  Dmitry Antipov  <dmantipov@yandex.ru>
1344         * frame.h (struct frame): Put menu_bar_window under #ifdef
1345         because this member is not needed when X toolkit is in use.
1346         (fset_menu_bar_window):
1347         * dispnew.c (clear_current_matrices, clear_desired_matrices)
1348         (free_glyphs, update_frame):
1349         * xdisp.c (expose_frame): Likewise.
1350         (display_menu_bar): Likewise.  Remove redundant eassert.
1351         * window.h (WINDOW_MENU_BAR_P): Always define to 0 if X
1352         toolkit is in use.
1354 2013-03-21  Paul Eggert  <eggert@cs.ucla.edu>
1356         Use functions and constants to manipulate Lisp_Save_Value objects.
1357         This replaces code that used macros and strings and token-pasting.
1358         The change makes the C source a bit easier to follow,
1359         and shrinks the Emacs executable a bit.
1360         * alloc.c: Verify some properties of Lisp_Save_Value's representation.
1361         (make_save_value): Change 1st arg from string to enum.  All callers
1362         changed.
1363         (INTX): Remove.
1364         (mark_object): Use if, not #if, for GC_MARK_STACK.
1365         * lisp.h (SAVE_VALUEP, XSAVE_VALUE, XSAVE_POINTER, XSAVE_INTEGER)
1366         (XSAVE_OBJECT): Now functions, not macros.
1367         (STRING_BYTES_BOUND): Now just a macro, not a constant too;
1368         the constant was never used.
1369         (SAVE_SLOT_BITS, SAVE_VALUE_SLOTS, SAVE_TYPE_BITS, SAVE_TYPE_INT_INT)
1370         (SAVE_TYPE_INT_INT_INT, SAVE_TYPE_OBJ_OBJ, SAVE_TYPE_OBJ_OBJ_OBJ)
1371         (SAVE_TYPE_OBJ_OBJ_OBJ_OBJ, SAVE_TYPE_PTR_INT, SAVE_TYPE_PTR_OBJ)
1372         (SAVE_TYPE_PTR_PTR, SAVE_TYPE_PTR_PTR_OBJ, SAVE_TYPE_MEMORY):
1373         New constants.
1374         (struct Lisp_Save_Value): Replace members area, type0, type1, type2,
1375         type3 with a single member save_type.  All uses changed.
1376         (save_type, set_save_pointer, set_save_integer): New functions.
1377         * print.c (PRINTX): Remove.
1379         * alloc.c: Remove redundant static declarations.
1381 2013-03-20  Dmitry Antipov  <dmantipov@yandex.ru>
1383         * window.h (struct window): Convert left_col, top_line, total_lines
1384         and total_cols from Lisp_Objects to integers.  Adjust comments.
1385         (wset_left_col, wset_top_line, wset_total_cols, wset_total_lines):
1386         Remove.
1387         (WINDOW_TOTAL_COLS, WINDOW_TOTAL_LINES, WINDOW_LEFT_EDGE_COL)
1388         (WINDOW_TOP_EDGE_LINE): Drop Lisp_Object to integer conversion.
1389         * dispnew.c, frame.c, w32fns.c, window.c, xdisp.c, xfns.c:
1390         Adjust users where appropriate.
1392 2013-03-20  Dmitry Antipov  <dmantipov@yandex.ru>
1394         * frame.h (struct frame): Drop resx and resy because the same data is
1395         available from window system-specific output context.  Adjust users.
1396         (default_pixels_per_inch_x, default_pixels_per_inch_y):
1397         New functions to provide defaults when no window system available.
1398         (FRAME_RES_X, FRAME_RES_Y): New macros.
1399         (NUMVAL): Move from xdisp.c.
1400         * font.c (font_pixel_size, font_find_for_lface, font_open_for_lface)
1401         (Ffont_face_attributes, Fopen_font):
1402         * image.c (gs_load):
1403         * w32font.c (fill_in_logfont):
1404         * xdisp.c (calc_pixel_width_or_height):
1405         * xfaces.c (Fx_family_fonts, set_lface_from_font): Use them.
1406         * xsettings.c (apply_xft_settings): Drop frame loop and adjust comment.
1408 2013-03-20  Kenichi Handa  <handa@gnu.org>
1410         * coding.c (syms_of_coding): Initialize disable_ascii_optimization
1411         to 1 (temporary workaround until a bug related to ASCII
1412         optimization is fixed).
1414 2013-03-19  Dmitry Antipov  <dmantipov@yandex.ru>
1416         * window.c (Fwindow_combination_limit, Fset_window_combination_limit):
1417         Signal error if window is not internal.  Adjust docstring.
1418         (delete_all_child_windows): Use combination_limit to save the buffer.
1419         (Fset_window_configuration): Adjust accordingly.
1420         * print.c (syms_of_print): Initialize debugging output not here...
1421         (init_print_once): ...but in a new function here.
1422         * lisp.h (init_print_once): Add prototype.
1423         * emacs.c (main): Add call to init_print_once.  Adjust comments.
1425 2013-03-18  Dmitry Antipov  <dmantipov@yandex.ru>
1427         * window.c (window_resize_check, window_resize_apply)
1428         (window_from_coordinates, recombine_windows, set_window_buffer)
1429         (make_parent_window, Fwindow_resize_apply, resize_frame_windows)
1430         (Fsplit_window_internal, Fdelete_window_internal)
1431         (freeze_window_starts): Use bool for booleans.
1432         * window.h (window_frame_coordinates, resize_frame_windows)
1433         (freeze_window_starts, set_window_buffer): Adjust prototypes.
1435 2013-03-17  Stefan Monnier  <monnier@iro.umontreal.ca>
1437         * dispnew.c (bitch_at_user): Use `user-error'.
1439 2013-03-17  Ken Brown  <kbrown@cornell.edu>
1441         * dispextern.h (RGB_PIXEL_COLOR): Move here from image.c.  Use it
1442         as return type of image_background.  (Bug#13981)
1443         * image.c (RGB_PIXEL_COLOR): Move to dispextern.h.
1445 2013-03-16  Jan Djärv  <jan.h.d@swipnet.se>
1447         * nsterm.m (updateFrameSize:): Change resize increments if needed.
1448         (ns_select): Don't return with result uninitialized.
1450         * nsterm.h (EmacsSavePanel, EmacsOpenPanel): Add getFilename
1451         and getDirectory.
1453         * nsfns.m (ns_filename_from_panel, ns_directory_from_panel):
1454         New functions.
1455         (Fns_read_file_name): ret is BOOL.  If ! dir_only_p, don't choose
1456         directories.  If filename is nil, get directory name (Bug#13932).
1457         Use getFilename and getDirectory.
1458         (getFilename, getDirectory): New methods for EmacsSavePanel and
1459         EmacsOpenPanel.
1460         (ok:): In EmacsOpenPanel, if we can't choose directories, just return.
1462 2013-03-15  Paul Eggert  <eggert@cs.ucla.edu>
1464         * coding.c (decode_coding_gap): Fix typo caught by static checking.
1466 2013-03-15  Kenichi Handa  <handa@gnu.org>
1468         * insdel.c (insert_from_gap): New arg text_at_gap_tail.
1469         (adjust_after_replace): Make it back to static.  Delete the third
1470         arg text_at_gap_tail.  Cancel the code for handling it.
1472         * coding.h (struct coding_system): New member eol_seen.
1474         * coding.c (detect_ascii): New function.
1475         (detect_coding): Set coding->head_ascii and coding->eol_seen only
1476         when the source bytes are actually scanned.  On detecting for
1477         coding_category_utf_8_auto, call detect_ascii instead of scanning
1478         source bytes directly.
1479         (produce_chars): Call insert_from_gap with the new arg 0.
1480         (encode_coding): Likewise.
1481         (decode_coding_gap): Control ASCII optimization by the variable
1482         disable_ascii_optimization instead of #ifndef .. #endif.
1483         Deccode EOL format according to coding->eol_seen.
1484         (syms_of_coding): Declare disable-ascii-optimization as a Lisp
1485         variable.
1487         * lisp.h (adjust_after_replace): Cancel externing it.
1488         (insert_from_gap): Adjust prototype.
1490 2013-03-15  Eli Zaretskii  <eliz@gnu.org>
1492         * w32term.c (w32fullscreen_hook): Swap FULLSCREEN_BOTH and
1493         FULLSCREEN_MAXIMIZED.  (Bug#13935)
1495 2013-03-15  Dmitry Antipov  <dmantipov@yandex.ru>
1497         * region-cache.c (find_cache_boundary, move_cache_gap)
1498         (insert_cache_boundary, delete_cache_boundaries, set_cache_region):
1499         Simplify debugging check and convert to eassert.  Adjust comment.
1500         (pp_cache): Put under ENABLE_CHECKING.
1502 2013-03-14  Eli Zaretskii  <eliz@gnu.org>
1504         * w32term.c (w32_read_socket) <WM_WINDOWPOSCHANGED>: Remove old
1505         and incorrect code.  Treat WM_WINDOWPOSCHANGED like WM_ACTIVATE
1506         and WM_ACTIVATEAPP.
1507         (w32fullscreen_hook): If the frame is visible, reset
1508         f->want_fullscreen flag after changing the frame size.  If the
1509         frame is not visible, set f->want_fullscreen to FULLSCREEN_WAIT.
1510         (Bug#13953)
1512 2013-03-13  Daniel Colascione  <dancol@dancol.org>
1514         * emacs.c (main): Call syms_of_cygw32 on CYGWIN non-NTGUI builds
1515         too so that these builds can use Cygwin's file conversion
1516         functions.  (We've been building and linking cygw32.o all along
1517         and just not using it.)
1519 2013-03-13  Paul Eggert  <eggert@cs.ucla.edu>
1521         File synchronization fixes (Bug#13944).
1522         * Makefile.in (LIB_FDATASYNC): New macro.
1523         (LIBES): Use it.
1524         * conf_post.h (BSD_SYSTEM, BSD_SYSTEM_AHB): Remove; no longer needed.
1525         * fileio.c (Fwrite_region, write_region_inhibit_fsync):
1526         Don't worry about HAVE_FSYNC, since a substitute fsync is
1527         available if the system lacks one.
1528         (Fwrite_regin): Retry fsync if interrupted.
1530 2013-03-13  Eli Zaretskii  <eliz@gnu.org>
1532         * w32term.c (w32_read_socket): If the Emacs frame is being
1533         activated, call w32fullscreen_hook, to make sure the new frame
1534         dimensions are in effect.  (Bug#13937)
1536 2013-03-13  Dmitry Antipov  <dmantipov@yandex.ru>
1538         * xdisp.c (init_iterator): Simplify because both character and byte
1539         positions are either specified or -1.  Add eassert.  Adjust comment.
1540         * window.c (Fscroll_other_window): Use SET_PT_BOTH because both
1541         character and byte positions can be obtained from marker.
1543 2013-03-13  Paul Eggert  <eggert@cs.ucla.edu>
1545         Static checking by Sun C 5.12.
1546         * alloc.c (buffer_memory_full) [REL_ALLOC]:
1547         * bytecode.c (exec_byte_code):
1548         * dispnew.c (init_display):
1549         * eval.c (error):
1550         * fileio.c (Fsubstitute_in_file_name):
1551         * keyboard.c (Fevent_convert_list):
1552         * keymap.c (Fsingle_key_description):
1553         * term.c (maybe_fatal, fatal):
1554         * xfns.c (Fx_display_backing_store, Fx_display_visual_class):
1555         * xsmfns.c (Fhandle_save_session):
1556         Omit unreachable code.
1557         * keymap.c (map_keymap_char_table_item): Cast void * to
1558         a function pointer type; the C Standard requires this.
1560         * sysdep.c: Remove a use of BSD_SYSTEM, which I'm trying to phase out.
1561         Include <sys/param.h> unconditionally, as that works elsewhere and
1562         is simpler here.  Include <sys/sysctl.h> if DARWIN_OS ||
1563         __FreeBSD__, not if BSD_SYSTEM, since it's needed only for Darwin
1564         and FreeBSD now.
1566 2013-03-11  Paul Eggert  <eggert@cs.ucla.edu>
1568         * insdel.c (adjust_after_replace): Use bool for boolean.
1570 2013-03-11  Stefan Monnier  <monnier@iro.umontreal.ca>
1572         * keyboard.c: Move keyboard decoding to read_key_sequence.
1573         (decode_keyboard_code): Remove.
1574         (tty_read_avail_input): Don't try to decode input.
1575         (read_decoded_char): New function.
1576         (read_key_sequence): Use it.
1578 2013-03-10  Daniel Colascione  <dancol@dancol.org>
1580         * w32term.h (GUISTR, GUI_ENCODE_FILE, GUI_ENCODE_SYSTEM, GUI_FN)
1581         (GUI_SDATA, guichar_t): Macros to abstract out differences between
1582         NTGUI_UNICODE and !NTGUI_UNICODE builds, some moved out of
1583         w32fns.c.
1585         * w32term.c (construct_drag_n_drop): Use the above macros to make
1586         drag-and-drop work for non-ASCII filenames in cygw32 builds.
1588         * w32fns.c (x_set_name, x_set_title): Use the above macros to
1589         properly display non-ASCII frame titles in cygw32 builds.
1591         * w32fns.c (Fw32_shell_execute): Use the above macros to properly
1592         call ShellExecute in cygw32 builds.
1594         * w32fn.c (Fx_file_dialog): Use the above macros to simplify the
1595         common file dialog code.
1597         * w32fns.c (Ffile_system_info): Remove from cygw32 builds, which
1598         can just use du like other systems.
1600         * coding.c (from_unicode_buffer): Declare.
1601         * coding.c (from_unicode_buffer): Implement.
1603 2013-03-10  Stefan Monnier  <monnier@iro.umontreal.ca>
1605         * lread.c: Minor cleanup.
1606         (FROM_FILE_P): New macro.
1607         (skip_dyn_bytes, unreadchar, read1): Use it.
1608         (read_list): Consolidate duplicated code.
1610         * bytecode.c (struct byte_stack): Remove `constants' when unused.
1612 2013-03-10  Eli Zaretskii  <eliz@gnu.org>
1614         * xdisp.c (display_tool_bar_line, redisplay_tool_bar)
1615         (redisplay_internal, set_cursor_from_row, try_window)
1616         (try_window_id, dump_glyph_row, extend_face_to_end_of_line)
1617         (display_line, notice_overwritten_cursor)
1618         (mouse_face_from_buffer_pos, note_mouse_highlight):
1619         Use MATRIX_ROW_DISPLAYS_TEXT_P.
1620         (note_mouse_highlight): Use MATRIX_ROW_GLYPH_START.
1621         (mouse_face_from_string_pos, fast_find_string_pos):
1622         Use MATRIX_ROW_VPOS.
1624         * xfns.c (Fx_show_tip): Use MATRIX_ROW_DISPLAYS_TEXT_P.
1626         * w32fns.c (Fx_show_tip): Use MATRIX_ROW_DISPLAYS_TEXT_P.
1628         * xdisp.c (try_cursor_movement): Use MATRIX_ROW and
1629         MATRIX_MODE_LINE_ROW.
1631         * dispnew.c (update_window): Use MATRIX_ROW and MATRIX_MODE_LINE_ROW.
1633 2013-03-10  handa  <handa@gnu.org>
1635         * lisp.h (adjust_after_replace): Extern it.
1637         * coding.c (detect_coding): Cound the heading ASCII bytes in the
1638         case of detection for coding_category_utf_8_auto.
1639         (decode_coding_gap) [not CODING_DISABLE_ASCII_OPTIMIZATION]:
1640         Skip decoding if all bytes are ASCII.
1642         * insdel.c (adjust_after_replace): Make it public.  New arg
1643         text_at_gap_tail.
1644         (adjust_after_insert): Call adjust_after_replace with the new arg
1645         value 0.
1647 2013-03-09  Stefan Monnier  <monnier@iro.umontreal.ca>
1649         * keyboard.h (EVENT_START, EVENT_END, POSN_WINDOW, POSN_POSN)
1650         (POSN_WINDOW_POSN, POSN_TIMESTAMP): Be careful since events may come
1651         from Elisp via unread-command-events.
1653         * keyboard.c (access_keymap_keyremap): Accept nil return value from
1654         functions to mean "no change".
1656 2013-03-08  Paul Eggert  <eggert@cs.ucla.edu>
1658         region-cache.c, scroll.c, search.c: Use bool for booleans.
1659         * lisp.h (compile_pattern):
1660         * scroll.c (do_scrolling, do_direct_scrolling):
1661         * search.c (struct regexp_cache, compile_pattern_1)
1662         (compile_pattern, string_match_1, search_command)
1663         (trivial_regexp_p, search_buffer, Freplace_match, match_limit)
1664         (search_regs_saved, Fregexp_quote):
1665         Use bool for boolean.
1666         * region-cache.c (region_cache_forward, region_cache_backward):
1667         Fix comments to match code: these functions return int, not boolean.
1669 2013-03-08  Dmitry Antipov  <dmantipov@yandex.ru>
1671         * search.c (find_newline): Accept start and end byte positions
1672         as arguments and allow -1 if not known.
1673         (find_newline_no_quit): Likewise for start position.
1674         * lisp.h (find_newline, find_newline_no_quit): Adjust prototype.
1675         * bidi.c (bidi_find_paragraph_start): Pass byte position to
1676         find_newline_no_quit, thus eliminating CHAR_TO_BYTE.
1677         * editfns.c (Fconstrain_to_field): Break long line.
1678         Adjust call to find_newline.
1679         * indent.c (vmotion): Adjust calls to find_newline_no_quit.
1680         Use DEC_BOTH to start next search from the previous buffer
1681         position, where appropriate.
1682         * xdisp.c (back_to_previous_line_start, forward_to_next_line_start)
1683         (get_visually_first_element, move_it_vertically_backward): Likewise.
1684         Obtain byte position from the display iterator, where appropriate.
1686 2013-03-08  Paul Eggert  <eggert@cs.ucla.edu>
1688         print.c, process.c: Use bool for booleans.
1689         * lisp.h (wait_reading_process_output):
1690         * print.c (print_output_debug_flag, PRINTDECLARE, printchar)
1691         (strout, debug_output_compilation_hack, float_to_string, print)
1692         (print_object):
1693         * process.c (kbd_is_on_hold, inhibit_sentinels, process_output_skip)
1694         (decode_status, status_message, create_process, create_pty)
1695         (Fmake_network_process, Fnetwork_interface_info)
1696         (wait_reading_process_output, read_process_output)
1697         (write_queue_push, write_queue_pop, process_send_signal)
1698         (handle_child_signal, keyboard_bit_set, kbd_on_hold_p):
1699         * process.h (struct Lisp_Process, inhibit_sentinels, kbd_on_hold_p):
1700         Use bool for booleans.
1701         * process.c (Fnetwork_interface_list): Remove unused local.
1702         (connect_counter): Now EMACS_INT, not int.
1704 2013-03-08  Dmitry Antipov  <dmantipov@yandex.ru>
1706         * bidi.c (bidi_fetch_char): Swap first and second arguments
1707         to match other functions accepting character and byte positions.
1708         Adjust comment.
1709         (bidi_resolve_explicit_1, bidi_level_of_next_char): Adjust users.
1710         (bidi_paragraph_init): Likewise.  Use DEC_BOTH which is faster
1711         when you need just to move to the previous buffer position.
1712         * xdisp.c (Fcurrent_bidi_paragraph_direction): Use DEC_BOTH.
1714 2013-03-07  Eli Zaretskii  <eliz@gnu.org>
1716         * .gdbinit (prowlims): Display the enabled_p flag of the row.
1718 2013-03-07  Dmitry Antipov  <dmantipov@yandex.ru>
1720         Avoid character to byte conversions in motion subroutines.
1721         * indent.h (compute_motion, vmotion): Add byte position argument.
1722         * indent.c (compute_motion): Use it and avoid CHAR_TO_BYTE.
1723         Add eassert.
1724         (Fcompute_motion): Break long line.  Adjust call to compute_motion.
1725         Use list5 for return value.
1726         (vmotion): Use byte position argument and avoid call to CHAR_TO_BYTE.
1727         Adjust comments, style and calls to compute_motion.
1728         (Fvertical_motion): Adjust call to vmotion.
1729         * window.c (Fdelete_other_windows_internal): Record window start
1730         byte position and adjust call to vmotion.
1731         (window_scroll_line_based): Likewise with call to compute_motion.
1732         Use SET_PT_BOTH.
1733         (Frecenter): Adjust calls to vmotion.
1735 2013-03-07  Dmitry Antipov  <dmantipov@yandex.ru>
1737         * lisp.h (list2i, list3i): New functions.
1738         (list4i): Move from window.c and make LISP_INLINE.
1739         * editfns.c (make_lisp_time):
1740         * fns.c (Flocale_info):
1741         * keyboard.c (parse_modifiers):
1742         * xterm.c (x_ewmh_activate_frame): Use list2i.
1743         * instel.c (signal_after_change):
1744         * nsfns.m (Fx_server_version, Fxw_color_values):
1745         * w32fns.c (Fxw_color_values, Fx_server_version):
1746         * xfns.c (Fxw_color_values, Fx_server_version): Use list3i.
1747         * fileio.c (Fvisited_file_modtime):
1748         * nsfns.m (Fns_display_usable_bounds):
1749         * w32.c (ltime): Use list4i.
1751 2013-03-06  Eli Zaretskii  <eliz@gnu.org>
1753         * search.c (find_newline_no_quit): Rename from find_next_newline.
1754         Add commentary.
1756         * lisp.h (find_newline_no_quit): Rename prototype.
1758         * xdisp.c (back_to_previous_line_start)
1759         (forward_to_next_line_start, get_visually_first_element)
1760         (move_it_vertically_backward): Callers of find_newline_no_quit changed.
1761         * indent.c (vmotion): Callers of find_newline_no_quit changed.
1762         * bidi.c (bidi_find_paragraph_start): Callers of
1763         find_newline_no_quit changed.
1765         * msdos.c: Change encoding to cp850.  (Bug#13879)
1766         (fr_keyboard, it_keyboard, dk_keyboard): Update keyboard layouts.
1768 2013-03-06  Dmitry Antipov  <dmantipov@yandex.ru>
1770         Coding system support cleanup and minor refactoring.
1771         * coding.h (enum coding_result_code): Remove
1772         CODING_RESULT_INCONSISTENT_EOL and CODING_RESULT_INSUFFICIENT_MEM.
1773         (toplevel): Remove unused CODING_MODE_INHIBIT_INCONSISTENT_EOL.
1774         (CODING_MODE_LAST_BLOCK, CODING_MODE_SELECTIVE_DISPLAY)
1775         (CODING_MODE_DIRECTION, CODING_MODE_FIXED_DESTINATION)
1776         (CODING_MODE_SAFE_ENCODING): Rearrange bit values.
1777         (decode_coding_region, encode_coding_region, decode_coding_string):
1778         Remove unused compatibility macros.
1779         * coding.c (Qinconsistent_eol, Qinsufficient_memory): Remove.
1780         (record_conversion_result): Adjust user.
1781         (syms_of_coding): Likewise.
1782         (ALLOC_CONVERSION_WORK_AREA): Use SAFE_ALLOCA.
1783         (decode_coding, encode_coding): Add USE_SAFE_ALLOCA and SAFE_FREE.
1784         (decode_coding_object): Simplify since xrealloc never returns NULL.
1785         Add eassert.
1787 2013-03-06  Paul Eggert  <eggert@cs.ucla.edu>
1789         Fix a build failure on OpenBSD 4.x and MirBSD (Bug#13881).
1790         * sysdep.c (list_system_processes)
1791         [BSD_SYSTEM && !DARWIN_OS && !__FreeBSD__]:
1792         Make it a stub in this case; otherwise the build might fail,
1793         and this code hasn't been tested on such hosts anyway.
1794         Problem reported by Nelson H. F. Beebe in
1795         <http://lists.gnu.org/archive/html/emacs-devel/2013-03/msg00021.html>
1796         and analyzed by Jérémie Courrèges-Anglas in
1797         <http://lists.gnu.org/archive/html/emacs-devel/2013-03/msg00062.html>.
1799 2013-03-06  Dmitry Antipov  <dmantipov@yandex.ru>
1801         * lisp.h (find_next_newline_no_quit): Rename to find_next_newline.
1802         * xdisp.c (back_to_previous_line_start, forward_to_next_line_start)
1803         (get_visually_first_element, move_it_vertically_backward): Ajust users.
1804         * bidi.c (bidi_find_paragraph_start): Likewise.
1805         * indent.c (vmotion): Likewise.
1807 2013-03-05  Paul Eggert  <eggert@cs.ucla.edu>
1809         FILE's lock is now always .#FILE and may be a regular file (Bug#13807).
1810         * filelock.c: Include <c-ctype.h>.
1811         (MAX_LFINFO): New top-level constant.
1812         (lock_info_type): Remove members pid, boot_time.  Add members at,
1813         dot, colon.  Change user member to be the entire buffer, not a
1814         pointer.  This allows us to handle the case where a foreign
1815         pid or boot time exceeds the local range.  All uses changed.
1816         (LINKS_MIGHT_NOT_WORK): New constant.
1817         (FREE_LOCK_INFO): Remove, as the pieces no longer need freeing.
1818         (defined_WINDOWSNT): Remove.
1819         (MAKE_LOCK_NAME, file_in_lock_file_name):
1820         Always use .#FILE (not .#-FILE) for the file lock,
1821         even if it is a regular file.
1822         (rename_lock_file): New function.
1823         (create_lock_file): Use it.
1824         (create_lock_file, read_lock_data):
1825         Prefer a symbolic link for the lock file, falling back on a
1826         regular file if symlinks don't work.  Do not try to create
1827         symlinks on MS-Windows, due to security hassles.  Stick with
1828         POSIXish functions (open, read, write, close, fchmod, readlink, symlink,
1829         link, rename, unlink, mkstemp) when creating locks, as a GNUish
1830         host may be using a Windowsish file system, and cannot use
1831         MS-Windows-only system calls.  Fall back on mktemp if mkstemp
1832         doesn't work.  Don't fail merely because of a symlink-contents
1833         length limit in the current file system; fall back on regular
1834         files.  Increase the symlink contents length limit to 8 KiB, this
1835         should be big enough for any real use and doesn't crunch the
1836         stack.
1837         (create_lock_file, lock_file_1, read_lock_data):
1838         Simplify allocation of lock file buffers now that they fit in 8 KiB.
1839         (lock_file_1): Return error number, not bool.  All callers changed.
1840         (ELOOP): New macro, if not already defined.
1841         (read_lock_data): Return size of lock file contents, not Lisp object.
1842         All callers changed.  Handle a race condition if some other process
1843         replaces a regular-file lock with a symlink lock or vice versa,
1844         while we're trying to read the lock.
1845         (current_lock_owner): Parse contents more carefully, to help avoid
1846         confusing a regular-file lock with some other application's use
1847         of the file.  Check for lock file contents being too long, or
1848         not parsing correctly.
1849         (current_lock_owner, lock_file):
1850         Allow foreign pid and boot times that exceed the local range.
1851         (current_lock_owner, lock_if_free, lock_file):
1852         Simplify allocation of lock file contents.
1853         * w32.c (sys_rename_replace): New function, containing most of
1854         the contents of the old sys_rename.
1855         (sys_rename): Use it.
1856         (fchmod): New dummy function.
1857         * w32.h (sys_rename_replace, fchmod): New decls.
1859 2013-03-05  Eli Zaretskii  <eliz@gnu.org>
1861         * bidi.c (bidi_resolve_explicit_1): Don't call CHAR_TO_BYTE or
1862         bidi_count_bytes, as the callers now arrange for bidi_it->charpos
1863         to be in sync with bidi_it->bytepos.  Suggested by Dmitry Antipov
1864         <dmantipov@yandex.ru>.
1866 2013-03-05  Dmitry Antipov  <dmantipov@yandex.ru>
1868         * composite.c (get_composition_id, fill_gstring_header):
1869         Use make_uninit_vector where appropriate.
1870         * font.c (Ffont_get_glyphs, build_style_table): Likewise.
1871         * xselect.c (clean_local_selection_data): Likewise.
1873 2013-03-04  Paul Eggert  <eggert@cs.ucla.edu>
1875         Fix misuse of ImageMagick that caused core dump (Bug#13846).
1876         * image.c (imagemagick_load_image): Calculate height and width
1877         after flattening the image, not before.
1879 2013-03-04  Dmitry Antipov  <dmantipov@yandex.ru>
1881         * font.c (Ffont_get_glyphs): Use convenient LGLYPH_NEW.
1882         * ftfont.c (ftfont_shape_by_flt): Likewise.
1883         * w32uniscribe.c (uniscribe_shape): Likewise.
1885 2013-03-02  Paul Eggert  <eggert@cs.ucla.edu>
1887         The lock for FILE is now .#FILE or .#-FILE (Bug#13807).
1888         The old approach, which fell back on DIR/.#FILE.0 through
1889         DIR/.#FILE.9, had race conditions that could not be easily fixed.
1890         If DIR/.#FILE is a non-symlink file, Emacs now does not create a
1891         lock file for DIR/FILE; that is, DIR/FILE is no longer partly
1892         protected by a lock if DIR/.#FILE is a non-symlink file ("partly"
1893         because the locking mechanism was never reliable in that case).
1894         This patch fixes this and other bugs discovered by a code
1895         inspection that was prompted by
1896         <http://lists.gnu.org/archive/html/emacs-devel/2013-02/msg00531.html>.
1897         Also, this patch switches to .#-FILE (not .#FILE) on MS-Windows,
1898         to avoid interoperability problems between the MS-Windows and
1899         non-MS-Windows implementations.  MS-Windows and non-MS-Windows
1900         instances of Emacs now ignore each others' locks.
1901         * filelock.c (defined_WINDOWSNT): New constant.
1902         (MAKE_LOCK_NAME, fill_in_lock_file_name):
1903         Don't create DIR/.#FILE.0 through DIR/.#FILE.9.  Instead, create
1904         DIR/.#FILE symlinks on non-MS-Windows hosts, and DIR/.#-FILE
1905         regular files on MS-Windows hosts.
1906         (MAKE_LOCK_NAME, unlock_file, Ffile_locked_p):
1907         Use SAFE_ALLOCA to avoid problems with long file names.
1908         (MAX_LFINFO): Now a local constant, not a global macro.
1909         (IS_LOCK_FILE): Remove.
1910         (lock_file_1): Don't inspect errno if symlink call succeeds;
1911         that's not portable.
1912         (lock_file): Document that this function can return if lock
1913         creation fails.
1914         (lock_file): Don't access freed storage.
1916 2013-03-02  Andreas Schwab  <schwab@linux-m68k.org>
1918         * lisp.h (XPNTR) [!USE_LSB_TAG]: Remove extra paren.  (Bug#13734)
1920 2013-03-02  Paul Eggert  <eggert@cs.ucla.edu>
1922         * textprop.c: Use bool for booleans.
1923         (validate_interval_range, Fadd_text_properties)
1924         (Fremove_text_properties): Prefer bool to int when either works.
1926 2013-03-02  Eli Zaretskii  <eliz@gnu.org>
1928         * textprop.c (Fadd_text_properties, Fremove_text_properties):
1929         If the interval tree changes as a side effect of calling
1930         modify_region, re-do processing starting from the call to
1931         validate_interval_range.  (Bug#13743)
1933 2013-02-28  Eli Zaretskii  <eliz@gnu.org>
1935         * w32.c (sys_open): Don't reset the flags for FD in fd_info[].
1936         (Bug#13546).
1938 2013-02-27  Eli Zaretskii  <eliz@gnu.org>
1940         * filelock.c (create_lock_file) [WINDOWSNT]: Use _sopen with
1941         _SH_DENYRW flag, instead of emacs_open, to deny any other process
1942         access to the lock file until it is written and closed.
1943         (Bug#13807)
1945 2013-02-27  Paul Eggert  <eggert@cs.ucla.edu>
1947         * callint.c (Qcall_interactively):
1948         * macros.c (Qexecute_kbd_macro):
1949         Now static.
1951 2013-02-26  Bastien Guerry  <bzg@gnu.org>
1953         * window.c (Frecenter): Tiny docstring enhancement.
1955 2013-02-26  Paul Eggert  <eggert@cs.ucla.edu>
1957         Minor textprop integer cleanup.
1958         * intervals.h, textprop.c (add_text_properties_from_list):
1959         Return void, not int, since nobody uses the return value.
1960         * textprop.c (validate_plist, add_properties, remove_properties)
1961         (Fadd_text_properties):
1962         Don't assume list length fits in int.
1963         (interval_has_all_properties, interval_has_some_properties)
1964         (interval_has_some_properties_list, add_properties, remove_properties)
1965         (Fadd_text_properties, Fremove_text_properties)
1966         (Fremove_list_of_text_properties, text_property_stickiness):
1967         Use bool for booleans.
1968         (Fadd_text_properties, Fremove_text_properties):
1969         (Fremove_list_of_text_properties):
1970         Reindent do-while as per GNU style.
1972 2013-02-25  Eli Zaretskii  <eliz@gnu.org>
1974         Implement CLASH_DETECTION for MS-Windows.
1976         * filelock.c [WINDOWSNT]: Include w32.h.
1977         (MAKE_LOCK_NAME): Don't use 'lock', it clashes with MS runtime
1978         function of that name.  Up-case the macro arguments.
1979         (IS_LOCK_FILE): New macro.
1980         (fill_in_lock_file_name): Use IS_LOCK_FILE instead of S_ISLNK.
1981         (create_lock_file): New function, with body extracted from
1982         lock_file_1.
1983         [WINDOWSNT]: Implement lock files by writing a regular file with
1984         the lock information as its contents.
1985         (read_lock_data): New function, on Posix platforms just calls
1986         emacs_readlinkat.
1987         [WINDOWSNT]: Read the lock info from the file.
1988         (current_lock_owner): Call read_lock_data instead of calling
1989         emacs_readlinkat directly.
1990         (lock_file) [WINDOWSNT]: Run the file name through
1991         dostounix_filename.
1993         * w32proc.c (sys_kill): Support the case of SIG = 0, in which case
1994         just check if the process by that PID exists.
1996         * w32.c (sys_open): Don't reset the _O_CREAT flag if _O_EXCL is
1997         also present, as doing so will fail to error out if the file
1998         already exists.
2000         * makefile.w32-in ($(BLD)/filelock.$(O)): Depend on src/w32.h.
2002         * textprop.c (Fadd_text_properties, Fremove_text_properties)
2003         (Fremove_list_of_text_properties): Skip all of the intervals in
2004         the region between START and END that already have resp. don't
2005         have the requested properties, not just the first one.
2006         Add assertions that the loop afterwards always modifies the
2007         properties.  (Bug#13743)
2009 2013-02-25  Stefan Monnier  <monnier@iro.umontreal.ca>
2011         * callint.c (Fcall_interactively): Use the right lexical environment
2012         for `interactive' specs (bug#13811).
2013         * eval.c (Feval): Accept a lexical environment.
2015 2013-02-25  Paul Eggert  <eggert@cs.ucla.edu>
2017         Simplify data_start configuration (Bug#13783).
2018         This is a followon simplification to the fix for Bug#13650.
2019         * Makefile.in (LD_FIRSTFLAG, LIB_GCC, CRT_DIR, LIB_STANDARD)
2020         (START_FILES): Remove.  All uses removed.
2021         (otherobj): Remove $(VMLIMIT_OBJ), as it's now first.
2022         (ALLOBJS): Move here from autodeps.mk, and with VMLIMITS_OBJ first.
2023         (buildobj.h): Use it.
2024         ($(ALLOBJS)): Depend on globals.h.
2025         (temacs$(EXEEXT)): Use $(ALLOBJS).
2026         * autodeps.mk (ALLOBJS): Move to Makefile.in.
2027         * deps.mk (vm-limit.o):
2028         * makefile.w32-in ($(BLD)/vm-limit.$(O)):
2029         Do not depend on mem-limits.h.
2030         * emacs.c (__do_global_ctors, __do_global_ctors_aux)
2031         (__do_global_dtors, __CTOR_LIST__, __DTOR_LIST__)
2032         [__GNUC__ && !ORDINARY_LINK]: Remove.
2033         * mem-limits.h, pre-crt0.c: Remove.
2034         * unexaix.c, unexcoff.c: Don't include mem-limits.h.
2035         * unexcoff.c (etext): New decl.
2036         (make_hdr): Use DATA_START instead of start_of_data.
2037         * vm-limit.c: Move most of mem-limits.h's contents here.
2038         (data_start): New decl.  It's OK if this is approximate,
2039         so simplify-away some unnecessary exactness.
2040         (POINTER): Remove; all uses removed.
2041         (data_space_start): Now char *, to avoid casts.
2042         (exceeds_lisp_ptr): New function, replacing the old
2043         EXCEEDS_LISP_PTR macro.  All uses changed.
2044         (check_memory_limits): Simplify and remove casts.
2045         (start_of_data) [!CANNOT_DUMP || !SYSTEM_MALLOC]: Remove.
2046         (memory_warnings): Use data_start instead of start_of_data.
2048 2013-02-24  Andreas Schwab  <schwab@linux-m68k.org>
2050         * xdisp.c (set_message): Only check for debug-on-message if STRING
2051         is a string.  (Bug#13797)
2053 2013-02-24  Paul Eggert  <eggert@cs.ucla.edu>
2055         Fix regression introduced by July 10 filelock.c patch.
2056         * filelock.c (fill_in_lock_file_name): Fix crash caused by the
2057         2012-07-10 patch to this file.  Reported by Eli Zaretskii in
2058         <http://lists.gnu.org/archive/html/emacs-devel/2013-02/msg00533.html>
2059         and diagnosed by Andreas Schwab in
2060         <http://lists.gnu.org/archive/html/emacs-devel/2013-02/msg00534.html>.
2062 2013-02-22  Paul Eggert  <eggert@cs.ucla.edu>
2064         Assume C89 or better.
2065         * ralloc.c (SIZE, POINTER, NIL):
2066         * vm-limit.c (POINTER):
2067         Remove, replacing all uses with C89 equivalents.  These old
2068         symbols were present only for porting to pre-C89 platforms.
2070 2013-02-22  Claudio Bley  <claudio.bley@gmail.com>
2072         * w32.c (emacs_gnutls_pull): Don't call 'select', and don't loop.
2073         This avoids warning messages reported as part of Bug#13546.
2075 2013-02-21  Ken Brown  <kbrown@cornell.edu>
2077         * sheap.c (report_sheap_usage): Fix arguments of message1_no_log.
2079 2013-02-20  Stefan Monnier  <monnier@iro.umontreal.ca>
2081         * sheap.c (report_sheap_usage): Prefer message1_nolog.
2083         * keyboard.c (Qcommand_execute): New var.
2084         (command_loop_1, read_char): Use it.
2085         (Fcommand_execute): Remove, replace by an Elisp implementation.
2086         (syms_of_keyboard): Adjust accordingly.
2088 2013-02-19  Daniel Colascione  <dancol@dancol.org>
2090         * sheap.c (report_sheap_usage): Use message, not message1, so
2091         that we don't try to create a buffer while we're in the middle
2092         of dumping Emacs.  Explain why.
2094 2013-02-20  Dmitry Antipov  <dmantipov@yandex.ru>
2096         * search.c (find_newline): Return byte position in bytepos.
2097         Adjust comment.
2098         (find_next_newline_no_quit, find_before_next_newline):
2099         Add bytepos argument.
2100         * lisp.h (find_newline, find_next_newline_no_quit)
2101         (find_before_next_newline): Adjust prototypes.
2102         * bidi.c (bidi_find_paragraph_start):
2103         * editfns.c (Fconstrain_to_field, Fline_end_position):
2104         * indent.c (compute_motion, vmotion):
2105         * xdisp.c (back_to_previous_line_start, forward_to_next_line_start):
2106         (get_visually_first_element, move_it_vertically_backward):
2107         Adjust users and avoid calls to CHAR_TO_BYTE where appropriate.
2109 2013-02-19  Eli Zaretskii  <eliz@gnu.org>
2111         * w32proc.c (new_child): Avoid leaking handles if the subprocess
2112         resources were not orderly released.
2114 2013-02-17  Eli Zaretskii  <eliz@gnu.org>
2116         * xdisp.c (x_draw_vertical_border): For a window that is neither
2117         the leftmost nor the rightmost, redraw both the left and the right
2118         vertical borders.  (Bug#13723)
2120 2013-02-17  Stefan Monnier  <monnier@iro.umontreal.ca>
2122         * xml.c (init_libxml2_functions):
2123         * sound.c (sound_warning):
2124         * sheap.c (report_sheap_usage):
2125         * process.c (wait_reading_process_output):
2126         * msdos.c (XMenuActivate):
2127         * macros.c (Fstart_kbd_macro, Fend_kbd_macro):
2128         * keyboard.c (top_level_1):
2129         * editfns.c (Fmessage, Fmessage_box):
2130         * callint.c (Fcall_interactively):
2131         * fns.c (Fyes_or_no_p): Prefer `message1' over `message'.
2133 2013-02-17  Jan Djärv  <jan.h.d@swipnet.se>
2135         * xterm.c (syms_of_xterm): Move scroll-bar-adjust-thumb-portion ...
2136         * frame.c (syms_of_frame): ... to here.
2138 2013-02-16  Eli Zaretskii  <eliz@gnu.org>
2140         * w32.c (sys_chown): Remove unused function.
2142         * w32term.c <input_signal_count>: Declare 'volatile'
2143         unconditionally.  (Bug#9066)
2145         * w32.c (set_errno): Reset h_errno and don't set it to any other
2146         value.  Set errno instead.
2147         (check_errno): Reset h_errno.
2148         (sys_socket, socket_to_fd, sys_bind, sys_connect)
2149         (sys_gethostname, sys_getservbyname, sys_getpeername)
2150         (sys_shutdown, sys_setsockopt, sys_listen, sys_getsockname)
2151         (sys_accept, sys_recvfrom, sys_sendto, fcntl, sys_read): Don't set
2152         h_errno.
2153         (sys_gethostbyname): Set h_errno only errors detected.
2155 2013-02-15  Paul Eggert  <eggert@cs.ucla.edu>
2157         * process.c (h_errno) [!HAVE_H_ERRNO]: Remove unused decl.
2159 2013-02-15  Eli Zaretskii  <eliz@gnu.org>
2161         * keyboard.c (read_char): Fix calculation of auto-save time out
2162         when auto-save-timeout is less than 4.  (Bug#13720)
2164         * w32proc.c (new_child): Free up to 2 slots of dead processes at a
2165         time.  Improve diagnostics in DebPrint.  (Bug#13546)
2167         * w32.c (sys_socket, sys_bind, sys_connect, sys_gethostname)
2168         (sys_gethostbyname, sys_getservbyname, sys_getpeername)
2169         (sys_shutdown, sys_setsockopt, sys_listen, sys_getsockname)
2170         (sys_accept, sys_recvfrom, sys_sendto, fcntl): In case of failure,
2171         make sure errno is set to an appropriate value.  (Bug#13546)
2172         (socket_to_fd): Add assertion against indexing fd_info[] with a
2173         value that is out of bounds.
2174         (sys_accept): If fd is negative, do not set up the child_process
2175         structure for reading.
2177 2013-02-15  Dmitry Antipov  <dmantipov@yandex.ru>
2179         * composite.c (fill_gstring_header): Remove useless prototype.
2180         Break long line.
2181         * lisp.h (message_dolog, compile_pattern): Adjust prototype.
2182         * print.c (PRINTDECLARE, print_object):
2183         * search.c (compile_pattern, fast_looking_at, search_buffer):
2184         (simple_search, boyer_moore, Freplace_match):
2185         * xdisp.c (c_string_pos, number_of_chars, message_dolog):
2186         (get_overlay_arrow_glyph_row, display_mode_element):
2187         (decode_mode_spec_coding, message3):
2188         * xfaces.c (face_at_string_position): Use bool for booleans.
2189         Adjust comments.
2191 2013-02-15  Paul Eggert  <eggert@cs.ucla.edu>
2193         Fix AIX port (Bug#13650).
2194         * lisp.h (XPNTR) [!USE_LSB_TAG && DATA_SEG_BITS]:
2195         Fix bug introduced in 2012-07-27 change.  DATA_SEG_BITS, if set,
2196         was #undeffed earlier, so it cannot be used as a macro here.
2197         Use the constant and not the macro.
2199 2013-02-15  Eli Zaretskii  <eliz@gnu.org>
2201         * w32proc.c (new_child): If no vacant slots are found in
2202         child_procs[], make another pass looking for slots whose process
2203         has exited or died.  (Bug#13546)
2205         * w32.c (sys_pipe): When failing due to file descriptors above
2206         MAXDESC, set errno to EMFILE.
2207         (_sys_read_ahead): Update cp->status when failing to read serial
2208         communications input, so that the status doesn't stay at
2209         STATUS_READ_IN_PROGRESS.  (Bug#13546)
2211 2013-02-14  Jan Djärv  <jan.h.d@swipnet.se>
2213         * gtkutil.c (tb_size_cb): New function.
2214         (xg_create_tool_bar): Connect size-allocate to tb_size_cb (Bug#13512).
2216 2013-02-14  Stefan Monnier  <monnier@iro.umontreal.ca>
2218         * keyboard.c (active_maps): Fcurrent_active_maps expects a position, not
2219         an event.
2221 2013-02-13  Stefan Monnier  <monnier@iro.umontreal.ca>
2223         * keyboard.c (syms_of_keyboard): Further tweaks of docstring.
2225 2013-02-13  Dmitry Antipov  <dmantipov@yandex.ru>
2227         * font.c (font_range): Add pos_byte argument.  Adjust comment
2228         and break long line.
2229         * font.h (font_range): Adjust prototype.
2230         * composite.c (autocmp_chars): Pass byte position to font_range.
2231         Break long line.  Remove useless prototype and format comment.
2233 2013-02-13  Glenn Morris  <rgm@gnu.org>
2235         * keyboard.c (input-decode-map, key-translation-map): Doc fixes.
2237 2013-02-13  Paul Eggert  <eggert@cs.ucla.edu>
2239         Improve AIX port some more (Bug#13650).
2240         With this, it should be as good as it was in 23.3, though it's
2241         still pretty bad: the dumped emacs does not run.  See Mark Fleishman in
2242         http://lists.gnu.org/archive/html/help-gnu-emacs/2011-04/msg00287.html
2243         * unexaix.c (start_of_text): Remove.
2244         (_data, _text): Declare as char[], not int, as AIX manual suggests.
2245         (bias, lnnoptr, text_scnptr, data_scnptr, load_scnptr)
2246         (orig_load_scnptr, orig_data_scnptr):
2247         Now off_t, not long, since they are file offsets.
2248         (make_hdr): Use _data, not start_of_data ().
2249         This is the key part of the fix.
2250         (make_hdr, unrelocate_symbols): Use off_t for file offsets.
2251         (unrelocate_symbols): Cast pointers to intptr_t, not to ulong.
2253         * pre-crt0.c (data_start): Initialize to 1.
2254         This ports to compilers that optimize the external declaration
2255         'int x = 0;' as if it were 'int x;' to shrink the executable.
2257         Improve AIX port (Bug#13650).
2258         This doesn't fix the bug, but it makes progress: Emacs builds now.
2259         * unexaix.c: Include inttypes.h, stdarg.h.
2260         (report_error, report_error_1): Mark as _Noreturn.
2261         (report_error): Don't report the wrong errno.
2262         (report_error_1): Now varargs.  All callers changed.
2263         (make_hdr): Use uintptr_t, not unsigned, when converting pointers
2264         to unsigned.  Don't use ADDR_CORRECT, as it no longer exists.
2265         (write_ptr): Use %p to print address rather than %lx and a cast
2266         to unsigned long.  Grow buffer a bit, to be safer.
2268 2013-02-13  Eli Zaretskii  <eliz@gnu.org>
2270         * bidi.c (bidi_resolve_neutral): After finding the next
2271         non-neutral character, accept NEUTRAL_ON type as well, because
2272         directional control characters, such as LRE and RLE, have their
2273         type converted to that by bidi_resolve_weak.  This avoids aborts
2274         when LRE/RLE follows a run of neutrals.
2275         (bidi_move_to_visually_next): Assert that return value of
2276         bidi_peek_at_next_level is non-negative.  Negative values will
2277         cause an infloop.
2279 2013-02-13  Paul Eggert  <eggert@cs.ucla.edu>
2281         Minor getenv-related fixes.
2282         * callproc.c (Fcall_process_region) [!DOS_NT]:
2283         Avoid unnecessary duplicate call to getenv.
2284         * callproc.c (init_callproc):
2285         * dispnew.c (init_display):
2286         * sysdep.c (sys_subshell):
2287         Omit unnecessary cast of getenv or egetenv.
2289 2013-02-13  Juanma Barranquero  <lekktu@gmail.com>
2291         * makefile.w32-in ($(BLD)/filelock.$(O), $(BLD)/sysdep.$(O)):
2292         Update dependencies.
2294 2013-02-12  Eli Zaretskii  <eliz@gnu.org>
2296         * xdisp.c (redisplay_internal): Don't set w->region_showing to the
2297         marker's position.
2298         (display_line): Set w->region_showing to the value of
2299         it->region_beg_charpos, not to -1.  This fixes redisplay
2300         optimization when cursor is moved up after M->.  (Bug#13623)
2301         (Bug#13626)
2302         (try_scrolling): Scroll text up more if point is too close to ZV
2303         and inside the scroll margin.  This makes sure point is moved
2304         outside the scroll margin in these cases.
2306         * window.h (struct window): region_showing can no longer be
2307         negative.
2309 2013-02-11  Paul Eggert  <eggert@cs.ucla.edu>
2311         Tune by using memchr and memrchr.
2312         * doc.c (Fsnarf_documentation):
2313         * fileio.c (Fsubstitute_in_file_name):
2314         * search.c (find_newline, scan_newline):
2315         * xdisp.c (pos_visible_p, display_count_lines):
2316         Use memchr and memrchr rather than scanning byte-by-byte.
2317         * search.c (find_newline): Rename from scan_buffer.
2318         Omit first arg TARGET, as it's always '\n'.  All callers changed.
2320         Clean up read_key_sequence a tiny bit more.
2321         * keyboard.c (read_char_x_menu_prompt) [HAVE_MENUS]:
2322         (read_key_sequence): Remove unused locals.
2324 2013-02-11  Stefan Monnier  <monnier@iro.umontreal.ca>
2326         Clean up read_key_sequence a bit; reread active keymaps after first event.
2327         * keyboard.c (read_char, read_char_x_menu_prompt)
2328         (read_char_minibuf_menu_prompt):
2329         Replace nmaps+maps with a single `map' arg.
2330         (follow_key): Operate on a single map.
2331         (active_maps): New function.
2332         (test_undefined): Also return true for nil bindings.
2333         (read_key_sequence): Use active_maps to replace the arrays of keymaps with
2334         a single (composed) keymap.  Remember `first_event' to choose the right
2335         set of active keymaps.  Recompute the set of keymaps after receiving
2336         the first event.  Remove GOBBLE_FIRST_EVENT.
2337         (syms_of_keyboard): Remove inhibit_local_menu_bar_menus.
2338         * keyboard.h (read_char): Update declaration.
2339         * lread.c (read_filtered_event): Adjust call to read_char.
2341 2013-02-11  Eli Zaretskii  <eliz@gnu.org>
2343         * xdisp.c (move_it_vertically_backward, move_it_by_lines):
2344         Don't use the limitation on backwards movement when lines are truncated
2345         in the window.  (Bug#13675)
2347 2013-02-11  Dmitry Antipov  <dmantipov@yandex.ru>
2349         * marker.c (set_marker_internal): If desired position is passed
2350         as a marker, avoid call to buf_charpos_to_bytepos.
2351         * window.c (Fset_window_point): Omit redundant type checking.
2352         (Fset_window_start): Likewise.  Format comment.
2353         (window_scroll_pixel_based): Use set_marker_restricted_both
2354         with character and byte positions obtained from an iterator.
2355         (Fset_window_configuration): Use set_marker_restricted_both.
2356         * xdisp.c (message_dolog): Likewise.
2358 2013-02-10  Eli Zaretskii  <eliz@gnu.org>
2360         * xdisp.c (move_it_vertically_backward, move_it_by_lines):
2361         When text lines are longer than window's screen lines, don't move back
2362         too far.  This speeds up some redisplay operations.  (Bug#13675)
2364 2013-02-10  Dmitry Antipov  <dmantipov@yandex.ru>
2366         * syntax.c (scan_sexps_forward): Fix byte position calculation
2367         Bug#13664 (a.k.a Bug#13667) introduced with 2013-02-08 change.
2369 2013-02-10  Paul Eggert  <eggert@cs.ucla.edu>
2371         * fileio.c (Fexpand_file_name): Omit confusing pointer comparison
2372         that was not needed.
2374 2013-02-09  Paul Eggert  <eggert@cs.ucla.edu>
2376         Minor hashing refactoring.
2377         * fns.c (SXHASH_REDUCE): Move to lisp.h.
2378         (sxhash_float): Return EMACS_UINT, for consistency with the other
2379         hash functions.
2380         * lisp.h (INTMASK): Now a macro, since SXHASH_REDUCE is now a
2381         non-static inline function and therefore can't use static vars.
2382         (SXHASH_REDUCE): Move here from fns.c, and make it inline.
2383         * profiler.c (hashfn_profiler): Use SXHASH_REDUCE, to be consistent
2384         with the other hash functions.
2386 2013-02-09  Eli Zaretskii  <eliz@gnu.org>
2388         * callproc.c (Fcall_process_region) [WINDOWSNT]: Make sure the
2389         XXXXXX part of the temporary file pattern is not downcased even
2390         when w32-downcase-file-names is non-nil.  (Bug#13661)
2392         * xdisp.c (decode_mode_spec): Remove handling of %t.
2394         * msdos.c (careadlinkatcwd): Remove.
2396 2013-02-08  Stefan Monnier  <monnier@iro.umontreal.ca>
2398         * lread.c (skip_dyn_bytes): New function (bug#12598).
2399         (read1): Use it.  Use getc instead of READCHAR to read bytes.
2400         (load_each_byte): Remove.  Update users.
2402 2013-02-08  Dmitry Antipov  <dmantipov@yandex.ru>
2404         * search.c (scan_buffer): Calculate end byte position just once.
2405         (scan_newline): Do not recalculate start_byte.
2406         (search_command): Use eassert.
2407         * syntax.c (struct lisp_parse_state): New member location_byte.
2408         (scan_sexps_forward): Record from_byte and avoid redundant
2409         character to byte position calculation ...
2410         (Fparse_partial_sexp): ... here.  Break too long line.
2412 2013-02-08  Dmitry Antipov  <dmantipov@yandex.ru>
2414         * lisp.h (make_uninit_vector): New function.
2415         * alloc.c (Fvector, Fmake_byte_code):
2416         * ccl.c (Fregister_ccl_program):
2417         * charset.c (Fdefine_charset_internal, define_charset_internal):
2418         * coding.c (make_subsidiaries, Fdefine_coding_system_internal):
2419         * composite.c (syms_of_composite):
2420         * font.c (Fquery_font, Ffont_info, syms_of_font):
2421         * fontset.c (FONT_DEF_NEW, Fset_fontset_font):
2422         * ftfont.c (ftfont_shape_by_flt):
2423         * indent.c (recompute_width_table):
2424         * nsselect.m (clean_local_selection_data):
2425         * syntax.c (init_syntax_once):
2426         * w32unsubscribe.c (uniscribe_shape):
2427         * window.c (Fcurrent_window_configuration):
2428         * xfaces.c (Fx_family_fonts):
2429         * xselect.c (selection_data_to_lisp_data): Use it.
2431 2013-02-07  Dmitry Antipov  <dmantipov@yandex.ru>
2433         * coding.c (Fdefine_coding_system_internal): Use AREF where
2434         argument is known to be a vector.
2435         * fns.c (Flocale_info): Likewise for ASET.
2436         * xselect.c (selection_data_to_lisp_data): Likewise for ASET.
2437         * w32fns.c (w32_parse_hot_key): Likewise for ASIZE and AREF.
2439 2013-02-05  Jan Djärv  <jan.h.d@swipnet.se>
2441         * nsmenu.m (update_frame_tool_bar): Check for negative tool bar
2442         height.
2444         * nsterm.h (HAVE_NATIVE_FS): Define if OSX => 10.7.
2445         (EmacsView): Add fs_is_native, fsIsNative, isFullscreen and
2446         updateCollectionBehaviour.
2448         * nsterm.m (NEW_STYLE_FS): Remove.
2449         (ns_last_use_native_fullscreen): New variable.
2450         (x_make_frame_visible): Replace NEW_STYLE_FS with isFullscreen.
2451         (x_set_window_size): Do not take title bar and tool bar into account
2452         if isFullscreen returns YES.
2453         (ns_fullscreen_hook): Replace NEW_STYLE_FS with isFullscreen.
2454         (check_native_fs): New function.
2455         (ns_select, ns_read_socket): Call check_native_fs if HAVE_NATIVE_FS.
2456         (ns_term_init): Remove NEW_STYLE_FS.
2457         (updateFrameSize:, windowWillResize:toSize:): Only adjust for title bar
2458         and tool bar if isFullscreen returns NO.
2459         (windowDidResize:): Replace NEW_STYLE_FS with fsIsNative.
2460         (initFrameFromEmacs:): Initialize fs_is_native.  Replace NEW_STYLE_FS
2461         with HAVE_NATIVE_FS.
2462         (window:willUseFullScreenPresentationOptions:): New method.
2463         (windowDidEnterFullScreen:): Replace NEW_STYLE_FS with fsIsNative.
2464         Hide toolbar if not enabled (Bug#13444).
2465         (windowDidExitFullScreen:): Call updateCollectionBehaviour.
2466         Restore tool bar if enabled, hide it otherwise (Bug#13444).
2467         (fsIsNative, isFullscreen, updateCollectionBehaviour): New methods.
2468         (toggleFullScreen:): If fs_is_native, call toggleFullScreen on
2469         window.  Do no set FRAME_EXTERNAL_TOOL_BAR (f) to 0.
2470         Check FRAME_EXTERNAL_TOOL_BAR (f) before restoring
2471         FRAME_TOOLBAR_HEIGHT (f).  Call updateFrameSize when going non-fs.
2472         (syms_of_nsterm): Add ns-use-native-fullscreen.
2474 2013-02-04  Paul Eggert  <eggert@cs.ucla.edu>
2476         * fileio.c (Qchoose_write_coding_system): Now static.
2478 2013-02-04  Eli Zaretskii  <eliz@gnu.org>
2480         * xdisp.c (window_buffer_changed): region_showing can be negative,
2481         which still means region is being displayed.
2482         (redisplay_internal): Resurrect code that forced redisplay of the
2483         whole window when showing region and the mark has changed.
2484         Record the new mark position to allow redisplay optimizations.
2485         (display_line): If it->region_beg_charpos is non-zero, set the
2486         window's region_showing member to -1.  (Bug#13623)  (Bug#13626)
2488         * window.h (struct window) <region_showing>: Declare ptrdiff_t,
2489         not bitfield of 1 bit.
2491 2013-02-03  Daniel Colascione  <dancol@dancol.org>
2493         * emacs.c: Use execvp, not execv, when DAEMON_MUST_EXEC, so that
2494         daemon mode works on cygw32 when Emacs is installed and not just
2495         during development.
2497 2013-02-02  Paul Eggert  <eggert@cs.ucla.edu>
2499         Avoid file time stamp bug on MS-Windows (Bug#13149).
2500         * fileio.c (Fwrite_region): Don't use the heuristic on empty files,
2501         as FAT32 doesn't update time stamps when truncating them.
2502         Also, check that a file time stamp is not a multiple of 100 ns;
2503         this should catch all instances of the problem on MS-Windows,
2504         as its native file system resolution is 100 ns or worse, and
2505         checking for a non-multiple of 100 ns should impose only a small
2506         overhead on systems with ns resolution.
2508 2013-02-02  Eli Zaretskii  <eliz@gnu.org>
2510         Avoid encoding file names on MS-Windows when they need to be run
2511         through dostounix_filename.
2512         * w32.c (normalize_filename): Accept an additional argument
2513         MULTIBYTE; if non-zero, traverse the file name by bytes and don't
2514         downcase it even if w32-downcase-file-names is non-nil.
2515         (dostounix_filename): Accept an additional argument MULTIBYTE and
2516         pass it to normalize_filename.
2517         (emacs_root_dir): Adjust.
2519         * msdos.h (dostounix_filename): Adjust prototype.
2521         * w32.h (dostounix_filename): Adjust prototype.
2523         * msdos.c (dostounix_filename): Accept an additional argument and
2524         ignore it.
2525         (init_environment): Adjust callers of dostounix_filename.
2527         * fileio.c (Ffile_name_directory, file_name_as_directory)
2528         (directory_file_name, Fexpand_file_name)
2529         (Fsubstitute_in_file_name): [DOS_NT] Adjust call to
2530         dostounix_filename.
2531         [WINDOWSNT]: Downcase file names if w32-downcase-file-names is
2532         non-nil.
2533         (Fsubstitute_in_file_name): [DOS_NT] Don't downcase environment
2534         variables, as egetenv is case-insensitive for DOS_NT.
2536         * dired.c (file_name_completion): Don't call Fdirectory_file_name
2537         with an encoded file name.
2539         * w32proc.c (Fw32_short_file_name, Fw32_long_file_name):
2540         Adjust calls to dostounix_filename.
2542         * w32fns.c (Fx_file_dialog): Adjust call to dostounix_filename.
2544         * unexw32.c (unexec): Adjust call to dostounix_filename.
2546         * termcap.c (tgetent) [MSDOS]: Adjust call to dostounix_filename.
2548         * emacs.c (decode_env_path) [DOS_NT]: Adjust call to
2549         dostounix_filename.
2551         * callproc.c (Fcall_process) [MSDOS]: Adjust call to
2552         dostounix_filename.
2554         * callproc.c (Fcall_process): Make sure program name in PATH and
2555         new_argv[0] is encoded, if needed.  Otherwise, un-encoded string
2556         is passed to exec/spawnve, which fails unless the file-name
2557         encoding is UTF-8.
2559         * w32proc.c (sys_spawnve): Make sure escape_char is initialized,
2560         even if w32-quote-process-args is nil.
2562 2013-02-01  Paul Eggert  <eggert@cs.ucla.edu>
2564         Fix timestamp bug when write-region appends nothing (Bug#13149).
2565         * fileio.c (Fwrite_region): When neither O_EXCL nor O_TRUNC is used,
2566         the file's time stamp doesn't change if Emacs happens to write nothing
2567         to the file, and on a buggy file system this could cause Emacs to
2568         incorrectly infer that the file system doesn't have the bug.
2569         Avoid this problem by inhibiting the inference in this case.
2571 2013-02-01  Dmitry Antipov  <dmantipov@yandex.ru>
2573         * window.h (struct window): Convert base_line_number, base_line_pos
2574         and column_number_displayed members from Lisp_Object to ptrdiff_t.
2575         Convert region_showing member from Lisp_Object to bitfield.
2576         Remove sequence_number member.  Adjust comments.
2577         * window.c (sequence_number): Remove.
2578         (make_window): Initialize column_number_displayed.
2579         * print.c (print_object): Follow the printed representation of
2580         frames and print window pointer to distinguish between windows.
2581         (adjust_window_count): Invalidate base_line_pos.  Adjust comment.
2582         * xdisp.c (wset_base_line_number, wset_base_line_pos)
2583         (wset_column_number_displayed, wset_region_showing): Remove.
2584         (window_buffer_changed, mode_line_update_needed, redisplay_internal)
2585         (try_scrolling, try_cursor_movement, redisplay_window)
2586         (try_window_reusing_current_matrix, try_window_id, display_line)
2587         (display_mode_lines, decode_mode_spec): Adjust users.
2588         * .gdbinit (pwinx): Do not print sequence_number.
2590 2013-02-01  Paul Eggert  <eggert@cs.ucla.edu>
2592         Use fdopendir, fstatat and readlinkat, for efficiency (Bug#13539).
2593         * conf_post.h (GNULIB_SUPPORT_ONLY_AT_FDCWD): Remove.
2594         * dired.c: Include <fcntl.h>.
2595         (open_directory): New function, which uses open and fdopendir
2596         rather than opendir.  DOS_NT platforms still use opendir, though.
2597         (directory_files_internal, file_name_completion): Use it.
2598         (file_attributes): New function, with most of the old Ffile_attributes.
2599         (directory_files_internal, Ffile_attributes): Use it.
2600         (file_attributes, file_name_completion_stat): First arg is now fd,
2601         not dir name.  All uses changed.  Use fstatat rather than lstat +
2602         stat.
2603         (file_attributes): Use emacs_readlinkat rather than Ffile_symlink_p.
2604         * fileio.c: Include <allocator.h>, <careadlinkat.h>.
2605         (emacs_readlinkat): New function, with much of the old
2606         Ffile_symlink_p, but with an fd argument for speed.
2607         It uses readlinkat rather than careadlinkatcwd, so that it
2608         need not assume the working directory.
2609         (Ffile_symlink_p): Use it.
2610         * filelock.c (current_lock_owner): Use emacs_readlinkat
2611         rather than emacs_readlink.
2612         * lisp.h (emacs_readlinkat): New decl.
2613         (READLINK_BUFSIZE, emacs_readlink): Remove.
2614         * sysdep.c: Do not include <allocator.h>, <careadlinkat.h>.
2615         (emacs_norealloc_allocator, emacs_readlink): Remove.
2616         This stuff is moved to fileio.c.
2617         * w32.c (fstatat, readlinkat): New functions.
2618         (careadlinkat): Don't check that fd == AT_FDCWD.
2619         (careadlinkatcwd): Remove; no longer needed.
2621 2013-01-31  Glenn Morris  <rgm@gnu.org>
2623         * fileio.c (choose_write_coding_system): Make it callable from Lisp.
2624         (Fwrite_region): Update for new choose_write_coding_system args.
2625         Move the last piece of choose_write_coding_system here.  (Bug#13522)
2626         (syms_of_fileio): Add choose-write-coding-system.
2628 2013-01-30  Eli Zaretskii  <eliz@gnu.org>
2630         * w32.c (sys_open): Zero out the flags for the new file descriptor.
2631         (sys_close): Zero out the flags for the file descriptor before
2632         closing it.  (Bug#13546)
2634         * w32.c (parse_root, get_volume_info, readdir, read_unc_volume)
2635         (logon_network_drive, stat_worker, symlink, chase_symlinks):
2636         Use CharNextExA and CharPrevExA to iterate over file names encoded in
2637         DBCS.  (Bug#13553)
2639         * w32.c (w32_get_long_filename, init_environment, readlink):
2640         Support file names encoded in DBCS codepages.
2641         (readlink): Use the current file-name-coding-system, not the ANSI
2642         codepage, to decode and handle targets of symlinks.
2644 2013-01-28  Eli Zaretskii  <eliz@gnu.org>
2646         * w32.c (opendir): Now accepts a 'const char *'.
2648 2013-01-28  Dmitry Antipov  <dmantipov@yandex.ru>
2650         Remove obsolete redisplay code.  See the discussion at
2651         http://lists.gnu.org/archive/html/emacs-devel/2013-01/msg00576.html.
2652         * dispnew.c (preemption_period, preemption_next_check): Remove.
2653         (Vredisplay_preemption_period): Likewise.
2654         (update_frame, update_single_window, update_window, update_frame_1):
2655         Adjust users.  Always assume that PERIODIC_PREEMPTION_CHECKING is not
2656         used, following the 2012-06-22 change.
2658 2013-01-25  Eli Zaretskii  <eliz@gnu.org>
2660         * w32notify.c (Fw32notify_add_watch): Doc fix.  (Bug#13540)
2662 2013-01-25  Dmitry Antipov  <dmantipov@yandex.ru>
2664         * font.c (num_fonts): Remove the leftover from old
2665         debugging code.  Adjust comment style here and there.
2666         * insdel.c (insert_1): Remove.
2667         * lisp.h (insert_1): Remove prototype.
2668         * xdisp.c (message_dolog): Adjust users to call insert_1_both.
2670 2013-01-25  Eli Zaretskii  <eliz@gnu.org>
2672         * w32.c (max_filename_mbslen): New function.
2673         (normalize_filename, readdir): Use it to detect locales where ANSI
2674         encoding of file names uses a double-byte character set (DBCS).
2675         If a DBCS encoding is used, advance by characters using
2676         CharNextExA, instead of incrementing a 'char *' pointer.
2677         Use _mbslwr instead of _strlwr.  (Bug#13515)
2679         * w32heap.c (allocate_heap) [!_WIN64]: Decrease the initial
2680         request of memory reservation to 1.7GB.  (Bug#13065)
2682 2013-01-25  Andreas Schwab  <schwab@linux-m68k.org>
2684         * coding.c (detect_coding_iso_2022): Move back mis-reordered code
2685         at check_extra_latin label.  (Bug#13505)
2687 2013-01-24  Dmitry Antipov  <dmantipov@yandex.ru>
2689         * nsfont.m (ns_escape_name, ns_unescape_name, ns_registry_to_script):
2690         Avoid redundant calls to strlen.
2692 2013-01-24  Dmitry Antipov  <dmantipov@yandex.ru>
2694         Drop async_visible and async_iconified fields of struct frame.
2695         This is possible because async input is gone; for details, see
2696         http://lists.gnu.org/archive/html/emacs-devel/2012-12/msg00734.html.
2697         * frame.h (struct frame): Remove async_visible and async_iconified
2698         members, convert garbaged to unsigned bitfield.  Adjust comments.
2699         (FRAME_SAMPLE_VISIBILITY): Remove.  Adjust all users.
2700         (SET_FRAME_VISIBLE, SET_FRAME_ICONIFIED): New macros.
2701         * frame.c, gtkutil.c, term.c, w32fns.c, window.c, xdisp.c:
2702         Consistently use SET_FRAME_VISIBLE, SET_FRAME_ICONIFIED,
2703         FRAME_VISIBLE_P and FRAME_ICONIFIED_P macros where appropriate.
2704         * w32term.c: Ditto.
2705         (w32_read_socket): Save iconified state to generate DEICONIFY_EVENT
2706         properly.  Likewise for obscured.
2707         * xterm.c: Ditto.
2708         (handle_one_xevent): Save visible state to generate ICONIFY_EVENT
2709         properly.
2710         * nsterm.m: Ditto.
2711         (windowDidDeminiaturize): Generate DEICONIFY_EVENT.
2713 2013-01-24  Dmitry Antipov  <dmantipov@yandex.ru>
2715         * insdel.c (prepare_to_modify_buffer): Revert last change as suggested
2716         in http://lists.gnu.org/archive/html/emacs-devel/2013-01/msg00555.html.
2718 2013-01-23  Stefan Monnier  <monnier@iro.umontreal.ca>
2720         * xdisp.c (message2, message2_nolog): Remove functions.
2721         (message3, message3_nolog): Extract nbytes and multibyteness directly
2722         from the string.  Change all callers.
2723         (message3_nolog): Don't set message_enable_multibyte since set_message
2724         will reset it anyway.
2725         (message1, message1_nolog): Use message3.
2726         (vmessage): Use a stack allocated buffer rather than f->message_buf.
2727         (with_echo_area_buffer): Remove last two arguments.  Update all callers.
2728         (set_message): Drop all but the second arg, which has to be a string.
2729         (set_message_1): Simplify now that we know that a1 is NULL and the
2730         second arg is a string.
2731         * frame.h (struct frame): Remove `message_buf' field.
2732         Use glyphs_initialized_p instead.
2733         (FRAME_MESSAGE_BUF): Remove macro.
2734         * w16select.c (Fw16_set_clipboard_data): Prefer message3 to message2.
2735         * lisp.h (message2, message2_nolog): Remove declarations.
2736         (message3, message3_nolog): Update declarations.
2737         * keyboard.c (read_char_minibuf_menu_text)
2738         (read_char_minibuf_menu_width): Remove vars.
2739         (read_char_minibuf_menu_prompt): Rewrite the menu's construction so as
2740         to correctly handle multibyte strings.
2741         * frame.c (delete_frame): Don't free message_buf any more.
2742         * editfns.c (message_text, message_length): Remove vars.
2743         (Fmessage_box): Don't copy the Lisp string's bytes any longer.
2744         * fileio.c (auto_save_error): Use message3 instead of message2.
2745         * dispnew.c (adjust_frame_message_buffer): Remove function.
2747 2013-01-23  Eli Zaretskii  <eliz@gnu.org>
2749         * w32term.c (w32fullscreen_hook): Account correctly for the screen
2750         real estate used for the tool bar and the menu bar.
2752 2013-01-23  Dmitry Antipov  <dmantipov@yandex.ru>
2754         * insdel.c (prepare_to_modify_buffer): Force redisplay if
2755         hidden buffer is prepared to modification (Bug#13164).
2757 2013-01-22  Dmitry Antipov  <dmantipov@yandex.ru>
2759         * window.h (struct window): Change window_end_valid member from
2760         Lisp_Object to a bitfield.  Adjust comments.
2761         (wset_window_end_valid): Remove.
2762         * window.c (adjust_window_count): Clear window_end_valid.
2763         (Fwindow_end): Adjust user.  Remove ancient #if 0 code.
2764         (Fwindow_line_height, set_window_buffer, Frecenter)
2765         (Fsplit_window_internal, Fdelete_other_windows_internal)
2766         (Fset_window_fringes, Fset_window_scroll_bars): Adjust users.
2767         * dispnew.c (adjust_glyph_matrix, clear_window_matrices): Likewise.
2768         * xdisp.c (check_window_end, reconsider_clip_changes)
2769         (redisplay_internal, mark_window_display_accurate_1, redisplay_window)
2770         (try_window, try_window_reusing_current_matrix, note_mouse_highlight)
2771         (find_first_unchanged_at_end_row, try_window_id): Likewise.
2773 2013-01-22  Dmitry Antipov  <dmantipov@yandex.ru>
2775         * xdisp.c (mark_window_display_accurate): Simplify the loop
2776         assuming that the only one of vchild, hchild or buffer window
2777         slots is non-nil.  Call mark_window_display_accurate_1 for
2778         the leaf windows only.
2779         (mark_window_display_accurate_1): Always assume leaf window.
2780         Adjust comment.
2782 2013-01-22  Paul Eggert  <eggert@cs.ucla.edu>
2784         * emacs.c (Qkill_emacs_hook): Now static.
2786         * fileio.c (Finsert_file_contents): Simplify.
2787         Remove unnecessary assignments and tests.
2789 2013-01-21  Eli Zaretskii  <eliz@gnu.org>
2791         * w32.c (acl_set_file): Don't test for errors unless
2792         set_file_security returns FALSE.  Avoids spurious errors when
2793         saving files.
2795 2013-01-21  Dmitry Antipov  <dmantipov@yandex.ru>
2797         * fileio.c (Finsert_file_contents): Revert code introduced at
2798         2013-01-18 in favor of the simpler and generally better fix.
2799         Save stack space by removing 'buffer' and reusing 'read_buf'
2800         where appropriate.
2802 2013-01-19  Paul Eggert  <eggert@cs.ucla.edu>
2804         * lisp.h (eabs): Define unconditionally (Bug#13419).
2805         The old "#if !defined (eabs)" was an unnecessary revenant of back
2806         when this macro was called "abs".  Document 'eabs' better.
2808 2013-01-19  Glenn Morris  <rgm@gnu.org>
2810         * fns.c (Frandom): Doc fix.
2812 2013-01-19  Eli Zaretskii  <eliz@gnu.org>
2814         * editfns.c (get_pos_property): Use SAFE_ALLOCA_LISP, to avoid
2815         segfault when there are lots of overlays.
2817         * buffer.c (sort_overlays): Use SAFE_NALLOCA, to avoid segfault
2818         when there are lots of overlays.
2819         See http://lists.gnu.org/archive/html/emacs-devel/2013-01/msg00421.html
2820         for the details and a way to reproduce.
2822 2013-01-19  Paul Eggert  <eggert@cs.ucla.edu>
2824         * fileio.c: Use O_APPEND to append.
2825         This corresponds better to the natural interpretation of "append",
2826         and avoids the need to open the output file twice, or to invoke
2827         lseek when APPEND is neither nil nor a number.
2828         This relies on POSIX 1003.1-1988 or later, which is OK nowadays.
2829         (Fwrite_region): Simplify.  Use O_APPEND instead of opening the
2830         file possibly twice, and lseeking to its end; this avoids the
2831         need to lseek on non-regular files.  Do not use O_EXCL and O_TRUNC
2832         at the same time: the combination is never needed and apparently
2833         it doesn't work with DOS_NT.
2835         Fix size bug on DOS_NT introduced by CIFS workaround (Bug#13149).
2836         * fileio.c (Fwrite_region): Use O_BINARY in checking code, too.
2838         Allow floating-point file offsets.
2839         Problem reported by Vitalie Spinu in
2840         <http://lists.gnu.org/archive/html/emacs-devel/2013-01/msg00411.html>.
2841         * fileio.c (emacs_lseek): Remove.
2842         (file_offset): New function.
2843         (Finsert_file_contents, Fwrite_region): Use it.
2845 2013-01-19  Chong Yidong  <cyd@gnu.org>
2847         * emacs.c (Fkill_emacs): Set waiting_for_input to 0 to avoid
2848         aborting on Fsignal (Bug#13289).
2850 2013-01-19  Eli Zaretskii  <eliz@gnu.org>
2852         * w32.c (acl_set_file): Treat ERROR_ACCESS_DENIED from
2853         set_file_security as failure due to insufficient privileges.
2854         Reported by Fabrice Popineau <fabrice.popineau@supelec.fr>.
2855         (fstat): Return owner and group like 'stat' and 'lstat' do.
2857 2013-01-19  Paul Eggert  <eggert@cs.ucla.edu>
2859         Work around bug in CIFS and vboxsf file systems (Bug#13149).
2860         The bug was observed on Ubuntu operating inside a virtual machine,
2861         editing files mounted via CIFS or vboxsf from the MS Windows 7 host.
2862         The workaround introduces a race condition on non-buggy hosts,
2863         but it's an unlikely race and anyway there's a nearly identical
2864         nearby race that can't be fixed.
2865         * fileio.c (valid_timestamp_file_system, timestamp_file_system):
2866         New static vars.
2867         (Fwrite_region): Test for file system time stamp bug.
2868         (init_fileio): New function.
2869         * lisp.h (init_fileio): Declare it.
2870         * emacs.c (main): Call it.
2872         * fileio.c (Finsert_file_contents): Simplify new diagnostic
2873         and make it more consistent with other stat-failure diagnostics.
2875 2013-01-18  Dmitry Antipov  <dmantipov@yandex.ru>
2877         Fix crash when inserting data from non-regular files.
2878         See http://lists.gnu.org/archive/html/emacs-devel/2013-01/msg00406.html
2879         for the error description produced by valgrind.
2880         * fileio.c (read_non_regular): Rename to read_contents.
2881         Free Lisp_Save_Value object used to pass parameters.
2882         (read_non_regular_quit): Rename to read_contents_quit.
2883         (Finsert_file_contents): Redesign internal file reading loop to adjust
2884         gap and end positions after each read and so help make_gap to work
2885         properly.  Do not signal an I/O error too early and so do not leave
2886         not yet decoded characters in a buffer, which was the reason of
2887         redisplay crash.  Use list2 to build return value.  Adjust comments.
2889 2013-01-17  Paul Eggert  <eggert@cs.ucla.edu>
2891         Close a race when statting and reading files (Bug#13149).
2892         * fileio.c (Finsert_file_contents): Use open+fstat, not stat+open.
2893         This avoids a race if the file is renamed between stat and open.
2894         This race is not the problem originally noted in Bug#13149;
2895         see <http://bugs.gnu.org/13149#73> and later messages in the thread.
2897 2013-01-17  Dmitry Antipov  <dmantipov@yandex.ru>
2899         * lisp.h (toplevel): Add comment about using Lisp_Save_Value
2900         objects, related functions and macros.
2901         (make_save_value): Adjust prototype.
2902         (make_save_pointer): New prototype.
2903         (SAFE_NALLOCA): Fix indentation.  Use make_save_pointer.
2904         (SAFE_ALLOCA_LISP): Adjust make_save_value usage.
2905         * alloc.c (format_save_value): Rename to make_save_value.
2906         (make_save_pointer): New function.
2907         (record_xmalloc): Use make_save_pointer.
2908         * dired.c, editfns.c, fileio.c, font.c, gtkutil.c, lread.c:
2909         * nsmenu.m, nsterm.m, xfns.c, xmenu.c, xselect.c, keymap.c:
2910         Change users of make_save_value to make_save_pointer.
2911         Likewise for format_save_value and make_save_value.
2913 2013-01-17  Dmitry Antipov  <dmantipov@yandex.ru>
2915         * buffer.h (NARROWED, BUF_NARROWED): Drop unused macros.
2916         (DECODE_POSITION, BUFFER_CHECK_INDIRECTION): Fix indentation.
2917         * buffer.c (toplevel, syms_of_buffer): Drop old commented-out
2918         debugging stubs.
2920 2013-01-15  Paul Eggert  <eggert@cs.ucla.edu>
2922         * alloc.c (free_save_value): Now static.
2924 2013-01-15  Dmitry Antipov  <dmantipov@yandex.ru>
2926         * keymap.c (map_keymap_internal): Use format_save_value.
2927         (map_keymap_char_table_item): Adjust accordingly.
2928         * fileio.c (non_regular_fd, non_regular_inserted)
2929         (non_regular_nbytes): Remove.
2930         (Finsert_file_contents): Convert trytry to ptrdiff_t.
2931         Use format_save_value to pass parameters to read_non_regular.
2932         (read_non_regular): Use XSAVE_ macros to extract parameters.
2933         Adjust comment.
2934         * xmenu.c (xmenu_show) [!USE_X_TOOLKIT && !USE_GTK]: Use
2935         format_save_value.
2936         (pop_down_menu) [!USE_X_TOOLKIT && !USE_GTK]: Adjust user.
2938 2013-01-15  Dmitry Antipov  <dmantipov@yandex.ru>
2940         * lisp.h (XSAVE_POINTER, XSAVE_INTEGER): Change to allow
2941         extraction from any Lisp_Save_Value slot.  Add type checking.
2942         * alloc.c, dired.c, editfns.c, fileio.c, ftfont.c, gtkutil.c:
2943         * keymap.c, lread.c, nsterm.h, nsmenu.c, xfns.c, xmenu.c:
2944         * xselect.c: All users changed.
2946 2013-01-15  Dmitry Antipov  <dmantipov@yandex.ru>
2948         Some convenient bits to deal with Lisp_Save_Values.
2949         * lisp.h (XSAVE_OBJECT): New macro to extract saved objects.
2950         (allocate_misc): Remove prototype.
2951         (format_save_value): New prototype.
2952         * alloc.c (allocate_misc): Revert back to static.
2953         (format_save_value): New function to build Lisp_Save_Value
2954         object with the specified internal structure.
2955         (make_save_value): Reimplement using format_save_value.
2956         * editfns.c (save_excursion_save): Use format_save_value.
2957         (save_excursion_restore): Use XSAVE_OBJECT.
2959 2013-01-14  Paul Eggert  <eggert@cs.ucla.edu>
2961         Avoid needless casts with XSAVE_POINTER.
2962         * alloc.c (mark_object) [GC_MARK_STACK]:
2963         * dired.c (directory_files_internal_unwind):
2964         * fileio.c (do_auto_save_unwind):
2965         * gtkutil.c (pop_down_dialog):
2966         * keymap.c (map_keymap_char_table_item):
2967         * lread.c (load_unwind):
2968         * nsmenu.m (pop_down_menu):
2969         * print.c (print_object) [GC_MARK_STACK]:
2970         * xfns.c (clean_up_file_dialog):
2971         * xmenu.c (cleanup_widget_value_tree):
2972         Omit casts between XSAVE_POINTER and a pointer type.
2974 2013-01-14  Dmitry Antipov  <dmantipov@yandex.ru>
2976         Fix compilation with GC_MARK_STACK == GC_USE_GCPROS_AS_BEFORE.
2977         * eval.c (eval_sub): Protect `form' from being GCed before its
2978         car and cdr becomes protected with the backtrace entry.
2980 2013-01-14  Dmitry Antipov  <dmantipov@yandex.ru>
2982         Make Lisp_Save_Value more versatile storage for up to four objects.
2983         * lisp.h (toplevel): Enumeration to describe types of saved objects.
2984         (struct Lisp_Save_Value): New layout.  Adjust comments.
2985         (XSAVE_POINTER): New macro.
2986         (XSAVE_INTEGER): Likewise.
2987         (allocate_misc): Add prototype.
2988         (free_misc): Likewise.
2989         * alloc.c (allocate_misc): Now global.
2990         (free_misc): Likewise.  Adjust comment.
2991         (make_save_value): Use new Lisp_Save_Value layout.  Adjust comment.
2992         (free_save_value): Likewise.
2993         (mark_object): Likewise.
2994         * editfns.c (save_excursion_save): Pack everything within
2995         Lisp_Save_Value and so avoid xmalloc.
2996         (save_excursion_restore): Adjust to match new layout.  Use free_misc
2997         because we do not allocate extra memory any more.  Add eassert.
2998         * print.c (print_object): New code to print Lisp_Save_Value.  Do not
2999         rely on valid_lisp_object_p if !GC_MARK_STACK.  Adjust comments.
3000         * dired.c, fileio.c, font.c, ftfont.c, gtkutil.c, keymap.c,
3001         * lread.c, nsmenu.m, nsterm.h, xfns.c, xmenu.c, xselect.c:
3002         Use XSAVE_POINTER and XSAVE_INTEGER where appropriate.
3004 2013-01-13  Jan Djärv  <jan.h.d@swipnet.se>
3006         * nsfont.m (LCD_SMOOTHING_MARGIN): New define.
3007         (nsfont_draw): Remove disabling of LCD smoothing.
3008         (ns_glyph_metrics): Add LCD_SMOOTHING_MARGIN to bearings to fix
3009         Bug#11484 with LCD smoothing on.
3011 2013-01-13  Paul Eggert  <eggert@cs.ucla.edu>
3013         Fix SIGDANGER handlers, for AIX (Bug#13408).
3014         * sysdep.c.c (handle_danger_signal, deliver_danger_signal) [SIGDANGER]:
3015         Move handlers here from emacs.c; they were out of place.
3017 2013-01-11  Jan Djärv  <jan.h.d@swipnet.se>
3019         * xterm.c (syms_of_xterm): Adjust documentation for
3020         scroll-bar-adjust-thumb-portion.
3022 2012-12-31  Adam Sjøgren  <asjo@koldfront.dk>  (tiny change)
3024         * xterm.c (scroll-bar-adjust-thumb-portion): New variable to
3025         determine whether scroll bar thumb size should be adjusted or
3026         not. Use variable for MOTIF.
3028         * gtkutil.c (scroll-bar-adjust-thumb-portion): Use variable for
3029         GTK.
3031 2013-01-13  Jan Djärv  <jan.h.d@swipnet.se>
3033         * nsterm.m (keyDown:): Set processingCompose to NO if an emacs key
3034         event is generated.
3035         (doCommandBySelector:): Set processingCompose to NO.
3037         * nsfont.m (ns_findfonts): Add block/unblock_input calls.
3038         Remove check for fkeys count > zero, block/unblock fixes the real bug.
3039         (nsfont_list_family): Add block/unblock_input calls.
3040         (nsfont_open): Move block_input earlier.  Add unblock_input before early
3041         return.
3042         (nsfont_draw): Add block/unblock_input calls.
3044 2013-01-12  Dmitry Antipov  <dmantipov@yandex.ru>
3046         * indent.c (Fvertical_motion): Remove now-incorrect GCPROs
3047         for old_charpos and old_bytepos.
3049 2013-01-12  Paul Eggert  <eggert@cs.ucla.edu>
3051         Fix bug with set-time-zone-rule and LOCALTIME_CACHE (Bug#13415).
3052         * editfns.c (set_time_zone_rule) [LOCALTIME_CACHE]:
3053         Clear tzvalbuf_in_environ if this workaround is in effect.
3054         Problem and fix reported by Kazuhiro Ito.
3056 2013-01-11  Aaron S. Hawley  <Aaron.Hawley@vtinfo.com>
3058         * insdel.c (Fcombine_after_change_execute, syms_of_insdel):
3059         Fix ambiguous doc string cross-reference(s).
3061         * keyboard.c (Fcommand_execute, syms_of_keyboard): Fix ambiguous
3062          doc string cross-reference(s).
3064         * window.c (Fwindow_point, syms_of_window): Fix ambiguous doc
3065          string cross-reference(s).
3067 2013-01-11  Dmitry Antipov  <dmantipov@yandex.ru>
3069         Avoid unnecessary byte position calculation for the gap movement.
3070         Since all users of move_gap do CHAR_TO_BYTE for other purposes
3071         anyway, all of them should use move_gap_both instead.
3072         * lisp.h (move_gap): Remove prototype.
3073         * insdel.c (move_gap): Remove.
3074         (move_gap_both): Add eassert.
3075         * editfns.c (Ftranspose_regions): Tweak to use move_gap_both.
3076         * xml.c (parse_region): Likewise.
3078 2013-01-11  Paul Eggert  <eggert@cs.ucla.edu>
3080         emacsclient -t should not suspend Emacs server (Bug#13387)
3081         * lisp.h, sysdep.c (block_tty_out_signal, unblock_tty_out_signal):
3082         New functions.
3083         * term.c (init_tty): Use them instead of rolling our own code.
3084         * sysdep.c (tcsetpgrp_without_stopping): Likewise.  Here, this
3085         switches from 'signal' to 'pthread_sigmask', which is safer in
3086         multithreaded applications.
3087         * term.c (Fresume_tty): Don't bother dissociating if O_IGNORE_CTTY,
3088         which has already arranged for that.
3089         (dissociate_if_controlling_tty): If setsid fails, fall back on TIOCNOTTY.
3090         This is the main part of the bug fix.
3092 2013-01-10  Rainer Orth  <ro@CeBiTec.Uni-Bielefeld.DE>  (tiny change)
3094         * gtkutil.c (xg_initialize): Add ifdef HAVE_FREETYPE around
3095         x_last_font_name (Bug#13403).
3097 2013-01-10  Dmitry Antipov  <dmantipov@yandex.ru>
3099         Omit buffer_slot_type_mismatch and use generic predicates to enforce
3100         the type of per-buffer values where appropriate.
3101         * lisp.h (struct Lisp_Buffer_Objfwd): Rename slottype member to
3102         predicate, which is how it's really used now.  Adjust comment.
3103         * buffer.h (buffer_slot_type_mismatch): Remove prototype.
3104         * buffer.c (buffer_slot_type_mismatch): Remove.
3105         (DEFVAR_PER_BUFFER, defvar_per_buffer): Rename type argument to
3106         predicate.  Adjust comment.
3107         (syms_of_buffer): Use Qsymbolp for major-mode.  Use Qintegerp for
3108         fill-column, left-margin, tab-width, buffer-saved-size,
3109         left-margin-width, right-margin-width, left-fringe-width,
3110         right-fringe-width, scroll-bar-width and buffer-display-count.
3111         Use Qstringp for default-directory, buffer-file-name,
3112         buffer-file-truename and buffer-auto-save-file-name.  Use Qfloatp for
3113         scroll-up-aggressively and scroll-down-aggressively.  Use Qnumberp for
3114         line-spacing.
3115         * data.c (store_symval_forwarding): Adjust to call the predicate.
3117 2013-01-09  Juanma Barranquero  <lekktu@gmail.com>
3119         * w32.c (get_name_and_id, acl_set_file):
3120         * w32term.c (w32fullscreen_hook): Remove unused local variables.
3122 2013-01-09  Dmitry Antipov  <dmantipov@yandex.ru>
3124         * lisp.h (make_gap_1): New prototype.
3125         * buffer.h (GAP_BYTES_DFL, GAP_BYTES_MIN): New macros for the special
3126         gap size values.
3127         * editfns.c (Fbuffer_size): Rename from Fbufsize to fit the common
3128         naming convention.
3129         (syms_of_editfns): Adjust defsubr.  Drop commented-out obsolete code.
3130         * insdel.c (make_gap_larger): Use GAP_BYTES_DFL.  Adjust comment.
3131         (make_gap_smaller): Use GAP_BYTES_MIN.  Adjust comment.
3132         (make_gap_1): New function to adjust the gap of any buffer.
3133         * coding.c (coding_alloc_by_making_gap): Use it.
3134         * buffer.c (compact_buffer): Likewise.  Use BUF_Z_BYTE, BUF_GAP_SIZE,
3135         GAP_BYTES_DFL and GAP_BYTES_MIN.  Adjust comment.
3137 2013-01-08  Juri Linkov  <juri@jurta.org>
3139         * xfaces.c (tty_supports_face_attributes_p): Return 0 for the case
3140         of (supports :underline (:style wave)).  (Bug#13000)
3142 2013-01-08  Aaron S. Hawley  <aaron.s.hawley@gmail.com>
3144         * undo.c (Fprimitive_undo): Move to simple.el.
3145         (syms_of_undo): Remove declarations for Sprimitive_undo.
3147 2013-01-08  Stefan Monnier  <monnier@iro.umontreal.ca>
3149         * keyboard.c (echo_add_key): Rename from echo_add_char.
3151 2013-01-06  Chong Yidong  <cyd@gnu.org>
3153         * keyboard.c (echo_add_char): New function, factored out from
3154         echo_char.  Don't add a space if the previous echo string was
3155         empty (Bug#13255).
3156         (echo_char): Use it.
3157         (read_key_sequence): When echoing mock input, ensure that the
3158         trailing dash is properly added.
3160 2013-01-05  Eli Zaretskii  <eliz@gnu.org>
3162         * xdisp.c (dump_glyph): Align glyph data better.  Use "pD" instead
3163         of a non-portable "t" to print ptrdiff_t values.  Allow up to 9
3164         digits for buffer positions, before misalignment starts.
3165         Display "0" for integer "object" field.
3166         (dump_glyph_row): Adapt the header line to changes in dump_glyph.
3167         Display the newline glyph more unambiguously.
3169 2013-01-04  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
3171         * nsterm.m (ns_draw_underwave):
3172         * w32term.c (w32_draw_underwave):
3173         * xterm.c (x_draw_underwave): Make underwave look more triangular
3174         and also degrade gracefully for small fonts.  (Bug#13000)
3176         * nsterm.m (ns_draw_text_decoration):
3177         * w32term.c (x_draw_glyph_string):
3178         * xterm.c (x_draw_glyph_string): Don't use previous underline
3179         thickness and position if previous underline type is underwave.
3181 2013-01-04  Stefan Monnier  <monnier@iro.umontreal.ca>
3183         * fileio.c (Ffile_acl): Undocument return format.
3185 2013-01-02  Glenn Morris  <rgm@gnu.org>
3187         * keymap.c (Fkey_description): Doc fix.  (Bug#13323)
3189 2013-01-02  Paul Eggert  <eggert@cs.ucla.edu>
3191         Simplify via eabs.
3192         * dired.c (file_name_completion):
3193         * doc.c (get_doc_string):
3194         * floatfns.c (round2):
3195         * font.c (font_score, font_delete_unmatched):
3196         * fringe.c (compute_fringe_widths):
3197         * lread.c (read_list):
3198         * minibuf.c (Ftry_completion):
3199         * term.c (tty_ins_del_lines):
3200         * xterm.c (x_draw_image_foreground, x_draw_image_foreground_1):
3201         Use eabs (x) rather than open-coding it as (x < 0 ? -x : x).
3203 2012-12-31  Eli Zaretskii  <eliz@gnu.org>
3205         * w32.c (unsetenv): Set up the string passed to _putenv
3206         correctly.
3207         See http://lists.gnu.org/archive/html/emacs-devel/2012-12/msg00863.html
3208         for the bug this caused.
3210 2012-12-30  Paul Eggert  <eggert@cs.ucla.edu>
3212         * coding.c (Qmac): Now static.
3214 2012-12-30  Jan Djärv  <jan.h.d@swipnet.se>
3216         * gtkutil.c (TOOLBAR_TOP_WIDGET): New macro.
3217         (xg_pack_tool_bar): Use TOOLBAR_TOP_WIDGET, condition out use of
3218         handlebox_widget.  Set toolbar_in_hbox to false/true, set
3219         toolbar_is_packed to true.
3220         (xg_update_tool_bar_sizes): Use widget returned by TOOLBAR_TOP_WIDGET.
3221         (update_frame_tool_bar): Check toolbar_is_packed for packing.
3222         Show all on TOOLBAR_TOP_WIDGET.
3223         (free_frame_tool_bar): Check toolbar_is_packed.  Use widget returned
3224         by TOOLBAR_TOP_WIDGET.
3225         (xg_change_toolbar_position): Use widget returned by TOOLBAR_TOP_WIDGET.
3226         Check toolbar_is_packed.
3227         (xg_have_tear_offs, tearoff_remove, tearoff_activate): Condition on
3228         HAVE_GTK_TEAROFF_MENU_ITEM_NEW.
3229         (xg_have_tear_offs): When ! HAVE_GTK_TEAROFF_MENU_ITEM_NEW, return
3230         false.
3231         (create_menus): Create tearoff only if HAVE_GTK_TEAROFF_MENU_ITEM_NEW.
3232         (xg_update_menubar): Update title only if
3233         HAVE_GTK_TEAROFF_MENU_ITEM_NEW.
3234         (xg_update_submenu): Skip tearoff only if
3235         HAVE_GTK_TEAROFF_MENU_ITEM_NEW.
3236         (xg_initialize): Initialize xg_detached_menus only if
3237         HAVE_GTK_TEAROFF_MENU_ITEM_NEW.
3239         * xterm.h (struct x_output): Surround handlebox_widget with
3240         #ifdef HAVE_GTK_HANDLE_BOX_NEW.  toolbar_is_packed is new,
3241         toolbar_in_hbox is bool.
3243 2012-12-30  Andreas Schwab  <schwab@linux-m68k.org>
3245         * src/Makefile.in (TEMACS_LDFLAGS2): Remove.
3246         (LIBS_GNUSTEP): Define.
3247         (LIBES): Add $(LIBS_GNUSTEP).
3248         (temacs$(EXEEXT)): Use $(LDFLAGS) instead of $(TEMACS_LDFLAGS2).
3250 2012-12-30  Eli Zaretskii  <eliz@gnu.org>
3252         * xdisp.c (set_cursor_from_row): Don't confuse a truncation or
3253         continuation glyph on a TTY with an indication of an empty line.
3254         (Bug#13277)
3256 2012-12-29  Eli Zaretskii  <eliz@gnu.org>
3258         * fileio.c (Fset_file_selinux_context, Fset_file_acl): Return t if
3259         file's SELinux context or ACLs successfully set, nil otherwise.
3260         (Bug#13298)
3261         (Fcopy_file) [WINDOWSNT]: Improve diagnostics when CopyFile fails.
3263         * w32proc.c (reader_thread): Avoid passing NULL handles to
3264         SetEvent and WaitForSingleObject.
3266 2012-12-28  Paul Eggert  <eggert@cs.ucla.edu>
3268         Port EXTERNALLY_VISIBLE to Clang 3.2.
3269         * conf_post.h (__has_attribute): New macro.
3270         (EXTERNALLY_VISIBLE): Use it.  This ports to Clang 3.2.
3272 2012-12-27  Glenn Morris  <rgm@gnu.org>
3274         * cygw32.c (Fcygwin_convert_file_name_to_windows)
3275         (Fcygwin_convert_file_name_from_windows): Doc fixes.
3277 2012-12-27  Eli Zaretskii  <eliz@gnu.org>
3279         * fileio.c (file_name_as_directory, directory_file_name):
3280         Accept an additional argument MULTIBYTE to indicate whether the input C
3281         came from a multibyte or a unibyte Lisp string; all callers
3282         adjusted.  Don't assume the input string is always multibyte.
3283         (Bug#13262)
3284         (Ffile_name_directory) [DOS_NT]: Handle unibyte strings correctly:
3285         don't ENCODE_FILE them, and return a unibyte string if the input
3286         was unibyte.
3287         (Fexpand_file_name): Don't mix unibyte with multibyte strings, and
3288         don't assume the input strings will always be multibyte.  If the
3289         input strings are multibyte, decode strings obtained from C
3290         library functions.
3292 2012-12-26  Dmitry Antipov  <dmantipov@yandex.ru>
3294         * lisp.h (toplevel): Add two notices to the comment about
3295         defining a new Lisp data type.
3296         * print.c (print_object): If Lisp_Save_Value object's pointer
3297         is the address of a memory area containing Lisp_Objects, try
3298         to print them.
3299         * alloc.c (valid_lisp_object_p): Adjust comment.
3301 2012-12-26  Dmitry Antipov  <dmantipov@yandex.ru>
3303         * keyboard.c (record_asynch_buffer_change): Initialize an event
3304         only if it's really needed.
3305         * frame.h (enum output_method): Remove output_mac member since
3306         it's a leftover from the deleted code.
3307         * frame.c (Fframep): Adjust user here ...
3308         * terminal.c (Fterminal_live_p): ... and here.
3309         * coding.c (Qmac): Now here because it's only used to denote
3310         end-of-line encoding type.
3311         (syms_of_coding): DEFSYM it.
3312         * frame.h (Qmac): Remove duplicated declaration.
3314 2012-12-26  Paul Eggert  <eggert@cs.ucla.edu>
3316         * window.c (select_window_1): Now static, since it's used only here.
3318 2012-12-25  Eli Zaretskii  <eliz@gnu.org>
3320         * window.c (window_body_cols): Subtract display margins from the
3321         window body width on TTYs as well.  See
3322         http://lists.gnu.org/archive/html/help-gnu-emacs/2012-12/msg00317.html
3323         for the original report.
3325 2012-12-25  Dmitry Antipov  <dmantipov@yandex.ru>
3327         * xdisp.c (redisplay_window): Remove inner local variable
3328         because the outer shadowed one has the same meaning.
3329         * xterm.h (struct x_output): Remove toolbar_detached member since it's
3330         set but never used.
3331         * gtkutil.c (xg_tool_bar_detach_callback, xg_tool_bar_attach_callback)
3332         (xg_create_tool_bar): Adjust users.
3334 2012-12-24  Dmitry Antipov  <dmantipov@yandex.ru>
3336         * buffer.h (BUF_COMPACT): New macro to follow the common style.
3337         * buffer.c (Fget_buffer_create): Use it to set compact field of
3338         struct buffer_text to avoid accessing an uninitialized value
3339         when compact_buffer is called for the first time.
3340         (compact_buffer): Use convenient BUF_COMPACT and BUF_MODIFF.
3341         (Fset_buffer_modified_p): Use buffer_window_count to check
3342         whether the buffer is displayed in some window.
3343         * xdisp.c (message_dolog): Likewise.
3345 2012-12-23  Eli Zaretskii  <eliz@gnu.org>
3347         * w32.c (acl_set_file): If setting the file security descriptor
3348         fails, and the new DACL is identical to the existing one, silently
3349         return success.  This fixes problems for users backing up their
3350         own files without having the necessary privileges for setting
3351         security descriptors.
3353         * w32proc.c (reader_thread): Do not index fd_info[] with negative
3354         values.
3355         (reader_thread): Exit when cp->status becomes STATUS_READ_ERROR
3356         after WaitForSingleObject returns normally.  This expedites reader
3357         thread shutdown when delete_child triggers it.
3358         (reap_subprocess): More accurate commentary for why we call
3359         delete_child only when cp->fd is negative.
3361         * w32.c (sys_close): Do not call delete_child on a subprocess
3362         whose handle is not yet closed.  Instead, set its file descriptor
3363         to a negative value, so that reap_subprocess will call
3364         delete_child on that subprocess when its SIGCHLD arrives.
3365         This avoids closing handles used for communications between sys_select
3366         and reader_thread, which doesn't give sys_select a chance to
3367         notice that the process exited and invoke the SIGCHLD handler for
3368         it.
3370 2012-12-23  Jan Djärv  <jan.h.d@swipnet.se>
3372         * nsfns.m (Fns_do_applescript): Run event loop until script has
3373         been executed (Bug#12969).
3374         (ns_run_ascript): Chech as_script for nil, set to nil after
3375         executing script.
3377 2012-12-22  Martin Rudalics  <rudalics@gmx.at>
3379         * window.c (Fselect_window): Reword doc-string (Bug#13248).
3381 2012-12-22  Eli Zaretskii  <eliz@gnu.org>
3383         * w32term.c (w32fullscreen_hook): New function.
3384         (w32_create_terminal): Plug it into the terminal's fullscreen_hook.
3386 2012-12-21  Eli Zaretskii  <eliz@gnu.org>
3388         * fileio.c (Finsert_file_contents): Doc fix.
3390         * w32proc.c (new_child, delete_child, find_child_pid): For a
3391         subprocess, consider its slot being in use as long as its process
3392         handle (procinfo.hProcess) is not NULL.  This avoids reusing the
3393         slot when a new process is started immediately after killing
3394         another one, without waiting enough time for the first process to
3395         be reaped and resources allocated for it be orderly freed.
3396         (Bug#13086)
3397         Suggested by Fabrice Popineau <fabrice.popineau@supelec.fr>.
3399 2012-12-21  Chong Yidong  <cyd@gnu.org>
3401         * buffer.c (Fset_buffer_major_mode): Doc fix (Bug#13231).
3403         * fns.c (Fcompare_strings): Doc fix (Bug#13081).
3405 2012-12-21  Eli Zaretskii  <eliz@gnu.org>
3407         * w32.c (get_name_and_id): Always pass NULL as the first argument
3408         of lookup_account_sid.  Avoids crashes with UNC file names that
3409         refer to DFS domains, not to specific machine names.  (Bug#12621)
3410         Remove now unused argument FNAME; all callers changed.
3411         (get_file_owner_and_group): Remove now unused argument FNAME; all
3412         callers changed.
3414 2012-12-21  Chong Yidong  <cyd@gnu.org>
3416         * editfns.c (Finsert_char): Since read-char-by-name now signals an
3417         error for invalid chars, don't check for a nil return value.
3419 2012-12-20  Dmitry Antipov  <dmantipov@yandex.ru>
3421         Avoid calls to CHAR_TO_BYTE if byte position is known.
3422         * editfns.c (make_buffer_string_both): Use move_gap_both.
3423         (Fbuffer_string): Use make_buffer_string_both.
3424         * marker.c (buf_charpos_to_bytepos): Convert to eassert.
3425         Adjust comment.
3426         (buf_bytepos_to_charpos): Likewise.
3427         (charpos_to_bytepos): Remove.
3428         * fileio.c (Finsert_file_contents): Use move_gap_both.
3429         * search.c (Freplace_match): Likewise.
3430         * process.c (process_send_region): Likewise.  Use convenient
3431         names for byte positions.
3432         * lisp.h (charpos_to_bytepos): Remove prototype.
3433         * indent.c (scan_for_column): Use CHAR_TO_BYTE.
3434         * insdel.c (move_gap): Likewise.
3436 2012-12-20  Paul Eggert  <eggert@cs.ucla.edu>
3438         * xdisp.c (redisplay_internal): Remove now-unused local.
3440 2012-12-20  Stefan Monnier  <monnier@iro.umontreal.ca>
3442         * xdisp.c (select_frame_for_redisplay, ensure_selected_frame): Remove.
3443         (redisplay_internal): Don't bother selecting the frame to get the
3444         proper value of frame-local variables (bug#13225).
3446 2012-12-20  Dmitry Antipov  <dmantipov@yandex.ru>
3448         * textprop.c (set_text_properties_1): Do not allow NULL interval.
3449         Rename 4th argument since it may be buffer or string.  Adjust comment.
3450         * intervals.c (graft_intervals_info_buffer): Find an interval here.
3452 2012-12-19  Dmitry Antipov  <dmantipov@yandex.ru>
3454         * coding.c (Fdetect_coding_region): Do not check start and end with
3455         CHECK_NUMBER_COERCE_MARKER since validate_region does that itself.
3456         (code_convert_region): Likewise.
3458 2012-12-18  Eli Zaretskii  <eliz@gnu.org>
3460         * w32.c (acl_get_file, acl_set_file): Run the file name through
3461         map_w32_filename, and resolve any symlinks in the file name, like
3462         Posix platforms do.
3463         (acl_set_file): Call revert_to_self, if any privileges were
3464         enabled.
3466 2012-12-17  Juanma Barranquero  <lekktu@gmail.com>
3468         * makefile.w32-in ($(BLD)/editfns.$(O), $(BLD)/fileio.$(O))
3469         ($(BLD)/w32.$(O)): Update dependencies.
3471 2012-12-17  Stefan Monnier  <monnier@iro.umontreal.ca>
3473         * xdisp.c (select_frame_for_redisplay): Use select_window_1 to
3474         propagate redisplay's scrolling (if any) to the right window.
3475         (redisplay_internal): Use ensure_selected_frame.
3476         (display_mode_lines): Complete last fix.
3477         * window.c (select_window_1): New func, extracted from select_window.
3478         (select_window): Use it.
3479         * window.h (select_window_1): Declare.
3481 2012-12-17  Eli Zaretskii  <eliz@gnu.org>
3483         Emulate Posix ACL APIs on MS-Windows.
3484         * w32.c: Include sddl.h and sys/acl.h.
3485         (SDDL_REVISION_1): Define if not already defined.
3486         (g_b_init_get_security_descriptor_dacl)
3487         (g_b_init_convert_sd_to_sddl, g_b_init_convert_sddl_to_sd)
3488         (g_b_init_is_valid_security_descriptor)
3489         (g_b_init_set_file_security): New static flags.
3490         (globals_of_w32): Initialize them to zero.
3491         (SetFileSecurity_Name): New string constant.
3492         (SetFileSecurity_Proc, GetSecurityDescriptorDacl_Proc)
3493         (ConvertStringSecurityDescriptorToSecurityDescriptor_Proc)
3494         (ConvertSecurityDescriptorToStringSecurityDescriptor_Proc)
3495         (IsValidSecurityDescriptor_Proc): New typedefs.
3496         (get_file_security, get_security_descriptor_owner)
3497         (get_security_descriptor_group): Set errno to ENOTSUP.
3498         (set_file_security, get_security_descriptor_dacl)
3499         (is_valid_security_descriptor, convert_sd_to_sddl)
3500         (convert_sddl_to_sd, acl_valid, acl_to_text, acl_from_text)
3501         (acl_free, acl_get_file, acl_set_file): New functions.
3503         * fileio.c (Fcopy_file) [WINDOWSNT]: Support copying ACLs.
3505 2012-12-17  Paul Eggert  <eggert@cs.ucla.edu>
3507         Don't reraise SIGCHLD, as that can now lose (Bug#13192).
3508         With the 2012-12-03 fix for Bug#12980 in place, an old workaround
3509         for some of that bug's symptoms can now cause Emacs to abort.
3510         Remove the workaround.
3511         * process.c (wait_reading_process_output): Don't reraise SIGCHLD.
3512         The bug that caused SIGCHLD to get lost has been fixed, and the
3513         workaround for it can now cause Emacs to abort.
3515 2012-12-16  Paul Eggert  <eggert@cs.ucla.edu>
3517         * sysdep.c (emacs_abort): Bump backtrace size to 40.
3518         Companion to the 2012-09-30 patch.  Suggested by Eli Zaretskii in
3519         <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00796.html>.
3521 2012-12-16  Romain Francoise  <romain@orebokech.com>
3523         * fileio.c (Ffile_acl, Fset_file_acl): New functions.
3524         (Fcopy_file): Change last arg to `preserve_extended_attributes'
3525         and copy ACL entries of file in addition to SELinux context if set.
3526         (syms_of_fileio): Add `file-acl' and `set-file-acl'.
3528         * Makefile.in (LIBACL_LIBS): New macro.
3529         (LIBES): Use it.
3531 2012-12-15  Paul Eggert  <eggert@cs.ucla.edu>
3533         * fileio.c (internal_delete_file): Use bool for boolean.
3535 2012-12-15  Eli Zaretskii  <eliz@gnu.org>
3537         Fix bug #13079 on MS-Windows with temp files not being deleted.
3538         * w32.h (_child_process): New members input_file and
3539         pending_deletion.
3540         (register_child): First argument is now pid_t.
3541         (record_infile, record_pending_deletion): New prototypes.
3543         * w32proc.c (new_child): Initialize input_file and
3544         pending_deletion members of the child.
3545         (delete_child): Delete the child's temporary input file, if any,
3546         that is pending deletion.
3547         (register_child): First argument is now pid_t.
3548         (record_infile, record_pending_deletion): New functions.
3549         (reap_subprocess): Fix a typo in DebPrint string.
3550         (sys_spawnve, sys_kill): Use pid_t for PID arguments.
3552         * fileio.c (internal_delete_file): Return an int again: non-zero
3553         if delete-file succeeds, zero otherwise.
3555         * lisp.h (internal_delete_file): Adjust prototype.
3557         * callproc.c (Fcall_process): Don't overwrite infile with result
3558         of DECODE_FILE.
3559         [WINDOWSNT] If BUFFER is an integer, i.e. we are launching an
3560         asynchronous subprocess, record the name of the input file name,
3561         if any.
3562         (delete_temp_file) [WINDOWSNT]: If internal_delete_file fails to
3563         delete the file, record it as pending deletion when the subprocess
3564         exits.
3566 2012-12-14  Eli Zaretskii  <eliz@gnu.org>
3568         * editfns.c [HAVE_PWD_H]: Include grp.h.
3570         * makefile.w32-in ($(BLD)/editfns.$(O)): Add $(NT_INC)/grp.h.
3572 2012-12-14  Paul Eggert  <eggert@cs.ucla.edu>
3574         Fix permissions bugs with setgid directories etc. (Bug#13125)
3575         * dired.c (Ffile_attributes): Return t as the 9th attribute,
3576         to mark it as a placeholder.  The old value was often wrong.
3577         The only user of this attribute has been changed to use
3578         file-ownership-preserved-p instead, with its new group arg.
3579         * editfns.c (Fgroup_gid, Fgroup_real_gid): New functions.
3581 2012-12-14  Stefan Monnier  <monnier@iro.umontreal.ca>
3583         * xdisp.c (select_frame_for_redisplay, display_mode_lines):
3584         Keep selected_window and selected_frame in sync.
3586 2012-12-14  Eli Zaretskii  <eliz@gnu.org>
3588         * w32.c (stat_worker): If w32_stat_get_owner_group is zero, do not
3589         try to get accurate owner and group information from NT file
3590         security APIs.  This is to make most callers of 'stat' and
3591         'lstat', which don't need that information, much faster.
3593         * dired.c (Ffile_attributes) [WINDOWSNT]:
3594         Set w32_stat_get_owner_group to a non-zero value, to request accurate
3595         owner and group information from 'lstat'.
3597 2012-12-13  Paul Eggert  <eggert@cs.ucla.edu>
3599         * fileio.c (Finsert_file_contents): Don't put tail into head area,
3600         as that confuses set-auto-coding, so insist on the head-read
3601         returning the full 1024 bytes.  Let lseek compute the tail offset;
3602         less work for us.  Do not ignore I/O errors when reading the tail.
3604         * xdisp.c: Minor style fixes.
3605         (init_iterator): Hoist assignment out of if-expression.
3606         (markpos_of_region): Callers now test for sign, not for -1.
3608 2012-12-13  Dmitry Antipov  <dmantipov@yandex.ru>
3610         Minor redisplay optimization when the region length is zero.
3611         * xdisp.c (markpos_of_region): New function.
3612         (init_iterator): Do not highlight the region of zero length.
3613         (redisplay_window): Check whether the region is of non-zero length.
3614         (try_cursor_movement): Allow if the region length is zero.
3615         (try_window_reusing_current_matrix, try_window_id): Likewise.
3617 2012-12-13  Eli Zaretskii  <eliz@gnu.org>
3619         * search.c (search_buffer): Check the inverse translations of each
3620         character in pattern when the buffer being searched is unibyte.
3621         (Bug#13084)
3623 2012-12-13  Paul Eggert  <eggert@cs.ucla.edu>
3625         * fileio.c (Fvisited_file_modtime): Return (-1 ...) for nonexistent
3626         files, fixing a regression from 24.2.
3627         (Fverify_visited_file_modtime): Don't read uninitialized st.st_size.
3629 2012-12-13  Paul Eggert  <eggert@cs.ucla.edu>
3631         * fileio.c (Fcopy_file): Make fstat failure as serious as open failure.
3632         fstat shouldn't fail, and if it does fail copy-file should not proceed.
3633         Remove unnecessary S_ISLNK test, as (contra the comments) this
3634         function can't copy symlinks.  Improve quality of error message
3635         when attempting to copy files that are neither regular files nor
3636         directories.
3638 2012-12-12  Dmitry Antipov  <dmantipov@yandex.ru>
3640         * dispnew.c (set_window_cursor_after_update): Use clip_to_bounds.
3641         * gtkutil.c (xg_set_toolkit_scroll_bar_thumb):
3642         * window.c (Frecenter):
3643         * xdisp.c (resize_mini_window, hscroll_window_tree, draw_glyphs):
3644         * xterm.c (x_set_toolkit_scroll_bar_thumb): Likewise.
3646 2012-12-12  Daniel Colascione  <dancol@dancol.org>
3648         * unexcw.c (fixup_executable): Use posix_fallocate to ensure that
3649         the dumped Emacs is not a sparse file, greatly improving Cygwin
3650         "make bootstrap" performance.
3652 2012-12-11  Michael Albinus  <michael.albinus@gmx.de>
3654         * inotify.c (inotify_callback): Generate an Emacs event for every
3655         incoming inotify event.
3657 2012-12-11  Eli Zaretskii  <eliz@gnu.org>
3659         * xdisp.c (handle_face_prop): Fix logic of computing
3660         it->start_of_box_run_p.
3661         (append_space_for_newline): If the glyph row is R2L, reset the
3662         iterator's end_of_box_run_p flag before prepending the space glyph.
3663         (extend_face_to_end_of_line): If the glyph row is R2L, reset the
3664         iterator's start_of_box_run_p flag before prepending the stretch.
3665         (append_glyph, produce_image_glyph, append_composite_glyph)
3666         (append_stretch_glyph, append_glyphless_glyph): Reverse the
3667         left_box_line_p and right_box_line_p flags of the glyph for R2L
3668         glyph rows.  (Bug#13011)
3670 2012-12-11  Dmitry Antipov  <dmantipov@yandex.ru>
3672         * buffer.c (Fset_buffer_multibyte): Do not force redisplay
3673         if changed buffer is not shown in a window.
3674         * insdel.c (prepare_to_modify_buffer): Likewise.
3675         * window.c (replace_buffer_in_windows_safely): Do nothing
3676         if buffer is not shown in a window.
3677         (Fforce_window_update): Likewise if string or buffer argument
3678         is passed.
3680 2012-12-11  Eli Zaretskii  <eliz@gnu.org>
3682         * inotify.c (Finotify_add_watch): Rename decoded_file_name to
3683         encoded_file_name, which is what it is.
3685 2012-12-11  Dmitry Antipov  <dmantipov@yandex.ru>
3687         Consistently use marker_position and marker_byte_position.
3688         * fringe.c (Ffringe_bitmaps_at_pos):
3689         * indent.c (Fvertical_motion):
3690         * insdel.c (prepare_to_modify_buffer):
3691         * keyboard.c (make_lispy_position):
3692         * window.c (Fwindow_end, Fpos_visible_in_window_p, unshow_buffer)
3693         (window_scroll_pixel_based, displayed_window_lines)
3694         (Fset_window_configuration):
3695         * xdisp.c (message_dolog, with_echo_area_buffer_unwind_data)
3696         (mark_window_display_accurate_1, redisplay_window, decode_mode_spec):
3697         Replace direct access to marker fields with calls
3698         to marker_position and/or marker_byte_position.
3700 2012-12-11  Juanma Barranquero  <lekktu@gmail.com>
3702         * makefile.w32-in (SIG2STR_H): New macro.
3703         (SYSWAIT_H, $(BLD)/emacs.$(O), $(BLD)/process.$(O))
3704         ($(BLD)/w32notify.$(O)): Update dependencies.
3706 2012-12-10  Daniel Colascione  <dancol@dancol.org>
3708         * w32term.c, keyboard.c: Fix build break in cygw32 by omitting
3709         Windows file notification functionality unless WINDOWSNT.
3711         * w32gui.h (hprevinst, lpCmdLine, nCmdShow): Remove unused
3712         declarations.
3714         * w32fns.c (cache_system_info): Initialize the global hinst
3715         variable here so various initialization calls DTRT.
3717         * unexw32.c (hprevinst, lpCmdLine, nCmdShow): Remove unused variables.
3718         (hinst): Remove unneeded extern declaration.
3719         (_start): Remove initialization of above variables; remove
3720         initialization of hinst, as cache_system_info now does that.
3722         * emacs.c (main): Call cache_system_info early in startup; we
3723         previously weren't calling it in Cygwin builds.
3725         * Makefile.in (ntsource, WINDRES, W32_RES, W#@_RES_LINK):
3726         Teach the autoconf build system how to compile a Windows resource file
3727         and link it to Emacs.
3729 2012-12-10  Dmitry Antipov  <dmantipov@yandex.ru>
3731         Per-buffer window counters.
3732         * buffer.h (struct buffer): New member window_count.
3733         (buffer_window_count): New function.
3734         * buffer.c (Fget_buffer_create, Fmake_indirect_buffer):
3735         Initialize window_count.
3736         (Fkill_buffer): Verify window_count for the buffer being killed.
3737         (modify_overlay): Do not force redisplay if buffer is not shown
3738         in any window.
3739         (init_buffer_once): Initialize window_count for buffer_defaults
3740         and buffer_local_symbols.
3741         * window.h (buffer_shared): Remove declaration.
3742         (wset_buffer): Convert from inline ...
3743         * window.c (wset_buffer): ... to an ordinary function.
3744         (adjust_window_count): New function.
3745         (make_parent_window): Use it.
3746         * xdisp.c (buffer_shared): Remove.
3747         (redisplay_internal, redisplay_window): Adjust users.
3748         (buffer_shared_and_changed): Use per-buffer window counter.
3750 2012-12-10  Eli Zaretskii  <eliz@gnu.org>
3752         Support for filesystem notifications on MS-Windows.
3753         * w32proc.c (sys_select): If drain_message_queue returns non-zero,
3754         and this is a TTY frame, signal the caller that keyboard input is
3755         available.
3757         * w32xfns.c (drain_message_queue): Now returns an int: an
3758         indication whether any WM_EMACS_FILENOTIFY messages were found in
3759         the queue.
3761         * w32inevt.c (handle_file_notifications): New function.
3762         (w32_console_read_socket): Call it to process file notifications.
3764         * w32console.c (initialize_w32_display): Record the main thread ID
3765         in dwMainThreadId.
3767         * deps.mk (inotify.o): New dependency list.
3769         * Makefile.in (SOME_MACHINE_OBJECTS): Add w32notify.o.
3771         * w32term.h (WM_EMACS_FILENOTIFY): New custom message.
3772         (WM_EMACS_END): Bump value by 1.
3773         (notification_buffer_in_use, file_notifications)
3774         (notifications_size, notifications_desc): Declare.
3775         (w32_get_watch_object, lispy_file_action, globals_of_w32notify):
3776         Add prototypes.
3778         * w32term.c (lispy_file_action, queue_notifications): New functions.
3779         (syms_of_w32term) <Qadded, Qremoved, Qmodified, Qrenamed_from>
3780         <Qrenamed_to>: New symbols.
3781         (w32_read_socket): Handle the WM_EMACS_FILENOTIFY message.
3783         * w32notify.c: New file, implements file event notifications for
3784         MS-Windows.
3786         * w32fns.c (w32_wnd_proc): Handle the WM_EMACS_FILENOTIFY message
3787         by posting it to the w32_read_socket queue.
3789         * termhooks.h (enum event_kind) [HAVE_NTGUI]: Support FILE_NOTIFY_EVENT.
3791         * makefile.w32-in (OBJ2): Add $(BLD)/w32notify.$(O).
3792         (GLOBAL_SOURCES): Add w32notify.c
3793         ($(BLD)/w32notify.$(O)): New set of dependencies.
3795         * lisp.h (syms_of_w32notify) [WINDOWSNT]: Add prototype.
3797         * keyboard.c (kbd_buffer_get_event) [WINDOWSNT]:
3798         Handle FILE_NOTIFY_EVENT.
3799         (syms_of_keyboard) [HAVE_NTGUI] <Qfile_notify>: New symbol.
3800         (keys_of_keyboard) [WINDOWSNT]: Bind file-notify to
3801         w32notify-handle-event by default.
3803         * emacs.c (main) [WINDOWSNT]: Call globals_of_w32notify and
3804         syms_of_w32notify.
3806 2012-12-10  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
3808         Support for filesystem notifications on GNU/Linux via inotify.
3809         * termhooks.h (enum event_kind) [HAVE_INOTIFY]: Add FILE_NOTIFY_EVENT.
3811         * lisp.h (syms_of_inotify) [HAVE_INOTIFY]: Add prototype.
3813         * keyboard.c (Qfile_inotify) [HAVE_INOTIFY]: New variable.
3814         (syms_of_keyboard): DEFSYM it.
3815         (kbd_buffer_get_event) [HAVE_INOTIFY]: Generate FILE_NOTIFY_EVENT.
3816         (make_lispy_event): Support FILE_NOTIFY_EVENT by generating
3817         Qfile_inotify events.
3818         (keys_of_keyboard) [HAVE_INOTIFY]: Bind file-inotify events in
3819         special-event-map to inotify-handle-event.
3821         * emacs.c (main) [HAVE_INOTIFY]: Call syms_of_inotify.
3823         * Makefile.in (base_obj): Add inotify.o.
3825         * inotify.c: New file.
3827 2012-12-10  Jan Djärv  <jan.h.d@swipnet.se>
3829         * nsterm.m (fd_handler:): FD_ZERO fds (Bug#13103).
3831 2012-12-10  Fabrice Popineau  <fabrice.popineau@gmail.com>
3833         * w32fns.c (cache_system_info): Cast sysinfo_cache.dwPageSize to
3834         DWORD_PTR, for compatibility with 64-bit builds.
3836         * w32.c (_PROCESS_MEMORY_COUNTERS_EX):
3837         (GetProcessWorkingSetSize_Proc, get_process_working_set_size)
3838         (system_process_attributes): Use SIZE_T rather than DWORD, for
3839         compatibility with 64-bit builds.
3841 2012-12-10  Christopher Schmidt  <christopher@ch.ristopher.com>
3843         * lread.c (Vload_source_file_function): Doc fix (Bug#11647).
3845 2012-12-10  Eli Zaretskii  <eliz@gnu.org>
3847         * indent.c (Fvertical_motion): If a display string will be
3848         displayed on the left or the right margin, don't consider it as a
3849         factor in cursor positioning.  (Bug#13108)
3851 2012-12-10  Martin Rudalics  <rudalics@gmx.at>
3853         * editfns.c (Fcompare_buffer_substrings): Reword doc-string.
3855 2012-12-10  Paul Eggert  <eggert@cs.ucla.edu>
3857         * fileio.c (Fsubstitute_in_file_name): Use ptrdiff_t, not int,
3858         for string length.
3860 2012-12-08  Eli Zaretskii  <eliz@gnu.org>
3862         * w32.c (unsetenv): Return 0 if the input string is too long.
3864 2012-12-08  Paul Eggert  <eggert@cs.ucla.edu>
3866         Use putenv+unsetenv instead of modifying environ directly (Bug#13070).
3867         * alloc.c (xputenv): New function.
3868         * dbusbind.c (Fdbus_init_bus):
3869         * emacs.c (main):
3870         * xterm.c (x_term_init):
3871         Use xputenv instead of setenv or putenv, to detect memory exhaustion.
3872         * editfns.c (initial_tz): Move static var decl up.
3873         (tzvalbuf_in_environ): New static var.
3874         (init_editfns): Initialize these two static vars.
3875         (Fencode_time): Don't assume arbitrary limit on EMACS_INT width.
3876         Save old TZ value on stack, if it's small.
3877         (Fencode_time, set_time_zone_rule): Don't modify 'environ' directly;
3878         instead, use xputenv+unsetenv to set and restore TZ.
3879         (environbuf): Remove static var.  All uses removed.
3880         (Fset_time_zone_rule): Do not save TZ and environ;
3881         no longer needed here.
3882         (set_time_zone_rule_tz1, set_time_zone_rule_tz2) [LOCALTIME_CACHE]:
3883         Move to inside set_time_zone_rule; they don't need file scope any more.
3884         (set_time_zone_rule): Maintain the TZ=value string separately.
3885         (syms_of_editfns): Don't initialize initial_tz;
3886         init_editfns now does it.
3887         * emacs.c (dump_tz) [HAVE_TZSET]: Now const.
3888         * lisp.h (xputenv): New decl.
3890 2012-12-08  Fabrice Popineau  <fabrice.popineau@gmail.com>
3892         * w32fns.c (emacs_abort): Don't do arithmetics on void pointers.
3894 2012-12-08  Eli Zaretskii  <eliz@gnu.org>
3896         * w32.c (unsetenv, sys_putenv): New functions.
3898 2012-12-08  Chong Yidong  <cyd@gnu.org>
3900         * editfns.c (Finsert_char): Make the error message more
3901         informative (Bug#12992).
3903 2012-12-08  Paul Eggert  <eggert@cs.ucla.edu>
3905         Simplify get_lim_data.
3906         * vm-limit.c (get_lim_data): Combine RLIMIT_AS and RLIMIT_DATA methods.
3907         Remove USG and vlimit methods; no longer used these days.
3908         Add #error catchall just in case.
3910         Assume POSIX 1003.1-1988 or later for signal.h (Bug#13026).
3911         Exceptions: do not assume SIGCONT, SIGSTOP, SIGTSTP, SIGTTIN,
3912         SIGTTOU, SIGUSR1, SIGUSR2, as Microsoft platforms lack these.
3913         * process.c [subprocesses]: Include <c-ctype.h>, <sig2str.h>.
3914         (deleted_pid_list, Fdelete_process, create_process)
3915         (record_child_status_change, handle_child_signal, deliver_child_signal)
3916         (init_process_emacs, syms_of_process):
3917         Assume SIGCHLD is defined.
3918         (parse_signal): Remove.  All uses removed.
3919         (abbr_to_signal): New static function.
3920         (Fsignal_process): Use it to convert signal names to ints.
3921         * sysdep.c (sys_suspend) [!DOS_NT]: Use kill (0, ...) rather than
3922         kill (getpgrp (), ...).
3923         (emacs_sigaction_init): Assume SIGCHLD is defined.
3924         (init_signals): Assume SIGALRM, SIGCHLD, SIGHUP, SIGKILL,
3925         SIGPIPE, and SIGQUIT are defined.  Do not worry about SIGCLD any more.
3926         * syssignal.h (EMACS_KILLPG): Remove.
3927         All uses replaced by 'kill' with a negative pid.
3928         (SIGCHLD): Remove definition, as we now assume SIGCHLD.
3929         * w32proc.c (sys_kill): Support negative pids compatibly with POSIX.
3931 2012-12-07  Paul Eggert  <eggert@cs.ucla.edu>
3933         * sysdep.c (get_child_status): Abort on internal error (Bug#13086).
3934         This will cause a production Emacs to dump core instead of
3935         infinite-looping.
3937 2012-12-07  Dmitry Antipov  <dmantipov@yandex.ru>
3939         * frame.c (make_frame): Do not set window's buffer to t.
3940         * window.c (Fsplit_window_internal): Likewise.  Previously it was
3941         used to indicate that the window is being set up.  Now we use
3942         set_window_buffer for all new windows, so the condition in ...
3943         (Fset_window_buffer): ... is always true and can be removed.
3945 2012-12-07  Dmitry Antipov  <dmantipov@yandex.ru>
3947         Convenient macro to check whether the buffer is hidden.
3948         * buffer.h (BUFFER_HIDDEN_P): New macro.
3949         * frame.c (make_frame): Use it.  Adjust comment.
3950         * buffer.c (candidate_buffer): New function.
3951         (Fother_buffer, other_buffer_safely): Use it.
3953 2012-12-06  Eli Zaretskii  <eliz@gnu.org>
3955         * w32proc.c (waitpid): Avoid busy-waiting when called with WNOHANG
3956         if the child process is still running.  Instead, exit the wait
3957         loop and return zero.  (Bug#13086)
3959 2012-12-06  Dmitry Antipov  <dmantipov@yandex.ru>
3961         * frame.h (x_char_width, x_char_height): Remove prototypes.
3962         * w32term.h (x_char_width, x_char_height): Likewise.
3963         * xfns.c (x_char_width, x_char_height): Remove.
3964         * w32fns.c (x_char_width, x_char_height): Likewise.
3965         * nsfns.c (x_char_width, x_char_height): Likewise.
3966         * frame.c (Fframe_char_width): Use FRAME_COLUMN_WIDTH for
3967         all window frames.
3968         (Fframe_char_height): Likewise with FRAME_LINE_HEIGHT.
3969         * keyboard.c (command_loop_1): Remove prototype.
3970         (command_loop_2, top_level_1): Add static to match prototype.
3972 2012-12-06  Paul Eggert  <eggert@cs.ucla.edu>
3974         Fix a recently-introduced delete-process race condition.
3975         * callproc.c, process.h (record_kill_process):
3976         New function, containing part of the old call_process_kill.
3977         (call_process_kill): Use it.
3978         This does not change call_process_kill's behavior.
3979         * process.c (Fdelete_process): Use record_kill_process to fix a
3980         race condition that could cause Emacs to lose track of a child.
3982 2012-12-06  Dmitry Antipov  <dmantipov@yandex.ru>
3984         Avoid code duplication between prev_frame and next_frame.
3985         * frame.c (candidate_frame): New function.  Add comment.
3986         (prev_frame, next_frame): Use it.  Adjust comment.
3988 2012-12-06  Eli Zaretskii  <eliz@gnu.org>
3990         * callproc.c (Fcall_process_region) [!HAVE_MKSTEMP]: If mktemp
3991         fails, signal an error instead of continuing with an empty
3992         string.  (Bug#13079)
3993         Encode expanded temp file pattern before passing it to mkstemp or
3994         mktemp.
3996         * fileio.c (file_name_as_directory, directory_file_name) [DOS_NT]:
3997         Encode the file name before passing it to dostounix_filename, in
3998         case it will downcase it (under w32-downcase-file-names).
3999         (Bug#12933)
4001 2012-12-05  Paul Eggert  <eggert@cs.ucla.edu>
4003         Minor call-process cleanups.
4004         * callproc.c (Fcall_process): Do record-unwind-protect on MSDOS
4005         at the same time as other platforms, to simplify analysis.
4006         No need for fd0_volatile since we have synch_process_fd.
4007         Avoid needless emacs_close; arg is always negative.
4009 2012-12-04  Andreas Schwab  <schwab@linux-m68k.org>
4011         * callproc.c (Fcall_process): Fix specpdl nesting for asynchronous
4012         processes.
4014 2012-12-04  Dmitry Antipov  <dmantipov@yandex.ru>
4016         * lisp.h (Mouse_HLInfo): Remove set-but-unused mouse_face_image_state
4017         member.  Adjust users.  Convert mouse_face_past_end, mouse_face_defer
4018         and mouse_face_hidden members to a bitfields.
4019         * frame.h (struct frame): Remove set-but-not-used space_width member.
4020         (FRAME_SPACE_WIDTH): Remove.
4021         * nsterm.m, w32term.c, xterm.c: Adjust users.
4022         * termchar.h (struct tty_display_info): Remove set-but-unused se_is_so
4023         member.  Adjust users.  Convert term_initted, delete_in_insert_mode,
4024         costs_set, insert_mode, standout_mode, cursor_hidden and flow_control
4025         members to a bitfields.
4027 2012-12-03  Paul Eggert  <eggert@cs.ucla.edu>
4029         Don't let call-process be a zombie factory (Bug#12980).
4030         Fixing this bug required some cleanup of the signal-handling code.
4031         As a side effect, this change also fixes a longstanding rare race
4032         condition whereby Emacs could mistakenly kill unrelated processes,
4033         and it fixes a bug where a second C-g does not kill a recalcitrant
4034         synchronous process in GNU/Linux and similar platforms.
4035         The patch should also fix the last vestiges of Bug#9488,
4036         a bug which has mostly been fixed on the trunk by other changes.
4037         * callproc.c, process.h (synch_process_alive, synch_process_death)
4038         (synch_process_termsig, sync_process_retcode):
4039         Remove.  All uses removed, to simplify analysis and so that
4040         less consing is done inside critical sections.
4041         * callproc.c (call_process_exited): Remove.  All uses replaced
4042         with !synch_process_pid.
4043         * callproc.c (synch_process_pid, synch_process_fd): New static vars.
4044         These take the role of what used to be in unwind-protect arg.
4045         All uses changed.
4046         (block_child_signal, unblock_child_signal):
4047         New functions, to avoid races that could kill innocent-victim processes.
4048         (call_process_kill, call_process_cleanup, Fcall_process): Use them.
4049         (call_process_kill): Record killed processes as deleted, so that
4050         zombies do not clutter up the system.  Do this inside a critical
4051         section, to avoid a race that would allow the clutter.
4052         (call_process_cleanup): Fix code so that the second C-g works again
4053         on common platforms such as GNU/Linux.
4054         (Fcall_process): Create the child process in a critical section,
4055         to fix a race condition.  If creating an asynchronous process,
4056         record it as deleted so that zombies do not clutter up the system.
4057         Do unwind-protect for WINDOWSNT too, as that's simpler in the
4058         light of these changes.  Omit unnecessary call to emacs_close
4059         before failure, as the unwind-protect code does that.
4060         * callproc.c (call_process_cleanup):
4061         * w32proc.c (waitpid): Simplify now that synch_process_alive is gone.
4062         * process.c (record_deleted_pid): New function, containing
4063         code refactored out of Fdelete_process.
4064         (Fdelete_process): Use it.
4065         (process_status_retrieved): Remove.  All callers changed to use
4066         child_status_change.
4067         (record_child_status_change): Remove, folding its contents into ...
4068         (handle_child_signal): ... this signal handler.  Now, this
4069         function is purely a handler for SIGCHLD, and is not called after
4070         a synchronous waitpid returns; the synchronous code is moved to
4071         wait_for_termination.  There is no need to worry about reaping
4072         more than one child now.
4073         * sysdep.c (get_child_status, child_status_changed): New functions.
4074         (wait_for_termination): Now takes int * status and bool
4075         interruptible arguments, too.  Do not record child status change;
4076         that's now the caller's responsibility.  All callers changed.
4077         Reimplement in terms of get_child_status.
4078         (wait_for_termination_1, interruptible_wait_for_termination):
4079         Remove.  All callers changed to use wait_for_termination.
4080         * syswait.h: Include <stdbool.h>, for bool.
4081         (record_child_status_change, interruptible_wait_for_termination):
4082         Remove decls.
4083         (record_deleted_pid, child_status_changed): New decls.
4084         (wait_for_termination): Adjust to API changes noted above.
4086         * bytecode.c, lisp.h (Qbytecode): Remove.
4087         No longer needed after 2012-11-20 interactive-p changes.
4089 2012-12-03  Eli Zaretskii  <eliz@gnu.org>
4091         * xdisp.c (redisplay_window): If the cursor is visible, but inside
4092         the scroll margin, move point outside the margin.  (Bug#13055)
4094 2012-12-03  Jan Djärv  <jan.h.d@swipnet.se>
4096         * gtkutil.c (my_log_handler): New function.
4097         (xg_set_geometry): Set log handler to my_log_handler (Bug#11177).
4099 2012-12-03  Dmitry Antipov  <dmantipov@yandex.ru>
4101         * lisp.h (modify_region): Rename to...
4102         (modify_region_1): ...new prototype.
4103         * textprop.c (modify_region): Now static.  Adjust users.
4104         * insdel.c (modify_region): Rename to...
4105         (modify_region_1): ...new function to work with current buffer.
4106         Adjust comment and users.  Use true and false for booleans.
4108 2012-12-03  Dmitry Antipov  <dmantipov@yandex.ru>
4110         * alloc.c (free_save_value): New function.
4111         (safe_alloca_unwind): Use it.
4112         * lisp.h (free_save_value): New prototype.
4113         * editfns.c (save_excursion_save): Use Lisp_Misc_Save_Value.
4114         Add comment.
4115         (save_excursion_restore): Adjust to match saved data structure.
4116         Use free_save_value to offload some work from GC.  Drop obsolete
4117         #if 0 code.
4119 2012-12-03  Chong Yidong  <cyd@gnu.org>
4121         * fileio.c (Vauto_save_list_file_name): Doc fix.
4123 2012-12-03  Fabrice Popineau  <fabrice.popineau@gmail.com>
4125         * w32fns.c: Remove prototype of atof.
4126         (syspage_mask): Make it DWORD_PTR, for compatibility with 64-bit
4127         builds.
4128         (file_dialog_callback): Make it UINT_PTR.
4130         * w32common.h (syspage_mask): Declare DWORD_PTR, for compatibility
4131         with 64-bit builds.
4133         * w32.c (FILE_DEVICE_FILE_SYSTEM, METHOD_BUFFERED)
4134         (FILE_ANY_ACCESS, CTL_CODE) [_MSC_VER]: Define only if not already
4135         defined.
4137 2012-12-03  Glenn Morris  <rgm@gnu.org>
4139         * data.c (Fboundp, Fsymbol_value): Doc fix re lexical-binding.
4141 2012-12-02  Paul Eggert  <eggert@cs.ucla.edu>
4143         Fix xpalloc confusion after memory is exhausted.
4144         * alloc.c (xpalloc): Comment fix.
4145         * charset.c (Fdefine_charset_internal): If xpalloc exhausts memory
4146         and signals an error, do not clear charset_table_size, as
4147         charset_table is still valid.
4148         * doprnt.c (evxprintf): Clear *BUF after freeing it.
4150         Use execve to avoid need to munge environ (Bug#13054).
4151         * callproc.c (Fcall_process):
4152         * process.c (create_process):
4153         Don't save and restore environ; no longer needed.
4154         * callproc.c (child_setup):
4155         Use execve, not execvp, to preserve environ.
4157 2012-12-01  Paul Eggert  <eggert@cs.ucla.edu>
4159         * xterm.c (x_draw_image_relief): Remove unused locals (Bug#10500).
4161 2012-12-01  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
4163         * xterm.c (x_draw_relief_rect, x_draw_image_relief): Fix relief
4164         display for sliced images (Bug#10500).
4166         * w32term.c (w32_draw_relief_rect, x_draw_image_relief): Likewise.
4168 2012-11-30  Juanma Barranquero  <lekktu@gmail.com>
4170         * doc.c (Fdocumentation): Re-add handling of function-documentation,
4171         accidentally removed in 2012-11-09T04:10:16Z!monnier@iro.umontreal.ca (bug#13034).
4173 2012-11-29  Dmitry Antipov  <dmantipov@yandex.ru>
4175         * xdisp.c (window_outdated): Remove eassert since it hits
4176         some suspicious corner cases (see Bug#13007 and Bug#13012).
4177         (mode_line_update_needed): New function.
4178         (redisplay_internal, redisplay_window): Use it.
4179         (ensure_selected_frame): New function.
4180         (redisplay_internal, unwind_redisplay): Use it.
4181         (redisplay_internal): Move comment about buffer_shared...
4182         (buffer_shared_and_changed): ...near to its real use.
4184 2012-11-29  Paul Eggert  <eggert@cs.ucla.edu>
4186         * callproc.c (Fcall_process): Don't misreport vfork failure.
4188 2012-11-28  Paul Eggert  <eggert@cs.ucla.edu>
4190         * callproc.c (Fcall_process): Fix vfork portability problems.
4191         Do not assume that fd[0], count, filefd, and save_environ survive
4192         vfork.  Fix bug whereby wrong errno value could be reported for
4193         pipe failure.  Some minor cleanups, too, as follows.  Move buf and
4194         bufsize to the context where they're needed.  Change new_argv to
4195         be of type char **, as this is more convenient and avoids casts.
4196         (CALLPROC_BUFFER_SIZE_MIN, CALLPROC_BUFFER_SIZE_MAX):
4197         Now local constants, not macros.
4199 2012-11-18  Kenichi Handa  <handa@gnu.org>
4201         * font.c (font_unparse_xlfd): Fix previous change.  Keep "const"
4202         for the variable "f".
4204 2012-11-13  Kenichi Handa  <handa@gnu.org>
4206         * font.c (font_unparse_xlfd): Exclude special characters from the
4207         generating XLFD name.
4209 2012-11-27  Paul Eggert  <eggert@cs.ucla.edu>
4211         Assume POSIX 1003.1-1988 or later for grp.h, pwd.h.
4212         * dired.c (stat_uname, stat_gname):
4213         * fileio.c (Fexpand_file_name): Remove no-longer-needed casts.
4215         Assume POSIX 1003.1-1988 or later for errno.h (Bug#12968).
4216         * dired.c (directory_files_internal, file_name_completion):
4217         Assume EAGAIN and EINTR are defined.
4219         * fileio.c (Fcopy_file): Assume EISDIR is defined.
4220         * gmalloc.c (ENOMEM, EINVAL): Assume they're defined.
4221         * gnutls.c (emacs_gnutls_write): Assume EAGAIN is defined.
4222         * lread.c (readbyte_from_file): Assume EINTR is defined.
4223         * process.c (wait_reading_process_output, send_process) [subprocesses]:
4224         Assume EIO and EAGAIN are defined.
4225         * unexcoff.c (write_segment): Assume EFAULT is defined.
4227 2012-11-27  Eli Zaretskii  <eliz@gnu.org>
4229         * fontset.c (Finternal_char_font): Return nil on non-GUI frames.
4230         (Bug#11964)
4232         * xdisp.c (draw_glyphs): Don't draw in mouse face if mouse
4233         highlighting on the frame was cleared.  Prevents assertion
4234         violations when repeatedly clicking on the "Top" link of the
4235         "bread-crumbs" in Info buffers.
4237 2012-11-25  Paul Eggert  <eggert@cs.ucla.edu>
4239         * sysdep.c (sys_subshell): Don't assume pid_t fits in int.
4241 2012-11-24  Ken Brown  <kbrown@cornell.edu>
4243         * keyboard.c (HAVE_MOUSE):
4244         * frame.c (HAVE_MOUSE): Remove, and rewrite code as if HAVE_MOUSE
4245         were always defined.
4247 2012-11-24  Eli Zaretskii  <eliz@gnu.org>
4249         * xdisp.c (set_cursor_from_row): Skip step 2 only if point is not
4250         between bpos_covered and bpos_max.  This fixes cursor display when
4251         several display strings follow each other.
4253         * .gdbinit (pgx): If the glyph's object is a string, display the
4254         pointer to string data, rather than the value of the string object
4255         itself (which barfs under CHECK_LISP_OBJECT_TYPE).
4257         * indent.c (Fvertical_motion): If the starting position is covered
4258         by a display string, return to one position before that, to avoid
4259         overshooting it inside move_it_to.  (Bug#12930)
4261 2012-11-23  Dmitry Antipov  <dmantipov@yandex.ru>
4263         * frame.h (struct frame): Remove display_preempted member
4264         since all users are dead long ago.
4265         * nsterm.h (struct x_output): Use the only dummy member.
4266         * w32menu.c (pending_menu_activation): Remove since not
4267         really used.
4268         (set_frame_menubar): Adjust user.
4269         * w32term.h (struct x_output): Drop outdated #if 0 code.
4270         (struct w32_output): Use bitfields for explicit_parent,
4271         asked_for_visible and menubar_active members.
4272         Drop unused pending_menu_activation member.
4273         * xterm.h (struct x_output): Drop outdated #if 0 code.
4274         Use bitfields for explicit_parent, asked_for_visible,
4275         has_been_visible and net_wm_state_hidden_seen members.
4277 2012-11-23  Eli Zaretskii  <eliz@gnu.org>
4279         * makefile.w32-in (globals.h, gl-stamp): Use $(SWITCHCHAR) instead
4280         of a literal "/".  (Bug#12955)
4281         (gl-stamp): Invoke fc.exe directly, not through cmd.
4283 2012-11-23  Paul Eggert  <eggert@cs.ucla.edu>
4285         Assume POSIX 1003.1-1988 or later for dirent.h (Bug#12958).
4286         * dired.c: Assume HAVE_DIRENT_H.
4287         (NAMLEN): Remove, replacing with ...
4288         (dirent_namelen): New function.  All uses changed.  Use the GNU macro
4289         _D_EXACT_NAMELEN if available, as it's faster than strlen.
4290         (DIRENTRY): Remove, replacing all uses with 'struct dirent'.
4291         (DIRENTRY_NONEMPTY): Remove.  All callers now assume it's nonzero.
4292         * makefile.w32-in (DIR_H): Remove.  All uses replaced with
4293         $(NT_INC)/dirent.h.
4294         ($(BLD)/w32.$(O)): Do not depend on $(SRC)/ndir.h.
4295         * ndir.h: Rename to ../nt/inc/dirent.h.
4296         * sysdep.h (closedir) [!HAVE_CLOSEDIR]: Remove.
4297         Do not include <dirent.h>; no longer needed.
4298         * w32.c: Include <dirent.h> rather than "ndir.h".
4300 2012-11-23  Chong Yidong  <cyd@gnu.org>
4302         * xftfont.c (xftfont_open): Remove duplicate assignment.
4304 2012-11-22  Dmitry Antipov  <dmantipov@yandex.ru>
4306         * alloc.c (Fgarbage_collect): Unblock input after clearing
4307         gc_in_progress to avoid note_mouse_highlight glitch with GC.
4308         * frame.h (FRAME_MOUSE_UPDATE): New macro.
4309         * msdos.c (IT_frame_up_to_date): Use it here...
4310         * w32term.c (w32_frame_up_to_date): ...here...
4311         * xterm.c (XTframe_up_to_date): ...and here...
4312         * nsterm.m (ns_frame_up_to_date): ...but not here.
4313         * lisp.h (Mouse_HLInfo): Remove mouse_face_deferred_gc member.
4314         Adjust users.
4315         * xdisp.c (message2_nolog, message3_nolog, note_mouse_highlight):
4316         Do not check whether GC is in progress.
4318 2012-11-22  Dmitry Antipov  <dmantipov@yandex.ru>
4320         * xdisp.c (window_buffer_changed): New function.
4321         (update_menu_bar, update_tool_bar): Use it to
4322         simplify large 'if' statements.
4323         (redisplay_internal): Generalize commonly used
4324         'tail' and 'frame' local variables.
4326 2012-11-22  Eli Zaretskii  <eliz@gnu.org>
4328         * w32.c (getcwd): Fix the 2nd argument type, to prevent conflicts
4329         with Windows system header.
4331 2012-11-21  Paul Eggert  <eggert@cs.ucla.edu>
4333         Assume POSIX 1003.1-1988 or later for unistd.h (Bug#12945).
4334         * alloc.c: Assume unistd.h exists.
4335         * fileio.c (Fexpand_file_name) [DOS_NT]: Use getcwd, not getwd.
4336         * sysdep.c (get_current_dir_name): Assume getcwd exists.
4337         (getwd) [USG]: Remove; no longer needed.
4338         (sys_subshell) [DOS_NT]: Use getcwd, not getwd.
4339         * w32.c (getcwd): Rename from getwd, and switch to getcwd's API.
4340         * w32.h (getcwd): Remove decl.
4342 2012-11-21  Stefan Monnier  <monnier@iro.umontreal.ca>
4344         * xdisp.c (fast_set_selected_frame): Rename from update_tool_bar_unwind.
4345         Make it set selected_window as well.
4346         (update_tool_bar): Use it.
4348 2012-11-21  Ken Brown  <kbrown@cornell.edu>
4350         * emacs.c (main): Set the G_SLICE environment variable for all
4351         Cygwin builds, not just GTK builds.  See
4352         https://lists.gnu.org/archive/html/emacs-devel/2012-11/msg00368.html.
4354 2012-11-21  Eli Zaretskii  <eliz@gnu.org>
4356         * w32.c (FILE_DEVICE_FILE_SYSTEM, METHOD_BUFFERED)
4357         (FILE_ANY_ACCESS, CTL_CODE, FSCTL_GET_REPARSE_POINT) [_MSC_VER]:
4358         Define for the MSVC compiler.
4360         * w32term.h (EnumSystemLocalesW) [_MSC_VER]: Add a missing semi-colon.
4362         * fileio.c (Fsubstitute_in_file_name, Ffile_name_directory)
4363         (Fexpand_file_name) [DOS_NT]: Pass encoded file name to
4364         dostounix_filename.  Prevents crashes down the road, because
4365         dostounix_filename assumes it gets a unibyte string.
4366         Reported by Michel de Ruiter <michel@sentient.nl>, see
4367         http://lists.gnu.org/archive/html/help-emacs-windows/2012-11/msg00017.html
4369 2012-11-20  Stefan Monnier  <monnier@iro.umontreal.ca>
4371         Conflate Qnil and Qunbound for `symbol-function'.
4372         * alloc.c (Fmake_symbol): Initialize `function' to Qnil.
4373         * lread.c (init_obarray): Set `function' fields to Qnil.
4374         * eval.c (Fcommandp): Ignore Qunbound.
4375         (Fautoload, eval_sub, Fapply, Ffuncall, Fmacroexpand):
4376         * data.c (Ffset, Ffboundp, indirect_function, Findirect_function):
4377         Test NILP rather than Qunbound.
4378         (Ffmakunbound): Set to Qnil.
4379         (Fsymbol_function): Never signal an error.
4380         (Finteractive_form): Ignore Qunbound.
4382 2012-11-20  Paul Eggert  <eggert@cs.ucla.edu>
4384         * eval.c (interactive_p): Remove no-longer-used decl.
4386 2012-11-20  Dmitry Antipov  <dmantipov@yandex.ru>
4388         * xdisp.c (buffer_shared): Adjust comment.
4389         (buffer_shared_and_changed): New function.
4390         (prepare_menu_bars, redisplay_internal): Use it to
4391         decide whether all windows or frames should be updated.
4392         (window_outdated): New function.
4393         (text_outside_line_unchanged_p, redisplay_window): Use it.
4394         (redisplay_internal): Likewise.  Fix indentation.
4396 2012-11-20  Stefan Monnier  <monnier@iro.umontreal.ca>
4398         * eval.c (Finteractive_p, Fcalled_interactively_p, interactive_p): Remove.
4399         (syms_of_eval): Remove corresponding defsubr.
4400         * bytecode.c (exec_byte_code): `interactive-p' is now a Lisp function.
4402 2012-11-19  Daniel Colascione  <dancol@dancol.org>
4404         * w32fns.c (Fx_file_dialog):
4405         (Fx_file_dialog): Accomodate rename of cygwin_convert_path* to
4406         cygwin_convert_file_name*.
4408         * cygw32.c (Fcygwin_convert_path_to_windows, syms_of_cygw32):
4409         Rename cygwin_convert_path* to cygwin_convert_file_name*.
4411 2012-11-18  Paul Eggert  <eggert@cs.ucla.edu>
4413         * nsterm.m (ns_select): Send SIGIO only to self, not to process group.
4415 2012-11-18  Eli Zaretskii  <eliz@gnu.org>
4417         * w32select.c: Include w32common.h before w32term.h, so that
4418         windows.h gets included before w32term.h uses some of its
4419         features, see below.
4421         * w32term.h (LOCALE_ENUMPROCA, LOCALE_ENUMPROCW) [_MSC_VER]:
4422         New typedefs.
4423         (EnumSystemLocalesA, EnumSystemLocalesW) [_MSC_VER]:
4424         New prototypes.
4425         (EnumSystemLocales) [_MSC_VER]: Define if undefined.  (Bug#12878)
4427 2012-11-18  Jan Djärv  <jan.h.d@swipnet.se>
4429         * nsterm.m (hold_event): Set send_appdefined to YES (Bug#12834).
4430         (ns_select): Return at once if events are held (Bug#12834).
4432 2012-11-18  enami tsugutomo  <tsugutomo.enami@jp.sony.com>
4434         * unexelf.c (ELFSIZE) [__NetBSD__ && _LP64]: Set to 64.
4435         Needed following 2012-10-20 change.  (Bug#12902)
4437 2012-11-18  Juanma Barranquero  <lekktu@gmail.com>
4439         * w32proc.c (waitpid): Remove unused label get_result.
4441 2012-11-17  Juanma Barranquero  <lekktu@gmail.com>
4443         * makefile.w32-in (SYSWAIT_H): New macro.
4444         ($(BLD)/callproc.$(O), $(BLD)/w32proc.$(O), $(BLD)/process.$(O))
4445         ($(BLD)/sysdep.$(O)): Update dependencies.
4447 2012-11-17  Paul Eggert  <eggert@cs.ucla.edu>
4449         Assume POSIX 1003.1-1988 or later for fcntl.h (Bug#12881).
4450         * callproc.c (relocate_fd): Assume F_DUPFD.
4451         * emacs.c, term.c (O_RDWR): Remove.
4452         * keyboard.c (tty_read_avail_input): Use O_NONBLOCK rather than
4453         O_NDELAY, since O_NONBLOCK is the standard name for this flag.
4454         * nsterm.m: Assume <fcntl.h> exists.
4455         * process.c (NON_BLOCKING_CONNECT, allocate_pty, create_process)
4456         (create_pty, Fmake_network_process, server_accept_connection)
4457         (wait_reading_process_output, init_process_emacs):
4458         Assume O_NONBLOCK.
4459         (wait_reading_process_output): Put in a special case for WINDOWSNT
4460         to mimick the older behavior where it had O_NDELAY but not O_NONBLOCK.
4461         It's not clear this is needed, but it's a more-conservative change.
4462         (create_process): Assume FD_CLOEXEC.
4463         (create_process, create_pty): Assume O_NOCTTY.
4464         * sysdep.c (init_sys_modes, reset_sys_modes): Assume F_SETFL.
4465         (reset_sys_modes): Use O_NONBLOCK rather than O_NDELAY.
4466         Omit if not DOS_NT, since F_GETFL is not defined there.
4467         (serial_open): Assume O_NONBLOCK and O_NOCTTY.
4468         * term.c: Include <fcntl.h>, for flags like O_NOCTTY.
4469         (O_NOCTTY): Remove.
4470         (init_tty): Assume O_IGNORE_CTTY is defined to 0 on platforms that
4471         lack it, since gnulib guarantees this.
4472         * w32.c (fcntl): Test for O_NONBLOCK rather than O_NDELAY.
4474 2012-11-17  Eli Zaretskii  <eliz@gnu.org>
4476         * w32.c (faccessat): Pretend that directories have the execute bit
4477         set.  Emacs expects that, e.g., in files.el:cd-absolute.
4479         * w32proc.c (create_child): Don't clip the PID of the child
4480         process to fit into an Emacs integer, as this is no longer a
4481         restriction.
4482         (waitpid): Rename from sys_wait.  Emulate a Posix 'waitpid' by
4483         reaping only the process specified by PID argument, if that is
4484         positive.  Use PID instead of dead_child to know which process to
4485         reap.  Wait for the child to die only if WNOHANG is not in
4486         OPTIONS.
4487         (sys_select): Don't set dead_child.
4489         * sysdep.c (wait_for_termination_1): Remove the WINDOWSNT portion,
4490         as it is no longer needed.
4492         * process.c (waitpid, WUNTRACED) [!WNOHANG]: Remove definitions,
4493         no longer needed.
4494         (record_child_status_change): Remove the setting of
4495         record_at_most_one_child for the !WNOHANG case.
4497 2012-11-17  Paul Eggert  <eggert@cs.ucla.edu>
4499         Fix problems in ns port found by static checking.
4500         * nsterm.m: Include <pthread.h>, for pthread_mutex_lock etc.
4501         (hold_event, setPosition:portion:whole:): Send SIGIO only to self,
4502         not to process group.
4503         (ns_select): Use emacs_write, not write, as that's more robust
4504         in the presence of signals.
4505         (fd_handler:): Check for read errors.
4507 2012-11-16  Glenn Morris  <rgm@gnu.org>
4509         * editfns.c (Fmessage): Mention message-log-max.  (Bug#12849)
4511 2012-11-16  Stefan Monnier  <monnier@iro.umontreal.ca>
4513         * eval.c (Finteractive_p): Revert lexbind-merge mishap.
4515 2012-11-16  Eli Zaretskii  <eliz@gnu.org>
4517         * w32proc.c (timer_loop): Make sure SuspendThread and ResumeThread
4518         use the same value of thread handle.
4519         (start_timer_thread): If the timer thread exited (due to error),
4520         clean up by closing the two handles it used.  Duplicate the caller
4521         thread's handle here, so it gets duplicated only once, when
4522         launching the timer thread.  Set priority of the timer thread, not
4523         the caller thread.
4524         (getitimer): Don't duplicate the caller thread's handle here.
4525         (Bug#12832)
4527 2012-11-16  Jan Djärv  <jan.h.d@swipnet.se>
4529         * nsterm.m (hold_event): Send SIGIO to make sure ns_read_socket is
4530         called (Bug#12834).
4532 2012-11-16  Paul Eggert  <eggert@cs.ucla.edu>
4534         Remove no-longer-used pty_max_bytes variable.
4535         * process.c (pty_max_bytes): Remove; unused.
4536         (send_process): Do not set it.
4538 2012-11-15  Juanma Barranquero  <lekktu@gmail.com>
4540         * makefile.w32-in ($(BLD)/dispnew.$(O), $(BLD)/emacs.$(O)):
4541         Update dependencies.
4543 2012-11-15  Paul Eggert  <eggert@cs.ucla.edu>
4545         * eval.c (mark_backtrace) [BYTE_MARK_STACK]: Remove stray '*'.
4546         This follows up on the 2012-09-29 patch that removed indirection
4547         for the 'function' field.  Reported by Sergey Vinokurov in
4548         <http://lists.gnu.org/archive/html/emacs-devel/2012-11/msg00263.html>.
4550 2012-11-14  Eli Zaretskii  <eliz@gnu.org>
4552         * w32.c (faccessat): Rename from sys_faccessat.  (No need to use a
4553         different name, as the MS runtime does not have such a function,
4554         and probably never will.)  All callers changed.  Ignore DIRFD
4555         value if PATH is an absolute file name, to match Posix spec
4556         better.  If AT_SYMLINK_NOFOLLOW is set in FLAGS, don't resolve
4557         symlinks.
4559 2012-11-14  Dmitry Antipov  <dmantipov@yandex.ru>
4561         * xdisp.c (echo_area_display, redisplay_internal):
4562         Omit redundant check whether frame_garbaged is set.
4564 2012-11-14  Paul Eggert  <eggert@cs.ucla.edu>
4566         Use faccessat, not access, when checking file permissions (Bug#12632).
4567         This fixes a bug that has been present in Emacs since its creation.
4568         It was reported by Chris Torek in 1983 even before GNU Emacs existed,
4569         which must set some sort of record.  (Torek's bug report was against
4570         a predecessor of GNU Emacs, but GNU Emacs happened to have the
4571         same common flaw.)  See Torek's Usenet posting
4572         "setuid/setgid programs & Emacs" Article-I.D.: sri-arpa.858
4573         Posted: Fri Apr  8 14:18:56 1983.
4574         * Makefile.in (LIB_EACCESS): New macro.
4575         (LIBES): Use it.
4576         * callproc.c (init_callproc):
4577         * charset.c (init_charset):
4578         * fileio.c (check_existing, check_executable, check_writable)
4579         (Ffile_readable_p):
4580         * lread.c (openp, load_path_check):
4581         * process.c (allocate_pty):
4582         * xrdb.c (file_p):
4583         Use effective UID when checking permissions, not real UID.
4584         * callproc.c (init_callproc):
4585         * charset.c (init_charset):
4586         * lread.c (load_path_check, init_lread):
4587         Test whether directories are accessible, not merely whether they exist.
4588         * conf_post.h (GNULIB_SUPPORT_ONLY_AT_FDCWD): New macro.
4589         * fileio.c (check_existing, check_executable, check_writable)
4590         (Ffile_readable_p):
4591         Use symbolic names instead of integers for the flags, as they're
4592         portable now.
4593         (check_writable): New arg AMODE.  All uses changed.
4594         Set errno on failure.
4595         (Ffile_readable_p): Use faccessat, not stat + open + close.
4596         (Ffile_writable_p): No need to call check_existing + check_writable.
4597         Just call check_writable and then look at errno.  This saves a syscall.
4598         dir should never be nil; replace an unnecessary runtime check
4599         with an eassert.  When checking the parent directory of a nonexistent
4600         file, check that the directory is searchable as well as writable, as
4601         we can't create files in unsearchable directories.
4602         (file_directory_p): New function, which uses 'stat' on most platforms
4603         but faccessat with D_OK (for efficiency) if WINDOWSNT.
4604         (Ffile_directory_p, Fset_file_times): Use it.
4605         (file_accessible_directory_p): New function, which uses a single
4606         syscall for efficiency.
4607         (Ffile_accessible_directory_p): Use it.
4608         * xrdb.c (file_p): Use file_directory_p.
4609         * lisp.h (file_directory_p, file_accessible_directory_p): New decls.
4610         * lread.c (openp): When opening a file, use fstat rather than
4611         stat, as that avoids a permissions race.  When not opening a file,
4612         use file_directory_p rather than stat.
4613         (dir_warning): First arg is now a usage string, not a format.
4614         Use errno.  All uses changed.
4615         * nsterm.m (ns_term_init): Remove unnecessary call to file-readable
4616         that merely introduced a race.
4617         * process.c, sysdep.c, term.c: All uses of '#ifdef O_NONBLOCK'
4618         changed to '#if O_NONBLOCK', to accommodate gnulib O_* style,
4619         and similarly for the other O_* flags.
4620         * w32.c (sys_faccessat): Rename from sys_access and switch to
4621         faccessat's API.  All uses changed.
4622         * xrdb.c: Do not include <sys/stat.h>; no longer needed.
4623         (magic_db): Rename from magic_file_p.
4624         (magic_db, search_magic_path): Return an XrmDatabase rather than a
4625         char *, so that we don't have to test for file existence
4626         separately from opening the file for reading.  This removes a race
4627         fixes a permission-checking problem, and simplifies the code.
4628         All uses changed.
4629         (file_p): Remove; no longer needed.
4631 2012-11-13  Dmitry Antipov  <dmantipov@yandex.ru>
4633         Omit glyphs initialization at startup.
4634         * dispnew.c (glyphs_initialized_initially_p): Remove.
4635         (adjust_frame_glyphs_initially): Likewise.  Adjust users.
4636         (Fredraw_frame): Move actual code from here...
4637         (redraw_frame): ...to here.  Add eassert.  Adjust comment.
4638         (Fredraw_display): Use redraw_frame.
4639         * xdisp.c (clear_garbaged_frames): Likewise.
4641 2012-11-13  Eli Zaretskii  <eliz@gnu.org>
4643         * xdisp.c (decode_mode_spec): Limit the value of WIDTH argument
4644         passed to pint2str and pint2hrstr to be at most the size of the
4645         frame's decode_mode_spec_buffer.  This avoids crashes with very
4646         large values of FIELD_WIDTH argument to decode_mode_spec.
4647         (Bug#12867)
4649 2012-11-13  Paul Eggert  <eggert@cs.ucla.edu>
4651         Fix a race with verify-visited-file-modtime (Bug#12863).
4652         Since at least 1991 Emacs has ignored an mtime difference of no
4653         more than one second, but my guess is that this was to work around
4654         file system bugs that were fixed long ago.  Since the race is
4655         causing problems now, let's remove that code.
4656         * fileio.c (Fverify_visited_file_modtime): Do not accept a file
4657         whose time stamp is off by no more than a second.  Insist that the
4658         file time stamps match exactly.
4660 2012-11-12  Dmitry Antipov  <dmantipov@yandex.ru>
4662         * frame.h (struct frame): Convert external_tool_bar member to
4663         1-bit unsigned bitfield.
4664         * termhooks.h (struct terminal): Remove mouse_moved member since
4665         all users are long dead.  Adjust comment on mouse_position_hook.
4667 2012-11-12  Dmitry Antipov  <dmantipov@yandex.ru>
4669         Simplify by using FOR_EACH_FRAME here and there.
4670         * frame.c (next_frame, prev_frame, other_visible_frames)
4671         (delete_frame, visible-frame-list): Use FOR_EACH_FRAME.
4672         * w32term.c (x_window_to_scroll_bar): Likewise.
4673         * window.c (window_list): Likewise.
4674         * xdisp.c (x_consider_frame_title): Likewise.
4675         * xfaces.c ( Fdisplay_supports_face_attributes_p): Likewise.
4676         * xfns.c (x_window_to_frame, x_any_window_to_frame)
4677         (x_menubar_window_to_frame, x_top_window_to_frame): Likewise.
4678         * xmenu.c (menubar_id_to_frame): Likewise.
4679         * xselect.c (frame_for_x_selection): Likewise.
4680         * xterm.c (x_frame_of_widget, x_window_to_scroll_bar)
4681         (x_window_to_menu_bar): Likewise.
4682         * w32fns.c (x_window_to_frame): Likewise.  Adjust comment.
4684 2012-11-12  Paul Eggert  <eggert@cs.ucla.edu>
4686         * data.c (Qdefalias_fset_function): Now static.
4688         Another tweak to vectorlike_header change.
4689         * alloc.c (struct Lisp_Vectorlike_Free, NEXT_IN_FREE_LIST):
4690         Remove, and replace all uses with ...
4691         (next_in_free_list, set_next_in_free_list):
4692         New functions, which respect C's aliasing rules better.
4694 2012-11-11  Paul Eggert  <eggert@cs.ucla.edu>
4696         * window.c (list4i): Rename from 'quad'.  All uses changed.
4697         Needed because <sys/types.h> defines 'quad' on Solaris 10.
4699 2012-11-11  Juanma Barranquero  <lekktu@gmail.com>
4701         * xdisp.c (start_hourglass) [HAVE_NTGUI]: Add block to silence
4702         warning about mixing declarations and code in ISO C90.
4704 2012-11-10  Martin Rudalics  <rudalics@gmx.at>
4706         * window.c (Fsplit_window_internal): Set combination limit of
4707         new parent window to t iff Vwindow_combination_limit is t;
4708         fixing a regression introduced with the change from 2012-09-22.
4709         (Fset_window_combination_limit): Fix doc-string.
4711 2012-11-10  Eli Zaretskii  <eliz@gnu.org>
4713         * xdisp.c (try_scrolling): Fix correction of aggressive-scroll
4714         amount when the scroll margins are too large.  When scrolling
4715         backwards in the buffer, give up if cannot reach point or the
4716         scroll margin within a reasonable number of screen lines.
4717         Fixes point position in window under scroll-up/down-aggressively when
4718         point is positioned many lines beyond the window top/bottom.
4719         (Bug#12811)
4721         * ralloc.c (relinquish): If real_morecore fails to return memory
4722         to the system, don't crash; instead, leave the last heap
4723         unchanged and return.  (Bug#12774)
4725 2012-11-09  Stefan Monnier  <monnier@iro.umontreal.ca>
4727         * lisp.h (AUTOLOADP): New macro.
4728         * eval.c (Fautoload): Don't attach to loadhist, call Fdefalias instead.
4729         * data.c (Ffset): Remove special ad-advice-info handling.
4730         (Fdefalias): Handle autoload definitions and new Qdefalias_fset_function.
4731         (Fsubr_arity): CSE.
4732         (Finteractive_form): Simplify.
4733         (Fquo): Don't insist on having at least 2 arguments.
4734         (Qdefalias_fset_function): New var.
4736 2012-11-09  Jan Djärv  <jan.h.d@swipnet.se>
4738         * image.c (xpm_make_color_table_h): Change to hashtest_equal.
4740         * nsfont.m (Qcondensed, Qexpanded): New variables.
4741         (ns_descriptor_to_entity): Restore Qcondensed, Qexpanded setting.
4742         (syms_of_nsfont): Defsym Qcondensed, Qexpanded.
4744 2012-11-09  Dmitry Antipov  <dmantipov@yandex.ru>
4746         Fix recently introduced crash on MS-Windows (Bug#12839).
4747         * w32term.h (struct scroll_bar): Use convenient header.
4748         (SCROLL_BAR_VEC_SIZE): Remove.
4749         * w32term.c (x_scroll_bar_create): Use VECSIZE.
4751 2012-11-09  Dmitry Antipov  <dmantipov@yandex.ru>
4753         Tweak last vectorlike_header change.
4754         * alloc.c (struct Lisp_Vectorlike_Free): Special type to represent
4755         vectorlike object on the free list.  This is introduced to avoid
4756         some (but not all) pointer casting and aliasing problems, see
4757         http://lists.gnu.org/archive/html/emacs-devel/2012-11/msg00105.html.
4758         * .gdbinit (pvectype, pvecsize): New commands to examine vectorlike
4759         objects.
4760         (xvectype, xvecsize): Use them to examine Lisp_Object values.
4762 2012-11-09  Jan Djärv  <jan.h.d@swipnet.se>
4764         * nsfont.m (ns_descriptor_to_entity): Qcondensed and Qexpanded has
4765         been removed, so remove them here also.
4767 2012-11-09  Stefan Monnier  <monnier@iro.umontreal.ca>
4769         * doc.c (Fdocumentation): Handle new property
4770         dynamic-docstring-function to replace the old ad-advice-info.
4772 2012-11-09  Paul Eggert  <eggert@cs.ucla.edu>
4774         * fns.c (Qeql, hashtest_eq): Now static.
4776 2012-11-08  Stefan Monnier  <monnier@iro.umontreal.ca>
4778         * lisp.h (XHASH): Redefine to be imperfect and fit in a Lisp int.
4779         * fns.c (hashfn_eq, hashfn_eql, sxhash):
4780         * profiler.c (hashfn_profiler): Don't use XUINT on non-integers.
4781         * buffer.c (compare_overlays): Use XLI rather than XHASH.
4783 2012-11-08  Paul Eggert  <eggert@cs.ucla.edu>
4785         Use same hash function for hashfn_profiler as for hash_string etc.
4786         * fns.c (SXHASH_COMBINE): Remove.  All uses replaced by sxhash_combine.
4787         * lisp.h (sxhash_combine): New inline function, with the contents
4788         of the old SXHASH_COMBINE.
4789         * profiler.c (hashfn_profiler): Use it, instead of having a
4790         special hash function containing a comparison that always yields 1.
4792 2012-11-08  Stefan Monnier  <monnier@iro.umontreal.ca>
4794         * xfaces.c (Qultra_light, Qreverse_oblique, Qreverse_italic)
4795         (Qultra_condensed, Qextra_condensed, Qcondensed, Qsemi_condensed)
4796         (Qsemi_expanded, Qextra_expanded, Qexpanded, Qultra_expanded):
4797         Remove unused vars.
4799 2012-11-08  Jan Djärv  <jan.h.d@swipnet.se>
4801         * image.c (xpm_make_color_table_h): Fix compiler error because
4802         make_hash_table changed.
4804 2012-11-08  Thomas Kappler  <tkappler@gmail.com>  (tiny change)
4806         * nsfont.m (ns_findfonts): Handle empty matchingDescs (Bug#11541).
4808 2012-11-08  Stefan Monnier  <monnier@iro.umontreal.ca>
4810         Use ad-hoc comparison function for the profiler's hash-tables.
4811         * profiler.c (Qprofiler_backtrace_equal, hashtest_profiler): New vars.
4812         (make_log): Use them.
4813         (handle_profiler_signal): Don't inhibit quit any longer since we don't
4814         call Fequal any more.
4815         (Ffunction_equal): New function.
4816         (cmpfn_profiler, hashfn_profiler): New functions.
4817         (syms_of_profiler): Initialize them.
4818         * lisp.h (struct hash_table_test): New struct.
4819         (struct Lisp_Hash_Table): Use it.
4820         * alloc.c (mark_object): Mark hash_table_test fields of hash tables.
4821         * fns.c (make_hash_table): Take a struct to describe the test.
4822         (cmpfn_eql, cmpfn_equal, cmpfn_user_defined, hashfn_eq, hashfn_eql)
4823         (hashfn_equal, hashfn_user_defined): Adjust to new calling convention.
4824         (hash_lookup, hash_remove_from_table): Move assertion checking of
4825         hashfn result here.  Check hash-equality before calling cmpfn.
4826         (Fmake_hash_table): Adjust call to make_hash_table.
4827         (hashtest_eq, hashtest_eql, hashtest_equal): New structs.
4828         (syms_of_fns): Initialize them.
4829         * emacs.c (main): Move syms_of_fns earlier.
4830         * xterm.c (syms_of_xterm):
4831         * category.c (hash_get_category_set): Adjust call to make_hash_table.
4832         * print.c (print_object): Adjust to new hash-table struct.
4833         * composite.c (composition_gstring_put_cache): Adjust to new hashfn.
4835 2012-11-08  Eli Zaretskii  <eliz@gnu.org>
4837         * w32fns.c (modifier_set): Fix handling of Scroll Lock when the
4838         value of w32-scroll-lock-modifier is neither nil nor one of the
4839         known key modifiers.  (Bug#12806)
4841 2012-11-08  Dmitry Antipov  <dmantipov@yandex.ru>
4843         Shrink struct vectorlike_header to the only size field.
4844         * lisp.h (enum pvec_type): Avoid explicit enum member values.
4845         Adjust comment.
4846         (enum More_Lisp_Bits): Change PSEUDOVECTOR_SIZE_BITS and
4847         PVEC_TYPE_MASK to arrange new bitfield in the vector header.
4848         (PSEUDOVECTOR_REST_BITS, PSEUDOVECTOR_REST_MASK): New members.
4849         (PSEUDOVECTOR_AREA_BITS): New member used to extract subtype
4850         information from the vector header.  Adjust comment.
4851         (XSETPVECTYPE, XSETPVECTYPESIZE, XSETTYPED_PSEUDOVECTOR)
4852         (PSEUDOVECTOR_TYPEP, DEFUN): Adjust to match new vector header
4853         layout.
4854         (XSETSUBR, SUBRP): Adjust to match new Lisp_Subr layout.
4855         (struct vectorlike_header): Remove next member.  Adjust comment.
4856         (struct Lisp_Subr): Add convenient header.  Adjust comment.
4857         (allocate_pseudovector): Adjust prototype.
4858         * alloc.c (mark_glyph_matrix, mark_face_cache, allocate_string)
4859         (sweep_string, lisp_malloc): Remove useless prototypes.
4860         (enum mem_type): Adjust comment.
4861         (NEXT_IN_FREE_LIST): New macro.
4862         (SETUP_ON_FREE_LIST): Adjust XSETPVECTYPESIZE usage.
4863         (Fmake_bool_vector): Likewise.
4864         (struct large_vector): New type to represent allocation unit for
4865         the vectors with the memory footprint more than VBLOOCK_BYTES_MAX.
4866         (large_vectors): Change type to struct large_vector.
4867         (allocate_vector_from_block): Simplify.
4868         (PSEUDOVECTOR_NBYTES): Replace with...
4869         (vector_nbytes): ...new function.  Adjust users.
4870         (sweep_vectors): Adjust processing of large vectors.
4871         (allocate_vectorlike): Likewise.
4872         (allocate_pseudovector): Change type of 3rd arg to enum pvec_type.
4873         Add easserts.  Adjust XSETPVECTYPESIZE usage.
4874         (allocate_buffer): Use BUFFER_PVEC_INIT.
4875         (live_vector_p): Adjust to match large vector.
4876         * buffer.c (init_buffer_once): Use BUFFER_PVEC_INIT.
4877         * buffer.h (struct buffer): Add next member.
4878         (BUFFER_LISP_SIZE, BUFFER_REST_SIZE, BUFFER_PVEC_INIT):
4879         New macros.
4880         (FOR_EACH_BUFFER): Adjust to match struct buffer change.
4881         * fns.c (internal_equal): Adjust to match enum pvec_type change.
4882         (copy_hash_table): Adjust to match vector header change.
4883         * lread.c (defsubr): Use XSETPVECTYPE.
4884         * .gdbinit (xpr, xbacktrace): Adjust to match vector header change.
4885         (xvectype): Likewise.  Print PVEC_NORMAL_VECTOR for regular vectors.
4886         (xvecsize): New command.
4888 2012-11-08  Dmitry Antipov  <dmantipov@yandex.ru>
4890         * keyboard.c (event_to_kboard): Do not dereference
4891         frame_or_window field of SELECTION_REQUEST_EVENT
4892         and SELECTION_CLEAR_EVENT events (Bug#12814).
4893         * xterm.h (struct selection_input_event): Adjust comment.
4895 2012-11-07  Eli Zaretskii  <eliz@gnu.org>
4897         * w32fns.c (modifier_set): Don't report modifiers from toggle key,
4898         such as Scroll Lock, if the respective keys are treated as
4899         function keys, not as modifiers.  This avoids destroying non-ASCII
4900         keyboard input when Scroll Lock is toggled ON.  (Bug#12806)
4902 2012-11-07  Dmitry Antipov  <dmantipov@yandex.ru>
4904         * xfns.c (Fx_wm_set_size_hint): Use check_x_frame.  Adjust docstring.
4906 2012-11-06  Paul Eggert  <eggert@cs.ucla.edu>
4908         Restore some duplicate definitions (Bug#12814).
4909         This undoes part of the 2012-11-03 changes.  Some people build
4910         with plain -g rather than with -g3, and they need the duplicate
4911         definitions for .gdbinit to work; see <http://bugs.gnu.org/12814#26>.
4912         * lisp.h (GCTYPEBITS, ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG, VALMASK):
4913         Define as macros, as well as as enums or as constants.
4915 2012-11-06  Jan Djärv  <jan.h.d@swipnet.se>
4917         * nsterm.m (convert_ns_to_X_keysym, keyDown:): Add NSNumericPadKeyMask
4918         to keypad keys (Bug#12816).
4920 2012-11-06  Paul Eggert  <eggert@cs.ucla.edu>
4922         Minor adjustments of recently-changed frame functions.
4923         * buffer.c (Fbuffer_list): Omit CHECK_FRAME, since arg is already
4924         known to be a frame (we're in the FRAMEP branch).
4925         * lisp.h (Qframep): Remove decl.  frame.h declares this.
4926         * window.c (quad): Args are of type EMACS_INT, not ptrdiff_t,
4927         since they're meant for Lisp fixnum values.
4929 2012-11-06  Dmitry Antipov  <dmantipov@yandex.ru>
4931         * window.c (Fwindow_combination_limit): Revert to the only
4932         required argument and adjust docstring as suggested in
4933         http://lists.gnu.org/archive/html/emacs-diffs/2012-11/msg01082.html
4934         by Martin Rudalics <rudalics@gmx.at>.
4936 2012-11-06  Dmitry Antipov  <dmantipov@yandex.ru>
4938         Widely used frame validity and checking functions.
4939         * frame.h (decode_live_frame, decode_any_frame): Add prototypes.
4940         * frame.c (decode_live_frame, decode_any_frame): New functions.
4941         (delete_frame, Fredirect_frame_focus, Fframe_parameters)
4942         (Fframe_parameter, Fframe_char_height, Fframe_char_width)
4943         (Fframe_pixel_height, Fframe_pixel_width, Ftool_bar_pixel_width)
4944         (Fframe_pointer_visible_p): Use decode_any_frame.
4945         (Fmake_frame_visible, Fmake_frame_invisible, Ficonify_frame)
4946         (Fraise_frame, Flower_frame, Fmodify_frame_parameters)
4947         (Fset_frame_height, Fset_frame_width): Use decode_live_frame.
4948         (Fframe_focus): Likewise.  Allow zero number of arguments.
4949         Adjust docstring.
4950         (frame_buffer_list, frame_buffer_predicate): Remove.
4951         * lisp.h (frame_buffer_predicate): Remove prototype.
4952         * buffer.c (Fother_buffer): Use decode_any_frame.
4953         * xdisp.c (Ftool_bar_lines_needed): Likewise.
4954         * xfaces.c (Fcolor_gray_p, Fcolor_supported_p): Likewise.
4955         * font.c (Ffont_face_attributes, Ffont_family_list, Fopen_font)
4956         (Fclose_font, Ffont_info): Use decode_live_frame.
4957         * fontset.c (check_fontset_name): Likewise.
4958         * terminal.c (Fframe_terminal): Likewise.
4959         * w32fns.c (check_x_frame): Likewise.
4960         * window.c (Fminibuffer_window, Fwindow_at)
4961         (Fcurrent_window_configuration): Likewise.
4962         (Frun_window_configuration_change_hook, Fwindow_resize_apply):
4963         Likewise.  Allow zero number of arguments.  Adjust docstring.
4964         * dispnew.c (Fredraw_frame): Likewise.
4965         * xfaces.c (frame_or_selected_frame): Remove.
4966         (Fx_list_fonts, Finternal_get_lisp_face_attribute, Fface_font)
4967         (Finternal_lisp_face_equal_p, Finternal_lisp_face_empty_p)
4968         (Fframe_face_alist): Use decode_live_frame.
4969         * xfns.c (check_x_frame): Likewise.
4971 2012-11-06  Dmitry Antipov  <dmantipov@yandex.ru>
4973         * window.c (quad): New function.
4974         (Fwindow_edges, Fwindow_pixel_edges, Fwindow_inside_edges)
4975         (Fwindow_absolute_pixel_edges, Fwindow_inside_absolute_pixel_edges)
4976         (Fwindow_inside_pixel_edges, Fpos_visible_in_window_p)
4977         (Fwindow_line_height): Use it.
4978         (Fwindow_fringes): Use list3.
4979         (Fwindow_scroll_bars): Use list4.
4980         (Fwindow_frame, Fwindow_top_child, Fwindow_left_child)
4981         (Fwindow_combination_limit): Allow zero number of arguments.
4983 2012-11-05  Eli Zaretskii  <eliz@gnu.org>
4985         * makefile.w32-in ($(BLD)/w32fns.$(O)): Depend on $(NT_INC)/unistd.h.
4987         * w32fns.c: Include unistd.h, to avoid compiler warnings on Cygwin.
4988         (emacs_abort) [CYGWIN]: Don't call _open_osfhandle; instead, use
4989         file descriptor 2 for standard error.  (Bug#12805)
4991 2012-11-05  Chong Yidong  <cyd@gnu.org>
4993         * process.c (wait_reading_process_output): Revert previous change.
4995 2012-11-05  Paul Eggert  <eggert@cs.ucla.edu>
4997         Assume at least POSIX.1-1988 for getpgrp, setpgid, setsid (Bug#12800).
4998         This removes code that has been obsolete since around 1990.
4999         * callproc.c (Fcall_process):
5000         * emacs.c (main):
5001         * process.c (create_process):
5002         * term.c (dissociate_if_controlling_tty):
5003         Assume setsid exists.
5004         * callproc.c (child_setup): Assume setpgid exists and behaves as
5005         per POSIX.1-1988 or later.
5006         * conf_post.h (setpgid) [!HAVE_SETPGID]: Remove.
5007         * emacs.c (shut_down_emacs):
5008         * sysdep.c (sys_suspend, init_foreground_group):
5009         Assume getpgrp behaves as per POSIX.1-1998 or later.
5010         * msdos.c (setpgrp): Remove.
5011         (tcgetpgrp, setpgid, setsid): New functions.
5012         * systty.h (EMACS_GETPGRP): Remove.  All callers now use getpgrp.
5013         * term.c (no_controlling_tty): Remove; unused.
5014         * w32proc.c (setpgrp): Remove.
5015         (setsid, tcgetpgrp): New functions.
5017         Simplify by assuming __fpending.
5018         * dispnew.c: Include <fpending.h>, not <stdio_ext.h>.
5019         (update_frame_1): Use __fpending, not PENDING_OUTPUT_COUNT.
5020         Do not assume that __fpending's result fits in int.
5022 2012-11-04  Paul Eggert  <eggert@cs.ucla.edu>
5024         Remove EMACS_OUTQSIZE+sleep hack.
5025         * dispnew.c (update_frame_1): Remove hack for terminals slower
5026         than 2400 bps, which throttled Emacs by having it sleep.
5027         This code hasn't worked since at least 2007, when the multi-tty stuff
5028         was added, and anyway those old terminals are long dead.
5029         * systty.h (EMACS_OUTQSIZE): Remove; unused.  The macro isn't used even
5030         without the dispnew.c change, as dispnew.c doesn't include systty.h.
5032         Fix data-loss with --version (Bug#9574).
5033         * emacs.c (close_output_streams): Use strerror, not emacs_strerror,
5034         as we can't assume that emacs_strerror is initialized, and strerror
5035         is good enough here.
5036         (main): Invoke atexit earlier, to catch earlier instances of
5037         sending data to stdout and exiting, e.g., "emacs --version >/dev/full".
5039 2012-11-04  Michael Marchionna  <tralfaz@pacbell.net>
5041         * nsterm.m: Add NSClearLineFunctionKey and keypad keys (Bug#8680).
5042         (keyDown): Remap keypad keys to X11 virtual key codes.
5044 2012-11-03  Paul Eggert  <eggert@cs.ucla.edu>
5046         Fix data-loss with --batch (Bug#9574).
5047         * emacs.c: Include <close-stream.h>.
5048         (close_output_streams): New function.
5049         (main): Pass it to atexit, so that Emacs closes stdout and stderr
5050         and handles errors appropriately.
5051         (Fkill_emacs): Don't worry about flushing, as close_output_stream
5052         does that now.
5054         Fix a race condition that causes Emacs to mess up glib (Bug#8855).
5055         The symptom is a diagnostic "GLib-WARNING **: In call to
5056         g_spawn_sync(), exit status of a child process was requested but
5057         SIGCHLD action was set to SIG_IGN and ECHILD was received by
5058         waitpid(), so exit status can't be returned."  The diagnostic
5059         is partly wrong, as the SIGCHLD action is not set to SIG_IGN.
5060         The real bug is a race condition between Emacs and glib: Emacs
5061         does a waitpid (-1, ...) and reaps glib's subprocess by mistake,
5062         so that glib can't find it.  Work around the bug by invoking
5063         waitpid only on subprocesses that Emacs itself creates.
5064         * process.c (create_process, record_child_status_change):
5065         Don't use special value -1 in pid field, as the caller now must
5066         know the pid rather than having the callee infer it.
5067         The inference was sometimes incorrect anyway, due to another race.
5068         (create_process): Set new 'alive' member if child is created.
5069         (process_status_retrieved): New function.
5070         (record_child_status_change): Use it.
5071         Accept negative 1st argument, which means to wait for the
5072         processes that Emacs already knows about.  Move special-case code
5073         for DOS_NT (which lacks WNOHANG) here, from caller.  Keep track of
5074         processes that have already been waited for, by testing and
5075         clearing new 'alive' member.
5076         (CAN_HANDLE_MULTIPLE_CHILDREN): Remove, as record_child_status_change
5077         now does this internally.
5078         (handle_child_signal): Let record_child_status_change do all
5079         the work, since we do not want to reap all exited child processes,
5080         only the child processes that Emacs itself created.
5081         * process.h (Lisp_Process): New boolean member 'alive'.
5083         Omit duplicate definitions no longer needed with gcc -g3.
5084         * lisp.h (GCTYPEBITS, GCALIGNMENT, ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG)
5085         (VALMASK, MOST_POSITIVE_FIXNUM, MOST_NEGATIVE_FIXNUM):
5086         Define only as macros.  There's no longer any need to also define
5087         these symbols as enums or as constants, since we now assume
5088         gcc -g3 when debugging.
5090 2012-11-03  Eli Zaretskii  <eliz@gnu.org>
5092         * lisp.mk: Adjust comments to the fact that term/internal is now
5093         loaded from loadup.el.
5095         * msdos.c (msdos_abort): Rename from emacs_abort, and make static.
5096         (msdos_fatal_signal): New function.
5097         (XMenuActivate): Adjust the call to kbd_buffer_events_waiting to
5098         its argument list.
5100         * conf_post.h (_GL_EXECINFO_INLINE) [MSDOS]: Define to "inline"
5101         for GCC versions before 4.
5102         (emacs_raise): Define to call msdos_fatal_signal.
5104         * xdisp.c (init_from_display_pos): Fix initialization of the bidi
5105         iterator when starting in the middle of a display or overlay
5106         string.  (Bug#12745)
5108 2012-11-03  Chong Yidong  <cyd@gnu.org>
5110         * process.c (wait_reading_process_output): Clean up the last
5111         change.
5113 2012-11-03  Jim Paris  <jim@jtan.com>  (tiny change)
5115         * process.c (wait_reading_process_output): Avoid a race condition
5116         with SIGIO delivery (Bug#11536).
5118 2012-11-03  Chong Yidong  <cyd@gnu.org>
5120         * buffer.c (cursor_type): Untabify docstring.
5122 2012-11-03  Dmitry Antipov  <dmantipov@yandex.ru>
5124         * frame.h (struct frame): Drop can_have_scroll_bars member
5125         which is meaningless for a long time.  Adjust comments.
5126         (FRAME_CAN_HAVE_SCROLL_BARS): Remove.
5127         * frame.c, nsfns.m, term.c, w32fns.c, xfns.c: Adjust users.
5129 2012-11-03  Dmitry Antipov  <dmantipov@yandex.ru>
5131         * window.c (decode_next_window_args): Update window arg after
5132         calling decode_live_window and so fix crash reported at
5133         http://lists.gnu.org/archive/html/emacs-devel/2012-11/msg00035.html
5134         by Juanma Barranquero <lekktu@gmail.com>.
5135         (Fwindow_body_width, Fwindow_body_height): Simplify a bit.
5136         * font.c (Ffont_at): Likewise.
5138 2012-11-01  Jan Djärv  <jan.h.d@swipnet.se>
5140         * widget.c (resize_cb): New function.
5141         (EmacsFrameRealize): Add resize_cb as event handler (Bug#12733).
5142         (EmacsFrameResize): Check if all is up to date before changing frame
5143         size.
5145 2012-11-02  Eli Zaretskii  <eliz@gnu.org>
5147         Implement backtrace output for fatal errors on MS-Windows.
5148         * w32fns.c (CaptureStackBackTrace_proc): New typedef.
5149         (BACKTRACE_LIMIT_MAX): New macro.
5150         (w32_backtrace): New function.
5151         (emacs_abort): Use w32_backtrace when the user chooses not to
5152         attach a debugger.  Update the text of the abort dialog.
5154 2012-11-02  Dmitry Antipov  <dmantipov@yandex.ru>
5156         Window-related stuff cleanup here and there.
5157         * dispnew.c (Finternal_show_cursor, Finternal_show_cursor_p):
5158         Use decode_any_window.
5159         * fringe.c (Ffringe_bitmaps_at_pos): Likewise.
5160         * xdisp.c (Fformat_mode_line): Likewise.
5161         * font.c (Ffont_at): Use decode_live_window.
5162         * indent.c (Fcompute_motion, Fvertical_motion): Likewise.
5163         * window.c (decode_next_window_args): Likewise.
5164         (decode_any_window): Remove static.
5165         * window.h (decode_any_window): Add prototype.
5166         * lisp.h (CHECK_VALID_WINDOW, CHECK_LIVE_WINDOW): Move from here...
5167         * window.h: ...to here, redefine via WINDOW_VALID_P and WINDOW_LIVE_P,
5168         respectively.
5170 2012-11-02  Dmitry Antipov  <dmantipov@yandex.ru>
5172         Remove pad from struct input_event.
5173         * termhooks.h (struct input_event): Remove padding field.
5174         Adjust comment.
5175         * keyboard.c (event_to_kboard): Simplify because frame_or_window
5176         member is never cons for a long time.  Adjust comment.
5177         (mark_kboards): Adjust because SELECTION_REQUEST_EVENT and
5178         SELECTION_CLEAR_EVENT has no Lisp_Objects to mark.  Add comment.
5179         * xterm.c (handle_one_xevent): Do not initialize frame_or_window
5180         field of SELECTION_REQUEST_EVENT and SELECTION_CLEAR_EVENT.
5182 2012-11-01  Eli Zaretskii  <eliz@gnu.org>
5184         * w32proc.c (getpgrp, setpgid): New functions.  (Bug#12776)
5186 2012-10-31  Paul Eggert  <eggert@cs.ucla.edu>
5188         Fix crash when using Emacs as commit editor for git (Bug#12697).
5189         * callproc.c (setpgrp): Remove macro, as we now use setpgid
5190         and it is configured in conf_post.h.
5191         (Fcall_process): Don't invoke both setsid and setpgid; the former
5192         is enough, if it exists.
5193         * callproc.c (Fcall_process, child_setup):
5194         * process.c (create_process): Use setpgid.
5195         * conf_post.h (setpgid) [!HAVE_SETPGID]: New macro, which substitutes
5196         for the real thing.
5197         * dispnew.c (init_display): Initialize the foreground group
5198         if we are running a tty display.
5199         * emacs.c (main): Do not worry about setpgrp; init_display does it now.
5200         * lisp.h (init_foreground_group): New decl.
5201         * sysdep.c (inherited_pgroup): New static var.
5202         (init_foreground_group, tcsetpgrp_without_stopping)
5203         (narrow_foreground_group, widen_foreground_group): New functions.
5204         (init_sys_modes): Narrow foreground group.
5205         (reset_sys_modes): Widen foreground group.
5207 2012-10-31  Michael Albinus  <michael.albinus@gmx.de>
5209         * dbusbind.c: Fix cut'n'waste error.  Use HAVE_DBUS_VALIDATE_INTERFACE.
5211 2012-10-31  Martin Rudalics  <rudalics@gmx.at>
5213         * minibuf.c (read_minibuf): Restore current buffer since
5214         choose_minibuf_frame calling Fset_frame_selected_window may
5215         change it (Bug#12766).
5217 2012-10-30  Jan Djärv  <jan.h.d@swipnet.se>
5219         * frame.c (Fframe_pixel_height): Fix documentation (Bug#12733).
5221 2012-10-30  Kenichi Handa  <handa@gnu.org>
5223         * font.c (Ffont_at): If WINDOW is specified and it is not
5224         displaying the current buffer, signal an error.
5226 2012-10-29  Daniel Colascione  <dancol@dancol.org>
5228         * cygw32.h, cygw32.c (Qutf_16le, from_unicode, to_unicode):
5229         In preparation for fixing bug#12739, move these functions from
5230         here...
5232         * coding.h, coding.c: ... to here, and compile them only when
5233         WINDOWSNT or CYGWIN.  Moving these functions out of cygw32 proper
5234         lets us write cygw32-agnostic code for the HAVE_NTGUI case.
5236 2012-10-28  Eli Zaretskii  <eliz@gnu.org>
5238         * w32proc.c (TIMER_TICKS_PER_SEC): New macro.
5239         (timer_loop, getitimer, setitimer): Use it instead of
5240         CLOCKS_PER_SEC, which is no longer pertinent, since we don't use
5241         'clock'.
5242         (w32_get_timer_time): Use 10*TIMER_TICKS_PER_SEC instead of a
5243         literal 10000.
5245 2012-10-28  Jan Djärv  <jan.h.d@swipnet.se>
5247         * nsterm.m (NO_APPDEFINED_DATA): New define.
5248         (last_appdefined_event_data): New variable
5249         (last_appdefined_event): Remove.
5250         (ns_select): Initialize t from last_appdefined_event_data instead
5251         of [last_appdefined_event data1].
5252         (sendEvent:): Save [theEvent data1] to last_appdefined_event_data,
5253         remove last_appdefined_event (Bug#12698).
5255 2012-10-28  Stefan Monnier  <monnier@iro.umontreal.ca>
5257         * frame.c (x_set_font): Catch internal error.
5259 2012-10-27  Eli Zaretskii  <eliz@gnu.org>
5261         Avoid overflow in w32 implementation of interval timers.
5262         When possible, for ITIMER_PROF count only times the main thread
5263         actually executes.
5264         * w32proc.c <struct itimer_data>: 'expire' and 'reload' are now
5265         'volatile ULONGLONG' types.  All the other data which was
5266         previously clock_t is now ULONGLONG.  'terminate' is 'volatile int'.
5267         (GetThreadTimes_Proc): New typedef.
5268         (w32_get_timer_time): New function, returns a suitable time value
5269         for the timer.
5270         (timer_loop): Enter critical section when accessing ULONGLONG
5271         values of the itimer_data struct, as these accesses are no longer
5272         atomic.  Call 'w32_get_timer_time' instead of 'clock'.
5273         Remove unused variable.
5274         (init_timers): Initialize s_pfn_Get_Thread_Times.
5275         (start_timer_thread): Don't assign itimer->caller_thread here.
5276         (getitimer): Assign itimer->caller_thread here.
5277         (setitimer): Always call getitimer to get the value of ticks_now.
5278         (sys_spawnve): Avoid compiler warning about format mismatch.
5280 2012-10-26  Eli Zaretskii  <eliz@gnu.org>
5282         * w32fns.c (w32_wnd_proc) <WM_MOUSEMOVE>: Don't enable tracking of
5283         mouse movement events if the menu bar is active.  This avoids
5284         producing a busy "hour-glass" cursor by Windows if the mouse
5285         pointer is positioned over a tooltip shown for some menu item.
5287 2012-10-25  Paul Eggert  <eggert@cs.ucla.edu>
5289         Don't assume process IDs fit in int.
5290         * emacs.c (shut_down_emacs) [!DOS_NT]:
5291         * sysdep.c (sys_suspend) [SIGTSTP && !MSDOS]:
5292         * term.c (dissociate_if_controlling_tty) [!DOS_NT]:
5293         Use pid_t, not int, to store process IDs, as 'int'
5294         is not wide enough on a few platforms (e.g., AIX and IRIX).
5296 2012-10-23  Kenichi Handa  <handa@gnu.org>
5298         The following change is to make face-font-rescale-alist work
5299         correctly for non-ASCII fonts.
5301         * font.c (font_open_entity): Don't handle Vface_font_rescale_alist.
5302         (font_open_for_lface): Handle Vface_font_rescale_alist.
5304 2012-10-23  Chong Yidong  <cyd@gnu.org>
5306         * xfaces.c (Vfont_list_limit): Move unused variable to faces.el.
5308 2012-10-21  Jan Djärv  <jan.h.d@swipnet.se>
5310         * nsfont.m (nsfont_open, ns_glyph_metrics): Force integer advancement
5311         for screen font.
5312         (nsfont_draw): Turn off LCD-smoothing (Bug#11484).
5314         * xterm.c (x_focus_changed): Check if daemonp when sending focus in
5315         event (Bug#12681).
5317 2012-10-21  Glenn Morris  <rgm@gnu.org>
5319         * lisp.mk (lisp): Add cp51932.el and eucjp-ms.el.
5321 2012-10-20  Paul Eggert  <eggert@cs.ucla.edu>
5323         Port to OpenBSD 5.1.
5324         * frame.c (Fmouse_position, Fmouse_pixel_position):
5325         * xdisp.c (produce_stretch_glyph):
5326         Declare local vars only when they're needed.
5327         This is clearer and avoids a warning on OpenBSD about unused vars.
5328         * frame.h (FRAME_WINDOW_P): Always evaluate its argument.
5329         This is safer, and avoids OpenBSD warnings about unused vars.
5330         * keyboard.c (record_menu_key): Remove unnecessary decl.
5331         (poll_timer): Define only if POLL_FOR_INPUT is defined.
5332         * unexelf.c (ELFSIZE) [!ElfW]: Do not define if already defined,
5333         as our definition clashes with OpenBSD's.
5334         * xfaces.c (load_face_colors, check_lface_attrs)
5335         (get_lface_attributes_no_remap, get_lface_attributes)
5336         (lface_fully_specified_p, x_supports_face_attributes_p)
5337         (tty_supports_face_attributes_p, face_fontset, realize_face)
5338         (realize_x_face, realize_tty_face):
5339         Declare parameters to be Lisp_Object[LFACE_VECTOR_SIZE], not
5340         merely Lisp_Object *.  This is more informative and avoids
5341         a warning on OpenBSD about accessing beyond an object's size.
5343 2012-10-20  Chong Yidong  <cyd@gnu.org>
5345         * lread.c (Fload): Doc fix (Bug#12592).
5347 2012-10-19  Kazuhiro Ito  <kzhr@d1.dion.ne.jp>  (tiny change)
5349         * font.c (Ffont_at): Fix previous change.
5351 2012-10-19  Eli Zaretskii  <eliz@gnu.org>
5353         * puresize.h (BASE_PURESIZE): Bump the base value to 1700000.
5354         See http://lists.gnu.org/archive/html/emacs-devel/2012-10/msg00593.html
5355         for the reasons.
5357         * alloc.c (NSTATICS): Decrease to 0x800.
5359 2012-10-19  Stefan Monnier  <monnier@iro.umontreal.ca>
5361         * fns.c (Fnreverse): Include the problem element when signaling an
5362         error (bug#12677).
5364 2012-10-18  Jan Djärv  <jan.h.d@swipnet.se>
5366         * nsterm.m (ns_select): Check writefds before call to
5367         FD_ISSET (Bug#12668).
5369 2012-10-18  Daniel Colascione  <dancol@dancol.org>
5371         * alloc.c (NSTATICS): Increase from 0x650 to 0x1000
5372         (staticpro): If we run out of staticpro slots, die with an
5373         informative error instead of just calling emacs_abort.
5375 2012-10-18  Martin Rudalics  <rudalics@gmx.at>
5377         Fix two flaws reported by Dmitry Antipov.
5378         * window.c (Ftemp_output_buffer_show): Remove.
5379         (Fwindow_vscroll, Fset_window_vscroll): Use decode_live_window.
5380         (syms_of_window): Remove defsubr for Stemp_output_buffer_show.
5382 2012-10-17  Eli Zaretskii  <eliz@gnu.org>
5384         * makefile.w32-in ($(BLD)/w32.$(O)):
5385         ($(BLD)/vm-limit.$(O)):
5386         ($(BLD)/term.$(O)):
5387         ($(BLD)/unexw32.$(O)):
5388         ($(BLD)/fileio.$(O)):
5389         ($(BLD)/dispnew.$(O)): Update dependencies.
5391         * w32term.h (w32_initialize_display_info, initialize_w32_display):
5392         Add prototypes.
5394         * w32proc.c: Include ctype.h.
5396         * w32.h (init_environment, check_windows_init_file)
5397         (syms_of_ntproc, syms_of_ntterm, dostounix_filename)
5398         (unixtodos_filename, init_winsock, srandom, random, sys_pipe)
5399         (set_process_dir, sys_spawnve, register_child, sys_sleep, getwd)
5400         (sys_link): Add prototypes.
5402         * w32.c: Include w32select.h.
5403         (sys_access, e_malloc, sys_select): Add prototypes.
5404         (emacs_gnutls_pull): 'timeout' is now EMACS_TIME, not struct timeval.
5406         * vm-limit.c [WINDOWSNT]: Include w32heap.h.
5408         * unexw32.c: Include lisp.h and w32.h.
5410         * term.c [WINDOWSNT]: Include w32term.h.
5412         * process.c [WINDOWSNT]: Add prototype of sys_select.
5414         * fileio.c [WINDOWSNT]: Include w32.h.
5416         * dispnew.c [WINDOWSNT]: Include w32.h.
5418         * cygw32.c (Fcygwin_convert_path_to_windows)
5419         (Fcygwin_convert_path_from_windows): Use EQ to compare 2
5420         Lisp_Object values.  (Bug#12661)
5422         * w32fns.c (w32_msg_pump): Use XIL instead of casting an integer
5423         to Lisp_Object.  (Bug#12661)
5425 2012-10-17  Kenichi Handa  <handa@gnu.org>
5427         * xdisp.c (reseat_1): Make the information stored in it->cmp_it
5428         invalidate.
5430 2012-10-17  Dmitry Antipov  <dmantipov@yandex.ru>
5432         * buffer.c (Fkill_buffer): When unchaining the marker,
5433         reset its buffer pointer to NULL (Bug#12652).
5435 2012-10-17  Dmitry Antipov  <dmantipov@yandex.ru>
5437         Do not verify indirection counters of killed buffers (Bug#12579).
5438         * buffer.h (BUFFER_CHECK_INDIRECTION): New macro.
5439         * buffer.c (compact_buffer, set_buffer_internal_1): Use it.
5441 2012-10-16  Dmitry Antipov  <dmantipov@yandex.ru>
5443         * alloc.c (Fmake_byte_code): Fix typo in comment.
5444         * print.c (print_interval): Define as static to match prototype.
5445         * indent.c (disptab_matches_widthtab, recompute_width_table):
5446         Convert to eassert.
5448 2012-10-16  Dmitry Antipov  <dmantipov@yandex.ru>
5450         * editfns.c (get_system_name): Remove.
5451         * lisp.h (get_system_name): Remove prototype.
5452         * xrdb.c (getenv, getpwuid, getpwnam): Remove prototypes.
5453         (get_environ_db): Use Vsystem_name.  Avoid call to strlen.
5455 2012-10-15  Daniel Colascione  <dancol@dancol.org>
5457         * dbusbind.c: Add comment explaining reason for previous change.
5459 2012-10-15  Martin Rudalics  <rudalics@gmx.at>
5461         * window.c (Fwindow_end): Rewrite check whether cached position
5462         can be used (Bug#12600).
5463         (resize_frame_windows, grow_mini_window, shrink_mini_window):
5464         Set windows_or_buffers_changed.
5466 2012-10-15  Daniel Colascione  <dancol@dancol.org>
5468         * dbusbind.c: Fix cygw32 build break when compiling with dbus
5469         enabled by undefining the symbol "interface", which the platform
5470         headers define to something incompatible.
5472 2012-10-14  Daniel Colascione  <dancol@dancol.org>
5474         * image.c (init_tiff_functions, init_imagemagick_functions)
5475         (init_svg_functions): Fix cygw32 build break by using these
5476         functions only when WINDOWSNT _and_ HAVE_NTGUI.
5478 2012-10-14  Jan Djärv  <jan.h.d@swipnet.se>
5480         * nsterm.m (ns_select): Count fd:s in writefs also (Bug#12422).
5482 2012-10-13  Jan Djärv  <jan.h.d@swipnet.se>
5484         * gtkutil.c (xg_set_widget_bg): Divide by 65535 (Bug#12612).
5486 2012-10-13  HANATAKA, Shinya  <bogytech@gmail.com>  (tiny change)
5488         * coding.c (detect_coding): Set coding->id before calling
5489         this->detector.
5491 2012-10-13  Andreas Schwab  <schwab@linux-m68k.org>
5493         * fileio.c: Formatting fixes.
5495 2012-10-13  Paul Eggert  <eggert@cs.ucla.edu>
5497         Fix some stat-related races.
5498         * fileio.c (Fwrite_region): Avoid race condition if a file is
5499         removed or renamed by some other process immediately after Emacs
5500         writes it but before Emacs stats it.  Do not assume that stat (or
5501         fstat) succeeds.
5502         * image.c (slurp_file): Resolve the file name with fopen + fstat
5503         rather than stat + fopen.
5504         (pbm_read_file) [0]: Remove unused code with stat race.
5505         * process.c (allocate_pty) [HAVE_PTYS && !PTY_ITERATION && !PTY_OPEN]:
5506         Remove ineffective code with stat race.
5508 2012-10-12  Stefan Monnier  <monnier@iro.umontreal.ca>
5510         * doc.c (get_doc_string): Don't signal an error if the file is missing.
5512 2012-10-12  Jan Djärv  <jan.h.d@swipnet.se>
5514         * nsterm.m (hold_event_q): New static variable.
5515         (EV_TRAILER, sendScrollEventAtLoc:fromEvent:): Call hold_event if
5516         ! q_event_ptr.
5517         (hold_event): New function.
5518         (ns_read_socket): If hold_event_q have events, store them and
5519         return (Bug#12384).
5520         (setPosition:portion:whole:): Send SIGIO to ourselves if apploopnr
5521         is zero (Bug#12384).
5523 2012-10-12  Juanma Barranquero  <lekktu@gmail.com>
5525         * makefile.w32-in ($(BLD)/w32select.$(O)): Update dependencies.
5527 2012-10-12  Eli Zaretskii  <eliz@gnu.org>
5529         * makefile.w32-in ($(BLD)/fileio.$(O)): Add sys/file.h.
5531         * fileio.c (check_existing): New function.
5532         (make_temp_name, Ffile_exists_p, Ffile_writable_p): Call it
5533         instead of calling 'stat', when what's needed is to check whether
5534         a file exists.  This avoids expensive system calls on MS-Windows.
5535         (Bug#12587)
5537         * w32.c (init_environment): Call 'check_existing' instead of 'stat'.
5539         * lread.c (openp) [WINDOWSNT]: Call 'access' instead of 'stat' to
5540         determine whether a file exists and is not a directory.
5542         * lisp.h (check_existing): Add prototype.
5544 2012-10-12  Jan Djärv  <jan.h.d@swipnet.se>
5546         * nsfont.m (nsfont_open): Remove font cache, it is not GC correct.
5548 2012-10-12  Glenn Morris  <rgm@gnu.org>
5550         * buffer.c (Fset_buffer): Doc fix.  (Bug#12624)
5552 2012-10-11  Stefan Monnier  <monnier@iro.umontreal.ca>
5554         * buffer.c (Fkill_buffer): Null out the overlay list(s) as well.
5556         * eval.c (Fautoload): Remember previous autoload status in load-history.
5558 2012-10-11  Paul Eggert  <eggert@cs.ucla.edu>
5560         lread.c, macros.c, marker.c, menu.c, minibuf.c: Use bool for booleans.
5561         * lread.c (load_each_byte, new_backquote_flag, readchar)
5562         (read_filtered_event, lisp_file_lexically_bound_p)
5563         (safe_to_load_version, Fload, complete_filename_p, openp)
5564         (build_load_history, readevalloop, read_escape, read1)
5565         (string_to_number, read_vector, read_list):
5566         * macros.c (Fstart_kbd_macro):
5567         * marker.c (CONSIDER):
5568         * menu.c (parse_single_submenu, digest_single_submenu)
5569         (find_and_return_menu_selection, Fx_popup_menu):
5570         * minibuf.c (read_minibuf_noninteractive, read_minibuf)
5571         (Ftry_completion):
5572         * nsmenu.m (ns_update_menubar, runMenuAt:forFrame:keymaps:):
5573         (ns_menu_show):
5574         * xmenu.c (set_frame_menubar, create_and_show_popup_menu)
5575         (xmenu_show, xdialog_show):
5576         Use bool for booleans.
5577         * lread.c (safe_to_load_version): Rename from safe_to_load_p,
5578         as it's not a predicate.  All uses changed.  Omit unnecessary
5579         buffer termination.
5581 2012-10-11  Dmitry Antipov  <dmantipov@yandex.ru>
5583         * editfns.c (save_excursion_save): Use nil if mark points to nowhere.
5584         (save_excursion_restore): Do not restore mark if it was not saved.
5586 2012-10-11  Paul Eggert  <eggert@cs.ucla.edu>
5588         * marker.c (cached_modiff): EMACS_INT, not int.
5590         * w32select.c (waiting_for_input): Declare by including "keyboard.h"
5591         instead of having a wrong decl.
5592         * nsmenu.m (waiting_for_input): Remove wrong decl.
5594 2012-10-10  Paul Eggert  <eggert@cs.ucla.edu>
5596         keyboard.c, keymap.c: Use bool for booleans.
5597         * dispnew.c (sit_for): Distinguish between 3-way display_option
5598         and boolean do_display.
5599         * keyboard.c (single_kboard, this_command_key_count_reset)
5600         (waiting_for_input, echoing, immediate_quit, input_pending)
5601         (interrupt_input, interrupts_deferred, pop_kboard)
5602         (temporarily_switch_to_single_kboard, ignore_mouse_drag_p)
5603         (command_loop_1, adjust_point_for_property)
5604         (safe_run_hooks_error, input_polling_used, read_char):
5605         (help_char_p, readable_events, kbd_buffer_events_waiting)
5606         (kbd_buffer_get_event, timer_check_2, make_lispy_event)
5607         (lucid_event_type_list_p, get_input_pending):
5608         (gobble_input, menu_separator_name_p, menu_bar_item)
5609         (parse_menu_item, parse_tool_bar_item, read_char_x_menu_prompt)
5610         (read_char_minibuf_menu_prompt, access_keymap_keyremap)
5611         (keyremap_step, test_undefined, read_key_sequence)
5612         (detect_input_pending, detect_input_pending_ignore_squeezables)
5613         (detect_input_pending_run_timers, requeued_events_pending_p)
5614         (quit_throw_to_read_char, Fset_input_interrupt_mode):
5615         * keymap.c (get_keymap, keymap_parent, keymap_memberp)
5616         (access_keymap_1, access_keymap, map_keymap, get_keyelt)
5617         (Fdefine_key, Flookup_key, struct accessible_keymaps_data)
5618         (accessible_keymaps_1, Fkey_description, push_key_description):
5619         (shadow_lookup, struct where_is_internal_data)
5620         (where_is_internal, Fwhere_is_internal, where_is_internal_1)
5621         (Fdescribe_buffer_bindings, describe_map_tree, struct describe_map_elt)
5622         (describe_map, describe_vector):
5623         * menu.c (single_menu_item):
5624         * nsmenu.m (ns_update_menubar):
5625         * process.c (wait_reading_process_output):
5626         * search.c (scan_buffer, scan_newline):
5627         Use bool for boolean.
5628         * keyboard.c (timers_run, swallow_events)
5629         (detect_input_pending_run_timers):
5630         * process.c (wait_reading_process_output):
5631         Use unsigned for counter where wraparound-on-overflow is desired,
5632         since unsigned is guaranteed to have that behavior and signed is not.
5633         (read_char): Use ptrdiff_t for string length.
5634         (get_input_pending): Remove first argument, since it was always
5635         the same pointer-to-int (now pointer-to-boolean) &input_pending,
5636         and behave as if it had that value.  Return new value of
5637         input_pending.  All callers changed.
5638         * keyboard.h (struct kboard): Use unsigned : 1 for boolean member
5639         immediate_echo.  Use ptrdiff_t for echo_after_prompt, since it's
5640         a string length.
5641         * keymap.c (push_key_description): Omit last arg, which was always 1.
5642         All callers changed.
5644         * regex.c (immediate_quit) [emacs]: Remove duplicate decl.
5646 2012-10-10  Juanma Barranquero  <lekktu@gmail.com>
5648         * makefile.w32-in ($(BLD)/dispnew.$(O), $(BLD)/indent.$(O))
5649         ($(BLD)/term.$(O)): Update dependencies.
5651 2012-10-10  Dmitry Antipov  <dmantipov@yandex.ru>
5653         * alloc.c (mark_object): Use meaningful PVEC_NORMAL_VECTOR.
5654         * lisp.h (enum pvec_type): Adjust comments and omit explicit
5655         initializer for PVEC_NORMAL_VECTOR.
5657 2012-10-10  Paul Eggert  <eggert@cs.ucla.edu>
5659         Clean out old termopts cruft.
5660         * termopts.h (flow_control, meta_key): Remove unused decls.
5661         * dispnew.c, indent.c, nsterm.m, term.c, xsettings.c, xsmfns.c:
5662         Don't include termopts.h.
5664 2012-10-10  Dmitry Antipov  <dmantipov@yandex.ru>
5666         * alloc.c (gc_sweep): Use pointer-to-a-pointer loop for buffers.
5668 2012-10-10  Paul Eggert  <eggert@cs.ucla.edu>
5670         * commands.h (immediate_quit): Remove duplicate decl.
5672 2012-10-09  Jan Djärv  <jan.h.d@swipnet.se>
5674         * nsfont.m (Vfonts_in_cache): Remove, not needed as font.c handles
5675         caching.
5676         (nsfont_open): Remove setting of Vfonts_in_cache.
5677         (syms_of_nsfont): Remove initialization of Vfonts_in_cache.
5679 2012-10-09  Eli Zaretskii  <eliz@gnu.org>
5681         * w32fns.c (w32_last_error): Change the return value to DWORD, to
5682         match what GetLastError returns.  Explain why the function is
5683         needed.
5685         * frame.c (delete_frame): Rename local variable 'tooltip_frame' to
5686         'is_tooltip_frame', to avoid confusion with its global namesake.
5688 2012-10-08  Daniel Colascione  <dancol@dancol.org>
5690         * xdisp.c (start_hourglass): Call w32_note_current_window when
5691         HAVE_NTGUI, not just WINDOWSNT, resolving a problem in the cygw32
5692         build that caused Emacs to display the hourglass cursor forever.
5694         * w32fns.c (Fx_display_color_cells): Instead of using NCOLORS,
5695         which is broken under remote desktop, calculate the number of
5696         colors available for a display based on the display's number of
5697         planes and number of bits per pixel per plane.  (bug#10397).
5699 2012-10-08  Jan Djärv  <jan.h.d@swipnet.se>
5701         * nsfont.m (Vfonts_in_cache): New variable.
5702         (nsfont_open): Use unsignedLongLongValue for cache in case wide ints
5703         are used.  Add cached fonts to Vfonts_in_cache.
5704         (syms_of_nsfont): Initialize and staticpro Vfonts_in_cache.
5706 2012-10-08  Juanma Barranquero  <lekktu@gmail.com>
5708         * makefile.w32-in (LOCAL_FLAGS): Don't define HAVE_NTGUI, it's now
5709         in nt/config.nt.
5710         (FONT_H): Define after FRAME_H.
5711         ($(BLD)/emacs.$(O), $(BLD)/process.$(O), $(BLD)/w32heap.$(O)):
5712         Update dependencies.
5714         * w32term.c: Remove leftover declaration of keyboard_codepage.
5716 2012-10-08  Eli Zaretskii  <eliz@gnu.org>
5718         * makefile.w32-in (FONT_H): Add $(FRAME_H).
5719         (W32TERM_H): Add $(ATIMER_H) and $(FRAME_H).
5720         ($(BLD)/emacs.$(O), $(BLD)/w32console.$(O)): Update dependencies.
5721         (GLOBAL_SOURCES): Add cygw32.c.
5722         ($(BLD)/unexw32.$(O)):
5723         ($(BLD)/w32.$(O)):
5724         ($(BLD)/w32console.$(O)):
5725         ($(BLD)/w32fns.$(O)):
5726         ($(BLD)/w32heap.$(O)):
5727         ($(BLD)/w32menu.$(O)):
5728         ($(BLD)/w32proc.$(O)): Add w32common.h.
5730         * w32fns.c (w32_color_map_lookup, x_to_w32_color): Argument is now
5731         'const char *'.
5732         (x_to_w32_color): Don't modify the argument, modify a copy instead.
5734 2012-10-08  Daniel Colascione  <dancol@dancol.org>
5736         * w32term.h (WM_EMACS_BRINGTOTOP, WM_EMACS_INPUT_READY)
5737         (WM_EMACS_END): Change WM_EMACS_BRINGTOTOP from 22 to 21 to close
5738         accidental message numbering hole.  Change other messages to
5739         match.
5741         * w32select.h (HAVE_W32SELECT): Remove.
5743         * w32select.c, w32proc.c, w32menu.c, w32console.c, w32.c: Include
5744         w32common.h instead of w32heap.h.
5746         * w32heap.h (ROUND_UP, ROUND_DOWN, get_page_size)
5747         (get_allocation_unit, get_processor_type, get_w32_major_version)
5748         (get_w32_minor_version, sysinfo_cache, osinfo_cache)
5749         (w32_major_version, w32_minor_version, w32_build_number, OS_9X)
5750         (OS_NT, os_subtype, cache_system_info): Move declarations to
5751         w32common.
5753         * w32heap.c: Include w32common.h.
5754         (sysinfo_cache, syspage_mask, osinfo_cache, w32_major_version)
5755         (w32_minor_version, w32_build_number, w32_subtype):
5756         Remove duplicate definitions.
5758         * w32fns.c: Include w32common.h; include w32heap.h only in
5759         WINDOWSNT.
5761         (Fx_file_dialog): Clarify comment on GetOpenFileName structure.
5762         Use `report_file_error' instead of `error' in order to better
5763         inform users of what went wrong.  Increase NTGUI_UNICODE file
5764         dialog box file name length to 32k, the maximum allowed by the NT
5765         kernel.
5767         * w32common.h: New file.
5768         (ROUND_UP, ROUND_DOWN, get_page_size)
5769         (get_allocation_unit, get_processor_type, get_w32_major_version)
5770         (get_w32_minor_version, sysinfo_cache, osinfo_cache)
5771         (w32_major_version, w32_minor_version, w32_build_number, OS_9X)
5772         (OS_NT, os_subtype, cache_system_info): Move here.
5774         * unexw32.c, unexcw.c: Include w32common.h.
5776         * emacs.c (main): Use (defined (WINDOWSNT) || defined
5777         HAVE_NTGUI) instead of removed HAVE_W32SELECT to decide whether
5778         to call syms_of_w32select.
5780         * cygw32.h: Remove obsolete EXFUN declarations.
5782         * cygw32.c (Qutf_16_le): Rename to Qutf_16le.
5784         * Makefile.in (SOME_MACHINE_OBJECTS): Reverse accidental removal
5785         of w32inevt.o from SOME_MACHINE_OBJECTS.
5787 2012-10-08  Daniel Colascione  <dancol@dancol.org>
5789         * image.c: Permanent fix for JPEG compilation issue --- limit
5790         jpeglib `boolean' redefinition to Cygwin builds.
5792 2012-10-08  Eli Zaretskii  <eliz@gnu.org>
5794         * image.c (CHECK_LIB_AVAILABLE): Remove, no longer used.
5796         * emacs.c (DAEMON_MUST_EXEC) [HAVE_NTGUI]: Define this only on
5797         Cygwin.
5799 2012-10-08  Daniel Colascione  <dancol@dancol.org>
5801         * xfaces.c, xdisp.c, window.c, w32xfns.c, w32term.h, w32term.c,
5802         w32select.h w32select.c, w32proc.c, w32menu.c, w32inevt.c,
5803         w32help.c, w32font.c, w32font.c, w32fns.c, w32console.c, w32.h,
5804         w32.c, unexw32.c, termhooks.h, process.c, menu.c, keyboard.h,
5805         keyboard.c, image.c, frame.h, frame.c, fontset.c, font.h, font.c,
5806         emacs.c, dispextern.h, cygw32.h, cygw32.c, conf_post.h,
5807         Makefile.in: use HAVE_NTGUI for W32 GUI and WINDOWSNT for the
5808         operating system.  defined(HAVE_NTGUI) && !defined(WINDOWSNT) is
5809         now a supported configuration.
5811         * Makefile.in: consolidate image variables into LIBIMAGE; add
5812         W32_OBJ and W32_LIBS.  Compile new files.
5814         * conf_post.h:
5815         (_DebPrint) declare tracing facility for W32 debugging.  We need
5816         to unify tracing later.
5818         (NTGUI_UNICODE) Define when compiling for Cygwin to allow the
5819         unconditional use of W32 Unicode functions.  Cygwin runs only on
5820         100% Unicode operating systems.
5822         * cygw32.c: New file.  Define Cygwin-specific facilities.
5823         (Fcygwin_convert_path_to_windows)
5824         (Fcygwin_convert_path_from_windows): New user functions for
5825         accessing Cygwin path-munging routines.
5827         * cygw32.h: New file.
5828         (WCSDATA, to_unicode, from_unicode): Define facilities for storing
5829         UTF-16LE strings temporarily inside non-Lisp-visible string
5830         objects.
5832         (w32_strerror): Just what it says on the tin.
5834         * emacs.c: Make the NS fork-then-exec code for daemon-launching
5835         also run for Cygwin; both systems have the same problem with using
5836         GUI facilities in a forked child.  Also call syms_of_cygw32,
5837         syms_of_w32select in correct places.
5839         (DAEMON_MUST_EXEC): new macro defined to signal that a platform
5840         needs fork-then-exec for daemon launching.
5842         * font.h: Include frame.h.
5844         * image.c: Use the image library cache machinery only when we're
5845         compiling for native WINDOWSNT; Cygwin can use shared libraries
5846         like any other Unixlike system.
5848         * keyboard.c: Clarify a comment regarding the input loop.
5850         * menu.c: When NTGUI_UNICODE is defined, use Unicode menu
5851         functions directly instead of trying to detect at runtime that our
5852         host operating system supports them.  We make this change for two
5853         reasons: Cygwin lacks support for the multibyte character
5854         conversion functions used by the legacy menu code, and Cygwin
5855         never needs to rely on non-Unicode APIs.
5857         * unexw32.c (hinst): Declare extern.
5859         * w32.c: Change header order;
5860         (w32_strerror): Move to w32fns.c because we need it for
5861         non-WINDOWSNT builds.
5863         * w32.h: Add #error macro to make sure we don't include w32.h for
5864         Cygwin builds.  Remove w32select declarations.
5866         * w32console.c (w32_sys_ring_bell, Fset_message_beep): Move to
5867         w32fns.c.  w32console.c is WINDOWSNT-only.
5869         * w32fns.c: Include cygw32.h or w32.h depending on CYGWIN; more
5870         NTGUI_UNICODE tweaks.  (See above.) Change _snprintf to the more
5871         POSIXy alternative.
5872         (faked_key, sysinfo_cache, osinfo_cahce, syspage_mask)
5873         (w32_major_version, w32_minor_version, w32_build_number)
5874         (os_subtype, sound_type): Define here
5875         (w32_defined_color): Make color parameter const for consistency
5876         with other _defined_color functions.
5877         (w32_createwindow): Unconditionally call w32_init_class instead of
5878         doing so only when hprevinst is non-NULL.  Plumbing hprevinst
5879         through the code is complex and unnecessary because class
5880         registration is practically free.
5881         (w32_name_of_message): New EMACSDEBUG-only function.
5882         (Fset_message_beep): Move here
5883         (Fx_open_connection): Require that the display name for Windows be
5884         "w32" for consistency, emacsclient disambiguation, and maybe, one
5885         day, multi-window-system support.
5886         (file_dialog_callback): NTGUI_UNICODE changes; encode and decode
5887         Cygwin files for W32 GUI facilities, since these clearly don't
5888         expect Cygwin names.
5889         (_DebPrint): Define.
5890         (w32_strerror, w32_console_toggle_lock_key, w32_kbd_mods_to_emacs)
5891         (w32_kbd_patch_key, w32_sys_ring_bell): Move here.
5892         (Ssystem_move_file_to_trash): Define only for native WINDOWSNT.
5893         (w32_last_error): Remove.
5895         * w32font.c: Define _strlwr to strlwr for non-WINDOWSNT builds.
5897         * w32heap.c (syspage_mask): Declare here.
5898         (cache_system_info): Remove.
5900         * w32inevt.c (faked_key): Define globally, not statically.
5901         (w32_kbd_mods_to_emacs, w32_kbd_patch_key, faked_key)
5902         (w32_console_toggle_lock_key): Move to w32fns.c.
5904         * w32menu.c: Include setjmp.h.  NTGUI_UNICODE changes throughout.
5906         * w32proc.c (_DebPrint): Move to w32fns.c.
5907         * w32select.c: Include string.h, stdio.h for Cygwin.
5908         * w32select.h: New File.
5910         * w32term.c: Include io.h for non-CYGWIN builds; needed for
5911         get_osfhandle.
5912         (w32_message_fd): New variable.  Under Cygwin, holds the file
5913         descriptor the system used to tell us about pending thread
5914         messages.
5916         (w32_init_term): Remove incorrect calls to fcntl and init_sigio
5917         that prevented compilation under non-WINDOWSNT systems.
5919         (w32_initialize): Open /dev/windows and assign it to
5920         w32_message_fd.  Provide w32 feature.
5922         * w32term.h: Include frame.h, atimer.h.  Declare various frame functions.
5923         (WM_EMACS_INPUT_READY): add.
5924         (prepend_msg, w32_message_fd): Declare globally.
5926         * w32xfns.c:
5927         (keyboard_handle): Use only when WINDOWSNT.
5928         (notify_msg_ready): New function.  Posts a message to the main
5929         thread's message queue under CYGWIN, which wakes up the main
5930         thread from select(2) by making the /dev/windows file descriptor
5931         ready.  Under WINDOWSNT, it sets an event the same way the old
5932         code did.
5934         (post, prepend_msg): Actually call notify_msg_ready instead of
5935         setting the input event directly.
5937 2012-10-07  Eli Zaretskii  <eliz@gnu.org>
5939         * ralloc.c (relinquish): If a heap is ready to be relinquished,
5940         but it still has blocs in it, don't return it to the system,
5941         instead of aborting.  (Bug#12402)
5943 2012-10-07  Jan Djärv  <jan.h.d@swipnet.se>
5945         * nsterm.m (ns_dumpglyphs_image): Only draw slice of image (Bug#12506).
5947         * nsterm.m (ns_update_auto_hide_menu_bar): Remove defintion of
5948         MAC_OS_X_VERSION_10_6.
5949         (syms_of_nsterm): Remove comment about Panther and above for
5950         ns-antialias-text.
5951         * nsterm.h (MAC_OS_X_VERSION_10_3, onTiger): Remove.
5952         (EmacsApp): Remove check for >= MAC_OS_X_VERSION_10_4.
5953         (struct nsfont_info): Remove check for >= MAC_OS_X_VERSION_10_3.
5955         * nsselect.m (ns_string_from_pasteboard): Remove check for >=
5956         MAC_OS_X_VERSION_10_4.
5958         * nsmenu.m (fillWithWidgetValue:): Remove code for <
5959         MAC_OS_X_VERSION_10_2.
5961         * nsimage.m (setPixmapData, getPixelAtX, setAlphaAtX): Remove onTiger.
5963         * nsfns.m (Fns_list_services): Remove comment and check for OSX < 10.4.
5964         (ns_do_applescript): Remove check for >= MAC_OS_X_VERSION_10_4.
5966         * nsterm.m (ns_in_resize): Remove (Bug#12479).
5967         (ns_resize_handle_rect, mouseDown, mouseUp, mouseDragged): Remove.
5968         (ns_clear_frame, sendEvent, windowDidResize, drawRect:):
5969         Remove ns_in_resize check.
5970         (ns_clear_frame_area): Remove resize handle code.
5972         * nsfns.m (ns_in_resize): Remove.
5973         (x_set_icon_name, ns_set_name, ns_set_name_as_filename):
5974         Remove ns_in_resize check.
5976 2012-10-07  Paul Eggert  <eggert@cs.ucla.edu>
5978         Improve sys_siglist detection.
5979         * sysdep.c (sys_siglist, init_signals): Use _sys_siglist if it's
5980         defined as a macro, as is done in Solaris.
5981         (sys_siglist_entries): New macro.
5982         (save_strsignal): Use it.
5983         * syssignal.h (safe_strsignal): Now ATTRIBUTE_CONST, to pacify
5984         GCC 4.7.2 on Fedora 17 with the fixed sys_siglist detection.
5986 2012-10-06  Jan Djärv  <jan.h.d@swipnet.se>
5988         * nsfns.m (Fx_create_frame): Call x_default_parameter with
5989         fullscreen/Fullscreen.
5991         * nsterm.h (EmacsView): Rename tbar_height to tibar_height.
5992         tobar_height is new.
5994         * nsterm.m (x_make_frame_visible): Check for fullscreen.
5995         (ns_fullscreen_hook): Activate old style fullscreen with a timer.
5996         (ns_term_init): Set activateIgnoringOtherApps if old style fullscreen.
5997         (windowDidResize:): Check for correct window if old style fullscreen.
5998         Capitalize word in comment.  Remove incorrect comment.
5999         (initFrameFromEmacs:): tbar_height renamed tibar_height.
6000         (windowDidEnterFullScreen:): Toggle toolbar for fullscreen to fix
6001         error in drawing background.
6002         (toggleFullScreen:): Remove comment.  Rearrange calls.
6003         Set toolbar values to zero, save old height in tobar_height.
6004         Restore tool bar height when leaving fullscreen.
6005         (canBecomeMainWindow): New function.
6007 2012-10-06  Paul Eggert  <eggert@cs.ucla.edu>
6009         * keyboard.c (read_char): Remove unnecessary 'volatile's and label.
6011 2012-10-05  Eli Zaretskii  <eliz@gnu.org>
6013         * w32proc.c (stop_timer_thread): Fix declaration of 'err'.
6015         * w32.c (utime): Open the file with FILE_FLAG_BACKUP_SEMANTICS, so
6016         that time stamps of directories could also be changed.
6017         Don't request the too broad GENERIC_WRITE, only the more restrictive
6018         FILE_WRITE_ATTRIBUTES access rights.
6020         * fileio.c (Fset_file_times): Special-case ignoring errors for
6021         directories only on MSDOS, not on MS-Windows.
6023 2012-10-05  Ikumi Keita  <ikumi@ikumi.que.jp>  (tiny change)
6025         * minibuf.c (Fcompleting_read): Doc fix.  (Bug#12555)
6027 2012-10-04  Eli Zaretskii  <eliz@gnu.org>
6029         * w32.c (utime): Test for INVALID_HANDLE_VALUE, not for NULL, to
6030         see whether CreateFile failed.
6032 2012-10-04  Paul Eggert  <eggert@cs.ucla.edu>
6034         * profiler.c (handle_profiler_signal): Inhibit pending signals too,
6035         to avoid similar races.
6036         * keyboard.c (pending_signals): Now bool, not int.
6038         Port timers to OpenBSD, plus check for timer failures.
6039         OpenBSD problem reported by Han Boetes.
6040         * profiler.c (setup_cpu_timer): Check for failure of timer_settime
6041         and/or setitimer.
6042         (Fprofiler_cpu_stop): Don't assume HAVE_SETITIMER.
6043         * syssignal.h (HAVE_ITIMERSPEC): New macro.  This is for platforms
6044         like OpenBSD, which has timer_settime but does not declare it.
6045         OpenBSD does not define SIGEV_SIGNAL, so use that when deciding
6046         whether to use itimerspec-related primitives.  All uses of
6047         HAVE_TIMER_SETTIME replaced with HAVE_ITIMERSPEC.
6049 2012-10-02  Paul Eggert  <eggert@cs.ucla.edu>
6051         * profiler.c (handle_profiler_signal): Fix a malloc race
6052         that caused Emacs to hang on Fedora 17 when profiling Lisp.
6054 2012-10-02  Jan Djärv  <jan.h.d@swipnet.se>
6056         * nsterm.m (windowDidEnterFullScreen): Remove fprintf.
6058 2012-10-02  Eli Zaretskii  <eliz@gnu.org>
6060         * w32proc.c (sys_wait): Declare 'signame' 'const char *', to be
6061         consistent with the change in return value of 'safe_strsignal'.
6063 2012-10-02  Paul Eggert  <eggert@cs.ucla.edu>
6065         Prefer plain 'static' to 'static inline' (Bug#12541).
6066         * bidi.c (bidi_get_type, bidi_check_type, bidi_get_category)
6067         (bidi_set_sor_type, bidi_push_embedding_level)
6068         (bidi_pop_embedding_level, bidi_remember_char, bidi_copy_it)
6069         (bidi_cache_reset, bidi_cache_shrink, bidi_cache_fetch_state)
6070         (bidi_cache_search, bidi_cache_ensure_space)
6071         (bidi_cache_iterator_state, bidi_cache_find)
6072         (bidi_peek_at_next_level, bidi_set_paragraph_end)
6073         (bidi_count_bytes, bidi_char_at_pos, bidi_fetch_char)
6074         (bidi_explicit_dir_char, bidi_resolve_neutral_1):
6075         Now 'static', not 'static inline'.
6077         Count overruns when profiling; change units to ns.
6078         * profiler.c (handle_profiler_signal): Count sampling intervals, not ms.
6079         Give extra weight to samples after overruns, to attempt to count
6080         the time more accurately.
6081         (setup_cpu_timer): Change sampling interval units from ms to ns, since
6082         the underlying primitives nominally do ns.
6083         (Fprofiler_cpu_start): Document the change.  Mention that
6084         the sampling intervals are only approximate.
6086 2012-10-02  Stefan Monnier  <monnier@iro.umontreal.ca>
6088         * frame.c (Fmake_terminal_frame): Prefer safer CONSP over !NILP.
6090         * coding.h (ENCODE_FILE, DECODE_FILE, DECODE_SYSTEM): Remove special
6091         case for the special 0 coding-system.
6093         * buffer.c (Fset_buffer_multibyte): Signal an error instead of widening.
6094         (Fmake_overlay): Remove redundant tests.
6095         (fix_start_end_in_overlays): Remove redundant recentering.
6097 2012-10-02  Juanma Barranquero  <lekktu@gmail.com>
6099         * makefile.w32-in ($(BLD)/alloc.$(O), $(BLD)/gmalloc.$(O)):
6100         Update dependencies.
6102 2012-10-01  Paul Eggert  <eggert@cs.ucla.edu>
6104         Fix a malloc race condition involving strsignal.
6105         A signal can arrive in the middle of a malloc, and Emacs's signal
6106         handler can invoke strsignal, which can invoke malloc, which is
6107         not portable.  This race condition bug makes Emacs hang on GNU/Linux.
6108         Fix it by altering the signal handler so that it does not invoke
6109         strsignal.
6110         * emacs.c (shut_down_emacs): Use safe_strsignal, not strsignal.
6111         * process.c (status_message): Use const pointer, in case strsignal
6112         is #defined to safe_strsignal.
6113         * sysdep.c (sys_siglist, init_signals): Always define and
6114         initialize a substitute sys_siglist if the system does not define
6115         one, even if HAVE_STRSIGNAL.
6116         (safe_strsignal): Rename from strsignal.  Always define,
6117         using sys_siglist.  Return a const pointer.
6118         * syssignal.h (safe_strsignal): New decl.
6119         (strsignal) [!HAVE_STRSIGNAL]: Define in terms of safe_strsignal.
6121 2012-10-01  Eli Zaretskii  <eliz@gnu.org>
6123         * w32proc.c (timer_loop): Fix code that waits for timer
6124         expiration, to avoid high CPU usage.
6126 2012-10-01  Stefan Monnier  <monnier@iro.umontreal.ca>
6128         * fns.c (check_hash_table, get_key_arg, maybe_resize_hash_table)
6129         (sweep_weak_table): Remove redundant prototypes.
6131 2012-10-01  Fabrice Popineau  <fabrice.popineau@gmail.com>
6133         * emacs.c: Move the inclusion of TERM_HEADER after including
6134         windows.h on WINDOWSNT.  This avoids compilation problems with
6135         MSVC.
6137 2012-10-01  Eli Zaretskii  <eliz@gnu.org>
6139         * unexw32.c (OFFSET_TO_RVA, RVA_TO_OFFSET)
6140         (RVA_TO_SECTION_OFFSET): Encode all macro arguments in parentheses.
6141         (RVA_TO_PTR): Cast the result of RVA_TO_OFFSET to 'unsigned char *',
6142         as the previous version used 'void *'.
6144         * ralloc.c (ROUNDUP): Fix last change.
6145         (MEM_ROUNDUP): Don't cast MEM_ALIGN, it is already of type
6146         'size_t'.
6148         * w32proc.c <disable_itimers>: New static flag.
6149         (init_timers): Initialize it to zero, after creating the critical
6150         sections used by the timer threads.
6151         (term_timers): Set to 1 before deleting the critical sections.
6152         (getitimer, setitimer): If disable_itimers is non-zero, return an
6153         error indication without doing anything.  Reported by Fabrice
6154         Popineau <fabrice.popineau@supelec.fr> as part of bug#12544.
6155         (alarm) [HAVE_SETITIMER]: Be more conformant to the expected
6156         return results.
6157         [!HAVE_SETITIMER]: Behave as the previous version that didn't
6158         support timers.
6160         * emacs.c (shut_down_emacs) [WINDOWSNT]: Move the call to
6161         term_ntproc after all the other bookkeeping, to get timers working
6162         as long as possible.
6164 2012-10-01  Paul Eggert  <eggert@cs.ucla.edu>
6166         * xdisp.c (syms_of_xdisp): Default message-log-max to 1000, not 100.
6167         Suggested by Juri Linkov in
6168         <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00821.html>.
6170         Prefer plain 'static' to 'static inline' (Bug#12541).
6171         With static functions, modern compilers inline pretty well by
6172         themselves; advice from programmers often hurts as much as it helps.
6173         On my host (x86-64, Fedora 17, GCC 4.7.2, default 'configure'),
6174         this change shrinks the text size of the Emacs executable by 1.1%
6175         without affecting CPU significantly in my benchmark.
6176         * alloc.c (mem_find, live_string_p, live_cons_p, live_symbol_p)
6177         (live_float_p, live_misc_p, live_vector_p, live_buffer_p)
6178         (mark_maybe_object, mark_maybe_pointer, bounded_number):
6179         * buffer.c (bset_abbrev_mode, bset_abbrev_table)
6180         (bset_auto_fill_function, bset_auto_save_file_format)
6181         (bset_auto_save_file_name, bset_backed_up, bset_begv_marker)
6182         (bset_bidi_display_reordering, bset_buffer_file_coding_system)
6183         (bset_cache_long_line_scans, bset_case_fold_search)
6184         (bset_ctl_arrow, bset_cursor_in_non_selected_windows)
6185         (bset_cursor_type, bset_display_table, bset_extra_line_spacing)
6186         (bset_file_format, bset_file_truename, bset_fringe_cursor_alist)
6187         (bset_fringe_indicator_alist, bset_fringes_outside_margins)
6188         (bset_header_line_format, bset_indicate_buffer_boundaries)
6189         (bset_indicate_empty_lines, bset_invisibility_spec)
6190         (bset_left_fringe_width, bset_major_mode, bset_mark)
6191         (bset_minor_modes, bset_mode_line_format, bset_mode_name)
6192         (bset_name, bset_overwrite_mode, bset_pt_marker)
6193         (bset_right_fringe_width, bset_save_length)
6194         (bset_scroll_bar_width, bset_scroll_down_aggressively)
6195         (bset_scroll_up_aggressively, bset_selective_display)
6196         (bset_selective_display_ellipses, bset_vertical_scroll_bar_type)
6197         (bset_word_wrap, bset_zv_marker, set_buffer_overlays_before)
6198         (set_buffer_overlays_after):
6199         * category.c (bset_category_table):
6200         * charset.c (read_hex):
6201         * coding.c (produce_composition, produce_charset)
6202         (handle_composition_annotation, handle_charset_annotation)
6203         (char_encodable_p):
6204         * dispnew.c (swap_glyph_pointers, copy_row_except_pointers)
6205         (assign_row, set_frame_matrix_frame, make_current)
6206         (add_row_entry):
6207         * eval.c (set_specpdl_symbol, set_specpdl_old_value):
6208         * fns.c (maybe_resize_hash_table):
6209         * frame.c (fset_buffer_predicate, fset_minibuffer_window):
6210         * gmalloc.c (register_heapinfo):
6211         * image.c (lookup_image_type):
6212         * intervals.c (set_interval_object, set_interval_left)
6213         (set_interval_right, copy_interval_parent, rotate_right)
6214         (rotate_left, balance_possible_root_interval):
6215         * keyboard.c (kset_echo_string, kset_kbd_queue)
6216         (kset_keyboard_translate_table, kset_last_prefix_arg)
6217         (kset_last_repeatable_command, kset_local_function_key_map)
6218         (kset_overriding_terminal_local_map, kset_real_last_command)
6219         (kset_system_key_syms, clear_event, set_prop):
6220         * lread.c (digit_to_number):
6221         * marker.c (attach_marker, live_buffer, set_marker_internal):
6222         * nsterm.m (ns_compute_glyph_string_overhangs):
6223         * process.c (pset_buffer, pset_command)
6224         (pset_decode_coding_system, pset_decoding_buf)
6225         (pset_encode_coding_system, pset_encoding_buf, pset_filter)
6226         (pset_log, pset_mark, pset_name, pset_plist, pset_sentinel)
6227         (pset_status, pset_tty_name, pset_type, pset_write_queue):
6228         * syntax.c (bset_syntax_table, dec_bytepos):
6229         * terminal.c (tset_param_alist):
6230         * textprop.c (interval_has_some_properties)
6231         (interval_has_some_properties_list):
6232         * window.c (wset_combination_limit, wset_dedicated)
6233         (wset_display_table, wset_hchild, wset_left_fringe_width)
6234         (wset_left_margin_cols, wset_new_normal, wset_new_total)
6235         (wset_normal_cols, wset_normal_lines, wset_parent, wset_pointm)
6236         (wset_right_fringe_width, wset_right_margin_cols)
6237         (wset_scroll_bar_width, wset_start, wset_temslot, wset_vchild)
6238         (wset_vertical_scroll_bar_type, wset_window_parameters):
6239         * xdisp.c (wset_base_line_number, wset_base_line_pos)
6240         (wset_column_number_displayed, wset_region_showing)
6241         (window_box_edges, run_window_scroll_functions)
6242         (append_glyph_string_lists, prepend_glyph_string_lists)
6243         (append_glyph_string, set_glyph_string_background_width)
6244         (append_glyph, append_composite_glyph)
6245         (take_vertical_position_into_account):
6246         * xfaces.c (x_create_gc, x_free_gc, merge_face_vectors)
6247         (face_attr_equal_p, lface_equal_p, hash_string_case_insensitive)
6248         (lface_hash, lface_same_font_attributes_p, lookup_face):
6249         * xml.c (libxml2_loaded_p):
6250         * xterm.c (x_set_mode_line_face_gc, x_set_glyph_string_gc)
6251         (x_set_glyph_string_clipping, x_clear_glyph_string_rect):
6252         Now 'static', not 'static inline'.
6254         * bidi.c: Tune.
6255         (bidi_copy_it): Do the whole copy with a single memcpy.
6256         (bidi_char_at_pos): Merge the two STRING_CHAR calls into one.
6258         Revert the FOLLOW-SYMLINKS change for file-attributes.
6259         Doing it right would require several changes to Tramp, and there's
6260         not enough time to get that tested before the freeze today.
6261         * dired.c (directory_files_internal, Ffile_attributes):
6262         Undo last change.
6264         * frame.c (x_report_frame_params): Port better to wider ints.
6265         Do not assume that EMACS_UINT is the same width as uprintmax_t,
6266         or that pointers can be printed in 15 decimal digits.
6267         Avoid GCC warnings if EMACS_UINT is wider than a pointer.
6269 2012-09-30  Fabrice Popineau  <fabrice.popineau@supelec.fr>
6271         Support x64 build on MS-Windows.
6272         * w32term.h (SCROLL_BAR_PACK, SCROLL_BAR_UNPACK): Define for x64.
6273         (SET_SCROLL_BAR_W32_WINDOW): Cast ID to intptr_t, for
6274         compatibility with x64.
6275         (x_get_focus_frame): Add prototype.
6277         * w32term.c (w32_draw_underwave): Don't use GCC extensions for
6278         defining an XRectangle structure.
6280         * w32proc.c (RVA_TO_PTR, w32_executable_type): Fix pointer
6281         arithmetics for compatibility with x64.
6283         * w32menu.c (add_menu_item): Use UINT_PTR instead of UINT, for
6284         compatibility with x64.
6286         * w32heap.h: Adjust prototypes and declarations.
6288         * w32heap.c (RVA_TO_PTR, allocate_heap, sbrk, init_heap)
6289         (round_heap): Use DWORD_PTR, ptrdiff_t and size_t instead of
6290         DWORD, long, and unsigned long, for compatibility with x64.
6291         (allocate_heap) [_WIN64]: Reserve 32GB of memory.
6292         (sbrk): Argument is now of type ptrdiff_t.
6294         * w32fns.c (HMONITOR): Condition declaration on _WIN32_WINNT being
6295         less than 0x0500.
6296         (w32_msg_pump): Use WPARAM type for 'result'.
6298         * w32.c (init_environment, get_emacs_configuration): Support AMD64
6299         architecture.
6300         (init_ntproc): Cast arguments of _open_osfhandle to intptr_t, for
6301         compatibility with x64.
6303         * vm-limit.c (lim_data): Now size_t.
6304         (check_memory_limits): Adjust prototypes of real_morecore and
6305         __morecore to receive argument of type ptrdiff_t.  Use size_t for
6306         five_percent and data_size.
6308         * unexw32.c: Use DWORD_PTR instead of DWORD for file-scope
6309         variables, for compatibility with x64.
6310         (rva_to_section, offset_to_section, relocate_offset)
6311         (OFFSET_TO_RVA, RVA_TO_OFFSET, RVA_TO_SECTION_OFFSET)
6312         (PTR_TO_RVA, RVA_TO_PTR, OFFSET_TO_PTR, get_section_info)
6313         (copy_executable_and_dump_data): Use DWORD_PTR instead of DWORD
6314         for compatibility with x64.
6316         * sysdep.c (STDERR_FILENO): Define if not already defined.
6318         * ralloc.c (real_morecore): Argument type is now ptrdiff_t.
6319         (__morecore): Argument type is now ptrdiff_t.
6320         (ROUNDUP, MEM_ROUNDUP): Use size_t instead of 'unsigned long'.
6321         (relinquish): Use ptrdiff_t type for 'excess'.
6322         (r_alloc_sbrk): Argument type is now ptrdiff_t.
6324         * makefile.w32-in (HEAPSIZE): Get value from EMACS_HEAPSIZE.
6325         (bootstrap-temacs-CMD, bootstrap-temacs-SH): Use $(EMACS_PURESIZE)
6326         instead of a literal number.
6328         * gmalloc.c [WINDOWSNT]: Include w32heap.h.
6329         (min): Define only if not already defined.
6331         * frame.c (x_report_frame_params): Use EMACS_UINT for the return
6332         value of FRAME_X_WINDOW, to fit a 64-bit pointer on 64-bit Windows
6333         hosts.
6335         * image.c (x_bitmap_pixmap): Return ptrdiff_t, not int, since
6336         'bitmaps' is a pointer.
6338         * dispextern.h (x_bitmap_pixmap): Adjust prototype.
6340         * alloc.c (gdb_make_enums_visible): Now conditional on __GNUC__.
6342 2012-09-30  Paul Eggert  <eggert@cs.ucla.edu>
6344         file-attributes has a new optional arg FOLLOW-SYMLINKS.
6345         * dired.c (directory_files_internal, Ffile_attributes):
6346         New arg follow_symlinks.  All uses changed.
6348 2012-09-30  Stefan Monnier  <monnier@iro.umontreal.ca>
6350         * .gdbinit (xbacktrace): Adjust to recent "struct backtrace" change.
6352 2012-09-30  Eli Zaretskii  <eliz@gnu.org>
6354         Support atimers and CPU profiler via profile.c on MS-Windows.
6355         * w32proc.c (sig_mask, crit_sig): New static variables.
6356         (sys_signal): Support SIGALRM and SIGPROF.
6357         (sigemptyset, sigaddset, sigfillset, sigprocmask)
6358         (pthread_sigmask, setpgrp): Move here from w32.c.  sigaddset,
6359         sigfillset, and sigprocmask are no longer no-ops.
6360         (sigismember): New function.
6361         (struct itimer_data): New definition.
6362         (ticks_now, real_itimer, prof_itimer, clocks_min, crit_real)
6363         (crit_prof): New static variables.
6364         (MAX_SINGLE_SLEEP): New definition.
6365         (timer_loop, stop_timer_thread, term_timers, init_timers)
6366         (start_timer_thread, getitimer, setitimer): New functions.
6367         (alarm): No longer a no-op, calls setitimer.
6369         * w32.c (term_ntproc): Call term_timers.
6370         (init_ntproc): Make sure all signals are unblocked at startup, to
6371         erase any traces of dumping.  Call init_timers.
6373         * w32fns.c (hourglass_timer, HOURGLASS_ID): Remove.
6374         Windows-specific code to display the hourglass mouse pointer is no
6375         longer used.
6376         (w32_wnd_proc): Remove code that handled the WM_TIMER message due
6377         to hourglass timer expiration.
6378         (start_hourglass, cancel_hourglass, DEFAULT_HOURGLASS_DELAY):
6379         Remove, no longer used.
6380         (w32_note_current_window, show_hourglass, hide_hourglass):
6381         New functions, in support of hourglass cursor display similar to other
6382         window systems.
6383         (syms_of_w32fns): Don't initialize hourglass_timer.
6385         * xdisp.c (start_hourglass, cancel_hourglass): Now used on
6386         WINDOWSNT as well.
6387         (start_hourglass) [WINDOWSNT]: Call w32_note_current_window.
6389         * w32.h (init_timers, term_timers): Add prototypes.
6391 2012-09-30  Kenichi Handa  <handa@gnu.org>
6393         * coding.c (decode_coding_ccl, encode_coding_ccl): Pay attention
6394         to the buffer relocation which may be caused by ccl_driver.
6396 2012-09-30  Jan Djärv  <jan.h.d@swipnet.se>
6398         * xfns.c (Fx_file_dialog): Update comment.
6400         * w32fns.c (Fx_file_dialog): Update comment.
6402         * nsfns.m (Fns_read_file_name): Add argument DIR_ONLY_P.
6403         Initialize panel name field if OSX >= 10.6.
6405         * fileio.c (Fnext_read_file_uses_dialog_p): Add HAVE_NS.
6407         * nsfns.m (ns_frame_parm_handlers): Add x_set_fullscreen.
6409         * nsterm.m (NEW_STYLE_FS): New define.
6410         (ns_fullscreen_hook, windowWillEnterFullScreen)
6411         (windowDidEnterFullScreen, windowWillExitFullScreen)
6412         (windowDidExitFullScreen, toggleFullScreen, handleFS)
6413         (setFSValue): New functions.
6414         (EmacsFSWindow): New implementation.
6415         (canBecomeKeyWindow): New function for EmacsFSWindow.
6416         (ns_create_terminal): Set fullscreen_hook to ns_fullscreen_hook.
6417         (dealloc): Release nonfs_window if in fullscreen.
6418         (updateFrameSize:): Call windowDidMove to update top/left.
6419         (windowWillResize:toSize:): Check if frame is still maximized.
6420         (initFrameFromEmacs:): Initialize fs_state, fs_before_fs,
6421         next_maximized, maximized_width, maximized_height and nonfs_window.
6422         Call setCollectionBehavior if NEW_STYLE_FS.  Initialize bwidth and
6423         tbar_height.
6424         (windowWillUseStandardFrame:defaultFrame:): Update frame parameter
6425         fullscreen.  Set maximized_width/height.  Act on next_maximized.
6427         * nsterm.h (MAC_OS_X_VERSION_10_7, MAC_OS_X_VERSION_10_8): New.
6428         (EmacsView): Add variables for fullscreen.
6429         (handleFS, setFSValue, toggleFullScreen): New in EmacsView.
6430         (EmacsFSWindow): New interface for fullscreen.
6432 2012-09-30  Juanma Barranquero  <lekktu@gmail.com>
6434         * makefile.w32-in ($(BLD)/profiler.$(O)): Update dependencies.
6436 2012-09-30  Chong Yidong  <cyd@gnu.org>
6438         * fns.c (Frandom): Doc fix.
6440 2012-09-30  Martin Rudalics  <rudalics@gmx.at>
6442         * window.c (Vwindow_combination_limit): New default value.
6443         (Qwindow_size): New symbol replacing Qtemp_buffer_resize.
6445 2012-09-30  Paul Eggert  <eggert@cs.ucla.edu>
6447         * syssignal.h (PROFILER_CPU_SUPPORT): Don't define if PROFILING.
6448         Suggested by Eli Zaretskii in
6449         <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00811.html>.
6451 2012-09-30  Eli Zaretskii  <eliz@gnu.org>
6453         * profiler.c (Fprofiler_cpu_stop): Use timer_settime only if
6454         HAVE_TIMER_SETTIME is defined.
6456 2012-09-30  Paul Eggert  <eggert@cs.ucla.edu>
6458         Profiler improvements: more-accurate timers, overflow checks.
6459         * profiler.c: Don't include stdio.h, limits.h, sys/time.h,
6460         signal.h, setjmp.h.  Include systime.h instead.
6461         (saturated_add): New function.
6462         (record_backtrace, current_sample_interval): Use EMACS_INT, not size_t.
6463         (record_backtrace, handle_profiler_signal): Saturate on fixnum overflow.
6464         (profiler_timer, profiler_timer_ok) [HAVE_TIMER_SETTIME]:
6465         New static vars.
6466         (enum profiler_cpu_running): New enum.
6467         (profiler_cpu_running): Now of that enum type, not bool.
6468         All uses changed to store the new value.
6469         (handle_profiler_signal): Rename from sigprof_handler_1,
6470         for consistency with other handlers.  Do not check whether
6471         cpu_log is a hash-table if garbage collecting, since it
6472         doesn't matter in that case.
6473         (deliver_profiler_signal): Rename from sigprof_handler,
6474         for consistency with other handlers.
6475         (setup_cpu_timer): New function, with much of what used to be in
6476         Fprofiler_cpu_start.  Check for out-of-range argument.
6477         Prefer timer_settime if available, and prefer
6478         thread cputime clocks, then process cputime clocks, then
6479         monotonic clocks, to the old realtime clock.  Use make_timeval
6480         to round more-correctly when falling back to setitimer.
6481         (Fprofiler_cpu_start): Use it.
6482         (Fprofiler_cpu_stop): Prefer timer_settime if available.
6483         Don't assume that passing NULL as the 2nd argument of setitimer
6484         is the same as passing a pointer to all-zero storage.
6485         Ignore SIGPROF afterwards.
6486         (malloc_probe): Saturate at MOST_POSITIVE_FIXNUM.
6487         * sysdep.c (emacs_sigaction_init): Also mask out SIGPROF in
6488         non-fatal signal handlers.  Ignore SIGPROF on startup.
6489         * syssignal.h (PROFILER_CPU_SUPPORT): Define this macro here, not
6490         in profiler.c, since sysdep.c now uses it.
6492         * sysdep.c (handle_fatal_signal): Bump backtrace size to 40.
6493         Suggested by Eli Zaretskii in
6494         <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00796.html>.
6496 2012-09-29  Juanma Barranquero  <lekktu@gmail.com>
6498         * makefile.w32-in ($(BLD)/profiler.$(O)): Update dependencies.
6500 2012-09-29  Stefan Monnier  <monnier@iro.umontreal.ca>
6502         * lisp.h (struct backtrace): Remove indirection for `function' field.
6503         * xdisp.c (redisplay_internal):
6504         * profiler.c (record_backtrace, sigprof_handler_1):
6505         * alloc.c (Fgarbage_collect):
6506         * eval.c (interactive_p, Fsignal, eval_sub, Ffuncall, Fbacktrace)
6507         (Fbacktrace_frame): Adjust accordingly.
6509 2012-09-28  Glenn Morris  <rgm@gnu.org>
6511         * eval.c (Frun_hook_with_args, Frun_hook_with_args_until_success)
6512         (Frun_hook_with_args_until_failure): Doc fixes.
6514 2012-09-28  Eli Zaretskii  <eliz@gnu.org>
6516         * xdisp.c (syms_of_xdisp) <Qredisplay_internal>: Rename from
6517         Qautomatic_redisplay and change the symbol name.  All users changed.
6519 2012-09-28  Tomohiro Matsuyama  <tomo@cx4a.org>
6521         * profiler.c (sigprof_handler): Fix race condition.
6523 2012-09-28  Glenn Morris  <rgm@gnu.org>
6525         * lread.c (lisp_file_lexically_bound_p): Handle #! lines.  (Bug#12528)
6527 2012-09-27  Paul Eggert  <eggert@cs.ucla.edu>
6529         Check more robustly for timer_settime.
6530         * Makefile.in (LIB_TIMER_TIME): New macro.
6531         (LIBES): Add it.
6532         * atimer.c (alarm_timer, alarm_timer_ok, set_alarm, init_atimer):
6533         Use HAVE_TIMER_SETTIME, not SIGEV_SIGNAL, to decide whether to
6534         call timer_settime.
6536 2012-09-26  Tomohiro Matsuyama  <tomo@cx4a.org>
6538         * profiler.c (Fprofiler_cpu_start): Remove unnecessary flag SA_SIGINFO.
6540 2012-09-26  Juanma Barranquero  <lekktu@gmail.com>
6542         * makefile.w32-in ($(BLD)/profiler.$(O)): Update dependencies.
6544 2012-09-26  Paul Eggert  <eggert@cs.ucla.edu>
6546         * character.h (MAYBE_UNIFY_CHAR): Remove.
6547         * charset.c, charset.h (maybe_unify_char): Now static.
6548         * charset.c (decode_char): Use maybe_unify_char, not MAYBE_UNIFY_CHAR.
6549         Since this stuff is now private to charset.c, there's no need for
6550         a public macro and no need to inline by hand.
6552 2012-09-26  Tomohiro Matsuyama  <tomo@cx4a.org>
6553             Stefan Monnier  <monnier@iro.umontreal.ca>
6554             Juanma Barranquero  <lekktu@gmail.com>
6556         * profiler.c: New file.
6557         * Makefile.in (base_obj): Add profiler.o.
6558         * makefile.w32-in (OBJ2, GLOBAL_SOURCES): Add profiler.c.
6559         ($(BLD)/profiler.$(O)): New target.
6560         * emacs.c (main): Call syms_of_profiler.
6561         * alloc.c (Qautomatic_gc): New constant.
6562         (MALLOC_PROBE): New macro.
6563         (xmalloc, xzalloc, xrealloc, lisp_malloc, lisp_align_malloc): Use it.
6564         (total_bytes_of_live_objects): New function.
6565         (Fgarbage_collect): Use it.  Record itself in backtrace_list.
6566         Call malloc_probe for the memory profiler.
6567         (syms_of_alloc): Define Qautomatic_gc.
6568         * eval.c (eval_sub, Ffuncall): Reorder assignments to avoid
6569         race condition.
6570         (struct backtrace): Move definition...
6571         * lisp.h (struct backtrace): ..here.
6572         (Qautomatic_gc, profiler_memory_running): Declare vars.
6573         (malloc_probe, syms_of_profiler): Declare functions.
6574         * xdisp.c (Qautomatic_redisplay): New constant.
6575         (redisplay_internal): Record itself in backtrace_list.
6576         (syms_of_xdisp): Define Qautomatic_redisplay.
6578 2012-09-25  Eli Zaretskii  <eliz@gnu.org>
6579 2012-09-25  Juanma Barranquero  <lekktu@gmail.com>
6581         * makefile.w32-in ($(BLD)/callproc.$(O)): Update dependencies.
6583 2012-09-25  Paul Eggert  <eggert@cs.ucla.edu>
6585         Prefer POSIX timers if available.
6586         They avoid a race if the timer is too close to the current time.
6587         * atimer.c (alarm_timer, alarm_timer_ok) [SIGEV_SIGNAL]: New static vars.
6588         (set_alarm) [SIGEV_SIGNAL]: Use POSIX timers if available.
6589         (init_atimer) [SIGEV_SIGNAL]: Initialize them.
6591 2012-09-25  Eli Zaretskii  <eliz@gnu.org>
6593         * coding.c (CHAR_STRING_ADVANCE_NO_UNIFY): Make it an alias of
6594         CHAR_STRING_ADVANCE.
6595         (STRING_CHAR_ADVANCE_NO_UNIFY): Make it an alias of
6596         STRING_CHAR_ADVANCE.
6598 2012-09-25  Juanma Barranquero  <lekktu@gmail.com>
6600         Move Vlibrary_cache to emacs.c and reset before dumping.
6602         * lisp.h (reset_image_types): Declare.
6603         [WINDOWSNT] (Vlibrary_cache): Declare.
6605         * image.c (reset_image_types): New function.
6607         * emacs.c [WINDOWSNT] (Vlibrary_cache): Move from w32.c.
6608         (syms_of_emacs) [WINDOWSNT] <Vlibrary_cache>: Initialize and staticpro.
6609         (Fdump_emacs): Reset Vlibrary_cache and image_types.
6611         * w32.c (Vlibrary_cache): Do not define; moved to emacs.c
6612         (globals_of_w32) <Vlibrary_cache>: Do not initialize.
6614         * w32.h (Vlibrary_cache): Do not declare.
6616 2012-09-25  Eli Zaretskii  <eliz@gnu.org>
6618         * w32proc.c (sys_signal): Handle all signals defined by the
6619         MS-Windows runtime, not just SIGCHLD.  Actually install the signal
6620         handlers for signals supported by Windows.  Don't override
6621         term_ntproc as the handler for SIGABRT.
6622         (sigaction): Rewrite to call sys_signal instead of duplicating its
6623         code.
6624         (sys_kill): Improve commentary.
6626         * w32.c (term_ntproc): Accept (and ignore) one argument, for
6627         consistency with a signature of a signal handler.  All callers
6628         changed.
6629         (init_ntproc): Accept an argument DUMPING.  If dumping, don't
6630         install term_ntproc as a signal handler for SIGABRT, as that
6631         should be done by the dumped Emacs.
6633         * w32.h (init_ntproc, term_ntproc): Adjust prototypes.
6635         * w32select.c (term_w32select): Protect against repeated
6636         invocation by setting clipboard_owner to NULL after calling
6637         DestroyWindow.
6639         * emacs.c (shut_down_emacs, main): Adapt the calls to init_ntproc
6640         and term_ntproc to their modified signatures.
6642         * character.c (char_string, string_char): Remove calls to
6643         MAYBE_UNIFY_CHAR.  See the discussion starting at
6644         http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00433.html
6645         for the details.
6647 2012-09-25  Chong Yidong  <cyd@gnu.org>
6649         * xdisp.c (mode_line_inverse_video): Delete obsolete variable.
6651 2012-09-24  Stefan Monnier  <monnier@iro.umontreal.ca>
6653         * bytecode.c (exec_byte_code): Signal an error instead of aborting,
6654         when encountering an unknown bytecode.
6656 2012-09-24  Paul Eggert  <eggert@cs.ucla.edu>
6658         image.c, indent.c: Use bool for booleans.
6659         * dispextern.h (struct image_type): Members valid_p, load, init
6660         now return bool, not int.  All uses changed.
6661         * image.c: Omit unnecessary static decls.
6662         (x_create_bitmap_mask, x_build_heuristic_mask):
6663         Return void, not int, since callers don't care about the return value.
6664         (x_create_bitmap_mask, define_image_type, valid_image_p)
6665         (struct image_keyword, parse_image_spec, image_spec_value)
6666         (check_image_size, image_background)
6667         (image_background_transparent, x_clear_image_1)
6668         (postprocess_image, lookup_image, x_check_image_size)
6669         (x_create_x_image_and_pixmap, xbm_image_p)
6670         (Create_Pixmap_From_Bitmap_Data, xbm_read_bitmap_data)
6671         (xbm_load_image, xbm_file_p, xbm_load, xpm_lookup_color)
6672         (init_xpm_functions, xpm_valid_color_symbols_p, xpm_image_p)
6673         (xpm_load, xpm_load_image, lookup_rgb_color, lookup_pixel_color)
6674         (x_to_xcolors, x_build_heuristic_mask, pbm_image_p, pbm_load)
6675         (png_image_p, init_png_functions, png_load_body, png_load)
6676         (jpeg_image_p, init_jpeg_functions, jpeg_load_body, jpeg_load)
6677         (tiff_image_p, init_tiff_functions, tiff_load, gif_image_p)
6678         (init_gif_functions, gif_load, imagemagick_image_p)
6679         (imagemagick_load_image, imagemagick_load, svg_image_p)
6680         (init_svg_functions, svg_load, svg_load_image, gs_image_p)
6681         (gs_load):
6682         * nsimage.m (ns_load_image):
6683         * nsterm.m (ns_defined_color):
6684         * xfaces.c (tty_lookup_color, tty_defined_color, defined_color):
6685         * xfns.c (x_defined_color):
6686         * xterm.c (x_alloc_lighter_color_for_widget)
6687         (x_alloc_nearest_color_1, x_alloc_nearest_color)
6688         (x_alloc_lighter_color):
6689         * indent.c (disptab_matches_widthtab, current_column)
6690         (scan_for_column, string_display_width, indented_beyond_p)
6691         (compute_motion, vmotion, Fvertical_motion):
6692         Use bool for booleans.
6694 2012-09-24  Chong Yidong  <cyd@gnu.org>
6696         * chartab.c (Fset_char_table_default): Obsolete function removed.
6698 2012-09-23  Paul Eggert  <eggert@cs.ucla.edu>
6700         Move pid_t related decls out of lisp.h.
6701         * lisp.h, syswait.h (record_child_status_change, wait_for_termination)
6702         (interruptible_wait_for_termination):
6703         Move these decls from lisp.h to syswait.h, since they use pid_t.
6704         Needed on FreeBSD; see Herbert J. Skuhra in
6705         <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00571.html>.
6706         * callproc.c: Include syswait.h.
6708         gnutls.c, gtkutil.c: Use bool for boolean.
6709         * gnutls.c (gnutls_global_initialized, init_gnutls_functions)
6710         (emacs_gnutls_handle_error):
6711         * gtkutil.c (xg_check_special_colors, xg_prepare_tooltip)
6712         (xg_hide_tooltip, xg_create_frame_widgets)
6713         (create_dialog, xg_uses_old_file_dialog)
6714         (xg_get_file_with_chooser, xg_get_file_with_selection)
6715         (xg_get_file_name, xg_have_tear_offs, create_menus, xg_create_widget)
6716         (xg_item_label_same_p, xg_update_menubar)
6717         (xg_modify_menubar_widgets, xg_event_is_for_menubar)
6718         (xg_ignore_gtk_scrollbar, xg_set_toolkit_scroll_bar_thumb)
6719         (xg_event_is_for_scrollbar, xg_pack_tool_bar, xg_make_tool_item)
6720         (is_box_type, xg_tool_item_stale_p, xg_update_tool_bar_sizes)
6721         (update_frame_tool_bar, free_frame_tool_bar):
6722         * gtkutil.c, w32term.c, xterm.c (x_wm_set_size_hint):
6723         * nsmenu.m (ns_update_menubar):
6724         * nsmenu.m, w32menu.c, xmenu.c (set_frame_menubar):
6725         * xfns.c (Fx_show_tip) [USE_GTK]:
6726         Use bool for boolean.
6727         * gtkutil.c (xg_update_frame_menubar):
6728         * xmenu.c (update_frame_menubar):
6729         Return void, not int, since caller ignores return value.
6730         * gtkutil.c (xg_change_toolbar_position):
6731         Return void, not 1.
6733 2012-09-23  Juanma Barranquero  <lekktu@gmail.com>
6735         * makefile.w32-in (BLOCKINPUT_H): Remove.
6736         (SYSSIGNAL_H): New macro.
6737         ($(BLD)/alloc.$(O), $(BLD)/atimer.$(O), $(BLD)/buffer.$(O))
6738         ($(BLD)/callproc.$(O), $(BLD)/data.$(O), $(BLD)/dired.$(O))
6739         ($(BLD)/dispnew.$(O), $(BLD)/editfns.$(O), $(BLD)/emacs.$(O))
6740         ($(BLD)/eval.$(O), $(BLD)/fileio.$(O), $(BLD)/floatfns.$(O))
6741         ($(BLD)/fns.$(O), $(BLD)/fontset.$(O), $(BLD)/frame.$(O))
6742         ($(BLD)/fringe.$(O), $(BLD)/image.$(O), $(BLD)/insdel.$(O))
6743         ($(BLD)/keyboard.$(O), $(BLD)/keymap.$(O), $(BLD)/lread.$(O))
6744         ($(BLD)/menu.$(O), $(BLD)/w32inevt.$(O), $(BLD)/w32proc.$(O))
6745         ($(BLD)/print.$(O), $(BLD)/process.$(O), $(BLD)/ralloc.$(O))
6746         ($(BLD)/search.$(O), $(BLD)/sound.$(O), $(BLD)/sysdep.$(O))
6747         ($(BLD)/term.$(O), $(BLD)/window.$(O), $(BLD)/xdisp.$(O))
6748         ($(BLD)/xfaces.$(O), $(BLD)/w32fns.$(O), $(BLD)/w32menu.$(O))
6749         ($(BLD)/w32term.$(O), $(BLD)/w32select.$(O), $(BLD)/w32reg.$(O))
6750         ($(BLD)/w32xfns.$(O)): Update dependencies.
6752 2012-09-23  Eli Zaretskii  <eliz@gnu.org>
6754         * .gdbinit: Set breakpoint on terminate_due_to_signal, not on
6755         fatal_error_backtrace.
6757         * w32proc.c (sys_kill): Undo last change: don't do anything when
6758         invoked to deliver SIGABRT to our own process.  This is now
6759         handled by emacs_raise.
6761 2012-09-23  Juanma Barranquero  <lekktu@gmail.com>
6763         * w32term.c (w32_read_socket): Remove leftover reference to
6764         interrupt_input_pending.
6766 2012-09-23  Paul Eggert  <eggert@cs.ucla.edu>
6768         Do not use SA_NODEFER.
6769         Problem reported by Dani Moncayo in
6770         <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00557.html>.
6771         * alloc.c (die):
6772         * sysdep.c (emacs_abort): Do not reset signal handler.
6773         * emacs.c (terminate_due_to_signal): Reset signal handler here.
6774         * sysdep.c (init_signals): Do not use SA_NODEFER.  It wasn't
6775         wanted even on POSIXish hosts, and it doesn't work on Windows.
6777 2012-09-23  Jan Djärv  <jan.h.d@swipnet.se>
6779         * xterm.c (x_term_init): Call fixup_locale before and after calling
6780         gtk_init (Bug#12392).
6782 2012-09-23  Chong Yidong  <cyd@gnu.org>
6784         * w32.c (w32_delayed_load): Remove LIBRARIES argument; always use
6785         Vdynamic_library_alist.
6787         * gnutls.c (init_gnutls_functions): Caller changed; remove arg.
6788         (Fgnutls_available_p): Caller changed.
6790         * xml.c (init_libxml2_functions, Flibxml_parse_html_region)
6791         (Flibxml_parse_xml_region): Likewise.
6793         * dispextern.h (struct image_type): Remove arg from init function.
6795         * image.c (Finit_image_library, lookup_image_type)
6796         (define_image_type): Remove now-unneeded second arg.
6797         (init_xpm_functions, init_png_functions, init_jpeg_functions)
6798         (init_tiff_functions, init_gif_functions, init_svg_functions):
6799         Arglist and w32_delayed_load calling convention changed.
6800         (gs_type): Remove init_gs_functions; there is no such function.
6801         (valid_image_p, make_image): Fix caller to lookup_image_type.
6803 2012-09-23  Paul Eggert  <eggert@cs.ucla.edu>
6805         Simplify and avoid signal-handling races (Bug#12471).
6806         * alloc.c (die):
6807         * sysdep.c (emacs_abort) [HAVE_NTGUI]:
6808         Avoid recursive loop if there's a fatal error in the function itself.
6809         * atimer.c (pending_atimers):
6810         * blockinput.h: Don't include "atimer.h"; no longer needed.
6811         (interrupt_input_pending): Remove.  All uses removed.
6812         pending_signals now counts both atimers and ordinary interrupts.
6813         This is less racy than having three separate pending-signal flags.
6814         (block_input, unblock_input, totally_unblock_input, unblock_input_to)
6815         (input_blocked_p):
6816         Rename from their upper-case counterparts BLOCK_INPUT,
6817         UNBLOCK_INPUT, TOTALLY_UNBLOCK_INPUT, UNBLOCK_INPUT_TO,
6818         INPUT_BLOCKED_P, and turn into functions.  All uses changed.
6819         This makes it easier to access volatile variables more accurately.
6820         (BLOCK_INPUT_RESIGNAL): Remove.  All uses replaced by unblock_input ().
6821         (input_blocked_p): Prefer this to 'interrupt_input_blocked', as
6822         that's more reliable if the code is buggy and sets
6823         interrupt_input_blocked to a negative value.  All uses changed.
6824         * atimer.c (deliver_alarm_signal):
6825         Remove.  No need to deliver this to the parent; any thread can
6826         handle this signal now.  All uses replaced by underlying handler.
6827         * atimer.c (turn_on_atimers):
6828         * dispnew.c (handle_window_change_signal):
6829         * emacs.c (handle_danger_signal):
6830         * keyboard.c (kbd_buffer_get_event):
6831         Don't reestablish signal handler; not needed with sigaction.
6832         * blockinput.h (UNBLOCK_INPUT_TO, TOTALLY_UNBLOCK_INPUT)
6833         (UNBLOCK_INPUT_TO):
6834         Rework to avoid unnecessary accesses to volatile variables.
6835         (UNBLOCK_INPUT_TO): Now a function.
6836         (totally_unblock_input, unblock_input): New decls.
6837         * data.c (handle_arith_signal, deliver_arith_signal): Move to sysdep.c
6838         (init_data): Remove.  Necessary stuff now done in init_signal.
6839         * emacs.c, xdisp.c: Include "atimer.h", since we invoke atimer functions.
6840         * emacs.c (handle_fatal_signal, deliver_fatal_signal): Move to sysdep.c.
6841         (fatal_error_code): Remove; no longer needed.
6842         (terminate_due_to_signal): Rename from fatal_error_backtrace, since
6843         it doesn't always backtrace.  All uses changed.  No need to reset
6844         signal to default, since sigaction and/or die does that for us now.
6845         Use emacs_raise (FOO), not kill (getpid (), FOO).
6846         (main): Check more-accurately whether we're dumping.
6847         Move fatal-error setup to sysdep.c
6848         * floatfns.c: Do not include "syssignal.h"; no longer needed.
6849         * gtkutil.c (xg_get_file_name, xg_get_font):
6850         Remove no-longer-needed signal-mask manipulation.
6851         * keyboard.c, process.c (POLL_FOR_INPUT):
6852         Don't depend on USE_ASYNC_EVENTS, a symbol that is never defined.
6853         * keyboard.c (read_avail_input): Remove.
6854         All uses replaced by gobble_input.
6855         (Ftop_level): Use TOTALLY_UNBLOCK_INPUT rather than open code.
6856         (kbd_buffer_store_event_hold, gobble_input):
6857         (record_asynch_buffer_change) [USABLE_SIGIO]:
6858         (store_user_signal_events):
6859         No need to mess with signal mask.
6860         (gobble_input): If blocking input and there are terminals, simply
6861         set pending_signals to 1 and return.  All hooks changed to not
6862         worry about whether input is blocked.
6863         (process_pending_signals): Clear pending_signals before processing
6864         them, in case a signal comes in while we're processing.
6865         By convention callers now test pending_signals before calling us.
6866         (UNBLOCK_INPUT_TO, unblock_input, totally_unblock_input):
6867         New functions, to support changes to blockinput.h.
6868         (handle_input_available_signal): Now extern.
6869         (reinvoke_input_signal): Remove.  All uses replaced by
6870         handle_async_input.
6871         (quit_count): Now volatile, since a signal handler uses it.
6872         (handle_interrupt): Now takes bool IN_SIGNAL_HANDLER as arg.
6873         All callers changed.  Block SIGINT only if not already blocked.
6874         Clear sigmask reliably, even if Fsignal returns, which it can.
6875         Omit unnecessary accesses to volatile var.
6876         (quit_throw_to_read_char): No need to restore sigmask.
6877         * keyboard.c (gobble_input, handle_user_signal):
6878         * process.c (wait_reading_process_output):
6879         Call signal-handling code rather than killing ourselves.
6880         * lisp.h: Include <float.h>, for...
6881         (IEEE_FLOATING_POINT): New macro, moved here to avoid duplication.
6882         (pending_signals): Now volatile.
6883         (syms_of_data): Now const if IEEE floating point.
6884         (handle_input_available_signal) [USABLE_SIGIO]:
6885         (terminate_due_to_signal, record_child_status_change): New decls.
6886         * process.c (create_process): Avoid disaster if memory is exhausted
6887         while we're processing a vfork, by tightening the critical section
6888         around the vfork.
6889         (send_process_frame, process_sent_to, handle_pipe_signal)
6890         (deliver_pipe_signal): Remove.  No longer needed, as Emacs now
6891         ignores SIGPIPE.
6892         (send_process): No need for setjmp/longjmp any more, since the
6893         SIGPIPE stuff is now gone.  Instead, report an error if errno
6894         is EPIPE.
6895         (record_child_status_change): Now extern.  PID and W are now args.
6896         Return void, not bool.  All callers changed.
6897         * sysdep.c (wait_debugging) [(BSD_SYSTEM || HPUX) && !defined (__GNU__)]:
6898         Remove.  All uses removed.  This bug should be fixed now in a
6899         different way.
6900         (wait_for_termination_1): Use waitpid rather than sigsuspend,
6901         and record the child status change directly.  This avoids the
6902         need to futz with the signal mask.
6903         (process_fatal_action): Move here from emacs.c.
6904         (emacs_sigaction_flags): New function, containing
6905         much of what used to be in emacs_sigaction_init.
6906         (emacs_sigaction_init): Use it.  Block nonfatal system signals that are
6907         caught by emacs, to make races less likely.
6908         (deliver_process_signal): Rename from handle_on_main_thread.
6909         All uses changed.
6910         (BACKTRACE_LIMIT_MAX): Now at top level.
6911         (thread_backtrace_buffer, threadback_backtrace_pointers):
6912         New static vars.
6913         (deliver_thread_signal, deliver_fatal_thread_signal):
6914         New functions, for more-accurate delivery of thread-specific signals.
6915         (handle_fatal_signal, deliver_fatal_signal): Move here from emacs.c.
6916         (deliver_arith_signal): Handle in this thread, not
6917         in the main thread, since it's triggered by this thread.
6918         (maybe_fatal_sig): New function.
6919         (init_signals): New arg DUMPING so that we can be more accurate
6920         about whether we're dumping.  Caller changed.
6921         Treat thread-specific signals differently from process-general signals.
6922         Block all signals while handling fatal error; that's safer.
6923         xsignal from SIGFPE only on non-IEEE hosts, treating it as fatal
6924         on IEEE hosts.
6925         When batch, ignore SIGHUP, SIGINT, SIGTERM if they were already ignored.
6926         Ignore SIGPIPE unless batch.
6927         (emacs_backtrace): Output backtrace for the appropriate thread,
6928         which is not necessarily the main thread.
6929         * syssignal.h: Include <stdbool.h>.
6930         (emacs_raise): New macro.
6931         * xterm.c (x_connection_signal): Remove; no longer needed
6932         now that we use sigaction.
6933         (x_connection_closed): No need to mess with sigmask now.
6934         (x_initialize): No need to reset SIGPIPE handler here, since
6935         init_signals does this for us now.
6937 2012-09-23  Jan Djärv  <jan.h.d@swipnet.se>
6939         * nsterm.m (ns_dumpglyphs_image): dr is a new rect to draw image into,
6940         background rect may be larger (Bug#12245).
6942 2012-09-23  Chong Yidong  <cyd@gnu.org>
6944         * keyboard.c (timer_check): Avoid quitting during Fcopy_sequence.
6946 2012-09-22  Paul Eggert  <eggert@cs.ucla.edu>
6948         * .gdbinit: Just stop at fatal_error_backtrace.
6949         See Stefan Monnier's request in
6950         <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00549.html>.
6951         Remove no-longer-used query of system type.
6953 2012-09-22  Chong Yidong  <cyd@gnu.org>
6955         * search.c (Freplace_match): Doc fix (Bug#12325).
6957         * minibuf.c (Finternal_complete_buffer): Doc fix (Bug#12391).
6959         * editfns.c (Fline_beginning_position): Doc fix (Bug#12416).
6960         (Fline_end_position): Doc fix.
6962         * cmds.c (Fforward_char, Fbackward_char): Doc fix (Bug#12414).
6964 2012-09-22  Chong Yidong  <cyd@gnu.org>
6966         * dispextern.h (struct image_type): Add new slot, storing a type
6967         initialization function.
6969         * image.c (define_image_type): Call the image initializer function
6970         if it is defined.  Arguments and return value changed.
6971         (valid_image_p, make_image): Callers changed.
6972         (xbm_type, xpm_type, pbm_type, png_type, jpeg_type, tiff_type)
6973         (gif_type, imagemagick_type, svg_type, gs_type):
6974         Add initialization functions.
6975         (Finit_image_library): Call lookup_image_type.
6976         (CHECK_LIB_AVAILABLE): Macro deleted.
6977         (lookup_image_type): Call define_image_type here, rather than via
6978         Finit_image_library, and without using CHECK_LIB_AVAILABLE.
6979         (syms_of_image): Move define_image_type calls for xbm_type and
6980         pbm_type to lookup_image_type.
6982 2012-09-22  Eli Zaretskii  <eliz@gnu.org>
6984         * keyboard.c (timer_check_2): Move calculation of 'timers' and
6985         'idle_timers' from here ...
6986         (timer_check): ... to here.  Use Fcopy_sequence to copy the timer
6987         lists, to avoid infloops when the timer does something stupid,
6988         like reinvoke itself with the same or smaller time-out.
6989         (Bug#12447)
6991 2012-09-22  Martin Rudalics  <rudalics@gmx.at>
6993         * window.c (Fsplit_window_internal): Handle only Qt value of
6994         Vwindow_combination_limit separately.
6995         (Qtemp_buffer_resize): New symbol.
6996         (Vwindow_combination_limit): New default value.
6997         Rewrite doc-string.
6999 2012-09-22  Eli Zaretskii  <eliz@gnu.org>
7001         * xdisp.c (next_overlay_string): Initialize it->end_charpos for
7002         the new overlay string.  (Bug#10159)
7004 2012-09-22  Paul Eggert  <eggert@cs.ucla.edu>
7006         * emacs.c (shut_down_emacs): Don't assume stderr is buffered,
7007         or that fprintf is async-signal-safe.  POSIX doesn't require
7008         either assumption.
7010 2012-09-22  Chong Yidong  <cyd@gnu.org>
7012         * buffer.c (Fset_buffer_modified_p): Handle indirect buffers
7013         (Bug#8207).
7015 2012-09-22  Kenichi Handa  <handa@gnu.org>
7017         * composite.c (composition_reseat_it): Handle the case that a
7018         grapheme cluster is not covered by a single font (Bug#12352).
7020 2012-09-21  Chong Yidong  <cyd@gnu.org>
7022         * image.c (define_image_type): Avoid adding duplicate types to
7023         image_types (Bug#12463).  Suggested by Jörg Walter.
7025 2012-09-21  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
7027         * unexmacosx.c: Define LC_DATA_IN_CODE if not defined.
7028         (print_load_command_name): Add case LC_DATA_IN_CODE.
7029         (dump_it) [LC_DATA_IN_CODE]: Call copy_linkedit_data.
7031 2012-09-21  Glenn Morris  <rgm@gnu.org>
7033         * eval.c (Frun_hook_with_args_until_success)
7034         (Frun_hook_with_args_until_failure): Doc fixes.  (Bug#12393)
7036 2012-09-21  Andreas Schwab  <schwab@linux-m68k.org>
7038         * fileio.c (Ffile_selinux_context): Only call freecon when
7039         lgetfilecon succeeded.
7040         (Fset_file_selinux_context): Likewise.  (Bug#12444)
7042 2012-09-21  Eli Zaretskii  <eliz@gnu.org>
7044         * xdisp.c (try_window_reusing_current_matrix): Under bidi
7045         reordering, locate the cursor by calling set_cursor_from_row; if
7046         that fails, clear the desired glyph matrix before returning a
7047         failure indication to the caller.  Fixes leaving garbled display
7048         when fast scrolling with a down-key.  (Bug#12403)
7049         (compute_stop_pos_backwards): Fix a typo that caused crashes while
7050         scrolling through multibyte text.
7052 2012-09-20  Stefan Monnier  <monnier@iro.umontreal.ca>
7054         * alloc.c (mark_object) <PVEC_WINDOW>: Mark prev/next_buffers *after*
7055         calling mark_vectorlike since that's the one that marks the window.
7056         (mark_discard_killed_buffers): Mark the final cdr.
7057         * window.h (struct window): Move prev/next_buffers to the
7058         non-standard fields.
7059         * window.c (make_window): Initialize prev/next_buffers manually.
7061 2012-09-20  Paul Eggert  <eggert@cs.ucla.edu>
7063         Omit unused arg EXPECTED from socket hooks.
7064         * keyboard.c (gobble_input, read_avail_input, tty_read_avail_input):
7065         * nsterm.m (ns_term_init):
7066         * termhooks.h (struct terminal.read_socket_hook):
7067         * w32inevt.c (w32_console_read_socket):
7068         * w32term.c (w32_read_socket):
7069         * xterm.c (XTread_socket):
7070         Omit unused arg EXPECTED.  All callers changed.
7071         (store_user_signal_events): Return void, not int, since callers no
7072         longer care about the return value.  All uses changed.
7074 2012-09-20  Juanma Barranquero  <lekktu@gmail.com>
7076         * w32gui.h (XParseGeometry): Do not declare.
7078 2012-09-19  Paul Eggert  <eggert@cs.ucla.edu>
7080         * w32inevt.c (w32_console_read_socket): Return -1 on failure, not 0.
7081         Ignore 'expected'.  See Eli Zaretskii in
7082         <http://bugs.gnu.org/12471#8> (last line).
7084         * frame.c (read_integer): Remove.  All uses replaced by strtol/strtoul.
7085         (XParseGeometry): Now static.  Substitute extremal values for
7086         values that are out of range.
7088 2012-09-19  Jan Djärv  <jan.h.d@swipnet.se>
7090         * w32xfns.c (read_integer, XParseGeometry): Move to frame.c.
7092         * nsfns.m (XParseGeometry): Remove.
7093         (Fx_create_frame): Call x_set_offset to correctly interpret
7094         top_pos in geometry.
7096         * frame.c (read_integer, XParseGeometry): Move from w32xfns.c.
7097         (Fx_parse_geometry): If there is a space in string, call
7098         Qns_parse_geometry, otherwise do as on other terms (Bug#12368).
7100 2012-09-17  Eli Zaretskii  <eliz@gnu.org>
7102         * search.c (scan_buffer): Use character positions in calls to
7103         region_cache_forward and region_cache_backward, not byte
7104         positions.  (Bug#12196)
7106         * w32term.c (w32_read_socket): Set pending_signals to 1, like
7107         xterm.c does.  Reported by Daniel Colascione <dancol@dancol.org>.
7109         * ralloc.c (r_alloc_init) [!SYSTEM_MALLOC]: Initialize
7110         __malloc_extra_blocks to 32 instead of 64, like alloc.c did in
7111         emacs_blocked_malloc, now deleted.
7113 2012-09-17  Paul Eggert  <eggert@cs.ucla.edu>
7115         Remove no-longer-needed Solaris 2.4 vfork bug workaround.
7116         The workaround was for improving performance on Solaris 2.4, but
7117         is getting in the way now.  Emacs will still work if someone is
7118         still running Solaris 2.4 in a museum somewhere; Sun dropped
7119         support for Solaris 2.4 in 2003.
7120         * callproc.c (Fcall_process) [HAVE_WORKING_VFORK]:
7121         * process.c (create_process) [HAVE_WORKING_VFORK]:
7122         Omit now-unnecessary workaround for the Solaris 2.4 vfork bug,
7123         since Emacs no longer uses vfork on that platform.
7125 2012-09-17  Glenn Morris  <rgm@gnu.org>
7127         * emacs.c: Use COPYRIGHT.
7129 2012-09-16  Paul Eggert  <eggert@cs.ucla.edu>
7131         Remove configure's --without-sync-input option (Bug#12450).
7132         When auditing signal-handling in preparation for cleaning it up,
7133         I found that SYNC_INPUT has race conditions and would be a real
7134         pain to fix.  Since it's an undocumented and deprecated
7135         configure-time option, now seems like a good time to remove it.
7136         Also see <http://bugs.gnu.org/11080#16>.
7137         * alloc.c (_bytes_used, __malloc_extra_blocks, _malloc_internal)
7138         (_free_internal) [!DOUG_LEA_MALLOC]: Remove decls.
7139         (alloc_mutex) [!SYSTEM_MALLOC && !SYNC_INPUT && HAVE_PTHREAD]:
7140         (malloc_hysteresis):
7141         (check_depth) [XMALLOC_OVERRUN_CHECK]:
7142         (MALLOC_BLOCK_INPUT, MALLOC_UNBLOCK_INPUT):
7143         (__malloc_hook, __realloc_hook, __free_hook, BYTES_USED)
7144         (dont_register_blocks, bytes_used_when_reconsidered)
7145         (bytes_used_when_full, emacs_blocked_free, emacs_blocked_malloc)
7146         (emacs_blocked_realloc, reset_malloc_hooks, uninterrupt_malloc):
7147         [!SYSTEM_MALLOC && !SYNC_INPUT]:
7148         Remove.  All uses removed.
7149         (MALLOC_BLOCK_INPUT, MALLOC_UNBLOCK_INPUT): Use a different
7150         implementation, one that depends on whether the new macro
7151         XMALLOC_BLOCK_INPUT_CHECK is defined, not on whether SYNC_INPUT
7152         is defined.
7153         * atimer.c (run_timers, handle_alarm_signal):
7154         * keyboard.c (pending_signal, poll_for_input_1, poll_for_input)
7155         (handle_async_input, process_pending_signals)
7156         (handle_input_available_signal, init_keyboard):
7157         * nsterm.m (ns_read_socket):
7158         * process.c (wait_reading_process_output):
7159         * regex.c (immediate_quit, IMMEDIATE_QUIT_CHECK):
7160         * sysdep.c (emacs_sigaction_init) [SA_RESTART]:
7161         (emacs_write):
7162         * xterm.c (XTread_socket):
7163         Assume SYNC_INPUT.
7164         * conf_post.h (SA_RESTART) [IRIX6_5]: Do not #undef.
7165         * eval.c (handling_signal): Remove.  All uses removed.
7166         * lisp.h (ELSE_PENDING_SIGNALS): Remove.
7167         All uses replaced with the SYNC_INPUT version.
7168         (reset_malloc_hooks, uninterrupt_malloc, handling_signal):
7169         Remove decls.
7170         * sysdep.c, syssignal.h (main_thread) [FORWARD_SIGNAL_TO_MAIN_THREAD]:
7171         Now static.
7173         * font.c (Ffont_shape_gstring): Remove unused local.
7175 2012-09-16  Glenn Morris  <rgm@gnu.org>
7177         * Makefile.in (clean): No longer run nextstep's clean.
7179         * Makefile.in (ns_appdir, ns_appbindir, ns_appsrc): Remove variables.
7180         (ns_frag): Remove.
7181         (ns-app): Move here from ns.mk, and simplify.
7182         (clean): Simplify nextstep entry.
7183         * ns.mk: Remove file.
7185 2012-09-17  Kenichi Handa  <handa@gnu.org>
7187         * font.c (Ffont_shape_gstring): Fix previous change; GLYPHs may
7188         not covert the last few charactes.
7190 2012-09-16  Kenichi Handa  <handa@gnu.org>
7192         * font.c (Ffont_shape_gstring): Don't adjust grapheme cluster
7193         here, but just check the validity of glyphs in the glyph-string.
7195 2012-09-16  Martin Rudalics  <rudalics@gmx.at>
7197         * window.c (Fwindow_parameter, Fset_window_parameter):
7198         Accept any window as argument (Bug#12452).
7200 2012-09-16  Jan Djärv  <jan.h.d@swipnet.se>
7202         * nsfns.m (Fx_open_connection): Move initialization of ns_*_types
7203         to ns_term_init to avoid memory leak.
7205         * nsterm.m (ns_update_begin): Initialize bp after lcokFocus, use
7206         explicit retain/release.
7207         (ns_term_init): Only allow one display.  Initialize outerpool and
7208         ns_*_types.
7210 2012-09-15  Paul Eggert  <eggert@cs.ucla.edu>
7212         Port _setjmp fix to POSIXish hosts as well as Microsoft.
7213         * image.c (_setjmp) [!HAVE__SETJMP]: Restore definition, as
7214         it's needed on POSIXish hosts that lack _setjmp.  Attempt to solve
7215         the Microsoft problem in a different way, by altering ../nt/config.nt.
7217 2012-09-15  Eli Zaretskii  <eliz@gnu.org>
7219         * w32xfns.c:
7220         * w32uniscribe.c:
7221         * w32term.c:
7222         * w32select.c:
7223         * w32reg.c:
7224         * w32proc.c:
7225         * w32menu.c:
7226         * w32inevt.c:
7227         * w32heap.c:
7228         * w32font.c:
7229         * w32fns.c:
7230         * w32console.c:
7231         * w32.c:
7232         * w16select.c: Remove inclusion of setjmp.h, as it is now included
7233         by lisp.h.  This completes removal of setjmp.h inclusion
7234         erroneously announced in the previous commit.  (Bug#12446)
7236         * lisp.h [!HAVE__SETJMP, !HAVE_SIGSETJMP]: Make the commentary
7237         more accurate.
7239         * image.c (_setjmp) [!HAVE__SETJMP]: Define only if 'setjmp' is
7240         not defined as a macro.  The latter happens on MS-Windows.
7241         (Bug#12446)
7243 2012-09-15  Paul Eggert  <eggert@cs.ucla.edu>
7245         Port better to POSIX hosts lacking _setjmp (Bug#12446).
7246         * lisp.h: Include <setjmp.h> here, since we use its symbols here.
7247         Some instances of '#include <setjmp.h>' removed, if the
7248         only reason for the instance was because "lisp.h" was included.
7249         (sys_jmp_buf, sys_setjmp, sys_longjmp): New symbols.
7250         Unless otherwise specified, replace all uses of jmp_buf, _setjmp,
7251         and _longjmp with the new symbols.  Emacs already uses _setjmp if
7252         available, so this change affects only POSIXish hosts that have
7253         sigsetjmp but not _setjmp, such as some versions of Solaris and
7254         Unixware.  (Also, POSIX-2008 marks _setjmp as obsolescent.)
7255         * image.c (_setjmp, _longjmp) [HAVE_PNG && !HAVE__SETJMP]: New macros.
7256         (png_load_body) [HAVE_PNG]:
7257         (PNG_LONGJMP) [HAVE_PNG && PNG_LIBPNG_VER < 10500]:
7258         (PNG_JMPBUF) [HAVE_PNG && PNG_LIBPNG_VER >= 10500]:
7259         Use _setjmp and _longjmp rather than sys_setjmp and sys_longjmp,
7260         since PNG requires jmp_buf.  This is the only exception to the
7261         general rule that we now use sys_setjmp and sys_longjmp.
7262         This exception is OK since this code does not change the signal
7263         mask or longjmp out of a signal handler.
7265 2012-09-14  Paul Eggert  <eggert@cs.ucla.edu>
7267         * alloc.c [!SYSTEM_MALLOC && !SYNC_INPUT && HAVE_PTHREAD]:
7268         Include "syssignal.h", for 'main_thread'.
7270 2012-09-14  Dmitry Antipov  <dmantipov@yandex.ru>
7272         Avoid out-of-range marker position (Bug#12426).
7273         * insdel.c (replace_range, replace_range_2):
7274         Adjust markers before overlays, as suggested by comments.
7275         (insert_1_both, insert_from_buffer_1, adjust_after_replace):
7276         Remove redundant check before calling offset_intervals.
7278 2012-09-14  Martin Rudalics  <rudalics@gmx.at>
7280         * xdisp.c (Fformat_mode_line): Unconditionally save/restore
7281         current buffer (Bug#12387).
7283 2012-09-14  Juanma Barranquero  <lekktu@gmail.com>
7285         * makefile.w32-in ($(BLD)/alloc.$(O)): Update dependencies.
7287 2012-09-13  Paul Eggert  <eggert@cs.ucla.edu>
7289         Use a more backwards-compatible timer format (Bug#12430).
7290         * keyboard.c (decode_timer): Get PSECS from the 8th (origin-0)
7291         vector element, not from the 4th, since PSECS is now at the end.
7292         (Fcurrent_idle_time): Doc fix.
7294 2012-09-13  Dmitry Antipov  <dmantipov@yandex.ru>
7296         Function to mark objects and remove killed buffers at once.
7297         * alloc.c (discard_killed_buffers): Rename to ...
7298         (mark_discard_killed buffers) ... new name.  Add marking
7299         of remaining objects.  Fix comment.  Adjust users.
7300         (mark_object): Do not touch frame buffer lists here.
7301         * frame.c (delete_frame): Reset frame buffer lists here.
7303 2012-09-13  Paul Eggert  <eggert@cs.ucla.edu>
7305         Better workaround for GNOME bug when --enable-gcc-warnings.
7306         * emacsgtkfixed.c (G_STATIC_ASSERT): Remove, undoing last change.
7307         Instead, disable -Wunused-local-typedefs.  See Dmitry Antipov in
7308         <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00335.html>.
7310         Simplify SIGIO usage (Bug#12408).
7311         The code that dealt with SIGIO was crufty and confusing, e.g., it
7312         played tricks like "#undef SIGIO" but these tricks were not used
7313         consistently.  Simplify mostly by not #undeffing standard symbols,
7314         e.g., use "defined USABLE_SIGIO" (our symbol, which we can define
7315         or not as we please) rather than "defined SIGIO" (standard symbol
7316         that we probably shouldn't #undef).
7317         * conf_post.h [USG5_4]: Do not include <sys/wait.h> here.
7318         Modules that need it can include it.
7319         [USG5_4 && emacs]: Likewise, do not include the streams stuff here.
7320         * dispextern.h (ignore_sigio): New decl.
7321         * emacs.c (shut_down_emacs): Invoke unrequest_sigio
7322         unconditionally, since it's now a no-op if !USABLE_SIGIO.
7323         * emacs.c (shut_down_emacs):
7324         * keyboard.c (kbd_buffer_store_event_hold):
7325         Use ignore_sigio rather than invoking 'signal' directly.
7326         * keyboard.c (USABLE_FIONREAD && USG5_4): Include <sys/filio.h>,
7327         for FIONREAD.
7328         (FIONREAD, SIGIO): Do not #undef.
7329         (tty_read_avail_input): Use #error rather than a syntax error.
7330         * process.c [USG5_4]: Include <sys/stream.h> and <sys/stropts.h>,
7331         for I_PIPE, used by SETUP_SLAVE_PTY.
7332         (DATAGRAM_SOCKETS): Simplify defn, based on USABLE_FIONREAD.
7333         * sysdep.c (croak): Remove; no longer needed.  This bit of
7334         temporary code, with Fred N. Fish's comment that it's temporary,
7335         has been in Emacs since at least 1992!
7336         (init_sigio, reset_sigio, request_sigio, unrequest_sigio):
7337         Arrange for them to be no-ops in all cases when ! USABLE_SIGIO.
7338         * syssignal.h (croak): Remove decl.
7339         (SIGIO, SIGPOO, SIGAIO, SIGPTY): Do not #undef; that's too fragile.
7340         * systty.h [!NO_TERMIO]: Do not include <termio.h>; no longer needed
7341         now that we're termios-only.
7342         (FIONREAD, ASYNC) [BROKEN_FIONREAD]: Do not #undef.
7343         * term.c (dissociate_if_controlling_tty): Use #error rather than
7344         a run-time error.
7346         Work around GCC and GNOME bugs when --enable-gcc-warnings.
7347         * emacsgtkfixed.c (G_STATIC_ASSERT): Redefine to use 'verify',
7348         to work around GNOME bug 683906.
7349         * image.c (jpeg_load_body) [HAVE_JPEG && lint]: Pacify gcc -Wclobber.
7350         (struct my_jpeg_error_mgr) [HAVE_JPEG && lint]: New member fp.
7351         This works around GCC bug 54561.
7353 2012-09-12  Paul Eggert  <eggert@cs.ucla.edu>
7355         More fixes for 'volatile' and setjmp/longjmp.
7356         * eval.c (Fdefvar, Fcondition_case): Remove unnecessary 'volatile's.
7357         * image.c (struct png_load_context) [HAVE_PNG]: New type.
7358         (png_load_body) [HAVE_PNG]:
7359         (jpeg_load_body) [HAVE_JPEG]:
7360         New function, with most of the old parent function's body.
7361         (png_load) [HAVE_PNG]:
7362         (jpeg_load) [HAVE_JPEG]:
7363         Invoke the new function, to avoid longjmp munging our locals.
7364         (struct my_jpeg_error_mgr) [HAVE_JPEG]: New members cinfo, failure_code.
7365         (my_error_exit) [HAVE_JPEG]: Don't trust 'setjmp' to return 2 when
7366         longjmp is passed 2, as the C standard doesn't guarantee this.
7367         Instead, store the failure code into mgr->failure_code.
7369 2012-09-12  Stefan Monnier  <monnier@iro.umontreal.ca>
7371         * keyboard.c (read_char, requeued_events_pending_p, Finput_pending_p)
7372         (Fdiscard_input, quit_throw_to_read_char, init_keyboard)
7373         (syms_of_keyboard): Remove support for unread-command-char.
7375 2012-09-12  Eli Zaretskii  <eliz@gnu.org>
7377         * w32proc.c (sys_kill): If PID is our process ID and the signal is
7378         SIGABRT, call emacs_abort.  Avoids silently exiting upon assertion
7379         violation.  (Bug#12426)
7381 2012-09-12  Paul Eggert  <eggert@cs.ucla.edu>
7383         * image.c (jpeg_memory_src): Don't assume string len fits in unsigned.
7385 2012-09-12  Stefan Monnier  <monnier@iro.umontreal.ca>
7387         * eval.c: Add `inhibit-debugger'.
7388         (Qinhibit_debugger): New symbol.
7389         (call_debugger): Bind it instead of Qdebug_on_error.
7390         (maybe_call_debugger): Test Vinhibit_debugger.
7391         (syms_of_eval): Define inhibit-debugger.
7392         * xdisp.c (set_message): Don't bind Qinhibit_debug_on_message.
7393         (syms_of_xdisp): Remove inhibit-debug-on-message.
7395 2012-09-11  Paul Eggert  <eggert@cs.ucla.edu>
7397         Avoid _setjmp/_longjmp problems with local nonvolatile variables.
7398         If a nonvolatile local variable is written before a _longjmp to
7399         the frame containing the variable, and is read after the _longjmp,
7400         the value read is indeterminate.  Some local variables of type
7401         'struct handler' and 'struct catchtag' are used in this way, so
7402         mark each of their slots as volatile if the slot can be set before
7403         _longjmp and read afterwards.
7404         * lisp.h (struct handler): var and chosen_clause are now volatile.
7405         (struct catchtag): val, next, and pdlcount are now volatile.
7407         * bidi.c (bidi_push_it, bidi_pop_it):
7408         * fns.c (copy_hash_table):
7409         * image.c (define_image_type):
7410         * keyboard.c (kbd_buffer_store_event_hold):
7411         * process.c (Fprocess_send_eof):
7412         * xfaces.c (x_create_gc) [HAVE_NS]:
7413         * xgselect.c (xg_select):
7414         Prefer assignment to memcpy when either will do.
7416         * alloc.c (discard_killed_buffers): Tune and simplify a bit.
7417         Use pointer-to-a-pointer to simplify and avoid a NILP check each
7418         time an item is removed.  No need to mark this function 'inline';
7419         the compiler knows better than we do.
7421 2012-09-11  Jan Djärv  <jan.h.d@swipnet.se>
7423         * nsterm.m (ns_judge_scroll_bars): Pass NO to updateFrameSize.
7424         (updateFrameSize:): Add delay parameter to updateFrameSize, send it
7425         to change_frame_size (Bug#12388).
7426         (windowDidResize:): Pass YES to updateFrameSize.
7428         * nsterm.h: Add delay parameter to updateFrameSize.
7430 2012-09-11  Dmitry Antipov  <dmantipov@yandex.ru>
7432         Discard killed buffers from deleted window and frame objects.
7433         This reduces an amount of references to killed buffers and
7434         helps GC to reclaim them faster.
7435         * alloc.c (discard_killed_buffers): New function.
7436         (mark_object): Use it for deleted windows and frames.
7437         (mark_object): If symbol's value is set up for a killed buffer
7438         or deleted frame, restore its global binding.
7439         * data.c (swap_in_global_binding): Add GC notice.
7440         (swap_in_symval_forwarding): Use convenient set_blv_where.
7441         * window.c (wset_next_buffers, wset_prev_buffers): Move ...
7442         * window.h: ... to here.
7444 2012-09-11  Dmitry Antipov  <dmantipov@yandex.ru>
7446         Convenient macro to check whether the buffer is live.
7447         * buffer.h (BUFFER_LIVE_P): New macro.
7448         * alloc.c, buffer.c, editfns.c, insdel.c, lread.c, marker.c:
7449         * minibuf.c, print.c, process.c, window.c, xdisp.c: Use it.
7451 2012-09-11  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
7453         * xdisp.c (right_overwritten, right_overwriting): Also handle gstring
7454         composition cases (Bug#12364).
7456         * xterm.c (x_draw_glyph_string): Avoid overwriting inverted left
7457         overhang of succeeding glyphs overlapping box cursor.
7459         * w32term.c (x_draw_glyph_string): Likewise.
7461 2012-09-11  Paul Eggert  <eggert@cs.ucla.edu>
7463         Simplify, document, and port floating-point (Bug#12381).
7464         The porting part of this patch fixes bugs on non-IEEE platforms
7465         with frexp, ldexp, logb.
7466         * data.c, lisp.h (Qdomain_error, Qsingularity_error, Qunderflow_error):
7467         Now static.
7468         * floatfns.c: Simplify discussion of functions that Emacs doesn't
7469         support, by removing commented-out code and briefly listing the
7470         C89 functions excluded.  The commented-out stuff was confusing
7471         maintenance, e.g., we thought we needed cbrt but it was commented out.
7472         (logb): Remove decl; no longer needed.
7473         (isfinite): New macro, if not already supplied.
7474         (isnan): Don't replace any existing macro.
7475         (Ffrexp, Fldexp): Define even if !HAVE_COPYSIGN, as frexp and ldexp
7476         are present on all C89 platforms.
7477         (Ffrexp): Do not special-case zero, as frexp does the right thing
7478         for that case.
7479         (Flogb): Do not use logb, as it doesn't have the desired meaning
7480         on hosts that use non-base-2 floating point.  Instead, stick with
7481         frexp, which is C89 anyway.  Do not pass an infinity or a NaN to
7482         frexp, to avoid getting an unspecified result.
7484         * xdisp.c (Qinhibit_debug_on_message): Now static.
7486 2012-09-10  Jan Djärv  <jan.h.d@swipnet.se>
7488         * nsterm.m (ns_update_begin): Set clip path to whole view by using
7489         NSBezierPath (Bug#12131).
7491 2012-09-10  Chong Yidong  <cyd@gnu.org>
7493         * fns.c (Fdelq, Fdelete): Doc fix.
7495 2012-09-10  Paul Eggert  <eggert@cs.ucla.edu>
7497         * lisp.h (XSETINT, XSETCONS, XSETVECTOR, XSETSTRING, XSETSYMBOL)
7498         (XSETFLOAT, XSETMISC): Parenthesize macro bodies.
7500 2012-09-09  Stefan Monnier  <monnier@iro.umontreal.ca>
7502         * lisp.h (make_lisp_ptr): New macro to replace XSET.
7503         (XSETCONS, XSETVECTOR, XSETSTRING, XSETSYMBOL, XSETFLOAT, XSETMISC):
7504         Use it.
7506 2012-09-09  Eli Zaretskii  <eliz@gnu.org>
7508         * fringe.c (draw_fringe_bitmap_1): Don't reduce the width of the
7509         left fringe if the window has a left margin.  This avoids leaving
7510         traces of the cursor because its leftmost pixel is not drawn over.
7512         * dispnew.c (update_window_line): When the left margin area of a
7513         screen line is updated, set the redraw_fringe_bitmaps_p flag of
7514         that screen line.  (Bug#12277)
7516 2012-09-09  Paul Eggert  <eggert@cs.ucla.edu>
7518         Assume C89 or later for math functions (Bug#12381).
7519         This simplifies the code, and makes it a bit smaller and faster,
7520         and (most important) makes it easier to clean up signal handling
7521         since we can stop worring about floating-point exceptions in
7522         library code.  That was a problem before C89, but the problem
7523         went away many years ago on all practical Emacs targets.
7524         * data.c, image.c, lread.c, print.c:
7525         Don't include <math.h>; no longer needed.
7526         * data.c, floatfns.c (IEEE_FLOATING_POINT): Don't worry that it
7527         might be autoconfigured, as that never happens.
7528         * data.c (fmod):
7529         * doprnt.c (DBL_MAX_10_EXP):
7530         * print.c (DBL_DIG):
7531         Remove.  C89 or later always defines these.
7532         * floatfns.c (HAVE_MATHERR, FLOAT_CHECK_ERRNO, FLOAT_CHECK_DOMAIN)
7533         (in_float, float_error_arg, float_error_arg2, float_error_fn_name)
7534         (arith_error, domain_error, domain_error2):
7535         Remove all this pre-C89 cruft.  Do not include <errno.h> as that's
7536         no longer needed -- we simply return what C returns.  All uses removed.
7537         (IN_FLOAT, IN_FLOAT2): Remove.  All uses replaced with
7538         the wrapped code.
7539         (FLOAT_TO_INT, FLOAT_TO_INT2, range_error, range_error2):
7540         Remove.  All uses expanded, as these macros are no longer used
7541         more than once and are now more trouble than they're worth.
7542         (Ftan): Use tan, not sin / cos.
7543         (Flogb): Assume C89 frexp.
7544         (fmod_float): Assume C89 fmod.
7545         (matherr) [HAVE_MATHERR]: Remove; no longer needed.
7546         (init_floatfns): Remove.  All uses removed.
7548 2012-09-08  Jan Djärv  <jan.h.d@swipnet.se>
7550         * nsterm.m (ns_draw_fringe_bitmap, ns_dumpglyphs_image): Take back
7551         compositeToPoint for OSX < 10.6 (Bug#12390).
7553 2012-09-08  Paul Eggert  <eggert@cs.ucla.edu>
7555         * floatfns.c (Ftan): Use tan (x), not (sin (x) / cos (x)).
7556         This produces more-accurate results.
7558 2012-09-08  Jan Djärv  <jan.h.d@swipnet.se>
7560         * nsterm.m (updateFrameSize): Call setFrame: on the view when size
7561         changes (Bug#12088).
7563 2012-09-08  Chong Yidong  <cyd@gnu.org>
7565         * syntax.c (Fstring_to_syntax): Doc fix.
7567 2012-09-08  Jan Djärv  <jan.h.d@swipnet.se>
7569         * nsterm.m (ns_clip_to_row): Remove code that deals with drawing fringe
7570         in the internal border.
7571         (x_set_window_size): Remove static variables and their usage.
7572         (ns_redraw_scroll_bars): Fix NSTRACE arg.
7573         (ns_after_update_window_line, ns_draw_fringe_bitmap):
7574         Remove fringe/internal border adjustment (Bug#11052).
7575         (ns_draw_fringe_bitmap): Make code more like other terms (xterm.c).
7576         (ns_draw_window_cursor): Remove fringe/internal border adjustment.
7577         (ns_fix_rect_ibw): Remove.
7578         (ns_get_glyph_string_clip_rect): Remove call to ns_fix_rect_ibw.
7579         (ns_dumpglyphs_box_or_relief): Ditto.
7580         (ns_maybe_dumpglyphs_background): Remove fringe/internal border
7581         adjustment.
7582         (ns_dumpglyphs_image): Ditto.
7583         (ns_dumpglyphs_stretch): Fix coding style.  Remove fringe/internal
7584         border adjustment.
7585         (ns_set_vertical_scroll_bar): Remove variables barOnVeryLeft/Right and
7586         their usage.  Add fringe_extended_p and its use as in other terms.
7587         (ns_judge_scroll_bars): Code style fix.  Call updateFrameSize if
7588         scroll bar was removed.
7589         (updateFrameSize): New function.
7590         (windowDidResize): Move code to updateFrameSize and call it.
7592         * nsterm.h (EmacsView): Add updateFrameSize.
7594 2012-09-07  Chong Yidong  <cyd@gnu.org>
7596         * textprop.c (Fget_text_property): Minor doc fix (Bug#12323).
7598         * data.c (Flocal_variable_if_set_p): Doc fix (Bug#10713).
7600 2012-09-07  Paul Eggert  <eggert@cs.ucla.edu>
7602         More signal-handler cleanup (Bug#12327).
7603         * emacs.c (main): Convert three 'signal' calls to 'sigaction' calls.
7604         Problem introduced when merging patches.  Noted by Eli Zaretskii in
7605         <http://bugs.gnu.org/12327#67>.
7606         * floatfns.c: Comment fix.
7607         * lisp.h (force_auto_save_soon): Declare regardless of SIGDANGER.
7608         SIGDANGER might not be in scope so "#ifdef SIGDANGER" is not right,
7609         and anyway the declaration is harmless even if SIGDANGER is not defined.
7610         * syssignal.h (SIGIO): Also #undef if (! defined FIONREAD ||
7611         defined BROKEN_FIONREAD).  systty.h formerly did this, but other
7612         source files not surprisingly expected syssignal.h to define, or
7613         not define, SIGIO, and it's cleaner to do it that way, for consistency.
7614         Include <sys/ioctl.h>, for FIONREAD.
7615         * systty.h (SIGIO): Do not #undef here; it's now syssignal.h's job.
7616         This eliminates a problem whereby other files mysteriously had
7617         to include "syssignal.h" before including "systty.h" if they
7618         wanted to use "#ifdef SIGIO".
7620 2012-09-07  Eli Zaretskii  <eliz@gnu.org>
7622         * w32proc.c (sigaction): New function, emulates Posix 'sigaction'.
7624         * w32.c (sigemptyset): Empty the set.
7625         (sigsetmask, sigmask, sigblock, sigunblock): Remove unused functions.
7627         * alloc.c [ENABLE_CHECKING]: Include signal.h, since we need SIGABRT.
7629 2012-09-07  Dmitry Antipov  <dmantipov@yandex.ru>
7631         * alloc.c (mark_buffer): Revert unsafe marking optimization.
7632         (mark_object): Likewise for frame objects.
7634 2012-09-07  Paul Eggert  <eggert@cs.ucla.edu>
7636         * syssignal.h (handle_on_main_thread): Always declare,
7637         even if FORWARD_SIGNAL_TO_MAIN_THREAD is not defined.
7638         This ports to platforms without HAVE_PTHREAD.
7640 2012-09-06  Paul Eggert  <eggert@cs.ucla.edu>
7642         Signal-handler cleanup (Bug#12327).
7643         Emacs's signal handlers were written in the old 4.2BSD style with
7644         sigblock and sigmask and so forth, and this led to some
7645         inefficiencies and confusion.  Rewrite these to use
7646         pthread_sigmask etc. without copying signal sets around.  Also,
7647         get rid of the confusing macros 'SIGNAL_THREAD_CHECK' and
7648         'signal', and instead use functions that do not attempt to take
7649         over the system name space.  This patch causes Emacs's text
7650         segment to shrink by 0.7% on my platform, Fedora 17 x86-64.
7651         * alloc.c, emacsgtkfixed.c, nsfns.m, widget.c, xmenu.c:
7652         Do not include <signal.h> or "syssignal.h", as these
7653         modules do not use signals.
7654         * atimer.c, callproc.c, data.c, dispnew.c, emacs.c, floatfns.c:
7655         * gtkutil.c, keyboard.c, process.c, sound.c, sysdep.c, term.c, xterm.c:
7656         Do not include <signal.h>, as "syssignal.h" does that for us now.
7657         * atimer.c (sigmask_atimers): New function.
7658         (block_atimers, unblock_atimers): New functions,
7659         replacing the old macros BLOCK_ATIMERS and UNBLOCK_ATIMERS.
7660         All uses replaced.
7661         * conf_post.h [SIGNAL_H_AHB]: Do not include <signal.h>;
7662         no longer needed here.
7663         * emacs.c (main): Inspect existing signal handler with sigaction,
7664         so that there's no need to block and unblock SIGHUP.
7665         * sysdep.c (struct save_signal): New member 'action', replacing
7666         old member 'handler'.
7667         (save_signal_handlers, restore_signal_handlers):
7668         Use sigaction instead of 'signal' to save and restore.
7669         (get_set_sighandler, set_sighandler) [!WINDOWSNT]:
7670         New function.  All users of 'signal' modified to use set_sighandler
7671         if they're writeonly, and to use sys_signal if they're read+write.
7672         (emacs_sigaction_init, forwarded_signal): New functions.
7673         (sys_signal): Remove.  All uses replaced by calls to sigaction
7674         and emacs_sigaction_init, or by direct calls to 'signal'.
7675         (sys_sigmask) [!__GNUC__]: Remove; no longer needed.
7676         (sys_sigblock, sys_sigunblock, sys_sigsetmask): Remove;
7677         all uses replaced by pthread_sigmask etc. calls.
7678         * syssignal.h: Include <signal.h>.
7679         (emacs_sigaction_init, forwarded_signal): New decls.
7680         (SIGMASKTYPE): Remove.  All uses replaced by its definiens, sigset_t.
7681         (SIGEMPTYMASK): Remove; all uses replaced by its definiens, empty_mask.
7682         (sigmask, sys_sigmask): Remove; no longer needed.
7683         (sigpause): Remove.  All uses replaced by its definiens, sigsuspend.
7684         (sigblock, sigunblock, sigfree):
7685         (sigsetmask) [!defined sigsetmask]:
7686         Remove.  All uses replaced by pthread_sigmask.
7687         (signal): Remove.  Its remaining uses (with SIG_DFL and SIG_IGN)
7688         no longer need to be replaced, and its typical old uses
7689         are now done via emacs_sigaction_init and sigaction.
7690         (sys_sigblock, sys_sigunblock, sys_sigsetmask): Remove decls.
7691         (sys_sigdel): Remove; unused.
7692         (NSIG): Remove a FIXME; the code's fine.  Remove an unnecessary ifdef.
7694 2012-09-06  Eli Zaretskii  <eliz@gnu.org>
7696         * process.c (CAN_HANDLE_MULTIPLE_CHILDREN): Fix a typo that broke
7697         SIGCHLD handling on systems that don't have WNOHANG.  (Bug#12327)
7699 2012-09-06  Dmitry Antipov  <dmantipov@yandex.ru>
7701         Explicitly mark buffer_defaults and buffer_local_symbols.
7702         * alloc.c (Fgarbage_collect): Mark buffer_defaults and
7703         mark_local_symbols here.
7704         (mark_object): If GC_CHECK_MARKED_OBJECTS, simplify checking
7705         since special buffers aren't marked here any more.
7706         (allocate_buffer): Chain new buffer with all_buffers here...
7707         * buffer.c (Fget_buffer_create, Fmake_indirect_buffer): ...and
7708         not here.
7709         (Vbuffer_defaults, Vbuffer_local_symbols): Remove.
7710         (syms_of_buffer): Remove staticpro of the above.
7711         (init_buffer_once): Set names for buffer_defaults and
7712         buffer_local_symbols.
7714 2012-09-06  Paul Eggert  <eggert@cs.ucla.edu>
7716         Use bool for booleans in font-related modules.
7717         * font.c (font_intern_prop, font_style_to_value)
7718         (font_style_symbolic, font_parse_xlfd, font_parse_fcname)
7719         (generate_otf_features, font_check_otf_features, font_check_otf)
7720         (font_match_p, font_list_entities, font_at):
7721         * fontset.c (fontset_id_valid_p, reorder_font_vector
7722         (fontset_find_font, Fset_fontset_font)
7723         (face_suitable_for_char_p) [0]:
7724         * ftfont.c (fc_initialized, ftfont_get_open_type_spec)
7725         (ftfont_open, ftfont_text_extents, ftfont_check_otf):
7726         (m17n_flt_initialized, ftfont_shape_by_flt):
7727         * ftxfont.c (ftxfont_draw_bitmap, ftxfont_draw):
7728         * nsfont.m (nsfont_draw):
7729         * w32font.c (w32font_draw):
7730         * w32term.c (x_draw_glyphless_glyph_string_foreground):
7731         Use bool for booleans.
7732         * font.h: Adjust to above API changes.
7733         (struct font, struct font_driver, struct font_driver_list):
7734         Use bool for booleans.
7735         (struct font): Remove useless member encoding_type.
7736         All users removed.
7737         * fontset.c, xftfont.c: Omit unnecessary static decls.
7739 2012-09-06  Dmitry Antipov  <dmantipov@yandex.ru>
7741         * alloc.c (mark_object): Revert window marking code
7742         since it's unsafe for the Fset_window_configuration.
7744 2012-09-05  Paul Eggert  <eggert@cs.ucla.edu>
7746         Fix race conditions with signal handlers and errno (Bug#12327).
7747         Be more systematic about preserving errno whenever a signal
7748         handler returns, even if it's not in the main thread.  Do this by
7749         renaming signal handlers to distinguish between signal delivery
7750         and signal handling.  All uses changed.
7751         * atimer.c (deliver_alarm_signal): Rename from alarm_signal_handler.
7752         * data.c (deliver_arith_signal): Rename from arith_error.
7753         * dispnew.c (deliver_window_change_signal): Rename from
7754         window_change_signal.
7755         * emacs.c (deliver_error_signal): Rename from fatal_error_signal.
7756         (deliver_danger_signal) [SIGDANGER]: Rename from memory_warning_signal.
7757         * keyboard.c (deliver_input_available_signal): Rename from
7758         input_available_signal.
7759         (deliver_user_signal): Rename from handle_user_signal.
7760         (deliver_interrupt_signal): Rename from interrupt_signal.
7761         * process.c (deliver_pipe_signal): Rename from send_process_trap.
7762         (deliver_child_signal): Rename from sigchld_handler.
7763         * atimer.c (handle_alarm_signal):
7764         * data.c (handle_arith_signal):
7765         * dispnew.c (handle_window_change_signal):
7766         * emacs.c (handle_fatal_signal, handle_danger_signal):
7767         * keyboard.c (handle_input_available_signal):
7768         * keyboard.c (handle_user_signal, handle_interrupt_signal):
7769         * process.c (handle_pipe_signal, handle_child_signal):
7770         New functions, with the actual signal-handling code taken from the
7771         original respective signal handlers, sans the sporadic attempts to
7772         preserve errno, since that's now done by handle_on_main_thread.
7773         * atimer.c (alarm_signal_handler): Remove unnecessary decl.
7774         * emacs.c, floatfns.c, lisp.h: Remove unused FLOAT_CATCH_SIGKILL cruft.
7775         * emacs.c (main_thread) [FORWARD_SIGNAL_TO_MAIN_THREAD]:
7776         Move to sysdep.c.
7777         (main) [FORWARD_SIGNAL_TO_MAIN_THREAD]:
7778         Move initialization of main_thread to sysdep.c's init_signals.
7779         * process.c (waitpid) [!WNOHANG]: #define to wait; that's good enough for
7780         our usage, and simplifies the mainline code.
7781         (record_child_status_change): New static function, as a helper
7782         for handle_child_signal, and with most of the old child handler's
7783         contents.
7784         (CAN_HANDLE_MULTIPLE_CHILDREN): New constant.
7785         (handle_child_signal): Use the above.
7786         * sysdep.c (main_thread) [FORWARD_SIGNAL_TO_MAIN_THREAD]:
7787         Moved here from emacs.c.
7788         (init_signals) [FORWARD_SIGNAL_TO_MAIN_THREAD]: Initialize it;
7789         code moved here from emacs.c's main function.
7790         * sysdep.c, syssignal.h (handle_on_main_thread): New function,
7791         replacing the old SIGNAL_THREAD_CHECK.  All uses changed.
7792         This lets callers save and restore errno properly.
7794 2012-09-05  Dmitry Antipov  <dmantipov@yandex.ru>
7796         Remove redundant or unused things here and there.
7797         * lisp.h (CYCLE_CHECK, CHAR_TABLE_TRANSLATE): Remove.
7798         * conf_post.h (RE_TRANSLATE): Use char_table_translate.
7799         * editfns.c (Fcompare_buffer_substrings): Likewise.
7800         * frame.h (struct terminal, struct font_driver_list):
7801         Remove redundant declarations.
7802         * window.h (Qleft, Qright): Likewise.
7804 2012-09-05  Dmitry Antipov  <dmantipov@yandex.ru>
7806         Do not mark objects from deleted buffers, windows and frames.
7807         * alloc.c (mark_buffer): Mark just the buffer if it is dead.
7808         (mark_object): Likewise for windows and frames.
7810 2012-09-05  Dmitry Antipov  <dmantipov@yandex.ru>
7812         * alloc.c (valid_lisp_object_p): Treat killed buffers,
7813         buffer_defaults and buffer_local_symbols as valid objects.
7814         Return special value to denote them.
7816 2012-09-05  Paul Eggert  <eggert@cs.ucla.edu>
7818         * fileio.c, filelock.c, floatfns.c, fns.c: Use bool for boolean.
7819         * fileio.c (auto_saving, auto_save_error_occurred, make_temp_name)
7820         (Fexpand_file_name, barf_or_query_if_file_exists, Fcopy_file)
7821         (file_name_absolute_p, Fsubstitute_in_file_name):
7822         (check_executable, check_writable, Ffile_accessible_directory_p)
7823         (Fset_file_selinux_context, Fdefault_file_modes)
7824         (Finsert_file_contents, choose_write_coding_system)
7825         (Fwrite_region, build_annotations, a_write, e_write)
7826         (Fdo_auto_save):
7827         * filelock.c (boot_time_initialized, get_boot_time)
7828         (get_boot_time_1, lock_file_1, within_one_second):
7829         * floatfns.c (in_float):
7830         * fns.c (concat, internal_equal, Frequire, base64_encode_1)
7831         (base64_decode_1, cmpfn_eql, cmpfn_user_defined)
7832         (sweep_weak_table, sweep_weak_hash_tables, secure_hash):
7833         * lisp.h (struct Lisp_Hash_Table.cmpfn):
7834         * window.c (compare_window_configurations):
7835         Use bool for booleans.
7836         * fileio.c (auto_saving_dir_umask, auto_saving_mode_bits)
7837         (Fdefault_file_modes): Now mode_t, not int, for modes.
7838         (Fdo_auto_save): Set a boolean to 1 rather than using ++.
7839         (internal_delete_file): Now returns void, not a (boolean) int,
7840         since nobody was looking at the return value.
7841         * lisp.h, window.h: Adjust to above API changes.
7843         * xdisp.c (set_message): Simplify and reindent last change.
7845 2012-09-05  Juanma Barranquero  <lekktu@gmail.com>
7847         * makefile.w32-in ($(BLD)/sysdep.$(O)): Update dependencies.
7849 2012-09-04  Lars Ingebrigtsen  <larsi@gnus.org>
7851         * eval.c (call_debugger): Make the function non-static so that we
7852         can call it from set_message.
7854         * xdisp.c (set_message): Implement the new variable `debug-on-message'.
7855         (syms_of_xdisp): Defvar it and `inhibit-debug-on-message'.
7857 2012-09-04  Paul Eggert  <eggert@cs.ucla.edu>
7859         Give more-useful info on a fatal error (Bug#12328).
7860         * alloc.c [ENABLE_CHECKING]: Do not include <execinfo.h>.
7861         (die) [ENABLE_CHECKING]: Call fatal_error_backtrace instead
7862         of doing the work ourselves.
7863         * emacs.c (fatal_error_signal): Let fatal_error_backtrace
7864         do most of the work.
7865         (fatal_error_backtrace): New function, taken from the guts
7866         of the old fatal_error_signal, but with a new option to output
7867         a backtrace.
7868         (shut_down_emacs) [!DOS_NT]: Use strsignal to give more-useful
7869         info about the signal than just its number.
7870         * lisp.h (fatal_error_backtrace, emacs_backtrace): New decls.
7871         * sysdep.c: Include <execinfo.h>
7872         (emacs_backtrace): New function, taken partly from the previous
7873         code of the 'die' function.
7874         (emacs_abort): Call fatal_error_backtrace rather than abort.
7876 2012-09-04  Stefan Monnier  <monnier@iro.umontreal.ca>
7878         * lread.c (readevalloop): Call internal-macroexpand-for-load to perform
7879         eager (load-time) macro-expansion.
7880         * lisp.mk (lisp): Add macroexp.
7882 2012-09-04  Paul Eggert  <eggert@cs.ucla.edu>
7884         Simplify redefinition of 'abort' (Bug#12316).
7885         Do not try to redefine the 'abort' function.  Instead, redo
7886         the code so that it calls 'emacs_abort' rather than 'abort'.
7887         This removes the need for the NO_ABORT configure-time macro
7888         and makes it easier to change the abort code to do a backtrace.
7889         * .gdbinit: Just stop at emacs_abort, not at w32_abort or abort.
7890         * emacs.c (abort) [!DOS_NT && !NO_ABORT]:
7891         Remove; sysdep.c's emacs_abort now takes its place.
7892         * lisp.h (emacs_abort): New decl.  All calls from Emacs code to
7893         'abort' changed to use 'emacs_abort'.
7894         * msdos.c (dos_abort) [defined abort]: Remove; not used.
7895         (abort) [!defined abort]: Rename to ...
7896         (emacs_abort): ... new name.
7897         * sysdep.c (emacs_abort) [!HAVE_NTGUI]: New function, taking
7898         the place of the old 'abort' in emacs.c.
7899         * w32.c, w32fns.c (abort): Do not #undef.
7900         * w32.c (emacs_abort): Rename from w32_abort.
7902 2012-09-04  Eli Zaretskii  <eliz@gnu.org>
7904         * w32uniscribe.c (uniscribe_shape): Reverse the sign of
7905         offsets[j].dv, since the y axis of the screen coordinates points
7906         down, while the y axis of the font definition coordinates points
7907         up.  This fixes display of Arabic diacritics such as KASRA and
7908         KASRATAN.  (Bug#11860)
7910 2012-09-04  Paul Eggert  <eggert@cs.ucla.edu>
7912         Be more systematic about _setjmp vs setjmp.
7913         * alloc.c (test_setjmp, mark_stack):
7914         * image.c (PNG_LONGJMP) [PNG_LIBPNG_VER < 10500]:
7915         (PNG_JMPBUF) [! (PNG_LIBPNG_VER < 10500)]:
7916         (png_load, my_error_exit, jpeg_load):
7917         * process.c (send_process_trap, send_process):
7918         Uniformly prefer _setjmp and _longjmp to setjmp and longjmp.
7919         The underscored versions are up to 30x faster on some hosts.
7920         Formerly, the code used setjmp+longjmp sometimes and
7921         _setjmp+_longjmp at other times, with no particular reason to
7922         prefer setjmp+longjmp.
7924 2012-09-03  Paul Eggert  <eggert@cs.ucla.edu>
7926         Fix minor problem found by static checking.
7927         * buffer.c (Fdelete_all_overlays): Return nil.
7929 2012-09-03  Martin Rudalics  <rudalics@gmx.at>
7931         * buffer.c (Fdelete_all_overlays): New function.
7933 2012-09-03  Chong Yidong  <cyd@gnu.org>
7935         * gtkutil.c: Add extern decl for Qxft.
7937 2012-09-02  Paul Eggert  <eggert@cs.ucla.edu>
7939         * emacs.c, eval.c: Use bool for boolean.
7940         * emacs.c (initialized, inhibit_window_system, running_asynch_code):
7941         (malloc_using_checking) [DOUG_LEA_MALLOC]:
7942         (display_arg) [HAVE_X_WINDOWS || HAVE_NS]:
7943         (noninteractive, no_site_lisp, fatal_error_in_progress, argmatch)
7944         (main, decode_env_path, Fdaemon_initialized):
7945         * eval.c (call_debugger, Finteractive_p, interactive_p):
7946         (unwind_to_catch, Fsignal, wants_debugger, skip_debugger)
7947         (maybe_call_debugger, Fbacktrace):
7948         * process.c (read_process_output, exec_sentinel):
7949         Use bool for booleans.
7950         * emacs.c (shut_down_emacs): Omit unused boolean argument NO_X.
7951         All callers changed.
7952         * eval.c (interactive_p): Omit always-true boolean argument
7953         EXCLUDE_SUBRS_P.  All callers changed.
7954         * dispextern.h, lisp.h: Reflect above API changes.
7955         * firstfile.c (dummy): Use the address of 'main', whose signature
7956         won't change, instead of the address of 'initialize', whose
7957         signature just changed from int to bool.
7958         * lisp.h (fatal_error_in_progress): New decl of boolean, moved here ...
7959         * msdos.c (fatal_error_in_progress): ... from here.
7960         * xdisp.c (redisplaying_p): Now a boolean.  Set it to 1 instead
7961         of incrementing it.
7962         (redisplay_internal, unwind_redisplay): Simply clear
7963         REDISPLAYING_P when unwinding, instead of saving its previous,
7964         always-false value and then restoring it.
7966         Clean up some extern decls.
7967         Mostly, this hoists extern decls out of .c files and into .h files.
7968         That way, we're more likely to catch errors if the interfaces change.
7969         * alloc.c [USE_GTK]: Include "gtkutil.h" so that we need not
7970         declare xg_mark_data.
7971         * dispextern.h (x_frame_parm_handlers):
7972         * font.h (Qxft):
7973         * lisp.h (Qlexical_binding, Qinternal_interpreter_environment)
7974         (Qextra_light, Qlight, Qsemi_light, Qsemi_bold, Qbold, Qextra_bold)
7975         (Qultra_bold, Qoblique, Qitalic):
7976         Move extern decl here from .c file.
7977         * alloc.c (xg_mark_data) [USE_GTK]:
7978         * doc.c (Qclosure):
7979         * eval.c (Qlexical_binding):
7980         * fns.c (time) [!HAVE_UNISTD_H]:
7981         * gtkutil.c (Qxft, Qnormal, Qextra_light, Qlight, Qsemi_light)
7982         (Qsemi_bold, Qbold, Qextra_bold, Qultra_bold, Qoblique, Qitalic):
7983         * image.c (Vlibrary_cache, QCloaded_from) [HAVE_NTGUI]:
7984         * lread.c (Qinternal_interpreter_environment):
7985         * minibuf.c (Qbuffer):
7986         * process.c (QCfamily, QCfilter):
7987         * widget.c (free_frame_faces):
7988         * xfaces.c (free_frame_menubar) [USE_X_TOOLKIT]:
7989         * xfont.c (x_clear_errors):
7990         * xterm.c (x_frame_parm_handlers):
7991         Remove now-redundant extern decls.
7992         * keyboard.c, keyboard.h (ignore_mouse_drag_p) [USE_GTK || HAVE_NS]:
7993         * xfaces.c (Qultra_light, Qreverse_oblique, Qreverse_italic):
7994         Now static.
7995         * xfaces.c: Remove unnecessary static decls.
7996         * xterm.c (updating_frame): Remove decl of nonexistent object.
7998         * Makefile.in (gl-stamp): Don't scan $(SOME_MACHINE_OBJECTS)
7999         when building globals.h, as the objects that are not built on
8000         this host are not needed to compile C files on this host.
8002 2012-09-02  Jan Djärv  <jan.h.d@swipnet.se>
8004         * gtkutil.h: Remove prototype for x_wm_set_size_hint.
8006         * frame.h: Add missing prototype for x_wm_set_size_hint.
8008 2012-09-02  Paul Eggert  <eggert@cs.ucla.edu>
8010         * doc.c, editfns.c, insdel.c, intervals.c: Use bool for boolean.
8011         * doc.c (read_bytecode_char, get_doc_string, reread_doc_file)
8012         (Fdocumentation, Fdocumentation_property, Fsnarf_documentation)
8013         (Fsubstitute_command_keys):
8014         * editfns.c (region_limit, find_field, Fconstrain_to_field)
8015         (save_excursion_save, save_excursion_restore)
8016         (disassemble_lisp_time, decode_time_components, emacs_nmemftime)
8017         (format_time_string, general_insert_function)
8018         (make_buffer_string, make_buffer_string_both)
8019         (Fsubst_char_in_region, Ftranslate_region_internal, Fformat):
8020         * insdel.c (check_markers, gap_left, adjust_markers_for_insert)
8021         (copy_text, insert_1, insert_1_both, insert_from_string)
8022         (insert_from_string_before_markers, insert_from_string_1)
8023         (insert_from_buffer, insert_from_buffer_1, replace_range)
8024         (replace_range_2, del_range_1, del_range_byte, del_range_both)
8025         (del_range_2, modify_region):
8026         * intervals.c (intervals_equal, balance_possible_root_interval)
8027         (adjust_intervals_for_insertion, merge_properties_sticky)
8028         (graft_intervals_into_buffer, lookup_char_property)
8029         (adjust_for_invis_intang, set_point_both)
8030         (get_property_and_range, compare_string_intervals)
8031         (set_intervals_multibyte_1, set_intervals_multibyte):
8032         * keyboard.c (decode_timer):
8033         Use bool for boolean.
8034         * intervals.h, lisp.h, systime.h: Reflect above API changes.
8035         * editfns.c (struct info): Use 1-bit unsigned bitfields for booleans.
8037 2012-09-02  Chong Yidong  <cyd@gnu.org>
8039         * keymap.c (push_key_description): Print M-TAB as C-M-i
8040         (Bug#11758).
8042 2012-09-02  Juanma Barranquero  <lekktu@gmail.com>
8044         * makefile.w32-in (CCL_H, W32FONT_H): New macros.
8045         (ATIMER_H, FONT_H, $(BLD)/alloc.$(O), $(BLD)/callproc.$(O))
8046         ($(BLD)/editfns.$(O), $(BLD)/ccl.$(O), $(BLD)/chartab.$(O))
8047         ($(BLD)/coding.$(O), $(BLD)/sysdep.$(O), $(BLD)/fontset.$(O))
8048         ($(BLD)/sysdep.$(O), $(BLD)/w32fns.$(O), $(BLD)/keyboard.$(O))
8049         ($(BLD)/w32term.$(O), $(BLD)/w32menu.$(O), $(BLD)/process.$(O))
8050         ($(BLD)/w32font.$(O), $(BLD)/w32uniscribe.$(O)): Update dependencies.
8052 2012-09-01  Eli Zaretskii  <eliz@gnu.org>
8054         * w32uniscribe.c (uniscribe_shape): Handle correctly the case of
8055         more than one grapheme cluster passed to the shaper: compute the
8056         offset adjustment values separately for each cluster.  (Bug#11860)
8058         * image.c: Restore mistakenly removed inclusion of w32.h.  Without
8059         it, GCC doesn't see prototypes of w32_delayed_load, and complains
8060         about implicit conversions from integer to pointer.
8062 2012-09-01  Daniel Colascione  <dancol@dancol.org>
8064         * w32fns.c (x_display_info_for_name): Prevent crash if w32 window
8065         system used too early.
8067 2012-09-01  Paul Eggert  <eggert@cs.ucla.edu>
8069         Better seed support for (random).
8070         * emacs.c (main): Call init_random.
8071         * fns.c (Frandom): Set the seed from a string argument, if given.
8072         Remove long-obsolete Gentzel cruft.
8073         * lisp.h, sysdep.c (seed_random): Now takes address and size, not long.
8074         (init_random): New function.
8076 2012-09-01  Daniel Colascione  <dancol@dancol.org>
8078         * xterm.h: Add header guards.  Declare x_menubar_window_to_frame.
8079         Remove x_set_frame_alpha, x_bitmap_icon, x_make_frame_visible,
8080         x_make_frame_invisible, x_iconify_frame, x_free_frame_resources,
8081         x_wm_set_size_hint, x_query_colors, x_real_positions,
8082         x_set_menu_bar_lines, x_char_width, x_char_height, x_sync,
8083         x_set_tool_bar_lines, x_activate_menubar, and free_frame_menubar,
8084         all of which have been moved to common code.
8086         * xfaces.c: Include TERM_HEADER instead of listing all possible
8087         window-system headers.
8089         * w32xfns.c (x_sync): Correct definition of x_sync (a no-op here)
8090         to match header.
8092         * w32term.h (FRAME_X_WINDOW): Use FRAME_W32_WINDOW instead of
8093         directly accessing frame internals.
8095         * w32font.h: Include font.h.  Define syms_of_w32font and
8096         globals_of_w32font.
8098         * process.c: Include TERM_HEADER instead of listing all possible
8099         window-system headers.
8101         * nsterm.h: Remove declarations now in frame.h.
8102         Define FRAME_X_SCREEN, FRAME_X_VISUAL.
8104         * menu.c: Include TERM_HEADER instead of listing all possible
8105         window-system headers.
8107         * keyboard.h: Declare ignore_mouse_drag_p whenever we have a
8108         window system.
8110         * keyboard.c: Include TERM_HEADER instead of listing all possible
8111         window-system headers.
8113         * image.c: Include TERM_HEADER instead of listing all possible
8114         window-system headers.  Declare Vlibrary_cache when compiling for
8115         Windows.
8117         * gtkutil.h (xg_list_node_): Include xterm.h to pick up needed
8118         window system declarations.
8120         * frame.h: Move common functions here: set_frame_menubar,
8121         x_set_window_size, x_sync, x_get_focus_frame,
8122         x_set_mouse_position, x_set_mouse_pixel_position,
8123         x_make_frame_visible, x_make_frame_invisible, x_iconify_frame,
8124         x_char_width, x_char_height, x_pixel_width, x_pixel_height,
8125         x_set_frame_alpha, x_set_menu_bar_lines, x_set_tool_bar_lines,
8126         x_activate_menubar, x_real_positions, x_bitmap_icon,
8127         x_set_menu_bar_lines, free_frame_menubar, x_free_frame_resources,
8128         and x_query_colors.
8130         * frame.c: Include TERM_HEADER instead of listing all possible
8131         window-system headers.
8133         * font.c: Include TERM_HEADER instead of listing all possible
8134         window-system headers.
8136         * emacs.c: Include TERM_HEADER.
8138         * dispnew.c: Include TERM_HEADER instead of listing all possible
8139         window-system headers.
8141         * ccl.h: Include character.h.
8143         * Makefile.in: Define WINDOW_SYSTEM_OBJ to hold objects needed for
8144         the current window system; include in list of objects to link into
8145         Emacs.
8147 2012-08-31  Dmitry Antipov  <dmantipov@yandex.ru>
8149         Remove mark_ttys function and fix tty_display_info initialization.
8150         * lisp.h (mark_ttys): Remove prototype.
8151         * alloc.c (Fgarbage_collect): Remove redundant (and the only) call
8152         to mark_ttys because all possible values of 'top_frame' slot are
8153         the frames which are reachable from Vframe_list.
8154         * term.c (mark_ttys): Remove.
8155         (init_tty): Safely initialize 'top_frame' slot with Qnil.
8157 2012-08-31  Dmitry Antipov  <dmantipov@yandex.ru>
8159         Change struct frame bitfields from unsigned char to unsigned.
8160         * frame.h (struct frame): Change type of 'display_preempted',
8161         'visible', 'iconified', 'has_minibuffer', 'wants_modeline',
8162         'auto_raise', 'auto_lower', 'no_split', 'explicit_name',
8163         'window_sizes_changed', 'mouse_moved' and 'pointer_invisible'
8164         bitfields from unsigned char to unsigned.
8166 2012-08-31  Dmitry Antipov  <dmantipov@yandex.ru>
8168         Remove unused member of struct x_output and struct w32_output.
8169         * xterm.h (struct x_output): Remove unused field 'needs_exposure'.
8170         * w32term.h (struct w32_output): Likewise.
8172 2012-08-30  Jan Djärv  <jan.h.d@swipnet.se>
8174         * gtkutil.c (x_wm_set_size_hint): Use 1 col for base_width so it
8175         does not become zero (Bug#12234).
8177 2012-08-30  Paul Eggert  <eggert@cs.ucla.edu>
8179         * dispnew.c (update_frame_1): Pacify gcc -Wstrict-overflow
8180         for GCC 4.7.1 x86-64.
8182 2012-08-30  Glenn Morris  <rgm@gnu.org>
8184         * lread.c (init_lread): For out-of-tree builds, only add the
8185         source directory's site-lisp dir to the load-path if it exists,
8186         consistent with in-tree builds.  (Bug#12302)
8188 2012-08-28  Jan Djärv  <jan.h.d@swipnet.se>
8190         * nsmenu.m (initWithContentRect:styleMask:backing:defer:): Initialize
8191         button_values to NULL.  Call setStykeMask so dialogs get a close button.
8192         (windowShouldClose:): Set window_closed.
8193         (dealloc): New member, free button_values.
8194         (process_dialog:): Make member function.  Remove window argument,
8195         replace window with self.  Count buttons and allocate and store values
8196         in button_values.
8197         (addButton:value:row:): value is int with the name tag.  Call setTag
8198         with tag.  Remove return self, declare return value as void.
8199         (addString:row:): Remove return self, declare return value as void.
8200         (addSplit): Remove return self, declare return value as void.
8201         (clicked:): Remove return self, declare return value as void.
8202         Set dialog_return to button_values[seltag].  Code formatting change.
8203         (initFromContents:isQuestion:): Adjust call to process_dialog.
8204         Code formatting change.
8205         (timeout_handler:): Set timer_fired to YES.
8206         (runDialogAt:): Set timer_fired to NO.
8207         Handle click on close button as quit.
8209         * nsterm.h (EmacsDialogPanel): Make timer_fired BOOL.
8210         Add window_closed and button_values.  Add void as return value for
8211         add(Button|String|Split).  addButton takes int instead of Lisp_Object.
8212         Add process_dialog as new member.
8214 2012-08-28  Eli Zaretskii  <eliz@gnu.org>
8216         * ralloc.c (free_bloc): Don't dereference a 'heap' structure if it
8217         is not one of the heaps we manage.  (Bug#12242)
8219 2012-08-28  Glenn Morris  <rgm@gnu.org>
8221         * eval.c (Fcalled_interactively_p): Doc fix.  (Bug#11747)
8223 2012-08-28  Martin Rudalics  <rudalics@gmx.at>
8225         * window.c (Fset_window_configuration): Remove handling of
8226         auto-buffer-name window parameter.  Install revision of reverted
8227         fix.
8229 2012-08-28  Dmitry Antipov  <dmantipov@yandex.ru>
8231         Do not allow to set major mode for a dead buffer.
8232         * buffer.c (Fset_buffer_major_mode): Signal an error
8233         if the buffer is dead.
8234         (Fother_buffer, other_buffer_safely): Remove redundant
8235         nested declaration.
8237 2012-08-28  Dmitry Antipov  <dmantipov@yandex.ru>
8239         Always use set_buffer_if_live to restore original buffer at unwind.
8240         * buffer.h (record_unwind_current_buffer): New function.
8241         * bytecode.c, dispnew.c, editfns.c, fileio.c, fns.c, insdel.c:
8242         * keyboard.c, keymap.c, minibuf.c, print.c, process.c, textprop.c:
8243         * undo.c, window.c: Adjust users.
8244         * buffer.c (set_buffer_if_live): Fix comment.
8246 2012-08-28  Dmitry Antipov  <dmantipov@yandex.ru>
8248         Fix usage of set_buffer_internal.
8249         * buffer.h (set_buffer_internal): Make it BUFFER_INLINE.
8250         * buffer.c (set_buffer_if_live): Use set_buffer_internal.
8251         * coding.c (decode_coding): Omit redundant test.
8252         * fileio.c (decide_coding_unwind): Likewise.
8253         * fns.c (secure_hash): Likewise.
8254         * insdel.c (modify_region): Likewise.
8255         * keyboard.c (command_loop_1): Likewise.
8256         * print.c (PRINTFINISH): Likewise.
8257         * xdisp.c (run_window_scroll_functions): Use set_buffer_internal.
8259 2012-08-27  Paul Eggert  <eggert@cs.ucla.edu>
8261         * dispnew.c: Use bool for boolean.
8262         (frame_garbaged, display_completed, delayed_size_change)
8263         (fonts_changed_p, add_window_display_history)
8264         (add_frame_display_history, verify_row_hash)
8265         (adjust_glyph_matrix, clear_window_matrices, glyph_row_slice_p)
8266         (row_equal_p, realloc_glyph_pool)
8267         (allocate_matrices_for_frame_redisplay)
8268         (showing_window_margins_p)
8269         (adjust_frame_glyphs_for_frame_redisplay)
8270         (build_frame_matrix_from_leaf_window, make_current)
8271         (mirrored_line_dance, mirror_line_dance, update_frame)
8272         (update_window_tree, update_single_window)
8273         (check_current_matrix_flags, update_window, update_text_area)
8274         (update_window_line, set_window_update_flags, scrolling_window)
8275         (update_frame_1, scrolling, buffer_posn_from_coords)
8276         (do_pending_window_change, change_frame_size)
8277         (change_frame_size_1, sit_for):
8278         Use bool for boolean.
8279         (clear_glyph_matrix_rows): Rename from enable_glyph_matrix_rows,
8280         and remove last int (actually boolean) argument, which was always 0.
8281         All callers changed.
8282         * dispextern.h, frame.h, lisp.h: Reflect above API changes.
8283         * dispextern.h (struct composition_it): Use bool for boolean.
8284         (struct glyph_matrix): Don't assume buffer sizes can fit in 'int'.
8285         (struct bidi_it): Use unsigned:1, not int, for boolean prev_was_pdf.
8286         * dired.c (file_name_completion):
8287         Use bool for boolean.  (This was missed in an earlier change.)
8289 2012-08-27  Martin Rudalics  <rudalics@gmx.at>
8291         * window.c (Fset_window_configuration): Revert first part of
8292         last change.
8294 2012-08-27  Jan Djärv  <jan.h.d@swipnet.se>
8296         * nsterm.h (NSPanel): New class variable dialog_return.
8298         * nsmenu.m (initWithContentRect:styleMask:backing:defer:):
8299         Initialize dialog_return.
8300         (windowShouldClose:): Use stop instead of stopModalWithCode.
8301         (clicked:): Ditto, and also set dialog_return (Bug#12258).
8302         (timeout_handler:): Use stop instead of abortModal.  Send a dummy
8303         event.
8304         (runDialogAt:): Make ret Lisp_Object.  Set it from dialog_return when
8305         modal loop returns.
8307 2012-08-27  Paul Eggert  <eggert@cs.ucla.edu>
8309         * composite.c, data.c, dbusbind.c, dired.c: Use bool for booleans.
8310         * composite.c (find_composition, composition_gstring_p)
8311         (composition_reseat_it, find_automatic_composition):
8312         * data.c (let_shadows_buffer_binding_p)
8313         (let_shadows_global_binding_p, set_internal, make_blv)
8314         (Fmake_variable_buffer_local, Fmake_local_variable)
8315         (Fmake_variable_frame_local, arithcompare, cons_to_unsigned)
8316         (cons_to_signed, arith_driver):
8317         * dbusbind.c (xd_in_read_queued_messages):
8318         * dired.c (directory_files_internal, file_name_completion):
8319         Use bool for booleans.
8320         * dired.c (file_name_completion):
8321         * process.h (fd_callback):
8322         Omit int (actually boolean) argument.  It wasn't being used.
8323         All uses changed.
8324         * composite.h, lisp.h: Reflect above API changes.
8326         * cmds.c, coding.c: Use bool for booleans.
8327         * cmds.c (move_point, Fself_insert_command):
8328         * coding.h (struct composition status, struct coding_system):
8329         * coding.c (detect_coding_utf_8, encode_coding_utf_8)
8330         (detect_coding_utf_16, encode_coding_utf_16, detect_coding_emacs_mule)
8331         (emacs_mule_char, decode_coding_emacs_mule)
8332         (encode_coding_emacs_mule, detect_coding_iso_2022)
8333         (decode_coding_iso_2022, encode_invocation_designation)
8334         (encode_designation_at_bol, encode_coding_iso_2022)
8335         (detect_coding_sjis, detect_coding_big5, decode_coding_sjis)
8336         (decode_coding_big5, encode_coding_sjis, encode_coding_big5)
8337         (detect_coding_ccl, encode_coding_ccl, decode_coding_raw_text)
8338         (encode_coding_raw_text, detect_coding_charset)
8339         (decode_coding_charset, encode_coding_charset, detect_eol)
8340         (detect_coding, get_translation_table, produce_chars)
8341         (consume_chars, reused_workbuf_in_use)
8342         (make_conversion_work_buffer, code_conversion_save)
8343         (decode_coding_object, encode_coding_object)
8344         (detect_coding_system, char_encodable_p)
8345         (Funencodable_char_position, code_convert_region)
8346         (code_convert_string, code_convert_string_norecord)
8347         (Fset_coding_system_priority):
8348         * fileio.c (Finsert_file_contents):
8349         Use bool for booleans.
8350         * coding.h, lisp.h: Reflect above API changes.
8351         * coding.c: Remove unnecessary static function decls.
8352         (detect_coding): Use unsigned, not signed, to copy an unsigned field.
8353         (decode_coding, encode_coding, decode_coding_gap): Return 'void',
8354         not a boolean 'int', since callers never look at the return value.
8355         (ALLOC_CONVERSION_WORK_AREA): Assume caller returns 'void', not 'int'.
8356         * coding.h (decoding_buffer_size, encoding_buffer_size)
8357         (emacs_mule_string_char): Remove unused extern decls.
8358         (struct iso_2022_spec, struct coding_system):
8359         Use 'unsigned int : 1' for boolean fields, since there's more than one.
8360         (struct emacs_mule_spec): Remove unused field 'full_support'.
8361         All initializations removed.
8362         * cmds.c (internal_self_insert): Don't assume EMACS_INT fits in 'int'.
8364 2012-08-27  Dmitry Antipov  <dmantipov@yandex.ru>
8366         Fix spare memory change (Bug#12286).
8367         * alloc.c (mark_maybe_pointer): Handle MEM_TYPE_SPARE.
8368         (valid_lisp_object_p): Likewise.
8370 2012-08-27  Martin Rudalics  <rudalics@gmx.at>
8372         * window.c (Fset_window_configuration): Record any window's old
8373         buffer if it's replaced (see Bug#8789).  If the new current
8374         buffer doesn't appear in the selected window, go to its old
8375         point (Bug#12208).
8377 2012-08-27  Dmitry Antipov  <dmantipov@yandex.ru>
8379         Special MEM_TYPE_SPARE to denote reserved memory.
8380         * alloc.c (enum mem_type): New memory type.
8381         (refill_memory_reserve): Use new type for spare memory.
8382         This prevents live_cons_p and live_string_p from incorrect
8383         detection of uninitialized objects from spare memory as live.
8385 2012-08-26  Paul Eggert  <eggert@cs.ucla.edu>
8387         Spelling fixes.
8388         * Makefile.in (.PHONY): versioclean -> versionclean.
8390         Remove unused external symbols.
8391         * data.c (Qcons, Qfloat, Qmisc, Qstring, Qvector):
8392         * window.c (Qwindow_valid_p, decode_valid_window):
8393         Now static, not extern.
8394         * data.c (Qinterval): Remove; unused.
8395         (syms_of_data): Do not define 'interval'.
8396         * lisp.h (Qinteger, Qstring, Qmisc, Qvector, Qfloat, Qcons):
8397         * window.h (decode_valid_window):
8398         Remove decls.
8400         * character.c, charset.c, chartab.c: Use bool for booleans.
8401         * character.c (lisp_string_width, string_count_byte8)
8402         (string_escape_byte8):
8403         * charset.c (charset_map_loaded, load_charset_map, read_hex):
8404         (load_charset_map_from_file, map_charset_chars)
8405         (Fdefine_charset_internal, define_charset_internal)
8406         (Fdeclare_equiv_charset, find_charsets_in_text)
8407         (Ffind_charset_region, char_charset, Fiso_charset):
8408         * chartab.c (sub_char_table_ref, sub_char_table_ref_and_range)
8409         (sub_char_table_set, sub_char_table_set_range)
8410         (char_table_set_range, optimize_sub_char_table)
8411         (map_sub_char_table):
8412         Use bool for boolean.
8413         * character.c (str_to_unibyte): Omit last boolean argument; it was
8414         always 0.  All callers changed.
8415         * character.h, charset.h: Adjust to match previous changes.
8416         * character.h (char_printable_p): Remove decl of nonexistent function.
8417         * charset.h (struct charset): Members code_linear_p, iso_chars_96,
8418         ascii_compatible_p, supplementary_p, compact_codes_p, unified_p
8419         are all boolean, so make them single-bit bitfields.
8421         * lisp.h (ASET): Remove attempt to detect side effects.
8422         It was meant to be temporary and it often doesn't work,
8423         because when IDX has side effects the behavior of IDX==IDX
8424         is undefined.  See Stefan Monnier in
8425         <http://lists.gnu.org/archive/html/emacs-devel/2012-08/msg00762.html>.
8427 2012-08-26  Barry OReilly  <gundaetiapo@gmail.com>  (tiny change)
8429         * lisp.h (functionp): New function (extracted from Ffunctionp).
8430         (FUNCTIONP): Use it.
8431         * eval.c (Ffunctionp): Use it.
8433 2012-08-25  Paul Eggert  <eggert@cs.ucla.edu>
8435         * xgselect.c (xg_select): Use auto storage for the GPollFD buffer
8436         as that's faster and simpler than static storage.  Don't bother
8437         with the g_main_context_query overhead if g_main_context_pending
8438         says no events are pending.
8439         (gfds, gfds_size): Remove these static vars.
8440         (xgselect_initialize): Remove; no longer needed.
8441         All uses and decls removed.
8443         * emacs.c (fatal_error_signal_hook): Remove.
8444         All uses removed.  This leftover from old code was always 0.
8446         * casefiddle.c, casetab.c, category.c: Use bool for boolean.
8447         * casefiddle.c (casify_object, casify_region):
8448         * casetab.c (set_case_table):
8449         * category.c, category.h (word_boundary_p):
8450         * category.h (CHAR_HAS_CATEGORY):
8451         Use bool for booleans, instead of int.
8453 2012-08-25  Eli Zaretskii  <eliz@gnu.org>
8455         * makefile.w32-in ($(BLD)/alloc.$(O)): Depend on $(GNU_LIB)/execinfo.h.
8457 2012-08-25  Paul Eggert  <eggert@cs.ucla.edu>
8459         On assertion failure, print backtrace if available.
8460         * alloc.c [ENABLE_CHECKING]: Include <execinfo.h>.
8461         (die) [ENABLE_CHECKING]: Print a backtrace if available.
8462         * Makefile.in (LIB_EXECINFO): New macro.
8463         (LIBES): Use it.
8465         * bytecode.c, callint.c, callproc.c: Use bool for boolean.
8466         * bytecode.c (exec_byte_code):
8467         * callint.c (check_mark, Fcall_interactively):
8468         * callproc.c (Fcall_process, add_env, child_setup, getenv_internal_1)
8469         (getenv_internal, sync_process_alive, call_process_exited):
8470         * lisp.h (USE_SAFE_ALLOCA):
8471         Use bool for booleans, instead of int.
8472         * lisp.h, process.h: Adjust prototypes to match above changes.
8473         * callint.c (Fcall_interactively): Don't assume the mark's
8474         offset fits in 'int'.
8476 2012-08-24  Paul Eggert  <eggert@cs.ucla.edu>
8478         * buffer.c, buffer.h: Use bool for boolean.
8479         * buffer.c (reset_buffer_local_variables)
8480         (buffer_lisp_local_variables, Fset_buffer_modified_p)
8481         (Frestore_buffer_modified_p, Fset_buffer_multibyte):
8482         (overlays_at, overlays_in, mouse_face_overlay_overlaps)
8483         (overlay_touches_p, overlay_strings, Foverlay_put)
8484         (report_overlay_modification, call_overlay_mod_hooks):
8485         (mmap_enlarge, mmap_set_vars):
8486         * buffer.h (buffer_has_overlays, uppercasep, lowercasep):
8487         Use bool for booleans, instead of int.
8488         * buffer.c (compact_buffer, mmap_free_1): Return void, not int,
8489         since the 1-or-0 return value is always ignored anyway.
8490         (mmap_initialized_p):
8491         * buffer.h (struct buffer_text.inhibit_shrinking): Now bool, not int.
8492         * buffer.h, lisp.h: Adjust prototypes to match above changes.
8494 2012-08-23  Paul Eggert  <eggert@cs.ucla.edu>
8496         * bidi.c: Use bool for boolean.
8497         This is a bit more readable, and makes the text segment of bidi.o
8498         0.4% smaller on my platform (GCC 4.7.1 x86-64, Fedora 15).
8499         Presumably it's faster too.
8500         (bidi_initialized, bidi_ignore_explicit_marks_for_paragraph_level):
8501         Now bool.
8502         (bidi_cache_find_level_change, bidi_cache_iterator_state)
8503         (bidi_unshelve_cache, bidi_init_it, bidi_count_bytes)
8504         (bidi_char_at_pos, bidi_fetch_char, bidi_paragraph_init)
8505         (bidi_explicit_dir_char, bidi_level_of_next_char)
8506         (bidi_find_other_level_edge, bidi_move_to_visually_next):
8507         Use bool for booleans, instead of int.
8508         * dispextern.h (bidi_init_it, bidi_paragraph_init)
8509         (bidi_unshelve_cache): Adjust decls to match code.
8511 2012-08-23  Martin Rudalics  <rudalics@gmx.at>
8513         * keyboard.c (Fposn_at_x_y): Do not allow internal window as
8514         argument.
8516 2012-08-23  Paul Eggert  <eggert@cs.ucla.edu>
8518         * atimer.c, atimer.h (turn_on_atimers): Use bool for boolean.
8519         * atimer.h: Include <stdbool.h>.
8521 2012-08-22  Dan Nicolaescu  <dann@gnu.org>
8523         * frame.h (FRAME_W32_P, FRAME_MSDOS_P, FRAME_NS_P): Change to
8524         compile time tests instead of run time tests on systems that do
8525         not use them.
8526         (FRAME_MAC_P): Remove leftover from deleted code.
8527         * frame.c (syms_of_frame): Remove leftover from deleted code.
8529 2012-08-22  Jan Djärv  <jan.h.d@swipnet.se>
8531         * nsterm.m (insertText:): Don't clear modifiers if code is space.
8533 2012-08-22  Paul Eggert  <eggert@cs.ucla.edu>
8535         * fontset.c (FONTSET_ADD): Return void, not Lisp_Object.
8536         Otherwise, the compiler complains about (A?B:C) where B is void
8537         and C is Lisp_Object.  This fixes an incompatibility with Sun C 5.12.
8538         (fontset_add): Return void, for FONTSET_ADD.
8540 2012-08-21  Paul Eggert  <eggert@cs.ucla.edu>
8542         * alloc.c: Use bool for booleans.
8543         (gc_in_progress, abort_on_gc)
8544         (setjmp_tested_p) [!GC_SAVE_REGISTERS_ON_STACK && !GC_SETJMP_WORKS]:
8545         (dont_register_blocks) [GC_MALLOC_CHECK]:
8546         (suppress_checking) [ENABLE_CHECKING]: Now bool, not int.
8547         (check_string_bytes, make_specified_string, memory_full)
8548         (live_string_p, live_cons_p, live_symbol_p, live_float_p)
8549         (live_misc_p, live_vector_p, live_buffer_p, mark_maybe_object)
8550         (mark_stack, valid_pointer_p, make_pure_string)
8551         (Fgarbage_collect, survives_gc_p, gc_sweep):
8552         Use bool for booleans, instead of int.
8553         (test_setjmp) [!GC_SAVE_REGISTERS_ON_STACK && !GC_SETJMP_WORKS]:
8554         Remove unused local.
8555         * alloc.c (PURE_POINTER_P):
8556         * lisp.h (STRING_MULTIBYTE): Document that it returns a boolean.
8557         * editfns.c (Fformat):
8558         * fileio.c (Fexpand_file_name, Fsubstitute_in_file_name)
8559         (Fdo_auto_save):
8560         * fns.c (sweep_weak_table):
8561         * lisp.h (suppress_checking, push_message, survives_gc_p)
8562         (make_pure_string, gc_in_progress, abort_on_gc):
8563         * lread.c (readchar, read1):
8564         * print.c (Fprin1_to_string):
8565         * xdisp.c (push_message):
8566         Use bool for booleans affected directly or indirectly by
8567         alloc.c's changes.
8569         Make recently-introduced setters macros.
8570         * fontset.c (set_fontset_id, set_fontset_name, set_fontset_ascii)
8571         (set_fontset_base, set_fontset_frame, set_fontset_nofont_face)
8572         (set_fontset_default, set_fontset_fallback): Rename from their
8573         upper-case counterparts, and make them functions rather than macros.
8574         This is more consistent with the other recently-introduced setters.
8575         These don't need to be inline, since they're local.
8577 2012-08-21  Jan Djärv  <jan.h.d@swipnet.se>
8579         * nsterm.m (fd_handler:): Alloc and release a NSAutoreleasePool in
8580         the loop (Bug#12247).
8582 2012-08-21  Paul Eggert  <eggert@cs.ucla.edu>
8584         * lisp.h (vcopy): Use memcpy rather than our own loop.
8585         This fixes a performance regression introduced by the recent
8586         addition of vcopy.  This means 'vcopy' will need to be modified
8587         for a copying collector, but that's OK.  Also, tighten the
8588         checking in the assertion.
8590 2012-08-21  Eli Zaretskii  <eliz@gnu.org>
8592         * w32uniscribe.c (uniscribe_shape): Fix producing gstring
8593         components for RTL text (Bug#11860).  Adjust X-OFFSET of each
8594         non-base glyph for the width of the base character, according to
8595         what x_draw_composite_glyph_string_foreground expects.
8596         Generate WADJUST value according to composition_gstring_width's
8597         expectations, to produce correct width of the composed character.
8598         Reverse the sign of the DU offset produced by ScriptPlace.
8600 2012-08-21  Paul Eggert  <eggert@cs.ucla.edu>
8602         * dbusbind.c (xd_remove_watch): Do not assume C99 comments.
8604 2012-08-21  Dmitry Antipov  <dmantipov@yandex.ru>
8606         Avoid direct writes to contents member of struct Lisp_Vector.
8607         * lisp.h (vcopy): New function to copy data into vector.
8608         * dispnew.c (Fframe_or_buffer_changed_p): Use AREF and ASET.
8609         * fns.c (Ffillarray): Use ASET.
8610         * keyboard.c (timer_check_2): Use AREF and ASET.
8611         (append_tool_bar_item, Frecent_keys): Use vcopy.
8612         * lread.c (read_vector): Use ASET.
8613         * msdos.c (Frecent_doskeys): Use vcopy.
8614         * xface.c (Finternal_copy_lisp_face): Use vcopy.
8615         (Finternal_merge_in_global_face): Use ASET and vcopy.
8616         * xfont.c (xfont_list_pattern): Likewise.
8618 2012-08-21  Martin Rudalics  <rudalics@gmx.at>
8620         * window.c (Fwindow_point): For the selected window always return
8621         the position of its buffer's point.
8622         (Fset_window_point): For the selected window always go in its
8623         buffer to the specified position.
8625 2012-08-21  Dmitry Antipov  <dmantipov@yandex.ru>
8627         Setter macros for fontsets.
8628         * fontset.c (SET_FONTSET_ID, SET_FONTSET_NAME, SET_FONTSET_ASCII)
8629         (SET_FONTSET_BASE, SET_FONTSET_FRAME, SET_FONTSET_NOFONT_FACE)
8630         (SET_FONTSET_DEFAULT, SET_FONTSET_FALLBACK): New macros.
8631         Adjust users.
8633 2012-08-20  Glenn Morris  <rgm@gnu.org>
8635         * Makefile.in (emacs$(EXEEXT), bootstrap-emacs$(EXEEXT)):
8636         Don't assume that `ln -f' works.
8638 2012-08-20  Eli Zaretskii  <eliz@gnu.org>
8640         * .gdbinit: Use "set $dummy = ..." to avoid warnings from GDB 7.5
8641         and later about non-assignments with no effect.  See discussion at
8642         http://sourceware.org/ml/gdb-patches/2012-08/msg00518.html for
8643         details.
8645 2012-08-20  Dmitry Antipov  <dmantipov@yandex.ru>
8647         Inline setter functions for Lisp_Objects slots of struct specbinding.
8648         * eval.c (set_specpdl_symbol, set_specpdl_old_value): New functions.
8649         Adjust users.
8651 2012-08-20  Martin Rudalics  <rudalics@gmx.at>
8653         * window.c (select_window): Always make selected window's buffer
8654         current.
8656 2012-08-20  Dmitry Antipov  <dmantipov@yandex.ru>
8658         Use AREF and ASET for docstrings of category tables.
8659         * category.h (CATEGORY_DOCSTRING): Use AREF.
8660         (SET_CATEGORY_DOCSTRING): Use ASET.
8661         * category.c (Fdefine_category): Use SET_CATEGORY_DOCSTRING.
8663 2012-08-20  Dmitry Antipov  <dmantipov@yandex.ru>
8665         Inline setter functions for hash table members.
8666         * lisp.h (set_hash_key, set_hash_value, set_hash_next)
8667         (set_hash_hash, set_hash_index): Rename with _slot suffix.
8668         (set_hash_key_and_value, set_hash_index, set_hash_next)
8669         (set_hash_hash): New functions.
8670         * charset.c, fns.c: Adjust users.
8672 2012-08-20  Dmitry Antipov  <dmantipov@yandex.ru>
8674         Inline getter and setter functions for per-buffer values.
8675         * buffer.h (per_buffer_default, set_per_buffer_default)
8676         (per_buffer_value, set_per_buffer_value): New functions.
8677         (PER_BUFFER_VALUE, PER_BUFFER_DEFAULT): Remove.
8678         * buffer.c, data.c: Adjust users.
8680 2012-08-20  Juanma Barranquero  <lekktu@gmail.com>
8682         * makefile.w32-in ($(BLD)/vm-limit.$(O)): Update dependencies.
8684 2012-08-19  Paul Eggert  <eggert@cs.ucla.edu>
8686         Rely on <config.h> + <unistd.h> to declare 'environ',
8687         as gnulib does this if the system doesn't.
8688         * callproc.c, editfns.c, process.c (environ) [!USE_CRT_DLL]:
8689         Remove declaration.  MS-Windows declares it on stdlib.h which is
8690         included by conf_post.h.
8691         * emacs.c (environ) [DOUG_LEA_MALLOC]:
8692         * vm-limit.c (environ) [ORDINARY_LINK]: Remove decl.
8693         * vm-limit.c: Include <unistd.h>, for 'environ'.
8695         * unexaix.c, unexcoff.c: Include "mem-limits.h".
8696         (start_of_data): Remove decl; mem-limits.h provides it.
8698         * xdisp.c (handle_invisible_prop): Make it a bit faster
8699         and avoid a gcc -Wmaybe-uninitialized diagnostic.
8701 2012-08-19  Chong Yidong  <cyd@gnu.org>
8703         * xdisp.c (handle_invisible_prop): Fix ellipses at overlay string
8704         ends (Bug#3874).
8706 2012-08-19  Andreas Schwab  <schwab@linux-m68k.org>
8708         * .gdbinit: Use call instead of set when calling a function in the
8709         inferior.
8711         * data.c (set_internal): Don't use set_blv_found.
8712         (Fkill_local_variable): Likewise.
8714 2012-08-18  Alp Aker  <alp.tekin.aker@gmail.com>
8716         * nsfont.m (ns_ascii_average_width): Ensure the string
8717         ascii_printable is initialized with a null-terminated character
8718         array.  Otherwise, it can contain undesired extra characters.
8720 2012-08-18  Paul Eggert  <eggert@cs.ucla.edu>
8722         port new setting code to Sun C 5.8 2005/10/13
8723         * chartab.c, lisp.h (char_table_set, char_table_set_range):
8724         Return void, not Lisp_Object.  Otherwise, the compiler
8725         complains about (A?B:C) where B is void and C is Lisp_Object
8726         when compiling CHAR_TABLE_SET, due to the recent change to
8727         the API of sub_char_table_set_contents.
8729 2012-08-18  Chong Yidong  <cyd@gnu.org>
8731         * xdisp.c (handle_invisible_prop): Obey TEXT_PROP_MEANS_INVISIBLE
8732         for the string case (Bug#3874).
8734 2012-08-18  Paul Eggert  <eggert@cs.ucla.edu>
8736         * buffer.h (BSET): Remove (Bug#12215).
8737         Replace all uses with calls to new setter functions.
8738         (bset_bidi_paragraph_direction, bset_case_canon_table)
8739         (bset_case_eqv_table, bset_directory, bset_display_count)
8740         (bset_display_time, bset_downcase_table)
8741         (bset_enable_multibyte_characters, bset_filename, bset_keymap)
8742         (bset_last_selected_window, bset_local_var_alist)
8743         (bset_mark_active, bset_point_before_scroll, bset_read_only)
8744         (bset_truncate_lines, bset_undo_list, bset_upcase_table)
8745         (bset_width_table):
8746         * buffer.c (bset_abbrev_mode, bset_abbrev_table)
8747         (bset_auto_fill_function, bset_auto_save_file_format)
8748         (bset_auto_save_file_name, bset_backed_up, bset_begv_marker)
8749         (bset_bidi_display_reordering, bset_buffer_file_coding_system)
8750         (bset_cache_long_line_scans, bset_case_fold_search)
8751         (bset_ctl_arrow, bset_cursor_in_non_selected_windows)
8752         (bset_cursor_type, bset_display_table, bset_extra_line_spacing)
8753         (bset_file_format, bset_file_truename, bset_fringe_cursor_alist)
8754         (bset_fringe_indicator_alist, bset_fringes_outside_margins)
8755         (bset_header_line_format, bset_indicate_buffer_boundaries)
8756         (bset_indicate_empty_lines, bset_invisibility_spec)
8757         (bset_left_fringe_width, bset_major_mode, bset_mark)
8758         (bset_minor_modes, bset_mode_line_format, bset_mode_name)
8759         (bset_name, bset_overwrite_mode, bset_pt_marker)
8760         (bset_right_fringe_width, bset_save_length)
8761         (bset_scroll_bar_width, bset_scroll_down_aggressively)
8762         (bset_scroll_up_aggressively, bset_selective_display)
8763         (bset_selective_display_ellipses, bset_vertical_scroll_bar_type)
8764         (bset_word_wrap, bset_zv_marker):
8765         * category.c (bset_category_table):
8766         * syntax.c (bset_syntax_table):
8767         New setter functions.
8769         * process.h (PSET): Remove (Bug#12215).
8770         Replace all uses with calls to new setter functions.
8771         Use INLINE_HEADER_BEGIN, INLINE_HEADER_END.
8772         (PROCESS_INLINE): New macro.
8773         (pset_childp): New setter function.
8774         (pset_gnutls_cred_type) [HAVE_GNUTLS]: New setter function.
8775         * process.c (PROCESS_INLINE):
8776         Define to EXTERN_INLINE, so that the corresponding functions
8777         are compiled into code.
8778         (pset_buffer, pset_command, pset_decode_coding_system)
8779         (pset_decoding_buf, pset_encode_coding_system)
8780         (pset_encoding_buf, pset_filter, pset_log, pset_mark, pset_name)
8781         (pset_plist, pset_sentinel, pset_status, pset_tty_name)
8782         (pset_type, pset_write_queue): New setter functions.
8784         * window.h (WSET): Remove (Bug#12215).
8785         Replace all uses with calls to new setter functions.
8786         Use INLINE_HEADER_BEGIN, INLINE_HEADER_END.
8787         (WINDOW_INLINE): New macro.
8788         (wset_buffer, wset_frame, wset_left_col, wset_next, wset_prev)
8789         (wset_redisplay_end_trigger, wset_top_line, wset_total_cols)
8790         (wset_total_lines, wset_vertical_scroll_bar)
8791         (wset_window_end_pos, wset_window_end_valid)
8792         (wset_window_end_vpos): New setter functions.
8793         * window.c (WINDOW_INLINE):
8794         Define to EXTERN_INLINE, so that the corresponding functions
8795         are compiled into code.
8796         (wset_combination_limit, wset_dedicated, wset_display_table)
8797         (wset_hchild, wset_left_fringe_width, wset_left_margin_cols)
8798         (wset_new_normal, wset_new_total, wset_next_buffers)
8799         (wset_normal_cols, wset_normal_lines, wset_parent, wset_pointm)
8800         (wset_prev_buffers, wset_right_fringe_width)
8801         (wset_right_margin_cols, wset_scroll_bar_width, wset_start)
8802         (wset_temslot, wset_vchild, wset_vertical_scroll_bar_type)
8803         (wset_window_parameters):
8804         * xdisp.c (wset_base_line_number, wset_base_line_pos)
8805         (wset_column_number_displayed, wset_region_showing):
8806         New setter functions.
8808         * termhooks.h (TSET): Remove (Bug#12215).
8809         Replace all uses with calls to new setter functions.
8810         Use INLINE_HEADER_BEGIN, INLINE_HEADER_END.
8811         (TERMHOOKS_INLINE): New macro.
8812         (tset_charset_list, tset_selection_alist): New setter functions.
8813         * terminal.c (TERMHOOKS_INLINE):
8814         Define to EXTERN_INLINE, so that the corresponding functions
8815         are compiled into code.
8816         (tset_param_alist): New setter function.
8818 2012-08-17  Paul Eggert  <eggert@cs.ucla.edu>
8820         * keyboard.h (KSET): Remove (Bug#12215).
8821         Replace all uses with calls to new setter functions.
8822         Use INLINE_HEADER_BEGIN, INLINE_HEADER_END.
8823         (KEYBOARD_INLINE): New macro.
8824         (kset_default_minibuffer_frame, kset_defining_kbd_macro)
8825         (kset_input_decode_map, kset_last_command, kset_last_kbd_macro)
8826         (kset_prefix_arg, kset_system_key_alist, kset_window_system):
8827         New setter functions.
8828         * keyboard.c (KEYBOARD_INLINE):
8829         Define to EXTERN_INLINE, so that the corresponding functions
8830         are compiled into code.
8831         (kset_echo_string, kset_kbd_queue)
8832         (kset_keyboard_translate_table, kset_last_prefix_arg)
8833         (kset_last_repeatable_command, kset_local_function_key_map)
8834         (kset_overriding_terminal_local_map, kset_real_last_command)
8835         (kset_system_key_syms): New setter functions.
8837         * frame.h (FSET): Remove (Bug#12215).
8838         Replace all uses with calls to new setter functions.
8839         Use INLINE_HEADER_BEGIN, INLINE_HEADER_END.
8840         (FRAME_INLINE): New macro.
8841         (fset_buffer_list, fset_buried_buffer_list, fset_condemned_scroll_bars)
8842         (fset_current_tool_bar_string, fset_desired_tool_bar_string)
8843         (fset_face_alist, fset_focus_frame, fset_icon_name, fset_menu_bar_items)
8844         (fset_menu_bar_vector, fset_menu_bar_window, fset_name)
8845         (fset_param_alist, fset_root_window, fset_scroll_bars)
8846         (fset_selected_window, fset_title, fset_tool_bar_items)
8847         (fset_tool_bar_position, fset_tool_bar_window): New functions.
8848         * frame.c (FRAME_INLINE):
8849         Define to EXTERN_INLINE, so that the corresponding functions
8850         are compiled into code.
8851         (fset_buffer_predicate, fset_minibuffer_window): New setter functions.
8853         A few more naming-convention fixes for getters and setters.
8854         * buffer.c (set_buffer_overlays_before): Move here from buffer.h,
8855         and rename from buffer_overlays_set_before.
8856         (set_buffer_overlays_after): Move here from buffer.h, and rename
8857         from buffer_overlays_set_after.
8858         * buffer.h (buffer_intervals): Rename from buffer_get_intervals.
8859         All uses changed.
8860         (set_buffer_intervals): Rename from buffer_set_intervals.
8861         * intervals.c (set_interval_object): Move here from intervals.h,
8862         and rename from interval_set_object.
8863         (set_interval_left): Move here from intervals.h, and rename from
8864         interval_set_left.
8865         (set_interval_right): Move here from intervals.h, and rename from
8866         interval_set_right.
8867         (copy_interval_parent): Move here from intervals.h, and rename from
8868         interval_copy_parent.
8869         * intervals.h (set_interval_parent): Rename from interval_set_parent.
8870         (set_interval_plist): Rename from interval_set_plist.
8871         Return void, not Lisp_Object, since no caller uses the result.
8872         * lisp.h (string_intervals): Rename from string_get_intervals.
8873         (set_string_intervals): Rename from string_set_intervals.
8875         * lisp.h (set_char_table_extras): Rename from char_table_set_extras.
8876         (set_char_table_contents): Rename from char_table_set_contents.
8877         (set_sub_char_table_contents): Rename from sub_char_table_set_contents.
8878         All uses changed.  See the end of
8879         <http://lists.gnu.org/archive/html/emacs-devel/2012-08/msg00549.html>.
8881         * lisp.h (CSET): Remove (Bug#12215).
8882         (set_char_table_ascii, set_char_table_defalt, set_char_table_parent)
8883         (set_char_table_purpose): New functions,
8884         replacing CSET.  All uses changed.  For example, replace
8885         "CSET (XCHAR_TABLE (char_table), parent, parent);" with
8886         "set_char_table_parent (char_table, parent);".
8887         The old version was confusing because it used the same name
8888         'parent' for two different things.
8890 2012-08-17  Dmitry Antipov  <dmantipov@yandex.ru>
8892         Functions to get and set Lisp_Object fields of buffer-local variables.
8893         * lisp.h (blv_found, set_blv_found, blv_value, set_blv_value)
8894         (set_blv_where, set_blv_defcell, set_blv_valcell): New functions.
8895         (BLV_FOUND, SET_BLV_FOUND, BLV_VALUE, SET_BLV_VALUE): Remove.
8896         * data.c, eval.c, frame.c: Adjust users.
8898 2012-08-17  Chong Yidong  <cyd@gnu.org>
8900         * xfaces.c (merge_face_vectors): If the target font specfies a
8901         font spec, make the font's attributes take precedence over
8902         directly-specified attributes.
8903         (merge_face_ref): Recognize :font.
8905 2012-08-17  Dmitry Antipov  <dmantipov@yandex.ru>
8907         Do not use memcpy for copying intervals.
8908         * intervals.c (reproduce_interval): New function.
8909         (reproduce_tree, reproduce_tree_obj): Use it.
8910         (reproduce_tree_obj): Remove prototype.
8912 2012-08-17  Paul Eggert  <eggert@cs.ucla.edu>
8914         * lisp.h (duration_to_sec_usec): Remove unused decl.
8916 2012-08-17  Alp Aker  <alp.tekin.aker@gmail.com>
8918         * nsfont.m (ns_ascii_average_width): Send initWithFormat selector
8919         to an allocated instance of NSString, not to the class itself.
8921 2012-08-17  Juanma Barranquero  <lekktu@gmail.com>
8923         * makefile.w32-in (C_CTYPE_H): New macro.
8924         (LISP_H, $(BLD)/ccl.$(O), $(BLD)/doc.$(O), $(BLD)/w32console.$(O)):
8925         ($(BLD)/fontset.$(O), $(BLD)/frame.$(O), $(BLD)/composite.$(O)):
8926         ($(BLD)/sysdep.$(O), $(BLD)/w32uniscribe.$(O)): Update dependencies.
8928 2012-08-16  Paul Eggert  <eggert@cs.ucla.edu>
8930         Use ASCII tests for character types.
8931         * category.c, dispnew.c, doprnt.c, editfns.c, syntax.c, term.c:
8932         * xfns.c, xterm.c:
8933         Don't include <ctype.h>; was not needed.
8934         * charset.c, doc.c, fileio.c, font.c, frame.c, gtkutil.c, image.c:
8935         * sysdep.c, xfaces.c:
8936         Include <c-ctype.h> instead of <ctype.h>.
8937         * nsterm.m: Include <c-ctype.h>.
8938         * charset.c (read_hex):
8939         * doc.c (Fsnarf_documentation):
8940         * fileio.c (IS_DRIVE) [WINDOWSNT]:
8941         (DRIVE_LETTER) [DOS_NT]:
8942         (Ffile_name_directory, Fexpand_file_name)
8943         (Fsubstitute_in_file_name):
8944         * font.c (font_parse_xlfd, font_parse_fcname):
8945         * frame.c (x_set_font_backend):
8946         * gtkutil.c (xg_get_font):
8947         * image.c (xbm_scan, xpm_scan, pbm_scan_number):
8948         * nsimage.m (hexchar):
8949         * nsterm.m (ns_xlfd_to_fontname):
8950         * sysdep.c (system_process_attributes):
8951         * xfaces.c (hash_string_case_insensitive):
8952         Use C-locale tests instead of locale-specific tests for character
8953         types, since we want the ASCII interpretation here, not the
8954         interpretation suitable for whatever happens to be the current locale.
8956 2012-08-16  Martin Rudalics  <rudalics@gmx.at>
8958         Consistently check windows for validity/liveness
8959         (Bug#11984, Bug#12025, Bug#12026).
8960         * lisp.h (CHECK_VALID_WINDOW): New macro.
8961         * window.c (decode_window): Rename to decode_live_window.
8962         (decode_valid_window, Fwindow_valid_p): New functions.
8963         (Fwindow_frame, Fframe_root_window, Fwindow_minibuffer_p)
8964         (Fframe_first_window, Fframe_selected_window, Fwindow_parent)
8965         (Fwindow_top_child, Fwindow_left_child, Fwindow_next_sibling)
8966         (Fwindow_prev_sibling, Fwindow_combination_limit)
8967         (Fset_window_combination_limit, Fwindow_use_time)
8968         (Fwindow_total_height, Fwindow_total_width, Fwindow_new_total)
8969         (Fwindow_normal_size, Fwindow_new_normal, Fwindow_left_column)
8970         (Fwindow_top_line, Fwindow_body_height, Fwindow_body_width)
8971         (Fwindow_hscroll, Fset_window_hscroll)
8972         (Fwindow_redisplay_end_trigger)
8973         (Fset_window_redisplay_end_trigger, Fwindow_edges)
8974         (Fwindow_pixel_edges, Fwindow_absolute_pixel_edges)
8975         (Fwindow_inside_edges, Fwindow_inside_pixel_edges)
8976         (Fcoordinates_in_window_p, Fwindow_point, Fwindow_start)
8977         (Fwindow_end, Fset_window_point, Fset_window_start)
8978         (Fpos_visible_in_window_p, Fwindow_line_height)
8979         (Fwindow_dedicated_p, Fset_window_dedicated_p)
8980         (Fwindow_prev_buffers, Fset_window_prev_buffers)
8981         (Fwindow_next_buffers, Fwindow_parameters, Fwindow_parameter)
8982         (Fset_window_parameter, Fwindow_display_table)
8983         (Fset_window_display_table, Fdelete_other_windows_internal)
8984         (Fset_window_buffer, Fset_window_new_total)
8985         (Fset_window_new_normal, Fdelete_window_internal)
8986         (Fwindow_text_height, Fset_window_margins, Fwindow_margins)
8987         (Fset_window_fringes, Fwindow_fringes, Fset_window_scroll_bars)
8988         (Fwindow_scroll_bars): Check whether argument window is a valid or
8989         live window.  Update doc-strings.
8990         (syms_of_window): New symbol Qwindow_valid_p.
8991         * keyboard.c (Fposn_at_x_y): Check whether argument
8992         frame_or_window denotes a valid window.
8994 2012-08-16  Dmitry Antipov  <dmantipov@yandex.ru>
8996         Fix previous char table change.
8997         * lisp.h (CHAR_TABLE_SET): Use sub_char_table_set_contents.
8998         * chartab.c (optimize_sub_char_table): Likewise.
9000 2012-08-16  Chong Yidong  <cyd@gnu.org>
9002         * gtkutil.c (xg_get_font): Demand an Xft font (Bug#3228).
9004         * xfont.c (xfont_open):
9005         * xftfont.c (xftfont_open): Set the font's max_width field.
9007         * nsfont.m (nsfont_open): Similar to the Xft backend, set
9008         min_width to space_width and average_width to the average over
9009         printable ASCII characters.
9010         (ns_char_width): Code cleanup.
9011         (ns_ascii_average_width): New utility function.
9013         * font.h (struct font): Update comments.
9015 2012-08-16  Dmitry Antipov  <dmantipov@yandex.ru>
9017         Simple interface to set Lisp_Object fields of character tables.
9018         * lisp.h (CSET): New macro.
9019         (char_table_set_extras, char_table_set_contents)
9020         (sub_char_table_set_contents): New function.
9021         * casetab.c, category.c, chartab.c, fns.c, fontset.c, search.c:
9022         * syntax.c: Adjust users.
9024 2012-08-16  Stefan Monnier  <monnier@iro.umontreal.ca>
9026         * eval.c (eval_sub): Bind lexical-binding.
9027         * lread.c (Qlexical_binding): Make non-static.
9029 2012-08-15  Jan Djärv  <jan.h.d@swipnet.se>
9031         * nsmenu.m (popupSession): Remove.
9032         (pop_down_menu): Remove endModalSession.
9033         (timeout_handler:): New method.
9034         (runDialogAt:): Get next timeout.  Start a NSTimer with that timeout.
9035         Call runModalForWindow.  Check timer_fired when it returns.
9036         If not set, cancel timer and break out of loop.
9037         Otherwise loop again, with a new timeout.
9039         * nsterm.m: Include fcntl.h if present.
9040         (fd_entry, t_readfds, inNsSelect): Remove.
9041         (select_writefds, select_valid, select_timeout, selfds)
9042         (select_mutex, apploopnr): Add.
9043         (EV_TRAILER): Call kbd_buffer_store_event_hold only if q_event_ptr.
9044         Otherwise call kbd_buffer_store_event.
9045         (ns_send_appdefined): Remove release of fd_entry.
9046         (ns_read_socket): Always send appdefined.  Remove inNsSelect check.
9047         Increment and decrement apploopnr.
9048         (ns_select): If no file descriptors, just do a NSTimer.
9049         Otherwise copy read/write masks and start select thread (fd_handler).
9050         Start main loop and wait for application defined event.
9051         Inform select thread to stop selecting after main loop is exited.
9052         (ns_term_init): Create selfds pipe and set non-blocking.
9053         Initialize select_mutex.  Start the select thread (fd_handler).
9054         (fd_handler:): Loop forever, wait for info from the main thread
9055         to either start or stop selecting.  When select returns, send
9056         and appdefined event.
9057         (sendScrollEventAtLoc:fromEvent:): Check if q_event_ptr is set.
9058         If not call kbd_buffer_store_event.
9060         * nsterm.h (EmacsApp): fd_handler takes id argument.
9061         (EmacsDialogPanel): Add timer_fired and timeout_handler.
9063         * gtkutil.c (xg_mark_data): Use FRAME_X_P.
9065 2012-08-15  Eli Zaretskii  <eliz@gnu.org>
9067         * region-cache.c (move_cache_gap): Update gap_len using the actual
9068         growth of the boundaries array.  Do not change cache_len.
9069         (Bug#12196)
9071 2012-08-15  Dmitry Antipov  <dmantipov@yandex.ru>
9073         Generalize and cleanup font subsystem checks.
9074         * font.h (FONT_DEBUG, font_assert): Remove.
9075         * font.c, fontset.c, w32font.c, xfont.c, xftfont.c:
9076         Change font_assert to eassert.  Use eassert where appropriate.
9078 2012-08-15  Dmitry Antipov  <dmantipov@yandex.ru>
9080         * gtkutil.c (xg_get_font): Use pango_units_to_double.
9082 2012-08-15  Chong Yidong  <cyd@gnu.org>
9084         * gtkutil.c (xg_get_font): Rename from xg_get_font_name.
9085         When using the new font chooser, use gtk_font_chooser_get_font_desc to
9086         extract the font descriptor instead of just the font name.
9087         In that case, return a font spec instead of a string.
9088         (x_last_font_name): Move to this file from xfns.c.
9090         * xfns.c (Fx_select_font): The return value can also be a font
9091         spec.  Move x_last_font_name management to gtkutil.c.
9093         * xfaces.c: Make font weight and style symbols non-static.
9095 2012-08-15  Stefan Monnier  <monnier@iro.umontreal.ca>
9097         * minibuf.c (read_minibuf): Ignore caller's inhibit-read-only
9098         (bug#12117).
9100 2012-08-14  Stefan Monnier  <monnier@iro.umontreal.ca>
9102         * alloc.c (Fgarbage_collect): Use plural form consistently.
9104 2012-08-14  Eli Zaretskii  <eliz@gnu.org>
9106         * keyboard.c (command_loop_1): Reset ignore_mouse_drag_p flag each
9107         iteration through the command loop.  Fixes a problem whereby mouse
9108         movements are ignored until the first mouse click.
9110 2012-08-14  Paul Eggert  <eggert@cs.ucla.edu>
9112         Use bool, not int, for Lisp booleans.
9113         This is more natural, and on my platform (GCC 4.7.1 x86-64) it
9114         makes Emacs a bit smaller and presumably a bit faster.
9115         * lisp.h: Include <stdbool.h>.
9116         (struct Lisp_Boolfwd, defvar_bool):
9117         * lread.c (defvar_bool): Use bool, not int, for Lisp booleans.
9118         * regex.c [!emacs]: Include <stdbool.h>.
9119         (false, true): Remove; <stdbool.h> does this for us now.
9121 2012-08-14  Chong Yidong  <cyd@gnu.org>
9123         * character.c (Fcharacterp): Doc fix (Bug#12076).
9125         * data.c (Findirect_variable): Doc fix (Bug#11040).
9127         * chartab.c (Fmap_char_table): Doc fix (Bug#12061).
9129         * editfns.c (Fformat): Doc fix (Bug#12059).
9130         (Fsave_current_buffer): Doc fix (Bug#11542).
9132 2012-08-14  Barry OReilly  <gundaetiapo@gmail.com>  (tiny change)
9134         * keyboard.c (access_keymap_keyremap): Accept anonymous functions
9135         (bug#12022).
9137 2012-08-14  Martin Rudalics  <rudalics@gmx.at>
9139         * frame.c (make_frame_without_minibuffer, make_minibuffer_frame)
9140         (delete_frame, Fmake_frame_invisible, Ficonify_frame):
9141         * minibuf.c (choose_minibuf_frame, read_minibuf):
9142         * w32fns.c (x_create_tip_frame):
9143         * xfns.c (x_create_tip_frame): Call set_window_buffer instead of
9144         Fset_window_buffer (Bug#11984, Bug#12025, Bug#12026).
9146 2012-08-14  Paul Eggert  <eggert@cs.ucla.edu>
9148         * intervals.c (offset_intervals): Remove obsolete comment.
9150 2012-08-14  Andreas Schwab  <schwab@linux-m68k.org>
9152         * gtkutil.c (find_rtl_image, update_frame_tool_bar): Use NILP.
9154 2012-08-14  Gergely Risko  <gergely@risko.hu>
9156         * coding.c (decode_coding): Record buffer modification before
9157         disabling undo_list (Bug#11773).
9159 2012-08-14  Dmitry Antipov  <dmantipov@yandex.ru>
9161         Revert and cleanup some recent overlay changes.
9162         * buffer.h (enum overlay_type): Remove.
9163         (buffer_get_overlays, buffer_set_overlays): Likewise.
9164         (buffer_set_overlays_before, buffer_set_overlays_after):
9165         New function.  Adjust users.
9166         (unchain_both): Add eassert.
9168 2012-08-14  Dmitry Antipov  <dmantipov@yandex.ru>
9170         * gtkutil.c (update_frame_tool_bar): Use EQ where appropriate.
9172 2012-08-14  Paul Eggert  <eggert@cs.ucla.edu>
9174         * gtkutil.c (xg_mark_data): Don't assume C99.
9176 2012-08-13  Jan Djärv  <jan.h.d@swipnet.se>
9178         * gtkutil.c (xg_frame_tb_info): New struct.
9179         (TB_INFO_KEY): New define.
9180         (xg_free_frame_widgets): Free xg_frame_tb_info for frame if present.
9181         (xg_mark_data): Mark Lisp_Objects in xg_frame_tb_info.
9182         (xg_create_tool_bar): Allocate and initialize a xg_frame_tb_info
9183         if not present.
9184         (update_frame_tool_bar): Return early if data in xg_frame_tb_info
9185         is up to date.  Otherwise store new data.
9186         (free_frame_tool_bar): Free xg_frame_tb_info if present.
9188 2012-08-13  Dmitry Antipov  <dmantipov@yandex.ru>
9190         Use KSET for write access to Lisp_Object members of struct kboard.
9191         * keyboard.h (KSET): New macro.
9192         * callint.c, category.c, frame.c, keyboard.c, keyboard.h, macros.c:
9193         * msdos.c, nsfns.m, nsterm.m, term.c, w32fns.c, w32term.c, xfns.c:
9194         * xterm.c: Adjust users.
9196 2012-08-13  Dmitry Antipov  <dmantipov@yandex.ru>
9198         Use BSET for write access to Lisp_Object members of struct buffer.
9199         * buffer.h (BSET): New macro.
9200         * buffer.c, casetab.c, cmds.c, coding.c, data.c, editfns.c:
9201         * fileio.c, frame.c, indent.c, insdel.c, intervals.c, keymap.c:
9202         * minibuf.c, print.c, process.c, syntax.c, undo.c, w32fns.c:
9203         * window.c, xdisp.c, xfns.c: Adjust users.
9205 2012-08-11  BT Templeton  <bpt@hcoop.net>  (tiny change)
9207         * lread.c (syms_of_lread): Initialize Vlexical_binding.
9209 2012-08-11  Jan Djärv  <jan.h.d@swipnet.se>
9211         * nsterm.m (not_in_argv): New function.
9212         (application:openFile, application:openTempFile:):
9213         (application:openFileWithoutUI:, application:openFiles:): Open file
9214         if not_in_argv returns non-zero (bug#12171).
9216         * gtkutil.c (gtk_font_chooser_dialog_new, GTK_FONT_CHOOSER)
9217         (gtk_font_chooser_set_font, gtk_font_chooser_get_font):
9218         Define for Gtk+ versions less than 3.2.
9219         (xg_get_font_name): Use those functions/macros here.
9220         Reported by Frans Oilinki <moilinki@gmail.com>.
9222 2012-08-11  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
9224         * unexmacosx.c (copy_data_segment): Copy initialized data in
9225         statically linked libraries from input file rather than memory.
9227         * unexmacosx.c (print_load_command_name): Add cases LC_MAIN,
9228         LC_SOURCE_VERSION, and LC_DYLIB_CODE_SIGN_DRS.
9229         (dump_it) [LC_DYLIB_CODE_SIGN_DRS]: Call copy_linkedit_data.
9231 2012-08-10  Glenn Morris  <rgm@gnu.org>
9233         * conf_post.h (IF_LINT, lint_assume): Move here from lisp.h.
9234         * lisp.h (IF_LINT, lint_assume): Move to conf_post.h.
9236 2012-08-10  Dmitry Antipov  <dmantipov@yandex.ru>
9238         Fix last change to allow compilation with low optimization levels.
9239         * intervals.c (INTERVALS_INLINE): Define to EXTERN_INLINE.
9240         Reported by Jan Djärv <jan.h.d@swipnet.se>.
9242 2012-08-10  Dmitry Antipov  <dmantipov@yandex.ru>
9244         Use common inline syntax in intervals.h.
9245         * intervals.h (INTERVALS_INLINE): New macro.
9246         Change all users from LISP_INLINE.
9248 2012-08-10  Dmitry Antipov  <dmantipov@yandex.ru>
9250         Define Qnone once for all platforms.
9251         * frame.c (Qnone): Define here.
9252         (syms_of_frame): DEFSYM it.
9253         * lisp.h (Qnone): New declaration.
9254         * nsfns.m, nsterm.h, nsterm.m, w32fns.c, w32font.c:
9255         * xfns.c: Remove duplication.  Adjust users.
9257 2012-08-10  Dmitry Antipov  <dmantipov@yandex.ru>
9259         Remove unused macros from intervals.h.
9260         * intervals.h (MERGE_INSERTIONS, DISPLAY_INVISIBLE_GLYPH): Remove.
9261         * intervals.c: Adjust comment.
9263 2012-08-10  Eli Zaretskii  <eliz@gnu.org>
9265         * w32fns.c <w32_unicode_gui>: New static variable.
9266         (globals_of_w32fns): Initialize it according to os_subtype.
9267         (w32_init_class, w32_msg_pump, w32_wnd_proc): Use it instead of
9268         testing os_subtype.
9270 2012-08-10  Joakim Hårsman  <joakim.harsman@gmail.com>  (tiny change)
9271             Eli Zaretskii  <eliz@gnu.org>
9273         Fix bug #10299 with Unicode characters sent by customized
9274         keyboards created by MSKLC.
9275         * w32fns.c (INIT_WINDOW_CLASS): New macro.
9276         (w32_init_class): Use it to initialize the Emacs class with either
9277         ANSI or Unicode API calls.
9278         (w32_msg_pump): Call GetMessageW and DispatchMessageW on NT and
9279         later.
9280         (w32_wnd_proc): If the character code sent by WM_CHAR or
9281         WM_SYSCHAR is above 255, post a WM_UNICHAR message, not the
9282         original message.  Call DefWindowProcW on NT and later.
9284 2012-08-10  Glenn Morris  <rgm@gnu.org>
9286         * Makefile.in (config_h): Fix conf_post.h out-of-tree build location.
9288         * lisp.h (DIRECTORY_SEP): Let configure set it.
9290 2012-08-09  Dmitry Antipov  <dmantipov@yandex.ru>
9292         Use TSET for write access to Lisp_Object slots of struct terminal.
9293         * termhooks.h (TSET): New macro.
9294         * coding.c, terminal.c, xselect.c: Adjust users.
9296 2012-08-08  Stefan Monnier  <monnier@iro.umontreal.ca>
9298         * xdisp.c (safe_eval_handler): Remove prototype.  Receive args describing
9299         the failing expression, include them in the error message.
9300         * eval.c (internal_condition_case_n): Pass nargs and args to hfun.
9301         * lisp.h (internal_condition_case_n): Update declaration.
9303 2012-08-08  Dmitry Antipov  <dmantipov@yandex.ru>
9305         Inline functions to examine and change buffer overlays.
9306         * buffer.c (unchain_both): New function.
9307         * buffer.h (buffer_get_overlays, buffer_set_overlays):
9308         (buffer_has_overlays): New function.
9309         (enum overlay_type): New enum.
9310         * alloc.c, buffer.c, editfns.c, fileio.c, indent.c:
9311         * insdel.c, intervals.c, print.c, xdisp.c: Adjust users.
9313 2012-08-08  Dmitry Antipov  <dmantipov@yandex.ru>
9315         Inline functions to examine and change buffer intervals.
9316         * alloc.c (mark_interval_tree): Remove.
9317         (MARK_INTERVAL_TREE): Simplify.
9318         (UNMARK_BALANCE_INTERVALS): Remove.  Adjust users.
9319         * intervals.c (buffer_balance_intervals): New function.
9320         (graft_intervals_into_buffer): Adjust indentation.
9321         (set_intervals_multibyte): Simplify.
9322         * buffer.h (BUF_INTERVALS): Remove.
9323         (buffer_get_intervals, buffer_set_intervals): New function.
9324         * alloc.c, buffer.c, editfns.c, fileio.c, indent.c, insdel.c:
9325         * intervals.c, textprop.c: Adjust users.
9327 2012-08-08  Dmitry Antipov  <dmantipov@yandex.ru>
9329         Inline functions to examine and change string intervals.
9330         * lisp.h (STRING_INTERVALS, STRING_SET_INTERVALS): Remove.
9331         (string_get_intervals, string_set_intervals): New function.
9332         * alloc.c, buffer.c, editfns.c, fns.c, insdel.c, intervals.c:
9333         * lread.c, print.c, textprop.c: Adjust users.
9335 2012-08-08  Glenn Morris  <rgm@gnu.org>
9337         * lisp.mk (lisp): Remove language/persian.elc.
9339 2012-08-08  Dmitry Antipov  <dmantipov@yandex.ru>
9341         Cleanup intervals.
9342         * intervals.h (NULL_INTERVAL, DEFAULT_INTERVAL): Remove.
9343         (NULL_INTERVAL_P): Likewise.  Adjust users.
9344         (FRONT_STICKY_P, END_NONSTICKY_P, FRONT_NONSTICKY_P):
9345         Adjust comment.  Move under #if 0.
9346         * alloc.c, buffer.c, editfns.c, fns.c, insdel.c, intervals.c:
9347         * print.c, syntax.c, textprop.c, xdisp.c: Adjust users.
9349 2012-08-08  Dmitry Antipov  <dmantipov@yandex.ru>
9351         Check total length of intervals with eassert.
9352         * intervals.h (CHECK_TOTAL_LENGTH): Remove.
9353         * intervals.c: Change all users to eassert.
9355 2012-08-07  Eli Zaretskii  <eliz@gnu.org>
9357         * .gdbinit (xframe, xwindow, nextcons, xcar, xcdr, xlist):
9358         Rename fields to match removal of FGET and WGET and disuse of
9359         INTERNAL_FIELD in Lisp_Cons.
9361 2012-08-07  Dmitry Antipov  <dmantipov@yandex.ru>
9363         Revert and cleanup Lisp_Cons, Lisp_Misc and Lisp_Symbol things.
9364         * lisp.h (struct Lisp_Symbol): Change xname to meaningful
9365         name since all xname users are fixed long time ago.  Do not
9366         use INTERNAL_FIELD.
9367         (set_symbol_name, set_symbol_function, set_symbol_plist):
9368         (set_symbol_next, set_overlay_plist): New function.
9369         (struct Lisp_Cons): Do not use INTERNAL_FIELD.
9370         (struct Lisp_Overlay): Likewise.
9371         (CVAR, MVAR, SVAR): Remove.
9372         * alloc.c, buffer.c, buffer.h, bytecode.c, cmds.c, data.c:
9373         * doc.c, eval.c, fns.c, keyboard.c, lread.c, nsselect.m:
9374         * xterm.c: Adjust users.
9375         * .gdbinit: Change to use name field of struct Lisp_Symbol
9376         where appropriate.
9378 2012-08-07  Dmitry Antipov  <dmantipov@yandex.ru>
9380         Basic functions to set Lisp_Object and pointer slots of intervals.
9381         * intervals.h (interval_set_parent, interval_set_object):
9382         (interval_set_left, interval_set_right, interval_set_plist):
9383         (interval_copy_parent): New function.
9384         (SET_INTERVAL_OBJECT, SET_INTERVAL_PARENT, INTERVAL_PTR_SIZE): Remove.
9385         (RESET_INTERVAL, COPY_INTERVAL_CACHE, MERGE_INTERVAL_CACHE):
9386         Adjust indentation.
9387         (INTERVAL_SIZE): Remove.  Adjust users.
9388         * alloc.c, intervals.c, lread.c, textprop.c: Use new functions.
9390 2012-08-07  Dmitry Antipov  <dmantipov@yandex.ru>
9392         Drop PGET and revert read access to Lisp_Objects slots of Lisp_Process.
9393         * process.h (PGET): Remove.
9394         (struct Lisp_Process): Do not use INTERNAL_FIELD.
9395         * gnutls.c, print.c, process.c, sysdep.c, w32.c, xdisp.c: Adjust users.
9397 2012-08-07  Dmitry Antipov  <dmantipov@yandex.ru>
9399         Drop WGET and revert read access to Lisp_Objects slots of struct window.
9400         * window.h (WGET): Remove.
9401         (struct window): Do not use INTERNAL_FIELD.
9402         * alloc.c, buffer.c, composite.c, dispextern.h, dispnew.c, editfns.c:
9403         * fileio.c, font.c, fontset.c, frame.c, frame.h, fringe.c, indent.c:
9404         * insdel.c, keyboard.c, keymap.c, lisp.h, minibuf.c, msdos.c, nsfns.m:
9405         * nsmenu.m, nsterm.m, print.c, textprop.c, w32fns.c, w32menu.c:
9406         * w32term.c, window.c, xdisp.c, xfaces.c, xfns.c, xmenu.c, xterm.c:
9407         Adjust users.
9409 2012-08-07  Chong Yidong  <cyd@gnu.org>
9411         * window.c (Fwindow_edges, Fwindow_pixel_edges)
9412         (Fwindow_absolute_pixel_edges, Fdelete_other_windows_internal)
9413         (Fdelete_window_internal): Signal an error if the window is not on
9414         a live frame (Bug#12025).
9416 2012-08-07  Dmitry Antipov  <dmantipov@yandex.ru>
9418         Drop FGET and revert read access to Lisp_Objects slots of struct frame.
9419         * frame.h (FGET): Remove.
9420         (struct frame): Do not use INTERNAL_FIELD.
9421         * buffer.c, data.c, dispnew.c, dosfns.c, eval.c, fontset.c, frame.c:
9422         * fringe.c, gtkutil.c, minibuf.c, msdos.c, nsfns.m, nsmenu.m, nsterm.m:
9423         * print.c, term.c, w32fns.c, w32menu.c, w32term.c, window.c, window.h:
9424         * xdisp.c, xfaces.c, xfns.c, xmenu.c, xterm.c: Adjust users.
9426 2012-08-06  Juanma Barranquero  <lekktu@gmail.com>
9428         * w32.c: Silence compiler warnings.
9429         (map_w32_filename): Remove unused variable `is_fat'.
9430         (chase_symlinks): Add parentheses around expression.
9432 2012-08-06  Glenn Morris  <rgm@gnu.org>
9434         * sysdep.c: Respect BROKEN_GETWD.
9436         * dispnew.c (GNU_LIBRARY_PENDING_OUTPUT_COUNT, PENDING_OUTPUT_COUNT):
9437         Let configure handle it.
9438         (stdio_ext.h) [DISPNEW_NEEDS_STDIO_EXT]: Include it.
9440 2012-08-06  Dmitry Antipov  <dmantipov@yandex.ru>
9442         Use GCALIGNMENT where appropriate.
9443         * alloc.c (XMALLOC_HEADER_ALIGNMENT, roundup_size):
9444         (union aligned_Lisp_Symbol, union aligned_Lisp_Misc):
9445         (mark_maybe_pointer, pure_alloc): Change to use GCALIGNMENT.
9447 2012-08-06  Eli Zaretskii  <eliz@gnu.org>
9449         * w32menu.c (set_frame_menubar, initialize_frame_menubar):
9450         Don't use FRAME_MENU_BAR_ITEMS as an lvalue.
9452 2012-08-06  Stefan Monnier  <monnier@iro.umontreal.ca>
9454         * buffer.h (struct buffer): Revert `indirections' to a simple int;
9455         that should be sufficient for everyone.
9457 2012-08-06  Jan Djärv  <jan.h.d@swipnet.se>
9459         * keyboard.c (timer_check_2): Add break so timer_check returns next
9460         timeout.
9462 2012-08-06  Dmitry Antipov  <dmantipov@yandex.ru>
9464         Fix Windows build errors introduced after converting to WGET and WSET.
9465         * w32term.c (w32_set_vertical_scroll_bar): Change to use WSET.
9466         Reported by Andy Moreton <andrewjmoreton@gmail.com>.
9468 2012-08-06  Jan Djärv  <jan.h.d@swipnet.se>
9470         * nsterm.m (ns_frame_rehighlight): Use FSET.
9472         * nsmenu.m (ns_update_menubar): Use FSET.
9474 2012-08-06  Dmitry Antipov  <dmantipov@yandex.ru>
9476         Separate read and write access to Lisp_Object slots of Lisp_Process.
9477         * process.h (PGET, PSET): New macros similar to AREF and ASET.
9478         * gnutls.c, print.c, process.c, sysdep.c, w32.c, xdisp.c: Adjust users.
9480 2012-08-06  Dmitry Antipov  <dmantipov@yandex.ru>
9482         Separate read and write access to Lisp_Object slots of struct window.
9483         * window.h (WGET, WSET): New macros similar to AREF and ASET.
9484         * alloc.c, buffer.c, composite.c, dispextern.h, dispnew.c, editfns.c:
9485         * fileio.c, font.c, fontset.c, frame.c, frame.h, fringe.c, indent.c:
9486         * insdel.c, keyboard.c, keymap.c, lisp.h, minibuf.c, msdos.c, nsfns.m:
9487         * nsmenu.m, nsterm.m, print.c, textprop.c, w32fns.c, w32menu.c:
9488         * w32term.c, window.c, xdisp.c, xfaces.c, xfns.c, xmenu.c, xterm.c:
9489         Adjust users.
9491 2012-08-06  Dmitry Antipov  <dmantipov@yandex.ru>
9493         Fix Windows build errors introduced after converting to FGET and FSET.
9494         * w32term.c (x_frame_rehighlight, x_scroll_bar_create):
9495         (w32_condemn_scroll_bars, w32_redeem_scroll_bar):
9496         (w32_judge_scroll_bars): Change to use FSET.
9497         Reported by Andy Moreton <andrewjmoreton@gmail.com>.
9499 2012-08-06  Dmitry Antipov  <dmantipov@yandex.ru>
9501         Fix replacement typo.
9502         * window.c (replace_window): Set root_window instead of
9503         selected_window.  This fixes a total window subsystem
9504         malfunction reported by Bastien Guerry <bzg@gnu.org>.
9506 2012-08-06  Glenn Morris  <rgm@gnu.org>
9508         * lisp.mk (lisp): Add language/persian.elc.
9510 2012-08-06  Dmitry Antipov  <dmantipov@yandex.ru>
9512         Separate read and write access to Lisp_Object slots of struct frame.
9513         * frame.h (FGET, FSET): New macros similar to AREF and ASET.
9514         * buffer.c, data.c, dispnew.c, dosfns.c, eval.c, fontset.c, frame.c:
9515         * fringe.c, gtkutil.c, minibuf.c, msdos.c, nsfns.m, nsmenu.m, nsterm.m:
9516         * print.c, term.c, w32fns.c, w32menu.c, w32term.c, window.c, window.h:
9517         * xdisp.c, xfaces.c, xfns.c, xmenu.c, xterm.c: Adjust users.
9519 2012-08-05  Andreas Schwab  <schwab@linux-m68k.org>
9521         * emacs.c (decode_env_path): Only use defaulted if WINDOWSNT.
9523 2012-08-05  Dmitry Antipov  <dmantipov@yandex.ru>
9525         Generalize common compile-time constants.
9526         * lisp.h (header_size, bool_header_size, word_size): Now here.
9527         (struct Lisp_Vector): Add comment.
9528         (struct Lisp_Bool_Vector): Move up to define handy constants.
9529         (VECSIZE, PSEUDOVECSIZE): Simplify.
9530         (SAFE_ALLOCA_LISP): Use new constant.  Adjust indentation.
9531         * buffer.c, buffer.h, bytecode.c, callint.c, eval.c, fns.c:
9532         * font.c, fontset.c, keyboard.c, keymap.c, macros.c, menu.c:
9533         * msdos.c, w32menu.c, w32term.h, window.c, xdisp.c, xfaces.c:
9534         * xfont.c, xmenu.c: Use word_size where appropriate.
9536 2012-08-05  Lawrence Mitchell  <wence@gmx.li>
9538         * search.c (Freplace_match): Treat \? in the replacement text
9539         literally (Bug#8161).
9541 2012-08-05  Chong Yidong  <cyd@gnu.org>
9543         * term.c (Vsuspend_tty_functions, Vresume_tty_functions):
9544         * frame.c (Vdelete_frame_functions):
9545         * emacs.c (Vkill_emacs_hook): Doc fix.
9547 2012-08-04  Eli Zaretskii  <eliz@gnu.org>
9549         * xfns.c (x_set_menu_bar_lines): Fix compilation error in
9550         --with-x-toolkit=no builds.
9551         Reported by Carsten Mattner <carstenmattner@gmail.com>.
9553 2012-08-04  Chong Yidong  <cyd@gnu.org>
9555         * syntax.c (Fmodify_syntax_entry): Doc fix.
9557 2012-08-04  Eli Zaretskii  <eliz@gnu.org>
9559         Fix startup warnings about ../site-lisp on MS-Windows.  (Bug#11959)
9560         * w32.c (init_environment): Change the default values of many
9561         environment variables in dflt_envvars[] to NULL, to avoid pushing
9562         them into environment when they were not already defined.
9563         Remove the code that deletes site-lisp subdirectories from the default
9564         value of EMACSLOADPATH, as it is no longer needed.
9565         (check_windows_init_file): Now external, not static.
9566         Use Vload_path as is, without adding anything, as this function is now
9567         called when Vload_path is already set up.
9569         * w32.h (check_windows_init_file): Add prototype.
9571         * emacs.c (init_cmdargs) [WINDOWSNT]: When running from the build
9572         directory, ignore the /*/i386/ tail in Vinvocation_directory, for
9573         compatibility with Posix platforms.
9574         (main): Move the call to check_windows_init_file to here from
9575         w32.c.
9576         (decode_env_path) [WINDOWSNT]: Expand the %emacs_dir%/ prefix, if
9577         any, in the DEFALT argument into the root of the Emacs build or
9578         installation tree, as appropriate.
9580         * callproc.c (init_callproc_1): Call decode_env_path instead of
9581         doing its equivalent by hand.
9582         (init_callproc): Replace DOS_NT condition with MSDOS, thus letting
9583         the code that sets Vexec_path run on MS-Windows.
9585         * lread.c (init_lread): Add comments to #ifdef's.
9587         * msdos.c (dos_set_window_size, IT_update_begin)
9588         (IT_frame_up_to_date, IT_set_frame_parameters): Use FVAR and WVAR
9589         instead of direct references.
9591 2012-08-04  Paul Eggert  <eggert@cs.ucla.edu>
9593         Export DEFAULT_REHASH_* to GDB.
9594         * lisp.h (DEFAULT_REHASH_THRESHOLD, DEFAULT_REHASH_SIZE):
9595         Now constants, not macros.
9597 2012-08-03  Paul Eggert  <eggert@cs.ucla.edu>
9599         Remove unnecessary casts involving pointers.
9600         These casts are no longer needed now that we assume C89 or later,
9601         since they involve casting to or from void *.
9602         * alloc.c (make_pure_string, make_pure_c_string, pure_cons)
9603         (make_pure_float, make_pure_vector):
9604         * lisp.h (SAFE_ALLOCA, SAFE_ALLOCA_LISP):
9605         * macros.c (Fstart_kbd_macro):
9606         * menu.c (find_and_return_menu_selection):
9607         * minibuf.c (read_minibuf_noninteractive):
9608         * sysdep.c (closedir):
9609         * xdisp.c (x_produce_glyphs):
9610         * xfaces.c (compare_fonts_by_sort_order):
9611         * xfns.c (x_real_positions, select_visual):
9612         * xselect.c (x_stop_queuing_selection_requests)
9613         (x_get_window_property, x_get_window_property_as_lisp_data):
9614         * xterm.c (x_set_frame_alpha, x_find_modifier_meanings):
9615         Remove unnecessary pointer casts.
9616         * alloc.c (record_xmalloc): New function.
9617         * lisp.h (record_xmalloc): New decl.
9618         (SAFE_ALLOCA): Now takes just one arg -- the size -- and acts
9619         more like a function.  This is because the pointer cast is not
9620         needed.  All uses changed.
9621         * print.c (print_string, print_error_message): Avoid length recalc.
9623         Improve fix for macroexp crash with debugging (Bug#12118).
9624         * lisp.h (ASET) [ENABLE_CHECKING]: Pay attention to
9625         ARRAY_MARK_FLAG when checking subscripts, because ASET is
9626         not supposed to be invoked from the garbage collector.
9627         See Andreas Schwab in <http://bugs.gnu.org/12118#25>.
9628         (gc_aset): New function, which is like ASET but can be
9629         used in the garbage collector.
9630         (set_hash_key, set_hash_value, set_hash_next, set_hash_hash)
9631         (set_hash_index): Use it instead of ASET.
9633 2012-08-03  Eli Zaretskii  <eliz@gnu.org>
9635         Support symlinks on latest versions of MS-Windows.
9636         * w32.c: Include winioctl.h and aclapi.h.
9637         (is_symlink, chase_symlinks, enable_privilege, restore_privilege)
9638         (revert_to_self): Forward declarations of static functions.
9639         <static BOOL g_b_init_get_security_info>:
9640         <g_b_init_create_symbolic_link>: New static flags.
9641         (globals_of_w32): Initialize them to zero.
9642         (GetSecurityInfo_Proc, CreateSymbolicLink_Proc): New typedefs.
9643         (map_w32_filename): Improve commentary.  Simplify switch.
9644         (SYMBOLIC_LINK_FLAG_DIRECTORY): Define if not defined in system
9645         headers (most versions of MinGW w32api don't).
9646         (get_security_info, create_symbolic_link)
9647         (get_file_security_desc_by_handle, is_symlink, chase_symlinks):
9648         New functions.
9649         (sys_access, sys_chmod): Call 'chase_symlinks' to resolve symlinks
9650         in the argument file name.
9651         (sys_access): Call unc_volume_file_attributes only if
9652         GetFileAttributes fails with network-related error codes.
9653         (sys_rename): Diagnose renaming of a symlink when the user doesn't
9654         have the required privileges.
9655         (get_file_security_desc_by_name): Rename from
9656         get_file_security_desc.
9657         (stat_worker): New function, with most of the guts of 'stat', and
9658         with addition of handling of symlinks and support for 'lstat'.
9659         If possible, get file's attributes and security information by
9660         handle, not by name.  Produce S_IFLNK bit for symlinks, when
9661         called from 'lstat'.
9662         (stat, lstat): New functions, call 'stat_worker'.
9663         (symlink, readlink, careadlinkat): Rewritten to create and resolve
9664         symlinks when the underlying filesystem supports them.
9666 2012-08-02  Paul Eggert  <eggert@cs.ucla.edu>
9668         Fix macroexp crash on Windows with debugging (Bug#12118).
9669         * lisp.h (ASET) [ENABLE_CHECKING]: Ignore ARRAY_MARK_FLAG when
9670         checking subscripts; problem introduced with the recent
9671         "ASET (a, i, v)" rather than "AREF (a, i) = v" patch.
9672         (ARRAY_MARK_FLAG): Now a macro as well as a constant,
9673         since it's used in non-static inline functions now.
9675         * xfaces.c (face_at_buffer_position, face_for_overlay_string):
9676         Don't assume buffer size fits in 'int'.  Remove unused local.
9678         Use C99-style 'extern inline' if available.
9679         * buffer.h (BUFFER_INLINE):
9680         * category.h (CATEGORY_INLINE):
9681         * character.h (CHARACTER_INLINE):
9682         * charset.h (CHARSET_INLINE):
9683         * composite.h (COMPOSITE_INLINE):
9684         * dispextern.h (DISPEXTERN_INLINE):
9685         * lisp.h (LISP_INLINE):
9686         * systime.h (SYSTIME_INLINE):
9687         New macro, replacing 'static inline' in this header.
9688         * buffer.h, category.h, character.h, charset.h, composite.h:
9689         * dispextern.h, lisp.h, systime.h:
9690         Use INLINE_HEADER_BEGIN, INLINE_HEADER_END.
9691         * alloc.c (LISP_INLINE):
9692         * buffer.c (BUFFER_INLINE):
9693         * category.c (CATEGORY_INLINE):
9694         * character.c (CHARACTER_INLINE):
9695         * charset.c (CHARSET_INLINE):
9696         * composite.c (COMPOSITE_INLINE):
9697         * dispnew.c (DISPEXTERN_INLINE):
9698         * sysdep.c (SYSTIME_INLINE):
9699         Define to EXTERN_INLINE, so that the corresponding functions
9700         are compiled into code.
9701         * conf_post.h (INLINE, EXTERN_INLINE, INLINE_HEADER_BEGIN)
9702         (INLINE_HEADER_END): New macros.
9703         * lisp.h (PSEUDOVECTOR_FLAG): Now a macro as well as a constant,
9704         since it's used in non-static inline functions now.
9705         (VALMASK) [!USE_LSB_TAG]: Likewise.
9707 2012-08-02  Glenn Morris  <rgm@gnu.org>
9709         * s/: Remove empty directory.
9711         * s/ms-w32.h: Move to ../nt/inc.
9712         * makefile.w32-in (TAGS, TAGS-gmake, MS_W32_H):
9713         Update for new ms-w32.h location.
9715 2012-08-02  Paul Eggert  <eggert@cs.ucla.edu>
9717         Port to Solaris 8.
9718         * syswait.h (WRETCODE): Remove, consistently with ../configure.ac.
9720 2012-08-02  Glenn Morris  <rgm@gnu.org>
9722         * nsterm.m (ns_exec_path, ns_load_path): Use SEPCHAR rather than
9723         hard-coding the path separator.
9725 2012-08-01  Paul Eggert  <eggert@cs.ucla.edu>
9727         Use "ASET (a, i, v)" rather than "AREF (a, i) = v".
9728         This how ASET and AREF are supposed to work, and makes
9729         it easier to think about future improvements.  See
9730         <http://lists.gnu.org/archive/html/emacs-devel/2012-08/msg00026.html>.
9731         * charset.h (set_charset_attr): New function.
9732         All lvalue-style uses of CHARSET_DECODER etc. changed to use it.
9733         * lisp.h (ASET): Rewrite so as not to use AREF in an lvalue style.
9734         (aref_addr): New function.  All uses of &AREF(...) changed.
9735         (set_hash_key, set_hash_value, set_hash_next, set_hash_hash)
9736         (set_hash_index): New functions.  All lvalue-style uses of
9737         HASH_KEY etc. changed.
9738         * keyboard.c (set_prop): New function.  All lvalue-style uses
9739         of PROP changed.
9741 2012-08-01  Alp Aker  <alp.tekin.aker@gmail.com>
9743         * nsterm.m (ns_set_vertical_scroll_bar, ns_redeem_scroll_bar)
9744         (EmacsWindow-accessibilityAttributeValue, EmacsScroller-initFrame:)
9745         (EmacsScroller-dealloc): Adjust to use WVAR.  (Bug#12114)
9746         * nsfns.m (ns_set_name_as_filename): Likewise.
9747         * nsmenu.m (ns_update_menubar): Likewise.
9748         * nsselect.m (symbol_to_nsstring): Adjust to use SVAR.
9750 2012-08-01  Eli Zaretskii  <eliz@gnu.org>
9752         * .gdbinit (xcar, xcdr, xlist, xwindow, nextcons, xprintsym):
9753         Adapt to latest changes in field names of the corresponding Lisp
9754         objects.
9756         * xdisp.c (try_window_id): Use WVAR in IF_DEBUG code.
9758 2012-08-01  Glenn Morris  <rgm@gnu.org>
9760         * s/msdos.h: Remove file.
9761         * conf_post.h [MSDOS]: New section, moved from s/msdos.h.
9762         * Makefile.in (S_FILE): Remove.
9763         (config_h): Remove S_FILE.
9765 2012-08-01  Juanma Barranquero  <lekktu@gmail.com>
9767         * s/ms-w32.h (DEVICE_SEP, IS_DIRECTORY_SEP, IS_ANY_SEP):
9768         Remove; moved to nt/config.nt.
9770 2012-08-01  Dmitry Antipov  <dmantipov@yandex.ru>
9772         Use INTERNAL_FIELD for conses and overlays.
9773         * lisp.h (struct Lisp_Cons): Use INTERNAL_FIELD.
9774         Remove obsolete comment.
9775         (MVAR): New macro.
9776         (struct Lisp_Overlay): Use INTERNAL_FIELD.
9777         * alloc.c, buffer.c, buffer.h, fns.c: Adjust users.
9779 2012-08-01  Dmitry Antipov  <dmantipov@yandex.ru>
9781         Use INTERNAL_FIELD for symbols.
9782         * lisp.h (SVAR): New macro.  Adjust users.
9783         * alloc.c, bytecode.c, cmds.c, data.c, doc.c, eval.c:
9784         * fns.c, keyboard.c, lread.c, xterm.c: Users changed.
9786 2012-08-01  Dmitry Antipov  <dmantipov@yandex.ru>
9788         Use INTERNAL_FIELD for processes.
9789         * process.h (PVAR): New macro.  Adjust style.
9790         (struct Lisp_Process): Change Lisp_Object members to INTERNAL_FIELD.
9791         * print.c, process.c, sysdep.c, w32.c, xdisp.c: Users changed.
9793 2012-08-01  Dmitry Antipov  <dmantipov@yandex.ru>
9795         Use INTERNAL_FIELD for windows.
9796         * window.h (WVAR): New macro.
9797         (struct window): Change Lisp_Object members to INTERNAL_FIELD.
9798         * alloc.c, buffer.c, composite.c, dispextern.h, dispnew.c, editfns.c:
9799         * fileio.c, font.c, fontset.c, frame.c, frame.h, fringe.c, indent.c:
9800         * insdel.c, keyboard.c, keymap.c, lisp.h, minibuf.c, nsterm.m, print.c:
9801         * textprop.c, w32fns.c, w32menu.c, w32term.c, window.c, xdisp.c:
9802         * xfaces.c, xfns.c, xmenu.c, xterm.c: Users changed.
9804 2012-08-01  Paul Eggert  <eggert@cs.ucla.edu>
9806         * coding.h (CODING_ATTR_FLUSHING): Remove; unused and wouldn't work.
9808 2012-08-01  Glenn Morris  <rgm@gnu.org>
9810         * lisp.h (IS_DIRECTORY_SEP, IS_DEVICE_SEP, IS_ANY_SEP):
9811         Move to configure.ac.
9813 2012-08-01  Juanma Barranquero  <lekktu@gmail.com>
9815         * makefile.w32-in (CONFIG_H): Update dependencies.
9816         (CONF_POST_H): New macro.
9818         * s/ms-w32.h (SEPCHAR, NULL_DEVICE): Remove; moved to nt/config.nt.
9820 2012-07-31  Glenn Morris  <rgm@gnu.org>
9822         * Makefile.in (S_FILE): No longer set by configure.
9824         * conf_post.h (config_opsysfile): Move earlier, so that WINDOWSNT
9825         is available.
9826         (alloca.h) [WINDOWSNT]: Don't include it on MS Windows.
9828         * process.h (NULL_DEVICE):
9829         * emacs.c (SEPCHAR):
9830         * editfns.c (USER_FULL_NAME): Let configure set them.
9832         * s/README, s/template.h: Remove files.
9834         * conf_post.h [HPUX]: Undefine HAVE_RANDOM and HAVE_RINT.
9836         * conf_post.h (AMPERSAND_FULL_NAME, subprocesses):
9837         Move to configure.ac.
9839 2012-07-31  Eli Zaretskii  <eliz@gnu.org>
9841         * .gdbinit (xframe): Adapt to introduction of FVAR and the
9842         resulting renaming of 'struct frame' members.
9844         * w32menu.c (w32_menu_show): Revert bogus introduction of FVAR.
9846         * fontset.c (dump_fontset): Fix compilation with ENABLE_CHECKING
9847         after introduction of FVAR.
9849 2012-07-31  Jan Djärv  <jan.h.d@swipnet.se>
9851         * nsmenu.m (update_frame_tool_bar): Change key from NSObject* to id.
9853         * nsterm.m (ns_draw_fringe_bitmap, ns_dumpglyphs_image): Use drawInRect
9854         instead of compositeToPoint.
9855         (applicationShouldTerminate): Pass NS String literal to NSRunAlertPanel.
9857         * nsfns.m, nsmenu.m, nsterm.m: Adopt to struct frame/FVAR changes.
9859 2012-07-31  Dmitry Antipov  <dmantipov@yandex.ru>
9861         Generalize INTERNAL_FIELD between buffers, keyboards and frames.
9862         * lisp.h (INTERNAL_FIELD): New macro.
9863         * buffer.h (BUFFER_INTERNAL_FIELD): Remove.
9864         (BVAR): Change to use INTERNAL_FIELD.
9865         * keyboard.h (KBOARD_INTERNAL_FIELD): Likewise.
9866         (KVAR): Change to use INTERNAL_FIELD.
9867         * frame.h (FVAR): New macro.
9868         (struct frame): Use INTERNAL_FIELD for all Lisp_Object fields.
9869         * alloc.c, buffer.c, data.c, dispnew.c, dosfns.c, eval.c, frame.c:
9870         * fringe.c, gtkutil.c, minibuf.c, nsfns.m, nsterm.m, print.c:
9871         * term.c, w32fns.c, w32menu.c, w32term.c, window.c, window.h:
9872         * xdisp.c, xfaces.c, xfns.c, xmenu.c, xterm.c: Users changed.
9874 2012-07-31  Dmitry Antipov  <dmantipov@yandex.ru>
9876         Miscellaneous fixes for non-default X toolkits.
9877         * xfns.c (Fx_file_dialog): Change to SSDATA to avoid warnings.
9878         * xterm.c (x_frame_of_widget): Remove redundant prototype.
9879         Move under #ifdef USE_LUCID.
9880         (x_create_toolkit_scroll_bar): Adjust scroll_bar_name
9881         definition and usage to avoid warnings.
9883 2012-07-31  Jan Djärv  <jan.h.d@swipnet.se>
9885         * nsterm.m (openFiles): Fix previous checkin.
9887 2012-07-31  Paul Eggert  <eggert@cs.ucla.edu>
9889         * indent.c (compute_motion): Remove unused local.
9891 2012-07-31  Glenn Morris  <rgm@gnu.org>
9893         * s/usg5-4-common.h (wait3, WRETCODE): Let configure set them.
9895         * conf_post.h [USG5_4]:
9896         Move remaining contents of s/usg5-4-common.h here.
9897         * s/usg5-4-common.h: Remove file.
9899         * conf_post.h [IRIX6_5]: Move remaining contents of s/irix6-5.h here.
9900         * s/irix6-5.h: Remove file.
9902         * conf_post.h [DARWIN_OS]: Move remaining contents of s/darwin.h here.
9903         * s/darwin.h: Remove file.
9905         * conf_post.h [HPUX]: Move random, srandom here from s/hpux10-20.h.
9906         * s/hpux10-20.h: Remove file, which is now empty.
9908 2012-07-30  Glenn Morris  <rgm@gnu.org>
9910         * conf_post.h: New, split from configure.ac's AH_BOTTOM.
9911         * Makefile.in (config_h): Add conf_post.h.
9912         * makefile.w32-in (CONFIG_H): Add conf_post.h.
9914 2012-07-30  Jan Djärv  <jan.h.d@swipnet.se>
9916         * nsterm.m (ns_do_open_file): New variable.
9917         (ns_term_init): Set ns_do_open_file to YES after run returns.
9918         (openFile, openTempFile, openFileWithoutUI, openFiles):
9919         Open files only if ns_do_open_file.
9921 2012-07-30  Paul Eggert  <eggert@cs.ucla.edu>
9923         * lisp.h (SWITCH_ENUM_CAST): Remove.  All uses removed.
9924         This no-op macro hasn't been needed for many years.
9925         * src/regex.c (SWITCH_ENUM_CAST) [!emacs]: Likewise.
9927         Export DIRECTORY_SEP, TYPEMASK, VALMASK to GDB.
9928         * alloc.c (gdb_make_enums_visible) [USE_LSB_TAG]: Add lsb_bits.
9929         * lisp.h (enum lsb_bits) [USE_LSB_TAG]: New enum, for
9930         gdb_make_enums_visible.
9931         (TYPEMASK, VALMASK) [USE_LSB_TAGS]: Now enum constants, not macros.
9932         (DIRECTORY_SEP): Now a constant, not a macro.
9934 2012-07-30  Eli Zaretskii  <eliz@gnu.org>
9936         * w32fns.c (w32_wnd_proc): Pass w32_keyboard_codepage to
9937         w32_kbd_patch_key as the 2nd arg.  (Bug#12082)
9939         * w32term.c <w32_keyboard_codepage>: Renamed from
9940         keyboard_codepage and now external.  All users changed.
9942         * w32term.h: Add declaration of w32_keyboard_codepage.
9944         * w32inevt.c (w32_kbd_patch_key): Accept an additional argument --
9945         the codepage to translate keys to Unicode.  If this argument is
9946         -1, use the value returned by GetConsoleCP.  All callers changed.
9948 2012-07-30  Paul Eggert  <eggert@cs.ucla.edu>
9950         Update .PHONY listings in makefiles.
9951         * Makefile.in (.PHONY): Add all, mostlyclean, clean,
9952         bootstrap-clean, distclean, maintainer-clean, versioclean,
9953         extraclean, frc.
9955         * lisp.h (STRING_BYTES_BOUND): Cast entire result to ptrdiff_t.
9956         This is a bit clearer.  Fix some commentary typos.
9958 2012-07-30  Glenn Morris  <rgm@gnu.org>
9960         * s/netbsd.h: Let configure include signal.h if needed.
9961         Remove file, which is now empty.
9963         * s/usg5-4-common.h (_longjmp, _setjmp, TIOCSIGSEND):
9964         Let configure set them.
9965         * s/irix6-5.h (_longjmp, _setjmp, TIOCSIGSEND):
9966         No more need to undefine.
9968 2012-07-30  Andreas Schwab  <schwab@linux-m68k.org>
9970         * keymap.c (Fkey_description): Don't remove 0x80 bit from
9971         non-single-byte char when adding meta modifier.  (Bug#12090)
9973 2012-07-30  Dmitry Antipov  <dmantipov@yandex.ru>
9975         Convert safe_call to use variable number of arguments.
9976         * xdisp.c (safe_call): Convert to use varargs.  Adjust users.
9977         (safe_call2): Fix comment.
9978         * lisp.h (safe_call): Adjust prototype.
9979         * coding.c (encode_coding_object): Change to use safe_call2.
9980         * xfaces.c (merge_face_heights): Change to use safe_call1.
9982 2012-07-30  Glenn Morris  <rgm@gnu.org>
9984         * s/aix4-2.h (sigmask): No need to undefine it, since syssignal.h
9985         does that unconditionally.  Remove file, which is now empty.
9987         * s/freebsd.h, s/gnu-linux.h, s/sol2-6.h, s/unixware.h:
9988         Remove empty files.
9990 2012-07-30  Paul Eggert  <eggert@cs.ucla.edu>
9992         Export to GDB most of lisp.h's remaining object-like macros.
9993         * lisp.h (min, max): Move earlier, because they're used earlier now.
9994         (INTMASK, ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG, VALMASK)
9995         (CHAR_TABLE_STANDARD_SLOTS, CHARTAB_SIZE_BITS_0)
9996         (CHARTAB_SIZE_BITS_1, CHARTAB_SIZE_BITS_2, CHARTAB_SIZE_BITS_3)
9997         (DEFAULT_HASH_SIZE, COMPILED_ARGLIST, COMPILED_BYTECODE)
9998         (COMPILED_CONSTANTS, COMPILED_STACK_DEPTH, COMPILED_DOC_STRING)
9999         (COMPILED_INTERACTIVE, CHAR_ALT, CHAR_SUPER, CHAR_HYPER, CHAR_SHIFT)
10000         (CHAR_CTL, CHAR_META, CHAR_MODIFIER_MASK, CHARACTERBITS)
10001         (MANY, UNEVALLED, FLOAT_TO_STRING_BUFSIZE, MAX_ALLOCA):
10002         Now constants, for GDB.  They need not be macros.
10003         (MOST_POSITIVE_FIXNUM, MOST_NEGATIVE_FIXNUM, STRING_BYTES_BOUND):
10004         Now constants, for GDB, as well as macros, for static initializers.
10005         (CHAR_TABLE_STANDARD_SLOTS, CHAR_TABLE_EXTRA_SLOTS):
10006         Move to after the definition of struct Lisp_Char_Table,
10007         since the former now needs that type defined.
10008         (enum CHARTAB_SIZE_BITS, enum CHAR_TABLE_STANDARD_SLOTS)
10009         (enum DEFAULT_HASH_SIZE, enum Lisp_Compiled, enum char_bits)
10010         (enum maxargs, enum FLOAT_TO_STRING_BUFSIZE, enum MAX_ALLOCA):
10011         New enums, for gdb_make_enums_visible.
10012         (GLYPH_MODE_LINE_FACE): Remove; unused.
10013         * alloc.c (STRING_BYTES_MAX): Now a constant, not a macro.
10014         (gdb_make_enums_visible): Add enum CHARTAB_SIZE_BITS, enum
10015         CHAR_TABLE_STANDARD_SLOTS, enum char_bits, enum DEFAULT_HASH_SIZE,
10016         enum FLOAT_TO_STRING_BUFSIZE, enum Lisp_Bits, enum Lisp_Compiled,
10017         enum maxargs, enum MAX_ALLOCA.
10018         (ARRAY_MARK_FLAG_VAL, PSEUDOVECTOR_FLAG_VAL, VALMASK_VAL): Remove.
10019         (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG, VALMASK): Remove;
10020         no longer needed, now that they are done in lisp.h.
10022 2012-07-30  Dmitry Antipov  <dmantipov@yandex.ru>
10024         Cleanup string bytes checking.
10025         * alloc.c (GC_STRING_BYTES, CHECK_STRING_BYTES): Remove.  Convert
10026         all users to STRING_BYTES or string_bytes if GC_CHECK_STRING_BYTES.
10027         (check_string_bytes): Define to empty if not GC_CHECK_STRING_BYTES.
10028         (check_sblock, compact_small_strings): Simplify.
10030 2012-07-29  Paul Eggert  <eggert@cs.ucla.edu>
10032         * lisp.h (LISP_INT_TAG, LISP_INT1_TAG, LISP_STRING_TAG): Remove.
10033         These macros are confusing and no longer need to be defined, as
10034         the enum values now suffice.  All uses replaced with definiens.
10035         (Lisp_Int1, Lisp_String): Define directly; this is clearer.
10037 2012-07-29  Juanma Barranquero  <lekktu@gmail.com>
10039         * makefile.w32-in (LISP_H, $(BLD)/emacs.$(O), $(BLD)/w32inevt.$(O))
10040         ($(BLD)/w32console.$(O)): Update dependencies.
10042 2012-07-29  Dmitry Antipov  <dmantipov@yandex.ru>
10044         Remove HIDE_LISP_IMPLEMENTATION and cleanup cons free list check.
10045         * lisp.h (HIDE_LISP_IMPLEMENTATION): Remove as useless for a long
10046         time.  Adjust users.
10047         (CHECK_CONS_LIST): Remove.  Convert all users to check_cons_list.
10049 2012-07-29  Jan Djärv  <jan.h.d@swipnet.se>
10051         * lread.c (init_lread): Remove if-statement in ifdef HAVE_NS before
10052         setting sitelisp (Bug#12010).
10054 2012-07-29  Eli Zaretskii  <eliz@gnu.org>
10056         * w32heap.h (OS_9X): Rename from OS_WINDOWS_95.
10058         * w32heap.c (cache_system_info):
10059         * w32.c (sys_rename):
10060         * w32proc.c (find_child_console, sys_kill): All users changed.
10062 2012-07-29  Paul Eggert  <eggert@cs.ucla.edu>
10064         * alloc.c (Fgarbage_collect): Indent as per usual Emacs style.
10066 2012-07-29  Eli Zaretskii  <eliz@gnu.org>
10068         * makefile.w32-in (LISP_H): Add $(NT_INC)/stdalign.h.
10070 2012-07-29  Dmitry Antipov  <dmantipov@yandex.ru>
10072         Cleanup statistics calculation in Fgarbage_collect.
10073         * alloc.c (Fgarbage_collect): Rename t1 to meaningful start.
10074         Fix zombies percentage calculation.  Simplify elapsed time calculation.
10076 2012-07-29  Dmitry Antipov  <dmantipov@yandex.ru>
10078         Generalize marker debugging code under MARKER_DEBUG and use eassert.
10079         * insdel.c (CHECK_MARKERS, check_markers_debug_flag): Remove.
10080         (gap_left, gap_right, adjust_markers_for_delete, insert_1_both)
10081         (insert_from_string_1, insert_from_gap, insert_from_buffer_1)
10082         (replace_range, replace_range_2, del_range_2): Change to eassert.
10083         * marker.c (byte_char_debug_check): Adjust style.
10085 2012-07-29  Paul Eggert  <eggert@cs.ucla.edu>
10087         Don't use the abbreviation "win" to refer to Windows (Bug#10421).
10088         * regex.c (MAX_BUF_SIZE): Remove some incorrect and
10089         long-ago-commented-out code that talks about "WIN32".
10090         * w32heap.h (OS_WINDOWS_95): Rename from OS_WIN95.
10091         All uses changed.
10093 2012-07-28  Paul Eggert  <eggert@cs.ucla.edu>
10095         Use Gnulib stdalign module (Bug#9772, Bug#9960).
10096         * alloc.c (XMALLOC_BASE_ALIGNMENT, GC_POINTER_ALIGNMENT, pure_alloc):
10097         Simplify by using alignof.
10098         (pure_alloc) [! USE_LSB_TAG]: Don't over-align EMACS_INT values.
10099         * lisp.h: Include <stdalign.h>.
10100         (GCALIGNMENT): New macro and constant.
10101         (DECL_ALIGN): Remove.  All uses replaced by alignas (GCALIGNMENT).
10102         (USE_LSB_TAG): ifdef on alignas, not on DECL_ALIGN.
10103         (stdalign): New macro, if not already defined.
10105 2012-07-28  Eli Zaretskii  <eliz@gnu.org>
10107         Fix non-ASCII input in non-GUI frames on MS-Windows.  (Bug#12055)
10108         * w32inevt.c: Include w32inevt.h.
10109         (w32_read_console_input): New inline function, calls either
10110         ReadConsoleInputA or ReadConsoleInputW, depending on the value of
10111         w32_console_unicode_input.
10112         (fill_queue): Call w32_read_console_input instead of ReadConsoleInput.
10113         (w32_kbd_patch_key, key_event): Use the codepage returned by
10114         GetConsoleCP, rather than the ANSI codepage returned by GetLocaleInfo.
10115         (key_event): use uChar.UnicodeChar only if
10116         w32_console_unicode_input is non-zero.
10118         * w32console.c: Include w32heap.h.
10119         <w32_console_unicode_input>: New global variable.
10120         (initialize_w32_display): Set w32_console_unicode_input to 1 on NT
10121         family of Windows, zero otherwise.
10123         * w32inevt.h: Declare w32_console_unicode_input.
10125         * xdisp.c (init_iterator): Don't reference tip_frame in a build
10126         --without-x.  (Bug#11742)
10128 2012-07-27  Paul Eggert  <eggert@cs.ucla.edu>
10130         Adjust GDB to reflect pvec_type changes (Bug#12036).
10131         * .gdbinit (xvectype, xpr, xbacktrace): Adjust to reflect the
10132         2012-07-04 changes to pseudovector representation.
10133         Problem reported by Eli Zaretskii in <http://bugs.gnu.org/12036#30>.
10135 2012-07-27  Michael Albinus  <michael.albinus@gmx.de>
10137         * dbusbind.c (XD_DBUS_VALIDATE_BUS_ADDRESS): Canonicalize session
10138         bus address.
10139         (xd_close_bus, Fdbus_init_bus): Handle reference counter properly.
10141 2012-07-27  Eli Zaretskii  <eliz@gnu.org>
10143         * alloc.c (listn): Fix the order the arguments are consed onto the
10144         list.
10146         * lisp.h (enum constype): Use CONSTYPE_HEAP and CONSTYPE_PURE for
10147         enumeration constants, as PURE and HEAP are too general, and clash
10148         with other headers and sources, such as gmalloc.c and the
10149         MS-Windows system headers.  All users changed.
10151 2012-07-27  Dmitry Antipov  <dmantipov@yandex.ru>
10153         Revert last save_excursion_save and save_excursion_restore changes.
10154         * alloc.c, editfns.c, marker.c, lisp.h: Revert.
10155         Lots of crashes reported by Chong Yidong <cyd@gnu.org>.
10157 2012-07-27  Dmitry Antipov  <dmantipov@yandex.ru>
10159         Fix recently-introduced typos in Windows port.
10160         Reported by Martin Rudalics <rudalics@gmx.at>.
10161         * w32.c (init_environment): Replace comma with semicolon.
10162         * w32fns.c (syms_of_w32fns): Add missing parenthesis.
10164 2012-07-27  Paul Eggert  <eggert@cs.ucla.edu>
10166         Improve GDB symbol export (Bug#12036).
10167         * .gdbinit (xgetptr, xgetint, xgettype): Set $bugfix in different
10168         arms of an 'if', not using conditional expressions; otherwise GDB
10169         complains about the types in the unevaluated arm when the argument
10170         is an integer literal.
10171         (xgetint): Simplify expression.
10172         * alloc.c (gdb_make_enums_visible): New constant.  This ports to
10173         GCC 3.4.2 the export of symbols to GDB.  Problem reported by Eli
10174         Zaretskii in <http://bugs.gnu.org/12036#13>.
10175         * lisp.h (PUBLISH_TO_GDB): Remove.  All uses removed.  No longer
10176         needed now that we have gdb_make_enums_visible.
10177         (enum CHECK_LISP_OBJECT_TYPE, enum Lisp_Bits, enum More_Lisp_Bits)
10178         (enum enum_USE_LSB_TAG):
10179         New enum types, packaging up enums that need to be exported to GDB.
10181 2012-07-27  Dmitry Antipov  <dmantipov@yandex.ru>
10183         Utility function to make a list from specified amount of objects.
10184         * lisp.h (enum constype): New datatype.
10185         (listn): New prototype.
10186         * alloc.c (listn): New function.
10187         (Fmemory_use_count, syms_of_alloc): Use it.
10188         * buffer.c (syms_of_buffer): Likewise.
10189         * callint.c (syms_of_callint): Likewise.
10190         * charset.c (define_charset_internal): Likewise.
10191         * coding.c (syms_of_coding): Likewise.
10192         * keymap.c (syms_of_keymap): Likewise.
10193         * search.c (syms_of_search): Likewise.
10194         * syntax.c (syms_of_syntax): Likewise.
10195         * w32.c (init_environment): Likewise.
10196         * w32fns.c (Fw32_battery_status, syms_of_w32fns): Likewise.
10197         * xdisp.c (syms_of_xdisp): Likewise.
10198         * xfns.c (syms_of_xfns): Likewise.
10200 2012-07-27  Dmitry Antipov  <dmantipov@yandex.ru>
10202         Fast save_excursion_save and save_excursion_restore.
10203         * lisp.h (struct Lisp_Excursion): New data type.
10204         (PVEC_EXCURSION): New pseudovector type.
10205         (XEXCURSION, XSETEXCURSION, EXCURSIONP): Convenient macros
10206         to deal with it.  Adjust comments.
10207         (init_marker, attach_marker): New prototype.
10208         (unchain_marker): Adjust prototype.
10209         * marker.c (attach_marker): Change to global.
10210         (init_marker): New function.
10211         * alloc.c (Fmake_marker, build_marker): Use it.
10212         (build_marker): More easserts.
10213         (mark_object): Handle struct Lisp_Excursion.
10214         * editfns.c (save_excursion_save, save_excursion_restore):
10215         Reimplement to use struct Lisp_Excursion.  Add comments.
10217 2012-07-26  Paul Eggert  <eggert@cs.ucla.edu>
10219         Fix export of symbols to GDB (Bug#12036).
10220         * alloc.c (ARRAY_MARK_FLAG_VAL, PSEUDOVECTOR_FLAG_VAL, VALMASK_VAL)
10221         (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG, VALMASK): Move these here from
10222         emacs.c, as this is a more-suitable home.  Had this been done earlier
10223         the fix for 12036 would have avoided some of the problems noted in
10224         <http://bugs.gnu.org/12036#13> by Eli Zaretskii, as the scope problems
10225         would have been more obvious.
10226         * emacs.c: Do not include <verify.h>; no longer needed.
10227         (gdb_CHECK_LISP_OBJECT_TYPE, gdb_DATA_SEG_BITS)
10228         (gdb_GCTYPEBITS, gdb_USE_LSB_TAG)
10229         (CHECK_LISP_OBJECT_TYPE, DATA_SEG_BITS, GCTYPEBITS, USE_LSB_TAG):
10230         Remove; now done in lisp.h.
10231         * lisp.h (PUBLISH_TO_GDB): New macro.
10232         (GCTYPEBITS, USE_LSB_TAG, CHECK_LISP_OBJECT_TYPE, enum pvec_type)
10233         (DATA_SEG_BITS): Use it.
10234         (GCTYPEBITS, USE_LSB_TAG): Now also an enum, for GDB.
10235         (CHECK_LISP_OBJECT_TYPE, DATA_SEG_BITS): Now just an enum, for GDB.
10236         * mem-limits.h (EXCEEDS_LISP_PTR): Redo so that DATA_SEG_BITS need
10237         not be usable in #if.  This simplifies things.
10239 2012-07-26  Juanma Barranquero  <lekktu@gmail.com>
10241         * makefile.w32-in ($(BLD)/emacs.$(O)): Update dependencies.
10243 2012-07-26  Paul Eggert  <eggert@cs.ucla.edu>
10245         Simplify export of symbols to GDB (Bug#12036).
10246         * .gdbinit (xgetptr, xgetint, xgettype): Don't use "set $bugfix =
10247         $bugfix.i", as this doesn't work (with GDB 7.4.1, anyway).
10248         (xgetptr, xgetint, xgettype, xcoding, xcharset, xprintbytestr):
10249         Adjust to changes in lisp.h and emacs.c, by using
10250         CHECK_LISP_OBJECT_TYPE rather than gdb_use_struct, VALMASK instead
10251         of $valmask, DATA_SEG_BITS instead of gdb_data_seg_bits,
10252         INTTYPEBITS instead of gdb_gctypebits - 1, USE_LSB_TAG instead of
10253         gdb_use_lsb, (1 << GCTYPEBITS) - 1 instead of $tagmask, VALBITS
10254         instead of gdb_valbits.
10255         (xvectype, xvector, xpr, xprintstr, xbacktrace): Similarly, use
10256         PSEUDOVECTOR_FLAG instead of PVEC_FLAG, and ARRAY_MARK_FLAG
10257         instead of gdb_array_mark_flag.
10258         (xboolvector): Get size from $->size, not $->header.size.
10259         Use BOOL_VECTOR_BITS_PER_CHAR rather than mystery constants.
10260         (xreload, hook-run, hookpost-run): Remove.
10261         * emacs.c: Include <verify.h>.
10262         (gdb_use_lsb, gdb_use_struct, gdb_valbits, gdb_gctypebits)
10263         (gdb_data_seg_bits, PVEC_FLAG, gdb_array_mark_flag, gdb_pvec_type):
10264         Remove.
10265         (gdb_CHECK_LISP_OBJECT_TYPE, gdb_DATA_SEG_BITS, gdb_GCTYPEBITS)
10266         (gdb_USE_LSB_TAG): New enum constants.
10267         (CHECK_LISP_OBJECT_TYPE, DATA_SEG_BITS, GCTYPEBITS, USE_LSB_TAG):
10268         Also define these as enum constants, so they're visible to GDB.
10269         (ARRAY_MARK_FLAG_VAL, PSEUDOVECTOR_FLAG_VAL, VALMASK_VAL): New macros.
10270         (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG, VALMASK): Also define these
10271         as constants, so they're visible to GDB.
10272         * lisp.h (VALBITS, INTTYPEBITS, FIXNUM_BITS, PSEUDOVECTOR_SIZE_BITS)
10273         (PSEUDOVECTOR_SIZE_MASK, PVEC_TYPE_MASK, BOOL_VECTOR_BITS_PER_CHAR):
10274         Now enum constants, not macros, so they're visible to GDB.
10275         (CHECK_LISP_OBJECT_TYPE, DATA_SEG_BITS): Default to 0, as this is
10276         more convenient now.  All uses changed.
10277         (VALMASK) [USE_LSB_TAG]: Also define in this case.
10278         * mem-limits.h (EXCEEDS_LISP_PTR): Adjust to DATA_SEG_BITS change.
10280 2012-07-26  Dmitry Antipov  <dmantipov@yandex.ru>
10282         Explicitly free restriction data that are not needed anymore.
10283         * editfns.c (save_restriction_restore): Free restriction data.
10285 2012-07-26  Stefan Monnier  <monnier@iro.umontreal.ca>
10287         * eval.c (Fautoload_do_load): Rename from do_autoload, export to Lisp,
10288         add argument, tune behavior, and adjust all callers.
10290 2012-07-25  Paul Eggert  <eggert@cs.ucla.edu>
10292         Use typedef for EMACS_INT, EMACS_UINT.
10293         * lisp.h, s/ms-w32.h (EMACS_INT, EMACS_UINT): Use typedefs rather
10294         than macros.  This simplifies debugging in the usual case, since
10295         it lets GDB show addresses as 'EMACS_INT *' rather than 'long int *'
10296         and it allows expressions involving EMACS_INT casts.
10297         * .gdbinit (xreload): Simplify by using EMACS_INT cast.
10299 2012-07-25  Jan Djärv  <jan.h.d@swipnet.se>
10301         * nsterm.m (ns_read_socket): Return early if there is a modal
10302         window (Bug#12043).
10304 2012-07-25  Martin Rudalics  <rudalics@gmx.at>
10306         * frame.c (Fredirect_frame_focus): In doc-string don't mention
10307         that FOCUS-FRAME can be omitted.
10309 2012-07-25  Dmitry Antipov  <dmantipov@yandex.ru>
10311         Adjust buffer text indirection counters at the end of Fkill_buffer.
10312         * buffer.c (Fkill_buffer): Adjust indirection counters when the
10313         buffer is definitely dead.  This should really fix an issue reported
10314         by Christoph Scholtes again.  (Bug#12007).
10315         (init_buffer_once): Initialize indirection counters of
10316         buffer_defaults and buffer_local_symbols (for sanity and safety).
10318 2012-07-24  Eli Zaretskii  <eliz@gnu.org>
10320         * xdisp.c (init_iterator): Don't compute dimensions of truncation
10321         and continuation glyphs on tooltip frames, leave them at zero.
10322         Avoids continued lines in tooltips.  (Bug#11832)
10324 2012-07-24  Dmitry Antipov  <dmantipov@yandex.ru>
10326         Simplify copy_overlay.
10327         * buffer.c (copy_overlay): Simplify.  Use build_marker.
10328         * lisp.h (struct Lisp_Overlay): Restore comment with minor tweaks.
10330 2012-07-23  Eli Zaretskii  <eliz@gnu.org>
10332         * print.c (print_object): Don't crash when a frame's name is nil
10333         or invalid.  (Bug#12025)
10335         * window.c (decode_any_window): Disable CHECK_LIVE_FRAME test, as
10336         it signals an error when a tooltip frame is being created.
10338 2012-07-23  Dmitry Antipov  <dmantipov@yandex.ru>
10340         Cleanup miscellaneous objects allocation and initialization.
10341         * alloc.c (allocate_misc): Change to static.  Add argument to
10342         specify the subtype.  Adjust comment and users.
10343         (build_overlay): New function.
10344         * buffer.c (copy_overlays, Fmake_overlay): Use it.
10345         * lisp.h (struct Lisp_Overlay): Remove obsolete comment.
10346         (allocate_misc): Remove prototype.
10347         (build_overlay): Add prototype.
10349 2012-07-23  Dmitry Antipov  <dmantipov@yandex.ru>
10351         Swap buffer text indirection counters in Fbuffer_swap_text.
10352         * buffer.c (Fbuffer_swap_text): Swap indirections too.
10353         This avoids crash reported by Christoph Scholtes at
10354         http://lists.gnu.org/archive/html/bug-gnu-emacs/2012-07/msg00785.html.
10356 2012-07-22  Jan Djärv  <jan.h.d@swipnet.se>
10358         * nsmenu.m (Popdown_data): New struct.
10359         (pop_down_menu): p->pointer is Popdown_data.  Release the pool and
10360         free Popdown_data.
10361         (ns_popup_dialog): Use NSAutoreleasePool and pass it to pop_down_menu.
10362         (initWithContentRect): Make imgView and contentView non-static
10363         and autorelease them.  Also autorelease img and matrix (Bug#12005).
10364         (dealloc): Remove (Bug#12005).
10366 2012-07-22  Dmitry Antipov  <dmantipov@yandex.ru>
10368         Adjust consing_since_gc when objects are explicitly freed.
10369         * alloc.c (GC_DEFAULT_THRESHOLD): New macro.
10370         (Fgarbage_collect): Use it.  Change minimum to 1/10 of default.
10371         (free_cons, free_misc): Subtract object size from consing_since_gc.
10373 2012-07-22  Dmitry Antipov  <dmantipov@yandex.ru>
10375         Simplify and cleanup markers positioning code.
10376         * marker.c (attach_marker): More useful eassert.
10377         (live_buffer, set_marker_internal): New function.
10378         (Fset_marker, set_marker_restricted): Use set_marker_internal.
10379         (set_marker_both, set_marker_restricted_both): Use live_buffer.
10381 2012-07-22  Paul Eggert  <eggert@cs.ucla.edu>
10383         * buffer.h (struct buffer.indirections): Now ptrdiff_t, not int,
10384         as it's limited by the amount of memory, not by INT_MAX.
10386 2012-07-21  Eli Zaretskii  <eliz@gnu.org>
10388         * keyboard.c (keys_of_keyboard): Bind language-change to 'ignore'
10389         in special-event-map.  See the discussion at
10390         http://lists.gnu.org/archive/html/emacs-devel/2012-06/msg00417.html
10391         for the reasons.
10393         * w32menu.c (add_menu_item): Cast to ULONG_PTR when assigning
10394         info.dwItemData.  Fixes crashes on 64-bit Windows.
10395         Suggested by Fabrice Popineau <fabrice.popineau@supelec.fr>.
10397 2012-07-21  Jan Djärv  <jan.h.d@swipnet.se>
10399         * nsterm.m (accessibilityAttributeValue): New function.  (Bug#11134).
10400         (conversationIdentifier): Return value is NSInteger.
10401         * nsterm.m (accessibilityAttributeValue): Surround with NS_IMPL_COCOA.
10403 2012-07-21  Chong Yidong  <cyd@gnu.org>
10405         * window.c (decode_any_window): Signal an error if the window is
10406         on a dead frame (Bug#11984).
10408 2012-07-20  Dmitry Antipov  <dmantipov@yandex.ru>
10410         Add indirection counting to speed up Fkill_buffer.
10411         * buffer.h (struct buffer): New member.
10412         * buffer.c (Fget_buffer_create): Set indirection counter to 0.
10413         (Fmake_indirect_buffer): Set indirection counter to -1, increment
10414         base buffer indirection counter.
10415         (compact_buffer): If ENABLE_CHECKING, verify indirection counters.
10416         (Fkill_buffer): Adjust indirection counters as needed, don't walk
10417         through buffer list if indirection counter is 0.
10419 2012-07-20  Dmitry Antipov  <dmantipov@yandex.ru>
10421         Extend the value returned by Fgarbage_collect with heap statistics.
10422         * alloc.c (Qheap): New symbol.
10423         (syms_of_alloc): DEFSYM it.
10424         (Fgarbage_collect): If DOUG_LEA_MALLOC, add mallinfo data.
10425         (Fmemory_free): Remove.
10426         (syms_of_alloc): Don't defsubr it.
10427         * buffer.c (Fcompact_buffer): Remove.
10428         (syms_of_buffer): Don't defsubr it.
10430 2012-07-20  Dmitry Antipov  <dmantipov@yandex.ru>
10432         Make maybe_gc inline.
10433         Verify that inlining is always possible (GCC 4.7.1, -O3 -Winline).
10434         * lisp.h (consing_since_gc, gc_relative_threshold)
10435         (memory_full_cons_threshold): Revert declaration.
10436         (maybe_gc): Remove prototype, define as inline.
10437         * alloc.c: Remove old commented-out code.
10438         (consing_since_gc, gc_relative_threshold)
10439         (memory_full_cons_threshold): Revert to global.
10440         (maybe_gc): Remove.
10442 2012-07-20  Dmitry Antipov  <dmantipov@yandex.ru>
10444         Simple wrapper for make_unibyte_string, adjust font_open_by_name.
10445         * lisp.h (build_unibyte_string): New function.
10446         * dosfns.c, fileio.c, fns.c, ftfont.c, process.c:
10447         * sysdep.c, w32fns.c, xfns.c: Use it.
10448         * font.c (font_open_by_name): Change 2nd and 3rd args to the only arg
10449         of type Lisp_Object to avoid redundant calls to make_unibyte_string.
10450         Adjust users accordingly.
10451         * font.h (font_open_by_name): Adjust prototype.
10453 2012-07-20  Dmitry Antipov  <dmantipov@yandex.ru>
10455         Cleanup calls to Fgarbage_collect.
10456         * lisp.h (maybe_gc): New prototype.
10457         (consing_since_gc, gc_relative_threshold, memory_full_cons_threshold):
10458         Remove declarations.
10459         * alloc.c (maybe_gc): New function.
10460         (consing_since_gc, gc_relative_threshold, memory_full_cons_threshold):
10461         Make them static.
10462         * bytecode.c (MAYBE_GC): Use maybe_gc.
10463         * eval.c (eval_sub, Ffuncall): Likewise.
10464         * keyboard.c (read_char): Likewise.  Adjust call to maybe_gc
10465         to avoid dependency from auto-save feature.
10467 2012-07-19  Paul Eggert  <eggert@cs.ucla.edu>
10469         * buffer.h (FOR_EACH_BUFFER): Rename from 'for_each_buffer'.
10470         (FOR_EACH_PER_BUFFER_OBJECT_AT): Rename from
10471         'for_each_per_buffer_object_at'.
10472         All uses changed.  It's better to use upper-case for macros that
10473         cannot be implemented as functions, to give the reader a clue
10474         that they're special.
10476 2012-07-19  Stefan Monnier  <monnier@iro.umontreal.ca>
10478         * alloc.c (Fgarbage_collect): Tweak docstring.
10480 2012-07-19  Dmitry Antipov  <dmantipov@yandex.ru>
10482         Tweak the value returned from Fgarbage_collect again.
10483         * alloc.c (Fgarbage_collect): New return value, as confirmed in
10484         http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00418.html.
10485         Adjust documentation.
10486         (total_vector_bytes): Rename to total_vector_slots, adjust
10487         accounting.
10488         (total_free_vector_bytes): Rename to total_free_vector_slots,
10489         adjust accounting.
10490         (Qstring_bytes, Qvector_slots): New symbols.
10491         (syms_of_alloc): DEFSYM them.
10493 2012-07-19  Dmitry Antipov  <dmantipov@yandex.ru>
10495         Buffer compaction primitive which may be used from Lisp.
10496         * buffer.c (compact_buffer, Fcompact_buffer): New function.
10497         (syms_of_buffer): Register Fcompact_buffer.
10498         * alloc.c (Fgarbage_collect): Use compact_buffer.
10499         * buffer.h (compact_buffer): New prototype.
10500         (struct buffer_text): New member.
10502 2012-07-19  Dmitry Antipov  <dmantipov@yandex.ru>
10504         New macro to iterate over all buffers, miscellaneous cleanups.
10505         * lisp.h (all_buffers): Remove declaration.
10506         * buffer.h (all_buffers): Add declaration, with comment.
10507         (for_each_buffer): New macro.
10508         * alloc.c (Fgarbage_collect, mark_object): Use it.
10509         * buffer.c (Fkill_buffer, Fbuffer_swap_text, Fset_buffer_multibyte)
10510         (init_buffer): Likewise.
10511         * data.c (Fset_default): Likewise.
10512         * coding.c (code_conversion_restore): Remove redundant check
10513         for dead buffer.
10514         * buffer.c (Fkill_buffer): Likewise.  Remove obsolete comment.
10516 2012-07-18  Andreas Schwab  <schwab@linux-m68k.org>
10518         Fix bug that created negative-length intervals.
10519         * intervals.c (merge_interval_right, merge_interval_left):
10520         Do not zero out this interval if it is absorbed by its children,
10521         as this interval's total length doesn't change in that case.  See
10522         <http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00403.html>.
10524 2012-07-18  Paul Eggert  <eggert@cs.ucla.edu>
10526         * alloc.c (Fmake_bool_vector): Fix off-by-8 bug
10527         when invoking (make-bool-vector N t) and N is a positive
10528         multiple of 8 -- the last 8 bits were mistakenly cleared.
10530         Remove some struct layout assumptions in bool vectors.
10531         * alloc.c (bool_header_size): New constant.
10532         (header_size, word_size): Move earlier, as they're now used earlier.
10533         Use 'word_size' in a few more places, where it's appropriate.
10534         (Fmake_bool_vector, sweep_vectors): Don't assume that there is no
10535         padding before the data member of a bool vector.
10536         (sweep_vectors): Use PSEUDOVECTOR_TYPEP, in an eassert, rather
10537         than doing the check by hand with an abort ().
10539 2012-07-18  Stefan Monnier  <monnier@iro.umontreal.ca>
10541         * eval.c (Fdefvar): Don't check constants since we only set the var if
10542         it's not yet defined anyway (bug#11904).
10544         * lisp.h (last_undo_boundary): Declare new var.
10545         * keyboard.c (command_loop_1): Set it.
10546         * cmds.c (Fself_insert_command): Use it to only remove boundaries that
10547         were auto-added by the command loop (bug#11774).
10549 2012-07-18  Andreas Schwab  <schwab@linux-m68k.org>
10551         * w32font.c (Qsymbol): Remove local definition.
10552         (syms_of_w32font): Don't DEFSYM it.
10554 2012-07-18  Dmitry Antipov  <dmantipov@yandex.ru>
10556         Fix sweep_vectors to handle large bool vectors correctly.
10557         * alloc.c (sweep_vectors): Account total_vector_bytes for
10558         bool vectors larger than VBLOCK_BYTES_MAX.
10560 2012-07-18  Chong Yidong  <cyd@gnu.org>
10562         * frame.c (x_set_frame_parameters): Revert bogus change introduced
10563         in 2012-05-25 commit by Paul Eggert (Bug#11738).
10565 2012-07-18  Dmitry Antipov  <dmantipov@yandex.ru>
10567         Return more descriptive data from Fgarbage_collect.
10568         Suggested by Stefan Monnier in
10569         http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00369.html.
10570         * alloc.c (bounded_number): New function.
10571         (total_buffers, total_vectors): New variable.
10572         (total_string_size): Rename to total_string_bytes, adjust users.
10573         (total_vector_size): Rename to total_vector_bytes, adjust users.
10574         (sweep_vectors): Account total_vectors and total_vector_bytes.
10575         (Fgarbage_collect): New return value.  Adjust documentation.
10576         (gc_sweep): Account total_buffers.
10577         (Fmemory_free, Fmemory_use_counts): Use bounded_number.
10578         (VECTOR_SIZE): Remove.
10579         * data.c (Qfloat, Qvector, Qsymbol, Qstring, Qcons): Make global.
10580         (Qinterval, Qmisc): New symbols.
10581         (syms_of_data): Initialize them.
10582         * lisp.h (Qinterval, Qsymbol, Qstring, Qmisc, Qvector, Qfloat)
10583         (Qcons, Qbuffer): New declarations.
10585 2012-07-17  Paul Eggert  <eggert@cs.ucla.edu>
10587         * alloc.c (Fmemory_free): Account for memory-free's own storage.
10588         Round up, not down.  Improve doc.
10590 2012-07-17  Dmitry Antipov  <dmantipov@yandex.ru>
10592         Restore old code in allocate_string_data to avoid Faset breakage.
10593         Reported by Julien Danjou <julien@danjou.info> in
10594         http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00371.html.
10595         * alloc.c (allocate_string_data): Restore old code with minor
10596         adjustments, fix comment to explain this subtle issue.
10598 2012-07-17  Eli Zaretskii  <eliz@gnu.org>
10600         Remove FILE_SYSTEM_CASE.
10601         * s/msdos.h (FILE_SYSTEM_CASE): Don't define.
10603         * fileio.c (FILE_SYSTEM_CASE): Don't define.
10604         (Ffile_name_directory, Fexpand_file_name): Don't use FILE_SYSTEM_CASE.
10605         Fixes problems on MS-DOS with Vtemp_file_name_pattern when
10606         call-process-region passes it through expand-file-name.
10608         * dired.c (file_name_completion): Don't use FILE_SYSTEM_CASE.
10610 2012-07-17  Andreas Schwab  <schwab@linux-m68k.org>
10612         Fix crash when creating indirect buffer (Bug#11917)
10613         * buffer.c (buffer_lisp_local_variables): Add argument CLONE.
10614         Don't handle unbound variables specially if non-zero.
10615         (Fbuffer_local_variables): Pass zero.
10616         (clone_per_buffer_values): Pass non-zero.
10618 2012-07-17  Andreas Schwab  <schwab@linux-m68k.org>
10620         * gnutls.c (emacs_gnutls_handshake): Revert last change.  Add QUIT
10621         to make the loop interruptible.
10623 2012-07-17  Andreas Schwab  <schwab@linux-m68k.org>
10625         * gnutls.c (emacs_gnutls_handshake): Only retry if
10626         GNUTLS_E_INTERRUPTED.
10628 2012-07-17  Dmitry Antipov  <dmantipov@yandex.ru>
10630         Cleanup and convert miscellaneous checks to eassert.
10631         * alloc.c (mark_interval): Fix comment, partially rephrase
10632         old comment from intervals.h (see below).
10633         * intervals.c (find_interval, adjust_intervals_for_insertion)
10634         (delete_interval, adjust_intervals_for_deletion)
10635         (graft_intervals_into_buffer, temp_set_point_both, copy_intervals):
10636         Convert to eassert.
10637         (adjust_intervals_for_insertion, make_new_interval):
10638         Remove obsolete and unused code.
10639         * intervals.h (struct interval): Remove obsolete comment.
10640         * textprotp.c (erase_properties): Remove unused code.
10641         (Fadd_text_properties, set_text_properties_1, Fremove_text_properties)
10642         (Fremove_list_of_text_properties): Convert to eassert.
10644 2012-07-17  Chong Yidong  <cyd@gnu.org>
10646         * editfns.c (Finsert_char): Doc fix.
10648 2012-07-17  Dmitry Antipov  <dmantipov@yandex.ru>
10650         Fix previous change to make Fmemory_free always accurate.
10651         * alloc.c (make_interval): Update total_free_intervals.
10652         (make_float): Likewise for total_free_floats.
10653         (free_cons, Fcons): Likewise for total_free_conses.
10654         (SETUP_ON_FREE_LIST, allocate_vector_from_block):
10655         Likewise for total_free_vector_bytes.
10656         (Fmake_symbol): Likewise for total_free_symbols.
10657         (bytes_free): Remove.
10659 2012-07-17  Dmitry Antipov  <dmantipov@yandex.ru>
10661         Simple free memory accounting feature.
10662         * alloc.c (bytes_free, total_free_vector_bytes): New variable.
10663         (sweep_vectors): Accumulate size of free vectors.
10664         (Fgarbage_collect): Setup bytes_free.
10665         (Fmemory_free): New function.
10666         (syms_of_alloc): Register it.
10668 2012-07-17  Dmitry Antipov  <dmantipov@yandex.ru>
10670         Cleanup overlays checking.
10671         * buffer.h (OVERLAY_VALID): Remove as useless synonym of OVERLAYP.
10672         * buffer.c (overlay_touches_p, recenter_overlay_lists): Change to
10673         eassert and OVERLAYP.
10674         (sort_overlays): Change to use OVERLAYP.
10676 2012-07-16  René Kyllingstad  <Rene@Kyllingstad.com>  (tiny change)
10678         * editfns.c (Finsert_char): Make it interactive, and make the
10679         second arg optional.  Copy interactive spec and docstring from
10680         ucs-insert.
10682 2012-07-17  Paul Eggert  <eggert@cs.ucla.edu>
10684         * floatfns.c (Fabs): Do not wrap fabs inside IN_FLOAT (Bug#11913).
10685         Unlike the other wrapped functions, fabs has an unspecified
10686         effect on errno.
10688 2012-07-16  Jan Djärv  <jan.h.d@swipnet.se>
10690         * nsterm.m (keyDown): Interpret flags without left/right bits
10691         as the left key (Bug#11670).
10693 2012-07-16  Dmitry Antipov  <dmantipov@yandex.ru>
10695         Remove empty and useless init functions.
10696         * lisp.h (init_character_once, init_fns, init_image)
10697         (init_filelock, init_sound): Remove prototype.
10698         * character.c (init_character_once): Remove.
10699         * filelock.c (init_filelock): Likewise.
10700         * fns.c (init_fns): Likewise.
10701         * image.c (init_image): Likewise.
10702         * sound.c (init_sound): Likewise.
10703         * emacs.c (main): Adjust accordingly.
10705 2012-07-16  Dmitry Antipov  <dmantipov@yandex.ru>
10707         * gtkutil.h: Tiny cleanups.
10708         (use_old_gtk_file_dialog): Remove useless declaration.
10709         (xg_uses_old_file_dialog): Add suggested const attribute.
10711 2012-07-15  Eli Zaretskii  <eliz@gnu.org>
10713         * bidi.c (MAX_STRONG_CHAR_SEARCH): New macro.
10714         (bidi_paragraph_init): Use it to limit search forward for a strong
10715         directional character in abnormally large paragraphs full of
10716         neutral or weak characters.  (Bug#11943)
10718 2012-07-15  Stefano Facchini  <stefano.facchini@gmail.com>  (tiny change)
10720         * gtkutil.c (xg_create_tool_bar): Apply "primary-toolbar" style to
10721         the toolbar (Bug#9451).
10722         (xg_make_tool_item): Give the widget event box a transparent
10723         background.
10725 2012-07-15  Dmitry Antipov  <dmantipov@yandex.ru>
10727         Cleanup basic allocation variables and functions.
10728         * alloc.c (ignore_warnings, init_intervals, init_float)
10729         (init_cons, init_symbol, init_marker): Remove.
10730         (interval_block_index): Initialize to INTERVAL_BLOCK_SIZE.
10731         (float_block_index): Initialize to FLOAT_BLOCK_SIZE.
10732         (cons_block_index): Initialize to CONS_BLOCK_SIZE.
10733         (symbol_block_size): Initialize to SYMBOL_BLOCK_SIZE.
10734         (marker_block_index): Initialize to MARKER_BLOCK_SIZE.
10735         (staticidx, init_alloc_once, init_strings, free_ablock):
10736         Remove redundant initialization.
10737         * fns.c (init_weak_hash_tables): Remove.
10738         * lisp.h (init_weak_hash_tables): Remove prototype.
10740 2012-07-15  Dmitry Antipov  <dmantipov@yandex.ru>
10742         Use zero_vector where appropriate.
10743         * alloc.c (zero_vector): Define as Lisp_Object.  Adjust users
10744         accordingly.
10745         * lisp.h (zero_vector): New declaration.
10746         * font.c (null_vector): Remove.
10747         (syms_of_font): Remove initialization and staticpro.
10748         (font_list_entities, font_find_for_lface): Change to use zero_vector.
10749         * keymap.c (Faccessible_keymaps): Likewise.
10751 2012-07-15  Leo Liu  <sdl.web@gmail.com>
10753         * fringe.c: Fix typo in comments.
10755 2012-07-14  Leo Liu  <sdl.web@gmail.com>
10757         * fringe.c: Add a new bitmap exclamation-mark.
10759 2012-07-14  Eli Zaretskii  <eliz@gnu.org>
10761         * gmalloc.c (GMALLOC_INHIBIT_VALLOC): Don't reference.
10763         * s/msdos.h (BSD_SYSTEM, DATA_START, GC_SETJMP_WORKS, HAVE_MOUSE)
10764         (HAVE_MENUS): Don't define, defined by editing config.in with
10765         msdos/sed2v2.inp.
10766         (GMALLOC_INHIBIT_VALLOC): Don't define.
10767         (MODE_LINE_BINARY_TEXT): Remove, not used anymore.
10769 2012-07-14  Juanma Barranquero  <lekktu@gmail.com>
10771         * s/ms-w32.h (GC_SETJMP_WORKS, GC_MARK_STACK): Set in nt/config.nt.
10773 2012-07-14  Glenn Morris  <rgm@gnu.org>
10775         * s/aix4-2.h, s/freebsd.h, s/gnu-linux.h, s/hpux10-20.h:
10776         * s/irix6-5.h, s/netbsd.h, s/sol2-6.h, s/unixware.h:
10777         Let configure set GC_SETJMP_WORKS, GC_MARK_STACK.
10779 2012-07-13  Glenn Morris  <rgm@gnu.org>
10781         * s/gnu-linux.h (GC_MARK_SECONDARY_STACK): Let configure set it.
10783         * s/usg5-4-common.h (SETUP_SLAVE_PTY): Let configure set it.
10784         * s/irix6-5.h (SETUP_SLAVE_PTY): No more need to unset it.
10786 2012-07-13  Jan Djärv  <jan.h.d@swipnet.se>
10788         * nsterm.m (uRect): Only define if NS_IMPL_GNUSTEP.
10789         (x_free_frame_resources): Pass x_free_frame_resources to NSTRACE.
10790         (ns_lisp_to_color, ns_string_to_lispmod, ns_term_init)
10791         (ns_term_shutdown, requestService, initFrameFromEmacs): Use SSDATA
10792         where appropriate.
10793         (ns_exec_path, ns_load_path, changeFont): Put () around assignment used
10794         as boolean expression.
10795         (x_set_window_size): Remove unused variable toolbar.
10796         (ns_get_color_default, ns_mod_to_lisp): Remove.
10797         (ns_mouse_position): Remove unused variables xchar and ychar.
10798         (ns_compute_glyph_string_overhangs): Remove unused variable face.
10799         (ns_set_vertical_scroll_bar): Remove unused variable count.
10800         (ns_delete_terminal): Remove unused variable i.
10801         (ns_term_init): Remove unused variables r, g and b.
10802         (mouseDown): Remove unused variable window.
10803         (windowDidResize): Move definition of theWindow inside NS_IMPL_GNUSTEP.
10804         (initFrameFromEmacs): Remove unused variable vbextra.
10805         (mouseEntered): Remove unused variables p and dpyinfo.
10806         (mouseExited): Remove unused variables p and r.
10807         (ns_define_frame_cursor, ns_clear_frame_area)
10808         (ns_draw_window_cursor, ns_initialize_display_info): Make static.
10809         (menuDown): Assign [sender tag] to variable and cast the variable.
10811         * nsterm.h (menuDown): Add id as type to argument sender.
10812         (ns_display_info_for_name): Add Lisp_Object argument.
10813         (ns_term_init): Add Lisp_Object argument.
10814         (ns_map_event_to_object): Add void argument.
10815         (ns_string_from_pasteboard, ns_string_to_pasteboard): Add correct
10816         prototype with arguments and only declare if __OBJC__.
10817         (nxatoms_of_nsselect): Add void argument.
10818         (ns_lisp_to_cursor_type): Add Lisp_Object argument.
10819         (ns_alloc_autorelease_pool): Add void argument.
10820         (ns_release_autorelease_pool): Add void* argument.
10821         (ns_get_defaults_value): Add const char* argument.
10823         * nsmenu.m (ns_update_menubar, ns_menu_show, process_dialog)
10824         (initFromContents): Use SSDATA where appropriate.
10825         (ns_update_menubar): Add braces to ambigous if-else.
10826         (initWithTitle): Put () around assignment in if statement.
10827         (ns_menu_show): Remove unused variables window and keymap.
10828         (update_frame_tool_bar): Remove unused variable selected_p.
10829         (initWithContentRect): Remove unused variable this_cmd_name.
10831         * nsimage.m (ns_load_image, allocInitFromFile): Use SSDATA where
10832         appropriate.
10833         (setXBMColor): Remove unused variable len.
10834         (setPixmapData): Put () around assignment in loop statement.
10836         * nsfont.m (ns_get_family, ns_lang_to_script, ns_otf_to_script)
10837         (ns_registry_to_script, ns_get_req_script, nsfont_open): Use SSDATA
10838         where appropriate.
10839         (ns_get_covering_families, ns_findfonts, nsfont_list_family): Put ()
10840         around assignment in loop statement.
10841         (nsfont_open): Remove unused variable i.
10842         (nsfont_open): Remove unused variable len.
10843         (nsfont_draw): Remove unused variable cs.
10845         * nsfns.m (x_set_icon_name, ns_set_name_internal)
10846         (ns_set_name_as_filename, ns_implicitly_set_icon_type)
10847         (x_set_icon_type, ns_lisp_to_cursor_type, Fns_read_file_name)
10848         (Fns_get_resource, Fns_set_resource, Fx_open_connection)
10849         (Fns_font_name, Fns_perform_service)
10850         (Fns_convert_utf8_nfd_to_nfc, ns_do_applescript)
10851         (Fns_do_applescript, Fx_show_tip): Use SSDATA where appropriate.
10852         (ns_set_name): Remove unused variable view.
10853         (x_set_menu_bar_lines): Remove unused variable olines.
10854         (x_set_tool_bar_lines): Remove unused variable root_window.
10855         (Fns_list_colors): Put () around assignment in while statement.
10856         (Fns_perform_service): Remove unused variable len.
10857         (Fns_display_usable_bounds): Remove unused variable top.
10858         (syms_of_nsfns): Remove unused variable i.
10860         * nsmenu.m (ns_update_menubar): Exchange place of argument 2 and 3 to
10861         memcpy (Bug#11907).
10863 2012-07-13  Kalle Kankare  <kalle.kankare@iki.fi>  (tiny change)
10865         * image.c (Fimagemagick_types): Initialize ex with GetExceptionInfo
10866         and free it with DestroyExceptionInfo (Bug#11558).
10868 2012-07-13  Juanma Barranquero  <lekktu@gmail.com>
10870         * s/ms-w32.h (FIRST_PTY_LETTER, HAVE_SOCKETS): Move to nt/config.nt.
10871         (HAVE_ATTRIBUTE_ALIGNED, HAVE_C99_STRTOLD, HAVE___BUILTIN_UNWIND_INIT):
10872         Set here, not in nt/config.nt.
10874 2012-07-13  Eli Zaretskii  <eliz@gnu.org>
10876         * xdisp.c (move_it_in_display_line_to): On GUI terminals, allow
10877         cursor overflow into the last glyph on display line when the right
10878         fringe is off.  (Bug#11832)
10880 2012-07-13  Paul Eggert  <eggert@cs.ucla.edu>
10882         * xdisp.c (produce_special_glyphs): Now static.
10883         * dispextern.h (produce_special_glyphs): Remove decl.
10885 2012-07-13  Glenn Morris  <rgm@gnu.org>
10887         * s/bsd-common.h, s/cygwin.h: Remove empty files.
10888         * s/freebsd.h, s/netbsd.h: Do not include bsd-common.h.
10890         * s/usg5-4-common.h (USG, USG5):
10891         * s/template.h (USG5, USG, HPUX, BSD4_2, BSD_SYSTEM):
10892         * s/sol2-6.h (SOLARIS2):
10893         * s/irix6-5.h (IRIX6_5):
10894         * s/hpux10-20.h (USG, USG5, HPUX):
10895         * s/gnu-linux.h (USG, GNU_LINUX):
10896         * s/freebsd.h (BSD_SYSTEM):
10897         * s/darwin.h (BSD4_2, BSD_SYSTEM, DARWIN_OS):
10898         * s/cygwin.h (CYGWIN):
10899         * s/bsd-common.h (BSD_SYSTEM, BSD4_2):
10900         * s/aix4-2.h (USG, USG5, _AIX): Move "system type" macros to configure.
10902 2012-07-13  BT Templeton  <bpt@hcoop.net>  (tiny change)
10904         * nsfont.m (ns_charset_covers): Don't abort if no bitmap (Bug#11853).
10906 2012-07-13  Glenn Morris  <rgm@gnu.org>
10908         * s/usg5-4-common.h (NSIG_MINIMUM): Let configure set it.
10910         * s/gnu-linux.h, s/irix6-5.h: Let configure set ULIMIT_BREAK_VALUE.
10912         * process.c (init_process_emacs): Replace MIN_PTY_KERNEL_VERSION.
10913         * s/darwin.h (MIN_PTY_KERNEL_VERSION): Remove single-use macro.
10915 2012-07-12  Glenn Morris  <rgm@gnu.org>
10917         * s/darwin.h (SYSTEM_PURESIZE_EXTRA): Move to configure.
10919         * process.c (init_process_emacs): Rename from init_process.
10920         The old name is also the name of a Mach system call.
10921         * lisp.h, emacs.c: Update for this name change.
10922         * nsgui.h, sysselect.h, s/darwin.h: Remove workaround that is no
10923         longer needed.
10925 2012-07-12  Eli Zaretskii  <eliz@gnu.org>
10927         * xdisp.c (insert_left_trunc_glyphs): Fix incorrect size in
10928         memmove call that removes glyphs covered by the left truncation
10929         glyph.  Improve commentary.
10930         (display_line): Fix display of continuation glyphs on GUI frames
10931         when the right fringe is turned off and variable-size fonts are
10932         used in the window.  Move the code that appends a stretch glyph to
10933         produce_special_glyphs, so that it could be used for truncation
10934         and continuation glyphs alike.
10935         (produce_special_glyphs) [HAVE_WINDOW_SYSTEM]: Produce a stretch
10936         glyph of a suitably computed width, to align the special glyphs at
10937         the window margin.  Code moved from display_line.  (Bug#11832)
10939 2012-07-12  Glenn Morris  <rgm@gnu.org>
10941         * s/aix4-2.h, s/hpux10-20.h: Let configure set NO_EDITRES.
10943         * s/gnu-linux.h, s/hpux10-20.h:
10944         Do not unconditionally define HAVE_XRMSETDATABASE.
10946         * s/gnu-linux.h (UNIX98_PTYS): Let configure set it.
10948 2012-07-12  Paul Eggert  <eggert@cs.ucla.edu>
10950         Fix typos that broke OS X build.
10951         Reported by Randal L. Schwartz in
10952         <http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00225.html>.
10953         * nsterm.m (ns_timeout): Add missing local decl.
10954         (ns_get_color): snprintf -> sprintf, to fix typo.
10956 2012-07-12  Glenn Morris  <rgm@gnu.org>
10958         * src/s/aix4-2.h, src/s/cygwin.h, src/s/darwin.h:
10959         * src/s/gnu-linux.h, src/s/hpux10-20.h, src/s/irix6-5.h:
10960         * src/s/sol2-6.h, src/s/unixware.h, src/s/usg5-4-common.h:
10961         Move PTY_NAME_SPRINTF, PTY_TTY_NAME_SPRINTF to configure.
10963         * s/cygwin.h, s/darwin.h, s/gnu-linux.h, s/irix6-5.h:
10964         Move PTY_OPEN to configure.
10966         * s/aix4-2.h, s/bsd-common.h, s/cygwin.h, s/darwin.h:
10967         * s/gnu-linux.h, s/hpux10-20.h, s/irix6-5.h, s/template.h:
10968         * s/usg5-4-common.h: Move FIRST_PTY_LETTER, PTY_ITERATION to configure.
10970 2012-07-12  Dmitry Antipov  <dmantipov@yandex.ru>
10972         Use empty_unibyte_string where applicable.
10973         * keyboard.c (parse_tool_bar_item): Use empty_unibyte_string.
10974         * lread.c (read1): Likewise.
10975         * xsettings.c (syms_of_xsettings): Likewise.
10977 2012-07-12  Glenn Morris  <rgm@gnu.org>
10979         * s/cygwin.h (G_SLICE_ALWAYS_MALLOC):
10980         * s/freebsd.h (BROKEN_PTY_READ_AFTER_EAGAIN):
10981         * s/irix6-5.h (SETPGRP_RELEASES_CTTY, PREFER_VSUSP):
10982         * s/hpux10-20.h (RUN_TIME_REMAP):
10983         * s/bsd-common.h (TABDLY): Move to configure.
10985         * s/hpux10-20.h, s/sol2-6.h: Move XOS_NEEDS_TIME_H to configure.
10987         * s/bsd-common.h, s/darwin.h: Move TAB3 to configure.
10989         * s/aix4-2.h (BROKEN_FIONREAD, BROKEN_SIGAIO, BROKEN_SIGPTY)
10990         (BROKEN_SIGPOLL, BROKEN_GET_CURRENT_DIR_NAME): Let configure set them.
10992         * s/darwin.h (NO_ABORT, NO_MATHERR): Let configure set them.
10994         * s/bsd-common.h, s/cygwin.h, s/gnu-linux.h, s/irix6-5.h:
10995         * s/template.h: Move NARROWPROTO to configure.
10997 2012-07-11  Glenn Morris  <rgm@gnu.org>
10999         * s/gnu-linux.h, s/sol2-6.h: No longer define POSIX,
11000         unused since 2011-01-17 change to systty.h.
11002         * s/aix4-2.h, s/bsd-common.h, s/cygwin.h, s/darwin.h, s/gnu-linux.h:
11003         * s/hpux10-20.h, s/template.h, s/usg5-4-common.h:
11004         Move HAVE_PTYS and HAVE_SOCKETS to configure.
11006 2012-07-11  Paul Eggert  <eggert@cs.ucla.edu>
11008         * s/sol2-6.h (HAVE_LIBKSTAT): Remove.  (Bug#11914)
11010 2012-07-11  Glenn Morris  <rgm@gnu.org>
11012         * s/darwin.h, s/gnu-linux.h, s/template.h:
11013         Move INTERRUPT_INPUT to configure.
11015 2012-07-11  Dmitry Antipov  <dmantipov@yandex.ru>
11017         Minor adjustments to interning code.
11018         * lisp.h (intern, intern_c_string): Redefine as static inline
11019         wrappers for intern_1 and intern_c_string_1, respectively.
11020         (intern_1, intern_c_string_1): Rename prototypes.
11021         * lread.c (intern_1, intern_c_string_1, oblookup):
11022         Simplify Vobarray checking.
11023         * font.c (font_intern_prop): Likewise.  Adjust comment.
11024         * w32font.c (intern_font_name): Likewise.
11026 2012-07-11  Andreas Schwab  <schwab@linux-m68k.org>
11028         * gnutls.c (Fgnutls_boot): Properly parse :keylist argument.
11030         * coding.c (Fdefine_coding_system_internal): Use XCAR/XCDR instead
11031         of Fcar/Fcdr if possible.
11032         * font.c (check_otf_features): Likewise.
11033         * fontset.c (Fnew_fontset): Likewise.
11034         * gnutls.c (Fgnutls_boot): Likewise.
11035         * minibuf.c (read_minibuf): Likewise.
11036         * msdos.c (IT_set_frame_parameters): Likewise.
11037         * xmenu.c (Fx_popup_dialog): Likewise.
11038         * w32menu.c (Fx_popup_dialog): Likewise.
11040 2012-07-11  Glenn Morris  <rgm@gnu.org>
11042         * s/bsd-common.h, s/cygwin.h: No need to undefine INTERRUPT_INPUT,
11043         since nothing has defined it on these platforms.
11045         * s/aix4-2.h, s/bsd-common.h, s/cygwin.h, s/gnu-linux.h:
11046         * s/irix6-5.h: Move SIGNALS_VIA_CHARACTERS to configure.
11048         * s/aix4-2.h, s/bsd-common.h, s/cygwin.h, s/darwin.h:
11049         * s/gnu-linux.h, s/hpux10-20.h, s/template.h, s/usg5-4-common.h:
11050         Move CLASH_DETECTION to configure.
11052         * s/gnu.h: Remove file, which is now empty.
11054         * s/gnu.h, s/gnu-linux.h:
11055         Move GNU_LIBRARY_PENDING_OUTPUT_COUNT to configure.
11057 2012-07-11  John Wiegley  <johnw@newartisans.com>
11059         * alloc.c (mark_memory): Guard the "no_address_safety_analysis"
11060         function attribute, so we only use it if it exists in the
11061         compiler.
11063 2012-07-11  Dmitry Antipov  <dmantipov@yandex.ru>
11065         Avoid call to strlen in fast_c_string_match_ignore_case.
11066         * search.c (fast_c_string_match_ignore_case): Change to use
11067         length argument.  Adjust users accordingly.
11068         * lisp.h (fast_c_string_match_ignore_case): Adjust prototype.
11070 2012-07-11  Paul Eggert  <eggert@cs.ucla.edu>
11072         Assume mkdir, rmdir.
11073         * sysdep.c (mkdir) [!HAVE_MKDIR]: Remove.
11074         * sysdep.c (rmdir) [!HAVE_RMDIR]: Remove.
11076         Assume rename.
11077         * sysdep.c (rename) [!HAVE_RENAME]: Remove.
11079         Assume perror.
11080         * s/hpux10-20.h (HAVE_PERROR): Remove.
11081         * sysdep.c (perror) [HPUX && !HAVE_PERROR]:
11082         Remove dummy definition, as this problem was obsolete long ago.
11084         Assume strerror.
11085         * sysdep.c (strerror) [!HAVE_STRERROR && !WINDOWSNT]: Remove.
11087 2012-07-11  Dmitry Antipov  <dmantipov@yandex.ru>
11089         Avoid calls to strlen in font processing functions.
11090         * font.c (font_parse_name, font_parse_xlfd, font_parse_fcname)
11091         (font_open_by_name): Change to use length argument.
11092         Adjust users accordingly.
11093         * font.h (font_open_by_name, font_parse_xlfd, font_unparse_xlfd):
11094         Adjust prototypes.
11095         * xfont.c (xfont_decode_coding_xlfd, font_unparse_xlfd):
11096         Change to return ptrdiff_t.
11097         (xfont_list_pattern, xfont_match): Use length returned by
11098         xfont_decode_coding_xlfd.
11099         * xfns.c (x_default_font_parameter): Omit useless xstrdup.
11101 2012-07-11  Glenn Morris  <rgm@gnu.org>
11103         * s/darwin.h, s/freebsd.h, s/netbsd.h:
11104         Move DONT_REOPEN_PTY to configure.
11106         * sound.c (DEFAULT_SOUND_DEVICE) [!WINDOWSNT]:
11107         * s/netbsd.h (DEFAULT_SOUND_DEVICE): Let configure set it.
11109 2012-07-10  Paul Eggert  <eggert@cs.ucla.edu>
11111         Remove "#define unix" that is no longer needed (Bug#11905).
11112         * s/aix4-2.h (unix): Remove; no longer needed.
11114         EMACS_TIME simplification (Bug#11875).
11115         This replaces macros (which typically do not work in GDB)
11116         with functions, typedefs and enums, making the code easier to debug.
11117         The functional style also makes code easier to read and maintain.
11118         * systime.h: Include <sys/time.h> on all hosts, not just if
11119         WINDOWSNT, since 'struct timeval' is needed in general.
11120         (EMACS_TIME): Now a typedef, not a macro.
11121         (EMACS_TIME_RESOLUTION, LOG10_EMACS_TIME_RESOLUTION): Now constants,
11122         not macros.
11123         (EMACS_SECS, EMACS_NSECS, EMACS_TIME_SIGN, EMACS_TIME_VALID_P)
11124         (EMACS_TIME_FROM_DOUBLE, EMACS_TIME_TO_DOUBLE, EMACS_TIME_EQ)
11125         (EMACS_TIME_NE, EMACS_TIME_GT, EMACS_TIME_GE, EMACS_TIME_LT)
11126         (EMACS_TIME_LE): Now functions, not macros.
11127         (EMACS_SET_SECS, EMACS_SET_NSECS, EMACS_SET_SECS_NSECS)
11128         (EMACS_SET_USECS, EMACS_SET_SECS_USECS): Remove these macros,
11129         which are not functions.  All uses rewritten to use:
11130         (make_emacs_time): New function.
11131         (EMACS_SECS_ADDR, EMACS_SET_INVALID_TIME, EMACS_GET_TIME)
11132         (EMACS_ADD_TIME, EMACS_SUB_TIME): Remove these macros, which are
11133         not functions.  All uses rewritten to use the following, respectively:
11134         (emacs_secs_addr, invalid_emacs_time, get_emacs_time)
11135         (add_emacs_time, sub_emacs_time): New functions.
11136         * atimer.c: Don't include <sys/time.h>, as "systime.h" does this.
11137         * fileio.c (Fcopy_file):
11138         * xterm.c (XTflash): Get the current time closer to when it's used.
11139         * makefile.w32-in ($(BLD)/atimer.$(O)): Update dependencies.
11141         * bytecode.c (targets): Suppress -Woverride-init warnings.
11143         Simplify by avoiding confusing use of strncpy etc.
11144         * doc.c (Fsnarf_documentation):
11145         * fileio.c (Ffile_name_directory, Fsubstitute_in_file_name):
11146         * frame.c (Fmake_terminal_frame):
11147         * gtkutil.c (get_utf8_string):
11148         * lread.c (openp):
11149         * nsmenu.m (ns_update_menubar):
11150         * regex.c (regerror):
11151         Prefer memcpy to strncpy and strncat when either will do.
11152         * fileio.c (Fsubstitute_in_file_name):
11153         * keyboard.c (MULTI_LETTER_MOD, parse_modifiers_uncached)
11154         (menu_separator_name_p):
11155         * nsmenu.m (ns_update_menubar):
11156         Prefer memcmp to strncmp when either will do.
11157         * nsterm.m: Include <ftoastr.h>.
11158         (ns_get_color):
11159         * s/gnu-linux.h, s/sol2-6.h, s/unixware.h (PTY_TTY_NAME_SPRINTF):
11160         Prefer snprintf to strncpy.
11161         * nsterm.m (ns_term_init):
11162         * widget.c (set_frame_size) [0]: Prefer xstrdup to xmalloc + strncpy.
11163         * nsterm.m (ns_term_init):
11164         Avoid the need for strncpy, by using build_string or
11165         make_unibyte_string directly.  Use dtoastr, not snprintf.
11166         * process.c (Fmake_network_process): Diagnose service names that
11167         are too long, rather than silently truncating them or creating
11168         non-null-terminated names.
11169         (Fnetwork_interface_info): Likewise, for interface names.
11170         * sysdep.c (system_process_attributes) [GNU_LINUX]:
11171         Prefer sprintf to strncat.
11172         * xdisp.c (debug_method_add) [GLYPH_DEBUG]:
11173         Prefer vsnprintf to vsprintf + strncpy.
11175 2012-07-10  Glenn Morris  <rgm@gnu.org>
11177         * dispnew.c (PENDING_OUTPUT_COUNT) [!__GNU_LIBRARY__]:
11178         Clarify fallback case.
11180 2012-07-10  Dmitry Antipov  <dmantipov@yandex.ru>
11182         Use XCAR and XCDR instead of Fcar and Fcdr where possible.
11183         * callint.c, coding.c, doc.c, editfns.c, eval.c, font.c, fontset.c,
11184         * frame.c, gnutls.c, minibuf.c, msdos.c, textprop.c, w32fns.c,
11185         * w32menu.c, window.c, xmenu.c: Change to use XCAR and XCDR
11186         where argument type is known to be a Lisp_Cons.
11188 2012-07-10  Tom Tromey  <tromey@redhat.com>
11190         * bytecode.c (BYTE_CODE_THREADED): New macro.
11191         (BYTE_CODES): New macro.  Replaces all old byte-code defines.
11192         (enum byte_code_op): New type.
11193         (CASE, NEXT, FIRST, CASE_DEFAULT, CASE_ABORT): New macros.
11194         (exec_byte_code): Use them.  Use token threading when applicable.
11196 2012-07-10  Dmitry Antipov  <dmantipov@yandex.ru>
11198         Optimize pure C strings initialization.
11199         * lisp.h (make_pure_string): Fix prototype.
11200         (build_pure_c_string): New function, defined as static inline.  This
11201         provides a better opportunity to optimize away calls to strlen when
11202         the function is called with compile-time constant argument.
11203         * alloc.c (make_pure_c_string): Fix comment.  Change to add nchars
11204         argument, adjust users accordingly.  Use build_pure_c_string where
11205         appropriate.
11206         * buffer.c, coding.c, data.c, dbusbind.c, fileio.c, fontset.c, frame.c,
11207         * keyboard.c, keymap.c, lread.c, search.c, syntax.c, w32fns.c, xdisp.c,
11208         * xfaces.c, xfns.c, xterm.c: Use build_pure_c_string where appropriate.
11210 2012-07-10  Dmitry Antipov  <dmantipov@yandex.ru>
11212         Avoid calls to strlen in miscellaneous functions.
11213         * buffer.c (init_buffer): Use precalculated len, adjust if needed.
11214         * font.c (Ffont_xlfd_name): Likewise.  Change to call make_string.
11215         * lread.c (openp): Likewise.
11217 2012-07-10  Dmitry Antipov  <dmantipov@yandex.ru>
11219         Avoid calls to strlen in path processing functions.
11220         * fileio.c (file_name_as_directory): Add comment.  Change to add
11221         srclen argument and return the length of result.  Adjust users
11222         accordingly.
11223         (directory_file_name): Fix comment.  Change to add srclen argument,
11224         swap 1st and 2nd arguments to obey the common convention.
11225         Adjust users accordingly.
11226         * filelock.c (fill_in_lock_file_name): Avoid calls to strlen.
11228 2012-07-10  Glenn Morris  <rgm@gnu.org>
11230         * s/cygwin.h, s/darwin.h, s/freebsd.h, s/netbsd.h, s/unixware.h:
11231         Move PENDING_OUTPUT_COUNT definition to configure.
11233         * s/irix6-5.h (DATA_START, DATA_SEG_BITS):
11234         * s/hpux10-20.h (DATA_SEG_BITS, DATA_START):
11235         * s/gnu.h (DATA_START): Move definitions to configure.
11237         * s/irix6-5.h (SETUP_SLAVE_PTY, PTY_NAME_SPRINTF): Drop ifdef guards.
11238         We include usg5-4-common.h, which defines them both.
11240         * s/gnu.h: Don't include fcntl.h (every file in Emacs that uses
11241         O_RDONLY already includes it).
11243         Stop ns builds setting the EMACSLOADPATH environment variable.
11244         * nsterm.m (ns_load_path): Rename from ns_init_paths.
11245         Now it does not set EMACSLOADPATH, just returns the load-path string.
11246         * nsterm.h: Update accordingly.
11247         * lread.c [HAVE_NS]: Include nsterm.h.
11248         (init_lread) [HAVE_NS]: Use ns_load_path.
11249         * emacs.c (main) [HAVE_NS]: No longer call ns_init_paths.
11251 2012-07-09  Glenn Morris  <rgm@gnu.org>
11253         * s/gnu.h (SIGNALS_VIA_CHARACTERS): No need to define it here,
11254         since the included bsd-common.h does so.
11256         Stop ns builds setting the EMACSPATH environment variable.
11257         * nsterm.m (ns_exec_path): New function, split from ns_init_paths.
11258         (ns_init_paths): Do not set EMACSPATH.
11259         * nsterm.h (ns_exec_path): Add it.
11260         * callproc.c (init_callproc_1, init_callproc) [HAVE_NS]:
11261         Use ns_exec_path.
11263         * nsterm.m, nsterm.h (ns_etc_directory): Fix type, empty return.
11265 2012-07-09  Paul Eggert  <eggert@cs.ucla.edu>
11267         * process.c (wait_reading_process_output): 'waitchannels' was unset
11268         when read_kbd || !NILP (wait_for_cell); fix this.
11270         Add GCC-style 'const' attribute to functions that can use it.
11271         * character.h (char_resolve_modifier_mask):
11272         * keyboard.h (make_ctrl_char):
11273         * lisp.h (multibyte_char_to_unibyte, multibyte_char_to_unibyte_safe)
11274         (init_character_once, next_almost_prime, init_fns, init_image)
11275         (flush_pending_output, init_sound):
11276         * mem-limits.h (start_of_data):
11277         * menu.h (finish_menu_items):
11278         Add ATTRIBUTE_CONST.
11279         * emacs.c (DEFINE_DUMMY_FUNCTION):
11280         Declare the dummy function with ATTRIBUTE_CONST.
11281         * lisp.h (Fbyteorder, Fmax_char, Fidentity):
11282         Add decls with ATTRIBUTE_CONST.
11284         Minor improvements to make_formatted_string.
11285         * alloc.c (make_formatted_string): Prefer int to ptrdiff_t
11286         where int is good enough, as vsprintf returns an int.
11287         * lisp.h (make_formatted_string): Add ATTRIBUTE_FORMAT_PRINTF.
11289 2012-07-09  Dmitry Antipov  <dmantipov@yandex.ru>
11291         Use make_formatted_string to avoid double length calculation.
11292         * lisp.h (make_formatted_string): New prototype.
11293         * alloc.c (make_formatted_string): New function.
11294         * buffer.c (Fgenerate_new_buffer_name): Use it.
11295         * dbusbind.c (syms_of_dbusbind): Likewise.
11296         * editfns.c (Fcurrent_time_zone): Likewise.
11297         * filelock.c (get_boot_time): Likewise.
11298         * frame.c (make_terminal_frame, set_term_frame_name)
11299         (x_report_frame_params): Likewise.
11300         * image.c (gs_load): Likewise.
11301         * minibuf.c (get_minibuffer): Likewise.
11302         * msdos.c (dos_set_window_size): Likewise.
11303         * process.c (make_process): Likewise.
11304         * xdisp.c (ensure_echo_area_buffers): Likewise.
11305         * xsettings.c (apply_xft_settings): Likewise.
11307 2012-07-09  Glenn Morris  <rgm@gnu.org>
11309         Stop ns builds polluting the environment with EMACSDATA, EMACSDOC.
11310         * nsterm.m (ns_etc_directory): New function, split from ns_init_paths.
11311         (ns_init_paths): Do not set EMACSDATA, EMACSDOC.
11312         * nsterm.h (ns_etc_directory): Add it.
11313         * callproc.c [HAVE_NS]: Include nsterm.h.
11314         (init_callproc_1, init_callproc) [HAVE_NS]: Use ns_etc_directory.
11316 2012-07-09  Dmitry Antipov  <dmantipov@yandex.ru>
11318         Move marker debugging code under MARKER_DEBUG.
11319         * marker.c (MARKER_DEBUG): Move marker debugging code under
11320         #ifdef MARKER_DEBUG because byte_char_debug_check is too slow
11321         for bootstrap with --enable-checking (~3x slowdown reported
11322         by Juanma Barranquero <lekktu@gmail.com>).
11323         (verify_bytepos): Move under #ifdef MARKER_DEBUG.
11325 2012-07-08  Paul Eggert  <eggert@cs.ucla.edu>
11327         * systime.h (EMACS_SUB_TIME): Clarify behavior with unsigned time_t.
11328         See <http://bugs.gnu.org/11825#29>.
11330 2012-07-08  Eli Zaretskii  <eliz@gnu.org>
11332         * xdisp.c (fill_glyphless_glyph_string): If the face of the glyph
11333         has no font, use the frame's font.  (Bug#11813)
11334         (display_line): Add commentary about displaying truncation glyphs
11335         on GUI frames.
11336         (produce_special_glyphs): Move here from term.c.
11338         * term.c (produce_special_glyphs): Move to xdisp.c.
11340         * dispextern.h (produce_special_glyphs): Move prototype to xdisp.c
11341         section.
11343 2012-07-07  Andreas Schwab  <schwab@linux-m68k.org>
11345         * xdisp.c (display_line): Avoid warning about implicit declaration
11346         of FRAME_FONT.
11348         * frame.c (get_frame_param): Define only if HAVE_WINDOW_SYSTEM.
11350         * lisp.h: Remove empty conditional.
11352 2012-07-07  Paul Eggert  <eggert@cs.ucla.edu>
11354         * lread.c (load_path_check): Now static.
11356         Fix some minor --with-ns problems found by static checking.
11357         * frame.c (Ftool_bar_pixel_width) [!FRAME_TOOLBAR_WIDTH]:
11358         (x_set_font) [!HAVE_X_WINDOWS]:
11359         * image.c (xpm_load_image) [HAVE_NS]:
11360         (x_to_xcolors) [!HAVE_X_WINDOWS && !HAVE_NTGUI]:
11361         (x_disable_image) [!HAVE_NS && !HAVE_NTGUI]:
11362         Remove unused local.
11363         (Fx_parse_geometry) [HAVE_NS]: Don't return garbage.
11364         (xpm_load_image) [HAVE_NS && !HAVE_XPM]: Remove unused label.
11365         * image.c (x_create_bitmap_from_file) [HAVE_NS]:
11366         (xpm_load_image, xpm_load) [HAVE_NS && !HAVE_XPM]:
11367         * nsselect.m (symbol_to_nsstring, ns_string_to_pasteboard_internal):
11368         * xfaces.c (Fx_load_color_file) [!HAVE_X_WINDOWS]:
11369         Fix pointer signedness problem.
11370         * xfaces.c (FRAME_X_FONT_TABLE):
11371         * xterm.h (FRAME_X_FONT_TABLE): Remove unused, incompatible macros.
11373 2012-07-07  Glenn Morris  <rgm@gnu.org>
11375         * lread.c (load_path_check): New function, split from init_lread.
11376         (init_lread): Reorganize.  Motivation:
11377         If EMACSLOADPATH is set, check/warn about that rather than the
11378         defaults, which we are not going to use.  Hence we can remove
11379         the turn_off_warning and WINDOWSNT || HAVE_NS tests.
11380         Don't warn if site-lisp directories are missing.
11381         If not installed, start from a blank load-path, since
11382         PATH_LOADSEARCH refers to the eventual installation directories.
11384 2012-07-07  Eli Zaretskii  <eliz@gnu.org>
11386         Support truncation and continuation glyphs on GUI frames, when
11387         fringes are disabled.  (Bug#11832)
11388         * xdisp.c (init_iterator): Get dimensions of truncation and
11389         continuation glyphs even if on GUI frames.
11390         Adjust it->last_visible_x on GUI frames when the left or right fringes,
11391         or both, are absent.
11392         (start_display, move_it_in_display_line_to): Handle the case of a
11393         GUI frame without a fringe to display continuation or truncation
11394         glyphs.
11395         (insert_left_trunc_glyphs): Support GUI frames: make sure
11396         truncation glyphs overwrite enough glyphs from the current line to
11397         have sufficient space in pixels.
11398         (display_line): Support truncation and continuation glyphs on GUI
11399         frames.  If some spare pixels are left on the line after inserting
11400         the truncation glyphs, fill that space with a stretch glyph of a
11401         suitably computed width.
11403         * term.c (produce_special_glyphs): Call PRODUCE_GLYPHS, not
11404         produce_glyphs, to support GUI sessions.
11406 2012-07-07  Paul Eggert  <eggert@cs.ucla.edu>
11408         * sysdep.c (ULLONG_MAX): Define if not already defined (Bug#11781).
11410         * sysdep.c (list_system_processes): Port to NetBSD-current (Bug#11797).
11412         Do not require float-time's arg to fit in time_t (Bug#11825).
11413         This works better on hosts where time_t is unsigned, and where
11414         float-time is applied to the (negative) difference between two times.
11415         * editfns.c (decode_time_components): Last arg is now double *,
11416         not int *, and means to store all the result as a double, without
11417         worrying about whether the seconds part fits in time_t.
11418         All callers changed.
11419         (lisp_time_argument): Remove last int * arg, as it's no longer needed.
11420         All callers changed.
11421         (Ffloat_time): Do not fail merely because the specified time falls
11422         outside of time_t range.
11424 2012-07-07  Glenn Morris  <rgm@gnu.org>
11426         * s/darwin.h (HAVE_RES_INIT, HAVE_LIBRESOLV):
11427         * s/hpux10-20.h (HAVE_RINT, HAVE_RANDOM):
11428         * s/unixware.h (HAVE_GETWD): Move undefs to configure (effectively).
11430 2012-07-07  Juanma Barranquero  <lekktu@gmail.com>
11432         * makefile.w32-in (DISPEXTERN_H, $(BLD)/regex.$(O)):
11433         Update dependencies.
11435         * s/ms-w32.h [_MSC_VER]: Remove strcasecmp, strncasecmp.
11437 2012-07-06  Paul Eggert  <eggert@cs.ucla.edu>
11439         Use c_strcasecmp for ASCII case-insensitive comparison (Bug#11786).
11440         * dispextern.h, nsfns.m, nsterm.m: Include <c-strcase.h>.
11441         * dispextern.h (xstrcasecmp): Rewrite using c_strcasecmp.
11442         * nsfns.m (x_get_string_resource): Use c_strncasecmp, not strncasecmp.
11443         * nsterm.m (ns_default): Use c_strcasecmp, not strcasecmp.
11444         * xfaces.c (xstrcasecmp) [!HAVE_STRCASECMP]: Remove.
11446         * xfont.c (compare_font_names): Redo to omit the need for casts.
11448 2012-07-06  Andreas Schwab  <schwab@linux-m68k.org>
11450         * xfns.c (Fx_change_window_property): Doc fix.
11451         * w32fns.c (Fx_change_window_property): Doc fix.
11453         * w32fns.c (Fx_window_property): Accept the same arguments as the
11454         X Windows version.  Doc fix.
11455         * xfns.c (Fx_window_property): Doc fix.  (Bug#11870)
11457 2012-07-06  Juanma Barranquero  <lekktu@gmail.com>
11458             Eli Zaretskii  <eliz@gnu.org>
11460         * s/ms-w32.h: Settings not specific to Windows moved to nt/config.nt.
11461         Windows-specific code from nt/config.nt moved here.
11462         Obsolete settings removed.
11464 2012-07-06  Paul Eggert  <eggert@cs.ucla.edu>
11466         * process.c: Avoid unnecessary calls to gettime.
11467         (wait_reading_process_output): Don't get the time of day
11468         when gobbling data immediately and not waiting, as there's no need
11469         for it in that case.  This removes a FIXME.
11471 2012-07-06  Jan Djärv  <jan.h.d@swipnet.se>
11473         * gtkutil.c (xg_event_is_for_scrollbar): Assign gwin when HAVE_GTK3
11474         is defined (Bug#11768).
11476 2012-07-06  Dmitry Antipov  <dmantipov@yandex.ru>
11478         Fix marker debugging code.
11479         * marker.c (byte_char_debug_check): Do not perform the check
11480         if buffer is not multibyte.
11481         (buf_charpos_to_bytepos, buf_bytepos_to_charpos):
11482         Call byte_char_debug_check with correct arguments.
11484 2012-07-06  Dmitry Antipov  <dmantipov@yandex.ru>
11486         Compile marker debugging code only if ENABLE_CHECKING is defined.
11487         * marker.c (byte_char_debug_check, count_markers):
11488         Use only if ENABLE_CHECKING is defined.
11489         (byte_debug_flag): Remove.
11490         (CONSIDER, buf_charpos_to_bytepos, buf_bytepos_to_charpos):
11491         Always call byte_char_debug_check if ENABLE_CHECKING is defined.
11493 2012-07-06  Dmitry Antipov  <dmantipov@yandex.ru>
11495         Avoid code repetition in marker-related functions.
11496         * marker.c (attach_marker): New function.
11497         (Fset_marker, set_marker_restricted, set_marker_both)
11498         (set_marker_restricted_both): Use it.
11499         (Fset_marker, set_marker_restricted, Fbuffer_has_markers_at):
11500         Consistently rename charno to charpos.
11501         (marker_position): Add eassert.
11502         (marker_byte_position): Convert to eassert.
11504 2012-07-06  Dmitry Antipov  <dmantipov@yandex.ru>
11506         Simplify list operations in unchain_overlay and unchain_marker.
11507         * buffer.c (unchain_overlay): Simplify.  Add comment.
11508         * marker.c (unchain_marker): Simplify.  Fix comments.
11510 2012-07-06  Dmitry Antipov  <dmantipov@yandex.ru>
11512         Introduce fast path for the widely used marker operation.
11513         * alloc.c (build_marker): New function.
11514         * lisp.h (build_marker): New prototype.
11515         * buffer.c (clone_per_buffer_values, Fmake_indirect_buffer): Use it.
11516         * composite.c (autocmp_chars): Likewise.
11517         * editfns.c (buildmark): Remove.
11518         (Fpoint_marker, Fpoint_min_marker, Fpoint_max_marker)
11519         (save_restriction_save): Use build_marker.
11520         * marker.c (buf_charpos_to_bytepos, buf_bytepos_to_charpos): Likewise.
11521         * window.c (save_window_save): Likewise.
11523 2012-07-06  Dmitry Antipov  <dmantipov@yandex.ru>
11525         Do not use Fdelete_overlay in delete_all_overlays
11526         to avoid redundant calls to unchain_overlay.
11527         * buffer.c (drop_overlay): New function.
11528         (delete_all_overlays, Fdelete_overlay): Use it.
11529         * minibuf.c (get_minibuffer): Fix comment.
11531 2012-07-06  Paul Eggert  <eggert@cs.ucla.edu>
11533         Port to OpenBSD 5.1 amd64.
11534         * sysdep.c [BSD_SYSTEM]: Include <sys/param.h> before <sys/sysctl.h>.
11535         This is needed for OpenBSD, and should be harmless on all BSD systems.
11536         Also, include <sys/sysctl.h>, as it should be available on all
11537         BSD_SYSTEM hosts given that we're already calling sysctl in that case.
11538         (list_system_processes) [__OpenBSD__]: Use DARWIN_OS style mib, but
11539         use p_pid member, not kp_proc.pid.
11541 2012-07-06  Glenn Morris  <rgm@gnu.org>
11543         * Makefile.in (emacs$(EXEEXT)): Don't check for load-path shadows.
11545 2012-07-05  Paul Eggert  <eggert@cs.ucla.edu>
11547         More xmalloc and related cleanup.
11548         * alloc.c, bidi.c, buffer.c, buffer.h, bytecode.c, callint.c:
11549         * callproc.c, charset.c, coding.c, composite.c, data.c, dispnew.c:
11550         * doc.c, editfns.c, emacs.c, eval.c, fileio.c, filelock.c, fns.c:
11551         * font.c, fontset.c, frame.c, fringe.c, ftfont.c, ftxfont.c, gmalloc.c:
11552         * gtkutil.c, image.c, keyboard.c, keymap.c, lread.c, macros.c, menu.c:
11553         * nsfns.m, nsfont.m, nsmenu.m, nsterm.m, print.c, process.c, ralloc.c:
11554         * regex.c, region-cache.c, scroll.c, search.c, sound.c, syntax.c:
11555         * sysdep.c, term.c, termcap.c, unexmacosx.c, window.c, xdisp.c:
11556         * xfaces.c, xfns.c, xftfont.c, xgselect.c, xmenu.c, xrdb.c, xselect.c:
11557         * xterm.c:
11558         Omit needless casts involving void * pointers and allocation.
11559         Prefer "P = xmalloc (sizeof *P)" to "P = xmalloc (sizeof (TYPE_OF_P))",
11560         as the former is more robust if P's type is changed.
11561         Prefer xzalloc to xmalloc + memset 0.
11562         Simplify malloc-or-realloc to realloc.
11563         Don't worry about xmalloc returning a null pointer.
11564         Prefer xstrdup to xmalloc + strcpy.
11565         * editfns.c (Fmessage_box): Grow message_text by at least 80 when
11566         growing it.
11567         * keyboard.c (apply_modifiers_uncached): Prefer local array to
11568         alloca of a constant.
11570 2012-07-05  Eli Zaretskii  <eliz@gnu.org>
11572         * xdisp.c (display_line): Fix horizontal pixel coordinates when
11573         hscroll is larger than the line width.  Fixes long and futile
11574         looping inside extend_face_to_end_of_line (on a TTY) producing
11575         glyphs that are not needed and thrown away.
11577 2012-07-05  Dmitry Antipov  <dmantipov@yandex.ru>
11579         * marker.c (set_marker_restricted_both): Simplify by using
11580         clip_to_bounds.
11582 2012-07-05  Paul Eggert  <eggert@cs.ucla.edu>
11584         * editfns.c (region_limit): Simplify by using clip_to_bounds.
11586 2012-07-05  Jan Djärv  <jan.h.d@swipnet.se>
11588         * gtkutil.c (gtk_scrollbar_new, gtk_box_new): Define when HAVE_GTK3 is
11589         not defined (Bug#11768).
11590         (xg_create_frame_widgets): Use gtk_plug_new_for_display (Bug#11768).
11591         (xg_create_frame_widgets, create_dialog, xg_get_file_with_chooser)
11592         (make_widget_for_menu_item, xg_make_tool_item): Use gtk_box_new
11593         followed by gtk_box_set_homogeneous (Bug#11768).
11594         (xg_update_menu_item): Use GTK_IS_BOX (Bug#11768).
11595         (update_theme_scrollbar_width, xg_create_scroll_bar):
11596         Use gtk_scrollbar_new (Bug#11768).
11597         (xg_event_is_for_scrollbar): Use Gdk Device functions for HAVE_GTK3.
11598         (is_box_type): New function (Bug#11768).
11599         (xg_tool_item_stale_p): Call is_box_type.
11600         (xg_initialize): Get settings by calling gtk_settings_get_for_screen
11601         with default display (Bug#11768).
11603 2012-07-05  Eli Zaretskii  <eliz@gnu.org>
11605         * xdisp.c (window_hscroll_limited): New function.
11606         (pos_visible_p, init_iterator): Use it to avoid overflow of pixel
11607         coordinates when window's hscroll is set to insanely large
11608         values.  (Bug#11857)
11610 2012-07-05  Juanma Barranquero  <lekktu@gmail.com>
11612         * makefile.w32-in ($(BLD)/dired.$(O), $(BLD)/fileio.$(O)): Fix typo.
11613         ($(BLD)/terminal.$(O), $(BLD)/syntax.$(O)): Update dependencies.
11615 2012-07-05  Dmitry Antipov  <dmantipov@yandex.ru>
11617         Cleanup xmalloc.
11618         * lisp.h (xzalloc): New prototype.  Omit needless casts.
11619         * alloc.c (xzalloc): New function.  Omit needless casts.
11620         * charset.c: Omit needless casts.  Convert all calls to
11621         xmalloc with following memset to xzalloc.
11622         * dispnew.c: Likewise.
11623         * fringe.c: Likewise.
11624         * image.c: Likewise.
11625         * sound.c: Likewise.
11626         * term.c: Likewise.
11627         * w32fns.c: Likewise.
11628         * w32font.c: Likewise.
11629         * w32term.c: Likewise.
11630         * xfaces.c: Likewise.
11631         * xfns.c: Likewise.
11632         * xterm.c: Likewise.
11633         * atimer.c: Omit needless casts.
11634         * buffer.c: Likewise.
11635         * callproc.c: Likewise.
11636         * ccl.c: Likewise.
11637         * coding.c: Likewise.
11638         * composite.c: Likewise.
11639         * doc.c: Likewise.
11640         * doprnt.c: Likewise.
11641         * editfns.c: Likewise.
11642         * emacs.c: Likewise.
11643         * eval.c: Likewise.
11644         * filelock.c: Likewise.
11645         * fns.c: Likewise.
11646         * gtkutil.c: Likewise.
11647         * keyboard.c: Likewise.
11648         * lisp.h: Likewise.
11649         * lread.c: Likewise.
11650         * minibuf.c: Likewise.
11651         * msdos.c: Likewise.
11652         * print.c: Likewise.
11653         * process.c: Likewise.
11654         * region-cache.c: Likewise.
11655         * search.c: Likewise.
11656         * sysdep.c: Likewise.
11657         * termcap.c: Likewise.
11658         * terminal.c: Likewise.
11659         * tparam.c: Likewise.
11660         * w16select.c: Likewise.
11661         * w32.c: Likewise.
11662         * w32reg.c: Likewise.
11663         * w32select.c: Likewise.
11664         * w32uniscribe.c: Likewise.
11665         * widget.c: Likewise.
11666         * xdisp.c: Likewise.
11667         * xmenu.c: Likewise.
11668         * xrdb.c: Likewise.
11669         * xselect.c: Likewise.
11671 2012-07-05  Paul Eggert  <eggert@cs.ucla.edu>
11673         * fileio.c (time_error_value): Check the right error number.
11674         Problem reported by Troels Nielsen in
11675         <http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00095.html>.
11677 2012-07-04  Paul Eggert  <eggert@cs.ucla.edu>
11679         * window.c (set_window_hscroll): Revert the 100000 hscroll limit.
11680         This should be fixed in a better way; see Eli Zaretskii in
11681         <http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00088.html>.
11682         (HSCROLL_MAX): Remove; this is now internal to set_window_hscroll.
11684         * fileio.c (time_error_value): Rename from special_mtime.
11685         The old name's problems were noted by Eli Zaretskii in
11686         <http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00087.html>.
11688         * emacs.c (gdb_pvec_type): Change it back to enum pvec_type.
11689         This variable's comment says Emacs needs at least one GDB-visible
11690         symbol of type enum pvec_type, to work around GDB problems.
11691         The symbol's value doesn't matter.
11693         * alloc.c (PSEUDOVECTOR_NBYTES): Remove stray ';'
11694         that causes compilation to fail on pre-C99 compilers.
11696 2012-07-04  Juanma Barranquero  <lekktu@gmail.com>
11698         * s/ms-w32.h (LISP_FLOAT_TYPE, HAVE_MEMCMP, HAVE_MEMCPY)
11699         (HAVE_MEMMOVE, HAVE_MEMSET): Don't set, obsolete.
11701 2012-07-04  Dmitry Antipov  <dmantipov@yandex.ru>
11703         * buffer.c (init_buffer_once): Fix initialization of
11704         headers for buffer_defaults and buffer_local_symbols.
11705         Reported by Juanma Barranquero <lekktu@gmail.com>.
11707 2012-07-04  Stefan Monnier  <monnier@iro.umontreal.ca>
11709         Turn VECTOR_FREE_LIST_FLAG into PVEC_FREE.
11710         * lisp.h (enum pvec_type): Use fewer bits.
11711         (PSEUDOVECTOR_SIZE_BITS): New constant.
11712         (PSEUDOVECTOR_SIZE_MASK, PVEC_TYPE_MASK): Use it.
11713         (XSETPVECTYPESIZE, XSETTYPED_PSEUDOVECTOR, DEFUN): Adapt code to
11714         change in pvec_type.
11715         (PSEUDOVECTOR_TYPEP): New macro.
11716         (TYPED_PSEUDOVECTORP): Use it.
11717         * fns.c (internal_equal): Adapt code to extract pvectype.
11718         * emacs.c (gdb_pvec_type): Update type.
11719         * alloc.c (PSEUDOVECTOR_NBYTES): New macro.
11720         (VECTOR_FREE_LIST_SIZE_MASK): Remove (=> PSEUDOVECTOR_SIZE_MASK).
11721         (VECTOR_FREE_LIST_FLAG): Remove (=> PVEC_FREE).
11722         (SETUP_ON_FREE_LIST): Use XSETPVECTYPESIZE.
11723         (sweep_vectors): Use it.  Use local var `total_bytes' instead of
11724         abusing vector->header.next.nbytes.
11725         (live_vector_p): Use PVEC_TYPE.
11726         (mark_object): Adapt code to extract pvectype.  Use switch.
11728 2012-07-04  Paul Eggert  <eggert@cs.ucla.edu>
11730         * doprnt.c (doprnt): Don't assume string length fits in 'int'.
11731         Tighten new eassert a bit.
11733 2012-07-04  Dmitry Antipov  <dmantipov@yandex.ru>
11735         Fix compilation with --enable-gcc-warnings and -O1
11736         optimization level.
11737         * doprnt.c (doprnt): Change type of tem to int, initialize
11738         to avoid compiler warning.  Add eassert.
11739         * search.c (simple_search): Initialize match_byte to avoid
11740         compiler warning.  Add eassert.
11742 2012-07-04  Paul Eggert  <eggert@cs.ucla.edu>
11744         Avoid weird behavior with large horizontal scrolls.
11745         Without this change, for example, large hscroll values would
11746         mess up Emacs's display on Fedora 15 x86, presumably due to
11747         overflows in int calculations in the display code.
11748         Also, if buffers had long lines, Emacs would freeze.
11749         * window.c (HSCROLL_MAX): Reduce to 100000, and make it visible to GDB.
11750         (set_window_hscroll): New function, containing the old guts of
11751         Fset_window_hscroll.  Return the clipped value.
11752         (Fset_window_hscroll, Fscroll_left, Fscroll_right): Use it.
11753         This avoids the need to check against PTRDIFF_MAX.
11755         * buffer.c (Fgenerate_new_buffer_name): Fix sprintf format mismatch.
11757 2012-07-04  Dmitry Antipov  <dmantipov@yandex.ru>
11759         * buffer.c (Fgenerate_new_buffer_name): Fix type mismatch.
11761 2012-07-04  Paul Eggert  <eggert@cs.ucla.edu>
11763         * regex.c: Suppress GCC warning on RHEL 6.  (Bug#11207)
11764         Conditionalize the pragmas on GCC 4.5 or later, not GCC 4.3 or later,
11765         since GCC 4.4.6 issues a bogus warning for them.
11767         Fix bugs in file timestamp newness comparisons.
11768         * fileio.c (Ffile_newer_than_file_p):
11769         * lread.c (Fload): Use full timestamp resolution of files,
11770         not just the 1-second resolution, so that files that are only
11771         slightly newer still count as newer.
11772         * fileio.c (Ffile_newer_than_file_p): Don't assume file
11773         timestamps fit in 'int'; this fixes a Y2038 bug on most hosts.
11775 2012-07-03  Paul Eggert  <eggert@cs.ucla.edu>
11777         * fileio.c: Improve handling of file time marker.  (Bug#11852)
11778         (special_mtime): New function.
11779         (Finsert_file_contents, Fverify_visited_file_modtime):
11780         Use it to set special mtime values consistently.
11782 2012-07-03  Andreas Schwab  <schwab@linux-m68k.org>
11784         * fileio.c (Finsert_file_contents): Properly handle st_mtime
11785         marker for non-existing file.  (Bug#11852)
11787 2012-07-03  Glenn Morris  <rgm@gnu.org>
11789         * lisp.h (Fread_file_name): Restore EXFUN (it's not a normal DEFUN
11790         and did not make it into globals.h).
11792 2012-07-03  Tom Tromey  <tromey@redhat.com>
11794         * window.c (Fset_window_margins, Fset_window_fringes)
11795         (Fset_window_scroll_bars, Fset_window_vscroll): No longer static.
11796         * textprop.c (Fprevious_property_change): No longer static.
11797         * syntax.c (Fsyntax_table_p): No longer static.
11798         * process.c (Fget_process, Fprocess_datagram_address): No longer
11799         static.
11800         * keymap.c (Flookup_key, Fcopy_keymap): No longer static.
11801         * keyboard.c (Fcommand_execute): No longer static.
11802         Remove EXFUN.
11803         * insdel.c (Fcombine_after_change_execute): No longer static.
11804         * image.c (Finit_image_library): No longer static.
11805         * fileio.c (Fmake_symbolic_link): No longer static.
11806         * eval.c (Ffetch_bytecode): No longer static.
11807         * editfns.c (Fuser_full_name): No longer static.
11808         * doc.c (Fdocumentation_property, Fsnarf_documentation):
11809         No longer static.
11810         * buffer.c (Fset_buffer_major_mode, Fdelete_overlay): No longer
11811         static.
11812         * dired.c (Ffile_attributes): No longer static.
11813         * composite.c (Fcomposition_get_gstring): No longer static.
11814         * callproc.c (Fgetenv_internal): No longer static.
11816         * ccl.h: Remove EXFUNs.
11817         * buffer.h: Remove EXFUNs.
11818         * dispextern.h: Remove EXFUNs.
11819         * intervals.h: Remove EXFUNs.
11820         * fontset.h: Remove EXFUN.
11821         * font.h: Remove EXFUNs.
11822         * dosfns.c (system_process_attributes): Remove EXFUN.
11823         * keymap.h: Remove EXFUNs.
11824         * lisp.h: Remove EXFUNs.
11825         * w32term.h: Remove EXFUNs.
11826         * window.h: Remove EXFUNs.
11827         * xsettings.h: Remove EXFUN.
11828         * xterm.h: Remove EXFUN.
11830 2012-07-03  Glenn Morris  <rgm@gnu.org>
11832         * lisp.h (Frandom): Make it visible to C.
11833         * buffer.c (Fgenerate_new_buffer_name): Speed up finding a new
11834         buffer for invisible buffers.  (Bug#1229)
11836 2012-07-03  Dmitry Antipov  <dmantipov@yandex.ru>
11838         Fix block vector allocation code to allow VECTOR_BLOCK_SIZE
11839         values which aren't power of 2.
11840         * alloc.c (VECTOR_FREE_LIST_SIZE_MASK): New macro.
11841         Verify its value and the value of VECTOR_BLOCK_SIZE.  Adjust users
11842         accordingly.
11844 2012-07-03  Stefan Monnier  <monnier@iro.umontreal.ca>
11846         * lisp.h (Lisp_Misc, Lisp_Fwd): Move around to group better.
11848         * alloc.c (mark_object): Revert part of last patch to use `switch'.
11850 2012-07-03  Dmitry Antipov  <dmantipov@yandex.ru>
11852         * alloc.c (allocate_vector_block): Remove redundant
11853         calls to mallopt if DOUG_LEA_MALLOC is defined.
11854         (allocate_vectorlike): If DOUG_LEA_MALLOC is defined,
11855         avoid calls to mallopt if zero_vector is returned.
11857 2012-07-03  Dmitry Antipov  <dmantipov@yandex.ru>
11859         * alloc.c (check_string_bytes): If GC_CHECK_STRING_BYTES
11860         is enabled, avoid dereferencing NULL current_sblock if
11861         running undumped.
11863 2012-07-03  Dmitry Antipov  <dmantipov@yandex.ru>
11865         Cleanup basic buffer management.
11866         * buffer.h (struct buffer): Change layout to use generic vector
11867         marking code.  Fix some comments.  Change type of 'clip_changed'
11868         to bitfield.  Remove unused #ifndef old.
11869         (FIRST_FIELD_PER_BUFFER, LAST_FIELD_PER_BUFFER): Remove.
11870         (GET_OVERLAYS_AT): Fix indentation.
11871         (for_each_per_buffer_object_at): New macro.
11872         * buffer.c (clone_per_buffer_values, reset_buffer_local_variables)
11873         (Fbuffer_local_variables): Use it.
11874         (init_buffer_once, syms_of_buffer): Remove unused #ifndef old.
11875         * alloc.c (allocate_buffer): Adjust to match new layout of
11876         struct buffer.  Fix comment.
11877         (mark_overlay): New function.
11878         (mark_buffer): Use it.  Use mark_vectorlike to mark normal
11879         Lisp area of struct buffer.
11880         (mark_object): Use it.  Adjust marking of misc objects
11881         and related comments.
11883 2012-07-02  Paul Eggert  <eggert@cs.ucla.edu>
11885         * alloc.c (mark_object): Remove "#ifdef GC_CHECK_MARKED_OBJECTS"
11886         wrapper that is not needed because the wrapped code is a no-op (zero
11887         machine instructions) when GC_CHECK_MARKED_OBJECTS is not defined.
11888         This avoids a -Wunused-macros diagnostic with GCC 4.7.1 x86-64.
11890 2012-07-02  Dmitry Antipov  <dmantipov@yandex.ru>
11892         * alloc.c (mark_buffer): Simplify.  Remove prototype.
11893         (mark_object): Add comment.  Reorganize marking of vector-like
11894         objects.  Use CHECK_LIVE for all vector-like objects except buffers
11895         and subroutines when GC_CHECK_MARKED_OBJECTS is defined.
11896         Avoid redundant calls to mark_vectorlike for bool vectors.
11898 2012-06-30  Glenn Morris  <rgm@gnu.org>
11900         * nsterm.m (ns_init_paths): Ignore site-lisp if --no-site-lisp.
11902         * epaths.in (PATH_SITELOADSEARCH): New.
11903         * lread.c (init_lread): Use PATH_SITELOADSEARCH.
11904         This is rather than relying on --enable-locallisppath elements
11905         having "site-lisp" in their names.  (Bug#10208#25, 11658)
11907 2012-06-30  Eli Zaretskii  <eliz@gnu.org>
11909         * w32proc.c (sys_select): Accept and ignore one more argument.
11911         * w32.c (emacs_gnutls_pull): Call select with one more argument.
11913         * sysselect.h [DOS_NT]: Don't include sys/select.h.
11914         (pselect) [!MS_DOS]: Redirect to sys_select.
11916         * sysdep.c: Don't include dos.h and dosfns.h.
11918         * process.c (sys_select):
11919         * msdos.c (sys_select): Accept one more argument and ignore it.
11921         * msdos.c (event_timestamp, sys_select): Use gnulib's gettime;
11922         adapt data types and code to that.
11924         * dosfns.c:
11925         * msdos.c (gettime, settime): Define away the prototypes in dos.h,
11926         which clashes with the gnulib function of the same name.
11928 2012-06-30  Andreas Schwab  <schwab@linux-m68k.org>
11930         * font.c (font_style_to_value, font_style_symbolic)
11931         (font_prop_validate_style): Add type checks for values in
11932         font_style_table.
11934         * lisp.h (CHECK_RANGED_INTEGER): Make value to check the first
11935         argument.
11936         * character.c, charset.c, menu.c, process.c, window.c: Adjust all
11937         uses.
11939 2012-06-29  Eli Zaretskii  <eliz@gnu.org>
11941         * xdisp.c (try_window_id): Undo last change.
11943         * w32.c (getwd): Adjust commentary about startup_dir.
11944         (init_environment): Always call sys_access, even in non-MSVC
11945         builds.  Don't chdir to the directory of the Emacs executable.
11946         This undoes code from 1997 which was justified by the need to
11947         "avoid conflicts when removing and renaming directories".  But its
11948         downside was that every relative file name was being interpreted
11949         relative to the directory of the Emacs executable, which can never
11950         be TRT.  In particular, it broke sys_access when called with
11951         relative file names.
11952         (sys_access): Map GetLastError to errno.
11954 2012-06-29  Dmitry Antipov  <dmantipov@yandex.ru>
11956         * window.h (struct window): Change type of 'fringes_outside_margins'
11957         to bitfield.  Fix comment.  Adjust users accordingly.
11958         (struct window): Change type of 'window_end_bytepos' to ptrdiff_t.
11959         Adjust comment.
11960         * xdisp.c (try_window_id): Change type of 'first_vpos' and 'vpos'
11961         to ptrdiff_t.
11963 2012-06-29  Andreas Schwab  <schwab@linux-m68k.org>
11965         * gnutls.c (emacs_gnutls_handshake):
11966         Add QUIT to make the loop interruptible.
11968 2012-06-29  Glenn Morris  <rgm@gnu.org>
11970         * charset.c (init_charset): Make lack of etc/charsets fatal.
11972 2012-06-29  Dmitry Antipov  <dmantipov@yandex.ru>
11974         * editfns.c (region_limit): Fix type mismatch.
11976 2012-06-29  Dmitry Antipov  <dmantipov@yandex.ru>
11978         * nsfns.m: Fix GLYPH_DEBUG usage assuming that it may be
11979         undefined.  Convert from xassert to eassert.
11980         * nsmenu.m: Convert from xassert to eassert.
11981         * nsterm.m: Likewise.
11983 2012-06-28  Stefan Monnier  <monnier@iro.umontreal.ca>
11985         * editfns.c (region_limit): Clip to narrowing (bug#11770).
11987 2012-06-28  Paul Eggert  <eggert@cs.ucla.edu>
11989         Avoid integer overflow on scroll-left and scroll-right.
11990         * window.c (HSCROLL_MAX): New macro.
11991         (Fscroll_left, Fscroll_right): Avoid undefined behavior on integer
11992         overflow when requested scroll falls outside ptrdiff_t range.
11994 2012-06-28  Dmitry Antipov  <dmantipov@yandex.ru>
11996         * window.h (struct window): Change type of 'hscroll',
11997         'min_hscroll' and 'last_point' from Lisp_Object to ptrdiff_t,
11998         'last_modified' and 'last_overlay_modified' to EMACS_INT.
11999         Adjust users accordingly.
12000         * xdisp.c (try_cursor_movement): Replace type check with eassert.
12001         * window.c (Fscroll_left, Fscroll_right): Change type of 'hscroll'
12002         from EMACS_INT to ptrdiff_t.
12003         (make_window): Omit redundant initialization.
12005 2012-06-28  Juanma Barranquero  <lekktu@gmail.com>
12007         * makefile.w32-in ($(BLD)/regex.$(O)): Update dependencies.
12009 2012-06-28  Dmitry Antipov  <dmantipov@yandex.ru>
12011         * window.h (struct window): Change type of 'use_time' and
12012         'sequence_number' from Lisp_Object to int.
12013         * frame.c (make_frame): Adjust users accordingly.
12014         * print.c (print_object): Likewise.
12015         * window.c (select_window, Fwindow_use_time, make_parent_window)
12016         (make_window): Likewise.
12018 2012-06-28  Dmitry Antipov  <dmantipov@yandex.ru>
12020         * dispextern.h (GLYPH_DEBUG): Now defined in config.h if
12021         enabled with --enable-checking=[all,glyphs] configure option.
12022         Fix GLYPH_DEBUG usage assuming that it may be undefined,
12023         adjust comments accordingly.
12024         * dispnew.c: Fix GLYPH_DEBUG usage assuming that it may be
12025         undefined, adjust comments accordingly.
12026         * image.c: Likewise.
12027         * scroll.c: Likewise.
12028         * w32fns.c: Likewise.
12029         * w32term.c: Likewise.
12030         * xdisp.c: Likewise.
12031         * xfaces.c: Likewise.
12032         * xfns.c: Likewise.
12033         * xterm.c: Likewise.
12035 2012-06-28  Dmitry Antipov  <dmantipov@yandex.ru>
12037         Generalize run-time debugging checks.
12038         * dispextern.h (XASSERTS): Remove.
12039         * fontset.c (xassert): Remove.
12040         Convert from xassert to eassert.
12041         * alloc.c: Convert from xassert to eassert.
12042         * bidi.c: Likewise.
12043         * dispnew.c: Likewise.
12044         * fns.c: Likewise.
12045         * fringe.c: Likewise.
12046         * ftfont.c: Likewise.
12047         * gtkutil.c: Likewise.
12048         * image.c: Likewise.
12049         * keyboard.c: Likewise.
12050         * menu.c: Likewise.
12051         * process.c: Likewise.
12052         * scroll.c: Likewise.
12053         * sound.c: Likewise.
12054         * term.c: Likewise.
12055         * w32console.c: Likewise.
12056         * w32fns.c: Likewise.
12057         * w32term.c: Likewise.
12058         * window.c: Likewise.
12059         * xdisp.c: Likewise.
12060         * xfaces.c: Likewise.
12061         * xfns.c: Likewise.
12062         * xselect.c: Likewise.
12063         * xterm.c: Likewise.
12065 2012-06-27  Stefan Monnier  <monnier@iro.umontreal.ca>
12067         * fns.c (maybe_resize_hash_table): Output message when growing the
12068         purify-hashtable.
12070 2012-06-27  Dmitry Antipov  <dmantipov@yandex.ru>
12072         * alloc.c (allocate_string_data): Remove dead code.
12073         * xsettings.c (XSETTINGS_FONT_NAME): Move under HAVE_XFT to
12074         avoid GCC warning about unused macro.
12076 2012-06-27  Dmitry Antipov  <dmantipov@yandex.ru>
12078         * alloc.c (allocate_string): Omit intervals initialization.
12079         * alloc.c (make_uninit_multibyte_string): Initialize intervals
12080         as in make_pure_string and make_pure_c_string.
12082 2012-06-27  Dmitry Antipov  <dmantipov@yandex.ru>
12084         * alloc.c (allocate_string): Fix last change.
12086 2012-06-27  Dmitry Antipov  <dmantipov@yandex.ru>
12088         * alloc.c (allocate_string): Remove two redundant calls
12089         to memset, add explicit initialization where appropriate.
12091 2012-06-27  Glenn Morris  <rgm@gnu.org>
12093         * lisp.mk (lisp): Remove paths.elc.
12095 2012-06-27  Chong Yidong  <cyd@gnu.org>
12097         * doc.c (Fsubstitute_command_keys): Fix punctuation.
12099 2012-06-26  John Wiegley  <johnw@newartisans.com>
12101         * unexmacosx.c (copy_data_segment): Add two section names used
12102         on Mac OS X Lion: __mod_init_func and __mod_term_func.
12104         * alloc.c (mark_memory): Do not check with -faddress-sanitizer
12105         when building with Clang.
12107 2012-06-26  Stefan Monnier  <monnier@iro.umontreal.ca>
12109         * eval.c (Fapply): Allow calling it with a single argument.
12111 2012-06-26  Eli Zaretskii  <eliz@gnu.org>
12113         * s/ms-w32.h (strcasecmp, strncasecmp) [_MSC_VER]: Redirect to
12114         _stricmp and _strnicmp.
12115         (HAVE_STRCASECMP, HAVE_STRNCASECMP): Define to 1.
12117 2012-06-26  Dmitry Antipov  <dmantipov@yandex.ru>
12119         * alloc.c (allocate_window): Zero out non-Lisp part of newly
12120         allocated window.
12121         (allocate_process): Likewise for new process.
12122         (allocate_terminal): Change to use offsetof.
12123         (allocate_frame): Likewise.
12124         * frame.c (make_frame): Omit redundant initialization.
12125         * window.c (make_parent_window): Use memset.
12126         (make_window): Omit redundant initialization.
12127         * process.c (make_process): Omit redundant initialization.
12128         * terminal.c (create_terminal): Likewise.
12130 2012-06-26  Dmitry Antipov  <dmantipov@yandex.ru>
12132         * term.c (delete_tty): Remove redundant call to memset.
12134 2012-06-26  Dmitry Antipov  <dmantipov@yandex.ru>
12136         * alloc.c: Remove build_string.
12137         * lisp.h: Define build_string as static inline.  This provides
12138         a better opportunity to optimize away calls to strlen when the
12139         function is called with compile-time constant argument.
12140         * image.c (imagemagick_error): Convert to build_string.
12141         * w32proc.c (sys_spawnve): Likewise.
12142         * xterm.c (x_term_init): Likewise.
12144 2012-06-26  Paul Eggert  <eggert@cs.ucla.edu>
12146         Use sprintf return value instead of invoking strlen on result.
12147         In the old days this wasn't portable, since some sprintf
12148         implementations returned char *.  But they died out years ago and
12149         Emacs already assumes sprintf returns int.
12150         Similarly for float_to_string.
12151         This patch speeds up (number-to-string 1000) by 3% on Fedora 15 x86-64.
12152         * ccl.c (ccl_driver):
12153         * character.c (string_escape_byte8):
12154         * data.c (Fnumber_to_string):
12155         * doprnt.c (doprnt):
12156         * print.c (print_object):
12157         * xdisp.c (message_dolog):
12158         * xfns.c (syms_of_xfns):
12159         Use sprintf or float_to_string result to avoid need to call strlen.
12160         * data.c (Fnumber_to_string):
12161         Use make_unibyte_string, since the string must be ASCII.
12162         * lisp.h, print.c (float_to_string): Now returns int length.
12163         * term.c (produce_glyphless_glyph):
12164         Use sprintf result rather than recomputing it.
12166         Clean out last vestiges of the old HAVE_CONFIG_H stuff.
12167         * Makefile.in (ALL_CFLAGS):
12168         * makefile.w32-in (LOCAL_FLAGS): Remove -DHAVE_CONFIG_H.
12169         * gmalloc.c, regex.c: Include <config.h> unconditionally.
12171 2012-06-25  Dmitry Antipov  <dmantipov@yandex.ru>
12173         * dispextern.h (xstrcasecmp): Define to library function
12174         strcasecmp if available.
12175         * xfaces.c: Do not use xstrcasecmp if strcasecmp is available.
12177 2012-06-25  Andreas Schwab  <schwab@linux-m68k.org>
12179         * keyboard.c (menu_bar_items, menu_bar_item, read_key_sequence):
12180         Avoid comma operator.
12181         * menu.c (push_submenu_start, push_submenu_end)
12182         (push_left_right_boundary, push_menu_pane): Likewise.
12183         * msdos.c (dos_rawgetc): Likewise.
12185 2012-06-25  Dmitry Antipov  <dmantipov@yandex.ru>
12187         * xfns.c (xic_create_fontsetname): Remove redundant calls
12188         to memset.
12190 2012-06-25  Paul Eggert  <eggert@cs.ucla.edu>
12192         * gtkutil.c (get_utf8_string): Remove redundant assignment.
12193         sprintf already null-terminates its output.
12195         * xfns.c (x_window): Remove redundant cast.
12197 2012-06-25  Dmitry Antipov  <dmantipov@yandex.ru>
12199         * xmenu.c (xmenu_show, xdialog_show): Explicit cast from
12200         `const char *' to `char *' to avoid compiler warning.
12202 2012-06-24  Paul Eggert  <eggert@cs.ucla.edu>
12204         * xterm.c (x_term_init): Build proper-sized _XSETTINGS_Snnn string
12205         instead of truncating it to 63 (admittedly a generous limit).
12207         * process.c: Fix spelling and caps in comments.
12209 2012-06-24  Dan Nicolaescu  <dann@ics.uci.edu>
12211         * emacs.c (setpgrp): Remove definition, unused.
12212         * sysdep.c (setpgrp): Remove definition, not used in this file.
12214 2012-06-24  Juanma Barranquero  <lekktu@gmail.com>
12216         * makefile.w32-in: Update dependencies.
12218 2012-06-24  Eli Zaretskii  <eliz@gnu.org>
12220         * makefile.w32-in (TIMESPEC_H): Remove nt/inc/sys/time.h.
12221         (SYSTIME_H): Add nt/inc/sys/time.h.
12223         * systime.h [WINDOWSNT]: Include sys/time.h.
12225         * s/ms-w32.h (struct timespec): Definition moved from
12226         nt/inc/sys/time.h.  Suggested by Paul Eggert <eggert@cs.ucla.edu>.
12228 2012-06-24  Paul Eggert  <eggert@cs.ucla.edu>
12230         Switch from NO_RETURN to C11's _Noreturn (Bug#11750).
12231         * buffer.h (buffer_slot_type_mismatch):
12232         * data.c (arith_error) [!FORWARD_SIGNAL_TO_MAIN_THREAD]:
12233         * eval.c (unwind_to_catch):
12234         * image.c (my_png_error, my_error_exit):
12235         * keyboard.c (quit_throw_to_read_char, user_error)
12236         (Fexit_recursive_edit, Fabort_recursive_edit):
12237         * lisp.h (die, args_out_of_range, args_out_of_range_3)
12238         (wrong_type_argument, buffer_overflow, __executable_start)
12239         (memory_full, buffer_memory_full, string_overflow, Fthrow)
12240         (xsignal, xsignal0, xsignal1, xsignal2, xsignal3, signal_error)
12241         (error, verror, nsberror, report_file_error, Ftop_level, Fkill_emacs)
12242         (fatal):
12243         (child_setup) [!DOS_NT]:
12244         * lread.c (end_of_file_error, invalid_syntax):
12245         * process.c (send_process_trap) [!FORWARD_SIGNAL_TO_MAIN_THREAD]:
12246         * puresize.h (pure_write_error):
12247         * search.c (matcher_overflow):
12248         * sound.c (sound_perror, alsa_sound_perror):
12249         * sysdep.c, syssignal.h (croak):
12250         * term.c (maybe_fatal, vfatal):
12251         * textprop.c (text_read_only):
12252         * undo.c (user_error):
12253         * unexmacosx.c (unexec_error):
12254         * xterm.c (x_ins_del_lines, x_delete_glyphs):
12255         Use _Noreturn rather than NO_RETURN.
12256         No need for separate decl merely because of _Noreturn.
12257         * sound.c (sound_warning, parse_sound):
12258         Remove unnecessary forward decls.
12260 2012-06-24  Paul Eggert  <eggert@cs.ucla.edu>
12262         Fix bug when time_t is unsigned and as wide as intmax_t (Bug#9000).
12263         * lisp.h (WAIT_READING_MAX): New macro.
12264         * dispnew.c (Fsleep_for, sit_for):
12265         * keyboard.c (kbd_buffer_get_event):
12266         * process.c (Faccept_process_output):
12267         Use it to avoid bogus compiler warnings with obsolescent GCC versions.
12268         This improves on the previous patch, which introduced a bug
12269         when time_t is unsigned and as wide as intmax_t.
12270         See <http://bugs.gnu.org/9000#51>.
12272 2012-06-23  Eli Zaretskii  <eliz@gnu.org>
12274         * dispnew.c (sit_for, Fsleep_for):
12275         * keyboard.c (kbd_buffer_get_event):
12276         * process.c (Faccept_process_output): Avoid compiler warnings when
12277         comparing a 32-bit time_t with a 64-bit INTMAX_MAX.
12279 2012-06-23  Juanma Barranquero  <lekktu@gmail.com>
12281         * makefile.w32-in: Update dependencies.
12283         * w32.c (ltime): Add return type and declare static.
12284         (w32_get_internal_run_time): Remove usused variable `time_100ns'.
12286 2012-06-23  Paul Eggert  <eggert@cs.ucla.edu>
12288         * sysdep.c [__FreeBSD__]: Fix more recently-introduced typos.
12289         Privately reported by Herbert J. Skuhra.
12290         (make_lisp_timeval) [__FreeBSD__]: Rename from TIMELIST.
12291         All uses changed.
12292         (system_process_attributes) [__FreeBSD__]: Invoke make_lisp_time,
12293         not make_lisp_timeval, when the argument is of type EMACS_TIME.
12295 2012-06-23  Eli Zaretskii  <eliz@gnu.org>
12297         * w32proc.c (Fw32_get_locale_info): Fix an off-by-one error in
12298         last argument of make_unibyte_string.
12300         * keyboard.c (kbd_buffer_get_event): Include the codepage and the
12301         language ID in the event parameters.
12303         * w32term.c (w32_read_socket): Put the new keyboard codepage into
12304         event.code, not the obscure "character set ID".
12306 2012-06-23  Chong Yidong  <cyd@gnu.org>
12308         * xmenu.c (x_menu_wait_for_event): Adapt GTK3 to new xg_select.
12310 2012-06-23  Eli Zaretskii  <eliz@gnu.org>
12312         Fix the MS-Windows build broken by 2012-06-22T21:17:42Z!eggert@cs.ucla.edu.
12313         * w32.c (fdutimens): New function.
12315         * w32proc.c (sys_select): Adapt to change in the EMACS_TIME type.
12317         * s/ms-w32.h (pselect): Redirect to sys_select.
12319         * sysselect.h [WINDOWSNT]: Don't include sys/select.h.
12321         * ralloc.c (r_alloc_inhibit_buffer_relocation): Fix stupid thinko
12322         in the logic of incrementing and decrementing the value of
12323         use_relocatable_buffers.
12325 2012-06-23  Paul Eggert  <eggert@cs.ucla.edu>
12327         * sysdep.c [__FreeBSD__]: Fix recently-introduced typos.
12328         Privately reported by Herbert J. Skuhra.
12329         [__FreeBSD__]: Remove "*/" typo after "#include".
12330         (timeval_to_EMACS_TIME) [__FreeBSD__]: New static function.
12331         (TIMEVAL) [__FreeBSD__]: Now a static function rather than a macro.
12332         (TIMEVAL, system_process_attributes) [__FreeBSD__]:
12333         Don't assume EMACS_TIME and struct timeval are the same type.
12335 2012-06-22  Paul Eggert  <eggert@cs.ucla.edu>
12337         Support higher-resolution time stamps (Bug#9000).
12338         The time stamps are only nanosecond-resolution at the C level,
12339         since that's the best that any real-world system supports now.
12340         But they are picosecond-resolution at the Lisp level, as that's
12341         easy, and leaves room for future OS improvements.
12343         * Makefile.in (LIB_CLOCK_GETTIME): New macro.
12344         (LIBES): Use it.
12346         * alloc.c (Fgarbage_collect): Port to higher-res time stamps.
12347         Don't get current time unless it's needed.
12349         * atimer.c: Include <sys/time.h> unconditionally, since gnulib
12350         now provides it if it's absent.
12351         (start_atimer): Port to higher-res time stamps.
12352         Check for time stamp overflow.  Don't get current time more
12353         often than is needed.
12355         * buffer.h (struct buffer): Buffer modtime now has high resolution.
12356         Include systime.h, not time.h.
12357         (NONEXISTENT_MODTIME_NSECS, UNKNOWN_MODTIME_NSECS): New macros.
12359         * dired.c: Include stat-time.h.
12360         (Ffile-attributes): File times now have higher resolution.
12362         * dispextern.h [HAVE_WINDOW_SYSTEM]: Include systime.h.
12363         (struct image): Timestamp now has higher resolution.
12365         * dispnew.c (PERIODIC_PREEMPTION_CHECKING): Remove, as Emacs always
12366         has at least microseconds now.  All uses removed.
12367         (update_frame, update_single_window, update_window, update_frame_1)
12368         (Fsleep_for, sit_for): Port to higher-resolution time stamps.
12369         (duration_to_sec_usec): Remove; no longer needed.
12371         * editfns.c (time_overflow): Now extern.
12372         (Fcurrent_time, Fget_internal_run_time, make_time, lisp_time_argument)
12373         (float-time, Fformat_time_string, Fcurrent_time_string)
12374         (Fcurrent_time_zone): Accept and generate higher-resolution
12375         time stamps.
12376         (make_time_tail, make_lisp_time, dissassemble_lisp_time)
12377         (decode_time_components, lisp_seconds_argument): New functions.
12378         (make_time): Now static.
12379         (lisp_time_argument): Now returns EMACS_TIME.  New arg ppsec.
12380         Report an error if the time is invalid, rather than having the caller
12381         do that.
12383         * fileio.c: Include <stat-time.h>
12384         (Fcopy_file): Copy higher-resolution time stamps.
12385         Prefer to set the time stamp via a file descriptor if that works.
12386         (Fset_file_times, Finsert_file_contents, Fwrite_region)
12387         (Fverify_visited_file_modtime, Fclear_visited_file_modtime)
12388         (Fvisited_file_modtime, Fset_visited_file_modtime):
12389         Support higher-resolution time stamps.
12391         * fns.c (Frandom): Use nanoseconds, not microseconds, for seed.
12393         * gtkutil.c (xg_maybe_add_timer): Port to higher-res time stamps.
12395         * image.c (prepare_image_for_display, clear_image_cache)
12396         (lookup_image): Port to higer-resolution time stamps.
12398         * keyboard.c (start_polling, bind_polling_period):
12399         Check for time stamp overflow.
12400         (read_char, kbd_buffer_get_event, timer_start_idle)
12401         (timer_stop_idle, timer_resume_idle, timer_check_2, timer_check)
12402         (Fcurrent_idle_time, init_keyboard, set_waiting_for_input):
12403         Port to higher-resolution time stamps.  Do not assume time_t is signed.
12404         (decode_timer): New function.  Timers are now vectors of length 9,
12405         not 8, to accommodate the picosecond component.
12406         (timer_check_2): Use it.
12408         * nsterm.m (select_timeout, timeval_subtract): Remove.
12409         (ns_timeout): Use Emacs's facilities for time stamp arithmetic,
12410         as they're a bit more accurate and handle overflow better.
12411         (ns_select): Change prototype to be compatible with pselect.
12412         (ns_select, ns_term_shutdown): Port to ns-resolution time stamps.
12413         * nsterm.h (ns_select): Adjust prototype.
12415         * msdos.c (EMACS_TIME_ZERO_OR_NEG_P): Remove, as it assumes
12416         us-resolution time stamps.
12417         (sys_select): Use the new EMACS_TIME_SIGN macro instead.
12419         * lread.c (read_filtered_event): Port to ns-resolution time stamps.
12421         * lisp.h (time_overflow): New decl.
12422         (wait_reading_process_output): First arg is now intmax_t, not int,
12423         to accommodate larger waits.
12425         * process.h (struct Lisp_Process.read_output_delay):
12426         Now counts nanoseconds, not microseconds.
12427         * process.c (ADAPTIVE_READ_BUFFERING): Don't worry about
12428         EMACS_HAS_USECS.
12429         (READ_OUTPUT_DELAY_INCREMENT, Faccept_process_output)
12430         (wait_reading_process_output):
12431         Port to ns-resolution time stamps.
12432         (Faccept_process_output, wait_reading_process_output):
12433         Check for time stamp overflow.  Do not assume time_t is signed.
12434         (select_wrapper): Remove; we now use pselect.
12435         (Fprocess_attributes): Now generates ns-resolution time stamps.
12437         * sysdep.c: Include utimens.h.  Don't include utime.h
12438         or worry about struct utimbuf; gnulib does that for us now.
12439         (gettimeofday): Remove; gnulib provides a substitute.
12440         (make_timeval): New function.
12441         (set_file_times): Now sets ns-resolution time stamps.
12442         New arg FD; all uses changed.
12443         (time_from_jiffies, ltime_from_jiffies, get_up_time)
12444         (system_process_attributes):
12445         Now returns ns-resolution time stamp.  All uses changed.
12446         Check for time stamp overflow.
12448         * sysselect.h: Don't depend on HAVE_SYS_SELECT_H; gnulib
12449         provides a substitute now.
12451         * systime.h: Include timespec.h rather than sys/time.h and time.h,
12452         since it guarantees struct timespec.
12453         (EMACS_TIME): Now struct timespec, so that we can support
12454         ns-resolution time stamps.
12455         (EMACS_TIME_RESOLUTION, LOG10_EMACS_TIME_RESOLUTION): New macros.
12456         (EMACS_HAS_USECS): Remove; Emacs always has sub-second time stamps now.
12457         (EMACS_USECS): Remove.
12458         (EMACS_SET_USECS): The underlying time stamp now has ns resolution,
12459         so multiply the arg by 1000 before storing it.
12460         (EMACS_NSECS, EMACS_SECS_ADDR, EMACS_SET_NSECS, EMACS_SET_SECS_NSECS):
12461         New macros.
12462         (EMACS_GET_TIME, EMACS_ADD_TIME, EMACS_SUB_TIME):
12463         Port to ns-resolution time stamps.
12464         (EMACS_TIME_NEG_P): Remove; replaced by....
12465         (EMACS_TIME_SIGN): New macro.
12466         (EMACS_SET_INVALID_TIME, EMACS_TIME_VALID_P)
12467         (EMACS_TIME_FROM_DOUBLE, EMACS_TIME_TO_DOUBLE): New macros.
12468         (set_file_times, make_time, lisp_time_argument): Adjust signature.
12469         (make_timeval, make_lisp_time, decode_time_components): New decls.
12470         (EMACS_TIME_CMP): Remove; no longer used.  Plus, it was buggy, in
12471         that it mishandled time_t overflow.  You can't compare by subtracting!
12472         (EMACS_TIME_EQ, EMACS_TIME_NE, EMACS_TIME_GT, EMACS_TIME_GE)
12473         (EMACS_TIME_LT, EMACS_TIME_LE): Rewrite in terms of timespec_cmp.
12475         * term.c: Include <sys/time.h>.
12476         (timeval_to_Time): New function, for proper overflow wraparound.
12477         (term_mouse_position, term_mouse_click): Use it.
12479         * undo.c (record_first_change): Support higher-resolution time stamps
12480         in the undo buffer.
12481         (Fprimitive_undo): Use them when restoring time stamps.
12483         * w32.c (ltime, U64_TO_LISP_TIME, process_times, emacs_gnutls_pull)
12484         (w32_get_internal_run_time):
12485         Port to higher-resolution Emacs time stamps.
12486         (ltime): Now accepts single 64-bit integer, as that's more convenient
12487         for callers.
12489         * xdisp.c (start_hourglass): Port to ns-resolution time stamps.
12491         * xgselect.c, xgselect.h (xg_select): Add sigmask argument,
12492         for compatibility with pselect.  Support ns-resolution time stamps.
12494         * xmenu.c (x_menu_wait_for_event): Support ns-resolution time stamps.
12496         * xselect.c (wait_for_property_change, x_get_foreign_selection):
12497         Check for time stamp overflow, and support ns-resolution time stamps.
12499         * xterm.c: Don't include sys/time.h; gnulib does that for us now.
12500         Don't worry about whether HAVE_TIMEVAL and HAVE_SELECT are set.
12501         (timeval_subtract): Remove; no longer needed.
12502         (XTflash, XTring_bell, x_wait_for_event):
12503         Port to ns-resolution time stamps.  Don't assume time_t is signed.
12505 2012-06-22  Chong Yidong  <cyd@gnu.org>
12507         * xdisp.c (x_consider_frame_title): Revert last change.
12509 2012-06-22  Eli Zaretskii  <eliz@gnu.org>
12511         * alloc.c (NSTATICS): Enlarge to 0x650.  Otherwise, Emacs compiled
12512         with -DENABLE_CHECKING -DXASSERTS -DGLYPH_DEBUG=1 -DBYTE_CODE_METER
12513         aborts in staticpro during startup.  (Without -DBYTE_CODE_METER,
12514         staticidx goes up to 1597 out of 1600 = 0x640.)
12516 2012-06-20  Paul Eggert  <eggert@cs.ucla.edu>
12518         * fileio.c (Fdefault_file_modes): Block input while fiddling with umask.
12519         Otherwise, the umask might be mistakenly 0 while handling input signals.
12521 2012-06-19  Stefan Monnier  <monnier@iro.umontreal.ca>
12523         * minibuf.c (Fread_string): Bind minibuffer-completion-table.
12525 2012-06-19  Dmitry Antipov  <dmantipov@yandex.ru>
12527         * alloc.c, bytecode.c, ccl.c, coding.c, composite.c, data.c, dosfns.c:
12528         * font.c, image.c, keyboard.c, lread.c, menu.c, minibuf.c, msdos.c:
12529         * print.c, syntax.c, window.c, xmenu.c, xselect.c: Replace direct
12530         access to `contents' member of Lisp_Vector objects with AREF and ASET
12531         where appropriate.
12533 2012-06-19  Chong Yidong  <cyd@gnu.org>
12535         * frame.c (delete_frame): When selecting a frame on a different
12536         text terminal, do not alter the terminal's top-frame.
12538         * xdisp.c (format_mode_line_unwind_data): Record the target
12539         frame's selected window and its terminal's top-frame.
12540         (unwind_format_mode_line): Restore them.
12541         (x_consider_frame_title, display_mode_line, Fformat_mode_line):
12542         Callers changed.
12543         (x_consider_frame_title): Do not condition on HAVE_WINDOW_SYSTEM,
12544         since tty frames can be explicitly named.
12545         (prepare_menu_bars): Likewise.
12547         * term.c (Ftty_top_frame): New function.
12549 2012-06-18  Paul Eggert  <eggert@cs.ucla.edu>
12551         Port byte-code-meter to modern targets.
12552         * bytecode.c (METER_CODE) [BYTE_CODE_METER]: Don't assume
12553         !CHECK_LISP_OBJECT_TYPE && !USE_LSB_TAG.  Problem with
12554         CHECK_LISP_OBJECT_TYPE reported by Dmitry Antipov in
12555         <http://lists.gnu.org/archive/html/emacs-devel/2012-06/msg00282.html>.
12556         (METER_1, METER_2): Simplify.
12558 2012-06-18  Stefan Monnier  <monnier@iro.umontreal.ca>
12560         * data.c (Fdefalias): Return `symbol' (bug#11686).
12562 2012-06-18  Martin Rudalics  <rudalics@gmx.at>
12564         * buffer.c (Fkill_buffer): Don't throw an error when the buffer
12565         gets killed during executing of this function (Bug#11665).
12566         Try to always return Qt when the buffer has been actually killed.
12567         (Vkill_buffer_query_functions): In doc-string say that functions
12568         run by this hook should not change the current buffer.
12570 2012-06-18  Paul Eggert  <eggert@cs.ucla.edu>
12572         Fix recently-introduced process.c problems found by static checking.
12573         * process.c (write_queue_push, write_queue_pop, send_process):
12574         Use ptrdiff_t, not int or EMACS_INT, for buffer lengths and offsets.
12575         (write_queue_pop): Fix pointer signedness problem.
12576         (send_process): Remove unused local.
12578 2012-06-17  Chong Yidong  <cyd@gnu.org>
12580         * xdisp.c (redisplay_internal): No need to redisplay terminal
12581         frames that are not on top.
12583 2012-06-17  Troels Nielsen  <bn.troels@gmail.com>
12585         * process.c (make_process): Initialize write_queue.
12586         (write_queue_push, write_queue_pop): New functions.
12587         (send_process): Use them to maintain correct ordering of process
12588         writes (Bug#10815).
12590 2012-06-17  Paul Eggert  <eggert@cs.ucla.edu>
12592         * lisp.h (eassert): Assume C89 or later.
12593         This removes the need for CHECK.
12594         (CHECK): Remove.  Its comments about always evaluating its
12595         argument were confusing, as 'eassert' typically does not evaluate
12596         its argument.
12598         * coding.c (produce_chars): Use ptrdiff_t, not int.
12600         * xterm.c (x_draw_underwave): Check for integer overflow.
12601         This pacifies gcc 4.7.0 -Wunsafe-loop-optimizations on x86-64.
12603 2012-06-17  Jan Djärv  <jan.h.d@swipnet.se>
12605         * nsterm.m (x_free_frame_resources): Move xfree so freed memory isn't
12606         referenced (Bug#11583).
12608 2012-06-16  Aurelien Aptel  <aurelien.aptel@gmail.com>
12610         Implement wave-style variant of underlining.
12611         * dispextern.h (face_underline_type): New enum.
12612         (face): Add field for underline type.
12613         * nsterm.m (ns_draw_underwave): New function.
12614         (ns_draw_text_decoration): Use it.
12615         * w32term.c (w32_restore_glyph_string_clip, w32_draw_underwave):
12616         New functions.
12617         (x_draw_glyph_string): Use them.
12618         * xfaces.c (Qline, Qwave): New Lisp objects.
12619         (check_lface_attrs, merge_face_ref)
12620         (Finternal_set_lisp_face_attribute, realize_x_face):
12621         Handle wave-style underline face attributes.
12622         * xterm.c (x_draw_underwave): New function.
12623         (x_draw_glyph_string): Use it.
12625 2012-06-16  Juanma Barranquero  <lekktu@gmail.com>
12627         * makefile.w32-in ($(BLD)/emacs.$(O), $(BLD)/fringe.$(O))
12628         ($(BLD)/xml.$(O), $(BLD)/intervals.$(O), $(BLD)/macros.$(O))
12629         ($(BLD)/minibuf.$(O), $(BLD)/regex.$(O), $(BLD)/region-cache.$(O))
12630         ($(BLD)/textprop.$(O), $(BLD)/undo.$(O), $(BLD)/window.$(O))
12631         ($(BLD)/w32select.$(O)): Update dependencies.
12633 2012-06-16  Andreas Schwab  <schwab@linux-m68k.org>
12635         * buffer.h (FETCH_MULTIBYTE_CHAR): Define as inline.
12636         (BUF_FETCH_MULTIBYTE_CHAR): Likewise.
12637         * character.c (_fetch_multibyte_char_p): Remove.
12638         * alloc.c: Include "character.h" before "buffer.h".
12639         * bidi.c: Likewise.
12640         * buffer.c: Likewise.
12641         * bytecode.c: Likewise.
12642         * callint.c: Likewise.
12643         * callproc.c: Likewise.
12644         * casefiddle.c: Likewise.
12645         * casetab.c: Likewise.
12646         * category.c: Likewise.
12647         * cmds.c: Likewise.
12648         * coding.c: Likewise.
12649         * composite.c: Likewise.
12650         * dired.c: Likewise.
12651         * dispnew.c: Likewise.
12652         * doc.c: Likewise.
12653         * dosfns.c: Likewise.
12654         * editfns.c: Likewise.
12655         * emacs.c: Likewise.
12656         * fileio.c: Likewise.
12657         * filelock.c: Likewise.
12658         * font.c: Likewise.
12659         * fontset.c: Likewise.
12660         * fringe.c: Likewise.
12661         * indent.c: Likewise.
12662         * insdel.c: Likewise.
12663         * intervals.c: Likewise.
12664         * keyboard.c: Likewise.
12665         * keymap.c: Likewise.
12666         * lread.c: Likewise.
12667         * macros.c: Likewise.
12668         * marker.c: Likewise.
12669         * minibuf.c: Likewise.
12670         * nsfns.m: Likewise.
12671         * nsmenu.m: Likewise.
12672         * print.c: Likewise.
12673         * process.c: Likewise.
12674         * regex.c: Likewise.
12675         * region-cache.c: Likewise.
12676         * search.c: Likewise.
12677         * syntax.c: Likewise.
12678         * term.c: Likewise.
12679         * textprop.c: Likewise.
12680         * undo.c: Likewise.
12681         * unexsol.c: Likewise.
12682         * w16select.c: Likewise.
12683         * w32fns.c: Likewise.
12684         * w32menu.c: Likewise.
12685         * window.c: Likewise.
12686         * xdisp.c: Likewise.
12687         * xfns.c: Likewise.
12688         * xmenu.c: Likewise.
12689         * xml.c: Likewise.
12690         * xselect.c: Likewise.
12692 2012-06-16  Eli Zaretskii  <eliz@gnu.org>
12694         * xdisp.c (set_cursor_from_row): Don't dereference glyphs_end.
12695         If all the glyphs of the glyph row came from strings, and we have no
12696         cursor positioning clues, put the cursor on the first glyph of the
12697         row.
12698         (handle_face_prop): Use chunk-relative overlay string index when
12699         indexing into it->string_overlays array.  (Bug#11653)
12700         (set_cursor_from_row): Use the leftmost glyph as GLYPH_BEFORE, not
12701         the rightmost.  (Bug#11720)
12703 2012-06-16  Andreas Schwab  <schwab@linux-m68k.org>
12705         * category.h (CHAR_HAS_CATEGORY): Define as inline.
12706         (CATEGORY_MEMBER): Enforce 1/0 value.
12707         * category.c (_temp_category_set): Remove.
12709 2012-06-16  Eli Zaretskii  <eliz@gnu.org>
12711         * window.c (Fdelete_other_windows_internal)
12712         (Fdelete_window_internal): Don't access frame's mouse highlight
12713         info of the initial frame.  (Bug#11677)
12715 2012-06-14  Paul Eggert  <eggert@cs.ucla.edu>
12717         * .gdbinit (xgetint): Fix recently-introduced paren typo.
12718         Assume USE_2_TAGS_FOR_INTS.
12719         (xreload): Adjust $tagmask width to match recent lisp.h change.
12721         Simplify lisp.h in minor ways that should not affect code.
12722         * lisp.h (USE_2_TAGS_FOR_INTS): Remove, as it was always defined.
12723         (LISP_INT_TAG, case_Lisp_Int, LISP_STRING_TAG, LISP_INT_TAG_P)
12724         (LISP_INT1_TAG, enum Lisp_Type, XINT, XUINT, make_number):
12725         Simplify under the assumption that USE_2_TAGS_FOR_INTS is defined.
12726         (INTTYPEBITS): New macro, for clarity.
12727         (INTMASK, MOST_POSITIVE_FIXNUM): Use it.
12728         (LISP_INT1_TAG, LISP_STRING_TAG, LISP_INT_TAG_P):
12729         Simplify now that USE_LSB_TAG is always defined.
12730         (TYPEMASK, XINT) [USE_LSB_TAG]: Remove unnecessary cast.
12731         (make_number) [!USE_LSB_TAG]: Use INTMASK; that's simpler.
12733 2012-06-13  Juanma Barranquero  <lekktu@gmail.com>
12735         * makefile.w32-in ($(BLD)/data.$(O)): Update dependencies.
12737 2012-06-13  Glenn Morris  <rgm@gnu.org>
12739         * s/bsd-common.h (BSD4_3):
12740         * s/usg5-4-common.h (USG5_4): No longer define; unused.
12742 2012-06-13  Andreas Schwab  <schwab@linux-m68k.org>
12744         * lisp.h (Lisp_Object) [CHECK_LISP_OBJECT_TYPE]: Define as struct
12745         instead of union.
12746         (XLI, XIL): Define.
12747         (XHASH, XTYPE, XINT, XUINT, make_number, XSET, XPNTR, XUNTAG):
12748         Use them.
12749         * emacs.c (gdb_use_struct): Rename from gdb_use_union.
12750         * .gdbinit: Check gdb_use_struct instead of gdb_use_union.
12751         * alloc.c (widen_to_Lisp_Object): Remove.
12752         (mark_memory): Use XIL instead of widen_to_Lisp_Object.
12753         * frame.c (delete_frame): Remove outdated comment.
12754         * w32fns.c (Fw32_register_hot_key): Use XLI instead of checking
12755         USE_LISP_UNION_TYPE.
12756         (Fw32_unregister_hot_key): Likewise.
12757         (Fw32_toggle_lock_key): Likewise.
12758         * w32menu.c (add_menu_item): Likewise.
12759         (w32_menu_display_help): Use XIL instead of checking
12760         USE_LISP_UNION_TYPE.
12761         * w32heap.c (allocate_heap): Don't check USE_LISP_UNION_TYPE.
12762         (init_heap): Likewise.
12763         * w32term.c (w32_read_socket): Update comment.
12765 2012-06-13  Glenn Morris  <rgm@gnu.org>
12767         * s/usg5-4-common.h, src/s/unixware.h:
12768         Remove define/undef of HAVE_SYSV_SIGPAUSE (not used since 2010-05-04).
12770         * s/gnu.h (POSIX_SIGNALS): Remove (not used since 2010-05-04).
12772 2012-06-13  Paul Eggert  <eggert@cs.ucla.edu>
12774         USE_LISP_UNION_TYPE + USE_LSB_TAG cleanup (Bug#11604)
12775         * alloc.c (make_number) [!defined make_number]:
12776         Remove, as lisp.h always defines this now.
12777         (mark_maybe_pointer): Simplify since USE_LSB_TAG is always defined now.
12778         (roundup_size): Verify that it is a power of 2.
12779         * data.c (Fmake_variable_buffer_local, Fmake_local_variable):
12780         * ftfont.c (ftfont_driver): Use LISP_INITIALLY_ZERO.
12781         * lisp.h (USE_LSB_TAG): Allow the builder to compile with
12782         -DUSE_LSB_TAG=0, to override the automatically-selected default.
12783         USE_LSB_TAG now is always defined to be either 0 or 1.
12784         All uses changed.
12785         (union Lisp_Object): Don't worry about WORDS_BIGENDIAN; the
12786         code works fine either way, and efficiency is not a concern here,
12787         as the union type is for debugging, not for production.
12788         (LISP_MAKE_RVALUE, make_number) [USE_LISP_UNION_TYPE]:
12789         Use an inline function on all platforms when using the union type,
12790         since this is simpler and 'static inline' can be used portably
12791         within Emacs now.
12792         (LISP_INITIALLY_ZERO): New macro.
12793         (XFASTINT, XSETFASTINT) [USE_LISP_UNION_TYPE]: Remove.
12794         (XSET) [USE_LISP_UNION_TYPE]: Don't overparenthesize.
12796 2012-06-12  Glenn Morris  <rgm@gnu.org>
12798         * s/gnu-kfreebsd.h, s/hpux11.h, s/openbsd.h, s/sol2-10.h: Remove files.
12800         * s/gnu-linux.h (HAVE_PROCFS): Move to configure.
12802         * s/hpux10-20.h, s/openbsd.h, s/usg5-4-common.h:
12803         Move BROKEN_SIGIO to configure.
12805         * s/bsd-common.h, s/darwin.h, s/gnu-kfreebsd.h, s/hpux10-20.h:
12806         Move NO_TERMIO to configure.
12808 2012-06-12  Chong Yidong  <cyd@gnu.org>
12810         * image.c (imagemagick_load_image): Use MagickFlattenImage if
12811         MagickMergeImageLayers is undefined.  Use pixel pusher loop if
12812         MagickExportImagePixels is undefined.
12814 2012-06-12  Paul Eggert  <eggert@cs.ucla.edu>
12816         * image.c (imagemagick_load_image): Remove unused label.
12818 2012-06-11  Glenn Morris  <rgm@gnu.org>
12820         * s/aix4-2.h, s/bsd-common.h, s/cygwin.h, s/darwin.h:
12821         * s/gnu-kfreebsd.h, s/gnu-linux.h, s/gnu.h, s/hpux10-20.h:
12822         * s/irix6-5.h, s/ms-w32.h, s/msdos.h, s/template.h:
12823         * s/usg5-4-common.h: Move SYSTEM_TYPE to configure.
12825 2012-06-11  Stefan Monnier  <monnier@iro.umontreal.ca>
12827         * alloc.c (make_byte_code): New function.
12828         (Fmake_byte_code): Use it.  Don't purify here.
12829         * lread.c (read1): Use it as well to avoid extra allocation.
12831 2012-06-11  Chong Yidong  <cyd@gnu.org>
12833         * image.c (imagemagick_load_image): Implement transparency.
12835 2012-06-10  Andreas Schwab  <schwab@linux-m68k.org>
12837         * regex.c (at_begline_loc_p): Also recognize `(?N:' and correctly
12838         account for preceding backslashes.  (Bug#11663)
12840 2012-06-09  Chong Yidong  <cyd@gnu.org>
12842         * term.c: Support italics in capable terminals (Bug#9652).
12843         (no_color_bit): Replace unused NC_BLINK with NC_ITALIC.
12844         (turn_on_face): Output using TS_enter_italic_mode if available.
12845         Don't handle unused blinking and alt-charset cases.
12846         (turn_off_face): Handle italic case; discard unused tty_blinking_p
12847         and tty_alt_charset_p cases.
12848         (tty_capable_p, init_tty): Support italics.
12850         * termchar.h (struct tty_display_info): Add field for italics.
12851         Remove unused blink field.
12853         * xfaces.c (tty_supports_face_attributes_p, realize_tty_face):
12854         Handle slant.
12856         * dispextern.h: Replace unused TTY_CAP_BLINK with TTY_CAP_ITALIC.
12857         (struct face): Remove unused fields tty_dim_p, tty_blinking_p, and
12858         tty_alt_charset_p.  Add tty_italic_p.
12860 2012-06-09  Michael Albinus  <michael.albinus@gmx.de>
12862         * dbusbind.c (XD_BASIC_DBUS_TYPE): Use dbus_type_is_valid and
12863         dbus_type_is_basic if available.
12864         (xd_extract_signed, xd_extract_unsigned): Rename from
12865         extract_signed and extract_unsigned, respectively.  Adapt callers.
12867 2012-06-09  Chong Yidong  <cyd@gnu.org>
12869         * xfaces.c (face_for_overlay_string): Handle face remapping (Bug#2066).
12871         * fringe.c (Fset_fringe_bitmap_face): Handle the noninteractive
12872         case (Bug#9752).
12874 2012-06-08  Paul Eggert  <eggert@cs.ucla.edu>
12876         * xdisp.c (vmessage): Treat frame message as multibyte.
12877         Without this change, (let ((§ 1)) (make-variable-buffer-local '§))
12878         would generate the diagnostic "Making \302\247 buffer-local while
12879         let-bound!".
12881 2012-06-08  Eli Zaretskii  <eliz@gnu.org>
12883         * dispnew.c (showing_window_margins_p): Undo last change, which
12884         was done due to an inadvertent commit.
12885         (adjust_frame_glyphs_for_frame_redisplay): Do call
12886         showing_window_margins_p.
12888 2012-06-08  Stefan Monnier  <monnier@iro.umontreal.ca>
12890         * eval.c (Fmake_var_non_special): New primitive.
12891         (syms_of_eval): Defsubr it.
12892         * lread.c (syms_of_lread): Mark `values' as lexically scoped.
12894 2012-06-08  Juanma Barranquero  <lekktu@gmail.com>
12896         * dispnew.c (showing_window_margins_p): Wrap in #if 0 to prevent unused
12897         function warning (the only call is inside #if 0 since 2012-06-08T08:44:45Z!eliz@gnu.org).
12899 2012-06-08  Eli Zaretskii  <eliz@gnu.org>
12901         * alloc.c (allocate_vectorlike): Fix last change.
12903 2012-06-08  Dmitry Antipov  <dmantipov@yandex.ru>
12905         Block-based vector allocation of small vectors.
12906         * lisp.h (struct vectorlike_header): New field `nbytes',
12907         adjust comment accordingly.
12908         * alloc.c (enum mem_type): New type `MEM_TYPE_VECTOR_BLOCK'
12909         to denote vector blocks.  Adjust users (live_vector_p,
12910         mark_maybe_pointer, valid_lisp_object_p) accordingly.
12911         (COMMON_MULTIPLE): Move outside #if USE_LSB_TAG.
12912         (VECTOR_BLOCK_SIZE, vroundup, VECTOR_BLOCK_BYTES)
12913         (VBLOCK_BYTES_MIN, VBLOCK_BYTES_MAX, VECTOR_MAX_FREE_LIST_INDEX)
12914         (VECTOR_FREE_LIST_FLAG, ADVANCE, VINDEX, SETUP_ON_FREE_LIST)
12915         (VECTOR_SIZE, VECTOR_IN_BLOCK): New macros.
12916         (roundup_size): New constant.
12917         (struct vector_block): New data type.
12918         (vector_blocks, vector_free_lists, zero_vector): New variables.
12919         (all_vectors): Rename to `large_vectors'.
12920         (allocate_vector_from_block, init_vectors, allocate_vector_from_block)
12921         (sweep_vectors): New functions.
12922         (allocate_vectorlike): Return `zero_vector' as the only vector of
12923         0 items.  Allocate new vector from block if vector size is less than
12924         or equal to VBLOCK_BYTES_MAX.
12925         (Fgarbage_collect): Move all vector sweeping code to sweep_vectors.
12926         (init_alloc_once): Add call to init_vectors.
12928 2012-06-08  Stefan Monnier  <monnier@iro.umontreal.ca>
12930         * eval.c (Fmacroexpand): Stop if the macro returns the same form.
12932 2012-06-07  Paul Eggert  <eggert@cs.ucla.edu>
12934         * doprnt.c (doprnt): Truncate multibyte char correctly.
12935         Without this change, doprnt (buf, 2, "%s", FORMAT_END, AP)
12936         would mishandle a string argument "Xc" if X was a multibyte
12937         character of length 2: it would truncate after X's first byte
12938         rather than including all of X.
12940 2012-06-06  Chong Yidong  <cyd@gnu.org>
12942         * buffer.c (word_wrap): Doc fix.
12944 2012-06-04  Paul Eggert  <eggert@cs.ucla.edu>
12946         * xdisp.c (note_mode_line_or_margin_highlight): Pacify gcc -Wall.
12948 2012-06-03  Glenn Morris  <rgm@gnu.org>
12950         * xdisp.c (tool-bar-style): Doc fix.
12952 2012-06-03  Ulrich Müller  <ulm@gentoo.org>
12954         * Makefile.in (PAXCTL): Define.
12955         (temacs$(EXEEXT)): Disable memory randomization for the temacs
12956         binary via PaX flags if the paxctl utility is available.
12957         (emacs$(EXEEXT), bootstrap-emacs$(EXEEXT)):
12958         Restore PaX flags to their default.  (Bug#11398)
12960 2012-06-03  Chong Yidong  <cyd@gnu.org>
12962         * xdisp.c (decode_mode_spec_coding): Display a space for a unibyte
12963         buffer (Bug#11226).
12965 2012-06-03  Chong Yidong  <cyd@gnu.org>
12967         * xdisp.c (calc_pixel_width_or_height): Use Fbuffer_local_value.
12968         (note_mode_line_or_margin_highlight): If there is no help echo,
12969         use mode-line-default-help-echo.  Handle the case where the mouse
12970         position is past the end of the mode line string.
12972         * buffer.c (buffer_local_value_1): New function, split from
12973         Fbuffer_local_value; can return Qunbound.
12974         (Fbuffer_local_value): Use it.
12975         (Vmode_line_format): Docstring tweaks.
12977 2012-06-02  Paul Eggert  <eggert@cs.ucla.edu>
12979         * sysdep.c (system_process_attributes): Improve comment.
12981 2012-06-02  Stefan Monnier  <monnier@iro.umontreal.ca>
12983         * keyboard.c: Export real-this-command to Elisp.
12984         (syms_of_keyboard): Rename real_this_command to Vreal_this_command
12985         and DEFVAR it.  Update all users.
12987 2012-06-02  Paul Eggert  <eggert@cs.ucla.edu>
12989         * minibuf.c (Fassoc_string): Remove duplicate declaration.
12991         * sysdep.c (system_process_attributes) [SOLARIS2 && HAVE_PROCFS]:
12992         Convert pctcpu and pctmem to Lisp float properly.
12993         Let the compiler fold better, as 100.0/0x8000 is exact.
12995 2012-06-02  Andreas Schwab  <schwab@linux-m68k.org>
12997         * alloc.c (CONS_BLOCK_SIZE): Account for padding at the end of
12998         cons_block.
13000 2012-06-01  Paul Eggert  <eggert@cs.ucla.edu>
13002         * xfns.c (x_set_tool_bar_lines) [USE_GTK]: Adjust to bitfield change.
13004 2012-06-01  Dmitry Antipov  <dmantipov@yandex.ru>
13006         For a 'struct window', replace some Lisp_Object fields to
13007         bitfields where appropriate, remove unused fields.
13008         * window.h (struct window): Remove unused 'last_mark_x' and
13009         'last_mark_y' fields.  Rename 'mini_p' field to 'mini',
13010         change its type from Lisp_Object to bitfield.
13011         Change type of 'force_start', 'optional_new_start',
13012         'last_had_star', 'update_mode_line' and 'start_at_line_beg'
13013         fields from Lisp_Object to bitfield.  Adjust users accordingly.
13015 2012-05-31  Paul Eggert  <eggert@cs.ucla.edu>
13017         Pacify gcc -Wdouble-precision when using Xaw.
13018         * xterm.c (xaw_jump_callback, x_set_toolkit_scroll_bar_thumb)
13019         [HAVE_X_WINDOWS && USE_TOOLKIT_SCROLL_BARS && !USE_MOTIF && !USE_GTK]:
13020         Use 'float' consistently, rather than 'float' in most places
13021         and 'double' in a couple of places.
13023 2012-05-31  Eli Zaretskii  <eliz@gnu.org>
13025         * xdisp.c (handle_stop): Detect whether we have overlay strings
13026         loaded by testing it->current.overlay_string_index to be
13027         non-negative, instead of checking whether n_overlay_strings is
13028         positive.  (Bug#11587)
13030 2012-05-31  Chong Yidong  <cyd@gnu.org>
13032         * keymap.c (describe_map_tree): Revert 2011-07-07 change (Bug#1169).
13034         * doc.c (Fsubstitute_command_keys): Doc fix.
13036 2012-05-31  Eli Zaretskii  <eliz@gnu.org>
13038         * search.c (search_buffer): Remove calls to
13039         r_alloc_inhibit_buffer_relocation, as it is now called by
13040         maybe_unify_char, which was the cause of relocation of buffer text
13041         in bug#11519.
13043 2012-05-31  Eli Zaretskii  <eliz@gnu.org>
13045         * charset.c (maybe_unify_char): Inhibit relocation of buffer text
13046         for the duration of call to load_charset, to avoid problems with
13047         callers of maybe_unify_char that access buffer text through C
13048         pointers.
13050         * ralloc.c (r_alloc_inhibit_buffer_relocation): Increment and
13051         decrement the inhibition flag, instead of just setting or
13052         resetting it.
13054 2012-05-31  Paul Eggert  <eggert@cs.ucla.edu>
13056         Remove obsolete '#define static' cruft.
13057         * s/hpux10-20.h (_FILE_OFFSET_BITS): Don't #undef.
13058         This #undef was "temporary" in 2000; it is no longer needed
13059         now that '#define static' has gone away.
13060         * xfns.c, xterm.h (gray_bitmap_width, gray_bitmap_height)
13061         (gray_bitmap_bits): Remove; no longer needed.
13062         All uses replaced with definiens.
13063         * xterm.c: Include "bitmaps/gray.xbm".
13065 2012-05-30  Paul Eggert  <eggert@cs.ucla.edu>
13067         Clean up __executable_start, monstartup when --enable-profiling.
13068         The following changes affect the code only when profiling.
13069         * dispnew.c (__executable_start): Rename from safe_bcopy.
13070         Define only on platforms that need it.
13071         * emacs.c: Include <sys/gmon.h> when profiling.
13072         (_mcleanup): Remove decl, since <sys/gmon.h> does it now.
13073         (__executable_start): Remove decl, since lisp.h does it now.
13074         (safe_bcopy): Remove decl; no longer has that name.
13075         (main): Coalesce #if into single bit of code, for simplicity.
13076         Cast pointers to uintptr_t, since standard libraries want integers
13077         and not pointers.
13078         * lisp.h (__executable_start): New decl.
13080 2012-05-31  Glenn Morris  <rgm@gnu.org>
13082         * image.c (Fimagemagick_types): Doc fix.
13084 2012-05-30  Jim Meyering  <meyering@redhat.com>
13086         * callproc.c (Fcall_process_region): Include directory component
13087         in mkstemp error message (Bug#11586).
13089 2012-05-30  Paul Eggert  <eggert@cs.ucla.edu>
13091         * alloc.c, lisp.h (make_pure_vector): Now static.
13093 2012-05-30  Stefan Monnier  <monnier@iro.umontreal.ca>
13095         * eval.c (Fdefun, Fdefmacro, Vmacro_declaration_function):
13096         Move to byte-run.el.
13097         (Fautoload): Do the hash-doc more carefully.
13098         * data.c (Fdefalias): Purify definition, except for keymaps.
13099         (Qdefun): Move from eval.c.
13100         * lisp.h (Qdefun): Remove.
13101         * lread.c (read1): Tiny simplification.
13103 2012-05-29  Troels Nielsen  <bn.troels@gmail.com>
13105         Do not create empty overlays with the evaporate property (Bug#9642).
13106         * buffer.c (Fmove_overlay): Reinstate the earlier fix for
13107         Bug#9642, but explicitly check that the buffer the overlay would
13108         be moved to is live and rearrange lines to make sure that errors
13109         will not put the overlay in an inconsistent state.
13110         (Fdelete_overlay): Cosmetics.
13112 2012-05-28  Eli Zaretskii  <eliz@gnu.org>
13114         * w32term.c (my_bring_window_to_top): New function.
13115         (x_raise_frame): Use handle returned by DeferWindowPos, which
13116         could be different from the original one.
13117         Call my_bring_window_to_top instead of my_set_foreground_window.
13118         (Bug#11513)
13120         * w32fns.c (w32_wnd_proc): Accept and process WM_EMACS_BRINGTOTOP
13121         by calling BringWindowToTop.
13123         * w32term.h (WM_EMACS_BRINGTOTOP): New message.
13124         (WM_EMACS_END): Increase by one.
13126 2012-05-28  Paul Eggert  <eggert@cs.ucla.edu>
13128         * bidi.c (bidi_mirror_char): Put eassert before conversion to int.
13129         This avoids undefined behavior that might cause the eassert
13130         to not catch an out-of-range value.
13132 2012-05-28  Juanma Barranquero  <lekktu@gmail.com>
13134         * makefile.w32-in ($(BLD)/w32inevt.$(O), $(BLD)/w32console.$(O)):
13135         Update dependencies.
13137 2012-05-27  Eli Zaretskii  <eliz@gnu.org>
13139         * bidi.c (bidi_mirror_char): Fix last change.
13141 2012-05-27  Andreas Schwab  <schwab@linux-m68k.org>
13143         * unexmacosx.c (copy_data_segment): Truncate after 16 characters
13144         when referring to sectname field in printf format.
13146 2012-05-27  Paul Eggert  <eggert@cs.ucla.edu>
13148         * lisp.h [REL_ALLOC]: Omit duplicate prototypes.
13149         Only r_alloc_inhibit_buffer_relocation needed to be added;
13150         the others were already declared.
13152         * bidi.c (bidi_mirror_char): Don't possibly truncate the integer
13153         before checking whether it's out of range.  Put the check inside
13154         eassert.  See
13155         <http://lists.gnu.org/archive/html/emacs-devel/2012-05/msg00485.html>.
13157 2012-05-27  Ken Brown  <kbrown@cornell.edu>
13159         * callproc.c (Fcall_process): Restore a line that was accidentally
13160         commented out in the 2011-02-13 change (bug#11547).
13162 2012-05-27  Eli Zaretskii  <eliz@gnu.org>
13164         * lisp.h [REL_ALLOC]: Add prototypes for external functions
13165         defined on ralloc.c.
13167         * buffer.c [REL_ALLOC]: Remove prototypes of
13168         r_alloc_reset_variable, r_alloc, r_re_alloc, and r_alloc_free,
13169         they are now on lisp.h.
13171         * ralloc.c (r_alloc_inhibit_buffer_relocation): New function.
13173         * search.c (search_buffer): Use it to inhibit relocation of buffer
13174         text while re_search_2 is doing its job, because re_search_2 is
13175         passed C pointers to buffer text.  (Bug#11519)
13177         * msdos.c (internal_terminal_init) <Vwindow_system_version>:
13178         Update value to 24.
13180         * xdisp.c (move_it_to): Under MOVE_TO_Y, when restoring iterator
13181         state after an additional call to move_it_in_display_line_to, keep
13182         the values of it->max_ascent and it->max_descent found for the
13183         entire line.
13184         (pos_visible_p): Revert the comparison against bottom_y to what it
13185         was in revid eliz@gnu.org-20120513182235-4p6386j761ld0nwb.
13186         (Bug#11464)
13188 2012-05-26  Paul Eggert  <eggert@cs.ucla.edu>
13190         Fix coding-related core dumps with gcc -ftrapv.
13191         The code was computing A - B, where A and B are pointers, and B is
13192         random garbage.  This can lead to core dumps on platforms that
13193         have special pointer registers, and it also leads to core dumps on
13194         x86-64 when compiled with gcc -ftrapv.  The fix is to compute
13195         A - B only when B is initialized properly.
13196         * coding.c (coding_set_source, coding_set_destination): Return void.
13197         (coding_change_source, coding_change_destinations): New functions,
13198         with the old behaviors of coding_set_source and coding_set_destination.
13199         All callers that need an offset changed to use these new functions.
13201 2012-05-26  Glenn Morris  <rgm@gnu.org>
13203         * nsterm.m (ns_init_paths): Don't mess with INFOPATH.  (Bug#2791)
13205 2012-05-26  Eli Zaretskii  <eliz@gnu.org>
13207         Extend mouse support on W32 text-mode console.
13208         * xdisp.c (draw_row_with_mouse_face):
13209         Call tty_draw_row_with_mouse_face for WINDOWSNT as well.
13211         * w32console.c: Include window.h.
13212         (w32con_write_glyphs_with_face, tty_draw_row_with_mouse_face):
13213         New functions.
13214         (initialize_w32_display): Initialize mouse-highlight data.
13216         * w32inevt.c: Include termchar.h and window.h.
13217         (do_mouse_event): Support mouse-autoselect-window.  When the mouse
13218         moves, call note_mouse_highlight.  If help_echo changed, call
13219         gen_help_event to produce help-echo message in the echo area.
13220         Call clear_mouse_face if mouse_face_hidden is set in the mouse
13221         highlight info.
13223 2012-05-26  Paul Eggert  <eggert@cs.ucla.edu>
13225         * lread.c (read1): Simplify slightly to avoid an overflow warning
13226         with GCC 4.7.0 on x86-64.
13228 2012-05-26  Eli Zaretskii  <eliz@gnu.org>
13230         * bidi.c (bidi_mirror_char): Revert last change: an int is
13231         definitely wide enough here.
13233 2012-05-25  Paul Eggert  <eggert@cs.ucla.edu>
13235         Fix integer width and related bugs (Bug#9874).
13236         * alloc.c (pure_bytes_used_lisp, pure_bytes_used_non_lisp):
13237         (allocate_vectorlike, buffer_memory_full, struct sdata, SDATA_SIZE)
13238         (string_bytes, check_sblock, allocate_string_data):
13239         (compact_small_strings, Fmake_bool_vector, make_string)
13240         (make_unibyte_string, make_multibyte_string)
13241         (make_string_from_bytes, make_specified_string)
13242         (allocate_vectorlike, Fmake_vector, find_string_data_in_pure)
13243         (make_pure_string, make_pure_c_string, make_pure_vector, Fpurecopy)
13244         (mark_vectorlike):
13245         Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
13246         (allocate_pseudovector):
13247         Use int, not EMACS_INT, where int is wide enough.
13248         (inhibit_garbage_collection, Fgarbage_collect):
13249         Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
13250         * bidi.c (bidi_mirror_char): Use EMACS_INT, not int, where
13251         int might not be wide enough.
13252         (bidi_cache_search, bidi_cache_find, bidi_init_it)
13253         (bidi_count_bytes, bidi_char_at_pos, bidi_fetch_char)
13254         (bidi_at_paragraph_end, bidi_find_paragraph_start)
13255         (bidi_paragraph_init, bidi_resolve_explicit, bidi_resolve_weak)
13256         (bidi_level_of_next_char, bidi_move_to_visually_next):
13257         Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
13258         * buffer.c (copy_overlays, Fgenerate_new_buffer_name)
13259         (Fkill_buffer, Fset_buffer_major_mode)
13260         (advance_to_char_boundary, Fbuffer_swap_text)
13261         (Fset_buffer_multibyte, overlays_at, overlays_in)
13262         (overlay_touches_p, struct sortvec, record_overlay_string)
13263         (overlay_strings, recenter_overlay_lists)
13264         (adjust_overlays_for_insert, adjust_overlays_for_delete)
13265         (fix_start_end_in_overlays, fix_overlays_before, modify_overlay)
13266         (Fmove_overlay, Fnext_overlay_change, Fprevious_overlay_change)
13267         (Foverlay_recenter, last_overlay_modification_hooks_used)
13268         (report_overlay_modification, evaporate_overlays, enlarge_buffer_text):
13269         Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
13270         (validate_region): Omit unnecessary test for b <= e,
13271         since that's guaranteed by the previous test.
13272         (adjust_overlays_for_delete): Avoid pos + length overflow.
13273         (Fmove_overlay, Fdelete_overlay, add_overlay_mod_hooklist)
13274         (report_overlay_modification):
13275         Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
13276         (Foverlays_at, Fnext_overlay_change, Fprevious_overlay_change):
13277         Omit pointer cast, which isn't needed anyway, and doesn't work
13278         after the EMACS_INT -> ptrdiff_t change.
13279         (Fmove_overlay): Clip BEG and END to ptrdiff_t to avoid overflow.
13280         * buffer.h: Adjust decls to match defn changes elsewhere.
13281         (struct buffer_text, struct buffer):
13282         Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
13283         Use EMACS_INT, not int, where int might not be wide enough.
13284         * bytecode.c (unmark_byte_stack, exec_byte_code): Use ptrdiff_t,
13285         not int, to avoid needless 32-bit limit on 64-bit hosts.
13286         (exec_byte_code): Use tighter memory-full test, one that checks
13287         for alloca overflow.  Don't compute the address of the object just
13288         before an array, as that's not portable.  Use EMACS_INT, not
13289         ptrdiff_t or int, where ptrdiff_t or int might not be wide enough.
13290         * callint.c (Fcall_interactively):
13291         Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
13292         * callproc.c (call_process_kill, Fcall_process):
13293         Don't assume pid_t fits into an Emacs fixnum.
13294         (call_process_cleanup, Fcall_process, child_setup):
13295         Don't assume pid_t fits into int.
13296         (call_process_cleanup, Fcall_process, delete_temp_file)
13297         (Fcall_process_region):
13298         Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
13299         (Fcall_process): Simplify handling of volatile integers.
13300         Use int, not EMACS_INT, where int will do.
13301         * casefiddle.c (casify_object, casify_region, operate_on_word)
13302         (Fupcase_word, Fdowncase_word, Fcapitalize_word):
13303         Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
13304         (casify_object): Avoid integer overflow when overallocating buffer.
13305         * casetab.c (set_identity, shuffle): Prefer int to unsigned when
13306         either works.  Use lint_assume to convince GCC 4.6.1 that it's OK.
13307         * category.c (Fchar_category_set): Don't assume fixnum fits in int.
13308         * category.h (CATEGORYP): Don't assume arg is nonnegative.
13309         * ccl.c (GET_CCL_INT): Remove; no longer needed, since the
13310         integers are now checked earlier.  All uses replaced with XINT.
13311         (ccl_driver):
13312         Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
13313         For CCL_MapSingle, check that content and value are in int range.
13314         (ccl_driver, Fregister_code_conversion_map):
13315         Check that Vcode_version_map_vector is a vector.
13316         (resolve_symbol_ccl_program): Check that vector header is in range.
13317         Always copy the vector, so that we can check its contents reliably
13318         now rather than having to recheck each instruction as it's being
13319         executed.  Check that vector words fit in 'int'.
13320         (ccl_get_compiled_code, Fregister_ccl_program)
13321         (Fregister_code_conversion_map): Use ptrdiff_t, not int, for
13322         program indexes, to avoid needless 32-bit limit on 64-bit hosts.
13323         (Fccl_execute, Fccl_execute_on_string): Check that initial reg
13324         contents are in range.
13325         (Fccl_execute_on_string): Check that status is in range.
13326         * ccl.h (struct ccl_program.idx): Now ptrdiff_t, not int.
13327         * character.c (char_resolve_modifier_mask, Fchar_resolve_modifiers):
13328         Accept and return EMACS_INT, not int, because callers can pass values
13329         out of 'int' range.
13330         (c_string_width, strwidth, lisp_string_width, chars_in_text)
13331         (multibyte_chars_in_text, parse_str_as_multibyte)
13332         (str_as_multibyte, count_size_as_multibyte, str_to_multibyte)
13333         (str_as_unibyte, str_to_unibyte, string_count_byte8)
13334         (string_escape_byte8, Fget_byte):
13335         Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
13336         (Funibyte_string): Use CHECK_RANGED_INTEGER, not CHECK_NATNUM, to
13337         avoid mishandling large integers.
13338         * character.h: Adjust decls to match defn changes elsewhere.
13339         * charset.c (load_charset_map_from_file, find_charsets_in_text)
13340         (Ffind_charset_region):
13341         Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
13342         (load_charset_map_from_file): Redo idx calculation to avoid overflow.
13343         (load_charset_map_from_vector, Fdefine_charset_internal):
13344         Don't assume fixnum fits in int.
13345         (load_charset_map_from_vector, Fmap_charset_chars):
13346         Remove now-unnecessary CHECK_NATNUMs.
13347         (Fdefine_charset_internal): Check ranges here, more carefully.
13348         Don't rely on undefined behavior with signed left shift overflow.
13349         Don't assume unsigned int fits into fixnum, or that fixnum fits
13350         into unsigned int.  Don't require max_code to be a valid fixnum;
13351         that's not true for gb10830 4-byte on a 32-bit host.  Allow
13352         invalid_code to be a cons, for the same reason.  Require code_offset
13353         to be a character.  Avoid int overflow if max_char is close
13354         to INT_MAX.
13355         (CODE_POINT_TO_INDEX): On 32-bit hosts, return int, not unsigned;
13356         this is intended anyway and avoids some undefined behavior.
13357         (load_charset_map): Pass unsigned, not int, as 2nd arg of
13358         INDEX_TO_CODE_POINT, as that's what it expects.
13359         (Funify_charset, encode_char): Don't stuff unsigned vals into int vars.
13360         * charset.h (DECODE_CHAR): Return int, not unsigned;
13361         this is what was intended anyway, and it avoids undefined behavior.
13362         (CHARSET_OFFSET): Remove unused macro, instead of fixing its
13363         integer-overflow issues.
13364         (ENCODE_CHAR): Return unsigned on all hosts, not just on 32-bit hosts.
13365         Formerly, it returned EMACS_INT on 64-bit hosts in the common case
13366         where the argument is EMACS_INT, and this behavior is not intended.
13367         * chartab.c (Fmake_char_table, Fset_char_table_range)
13368         (uniprop_get_decoder, uniprop_get_encoder):
13369         Don't assume fixnum fits in int.
13370         * cmds.c (move_point): New function, that does the gist of
13371         Fforward_char and Fbackward_char, but does so while checking
13372         for integer overflow more accurately.
13373         (Fforward_char, Fbackward_char): Use it.
13374         (Fforward_line, Fend_of_line, internal_self_insert)
13375         (internal_self_insert):
13376         Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
13377         Fix a FIXME, by checking for integer overflow when calculating
13378         target_clm and actual_clm.
13379         * coding.c (detect_coding_XXX, encode_coding_XXX, CODING_DECODE_CHAR)
13380         (CODING_ENCODE_CHAR, CODING_CHAR_CHARSET, CODING_CHAR_CHARSET_P)
13381         (ASSURE_DESTINATION, coding_alloc_by_realloc)
13382         (coding_alloc_by_making_gap, alloc_destination)
13383         (detect_coding_utf_8, encode_coding_utf_8, decode_coding_utf_16)
13384         (encode_coding_utf_16, detect_coding_emacs_mule)
13385         (decode_coding_emacs_mule, encode_coding_emacs_mule)
13386         (detect_coding_iso_2022, decode_coding_iso_2022)
13387         (encode_invocation_designation, encode_designation_at_bol)
13388         (encode_coding_iso_2022, detect_coding_sjis, detect_coding_big5)
13389         (decode_coding_sjis, decode_coding_big5, encode_coding_sjis)
13390         (encode_coding_big5, detect_coding_ccl, decode_coding_ccl)
13391         (encode_coding_ccl, encode_coding_raw_text)
13392         (detect_coding_charset, decode_coding_charset)
13393         (encode_coding_charset, detect_eol, decode_eol, produce_chars)
13394         (produce_composition, produce_charset, produce_annotation)
13395         (decode_coding, handle_composition_annotation)
13396         (handle_charset_annotation, consume_chars, decode_coding_gap)
13397         (decode_coding_object, encode_coding_object, detect_coding_system)
13398         (Ffind_coding_systems_region_internal, Fcheck_coding_systems_region)
13399         (code_convert_region, code_convert_string)
13400         (Fdefine_coding_system_internal)
13401         (coding_set_source, coding_set_destination):
13402         Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
13403         (setup_iso_safe_charsets, consume_chars, Funencodable_char_position)
13404         (Fdefine_coding_system_internal):
13405         Don't assume fixnums fit in int.
13406         (decode_coding_gap, decode_coding_object, encode_coding_object)
13407         (Fread_coding_system, Fdetect_coding_region)
13408         (Funencodable_char_position, Fcheck_coding_systems_region)
13409         (get_translation, handle_composition_annotation, consume_chars):
13410         Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
13411         (consume_chars): Rewrite to not calculate an address outside buffer.
13412         (Ffind_operation_coding_system): NATNUMP can eval its arg twice.
13413         Don't access memory outside of the args array.
13414         (Fdefine_coding_system_internal): Check for charset-id overflow.
13415         (ENCODE_ISO_CHARACTER): Use unsigned, not int, to store the unsigned
13416         result of ENCODE_CHAR.
13417         * coding.h: Adjust decls to match defn changes elsewhere.
13418         (struct coding_system):
13419         Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
13420         * composite.c (get_composition_id, find_composition)
13421         (run_composition_function, update_compositions)
13422         (compose_text, composition_gstring_put_cache)
13423         (composition_gstring_p, composition_gstring_width)
13424         (fill_gstring_header, fill_gstring_body, autocmp_chars)
13425         (composition_compute_stop_pos, composition_reseat_it)
13426         (composition_update_it, struct position_record)
13427         (find_automatic_composition, composition_adjust_point)
13428         (Fcomposition_get_gstring, Ffind_composition_internal):
13429         Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
13430         (update_compositions):
13431         Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
13432         * composite.h: Adjust decls to match defn changes elsewhere.
13433         (struct composition):
13434         Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
13435         * data.c (let_shadows_buffer_binding_p, let_shadows_global_binding_p):
13436         Do not attempt to compute the address of the object just before a
13437         buffer; this is not portable.
13438         (Faref, Faset):
13439         Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
13440         (Faset): Use int, not EMACS_INT, where int is wide enough.
13441         (Fstring_to_number): Don't assume fixnums fit in int.
13442         (Frem): Don't assume arg is nonnegative.
13443         * dbusbind.c (xd_append_arg): Check for integers out of range.
13444         (Fdbus_call_method): Don't overflow the timeout int.
13445         (extract_signed, extract_unsigned): New functions.
13446         (XD_CHECK_DBUS_SERIAL): Remove; superseded by extract_unsigned.
13447         (xd_get_connection_references): Return ptrdiff_t, not int.
13448         All uses changed.
13449         (xd_signature, xd_append_arg, xd_retrieve_arg, Fdbus_message_internal)
13450         (xd_read_message_1):
13451         Use int, not unsigned, where the dbus API uses int.
13452         (Fdbus_message_internal): Don't overflow mtype.
13453         (syms_of_dbusbind): Allocate right-sized buffer for integers.
13454         * dired.c (directory_files_internal, file_name_completion, scmp)
13455         (file_name_completion_stat):
13456         Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
13457         (file_name_completion): Don't overflow matchcount.
13458         (file_name_completion_stat): Use SAFE_ALLOCA, not alloca.
13459         * dispextern.h: Adjust decls to match defn changes elsewhere.
13460         (struct text_pos, struct glyph, struct bidi_saved_info)
13461         (struct bidi_string_data, struct bidi_it, struct composition_it)
13462         (struct it):
13463         Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
13464         (struct display_pos, struct composition_it, struct it):
13465         Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
13466         * dispnew.c (increment_matrix_positions)
13467         (increment_row_positions, mode_line_string)
13468         (marginal_area_string):
13469         Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
13470         (change_frame_size_1, Fredisplay, Fframe_or_buffer_changed_p):
13471         Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
13472         (duration_to_sec_usec): New function, to check for overflow better.
13473         (Fsleep_for, sit_for): Use it.
13474         * doc.c (get_doc_string, store_function_docstring):
13475         Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
13476         (get_doc_string, Fsnarf_documentation):
13477         Use int, not EMACS_INT, where int is wide enough.
13478         (get_doc_string):
13479         Use SAFE_ALLOCA, not alloca.
13480         Check for overflow when converting EMACS_INT to off_t.
13481         * doprnt.c (doprnt):
13482         Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
13483         * editfns.c (init_editfns, Fuser_uid, Fuser_real_uid):
13484         Don't assume uid_t fits into fixnum.
13485         (buildmark, Fgoto_char, overlays_around, find_field, Fdelete_field)
13486         (Ffield_string, Ffield_string_no_properties, Ffield_beginning)
13487         (Ffield_end, Fconstrain_to_field, Fline_beginning_position)
13488         (Fline_end_position, Fprevious_char, Fchar_after, Fchar_before)
13489         (general_insert_function)
13490         (Finsert_char, make_buffer_string, make_buffer_string_both)
13491         (update_buffer_properties, Fbuffer_substring)
13492         (Fbuffer_substring_no_properties, Fcompare_buffer_substrings)
13493         (Fsubst_char_in_region, check_translation)
13494         (Ftranslate_region_internal, save_restriction_restore, Fformat)
13495         (transpose_markers, Ftranspose_regions):
13496         Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
13497         (clip_to_bounds): Move to lisp.h as an inline function).
13498         (Fconstrain_to_field): Don't assume integers are nonnegative.
13499         (Fline_beginning_position, Fsave_excursion, Fsave_current_buffer):
13500         (Fsubst_char_in_region, Fsave_restriction):
13501         Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
13502         (Femacs_pid): Don't assume pid_t fits into fixnum.
13503         (lo_time): Use int, not EMACS_INT, when int suffices.
13504         (lisp_time_argument): Check for usec out of range.
13505         (Fencode_time): Don't assume fixnum fits in int.
13506         (Fuser_login_name, Fuser_full_name): Signal an error
13507         if a uid argument is out of range, rather than relying on
13508         undefined behavior.
13509         (Fformat_time_string): Remove now-unnecessary check.
13510         lisp_time_argument checks for out-of-range usec now.
13511         Use ptrdiff_t, not size_t, where ptrdiff_t will do.
13512         * emacs.c (gdb_valbits, gdb_gctypebits): Now int, not EMACS_INT.
13513         (gdb_data_seg_bits): Now uintptr_t, not EMACS_INT.
13514         (PVEC_FLAG, gdb_array_mark_flag): Now ptrdiff_t, not EMACS_INT.
13515         (init_cmdargs, Fdump_emacs):
13516         Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
13517         (Fkill_emacs): Don't assume fixnum fits in int; instead, take just
13518         the bottom (typically) 32 bits of the fixnum.
13519         * eval.c (specpdl_size, call_debugger):
13520         Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
13521         (when_entered_debugger, Fbacktrace_debug):
13522         Don't assume fixnum can fit in int.
13523         (Fdefvaralias, Fdefvar): Do not attempt to compute the address of
13524         the object just before a buffer; this is not portable.
13525         (FletX, Flet, Funwind_protect, do_autoload, Feval, funcall_lambda)
13526         (grow_specpdl, unbind_to):
13527         Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
13528         (Fapply, apply_lambda): Don't assume ptrdiff_t can hold fixnum.
13529         (grow_specpdl): Simplify allocation by using xpalloc.
13530         (Fprog1, Fprog2): Don't assume list length fits in int.  Simplify.
13531         * fileio.c (Ffind_file_name_handler, Fcopy_file, Frename_file)
13532         (Finsert_file_contents, Fwrite_region, Fdo_auto_save):
13533         Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
13534         (Ffind_file_name_handler, non_regular_inserted, Finsert_file_contents)
13535         (a_write, e_write):
13536         Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
13537         (Fcopy_file, non_regular_nbytes, read_non_regular)
13538         (Finsert_file_contents):
13539         Use int, not EMACS_INT, where int is wide enough.
13540         (READ_BUF_SIZE): Verify that it fits in int.
13541         (Finsert_file_contents): Check that counts are in proper range,
13542         rather than assuming fixnums fit into ptrdiff_t etc.
13543         Don't assume fixnums fit into int.
13544         * floatfns.c (Fexpt): Avoid undefined signed * signed overflow.
13545         * fns.c (Fcompare_strings, Fstring_lessp, struct textprop_rec, concat)
13546         (string_char_byte_cache_charpos, string_char_byte_cache_bytepos)
13547         (string_char_to_byte, string_byte_to_char)
13548         (string_make_multibyte, string_to_multibyte)
13549         (string_make_unibyte, Fstring_as_unibyte, Fstring_as_multibyte)
13550         (Fstring_to_unibyte, Fsubstring, Fsubstring_no_properties)
13551         (substring_both, Fdelete, internal_equal, Ffillarray)
13552         (Fclear_string, mapcar1)
13553         (Fbase64_encode_region, Fbase64_encode_string, base64_encode_1)
13554         (Fbase64_decode_region, Fbase64_decode_string, base64_decode_1)
13555         (larger_vector, make_hash_table, maybe_resize_hash_table)
13556         (hash_lookup, hash_remove_from_table, hash_clear, sweep_weak_table)
13557         (Fmaphash, secure_hash):
13558         Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
13559         (concat): Check for string index and length overflow.
13560         (Fmapconcat): Don't assume fixnums fit into ptrdiff_t.
13561         (Frequire):
13562         Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
13563         (larger_vector): New API (vec, incr_min, size_max) replaces old
13564         one (vec, new_size, init).  This catches size overflow.
13565         INIT was removed because it was always Qnil.
13566         All callers changed.
13567         (INDEX_SIZE_BOUND): New macro, which calculates more precisely
13568         the upper bound on a hash table index size.
13569         (make_hash_table, maybe_resize_hash_table): Use it.
13570         (secure_hash): Computer start_byte and end_byte only after
13571         they're known to be in ptrdiff_t range.
13572         * font.c (font_intern_prop, font_at, font_range, Ffont_shape_gstring)
13573         (Ffont_get_glyphs, Ffont_at):
13574         Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
13575         (font_style_to_value, font_prop_validate_style, font_expand_wildcards)
13576         (Flist_fonts, Fopen_font):
13577         Don't assume fixnum can fit in int.
13578         (check_gstring): Don't assume index can fit in int.
13579         (font_match_p): Check that fixnum is a character, not a nonnegative
13580         fixnum, since the later code needs to stuff it into an int.
13581         (font_find_for_lface): Use SAFE_ALLOCA_LISP, not alloca.
13582         (font_fill_lglyph_metrics): Use unsigned, not EMACS_INT, to avoid
13583         conversion overflow issues.
13584         (Fopen_font): Check for integer out of  range.
13585         (Ffont_get_glyphs): Don't assume index can fit in int.
13586         * font.h: Adjust decls to match defn changes elsewhere.
13587         * fontset.c (reorder_font_vector): Redo score calculation to avoid
13588         integer overflow.
13589         (num_auto_fontsets, fontset_from_font): Use ptrdiff_t, not
13590         printmax_t, where ptrdiff_t is wide enough.
13591         (Finternal_char_font):
13592         Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
13593         * frame.c (Fset_mouse_position, Fset_mouse_pixel_position)
13594         (Fset_frame_height, Fset_frame_width, Fset_frame_size)
13595         (Fset_frame_position, x_set_frame_parameters)
13596         (x_set_line_spacing, x_set_border_width)
13597         (x_set_internal_border_width, x_set_alpha, x_figure_window_size):
13598         Check that fixnums are in proper range for system types.
13599         (frame_name_fnn_p, Fframe_parameter, Fmodify_frame_parameters):
13600         Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
13601         (Fmodify_frame_parameters): Don't assume fixnum fits in int.
13602         Use SAFE_ALLOCA_LISP, not alloca.
13603         * frame.h (struct frame): Use intptr_t, not EMACS_INT, where
13604         intptr_t is wide enough.
13605         * fringe.c (lookup_fringe_bitmap, get_logical_fringe_bitmap)
13606         (Fdefine_fringe_bitmap): Don't assume fixnum fits in int.
13607         (Ffringe_bitmaps_at_pos): Don't assume index fits in int.
13608         Check for fixnum out of range.
13609         * ftfont.c (ftfont_list): Don't assume index fits in int.
13610         Check that fixnums are in proper range for system types.
13611         (ftfont_shape_by_flt):
13612         Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
13613         * gnutls.c (emacs_gnutls_write, emacs_gnutls_read):
13614         Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
13615         (Fgnutls_error_fatalp, Fgnutls_error_string, Fgnutls_boot):
13616         Check that fixnums are in proper range for system types.
13617         * gnutls.h: Adjust decls to match defn changes elsewhere.
13618         * gtkutil.c (xg_dialog_run):
13619         Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
13620         (update_frame_tool_bar):
13621         Check that fixnums are in proper range for system types.
13622         * image.c (parse_image_spec): Redo count calculation to avoid overflow.
13623         (lookup_image): Check that fixnums are in range for system types.
13624         * indent.c (last_known_column, last_known_column_point):
13625         (current_column_bol_cache):
13626         (skip_invisible, current_column, check_display_width):
13627         (check_display_width, scan_for_column, current_column_1)
13628         (Findent_to, Fcurrent_indentation, position_indentation)
13629         (indented_beyond_p, Fmove_to_column, compute_motion):
13630         (Fcompute_motion, Fvertical_motion):
13631         Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
13632         (last_known_column_modified): Use EMACS_INT, not int.
13633         (check_display_width):
13634         (Fcompute_motion):
13635         Check that fixnums and floats are in proper range for system types.
13636         (compute_motion): Don't assume index or fixnum fits in int.
13637         (compute_motion, Fcompute_motion):
13638         Use int, not EMACS_INT, when it is wide enough.
13639         (vmotion): Omit local var start_hpos that is always 0; that way
13640         we don't need to worry about overflow in expressions involving it.
13641         * indent.h: Adjust decls to match defn changes elsewhere.
13642         (struct position):
13643         Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
13644         Use int, not EMACS_INT, where int is wide enough.
13645         Remove unused members ovstring_chars_done and tab_offset;
13646         all uses removed.
13647         * insdel.c (move_gap, move_gap_both, gap_left, gap_right)
13648         (adjust_markers_for_delete, adjust_markers_for_insert, adjust_point)
13649         (adjust_markers_for_replace, make_gap_larger, make_gap_smaller)
13650         (make_gap, copy_text, insert, insert_and_inherit)
13651         (insert_before_markers, insert_before_markers_and_inherit)
13652         (insert_1, count_combining_before, count_combining_after)
13653         (insert_1_both, insert_from_string)
13654         (insert_from_string_before_markers, insert_from_string_1)
13655         (insert_from_gap, insert_from_buffer, insert_from_buffer_1)
13656         (adjust_after_replace, adjust_after_insert, replace_range)
13657         (replace_range_2, del_range, del_range_1, del_range_byte)
13658         (del_range_both, del_range_2, modify_region)
13659         (prepare_to_modify_buffer, signal_before_change)
13660         (signal_after_change, Fcombine_after_change_execute):
13661         Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
13662         * intervals.c (traverse_intervals, rotate_right, rotate_left)
13663         (balance_an_interval, split_interval_right, split_interval_left)
13664         (find_interval, next_interval, update_interval)
13665         (adjust_intervals_for_insertion, delete_node, delete_interval)
13666         (interval_deletion_adjustment, adjust_intervals_for_deletion)
13667         (static_offset_intervals, offset_intervals)
13668         (merge_interval_right, merge_interval_left, make_new_interval)
13669         (graft_intervals_into_buffer, temp_set_point_both)
13670         (temp_set_point, set_point, adjust_for_invis_intang)
13671         (set_point_both, move_if_not_intangible, get_property_and_range)
13672         (get_local_map, copy_intervals, copy_intervals_to_string)
13673         (compare_string_intervals, set_intervals_multibyte_1):
13674         Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
13675         * intervals.h: Adjust decls to match defn changes elsewhere.
13676         (struct interval):
13677         Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
13678         * keyboard.c (this_command_key_count, this_single_command_key_start)
13679         (before_command_key_count, before_command_echo_length, echo_now)
13680         (echo_length, recursive_edit_1, Frecursive_edit, Ftrack_mouse)
13681         (command_loop_1, safe_run_hooks, read_char, timer_check_2)
13682         (menu_item_eval_property, read_key_sequence, Fread_key_sequence)
13683         (Fread_key_sequence_vector, Fexecute_extended_command, Fsuspend_emacs):
13684         Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
13685         (last_non_minibuf_size, last_point_position, echo_truncate)
13686         (command_loop_1, adjust_point_for_property, read_char, gen_help_event)
13687         (make_lispy_position, make_lispy_event, parse_modifiers_uncached)
13688         (parse_modifiers, modify_event_symbol, Fexecute_extended_command)
13689         (stuff_buffered_input):
13690         Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
13691         (last_auto_save, command_loop_1, read_char):
13692         Use EMACS_INT, not int, to avoid integer overflow.
13693         (record_char): Avoid overflow in total_keys computation.
13694         (parse_modifiers_uncached): Redo index calculation to avoid overflow.
13695         * keyboard.h: Adjust decls to match defn changes elsewhere.
13696         * keymap.c (Fdefine_key, Fcurrent_active_maps, accessible_keymaps_1)
13697         (Fkey_description, Fdescribe_vector, Flookup_key):
13698         Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
13699         (click_position): New function, to check that positions are in range.
13700         (Fcurrent_active_maps):
13701         (describe_command):
13702         Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
13703         (Faccessible_keymaps, Fkey_description):
13704         (preferred_sequence_p):
13705         Don't assume fixnum can fit into int.
13706         (Fkey_description): Use SAFE_ALLOCA_LISP, not alloca.
13707         Check for integer overflow in size calculations.
13708         (Ftext_char_description): Use CHECK_CHARACTER, not CHECK_NUMBER, to
13709         avoid mishandling large integers.
13710         * lisp.h: Adjust decls to match defn changes elsewhere.
13711         (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG, struct Lisp_String)
13712         (struct vectorlike_header, struct Lisp_Subr, struct Lisp_Hash_Table)
13713         (struct Lisp_Marker):
13714         Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
13715         (clip_to_bounds): Now an inline function, moved here from editfns.c.
13716         (GLYPH_CODE_P): Check for overflow in system types, subsuming the
13717         need for GLYPH_CODE_CHAR_VALID_P and doing proper checking ourselves.
13718         All callers changed.
13719         (GLYPH_CODE_CHAR, GLYPH_CODE_FACE):
13720         Assume the arg has valid form, since it always does.
13721         (TYPE_RANGED_INTEGERP): Avoid bug when checking against a wide
13722         unsigned integer system type.
13723         (CHECK_RANGED_INTEGER, CHECK_TYPE_RANGED_INTEGER): New macros.
13724         (struct catchtag, specpdl_size, SPECPDL_INDEX, USE_SAFE_ALLOCA):
13725         Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
13726         (struct catchtag): Use EMACS_INT, not int, since it may be a fixnum.
13727         (duration_to_sec_usec): New decl.
13728         * lread.c (read_from_string_index, read_from_string_index_byte)
13729         (read_from_string_limit, readchar, unreadchar, openp)
13730         (read_internal_start, read1, oblookup):
13731         Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
13732         (Fload, readevalloop, Feval_buffer, Feval_region):
13733         Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
13734         (openp): Check for out-of-range argument to 'access'.
13735         (read1): Use int, not EMACS_INT, where int is wide enough.
13736         Don't assume fixnum fits into int.
13737         Fix off-by-one error that can read outside a buffer.
13738         (read_filtered_event): Use duration_to_sec_usec
13739         to do proper overflow checking on durations.
13740         * macros.c (Fstart_kbd_macro): Use xpalloc to check for overflow
13741         in size calculation.
13742         (Fexecute_kbd_macro):
13743         Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
13744         * marker.c (cached_charpos, cached_bytepos, CONSIDER)
13745         (byte_char_debug_check, buf_charpos_to_bytepos, verify_bytepos)
13746         (buf_bytepos_to_charpos, Fset_marker, set_marker_restricted)
13747         (set_marker_both, set_marker_restricted_both, marker_position)
13748         (marker_byte_position, Fbuffer_has_markers_at):
13749         Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
13750         (Fset_marker, set_marker_restricted): Don't assume fixnum fits in int.
13751         * menu.c (ensure_menu_items): Rename from grow_menu_items.
13752         It now merely ensures that the menu is large enough, without
13753         necessarily growing it, as this avoids some integer overflow issues.
13754         All callers changed.
13755         (keymap_panes, parse_single_submenu, Fx_popup_menu):
13756         Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
13757         (parse_single_submenu, Fx_popup_menu): Don't assume fixnum fits in int.
13758         Use SAFE_ALLOCA_LISP, not alloca.
13759         (find_and_return_menu_selection): Avoid unnecessary casts of pointers
13760         to EMACS_INT.  Check that fixnums are in proper range for system types.
13761         * minibuf.c (minibuf_prompt_width, string_to_object)
13762         (Fminibuffer_contents, Fminibuffer_contents_no_properties)
13763         (Fminibuffer_completion_contents, Ftry_completion, Fall_completions):
13764         Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
13765         (get_minibuffer, read_minibuf_unwind):
13766         Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
13767         (read_minibuf): Omit unnecessary arg BACKUP_N, which is always nil;
13768         this simplifies overflow checking.  All callers changed.
13769         (read_minibuf, Fread_buffer, Ftry_completion, Fall_completions)
13770         (Ftest_completion):
13771         Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
13772         * nsfns.m (check_ns_display_info): Don't assume fixnum fits in long.
13773         (x_set_menu_bar_lines, x_set_tool_bar_lines, Fx_create_frame):
13774         Check that fixnums are in proper range for system types.
13775         (Fx_create_frame, Fx_show_tip):
13776         Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
13777         * nsfont.m (ns_findfonts, nsfont_list_family):
13778         Don't assume fixnum fits in long.
13779         * nsmenu.m (ns_update_menubar, ns_menu_show, ns_popup_dialog):
13780         Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
13781         (ns_update_menubar): Use intptr_t, not EMACS_INT, when intptr_t is
13782         wide enough.
13783         * nsselect.m (ns_get_local_selection, clean_local_selection_data):
13784         Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
13785         * print.c (print_buffer_size, print_buffer_pos, print_buffer_pos_byte)
13786         (PRINTDECLARE, PRINTPREPARE):
13787         (strout, print_string):
13788         (print, print_preprocess, print_check_string_charset_prop)
13789         (print_object):
13790         Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
13791         (PRINTDECLARE):
13792         (temp_output_buffer_setup, Fprin1_to_string, print_object):
13793         Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
13794         (PRINTPREPARE): Use int, not ptrdiff_t, where int is wide enough.
13795         (printchar, strout): Use xpalloc to catch size calculation overflow.
13796         (Fexternal_debugging_output): Don't overflow EMACS_INT->int conversion.
13797         (print_error_message): Use SAFE_ALLOCA, not alloca.
13798         (print_object): Use int, not EMACS_INT, where int is wide enough.
13799         (print_depth, new_backquote_output, print_number_index):
13800         Use ptrdiff_t, not int, where int might not be wide enough.
13801         * process.c (Fdelete_process): Don't assume pid fits into EMACS_INT.
13802         (Fset_process_window_size, Fformat_network_address)
13803         (get_lisp_to_sockaddr_size, set_socket_option, Fmake_network_process)
13804         (sigchld_handler):
13805         Check that fixnums are in proper range for system types.
13806         (Fsignal_process): Simplify by avoiding a goto.
13807         Check for process-ids out of pid_t range rather than relying on
13808         undefined behavior.
13809         (process_tick, update_tick): Use EMACS_INT, not int.
13810         (Fformat_network_address, read_process_output, send_process)
13811         (Fprocess_send_region, status_notify):
13812         Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
13813         (Fformat_network_address, Fmake_serial_process, Fmake_network_process)
13814         (wait_reading_process_output, read_process_output, exec_sentinel):
13815         Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
13816         (conv_lisp_to_sockaddr): Don't assume fixnums fit into int.
13817         (Faccept_process_output): Use duration_to_sec_usec to do proper
13818         overflow checking on durations.
13819         (emacs_get_tty_pgrp, Fprocess_running_child_p, process_send_signal):
13820         Don't assume pid_t fits in int.
13821         * process.h (struct Lisp_Process): Members tick and update_tick
13822         are now of type EMACS_INT, not int.
13823         * puresize.h (PURESIZE_RATIO): Shrink this to 8/6 on 32-bit hosts
13824         configured --with-wide-int.
13825         * scroll.c (calculate_scrolling, calculate_direct_scrolling)
13826         (line_ins_del): Use int, not EMACS_INT, where int is wide enough.
13827         * search.c (looking_at_1, string_match_1):
13828         (fast_string_match, fast_c_string_match_ignore_case)
13829         (fast_string_match_ignore_case, fast_looking_at, scan_buffer)
13830         (scan_newline, find_before_next_newline, search_command)
13831         (trivial_regexp_p, search_buffer, simple_search, boyer_moore)
13832         (set_search_regs, wordify):
13833         (Freplace_match):
13834         (Fmatch_data):
13835         Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
13836         (string_match_1, search_buffer, set_search_regs):
13837         (Fmatch_data):
13838         Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
13839         (wordify): Check for overflow in size calculation.
13840         (Freplace_match): Avoid potential buffer overflow in search_regs.start.
13841         (Fset_match_data): Don't assume fixnum fits in ptrdiff_t.
13842         Check that fixnums are in proper range for system types.
13843         * sound.c (struct sound_device)
13844         (wav_play, au_play, vox_write, alsa_period_size, alsa_write):
13845         Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
13846         (Fplay_sound_internal):
13847         Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
13848         * syntax.c (struct lisp_parse_state, find_start_modiff)
13849         (Finternal_describe_syntax_value, scan_lists, scan_sexps_forward):
13850         (Fparse_partial_sexp):
13851         Don't assume fixnums can fit in int.
13852         (struct lisp_parse_state, find_start_pos, find_start_value)
13853         (find_start_value_byte, find_start_begv)
13854         (update_syntax_table, char_quoted, dec_bytepos)
13855         (find_defun_start, prev_char_comend_first, back_comment):
13856         (scan_words, skip_chars, skip_syntaxes, forw_comment, Fforward_comment)
13857         (scan_lists, Fbackward_prefix_chars, scan_sexps_forward):
13858         Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
13859         (Finternal_describe_syntax_value): Check that match_lisp is a
13860         character, not an integer, since the code stuffs it into int.
13861         (scan_words, scan_sexps_forward):
13862         Check that fixnums are in proper range for system types.
13863         (Fforward_word):
13864         Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
13865         (scan_sexps_forward):
13866         Use CHARACTERP, not INTEGERP, since the value must fit into int.
13867         (Fparse_partial_sexp): Fix doc; element 8 is not ignored.
13868         * syntax.h: Adjust decls to match defn changes elsewhere.
13869         (struct gl_state_s):
13870         Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
13871         (SETUP_SYNTAX_TABLE_FOR_OBJECT): Use PTRDIFF_MAX, not
13872         MOST_POSITIVE_FIXNUM.
13873         * sysdep.c (wait_for_termination_1, wait_for_termination)
13874         (interruptible_wait_for_termination, mkdir):
13875         Don't assume pid_t fits in int; on 64-bit AIX pid_t is 64-bit.
13876         (emacs_read, emacs_write):
13877         Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
13878         (system_process_attributes): Don't assume uid_t, gid_t, EMACS_INT,
13879         and double all fit in int.
13880         * term.c (set_tty_color_mode):
13881         Check that fixnums are in proper range for system types.
13882         * termhooks.h (struct input_event):
13883         Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
13884         * textprop.c (validate_interval_range, interval_of)
13885         (Fadd_text_properties, set_text_properties_1)
13886         (Fremove_text_properties, Fremove_list_of_text_properties)
13887         (Ftext_property_any, Ftext_property_not_all)
13888         (copy_text_properties, text_property_list, extend_property_ranges)
13889         (verify_interval_modification):
13890         Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
13891         (Fnext_single_char_property_change)
13892         (Fprevious_single_char_property_change):
13893         Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
13894         (copy_text_properties):
13895         Check for integer overflow in index calculation.
13896         * undo.c (last_boundary_position, record_point, record_insert)
13897         (record_delete, record_marker_adjustment, record_change)
13898         (record_property_change):
13899         Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
13900         (truncate_undo_list, Fprimitive_undo): Don't assume fixnum fits in int.
13901         Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
13902         * w32fns.c (Fx_create_frame, x_create_tip_frame, Fx_show_tip)
13903         (Fx_hide_tip, Fx_file_dialog):
13904         * w32menu.c (set_frame_menubar):
13905         Use ptrdiff_t, not int, for consistency with rest of code.
13906         * window.c (window_scroll_preserve_hpos, window_scroll_preserve_vpos)
13907         (select_window, Fdelete_other_windows_internal)
13908         (window_scroll_pixel_based, window_scroll_line_based)
13909         (Frecenter, Fset_window_configuration):
13910         Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
13911         (Fset_window_hscroll, run_window_configuration_change_hook)
13912         (set_window_buffer, temp_output_buffer_show, scroll_command)
13913         (Fscroll_other_window, Frecenter):
13914         Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
13915         (Fwindow_line_height, window_scroll, Fscroll_left, Fscroll_right):
13916         Don't assume fixnum fits in int.
13917         (Fset_window_scroll_bars):
13918         Check that fixnums are in proper range for system types.
13919         * xdisp.c (help_echo_pos, pos_visible_p, string_pos_nchars_ahead)
13920         (string_pos, c_string_pos, number_of_chars, init_iterator)
13921         (in_ellipses_for_invisible_text_p, init_from_display_pos)
13922         (compute_stop_pos, next_overlay_change, compute_display_string_pos)
13923         (compute_display_string_end, handle_face_prop)
13924         (face_before_or_after_it_pos, handle_invisible_prop)
13925         (handle_display_prop, handle_display_spec, handle_single_display_spec)
13926         (display_prop_intangible_p, string_buffer_position_lim)
13927         (string_buffer_position, handle_composition_prop, load_overlay_strings)
13928         (get_overlay_strings_1, get_overlay_strings)
13929         (iterate_out_of_display_property, forward_to_next_line_start)
13930         (back_to_previous_visible_line_start, reseat, reseat_to_string)
13931         (get_next_display_element, set_iterator_to_next)
13932         (get_visually_first_element, compute_stop_pos_backwards)
13933         (handle_stop_backwards, next_element_from_buffer)
13934         (move_it_in_display_line_to, move_it_in_display_line)
13935         (move_it_to, move_it_vertically_backward, move_it_by_lines)
13936         (add_to_log, message_dolog, message_log_check_duplicate)
13937         (message2, message2_nolog, message3, message3_nolog
13938         (with_echo_area_buffer, display_echo_area_1, resize_mini_window_1)
13939         (current_message_1, truncate_echo_area, truncate_message_1)
13940         (set_message, set_message_1, store_mode_line_noprop)
13941         (hscroll_window_tree, debug_delta, debug_delta_bytes, debug_end_vpos)
13942         (text_outside_line_unchanged_p, check_point_in_composition)
13943         (reconsider_clip_changes)
13944         (redisplay_internal, set_cursor_from_row, try_scrolling)
13945         (try_cursor_movement, set_vertical_scroll_bar, redisplay_window)
13946         (redisplay_window, find_last_unchanged_at_beg_row)
13947         (find_first_unchanged_at_end_row, row_containing_pos, try_window_id)
13948         (trailing_whitespace_p, find_row_edges, display_line)
13949         (RECORD_MAX_MIN_POS, Fcurrent_bidi_paragraph_direction)
13950         (display_mode_element, store_mode_line_string)
13951         (pint2str, pint2hrstr, decode_mode_spec)
13952         (display_count_lines, display_string, draw_glyphs)
13953         (x_produce_glyphs, x_insert_glyphs)
13954         (rows_from_pos_range, mouse_face_from_buffer_pos)
13955         (fast_find_string_pos, mouse_face_from_string_pos)
13956         (note_mode_line_or_margin_highlight, note_mouse_highlight):
13957         Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
13958         (safe_call, init_from_display_pos, handle_fontified_prop)
13959         (handle_single_display_spec, load_overlay_strings)
13960         (with_echo_area_buffer, setup_echo_area_for_printing)
13961         (display_echo_area, echo_area_display)
13962         (x_consider_frame_title, prepare_menu_bars, update_menu_bar)
13963         (update_tool_bar, hscroll_window_tree, redisplay_internal)
13964         (redisplay_window, dump_glyph_row, display_mode_line)
13965         (Fformat_mode_line, decode_mode_spec, on_hot_spot_p):
13966         (handle_display_spec, display_prop_string_p):
13967         Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
13968         (handle_single_display_spec, build_desired_tool_bar_string)
13969         (redisplay_tool_bar, scroll_window_tree, Fdump_glyph_matrix)
13970         (get_specified_cursor_type):
13971         Check that fixnums are in proper range for system types.
13972         (struct overlay_entry, resize_mini_window, Fdump_glyph_row)
13973         (Flookup_image_map):
13974         Don't assume fixnums fit in int.
13975         (compare_overlay_entries):
13976         Avoid mishandling comparisons due to subtraction overflow.
13977         (load_overlay_strings): Use SAFE_NALLOCA, not alloca.
13978         (last_escape_glyph_face_id, last_glyphless_glyph_face_id):
13979         (handle_tool_bar_click):
13980         Use int, not unsigned, since we prefer signed and the signedness
13981         doesn't matter here.
13982         (get_next_display_element, next_element_from_display_vector):
13983         Use int, not EMACS_INT, when int is wide enough.
13984         (start_hourglass): Use duration_to_sec_usec to do proper
13985         overflow checking on durations.
13986         * xfaces.c (Fbitmap_spec_p):
13987         Check that fixnums are in proper range for system types.
13988         (compare_fonts_by_sort_order):
13989         Avoid mishandling comparisons due to subtraction overflow.
13990         (Fx_family_fonts, realize_basic_faces):
13991         Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
13992         (Fx_family_fonts):
13993         Don't assume fixnum fits in int.
13994         Use SAFE_ALLOCA_LISP, not alloca.
13995         (merge_face_heights): Remove unnecessary cast to EMACS_INT.
13996         (Finternal_make_lisp_face): Don't allocate more than MAX_FACE_ID.
13997         (face_at_buffer_position, face_for_overlay_string)
13998         (face_at_string_position):
13999         Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
14000         (merge_faces): Use int, not EMACS_INT, where int is wide enough.
14001         * xfns.c (x_set_menu_bar_lines, x_set_tool_bar_lines, x_icon_verify)
14002         (Fx_show_tip):
14003         Check that fixnums are in proper range for system types.
14004         (Fx_create_frame, x_create_tip_frame, Fx_show_tip)
14005         (Fx_hide_tip, Fx_file_dialog, Fx_select_font):
14006         Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
14007         (Fx_change_window_property): Don't assume fixnums fit in int.
14008         * xfont.c (xfont_chars_supported):
14009         Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
14010         * xmenu.c (Fx_popup_dialog, set_frame_menubar)
14011         (create_and_show_popup_menu, create_and_show_dialog, xmenu_show):
14012         Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
14013         * xml.c (parse_region):
14014         * xrdb.c (magic_file_p):
14015         Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
14016         * xselect.c (TRACE1): Don't assume pid_t promotes to int.
14017         (x_get_local_selection, x_reply_selection_request)
14018         (x_handle_selection_request, wait_for_property_change):
14019         Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
14020         (selection_data_to_lisp_data): Use short, not EMACS_INT, where
14021         short is wide enough.
14022         (x_send_client_event): Don't assume fixnum fits in int.
14023         * xterm.c (x_x_to_emacs_modifiers):
14024         Don't assume EMACS_INT overflows nicely into int.
14025         (x_emacs_to_x_modifiers): Use EMACS_INT, not int, because values
14026         may come from Lisp.
14027         (handle_one_xevent): NATNUMP can eval its arg twice.
14028         (x_connection_closed):
14029         Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
14030         * xterm.h: Adjust decls to match defn changes elsewhere.
14031         (struct scroll_bar): Use struct vectorlike_header
14032         rather than rolling our own approximation.
14033         (SCROLL_BAR_VEC_SIZE): Remove; not used.
14035 2012-05-25  Glenn Morris  <rgm@gnu.org>
14037         * lisp.mk (lisp): Update for more files being compiled now.
14039 2012-05-25  Stefan Monnier  <monnier@iro.umontreal.ca>
14041         * lread.c: Remove `read_pure' which makes no difference.
14042         (read_pure): Remove var.
14043         (unreadpure): Remove function.
14044         (readevalloop): Don't call read_list with -1 flag.
14045         (read1, read_vector): Don't test read_pure any more.
14046         (read_list): Simplify.
14048         * fileio.c, character.h: Minor style tweaks.
14050 2012-05-24  Dmitry Antipov  <dmantipov@yandex.ru>
14052         * window.h (clip_changed): Remove useless declaration.
14054 2012-05-22  Juanma Barranquero  <lekktu@gmail.com>
14056         * makefile.w32-in: Follow-up to 2012-05-22T16:20:27Z!eggert@cs.ucla.edu.
14057         (TAGS, TAGS-gmake, CONFIG_H): Remove further references to m/intel386.h.
14059 2012-05-22  Paul Eggert  <eggert@cs.ucla.edu>
14061         Remove src/m/*.
14062         This directory predates autoconf and is no longer needed nowadays.
14063         Move its few remaining bits of functionality to where they're needed.
14064         * m/README, m/alpha.h, m/amdx86-64.h, m/ia64.h, m/ibmrs6000.h:
14065         * m/ibms390x.h, m/intel386.h, m/m68k.h, m/macppc.h, m/sparc.h:
14066         * m/template.h: Remove.
14067         * Makefile.in (M_FILE): Remove.  All uses removed.
14068         * alloc.c (POINTERS_MIGHT_HIDE_IN_OBJECTS):
14069         * lisp.h (USE_LSB_TAG):
14070         * mem-limits.h (EXCEEDS_LISP_PTR):
14071         Use VAL_MAX, not VALBITS, in #if.
14072         * lisp.h (EMACS_INT_MAX): New macro, useful in #if.
14073         (EMACS_UINT): Define unconditionally now.
14074         (BITS_PER_CHAR, BITS_PER_SHORT, BITS_PER_INT, BITS_PER_LONG)
14075         (BITS_PER_EMACS_INT): New constants, replacing
14076         what used to be in config.h, but not useful in #if.
14077         (GCTYPEBITS, VALBITS): Define unconditionally, since m/* files don't
14078         define them any more.
14079         (VAL_MAX): New macro.
14080         (VALMASK): Use it.
14081         * puresize.h (PURESIZE_RATIO): Use EMACS_INT_MAX, not
14082         BITS_PER_EMACS_INT, in #if.
14083         * s/aix4-2.h (BROKEN_FIONREAD, BROKEN_SIGAIO, BROKEN_SIGPTY)
14084         (BROKEN_SIGPOLL): Move here from m/ibmrs6000.h, which was removed.
14085         * s/gnu-linux.h (ULIMIT_BREAK_VALUE) [__i386__]:
14086         * s/ms-w32.h (DATA_START):
14087         Move here from removed file m/intel386.h.
14088         * s/gnu.h (NLIST_STRUCT): Remove undef; 'configure' does this.
14089         * s/irix6-5.h (_LP64): Remove; lisp.h no longer needs this.
14091 2012-05-21  Paul Eggert  <eggert@cs.ucla.edu>
14093         Assume C89 or later.
14094         * alloc.c, buffer.c, lisp.h: Replace POINTER_TYPE with void.
14095         * alloc.c (overrun_check_malloc, overrun_check_realloc, xmalloc)
14096         (xrealloc):
14097         * buffer.c (mmap_free_1, mmap_enlarge): Omit needless casts.
14098         * editfns.c, fns.c, gmalloc.c, insdel.c, sysdep.c, termcap.c (NULL):
14099         * textprop.c, tparam.c (NULL): Remove.
14100         * ralloc.c, vm-limit.c (POINTER): Assume void * works.
14101         * regex.c (SIGN_EXTEND_CHAR): Assume signed char works.
14102         * regex.h (_RE_ARGS): Remove.  All uses rewritten to use prototypes.
14103         * unexelf.c (ElfBitsW): Assume c89 preprocessor or better.
14104         * xterm.c (input_signal_count): Assume volatile works.
14106 2012-05-21  Ken Brown  <kbrown@cornell.edu>
14108         * xgselect.c (xg_select): Fix first argument in call to 'select'
14109         (bug#11508).
14111 2012-05-20  Ken Brown  <kbrown@cornell.edu>
14113         * gmalloc.c (_free_internal_nolock, _realloc_internal_nolock)
14114         [CYGWIN]: Cast ptr to (char *) before comparing to _heapbase.
14116 2012-05-19  Ken Brown  <kbrown@cornell.edu>
14118         * xfns.c (x_in_use): Remove `static' qualifier.
14119         * xterm.h (x_in_use): Declare.
14120         * xgselect.c: Include xterm.h.
14121         (xg_select): Test `x_in_use' instead of `inhibit_window_system'
14122         and `display_arg' (bug#9754).
14124 2012-05-19  Paul Eggert  <eggert@cs.ucla.edu>
14126         * s/ms-w32.h (HAVE_GETDOMAINNAME): Remove; not needed.
14128         * m/vax.h: Remove; no longer needed since HAVE_FTIME is being removed.
14129         * s/ms-w32.h (HAVE_FTIME): Remove; not needed.
14131 2012-05-18  Eli Zaretskii  <eliz@gnu.org>
14133         Fix compilation with -DGLYPH_DEBUG=1 on MS-Windows.
14135         * w32term.c [GLYPH_DEBUG]: Add prototype for x_check_font.
14136         (x_check_font) [GLYPH_DEBUG]: New function, copied from xterm.c.
14138         * w32fns.c (unwind_create_frame) [GLYPH_DEBUG]: Fix broken
14139         reference to image_cache->refcount.
14140         (x_create_tip_frame): Fix broken use of FRAME_IMAGE_CACHE.
14142 2012-05-17  Juri Linkov  <juri@jurta.org>
14144         * search.c (Fword_search_regexp, Fword_search_backward)
14145         (Fword_search_forward, Fword_search_backward_lax)
14146         (Fword_search_forward_lax): Move functions to isearch.el
14147         (bug#10145, bug#11381).
14149 2012-05-16  Paul Eggert  <eggert@cs.ucla.edu>
14151         * xgselect.c (xg_select): Just invoke 'select' if -nw (Bug#9754).
14153 2012-05-15  Stefan Monnier  <monnier@iro.umontreal.ca>
14155         * lread.c (init_obarray): Declare Qt and Qnil as special.
14157 2012-05-14  Glenn Morris  <rgm@gnu.org>
14159         * nsterm.m (ns_init_paths): Fix typo ("libexec" not "lib-exec").
14160         Put "libexec" before "bin", for the sake of init_callproc_1.
14162 2012-05-14  Paul Eggert  <eggert@cs.ucla.edu>
14164         * keyboard.c (kbd_buffer_get_event) [!HAVE_DBUS]: Omit unused local.
14166         * unexaix.c: Port to more-recent AIX compilers.
14167         (report_error, report_error_1, make_hdr, copy_sym)
14168         (mark_x, adjust_lnnoptrs, unrelocate_symbols):
14169         Make arguments const char *, not char *, to avoid violations of C
14170         standard and to fix some AIX warnings reported by Gilles Pion.
14172 2012-05-14  Eli Zaretskii  <eliz@gnu.org>
14174         * xdisp.c (handle_stop): Don't call get_overlay_strings_1 if we
14175         already have overlays loaded.
14176         (handle_single_display_spec): Before returning without displaying
14177         fringe bitmap, synchronize the bidi iterator with the main display
14178         iterator, by calling iterate_out_of_display_property.
14179         (iterate_out_of_display_property): Detect buffer iteration by
14180         testing that it->string is a Lisp string.
14181         (get_next_display_element): When the current object is exhausted,
14182         and there's something on it->stack, call set_iterator_to_next to
14183         proceed with what's on the stack, instead of returning zero.
14184         (set_iterator_to_next): If called at the end of a Lisp string,
14185         proceed to consider_string_end without incrementing string
14186         position.  Don't increment display vector index past the end of
14187         the display vector.  (Bug#11417)
14188         (pos_visible_p): Don't report a position visible when move_it_to
14189         stopped at the last line of window, which happens to be scanned
14190         backwards by the bidi iteration.  (Bug#11464)
14192 2012-05-14  Eli Zaretskii  <eliz@gnu.org>
14194         * xdisp.c (handle_single_display_spec): Return 1 for left-margin
14195         and right-margin display specs even if the spec is invalid or we
14196         are on a TTY, and thus unable to display on the fringes.
14197         That's because the text with the property will not be displayed anyway,
14198         so we need to signal to the caller that this is a "replacing"
14199         display spec.  This fixes display when the spec is invalid or we
14200         are on a TTY.
14202 2012-05-14  Paul Eggert  <eggert@cs.ucla.edu>
14204         * unexaix.c (make_hdr): Fix typo in prototype.
14205         This bug broke the build on AIX.  Problem reported by Gilles Pion.
14207 2012-05-14  Michael Albinus  <michael.albinus@gmx.de>
14209         * keyboard.c (kbd_buffer_get_event): Read special events also in
14210         batch mode.  (Bug#11415)
14212 2012-05-12  Glenn Morris  <rgm@gnu.org>
14214         * ns.mk: Update for ns_appbindir no longer having trailing "/".
14216 2012-05-12  Eli Zaretskii  <eliz@gnu.org>
14218         * lisp.mk (lisp): Add newcomment.elc.
14220 2012-05-12  Glenn Morris  <rgm@gnu.org>
14222         * Makefile.in (MKDIR_P): New, set by configure.
14223         * ns.mk (${ns_appdir}, ${ns_appbindir}Emacs): Use $MKDIR_P.
14225 2012-05-11  Paul Eggert  <eggert@cs.ucla.edu>
14227         Remove unused function hourglass_started.
14228         * dispextern.h (hourglass_started):
14229         * w32fns.c (hourglass_started):
14230         * xdisp.c (hourglass_started): Remove.
14232 2012-05-10  Juanma Barranquero  <lekktu@gmail.com>
14234         * makefile.w32-in ($(BLD)/gmalloc.$(O), $(BLD)/w32menu.$(O)):
14235         Update dependencies.
14237 2012-05-10  Paul Eggert  <eggert@cs.ucla.edu>
14239         * xgselect.c (xg_select): Put maxfds+1 into a var.
14240         This is slightly clearer, and pacifies Ubuntu 12.04 gcc.
14242         * sound.c (DEFAULT_ALSA_SOUND_DEVICE): Define only if HAVE_ALSA.
14244 2012-05-10  Dave Abrahams  <dave@boostpro.com>
14246         * filelock.c (syms_of_filelock): New boolean create-lockfiles.
14247         (lock_file): If create_lockfiles is 0, do nothing.  (Bug#11227)
14249 2012-05-09  Michael Albinus  <michael.albinus@gmx.de>
14251         * dbusbind.c (xd_registered_buses): New internal Lisp object.
14252         Rename all occurrences of Vdbus_registered_buses to xd_registered_buses.
14253         (syms_of_dbusbind): Remove declaration of Vdbus_registered_buses.
14254         Initialize xd_registered_buses.
14256 2012-05-09  Paul Eggert  <eggert@cs.ucla.edu>
14258         Untag more efficiently if USE_LSB_TAG.
14259         This is based on a proposal by YAMAMOTO Mitsuharu in
14260         <http://lists.gnu.org/archive/html/emacs-devel/2008-01/msg01876.html>.
14261         For an admittedly artificial (nth 8000 longlist) benchmark on
14262         Fedora 15 x86-64, this yields a 25% CPU speedup.  Also, it shrinks
14263         Emacs's overall text size by 1%.
14264         * lisp.h (XUNTAG): New macro.
14265         (XCONS, XVECTOR, XSTRING, XSYMBOL, XFLOAT, XMISC, XPROCESS, XWINDOW)
14266         (XTERMINAL, XSUBR, XBUFFER, XCHAR_TABLE, XSUB_CHAR_TABLE, XBOOL_VECTOR)
14267         (XSETTYPED_PSEUDOVECTOR, XHASH_TABLE, TYPED_PSEUDOVECTORP): Use it.
14268         * eval.c (Fautoload):
14269         * font.h (XFONT_SPEC, XFONT_ENTITY, XFONT_OBJECT):
14270         * frame.h (XFRAME): Use XUNTAG.
14272         Port recent dbusbind.c changes to 32-bit --with-wide-int.
14273         * dbusbind.c (xd_append_arg, xd_retrieve_arg, Fdbus_message_internal):
14274         Remove unportable assumptions about print widths of types like
14275         dbus_uint32_t.
14276         (xd_get_connection_address, Fdbus_init_bus): Cast Emacs integer to
14277         intptr_t when converting between pointer and integer, to avoid GCC
14278         warnings about wrong width.
14280 2012-05-09  Eli Zaretskii  <eliz@gnu.org>
14282         * w32proc.c (new_child): Force Windows to reserve only 64KB of
14283         stack for each reader_thread, instead of defaulting to 8MB
14284         determined by the linker.  This avoids failures in creating
14285         subprocesses on Windows 7, see the discussion in this thread:
14286         http://lists.gnu.org/archive/html/emacs-devel/2012-03/msg00119.html.
14288 2012-05-07  Jérémy Compostella  <jeremy.compostella@gmail.com>
14290         Fix up display of the *Minibuf-0* buffer in the mini window.
14291         * keyboard.c (read_char): Don't clear the echo area if there's no
14292         message to clear.
14293         * xdisp.c (redisplay_internal): Redisplay the mini window (with the
14294         contents of *Minibuf-0*) if there's no message displayed in its stead.
14296 2012-05-07  Michael Albinus  <michael.albinus@gmx.de>
14298         * dbusbind.c (XD_DEBUG_MESSAGE): Don't print message twice in
14299         batch mode.
14301 2012-05-06  Chong Yidong  <cyd@gnu.org>
14303         * lisp.mk (lisp): Update.
14305 2012-05-05  Jim Meyering  <meyering@redhat.com>
14307         * w32font.c (fill_in_logfont): NUL-terminate a string (Bug#11372).
14309 2012-05-04  Stefan Monnier  <monnier@iro.umontreal.ca>
14311         * data.c (PUT_ERROR): New macro.
14312         (syms_of_data): Use it.  Add new error type `user-error'.
14313         * undo.c (user_error): New function.
14314         (Fprimitive_undo): Use it.
14315         * print.c (print_error_message): Adjust print style for `user-error'.
14316         * keyboard.c (user_error): New function.
14317         (Fexit_recursive_edit, Fabort_recursive_edit): Use it.
14319 2012-05-03  Paul Eggert  <eggert@cs.ucla.edu>
14321         Do not limit current-time-string to years 1000..9999.
14322         * editfns.c (TM_YEAR_IN_ASCTIME_RANGE): Remove.
14323         (Fcurrent_time_string): Support any year that is supported by the
14324         underlying localtime representation.  Don't use asctime, as it
14325         has undefined behavior for years outside the range -999..9999.
14327 2012-05-02  Paul Eggert  <eggert@cs.ucla.edu>
14329         Fix race conditions involving setenv, gmtime, localtime, asctime.
14330         Without this fix, interrupts could mess up code that uses these
14331         nonreentrant functions, since setting TZ invalidates existing
14332         tm_zone or tzname values, and since most of these functions return
14333         pointers to static storage.
14334         * editfns.c (format_time_string, Fdecode_time, Fencode_time)
14335         (Fcurrent_time_string, Fcurrent_time_zone, Fset_time_zone_rule):
14336         Grow the critical sections to include not just invoking
14337         localtime/gmtime, but also accessing these functions' results
14338         including their tm_zone values if any, and any related TZ setting.
14339         (format_time_string): Last arg is now struct tm *, not struct tm **,
14340         so that the struct tm is saved in the critical section.
14341         All callers changed.  Simplify allocation of initial buffer, partly
14342         motivated by the fact that memory allocation needs to be outside
14343         the critical section.
14345 2012-05-02  Dmitry Antipov  <dmantipov@yandex.ru>
14347         * intervals.c (adjust_intervals_for_insertion): Initialize `newi'
14348         with RESET_INTERVAL.
14350         * buffer.c (Fget_buffer_create, Fmake_indirect_buffer):
14351         Remove duplicated buffer name initialization.
14353 2012-05-02  Jim Meyering  <jim@meyering.net>
14355         * xterm.c (x_term_init): Use memcpy instead of strncpy (Bug#11373).
14357         * xfns.c (x_window): Use xstrdup (Bug#11375).
14359 2012-05-02  Eli Zaretskii  <eliz@gnu.org>
14361         * xdisp.c (pos_visible_p): If already at a newline from the
14362         display string before the 'while' loop, don't walk back the glyphs
14363         from it3.glyph_row.  Solves assertion violation when the display
14364         string begins with a newline (egg.el).  (Bug#11367)
14366 2012-05-01  Stefan Monnier  <monnier@iro.umontreal.ca>
14368         * keyboard.c (Fexecute_extended_command, Vsuggest_key_bindings):
14369         Move to simple.el.
14371 2012-05-01  Glenn Morris  <rgm@gnu.org>
14373         * syssignal.h: Remove reference to BROKEN_SIGINFO (last used in
14374         s/ptx4.h), BROKEN_SIGTSTP (last used in m/ustation.h, m/dpx2.h),
14375         and BROKEN_SIGURG (was in s/gnu-linux.h prior to 2008-02-10).
14376         All were removed before 23.1.
14378         * dispnew.c: Remove HAVE_LIBNCURSES test;
14379         it is always true on relevant platforms.
14381         * Makefile.in (LD_SWITCH_X_SITE_RPATH):
14382         Rename from LD_SWITCH_X_SITE_AUX_RPATH.
14384         * Makefile.in (LD_SWITCH_X_SITE_AUX): Remove; no longer used.
14386 2012-04-30  Andreas Schwab  <schwab@linux-m68k.org>
14388         * .gdbinit (xpr): Remove checks for no longer existing misc types.
14389         (xintfwd, xboolfwd, xobjfwd, xbufobjfwd, xkbobjfwd, xbuflocal):
14390         Remove.
14392 2012-04-28  Paul Eggert  <eggert@cs.ucla.edu>
14394         Do not avoid creating empty evaporating overlays (Bug#9642).
14395         * buffer.c (Fmove_overlay): Revert the change of 2012-04-23.
14396         That is, do not delete an evaporating overlay if it becomes
14397         empty after its bounds are adjusted to fit within its buffer.
14398         This fix caused other problems, and I'm reverting it until we get
14399         to the bottom of them.
14401 2012-04-27  Chong Yidong  <cyd@gnu.org>
14403         * xselect.c (x_convert_selection): Initialize a pointer (Bug#11315).
14405 2012-04-27  Eli Zaretskii  <eliz@gnu.org>
14407         * xdisp.c (pos_visible_p): If the window start position is beyond
14408         ZV, start the display from buffer beginning.  Prevents assertion
14409         violation in init_iterator when the minibuffer window is scrolled
14410         via the scroll bar.
14412         * window.c (window_scroll_pixel_based): Likewise.
14414 2012-04-27  Chong Yidong  <cyd@gnu.org>
14416         * keymap.c (where_is_internal): Doc fix (Bug#10872).
14418 2012-04-27  Glenn Morris  <rgm@gnu.org>
14420         * fileio.c (Fcopy_file, Fset_file_selinux_context):
14421         Ignore ENOTSUP failures from setfilecon functions.  (Bug#11245)
14423 2012-04-27  Eli Zaretskii  <eliz@gnu.org>
14425         * dispnew.c (swap_glyph_pointers, copy_row_except_pointers):
14426         Don't overrun array limits of glyph row's used[] array.  (Bug#11288)
14428 2012-04-26  Eli Zaretskii  <eliz@gnu.org>
14430         * xdisp.c (IT_DISPLAYING_WHITESPACE): In addition to the loaded
14431         display element, check also the underlying string or buffer
14432         character.  (Bug#11341)
14434         * w32menu.c: Include w32heap.h.
14435         (add_menu_item): If the call to AppendMenuW (via
14436         unicode_append_menu) fails, disable Unicode menus only if we are
14437         running on Windows 9X/Me.
14439 2012-04-24  Andreas Schwab  <schwab@linux-m68k.org>
14441         * .gdbinit (xpr): Handle USE_2_TAGS_FOR_INTS.
14442         (xgetint): Add missing shift for LSB tags.
14444 2012-04-24  Martin Rudalics  <rudalics@gmx.at>
14446         * keyboard.c (read_char): Don't wipe echo area for select window
14447         events: These might get delayed via `mouse-autoselect-window'
14448         (Bug#11304).
14450 2012-04-24  Juanma Barranquero  <lekktu@gmail.com>
14452         * gnutls.c (init_gnutls_functions): Protect against (unlikely)
14453         manipulation of :loaded-from data.
14455 2012-04-23  Juanma Barranquero  <lekktu@gmail.com>
14457         * gnutls.c (init_gnutls_functions): The value of :loaded-from is
14458         now a cons (bug#11311).
14460 2012-04-23  Paul Eggert  <eggert@cs.ucla.edu>
14462         Do not create empty overlays with the evaporate property (Bug#9642).
14463         * buffer.c (Fmove_overlay): Delete an evaporating overlay
14464         if it becomes empty after its bounds are adjusted to fit within
14465         its buffer.  Without this fix, in a nonempty buffer (let ((o
14466         (make-overlay 1 2))) (overlay-put o 'evaporate t) (move-overlay o 0 1))
14467         yields an empty overlay that has the evaporate property, which is
14468         not supposed to happen.
14470         Fix minor GTK3 problems found by static checking.
14471         * emacsgtkfixed.c (EMACS_TYPE_FIXED, EMACS_FIXED, EmacsFixed)
14472         (EmacsFixedPrivate, EmacsFixedClass, struct _EmacsFixed)
14473         (struct _EmacsFixedClass, emacs_fixed_get_type):
14474         Move decls here from emacsgtkfixed.h, since they needn't be public.
14475         (emacs_fixed_get_type): Now static.
14476         (emacs_fixed_class_init): Omit unused local.
14477         (emacs_fixed_child_type): Remove; unused.
14478         * emacsgtkfixed.h (EMACS_TYPE_FIXED, EMACS_FIXED, EmacsFixed)
14479         (EmacsFixedPrivate, EmacsFixedClass, struct _EmacsFixed)
14480         (struct _EmacsFixedClass): Move to emacsgtkfixed.c.
14481         (EMACS_FIXED_CLASS, EMACS_IS_FIXED, EMACS_IS_FIXED_CLASS)
14482         (EMACS_FIXED_GET_CLASS): Remove; unused.
14483         * gtkutil.c (xg_create_frame_widgets) [!HAVE_GTK3]: Omit unused local.
14485         * keyboard.c (handle_async_input): Define only if SYNC_INPUT || SIGIO.
14486         Problem reported by Juanma Barranquero for Windows -Wunused-function.
14488 2012-04-22  Paul Eggert  <eggert@cs.ucla.edu>
14490         Modernize and clean up gmalloc.c to assume C89 (Bug#9119).
14491         * gmalloc.c (_MALLOC_INTERNAL, _MALLOC_H, _PP, __ptr_t)
14492         (__malloc_size_t, __malloc_ptrdiff_t):
14493         Remove.  All uses removed, replaced by the definiens if needed,
14494         since we can assume C89 or better now.
14495         Include <stdint.h>, for PTRDIFF_MAX, uintptr_t.
14496         (protect_malloc_state, align, get_contiguous_space)
14497         (malloc_atfork_handler_prepare, malloc_atfork_handler_parent)
14498         (malloc_atfork_handler_child, malloc_enable_thread)
14499         (malloc_initialize_1, __malloc_initialize, morecore_nolock)
14500         (_malloc_internal_nolock, _malloc_internal, malloc, _malloc)
14501         (_free, _realloc, _free_internal_nolock, _free_internal, free, cfree)
14502         (special_realloc, _realloc_internal_nolock, _realloc_internal)
14503         (realloc, calloc, __default_morecore, memalign, valloc, checkhdr)
14504         (freehook, mallochook, reallochook, mabort, mcheck, mprobe):
14505         Define using prototypes, not old style.
14506         (align, _malloc_internal_nolock, _free_internal_nolock, memalign):
14507         Don't assume ptrdiff_t and uintptr_t are no wider than unsigned long.
14508         (align): Don't assume that signed integer overflow wraps around.
14509         Omit unused local var.
14510         (malloc_initialize_1, morecore_nolock, _malloc_internal_nolock)
14511         (_free_internal_nolock, memalign, mallochook, reallochook):
14512         Omit no-longer-needed casts.
14513         (valloc): Use getpagesize, not __getpagesize.
14514         (MAGICWORD, MAGICFREE): Now randomish size_t values, not 32-bit.
14515         (struct hdr): The 'magic' member is now size_t, not unsigned long.
14517         * dbusbind.c (XD_DBUS_VALIDATE_OBJECT): Define only if needed.
14519 2012-04-22  Michael Albinus  <michael.albinus@gmx.de>
14521         Move functions from C to Lisp.  Make non-blocking method calls
14522         the default.  Implement further D-Bus standard interfaces.
14524         * dbusbind.c (DBUS_NUM_MESSAGE_TYPES): Declare.
14525         (QCdbus_request_name_allow_replacement)
14526         (QCdbus_request_name_replace_existing)
14527         (QCdbus_request_name_do_not_queue)
14528         (QCdbus_request_name_reply_primary_owner)
14529         (QCdbus_request_name_reply_in_queue)
14530         (QCdbus_request_name_reply_exists)
14531         (QCdbus_request_name_reply_already_owner): Move to dbus.el.
14532         (QCdbus_registered_serial, QCdbus_registered_method)
14533         (QCdbus_registered_signal): New Lisp objects.
14534         (XD_DEBUG_MESSAGE): Use sizeof.
14535         (XD_MESSAGE_TYPE_TO_STRING, XD_OBJECT_TO_STRING)
14536         (XD_DBUS_VALIDATE_BUS_ADDRESS, XD_DBUS_VALIDATE_OBJECT)
14537         (XD_DBUS_VALIDATE_BUS_NAME, XD_DBUS_VALIDATE_PATH)
14538         (XD_DBUS_VALIDATE_INTERFACE, XD_DBUS_VALIDATE_MEMBER): New macros.
14539         (XD_CHECK_DBUS_SERIAL): Rename from CHECK_DBUS_SERIAL_GET_SERIAL.
14540         (xd_signature, xd_append_arg): Allow float for integer types.
14541         (xd_get_connection_references): New function.
14542         (xd_get_connection_address): Rename from xd_initialize.
14543         Return cached address.
14544         (xd_remove_watch): Do not unset $DBUS_SESSION_BUS_ADDRESS.
14545         (xd_close_bus): Rename from Fdbus_close_bus.  Not needed on Lisp
14546         level.
14547         (Fdbus_init_bus): New optional arg PRIVATE.  Cache address.
14548         Return number of refcounts.
14549         (Fdbus_get_unique_name): Make stronger parameter check.
14550         (Fdbus_message_internal): New defun.
14551         (Fdbus_call_method, Fdbus_call_method_asynchronously)
14552         (Fdbus_method_return_internal, Fdbus_method_error_internal)
14553         (Fdbus_send_signal, Fdbus_register_service)
14554         (Fdbus_register_signal, Fdbus_register_method): Move to dbus.el.
14555         (xd_read_message_1): Obey new structure of Vdbus_registered_objects.
14556         (xd_read_queued_messages): Obey new structure of Vdbus_registered_buses.
14557         (Vdbus_compiled_version, Vdbus_runtime_version)
14558         (Vdbus_message_type_invalid, Vdbus_message_type_method_call)
14559         (Vdbus_message_type_method_return, Vdbus_message_type_error)
14560         (Vdbus_message_type_signal): New defvars.
14561         (Vdbus_registered_buses, Vdbus_registered_objects_table):
14562         Adapt docstring.
14564 2012-04-22  Paul Eggert  <eggert@cs.ucla.edu>
14566         Fix GC_MALLOC_CHECK debugging output on 64-bit hosts.
14567         * alloc.c (emacs_blocked_malloc) [GC_MALLOC_CHECK]:
14568         Do not assume ptrdiff_t is the same width as 'int'.
14570         * alloc.c: Handle unusual debugging option combinations.
14571         (GC_CHECK_MARKED_OBJECTS): Undef if ! GC_MARK_STACK,
14572         since the two debugging options are incompatible.
14573         (GC_MALLOC_CHECK): Similarly, undef if GC_CHECK_MARKED_OBJECTS
14574         is defined.
14575         (mem_init, mem_insert, mem_insert_fixup):
14576         Define if GC_MARK_STACK || GC_MALLOC_CHECK.
14577         (NEED_MEM_INSERT): Remove; no longer needed.
14579 2012-04-22  Leo Liu  <sdl.web@gmail.com>
14581         * sysdep.c (list_system_processes): Support Darwin (Bug#5725).
14583 2012-04-22  Paul Eggert  <eggert@cs.ucla.edu>
14585         * sysdep.c [__FreeBSD__]: Minor cleanups.
14586         (list_system_processes, system_process_attributes) [__FreeBSD__]:
14587         Use Emacs indenting style more consistently.  Avoid some casts.
14588         Use 'double' consistently rather than mixing 'float' and 'double'.
14590 2012-04-21  Eduard Wiebe  <usenet@pusto.de>
14592         * sysdep.c (list_system_processes, system_process_attributes):
14593         Add implementation for FreeBSD (Bug#5243).
14595 2012-04-21  Andreas Schwab  <schwab@linux-m68k.org>
14597         * lisp.mk (lisp): Update.
14599 2012-04-20  Paul Eggert  <eggert@cs.ucla.edu>
14601         * keyboard.c (process_pending_signals): Define only if SYNC_INPUT.
14602         It is never used otherwise.
14604 2012-04-20  Stefan Monnier  <monnier@iro.umontreal.ca>
14606         * print.c (print_preprocess): Only check print_depth if print-circle
14607         is nil.
14608         (print_object): Check for cycles even when print-circle is nil and
14609         print-gensym is t, but only check print_depth if print-circle is nil.
14611 2012-04-20  Chong Yidong  <cyd@gnu.org>
14613         * process.c (wait_reading_process_output): If EIO occurs on a pty,
14614         set the status to "failed" and ensure that sentinel is run.
14616 2012-04-20  Glenn Morris  <rgm@gnu.org>
14618         * process.c (Fset_process_inherit_coding_system_flag)
14619         (Fset_process_query_on_exit_flag): Doc fix (mention return value).
14620         (Fmake_network_process, Fmake_serial_process): Doc fix.
14622 2012-04-20  Eli Zaretskii  <eliz@gnu.org>
14624         * xdisp.c (string_buffer_position_lim): Limit starting position to
14625         BEGV.
14626         (set_cursor_from_row): If called for a mode-line or header-line
14627         row, return zero immediately.
14628         (try_cursor_movement): If inside continuation line, don't back up
14629         farther than the first row after the header line, if any.
14630         Don't consider the header-line row as "partially visible", even if
14631         MATRIX_ROW_PARTIALLY_VISIBLE_P returns non-zero.  (Bug#11261)
14633 2012-04-20  Atsuo Ohki  <ohki@gssm.otsuka.tsukuba.ac.jp>  (tiny change)
14635         * lread.c (lisp_file_lexically_bound_p): Fix hang at ";-*-\n"
14636         (bug#11238).
14638 2012-04-20  Teodor Zlatanov  <tzz@lifelogs.com>
14639 2012-04-18  Paul Eggert  <eggert@cs.ucla.edu>
14641         configure: new option --enable-gcc-warnings (Bug#11207)
14642         * Makefile.in (C_WARNINGS_SWITCH): Remove.
14643         (WARN_CFLAGS, WERROR_CFLAGS): New macros.
14644         (ALL_CFLAGS): Use new macros rather than old.
14645         * process.c: Ignore -Wstrict-overflow to work around GCC bug 52904.
14646         * regex.c: Ignore -Wstrict-overflow.  If !emacs, also ignore
14647         -Wunused-but-set-variable, -Wunused-function, -Wunused-macros,
14648         -Wunused-result, -Wunused-variable.  This should go away once
14649         the Emacs and Gnulib regex code is merged.
14650         (xmalloc, xrealloc): Now static.
14652 2012-04-17  Paul Eggert  <eggert@cs.ucla.edu>
14654         * dired.c (Fsystem_groups): Remove unused local.
14656 2012-04-17  Glenn Morris  <rgm@gnu.org>
14658         * dired.c (Fsystem_users): Doc fix.
14660 2012-04-17  Dmitry Antipov  <dmantipov@yandex.ru>
14662         * dired.c (Fsystem_users, Fsystem_groups): New functions.  (Bug#7900)
14663         (syms_of_dired): Add them.
14665 2012-04-16  Paul Eggert  <eggert@cs.ucla.edu>
14667         Fix minor alloc.c problems found by static checking.
14668         * alloc.c (_malloc_internal, _free_internal) [!DOUG_LEA_MALLOC]:
14669         New extern decls, to avoid calling undeclared functions.
14670         (dont_register_blocks): Define if ((!SYSTEM_MALLOC && !SYNC_INPUT)
14671         && GC_MALLOC_CHECK), not if ((GC_MARK_STACK || defined
14672         GC_MALLOC_CHECK) && GC_MALLOC_CHECK), to match when it's used.
14673         (NEED_MEM_INSERT): New macro.
14674         (mem_insert, mem_insert_fixup) [!NEED_MEM_INSERT]: Remove; unused.
14675         Remove one incorrect comment and fix another.
14677         Fix minor ralloc.c problems found by static checking.
14678         See http://lists.gnu.org/archive/html/emacs-devel/2011-12/msg00720.html
14679         * ralloc.c (ALIGNED, ROUND_TO_PAGE, HEAP_PTR_SIZE)
14680         (r_alloc_size_in_use, r_alloc_freeze, r_alloc_thaw): Remove; unused.
14681         (r_alloc_sbrk): Now static.
14683         Improve ralloc.c interface checking.
14684         See http://lists.gnu.org/archive/html/emacs-devel/2011-12/msg00720.html
14685         * buffer.c (ralloc_reset_variable, r_alloc, r_re_alloc)
14686         (r_alloc_free) [REL_ALLOC]: Move decls from here ...
14687         * lisp.h (r_alloc, r_alloc_free, r_re_alloc, r_alloc_reset_variable)
14688         [REL_ALLOC]: ... to here, to check interface.
14689         * m/ia64.h (r_alloc, r_alloc_free) [REL_ALLOC && !_MALLOC_INTERNAL]:
14690         Remove decls.  This fixes an "It stinks!".
14692         * alloc.c (which_symbols): Fix alignment issue / type clash.
14694 2012-04-15  Andreas Schwab  <schwab@linux-m68k.org>
14696         * lisp.h (struct Lisp_Symbol): Remove explicit padding.
14697         (struct Lisp_Misc_Any): Likewise.
14698         (struct Lisp_Free): Likewise.
14699         * alloc.c (union aligned_Lisp_Symbol): Define.
14700         (SYMBOL_BLOCK_SIZE, struct symbol_block): Use union
14701         aligned_Lisp_Symbol instead of struct Lisp_Symbol.
14702         (union aligned_Lisp_Misc): Define.
14703         (MARKER_BLOCK_SIZE, struct marker_block): Use union
14704         aligned_Lisp_Misc instead of union Lisp_Misc.
14705         (Fmake_symbol, allocate_misc, gc_sweep): Adjust.
14707 2012-04-14  Paul Eggert  <eggert@cs.ucla.edu>
14709         Make GC_MAKE_GCPROS_NOOPS the default (Bug#9926).
14710         * lisp.h (GC_MARK_STACK): Default to GC_MAKE_GCPROS_NOOPS.
14711         * s/cygwin.h, s/darwin.h, s/freebsd.h, s/gnu.h, s/irix6-5.h, s/msdos.h:
14712         * s/netbsd.h, s/sol2-6.h:
14713         Remove definition of GC_MARK_STACK, since the default now works.
14714         * s/aix4-2.h, s/hpux10-20.h, s/unixware.h:
14715         Define GC_MARK_STACK to GC_USE_GCPROS_AS_BEFORE, since that's
14716         no longer the default.
14717         * s/gnu-linux.h (GC_MARK_STACK): Adjust to change in default.
14719 2012-04-14  Atsuo Ohki  <ohki@gssm.otsuka.tsukuba.ac.jp>  (tiny change)
14721         * lread.c (lisp_file_lexically_bound_p):
14722         Fix hang at ";-*-\n" (bug#11238).
14724 2012-04-14  Eli Zaretskii  <eliz@gnu.org>
14726         * xdisp.c (find_last_unchanged_at_beg_row): Don't consider a row
14727         "unchanged" if its end.pos is beyond ZV.  (Bug#11199)
14729 2012-04-14  Jan Djärv  <jan.h.d@swipnet.se>
14731         * nsterm.m (constrainFrameRect): Always constrain when there is only
14732         one screen (Bug#10962).
14734 2012-04-13  Ken Brown  <kbrown@cornell.edu>
14736         * s/cygwin.h (PTY_OPEN): Don't try to close a bogus file descriptor.
14738 2012-04-13  Reuben Thomas  <rrt@sc3d.org>
14740         * indent.c (Fmove_to_column): Change interactive spec (Bug#739).
14742 2012-04-11  Daniel Colascione  <dancol@dancol.org>
14744         * s/cygwin.h: The vfork the #define in cygwin.h was protecting
14745         against is gone.  It's better to use vfork now so that when Cygwin
14746         gains a new, working vfork, we use it automatically (bug#10398).
14748 2012-04-11  Stefan Monnier  <monnier@iro.umontreal.ca>
14750         * window.c (save_window_save): Obey window-point-insertion-type.
14752 2012-04-11  Glenn Morris  <rgm@gnu.org>
14754         * Makefile.in (GNUSTEP_CFLAGS): Rename from C_SWITCH_X_SYSTEM.
14756 2012-04-11  Stefan Monnier  <monnier@iro.umontreal.ca>
14758         * alloc.c (lisp_align_malloc): Remove unneeded prototype.
14760 2012-04-10  Jason S. Cornez  <jcornez@ravenpack.com>  (tiny change)
14762         * keyboard.c: Override inhibit-quit after the third C-g (bug#6585).
14763         (force_quit_count): New var.
14764         (handle_interrupt): Use it.
14766 2012-04-10  Juanma Barranquero  <lekktu@gmail.com>
14768         * w32.c (w32_delayed_load): Record the full path of the library
14769         being loaded (bug#10424).
14771 2012-04-09  Glenn Morris  <rgm@gnu.org>
14773         * doc.c (Fsnarf_documentation): Check variables, functions are bound,
14774         not just in the obarray, before snarfing them.  (Bug#11036)
14776         * Makefile.in ($(leimdir)/leim-list.el):
14777         Pass EMACS rather than BUILT_EMACS.
14779 2012-04-09  Teodor Zlatanov  <tzz@lifelogs.com>
14781         * process.c (make_process):
14782         * process.h: Add integer `gnutls_handshakes_tried' member to
14783         process struct.
14785         * gnutls.h: Add `GNUTLS_EMACS_HANDSHAKES_LIMIT' upper limit.
14786         Add convenience `GNUTLS_LOG2i' macro.
14788         * gnutls.c (gnutls_log_function2i): Convenience log function.
14789         (emacs_gnutls_read): Use new log functions,
14790         `gnutls_handshakes_tried' process member, and
14791         `GNUTLS_EMACS_HANDSHAKES_LIMIT' to limit the number of handshake
14792         attempts per process (connection).
14794 2012-04-09  Chong Yidong  <cyd@gnu.org>
14796         * eval.c (Fuser_variable_p, user_variable_p_eh)
14797         (lisp_indirect_variable): Functions deleted.
14798         (Fdefvar): Caller changed.
14800         * callint.c (Finteractive, Fcall_interactively):
14801         * minibuf.c (Fread_variable): Callers changed.
14803 2012-04-09  Eli Zaretskii  <eliz@gnu.org>
14805         * xdisp.c (set_cursor_from_row): If the display string appears in
14806         the buffer at position that is closer to point than the position
14807         after the display string, display the cursor on the first glyph of
14808         the display string.  Fixes cursor display when a 'display' text
14809         property immediately follows invisible text.  (Bug#11094)
14811 2012-04-09  Paul Eggert  <eggert@cs.ucla.edu>
14813         composite.c: use 'double' consistently
14814         * composite.c (get_composition_id): Use 'double' consistently
14815         instead of converting 'float' to 'double' and vice versa; this is
14816         easier to understand and avoids a GCC warning.
14818 2012-04-09  Glenn Morris  <rgm@gnu.org>
14820         * Makefile.in: Generate leim-list with bootstrap-emacs, in
14821         preparation for dumping it with emacs.  (Bug#4789)
14822         (leimdir): New variable.
14823         ($(leimdir)/leim-list.el): New rule.
14824         (emacs$(EXEEXT)): Depend on leim-list.el.
14826         * buffer.c (Qucs_set_table_for_input): Remove.  (Bug#9821)
14827         (Fget_buffer_create): Don't call Qucs_set_table_for_input.
14828         (init_buffer_once, syms_of_buffer): Remove Qucs_set_table_for_input.
14830 2012-04-08  Andreas Schwab  <schwab@linux-m68k.org>
14832         * lisp.h (struct Lisp_Symbol): Add explicit padding to ensure
14833         proper alignment.
14835 2012-04-07  Juanma Barranquero  <lekktu@gmail.com>
14837         * xml.c (init_libxml2_functions) [WINDOWSNT]:
14838         Remove unused local variable.
14840 2012-04-07  Paul Eggert  <eggert@cs.ucla.edu>
14842         Avoid unnecessary pointer scanning in garbage collection (Bug#10780).
14843         * alloc.c (POINTERS_MIGHT_HIDE_IN_OBJECTS): New macro.
14844         (mark_memory): Mark Lisp_Objects only if pointers might hide in
14845         objects, as mark_maybe_pointer will catch them otherwise.
14846         (GC_LISP_OBJECT_ALIGNMENT): Remove; no longer needed.
14847         * s/gnu-linux.h (GC_LISP_OBJECT_ALIGNMENT) [__mc68000__]: Likewise.
14849 2012-04-07  Paul Eggert  <eggert@cs.ucla.edu>
14851         Fix typo that broke non-Windows builds.
14852         * xml.c (libxml2_loaded_p) [!!WINDOWSNT]: 'inine' -> 'inline'.
14854 2012-04-07  Eli Zaretskii  <eliz@gnu.org>
14856         Support building on MS-Windows with libxml2.
14858         * makefile.w32-in (OBJ2): Add xml.$(O).
14859         (GLOBAL_SOURCES): Add xml.c.
14860         ($(BLD)/xml.$(O)): New dependency list.
14862         * xml.c (DEF_XML2_FN, LOAD_XML2_FN) [WINDOWSNT]: New macros.
14863         (fn_htmlReadMemory, fn_xmlReadMemory, fn_xmlDocGetRootElement)
14864         (fn_xmlFreeDoc, fn_xmlCleanupParser, fn_xmlCheckVersion)
14865         [!WINDOWSNT]: New macros.
14866         (init_libxml2_functions, libxml2_loaded_p): New functions.
14867         (parse_region): Call fn_xmlCheckVersion instead of using the macro
14868         LIBXML_TEST_VERSION.  Call libxml2 functions via the fn_* macros.
14869         (xml_cleanup_parser): New function, export for fn_xmlCleanupParser.
14870         Calls xmlCleanupParser only if libxml2 was loaded (or statically
14871         linked in).
14872         (Flibxml_parse_html_region, Flibxml_parse_xml_region):
14873         Call init_libxml2_functions before calling libxml2 functions.
14874         (syms_of_xml) <Qlibxml2_dll>: DEFSYM it.
14876         * emacs.c: Don't include libxml/parser.h.
14877         (shut_down_emacs): Call xml_cleanup_parser, instead of calling
14878         xmlCleanupParser directly.
14880         * lisp.h [HAVE_LIBXML2]: Add prototype for xml_cleanup_parser.
14882 2012-04-07  Eli Zaretskii  <eliz@gnu.org>
14884         * indent.c (Fvertical_motion): If there is a display string at
14885         point, use it.vpos to compute how many lines to backtrack after
14886         move_it_to point.  (Bug#11133)
14888 2012-04-06  Eli Zaretskii  <eliz@gnu.org>
14890         * buffer.h (FETCH_CHAR, FETCH_MULTIBYTE_CHAR):
14891         * character.h (STRING_CHAR, STRING_CHAR_AND_LENGTH): Add comments
14892         about subtle differences between FETCH_CHAR* and STRING_CHAR*
14893         macros related to unification of CJK characters.  For the details,
14894         see the discussion following the message here:
14895         http://debbugs.gnu.org/cgi/bugreport.cgi?bug=11073#14.
14897 2012-04-04  Chong Yidong  <cyd@gnu.org>
14899         * keyboard.c (Vdelayed_warnings_list): Doc fix.
14901 2012-04-01  Eli Zaretskii  <eliz@gnu.org>
14903         * w32menu.c (simple_dialog_show, add_menu_item): Use SAFE_ALLOCA
14904         instead of alloca.  (Bug#11138)
14906 2012-04-01  Andreas Schwab  <schwab@linux-m68k.org>
14908         * w32menu.c (is_simple_dialog): Properly check lisp types.
14909         (Bug#11141)
14911 2012-03-31  Eli Zaretskii  <eliz@gnu.org>
14913         * xdisp.c (move_it_by_lines): When DVPOS is positive, and the
14914         position we get to after a call to move_it_to fails the
14915         IS_POS_VALID_AFTER_MOVE_P test, move to the next buffer position
14916         only if we wind up in a string from display property.  (Bug#11063)
14918         * window.c (Fdelete_other_windows_internal): Invalidate the row
14919         and column information about mouse highlight, so that redisplay
14920         restores it after reallocating the glyph matrices.  (Bug#7464)
14922         * xdisp.c (set_cursor_from_row): If `cursor' property on a display
14923         string comes from a `display' text property, use the buffer
14924         position of that property as if we actually saw that position in
14925         the row's glyphs.
14926         (move_it_by_lines): Remove the assertion that
14927         "it->current_x == 0 && it->hpos == 0" which can be legitimately
14928         violated when there's a before-string at the beginning of a line.
14929         (Bug#11063)
14931 2012-03-30  Eli Zaretskii  <eliz@gnu.org>
14933         * xdisp.c (append_space_for_newline): If the default face was
14934         remapped, use the remapped face for the appended newline.
14935         (extend_face_to_end_of_line): Use the remapped default face for
14936         extending the face to the end of the line.
14937         (display_line): Call extend_face_to_end_of_line when the default
14938         face was remapped.  (Bug#11068)
14940 2012-03-29  Eli Zaretskii  <eliz@gnu.org>
14942         * s/ms-w32.h: Discourage from defining HAVE_GETCWD.
14944 2012-03-28  Stefan Monnier  <monnier@iro.umontreal.ca>
14946         * keyboard.c (safe_run_hooks_error): Don't unquote strings.
14948 2012-03-27  Glenn Morris  <rgm@gnu.org>
14950         * search.c (Fword_search_backward_lax, Fword_search_forward_lax):
14951         Doc fixes.
14953 2012-03-26  Kenichi Handa  <handa@m17n.org>
14955         * dispextern.h (struct glyph): Fix previous change.  Change the
14956         bit length of glyphless.ch to 25 (Bug#11082).
14958 2012-03-26  Chong Yidong  <cyd@gnu.org>
14960         * keyboard.c (Vselection_inhibit_update_commands): New variable.
14961         (command_loop_1): Use it; inhibit selection update for
14962         handle-select-window too (Bug#8996).
14964 2012-03-25  Fabrice Popineau  <fabrice.popineau@supelec.fr>
14966         * w32heap.c (_heap_init, _heap_term): Remove dead MSVC-specific code.
14968 2012-03-25  Kenichi Handa  <handa@m17n.org>
14970         * dispextern.h (struct glyph): Change the bit length of
14971         glyphless.ch to 22 to make the member glyphless fit in 32 bits.
14973 2012-03-24  Eli Zaretskii  <eliz@gnu.org>
14975         * s/ms-w32.h (tzname): Include time.h before redirecting to
14976         _tzname.  Fixes the MSVC build.  (Bug#9960)
14978 2012-03-24  Andreas Schwab  <schwab@linux-m68k.org>
14980         * xdisp.c (produce_glyphless_glyph): Limit length of acronym to 6
14981         characters.
14983         * xterm.c (XTread_socket): Only modify handling_signal if
14984         !SYNC_INPUT.  (Bug#11080)
14986 2012-03-23  Eli Zaretskii  <eliz@gnu.org>
14988         * bidi.c (bidi_fetch_char): Use STRING_CHAR_AND_LENGTH instead of
14989         FETCH_MULTIBYTE_CHAR followed by CHAR_BYTES.  Prevents crashes
14990         when fetching a multibyte character consumes more bytes than
14991         CHAR_BYTES returns, due to unification of CJK characters in
14992         string_char.  (Bug#11073)
14994 2012-03-23  Troels Nielsen  <bn.troels@gmail.com>  (tiny change)
14996         * process.c (wait_reading_process_output): Handle pty disconnect
14997         by refraining from sending oneself a SIGCHLD (bug#10933).
14999 2012-03-22  Chong Yidong  <cyd@gnu.org>
15001         * dispextern.h (struct it): New member string_from_prefix_prop_p.
15003         * xdisp.c (push_prefix_prop): Rename from push_display_prop.
15004         Mark string as coming from a prefix property.
15005         (handle_face_prop): Use default face for prefix strings (Bug#4281).
15006         (pop_it, reseat_1): Save and restore string_from_prefix_prop_p.
15008 2012-03-21  Chong Yidong  <cyd@gnu.org>
15010         * xfaces.c (Vface_remapping_alist): Doc fix.
15012 2012-03-20  Eli Zaretskii  <eliz@gnu.org>
15014         * w32proc.c (Fw32_set_console_codepage)
15015         (Fw32_set_console_output_codepage, Fw32_get_codepage_charset):
15016         Doc fixes.
15018 2012-03-20  Chong Yidong  <cyd@gnu.org>
15020         * dispnew.c (Fredisplay, Vredisplay_preemption_period): Update doc
15021         to reflect default non-nil value of redisplay-dont-pause.
15023 2012-03-19  Kenichi Handa  <handa@m17n.org>
15025         * ftfont.c (ftfont_drive_otf): Mask bits of character code to make
15026         it fit in a valid range (Bug#11003).
15028 2012-03-18  Eli Zaretskii  <eliz@gnu.org>
15030         * xdisp.c (cursor_row_p): Even if the glyph row ends in a string
15031         that is not from display property, accept the row as a "cursor
15032         row" if one of the string's character has a non-nil `cursor'
15033         property.  Fixes cursor positioning when there are newlines in
15034         overlay strings, e.g. in icomplete.el.  (Bug#11035)
15036 2012-03-12  Paul Eggert  <eggert@cs.ucla.edu>
15038         * buffer.c (compare_overlays): Don't assume args differ (Bug#6830).
15040 2012-03-12  Chong Yidong  <cyd@gnu.org>
15042         * eval.c (inhibit_lisp_code): Rename from
15043         inhibit_window_configuration_change_hook; move from window.c.
15045         * xfns.c (unwind_create_frame_1, Fx_create_frame):
15046         * window.c (run_window_configuration_change_hook)
15047         (syms_of_window): Callers changed.
15049 2012-03-11  Chong Yidong  <cyd@gnu.org>
15051         * keymap.c (Fkey_description): Doc fix (Bug#9700).
15053         * editfns.c (Fconstrain_to_field): Doc fix (Bug#9452).
15055 2012-03-10  Chong Yidong  <cyd@gnu.org>
15057         * frame.c (other_visible_frames): Don't assume the selected frame
15058         is visible (Bug#10955).
15060 2012-03-09  Stefan Monnier  <monnier@iro.umontreal.ca>
15062         * buffer.c (compare_overlays): Avoid qsort's instability (bug#6830).
15064 2012-03-08  Jan Djärv  <jan.h.d@swipnet.se>
15066         * gtkutil.c (x_wm_set_size_hint): Use one row in call to
15067         FRAME_TEXT_LINES_TO_PIXEL_HEIGHT so base_height is greater than
15068         zero (Bug#10954).
15070 2012-03-03  Glenn Morris  <rgm@gnu.org>
15072         * alloc.c (Fgarbage_collect, misc-objects-consed): Doc fixes.
15074 2012-03-02  Eli Zaretskii  <eliz@gnu.org>
15076         * xdisp.c (try_window_reusing_current_matrix): Don't move cursor
15077         position past the first glyph_row that ends at ZV.  (Bug#10902)
15078         (redisplay_window, next_element_from_string): Fix typos in
15079         comments.
15080         (redisplay_window): Pass to move_it_vertically the margin in
15081         pixels, not in screen lines.
15083 2012-03-02  Glenn Morris  <rgm@gnu.org>
15085         * buffer.c (buffer-list-update-hook): Doc fix.
15087 2012-02-29  Eli Zaretskii  <eliz@gnu.org>
15089         * xdisp.c (get_overlay_strings_1): Under bidi redisplay, call
15090         push_it before setting up the iterator for the first overlay
15091         string, even if we have an empty string loaded.
15092         (next_overlay_string): If there's an empty string on the iterator
15093         stack, pop the stack.  (Bug#10903)
15095 2012-02-25  Paul Eggert  <eggert@cs.ucla.edu>
15097         Generalize fix for crash due to non-contiguous EMACS_INT (Bug#10780).
15098         Suggested by Stefan Monnier in
15099         <http://lists.gnu.org/archive/html/emacs-devel/2012-02/msg00692.html>.
15100         * alloc.c (widen_to_Lisp_Object): New static function.
15101         (mark_memory): Also mark Lisp_Objects by fetching pointer words
15102         and widening them to Lisp_Objects.  This would work even if
15103         USE_LSB_TAG is defined and wide integers are used, which might
15104         happen in a future version of Emacs.
15106 2012-02-25  Chong Yidong  <cyd@gnu.org>
15108         * fileio.c (Ffile_selinux_context, Fset_file_selinux_context):
15109         Doc fix.
15111         * xselect.c (Fx_selection_exists_p): Doc fix.
15112         (x_clipboard_manager_save_all): Print an informative message
15113         before saving to clipboard manager.
15115 2012-02-24  Chong Yidong  <cyd@gnu.org>
15117         * keyboard.c (process_special_events): Handle all X selection
15118         requests in kbd_buffer, not just the next one (Bug#8869).
15120 2012-02-23  Chong Yidong  <cyd@gnu.org>
15122         * xfns.c (Fx_create_frame): Avoid window-configuration-change-hook
15123         call when setting menu-bar-lines and tool-bar-lines parameters.
15124         (unwind_create_frame_1): New helper function.
15126         * window.c (inhibit_window_configuration_change_hook): New var.
15127         (run_window_configuration_change_hook): Obey it.
15128         (syms_of_window): Initialize it.
15130 2012-02-22  Chong Yidong  <cyd@gnu.org>
15132         * xterm.c (x_draw_image_relief): Add missing type check for
15133         Vtool_bar_button_margin (Bug#10743).
15135 2012-02-21  Chong Yidong  <cyd@gnu.org>
15137         * fileio.c (Vfile_name_handler_alist): Doc fix.
15139         * buffer.c (Fget_file_buffer): Protect against invalid file
15140         handler return value.
15142 2012-02-20  Paul Eggert  <eggert@cs.ucla.edu>
15144         * .gdbinit (xreload): Don't assume EMACS_INT fits in 'long'
15145         when computing $valmask.
15147         Fix crash due to non-contiguous EMACS_INT (Bug#10780).
15148         * lisp.h (VALBITS): Move definition up, so that USE_LSB_TAG can use it.
15149         (USE_LSB_TAG): Do not define if UINTPTR_MAX >> VALBITS == 0.
15150         It's useless in that case, and it can cause problems on hosts
15151         that allocate halves of EMACS_INT values separately.
15152         Reported by Dan Horák.  Diagnosed by Andreas Schwab in
15153         <http://debbugs.gnu.org/cgi/bugreport.cgi?bug=10780#30>.
15154         * mem-limits.h (EXCEEDS_LISP_PTR): Define to 0 on hosts where
15155         UINTPTR_MAX >> VALBITS == 0.  This is required by the above change;
15156         it avoids undefined behavior on hosts where shifting right by more
15157         than the word width has undefined behavior.
15159 2012-02-19  Chong Yidong  <cyd@gnu.org>
15161         * fileio.c (Ffile_name_directory, Ffile_name_nondirectory)
15162         (Funhandled_file_name_directory, Ffile_name_as_directory)
15163         (Fdirectory_file_name, Fexpand_file_name)
15164         (Fsubstitute_in_file_name): Protect against invalid file handler
15165         return values (Bug#10845).
15167 2012-02-18  Eli Zaretskii  <eliz@gnu.org>
15169         * .gdbinit (pitx): Fix incorrect references to fields of the
15170         iterator stack.
15172 2012-02-17  Chong Yidong  <cyd@gnu.org>
15174         * syntax.c (Fscan_lists): Doc fix (Bug#10833).
15176 2012-02-15  Paul Eggert  <eggert@cs.ucla.edu>
15178         * image.c (MAX_IMAGE_SIZE): Increase from 6.0 to 10.0; see
15179         <http://lists.gnu.org/archive/html/emacs-devel/2012-02/msg00540.html>.
15181 2012-02-15  Chong Yidong  <cyd@gnu.org>
15183         * eval.c (Fdefvar, Fdefconst): Doc fix; note that the variable is
15184         marked as special.  Also, starting docstrings with * is obsolete.
15186 2012-02-13  Andreas Schwab  <schwab@linux-m68k.org>
15188         * gnutls.c (emacs_gnutls_write): Fix last change.
15190 2012-02-13  Lars Ingebrigtsen  <larsi@gnus.org>
15192         * gnutls.c (emacs_gnutls_write): Set errno appropriately for
15193         send_process.
15195 2012-02-13  Stefan Monnier  <monnier@iro.umontreal.ca>
15197         * keymap.c (Fsingle_key_description): Handle char ranges.
15199 2012-02-12  Chong Yidong  <cyd@gnu.org>
15201         * xdisp.c (handle_stop): Avoid assigning -1 to it->face_id here,
15202         as that creates a dangerous corner case.
15204         * window.c (Fdelete_window_internal): Invalidate the mouse
15205         highlight (Bug#9904).
15207 2012-02-12  Glenn Morris  <rgm@gnu.org>
15209         * xselect.c (Fx_own_selection_internal)
15210         (Fx_get_selection_internal, Fx_disown_selection_internal)
15211         (Fx_selection_owner_p, Fx_selection_exists_p): Doc fixes.
15212         * nsselect.m (Fx_own_selection_internal)
15213         (Fx_disown_selection_internal, Fx_selection_exists_p)
15214         (Fx_selection_owner_p, Fx_get_selection_internal):
15215         Sync docs and argument specs with the xselect.c versions.
15217 2012-02-11  Lars Ingebrigtsen  <larsi@gnus.org>
15219         * gnutls.c (emacs_gnutls_write): Don't infloop if sendto fails.
15221 2012-02-11  Eli Zaretskii  <eliz@gnu.org>
15223         * w32select.c (Fx_selection_exists_p): Sync doc string and
15224         argument list with xselect.c.  (Bug#10783)
15226         * w16select.c (Fx_selection_exists_p): Sync doc string and
15227         argument list with xselect.c.  (Bug#10783)
15229 2012-02-10  Glenn Morris  <rgm@gnu.org>
15231         * fns.c (Fsecure_hash): Doc fix.
15233 2012-02-09  Kenichi Handa  <handa@m17n.org>
15235         * coding.c (produce_chars): Fix updating of src_end (Bug#10701).
15237 2012-02-07  Chong Yidong  <cyd@gnu.org>
15239         * buffer.c (Fbuffer_local_variables)
15240         (buffer_lisp_local_variables): Handle unbound vars correctly;
15241         don't let Qunbound leak into Lisp.
15243 2012-02-07  Glenn Morris  <rgm@gnu.org>
15245         * image.c (Fimagemagick_types): Doc fix.
15247         * image.c (imagemagick-render-type): Change it from a lisp object
15248         to an integer.  Move the doc here from the lisp manual.
15249         Treat all values not equal to 0 the same.
15251 2012-02-06  Chong Yidong  <cyd@gnu.org>
15253         * doc.c (store_function_docstring): Avoid applying docstring of
15254         alias to base function (Bug#2603).
15256 2012-02-04  Andreas Schwab  <schwab@linux-m68k.org>
15258         * .gdbinit (pp1, pv1): Remove redundant defines.
15259         (pr): Use pp.
15261 2012-02-04  Chong Yidong  <cyd@gnu.org>
15263         * nsterm.m: Declare a global (Bug#10694).
15265 2012-02-04  Eli Zaretskii  <eliz@gnu.org>
15267         * w32.c (get_emacs_configuration_options):
15268         Include --enable-checking, if specified, in the return value.
15270 2012-02-04  Martin Rudalics  <rudalics@gmx.at>
15272         * dispnew.c (change_frame_size_1): Calculate new_frame_total_cols
15273         after rounding frame sizes.  (Bug#9723)
15275 2012-02-04  Eli Zaretskii  <eliz@gnu.org>
15277         * keyboard.c (adjust_point_for_property): Don't position point
15278         before BEGV.  (Bug#10696)
15280 2012-02-03  Paul Eggert  <eggert@cs.ucla.edu>
15282         Handle overflow when computing char display width (Bug#9496).
15283         * character.c (char_width): Return EMACS_INT, not int.
15284         (char_width, c_string_width): Check for overflow when
15285         computing the width; this is possible now that individual
15286         characters can have unbounded width.  Problem introduced
15287         by merge from Emacs 23 on 2012-01-19.
15289 2012-02-02  Michael Albinus  <michael.albinus@gmx.de>
15291         * dbusbind.c (Fdbus_register_method): Mention the return value
15292         :ignore in the docstring.
15294 2012-02-02  Glenn Morris  <rgm@gnu.org>
15296         * callproc.c (Fcall_process, Fcall_process_region): Doc fix.
15298         * nsterm.m (syms_of_nsterm) <x-toolkit-scroll-bars>:
15299         Unconditionally set to t.  (Bug#10673)
15300         * nsterm.m (syms_of_nsterm) <x-toolkit-scroll-bars>:
15301         * w32term.c (syms_of_w32term) <x-toolkit-scroll-bars>:
15302         * xterm.c (syms_of_xterm) <x-toolkit-scroll-bars>: Doc fix.
15304 2012-02-02  Kenichi Handa  <handa@m17n.org>
15306         (x_produce_glyphs): Cancel previous change.  If cmp->glyph_len is
15307         0, do not call append_composite_glyph.
15309 2012-02-02  Kenichi Handa  <handa@m17n.org>
15311         * xdisp.c (BUILD_COMPOSITE_GLYPH_STRING): Initialize first_s to
15312         NULL (Bug#6988).
15313         (x_produce_glyphs): If the component of a composition is a null
15314         string, set it->pixel_width to 1 to avoid zero-width glyph.
15316 2012-02-01  Eli Zaretskii  <eliz@gnu.org>
15318         * ralloc.c (resize_bloc, r_alloc_sbrk): Don't call memmove if its
15319         first 2 arguments are identical.  This makes inserting large
15320         output from a subprocess an order of magnitude faster on
15321         MS-Windows, where all sbrk'ed memory is always contiguous.
15323 2012-01-31  Glenn Morris  <rgm@gnu.org>
15325         * nsterm.m (syms_of_nsterm) <x-toolkit-scroll-bars>:
15326         * w32term.c (syms_of_w32term) <x-toolkit-scroll-bars>:
15327         * xterm.c (syms_of_xterm) <x-toolkit-scroll-bars>: Sync docs.
15329 2012-01-29  Glenn Morris  <rgm@gnu.org>
15331         * gnutls.c (syms_of_gnutls): More doc (from etc/NEWS).
15333 2012-01-28  Samuel Thibault  <sthibault@debian.org>  (tiny change)
15335         * s/gnu.h: Define POSIX_SIGNALS (Bug#10552).
15337 2012-01-28  Chong Yidong  <cyd@gnu.org>
15339         * minibuf.c (syms_of_minibuf): Doc fix (Bug#10550).
15341 2012-01-26  Chong Yidong  <cyd@gnu.org>
15343         * keyboard.c (Vecho_keystrokes): Document zero value (Bug#10503).
15345         * search.c (Fsearch_forward, Fsearch_backward): Document negative
15346         repeat counts (Bug#10507).
15348 2012-01-26  Glenn Morris  <rgm@gnu.org>
15350         * lread.c (syms_of_lread): Doc fix.
15352 2012-01-25  HIROSHI OOTA  <nil@mad.dog.cx>  (tiny change)
15354         * coding.c (encode_designation_at_bol): Change return value to
15355         EMACS_INT.
15357 2012-01-25  Chong Yidong  <cyd@gnu.org>
15359         * eval.c (Fuser_variable_p): Doc fix; mention custom-variable-p.
15361 2012-01-21  Chong Yidong  <cyd@gnu.org>
15363         * floatfns.c (Fcopysign): Make the second argument non-optional,
15364         since nil is not allowed anyway.
15366 2012-01-21  Andreas Schwab  <schwab@linux-m68k.org>
15368         * process.c (read_process_output): Use p instead of XPROCESS (proc).
15369         (send_process): Likewise.
15371 2012-01-19  Martin Rudalics  <rudalics@gmx.at>
15373         * window.c (save_window_save, Fcurrent_window_configuration)
15374         (Vwindow_persistent_parameters): Do not use Qstate.
15375         Rewrite doc-strings.
15377 2012-01-19  Kenichi Handa  <handa@m17n.org>
15379         * character.c (char_width): New function.
15380         (Fchar_width, c_string_width, lisp_string_width):
15381         Use char_width (Bug#9496).
15383 2012-01-16  Martin Rudalics  <rudalics@gmx.at>
15385         * window.c (Vwindow_persistent_parameters): New variable.
15386         (Fset_window_configuration, save_window_save): Handle persistent
15387         window parameters.
15389 2012-01-14  Eli Zaretskii  <eliz@gnu.org>
15391         * w32fns.c (signal_user_input): Don't do a QUIT, to avoid
15392         thrashing the stack of the thread.  (Bug#9087)
15394 2012-01-12  Paul Eggert  <eggert@cs.ucla.edu>
15396         * xdisp.c (rows_from_pos_range): Add parens as per gcc -Wparentheses.
15398 2012-01-11  Eli Zaretskii  <eliz@gnu.org>
15400         * xdisp.c (rows_from_pos_range): Handle the case where the
15401         highlight ends on a newline.  (Bug#10464)
15402         (mouse_face_from_buffer_pos): Fix off-by-one error in calculating
15403         he end column for display of highlight that ends on a newline
15404         before a R2L line.
15406 2012-01-11  Glenn Morris  <rgm@gnu.org>
15408         * lread.c (init_lread): If no-site-lisp, remove site-lisp dirs
15409         from load-path also when installation-directory is nil.  (Bug#10208)
15411 2012-01-10  Glenn Morris  <rgm@gnu.org>
15413         * emacs.c (syms_of_emacs) <installation-directory>: Doc fix.
15415         * epaths.in (PATH_LOADSEARCH, PATH_EXEC, PATH_DATA, PATH_DOC):
15416         Update template values to be closer to their typical values these days.
15418 2012-01-09  Eli Zaretskii  <eliz@gnu.org>
15420         * xdisp.c (rows_from_pos_range): Accept additional argument
15421         DISP_STRING, and accept any glyph in a row whose object is that
15422         string as eligible for mouse highlight.  Fixes mouse highlight of
15423         display strings from overlays.  (Bug#10464)
15425 2012-01-07  Paul Eggert  <eggert@cs.ucla.edu>
15427         emacs: fix an auto-save permissions race condition (Bug#10400)
15428         * fileio.c (auto_saving_dir_umask): New static var.
15429         (Fmake_directory_internal): Use it.
15430         (do_auto_save_make_dir): Set it, instead of invoking chmod after
15431         creating the directory.  The old code temporarily assigns
15432         too-generous permissions to the directory.
15433         (do_auto_save_eh): Clear it.
15434         (Fdo_auto_save): Catch all errors, not just file errors, so
15435         that the var is always cleared.
15437 2012-01-07  Eli Zaretskii  <eliz@gnu.org>
15439         * search.c (scan_buffer): Pass character positions to
15440         know_region_cache, not byte positions.  (Bug#6540)
15442 2012-01-07  LynX  <_LynX@bk.ru>  (tiny change)
15444         * w32.c (sys_rename): Report EXDEV when rename of a directory
15445         fails because the target is on another logical disk.  (Bug#10284)
15447 2012-01-07  David Benjamin  <davidben@mit.edu>  (tiny change)
15449         * xterm.c (x_embed_request_focus): New function.
15451         * xterm.h: Add prototype.
15453         * xfns.c (Fx_focus_frame): Use it for embedded frames (Bug#9977).
15455 2012-01-05  Glenn Morris  <rgm@gnu.org>
15457         * emacs.c (emacs_copyright): Update short copyright year to 2012.
15459 2012-01-01  Eli Zaretskii  <eliz@gnu.org>
15461         * gnutls.c (init_gnutls_functions): Load gnutls_check_version.
15462         Load gnutls_transport_set_lowat only if GnuTLS version is below
15463         2.11.1.
15464         (emacs_gnutls_handshake): Call gnutls_transport_set_lowat only for
15465         GnuTLS versions below 2.11.1.
15467 2011-12-31  Antoine Levitt  <antoine.levitt@gmail.com>
15469         * xdisp.c (syms_of_xdisp) <window-scroll-functions>: Add warning
15470         to the doc string advising against its use for altering the way
15471         windows are scrolled.
15473 2011-12-28  Kenichi Handa  <handa@m17n.org>
15475         * coding.c (Fdefine_coding_system_internal): Make an utf-8 base
15476         coding-system ASCII compatible only when it does not produce BOM
15477         on encoding (Bug#10383).
15479 2011-12-26  Jan Djärv  <jan.h.d@swipnet.se>
15481         * xmenu.c (x_menu_wait_for_event): Use xg_select for Gtk3 so menus
15482         can scroll.
15483         (create_and_show_popup_menu): Always use menu_position_func for
15484         Gtk3 (Bug#10361).
15486 2011-12-24  Andreas Schwab  <schwab@linux-m68k.org>
15488         * callint.c (Fcall_interactively): Don't truncate prompt string.
15490 2011-12-23  Eli Zaretskii  <eliz@gnu.org>
15492         * xdisp.c (handle_invisible_prop): Handle correctly an invisible
15493         property that ends at ZV, so that the bidi iteration could be
15494         resumed from there (after widening).  (Bug#10360)
15496 2011-12-22  Jan Djärv  <jan.h.d@swipnet.se>
15498         * nsfont.m (ns_spec_to_descriptor): Do not autorelease fdesc.
15500 2011-12-21  Jan Djärv  <jan.h.d@swipnet.se>
15502         * nsterm.m (x_free_frame_resources):
15503         Release f->output_data.ns->miniimage.
15504         (ns_index_color): Fix indentation.  Do not retain
15505         color_table->colors[i].
15507         * nsmenu.m (ns_update_menubar): Call free_menubar_widget_value_tree
15508         before returning.
15510         * nsfns.m (x_set_background_color): Assign return value from
15511         ns_index_color to face-background instead of NSColor*.
15512         (ns_implicitly_set_icon_type): Fix indentation.
15513         Change assignment in for loop to comparison.
15515         * emacs.c (ns_pool): New variable.
15516         (main): Assign ns_pool.
15517         (Fkill_emacs): Call ns_release_autorelease_pool.
15519         * nsfont.m (ns_spec_to_descriptor): Fix indentation,
15520         autorelease fdesc, release fdAttrs and tdict.
15521         (ns_get_covering_families): Release charset.
15522         (ns_findfonts): Release NSFontDescriptor created with new.
15523         (ns_uni_to_glyphs): Fix indentation.
15524         (setString): Release attrStr before assigning new value.
15526 2011-12-18  Jan Djärv  <jan.h.d@swipnet.se>
15528         * nsmenu.m (NSMenuDidBeginTrackingNotification): Declare if OSX < 10.5
15529         and NS_IMPL_COCOA.
15530         (trackingNotification): Surround with ifdef NS_IMPL_COCOA.
15531         (syms_of_nsmenu): Set trackingMenu to 1 if not NS_IMPL_COCOA.
15533 2011-12-18  David Reitter  <reitter@cmu.edu>
15535         * nsterm.m (ns_term_init): Subscribe for notifications
15536         NSMenuDidBeginTrackingNotification and NSMenuDidEndTrackingNotification
15537         to method trackingNotification in EmacsMenu.
15539         * nsmenu.m (trackingMenu): New variable.
15540         (trackingNotification): New method (from Aquamacs).
15541         (menuNeedsUpdate): Expand comment and return if trackingMenu is 0,
15542         from Aquamacs (Bug#7030).
15544 2011-12-18  Jan Djärv  <jan.h.d@swipnet.se>
15546         * nsselect.m (CUT_BUFFER_SUPPORT): Remove define.
15547         (symbol_to_nsstring): Fix indentation.
15548         (ns_symbol_to_pb): New function.
15549         (Fns_get_selection_internal): Rename from Fns_get_cut_buffer_internal.
15550         (Fns_rotate_cut_buffers_internal): Remove.
15551         (Fns_store_selection_internal): Rename from
15552         Fns_store_cut_buffer_internal.
15553         (ns_get_foreign_selection, Fx_own_selection_internal)
15554         (Fx_disown_selection_internal, Fx_selection_exists_p)
15555         (Fns_get_selection_internal, Fns_store_selection_internal):
15556         Use ns_symbol_to_pb and check if return value is nil.
15557         (syms_of_nsselect): Remove ifdef CUT_BUFFER_SUPPORT.  Remove defsubr
15558         Sns_rotate_cut_buffers_internal.  Sns_get_cut_buffer_internal
15559         renamed to Sns_get_selection_internal, Sns_store_cut_buffer_internal
15560         renamed to Sns_store_selection_internal.
15561         (ns_handle_selection_request): Move code to Fx_own_selection_internal
15562         and remove this function.
15563         (ns_handle_selection_clear): Remove, never used.
15564         (Fx_own_selection_internal): Move code from ns_handle_selection_request
15565         here.
15567 2011-12-17  Ken Brown  <kbrown@cornell.edu>
15569         * fileio.c (check_writable) [CYGWIN]: Return non-zero if UID or
15570         GID is unknown (Bug#10257).
15572 2011-12-17  Paul Eggert  <eggert@cs.ucla.edu>
15574         * s/gnu-linux.h: Fix mark_memory typo (Bug#10286).
15575         (GC_MARK_SECONDARY_STACK): Omit removed 3rd arg to mark_memory,
15576         which caused a build failure on GNU/Linux IA-64.  This problem was
15577         introduced by my 2011-10-07 patch.
15579 2011-12-15  Juri Linkov  <juri@jurta.org>
15581         * image.c (imagemagick_error): New function.  (Bug#10112)
15582         (imagemagick_load_image): Comment out `MagickSetResolution' call.
15583         Use `imagemagick_error' where ImageMagick functions return
15584         `MagickFalse'.
15585         (Fimagemagick_types): Add `Fnreverse' to return the list in the
15586         proper order.
15588 2011-12-15  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
15590         * xftfont.c (xftfont_draw): Use the font metrics of s->font to
15591         fill background (Bug#8992).
15593 2011-12-13  Martin Rudalics  <rudalics@gmx.at>
15595         * window.c (Vwindow_combination_resize)
15596         (Vwindow_combination_limit): Use t instead of non-nil in
15597         doc-strings.
15598         (Vrecenter_redisplay): Add first sentence of doc-string on
15599         separate line.
15600         (Frecenter): Fix doc-string typo.
15602 2011-12-11  Kenichi Handa  <handa@m17n.org>
15604         * coding.c (Funencodable_char_position): Pay attention to the
15605         buffer text relocation (Bug#9389).
15607 2011-12-10  Jan Djärv  <jan.h.d@swipnet.se>
15609         * xterm.c (x_term_init): Move call to gdk_window_add_filter before
15610         gtk_init (Bug#10100).
15612 2011-12-10  Eli Zaretskii  <eliz@gnu.org>
15614         * xdisp.c (RECORD_MAX_MIN_POS): Use IT->cmp_it.charpos only if
15615         IT->string is nil.  (Bug#10263)
15617 2011-12-10  Jan Djärv  <jan.h.d@swipnet.se>
15619         * nsterm.h (x_free_frame_resources): Declare.
15621         * nsfns.m (ns_get_defaults_value): New function (Bug#10103).
15622         (Fns_get_resource, x_get_string_resource): Call ns_get_defaults_value.
15624         * nsterm.h (ns_get_defaults_value): Declare.
15626         * nsterm.m (ns_default): Call ns_get_defaults_value.
15628 2011-12-09  Eli Zaretskii  <eliz@gnu.org>
15630         * xdisp.c (try_scrolling): Don't set scroll_down_p if dy is zero.
15631         (Bug#10170)
15633 2011-12-09  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
15635         * unexelf.c (unexec) [NS_IMPL_GNUSTEP]: Take account of the case
15636         that where the value of an _OBJC_* symbol points to is in the .bss
15637         section (Bug#10240).
15639 2011-12-08  Kazuhiro Ito  <kzhr@d1.dion.ne.jp>  (tiny change)
15641         * coding.c (encode_coding_ccl): Check (charbuf < charbuf_end)
15642         after the loop to call ccl_driver at least once (Bug#8619).
15644 2011-12-08  Kenichi Handa  <handa@m17n.org>
15646         * ftfont.c (get_adstyle_property): Fix previous change
15647         (Bug#10233).
15649 2011-12-07  Juanma Barranquero  <lekktu@gmail.com>
15651         * w32.c (init_environment): If no_site_lisp, remove site-lisp
15652         dirs from the default value of EMACSLOADPATH (bug#10208).
15654 2011-12-07  Glenn Morris  <rgm@gnu.org>
15656         * lread.c (init_lread): If no_site_lisp, exclude site-lisp/ in
15657         installation and source directories as well.  (Bug#10208)
15659 2011-12-06  Chong Yidong  <cyd@gnu.org>
15661         * minibuf.c (Fread_from_minibuffer): Doc fix (Bug#10228).
15663 2011-12-06  Glenn Morris  <rgm@gnu.org>
15665         * process.c (start_process_unwind): Treat any pid <= 0, except -2,
15666         as an error, not just -1.  (Bug#10217)
15668 2011-12-05  Chong Yidong  <cyd@gnu.org>
15670         * keyboard.c (process_special_events): New function.
15671         (swallow_events, Finput_pending_p): Use it (Bug#10195).
15673 2011-12-05  Paul Eggert  <eggert@cs.ucla.edu>
15675         * coding.c (encode_designation_at_bol): Don't use uninitialized
15676         local variable (Bug#9318).
15678 2011-12-05  Kenichi Handa  <handa@m17n.org>
15680         * ftfont.c (get_adstyle_property): If the font is not BDF nor PCF,
15681         return Qnil (Bug#8046, Bug#10193).
15683 2011-12-05  Kenichi Handa  <handa@m17n.org>
15685         * coding.c (encode_designation_at_bol): New args charbuf_end and
15686         dst.  Return the number of produced bytes.  Callers changed.
15687         (coding_set_source): Return how many bytes coding->source was
15688         relocated.
15689         (coding_set_destination): Return how many bytes
15690         coding->destination was relocated.
15691         (CODING_DECODE_CHAR, CODING_ENCODE_CHAR, CODING_CHAR_CHARSET)
15692         (CODING_CHAR_CHARSET_P): Adjust for the avove changes.
15694 2011-12-05  Kazuhiro Ito  <kzhr@d1.dion.ne.jp>  (tiny change)
15696         * coding.c (CODING_CHAR_CHARSET_P): New macro.
15697         (encode_coding_emacs_mule, encode_coding_iso_2022): Use the above
15698         macro (Bug#9318).
15700 2011-12-05  Andreas Schwab  <schwab@linux-m68k.org>
15702         The following changes are to fix Bug#9318.
15704         * coding.c (CODING_ENCODE_CHAR, CODING_CHAR_CHARSET): New macros.
15705         (encode_coding_emacs_mule, ENCODE_ISO_CHARACTER)
15706         (encode_coding_iso_2022, encode_coding_sjis)
15707         (encode_coding_big5, encode_coding_charset): Use the above macros.
15709 2011-12-05  Juanma Barranquero  <lekktu@gmail.com>
15711         * lisp.h (process_quit_flag): Fix external declaration.
15713 2011-12-04  Stefan Monnier  <monnier@iro.umontreal.ca>
15715         Don't macro-inline non-performance-critical code.
15716         * eval.c (process_quit_flag): New function.
15717         * lisp.h (QUIT): Use it.
15719 2011-12-04  Jan Djärv  <jan.h.d@swipnet.se>
15721         * nsfns.m (get_geometry_from_preferences): New function.
15722         (Fx_create_frame): Call get_geometry_from_preferences (Bug#10103).
15724 2011-12-04  Andreas Schwab  <schwab@linux-m68k.org>
15726         * emacs.c (Qkill_emacs): Define.
15727         (syms_of_emacs): Initialize it.
15728         * keyboard.c (interrupt_signal): Don't call Fkill_emacs here, set
15729         Qquit_flag to `kill-emacs' instead.
15730         (quit_throw_to_read_char): Add parameter `from_signal'.
15731         All callers changed.  Call Fkill_emacs if requested and safe.
15732         * lisp.h (QUIT): Call Fkill_emacs if requested.
15734 2011-12-03  Jan Djärv  <jan.h.d@swipnet.se>
15736         * widget.c (update_wm_hints): Return if wmshell is null.
15737         (widget_update_wm_size_hints): New function.
15739         * widget.h (widget_update_wm_size_hints): Declare.
15741         * xterm.c (x_wm_set_size_hint): If USE_X_TOOLKIT, call
15742         widget_update_wm_size_hints (Bug#10104).
15744 2011-12-03  Eli Zaretskii  <eliz@gnu.org>
15746         * xdisp.c (handle_invisible_prop): If the invisible text ends just
15747         before a newline, prepare the bidi iterator for consuming the
15748         newline, and keep the current paragraph direction.  (Bug#10183)
15749         (redisplay_window): Don't let `margin' become negative.  (Bug#10192)
15751 2011-12-02  Juri Linkov  <juri@jurta.org>
15753         * search.c (Fword_search_regexp): New Lisp function created from
15754         `wordify'.  Change type of arg `lax' from `int' to `Lisp_Object'.
15755         (Fword_search_backward, Fword_search_forward)
15756         (Fword_search_backward_lax, Fword_search_forward_lax):
15757         Use `Fword_search_regexp' instead of `wordify'.  Doc fix.
15758         (syms_of_search): Define `Sword_search_regexp'.  (Bug#10145)
15760 2011-12-01  Stefan Monnier  <monnier@iro.umontreal.ca>
15762         * fileio.c (Finsert_file_contents): Move after-change-function call
15763         to before the "handled:" label, since all "goto handled" appear in
15764         cases where the *-change-functions have already been properly called
15765         (bug#10117).
15767 2011-12-01  Andreas Schwab  <schwab@linux-m68k.org>
15769         * keyboard.c (interrupt_signal): Don't call kill-emacs when
15770         waiting for input.  (Bug#10169)
15772 2011-11-30  Eli Zaretskii  <eliz@gnu.org>
15774         * dispnew.c (adjust_glyph_matrix): Remove the assertion that
15775         verifies glyph row's hash code--we have just reallocated the
15776         glyphs, so their contents can be complete garbage.  (Bug#10164)
15778 2011-11-30  Juanma Barranquero  <lekktu@gmail.com>
15780         * dispnew.c (adjust_glyph_matrix) [XASSERTS]: Add missing check.
15782 2011-11-30  Eli Zaretskii  <eliz@gnu.org>
15784         * dispnew.c (adjust_glyph_matrix) [XASSERTS]: Ensure ROW's
15785         attributes are tested _before_ calling verify_row_hash, to protect
15786         against GCC re-ordering of the tests.  (Bug#10164)
15788 2011-11-29  Jan Djärv  <jan.h.d@swipnet.se>
15790         * xterm.h (struct x_output): net_wm_state_hidden_seen is new.
15792         * xterm.c (handle_one_xevent): Only set async_visible and friends
15793         if net_wm_state_hidden_seen is non-zero (Bug#10002)
15794         (get_current_wm_state): Set net_wm_state_hidden_seen to 1 if
15795         _NET_WM_STATE_HIDDEN is in NET_WM_STATE.
15797 2011-11-28  Paul Eggert  <eggert@cs.ucla.edu>
15799         Remove GCPRO-related macros that exist only to avoid shadowing locals.
15800         * lisp.h (GCPRO1_VAR, GCPRO2_VAR, GCPRO3_VAR, GCPRO4_VAR, GCPRO5_VAR)
15801         (GCPRO6_VAR, UNGCPRO_VAR): Remove.  See
15802         <http://lists.gnu.org/archive/html/emacs-diffs/2011-11/msg00265.html>.
15803         All uses changed to use GCPRO1 etc.
15804         (GCPRO1, GCPRO2, GCPRO3, GCPRO4, GCPRO5, GCPRO6, UNGCPRO):
15805         Revert to old implementation (i.e., before 2011-03-11).
15807 2011-11-28  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
15809         * dispnew.c (scrolling_window): Truncate overlaps in copy destination
15810         of scroll runs so as to avoid assigning disabled bogus rows and
15811         unnecessary graphics copy operations.
15813 2011-11-27  Eli Zaretskii  <eliz@gnu.org>
15815         * s/ms-w32.h (utimbuf) [_MSC_VER]: Don't define.
15816         (snprintf) [_MSC_VER]: Redirect to _snprintf.
15817         (strtoll) [_MSC_VER]: Redirect to _strtoi64.
15818         (malloc, free, realloc, calloc): Redirect to e_* only when
15819         compiling Emacs.
15821         * lisp.h (GCTYPEBITS): Move before first use.
15822         (ALIGN_GCTYPEBITS) [_MSC_VER]: Define.
15823         (DECL_ALIGN) [_MSC_VER]: Use it, as MSVC doesn't like bit ops in
15824         this macro definition.
15826         * s/ms-w32.h (tzname): Redirect to _tzname for all values of
15827         _MSC_VER.
15829 2011-11-27  Jan Djärv  <jan.h.d@swipnet.se>
15831         * gtkutil.c (xg_create_frame_widgets):
15832         Call gtk_window_set_has_resize_grip (FALSE) if that function is
15833         present with Gtk+ 2.0.
15835 2011-11-26  Paul Eggert  <eggert@cs.ucla.edu>
15837         * fileio.c (Finsert_file_contents): Undo previous change; see
15838         <http://lists.gnu.org/archive/html/emacs-diffs/2011-11/msg00265.html>.
15840 2011-11-26  Paul Eggert  <eggert@cs.ucla.edu>
15842         Rename locals to avoid shadowing.
15843         * fileio.c (Finsert_file_contents):
15844         Rename inner 'gcpro1' to 'inner_gcpro1' to avoid shadowing.
15845         * process.c (wait_reading_process_output):
15846         Rename inner 'proc' to 'p' to avoid shadowing.
15847         Indent for consistency with usual Emacs style.
15849 2011-11-25  Eli Zaretskii  <eliz@gnu.org>
15851         * xdisp.c (redisplay_window): If cursor row is not fully visible
15852         after recentering, and scroll-conservatively is set to a large
15853         number, scroll window by a few more lines to make the cursor fully
15854         visible and out of scroll-margin.  (Bug#10105)
15855         (start_display): Don't move to the next line if the display should
15856         start at a newline that is part of a display vector or an overlay
15857         string.  (Bug#10119)
15859 2011-11-24  Juri Linkov  <juri@jurta.org>
15861         * image.c (imagemagick_load_image): Move `MagickSetResolution' down
15862         after the `MagickPingImage' call.  (Bug#10112)
15864 2011-11-23  Chong Yidong  <cyd@gnu.org>
15866         * window.c (Fcoordinates_in_window_p): Accept only live windows.
15868 2011-11-23  Martin Rudalics  <rudalics@gmx.at>
15870         * buffer.c (Fkill_buffer): Run replace_buffer_in_windows before
15871         making another buffer current.  (Bug#10114)
15873 2011-11-23  Glenn Morris  <rgm@gnu.org>
15875         * font.c (font_find_for_lface) [HAVE_NS]: Ignore case.  (Bug#2526)
15877 2011-11-23  Chong Yidong  <cyd@gnu.org>
15879         * xdisp.c (compute_stop_pos): Check validity of end_charpos before
15880         using it (Bug#5984).
15882 2011-11-22  Eli Zaretskii  <eliz@gnu.org>
15884         * dispnew.c (adjust_glyph_matrix): Don't verify hash code of mode-
15885         and header-lines, as they don't have one computed for them.
15886         (Bug#10098)
15888         * .gdbinit (prow): Make displayed values more self-explaining.
15889         Add row's hash code.
15891 2011-11-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
15893         * process.c (wait_reading_process_output): Fix asynchrounous
15894         GnuTLS socket handling on some versions of the GnuTLS library.
15895         (wait_reading_process_output): Add comment and URL.
15897 2011-11-21  Jan Djärv  <jan.h.d@swipnet.se>
15899         * xterm.c (x_clear_frame): Reinstate the XClearWindow call.
15901 2011-11-21  Chong Yidong  <cyd@gnu.org>
15903         * window.c (Fnext_window, Fprevious_window): Doc fix.
15905 2011-11-20  Stefan Monnier  <monnier@iro.umontreal.ca>
15907         * window.c (get_phys_cursor_glyph): Fix Lisp_Object/int mixup.
15909 2011-11-20  Juanma Barranquero  <lekktu@gmail.com>
15911         * nsfont.m (syms_of_nsfont) <ns-reg-to-script>: Fix typo.
15913 2011-11-20  Martin Rudalics  <rudalics@gmx.at>
15915         * window.c (Fset_window_combination_limit): Rename argument
15916         STATUS to LIMIT.
15917         (Vwindow_combination_limit): Remove "status" from doc-string.
15919 2011-11-20  Andreas Schwab  <schwab@linux-m68k.org>
15921         * m/ibms390.h: Remove.
15922         * m/ibms390x.h: Don't include "ibms390.h".
15924 2011-11-20  Stefan Monnier  <monnier@iro.umontreal.ca>
15926         * fileio.c (Finsert_file_contents): Add missing gcpro1 variable.
15927         Suggested by Dmitry Antipov <dmantipov@yandex.ru>.
15929 2011-11-20  Juanma Barranquero  <lekktu@gmail.com>
15931         * casetab.c (Fset_case_table):
15932         * charset.c (Fcharset_after): Fix typos.
15934 2011-11-20  Paul Eggert  <eggert@cs.ucla.edu>
15936         Standardize on VIRT_ADDR_VARIES behavior (Bug#10042).
15937         Otherwise, valgrind does not work on some platforms.
15938         Problem reported by Andreas Schwab in
15939         <http://lists.gnu.org/archive/html/emacs-devel/2011-11/msg00081.html>.
15940         * puresize.h (pure, PURE_P): Always behave as if VIRT_ADDR_VARIES
15941         is set, removing the need for VIRT_ADDRESS_VARIES.
15942         (PURE_P): Use a more-efficient implementation that needs just one
15943         comparison, not two: on x86-64 with GCC 4.6.2, this cut down the
15944         number of instructions from 6 (xorl, cmpq, jge, xorl, cmpq, setge)
15945         to 4 (xorl, subq, cmpq, setbe).
15946         * alloc.c (pure): Always extern now, since that's the
15947         VIRT_ADDR_VARIES behavior.
15948         (PURE_POINTER_P): Use a single comparison, not two, for
15949         consistency with the new puresize.h.
15950         * lisp.h (PNTR_COMPARISON_TYPE): Remove; no longer needed.
15951         * m/ibms390.h, m/intel386.h, m/template.h, s/cygwin.h, s/hpux10-20.h:
15952         Remove VIRT_ADDR_VARIES no longer needed.
15954 2011-11-19  Eli Zaretskii  <eliz@gnu.org>
15956         * xdisp.c (x_write_glyphs, draw_phys_cursor_glyph)
15957         (erase_phys_cursor, update_window_cursor, show_mouse_face)
15958         (cursor_in_mouse_face_p): If the cursor position is out of bounds,
15959         behave as if the cursor position were at the window margin.
15961         * window.c (get_phys_cursor_glyph): If the window is hscrolled,
15962         and the cursor position is out of bounds, behave as if the cursor
15963         position were at the window margin.  (Bug#10075)
15965 2011-11-18  Chong Yidong  <cyd@gnu.org>
15967         * window.c (Fwindow_combination_limit): Make first argument
15968         non-optional, since it is meaningless for live windows like the
15969         selected window.
15971 2011-11-18  Dmitry Antipov  <dmantipov@yandex.ru>
15973         * keymap.c (Fwhere_is_internal): Add missing RETURN_UNGCPROs.
15975 2011-11-18  Stefan Monnier  <monnier@iro.umontreal.ca>
15977         * intervals.c: Fix grafting over the whole buffer (bug#10071).
15978         (graft_intervals_into_buffer): Simplify.
15980 2011-11-18  Eli Zaretskii  <eliz@gnu.org>
15982         * dispnew.c (swap_glyph_pointers): Swap the used[] arrays and the
15983         hash values of the two rows.
15984         (copy_row_except_pointers): Preserve the used[] arrays and the
15985         hash values of the two rows.  (Bug#10035)
15986         (add_row_entry): Add xassert to verify that ROW's hash code is valid.
15988         * xdisp.c (row_hash): New function, body extracted from
15989         compute_line_metrics.
15990         (compute_line_metrics): Call row_hash, instead of computing the
15991         hash code inline.
15993         * dispnew.c (verify_row_hash): Call row_hash for computing the
15994         hash code of a row, instead of duplicating code from xdisp.c.
15996         * dispextern.h (row_hash): Add prototype.
15998 2011-11-18  Tassilo Horn  <tassilo@member.fsf.org>
16000         * frame.c (delete_frame): Don't delete the terminal when the last
16001         X frame is closed if emacs is built with GTK toolkit.
16003 2011-11-17  Juanma Barranquero  <lekktu@gmail.com>
16005         * window.c (syms_of_window) <window-combination-resize>: Fix typo.
16007 2011-11-17  Martin Rudalics  <rudalics@gmx.at>
16009         * window.c (Vwindow_splits): Rename to
16010         Vwindow_combination_resize.  Suggested by Juri Linkov.
16011         (Fsplit_window_internal): Use Vwindow_combination_resize instead
16012         of Vwindow_splits.
16014 2011-11-16  Juanma Barranquero  <lekktu@gmail.com>
16016         * nsfns.m (Fns_font_name):
16017         * window.c (syms_of_window) <window-combination-limit>: Fix typos.
16019 2011-11-16  Martin Rudalics  <rudalics@gmx.at>
16021         * window.h (window): Rename slot "nest" to "combination_limit".
16022         * window.c (Fwindow_nest): Rename to Fwindow_combination_limit.
16023         (Fset_window_nest): Rename to Fset_window_combination_limit.
16024         (Vwindow_nest): Rename to Vwindow_combination_limit.
16025         (recombine_windows, make_parent_window, make_window)
16026         (Fsplit_window_internal, saved_window)
16027         (Fset_window_configuration, save_window_save): Rename all
16028         occurrences of window_nest to window_combination_limit.
16030 2011-11-15  Juanma Barranquero  <lekktu@gmail.com>
16032         * image.c (imagemagick_load_image): Fix typo.
16034 2011-11-14  Eli Zaretskii  <eliz@gnu.org>
16036         * xdisp.c (display_line): Move the call to
16037         highlight_trailing_whitespace before the call to
16038         compute_line_metrics, since the latter needs to see the final
16039         faces of all the glyphs to compute ROW's hash value.
16040         Fixes assertion violations in row_equal_p.  (Bug#10035)
16042 2011-11-14  Juanma Barranquero  <lekktu@gmail.com>
16044         * w32proc.c (reader_thread): Don't check pending input if cp->fd < 0,
16045         just return (bug#10044).
16047 2011-11-12  Eli Zaretskii  <eliz@gnu.org>
16049         * makefile.w32-in (HEAPSIZE): New variable, allows to build temacs
16050         with user-defined heap size.  Bump the default size of the temacs
16051         heap to 27MB, to avoid memory warning when running temacs.
16052         ($(TEMACS)): Use HEAPSIZE instead of a hardcoded value.
16054         * dispnew.c (scrolling_window): Fix incorrect indices in accessing
16055         current_matrix and desired_matrix.  (Bug#9990)
16056         (verify_row_hash) [XASSERTS]: New function.
16057         (adjust_glyph_matrix, row_equal_p): Use it in xassert to verify
16058         that the hash value of glyph rows is correct.
16060 2011-11-12  Martin Rudalics  <rudalics@gmx.at>
16062         * window.h (window): Remove splits slot.
16063         * window.c (Fwindow_splits, Fset_window_splits): Remove.
16064         (Fdelete_other_windows_internal, make_parent_window)
16065         (make_window, Fsplit_window_internal, Fdelete_window_internal)
16066         (Fset_window_configuration, save_window_save): Don't deal with
16067         split status of windows.
16068         (saved_window): Remove splits slot.
16069         (Vwindow_splits): Rewrite doc-string.
16071 2011-11-11  Jan Djärv  <jan.h.d@swipnet.se>
16073         * xfns.c (unwind_create_frame):
16074         * nsfns.m (unwind_create_frame):
16075         * w32fns.c (unwind_create_frame): Use Fmemq to check if frame is in
16076         Vframe_list (Bug#9999).
16078 2011-11-11  Dmitry Antipov  <dmantipov@yandex.ru>
16080         * xdisp.c (syms_of_xdisp): Remove duplicated definition of Qtext.
16082 2011-11-11  Kenichi Handa  <handa@m17n.org>
16084         * callproc.c (Fcall_process): Set the member dst_multibyte of
16085         process_coding.
16087 2011-11-11  Johan Bockgård  <bojohan@gnu.org>
16089         * xdisp.c (fill_composite_glyph_string): Always set s->face, to
16090         avoid a crash (bug#9496).
16092 2011-11-09  Chong Yidong  <cyd@gnu.org>
16094         * window.c (Fwindow_inside_edges, Fwindow_inside_pixel_edges)
16095         (Fwindow_inside_absolute_pixel_edges): Only allow live windows.
16097 2011-11-08  Paul Eggert  <eggert@cs.ucla.edu>
16099         * s/gnu.h (GC_MARK_STACK): Define to GC_MAKE_GCPROS_NOOPS (Bug#9926).
16101 2011-11-08  Paul Eggert  <eggert@cs.ucla.edu>
16103         Avoid some portability problems by eschewing 'extern inline' functions.
16104         The trivial performance wins aren't worth the portability hassles; see
16105         <http://lists.gnu.org/archive/html/emacs-devel/2011-11/msg00084.html>
16106         et seq.
16107         * dispextern.h (window_box, window_box_height, window_text_bottom_y)
16108         (window_box_width, window_box_left, window_box_left_offset)
16109         (window_box_right, window_box_right_offset): Undo previous change,
16110         by removing the "extern"s.
16111         * intervals.c (adjust_intervals_for_insertion)
16112         (adjust_intervals_for_deletion): Undo previous change,
16113         making these static again.
16114         (offset_intervals, temp_set_point_both, temp_set_point)
16115         (copy_intervals_to_string): No longer inline.
16116         * xdisp.c (window_text_bottom_y, window_box_width)
16117         (window_box_height, window_box_left_offset)
16118         (window_box_right_offset, window_box_left, window_box_right)
16119         (window_box): No longer inline.
16121 2011-11-08  Chong Yidong  <cyd@gnu.org>
16123         * window.c (Fwindow_left_column, Fwindow_top_line): Doc fix.
16124         (Fwindow_body_height, Fwindow_body_width): Move from Lisp.
16125         Signal an error if not a live window.
16126         (Fwindow_total_width, Fwindow_total_height): Move from Lisp.
16127         (Fwindow_total_size, Fwindow_body_size): Move to Lisp.
16129 2011-11-07  Juanma Barranquero  <lekktu@gmail.com>
16131         * lisp.h (syms_of_abbrev): Remove declaration.
16132         Reported by CHENG Gao <chenggao@royau.me>.
16134 2011-11-07  Eli Zaretskii  <eliz@gnu.org>
16136         * w32.c (check_windows_init_file): Don't look for term/w32-win.el
16137         if Vpurify_flag is non-nil.  Fixes a crash when running w32 build
16138         of temacs in GUI mode.
16140 2011-11-07  Martin Rudalics  <rudalics@gmx.at>
16142         * window.h: Declare delete_all_child_windows instead of
16143         delete_all_subwindows.
16144         * window.c (Fwindow_nest, Fset_window_nest)
16145         (Fset_window_new_total, Fset_window_new_normal)
16146         (Fwindow_resize_apply): Don't use term subwindow in doc-strings.
16147         (delete_all_subwindows): Rename to delete_all_child_windows.
16148         (Fdelete_other_windows_internal, Fset_window_configuration):
16149         Call delete_all_child_windows instead of delete_all_subwindows.
16150         * frame.c (delete_frame): Call delete_all_child_windows instead
16151         of delete_all_subwindows.
16153 2011-11-07  Paul Eggert  <eggert@cs.ucla.edu>
16155         * alloc.c (DEADP): New macro, for porting to GNU/Hurd (Bug#9926).
16156         This is also needed for porting to any host where GC_MARK_STACK is
16157         not GC_MAKE_GCPROS_NOOPS.
16158         (which_symbols): Use it.
16160 2011-11-07  Kenichi Handa  <handa@m17n.org>
16162         * coding.c (coding_set_destination): Check coding->src_pos only
16163         when coding->src_object is a buffer (bug#9910).
16165         * process.c (send_process): Set the member src_multibyte of coding
16166         to 0 (bug#9911) when sending a unibyte text.
16168         * callproc.c (Fcall_process): Set the member src_multibyte of
16169         process_coding to 0 (bug#9912).
16171 2011-11-06  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
16173         * xmenu.c (cleanup_widget_value_tree): New function.
16174         (xmenu_show, xdialog_show): Use it in record_unwind_protect instead of
16175         calling free_menubar_widget_value_tree directly (Bug#9830).
16177 2011-11-06  Paul Eggert  <eggert@cs.ucla.edu>
16179         Fix some portability problems with 'inline'.
16180         * dispextern.h (window_box, window_box_height, window_text_bottom_y)
16181         (window_box_width, window_box_left, window_box_left_offset)
16182         (window_box_right, window_box_right_offset): Declare extern.
16183         Otherwise, these inline functions do not conform to C99 and
16184         are miscompiled by Microsoft compilers.  Reported by Eli Zaretskii in
16185         <http://lists.gnu.org/archive/html/emacs-devel/2011-11/msg00084.html>.
16186         * intervals.c (adjust_intervals_for_insertion)
16187         (adjust_intervals_for_deletion): Now extern, because otherwise the
16188         extern inline functions 'offset_intervals' couldn't refer to it.
16189         (static_offset_intervals): Remove.
16190         (offset_intervals): Rewrite using the old contents of
16191         static_offset_intervals.  The old version didn't conform to C99
16192         because an extern inline function contained a reference to an
16193         identifier with static linkage.
16195 2011-11-06  Andreas Schwab  <schwab@linux-m68k.org>
16197         * keyboard.c (interrupt_signal): Don't call kill-emacs while in
16198         GC.
16200 2011-11-06  Eli Zaretskii  <eliz@gnu.org>
16202         * xdisp.c (init_iterator, reseat_to_string): Don't set the
16203         iterator's bidi_p flag if Vpurify_flag is non-nil.  (Bug#9963)
16204         (Fcurrent_bidi_paragraph_direction): If Vpurify_flag is non-nil,
16205         return Qleft_to_right.
16207 2011-11-06  Chong Yidong  <cyd@gnu.org>
16209         * window.c (Fwindow_live_p, Fwindow_frame, Fframe_root_window)
16210         (Fminibuffer_window, Fwindow_buffer, Fwindow_splits)
16211         (Fset_window_splits, Fwindow_nest, Fset_window_nest)
16212         (Fwindow_use_time, Fwindow_total_size, Fwindow_normal_size)
16213         (Fwindow_new_normal, Fwindow_left_column, Fwindow_top_line)
16214         (Fwindow_margins, Fwindow_fringes, Fwindow_scroll_bars)
16215         (Fwindow_vscroll): Doc fix.
16216         (Fwindow_top_child, Fwindow_left_child): Eliminate a nil default
16217         argument, since it makes no sense to pass a live window and for
16218         consistency with window-child.
16220 2011-11-05  Christoph Scholtes  <cschol2112@googlemail.com>
16222         * makefile.w32-in ($(TEMACS), (gl-stamp)): Use $(THISDIR) to
16223         support MSVC.
16225 2011-11-05  Jason Rumney  <jasonr@gnu.org>
16227         * w32font.c (font_matches_spec): Filter out non-Japanese kana fonts.
16228         (add_font_entity_to_list): Filter out non-Japanese Shift-JIS
16229         fonts (Bug#6029).
16230         (add_font_entity_to_list): Fix logic errors in mixed boolean and
16231         bitwise arithmetic preventing use of unicode-sip and non-truetype
16232         opentype fonts.
16234 2011-11-05  Eli Zaretskii  <eliz@gnu.org>
16236         * s/ms-w32.h (fstat, stat, utime): Move redirections to
16237         "emacs"-only part.
16239         * w32fns.c (x_create_tip_frame, Fx_create_frame): Rearrange
16240         initialization code to keep similarity to xfns.c after changes
16241         from 2011-11-05.
16243 2011-11-05  Jan Djärv  <jan.h.d@swipnet.se>
16245         * nsfns.m: Declare image_cache_refcount if GLYPH_DEBUG.
16246         (unwind_create_frame): New function (Bug#9943).
16247         (Fx_create_frame): Restructure code to be more similar to the one in
16248         xfns.c.  Call record_unwind_protect with unwind_create_frame (Bug#9943).
16249         Initialize image_cache_refcount if GLYPH_DEBUG (Bug#9943).
16250         Move terminal->reference_count++ just before making the frame official
16251         (Bug#9943).
16253         * nsterm.m (x_free_frame_resources): New function.
16254         (x_destroy_window): Move code to x_free_frame_resources.
16256         * xfns.c (unwind_create_frame): Fix comment.
16257         (Fx_create_frame, x_create_tip_frame):
16258         Move terminal->reference_count++ just before making the frame
16259         official.  Move initialization of image_cache_refcount and
16260         dpyinfo_refcount before calling init_frame_faces (Bug#9943).
16262 2011-11-05  Eli Zaretskii  <eliz@gnu.org>
16264         Support MSVC build with newer versions of Visual Studio.
16265         * makefile.w32-in (TAGS-gmake): Don't use $(patsubst ...), as
16266         Nmake barfs on that.  Use $(OBJ*_c) variables instead, defined on
16267         nt/gmake.defs.
16269         * lisp.h (ENUM_BF): New macro, for enumerated types in bitfields,
16270         which are not supported by MSVC.
16271         (Lisp_Symbol, Lisp_Misc_Any, Lisp_Marker, Lisp_Misc_Overlay)
16272         (Lisp_Save_Value, Lisp_Free): Use ENUM_BF for enumerated types in
16273         bitfields.
16274         (Lisp_Object) [USE_LISP_UNION_TYPE]: Use ENUM_BF for enumerated
16275         types in bitfields.
16276         (DEFUN) [_MSC_VER]: Define in a different way for MSVC.
16278         * w32fns.c [_MSC_VER]: DECLARE_HANDLE for any MSVC version.
16280 2011-11-05  Fabrice Popineau  <fabrice.popineau@supelec.fr>  (tiny change)
16282         Support MSVC build with newer versions of Visual Studio.
16283         * w32.c: Don't include w32api.h for MSVC.
16284         (init_environment) [_MSC_VER]: Call sys_access, not _access.
16286         * s/ms-w32.h <sigset_t, ssize_t> [_MSC_VER]: Typedefs for MSVC.
16287         [_MSC_VER]: Include sys/timeb.h, sys/stat.h, and signal.h.
16288         (fstat, stat, utime) [_MSC_VER]: Redirect to their sys_* cousins.
16289         (malloc, free, realloc, calloc) [_MSC_VER]: Always redirect to the
16290         e_* cousins.
16291         (alloca) [_MSC_VER]: Define to _alloca.
16293         * lisp.h (DECL_ALIGN) [_MSC_VER]: Define for MSVC.
16295         * regex.c <re_char> [_MSC_VER]: A separate definition for MSVC.
16297 2011-11-04  Eli Zaretskii  <eliz@gnu.org>
16299         * xdisp.c (note_mouse_highlight): If either of
16300         previous/next-single-property-change returns nil, treat that as
16301         the beginning or the end of the buffer.  (Bug#9955)
16303 2011-11-04  Jan Djärv  <jan.h.d@swipnet.se>
16305         * gtkutil.c (xg_make_tool_item): Add callbacks if one of wimage or
16306         label is not null (Bug#9951).
16307         (xg_tool_item_stale_p): Handle the fact that wimage and/or wlbl
16308         may be NULL.
16310 2011-11-04  Eli Zaretskii  <eliz@gnu.org>
16312         * window.c (Fwindow_body_size): Mention in the doc string that the
16313         return value is in frame's canonical units.  (Bug#9949)
16315 2011-11-03  Eli Zaretskii  <eliz@gnu.org>
16317         * xdisp.c (note_mouse_highlight): Initialize `area'.  (Bug#9947)
16319         * w32fns.c (unwind_create_frame): If needed, free the glyph
16320         matrices of the partially constructed frame.  (Bug#9943)
16321         * xfns.c (unwind_create_frame): Likewise.
16323 2011-11-01  Eli Zaretskii  <eliz@gnu.org>
16325         * xdisp.c (mouse_face_from_buffer_pos): Fix a typo in a comment.
16326         Don't stop backward scan on the continuation glyph, even though
16327         its CHARPOS is positive.
16328         (mouse_face_from_buffer_pos, note_mouse_highlight):
16329         Rename cover_string to disp_string.
16331 2011-11-01  Martin Rudalics  <rudalics@gmx.at>
16333         * window.c (temp_output_buffer_show): Don't use
16334         Vtemp_buffer_show_specifiers.
16335         (Vtemp_buffer_show_specifiers): Remove unused variable.
16337 2011-10-30  Eli Zaretskii  <eliz@gnu.org>
16339         * xdisp.c (try_cursor_movement): Make sure ROW isn't decremented
16340         past the beginning of the current glyph matrix.
16342 2011-10-30  Adam Sjøgren  <asjo@koldfront.dk>  (tiny change)
16344         * xterm.c: Include X11/Xproto.h if HAVE_GTK3.
16345         (x_error_handler): Ignore BadMatch for X_SetInputFocus for
16346         HAVE_GTK3 (Bug#9869).
16348         * gtkutil.c (xg_win_to_widget, xg_event_is_for_menubar): Initialize
16349         type to GDK_NOTHING so valgrind does not complain (Bug#9901).
16351         * xterm.h (x_display_info): Add Xatom_net_wm_state_hidden (Bug#9893).
16353         * xterm.c: Declare x_handle_net_wm_state to return int.
16354         (handle_one_xevent): Check if we are iconified but don't have
16355         _NET_WM_STATE_HIDDEN.  If do, treat as deiconify (Bug#9893).
16356         (get_current_wm_state): Return non-zero if not hidden,
16357         check for _NET_WM_STATE_HIDDEN (Bug#9893).
16358         (do_ewmh_fullscreen): Ignore return value from get_current_wm_state.
16359         (x_handle_net_wm_state): Return what get_current_wm_state returns.
16360         (x_term_init): Initialize dpyinfo->Xatom_net_wm_state_hidden.
16362 2011-10-29  Paul Eggert  <eggert@cs.ucla.edu>
16364         * alloc.c (which_symbols): Declare EXTERNALLY_VISIBLE,
16365         so that this new function doesn't get optimized away by a
16366         whole-program optimizer.  Make the 2nd arg EMACS_INT, not int.
16368 2011-10-29  Andreas Schwab  <schwab@linux-m68k.org>
16370         * frame.h (MOUSE_HL_INFO): Remove excess parens.
16372 2011-10-29  Eli Zaretskii  <eliz@gnu.org>
16374         Fix the `xbytecode' command.
16375         * .gdbinit (xprintbytestr): New command.
16376         (xwhichsymbols): Rename from `which'; all callers changed.
16377         (xbytecode): Print the byte-code string as well.
16379 2011-10-29  Kim Storm  <storm@cua.dk>
16381         * alloc.c (which_symbols): New function.
16383 2011-10-29  Andreas Schwab  <schwab@linux-m68k.org>
16385         * minibuf.c (read_minibuf_noninteractive): Allow reading empty
16386         line.  (Bug#9903)
16388 2011-10-29  Glenn Morris  <rgm@gnu.org>
16390         * process.c (wait_reading_process_output): Revert 2009-08-30 change.
16391         Not clear what it was for, and it causes various bugs.  (Bug#9839)
16393 2011-10-28  Eli Zaretskii  <eliz@gnu.org>
16395         * xdisp.c (note_mouse_highlight): Initialize `part', to avoid a
16396         possible random value that matches one of those tested as
16397         condition to clear the mouse face.
16399 2011-10-28  Chong Yidong  <cyd@gnu.org>
16401         * xdisp.c (note_mouse_highlight): Fix use of uninitialized var.
16403 2011-10-28  Dan Nicolaescu  <dann@ics.uci.edu>
16405         * window.c (make_window): Initialize phys_cursor_on_p.
16407 2011-10-28  Stefan Monnier  <monnier@iro.umontreal.ca>
16409         * lisp.h (struct Lisp_Symbol): Update comments.
16411 2011-10-28  Juanma Barranquero  <lekktu@gmail.com>
16413         * w32font.c (w32_load_unicows_or_gdi32): Add missing return.
16415 2011-10-28  Eli Zaretskii  <eliz@gnu.org>
16417         Fix Emacs on Windows 9X (bug#8562).  Thanks to oslsachem
16418         <oslsachem@gmail.com> for helping to debug this.
16420         * w32font.c (g_b_init_is_w9x, g_b_init_get_outline_metrics_w)
16421         (g_b_init_get_text_metrics_w, g_b_init_get_glyph_outline_w)
16422         (g_b_init_get_glyph_outline_w): New static variables.
16423         (GetOutlineTextMetricsW_Proc, GetTextMetricsW_Proc)
16424         (GetGlyphOutlineW_Proc): New typedefs.
16425         (w32_load_unicows_or_gdi32, get_outline_metrics_w)
16426         (get_text_metrics_w, get_glyph_outline_w, globals_of_w32font):
16427         New functions.
16428         (w32font_open_internal, compute_metrics):
16429         Call get_outline_metrics_w, get_text_metrics_w, and get_glyph_outline_w
16430         instead of calling the "wide" APIs directly.
16432         * emacs.c (main) [HAVE_NTGUI]: Call globals_of_w32font.
16434         * w32.h (syms_of_w32font): Add prototype.
16436 2011-10-27  Juanma Barranquero  <lekktu@gmail.com>
16438         * window.c (Fframe_root_window, Fframe_first_window, Fwindow_end)
16439         (Fframe_selected_window, Ftemp_output_buffer_show, Fnext_window)
16440         (Fdelete_window_internal, Fwindow_parameters): Fix typos in docstrings.
16441         (Fmove_to_window_line): Doc fix.
16443 2011-10-27  Chong Yidong  <cyd@gnu.org>
16445         * process.c (make_process): Set gnutls_state to NULL.
16447         * gnutls.c (emacs_gnutls_deinit): Deinit the gnutls_state if it is
16448         non-NULL, regardless of GNUTLS_INITSTAGE.
16449         (Fgnutls_boot): Cleanups.  Call emacs_gnutls_deinit if we signal
16450         an error.  Set process slots as soon as we allocate them.
16452         * gnutls.h (GNUTLS_LOG, GNUTLS_LOG2): Fix macros.
16454 2011-10-27  Chong Yidong  <cyd@gnu.org>
16456         * gnutls.c (emacs_gnutls_deinit): New function.
16457         Deallocate credentials structures as well as calling gnutls_deinit.
16458         (Fgnutls_deinit, Fgnutls_boot): Use it.
16460         * process.c (make_process): Initialize GnuTLS credentials to NULL.
16461         (deactivate_process): Call emacs_gnutls_deinit.
16463 2011-10-27  Juanma Barranquero  <lekktu@gmail.com>
16465         * image.c (x_create_x_image_and_pixmap):
16466         * w32.c (sys_rename, w32_delayed_load):
16467         * w32font.c (fill_in_logfont):
16468         * w32reg.c (x_get_string_resource): Silence compiler warnings.
16470 2011-10-26  Juanma Barranquero  <lekktu@gmail.com>
16472         * w32fns.c (w32_default_color_map): New function,
16473         extracted from Fw32_default_color_map.
16474         (Fw32_default_color_map, Fx_open_connection): Use it.  (Bug#9785)
16476 2011-10-25  Paul Eggert  <eggert@cs.ucla.edu>
16478         * dispextern.h (Fcontrolling_tty_p): New decl (Bug#6649 part 2).
16480 2011-10-25  Stefan Monnier  <monnier@iro.umontreal.ca>
16482         * keyboard.c (test_undefined): New function (bug#9751).
16483         (read_key_sequence): Use it to detect when a key is bound to `undefined'.
16485 2011-10-25  Enami Tsugutomo  <tsugutomo.enami@jp.sony.com>
16487         * sysdep.c (init_sys_modes): Fix the check for the controlling
16488         terminal (Bug#6649).
16490 2011-10-20  Eli Zaretskii  <eliz@gnu.org>
16492         * dispextern.h (struct bidi_it): New member next_en_type.
16494         * bidi.c (bidi_line_init): Initialize the next_en_type member.
16495         (bidi_resolve_explicit_1): When next_en_pos is valid for the
16496         current character, check also for next_en_type being WEAK_EN.
16497         (bidi_resolve_weak): Don't enter the expensive loop if the current
16498         position is before next_en_pos.  Record the bidi type of the first
16499         non-ET, non-BN character we find, in addition to its position.
16500         (bidi_level_of_next_char): Invalidate next_en_type when
16501         next_en_pos is over-stepped.
16503 2011-10-20  Paul Eggert  <eggert@cs.ucla.edu>
16505         Time zone name fixes for non-ASCII locales (Bug#641, Bug#9794)
16506         * editfns.c: Rewrite current-time-zone so that it invokes
16507         the equivalent of (format-time-string "%Z") to get the time zone name.
16508         This fixes a bug when the time zone name contains characters that
16509         need converting from the system time locale to Emacs internal format.
16510         This fixes a shortcoming that I introduced in my 1999-10-19 patch:
16511         that patch fixed format-time-string to do the conversion, but
16512         I forgot to fix current-time-zone.
16513         (format_time_string): New function, containing most of
16514         what Fformat_time_string used to contain.
16515         (Fformat_time_string): Rewrite in terms of format_time_string.
16516         This doesn't change this function's behavior.
16517         (current-time-zone): Rewrite to use format_time_string.
16518         This fixes the bug reported by Michael Schierl in
16519         <http://lists.gnu.org/archive/html/emacs-devel/2007-06/msg00334.html>.
16520         Jason Rumney's 2007-06-07 change worked around this bug, but
16521         didn't fix it.
16522         * systime.h (tzname, timezone): Remove no-longer-used declarations.
16524 2011-10-19  Eli Zaretskii  <eliz@gnu.org>
16526         * xdisp.c (start_display): If the character at POS is displayed
16527         via a display vector, reset IT->current.dpvec_index to zero.
16528         (try_window_reusing_current_matrix): If a line ends in a display
16529         vector or the next line starts in a display vector, continue
16530         redrawing the window even though the character position of
16531         start_row was reached.
16532         (Bug#9771, part 2)
16534 2011-10-18  Chong Yidong  <cyd@gnu.org>
16536         * xdisp.c (get_next_display_element): Handle U+2010 and U+2011
16537         with nobreak-char-display too.
16539 2011-10-18  Eli Zaretskii  <eliz@gnu.org>
16541         Fix part 3 of bug#9771.
16542         * bidi.c (bidi_line_init): Initialize next_en_pos to zero, not -1.
16543         (bidi_resolve_neutral): Don't enter the expensive loop looking for
16544         non-neutral characters if the current character is a paragraph
16545         separator (a.k.a. Newline).  This avoids running the same
16546         expensive loop twice, once when we consume the preceding newline
16547         and the other time when the line actually needs to be displayed.
16548         Avoid the loop when we see neutrals on the base embedding level
16549         following a character whose directionality is the same as the
16550         paragraph's.  This avoids running the expensive loop when a line
16551         ends in a long sequence of neutrals, like control characters.
16552         Add assertion against STRONG_AL type.  Slightly rearrange code
16553         that determines the type of a neutral given the first non-neutral
16554         that follows it.
16555         (bidi_level_of_next_char): Set next_en_pos to zero when
16556         invalidating its info.
16558 2011-10-17  Eli Zaretskii  <eliz@gnu.org>
16560         * xdisp.c (push_display_prop): Determine whether to record string
16561         or buffer position by IT->string, not by IT->method.  Allow
16562         GET_FROM_DISPLAY_VECTOR as IT->method on entry.  (Bug#9771, part 4)
16563         (move_it_vertically_backward): Don't look for character position
16564         immediately after the newline when in a continuation line.
16565         (Bug#9771, part 1)
16567 2011-10-15  Martin Rudalics  <rudalics@gmx.at>
16569         * window.c (coordinates_in_window): Rewrite and delabelize
16570         vertical border check.  (Bug#5357) (Bug#9618)
16572 2011-10-14  Stefan Monnier  <monnier@iro.umontreal.ca>
16574         * xterm.c (frame_highlight, frame_unhighlight): Ignore unexplained
16575         errors in XSetWindowBorder (bug#9310).
16577 2011-10-13  Dmitry Antipov  <dmantipov@yandex.ru>
16579         * editfns.c (Fset_time_zone_rule): Replace free with xfree to
16580         avoid crash when xmalloc overrun checking is enabled.
16582 2011-10-13  Eli Zaretskii  <eliz@gnu.org>
16584         * xdisp.c (Fcurrent_bidi_paragraph_direction): Initialize
16585         itb.paragraph_dir to NEUTRAL_DIR.  Fixes an occasional incorrect
16586         cursor motion with <left> and <right> arrow keys.
16588         * bidi.c (bidi_init_it): Don't initialize paragraph_dir here, as
16589         some callers set that themselves.
16591 2011-10-12  Eli Zaretskii  <eliz@gnu.org>
16593         * xdisp.c (find_row_edges): Handle the case where ROW comes from a
16594         display string and the previous row comes from the same string and
16595         is empty.  (Bug#9739)  (Bug#9738)
16597 2011-10-12  Stefan Monnier  <monnier@iro.umontreal.ca>
16599         * doc.c (get_doc_string): Encode file name (bug#9735).
16601 2011-10-12  Eli Zaretskii  <eliz@gnu.org>
16603         * bidi.c (bidi_level_of_next_char):
16604         * xdisp.c (get_visually_first_element): Remove old incorrect
16605         comments regarding the Unicode Line Separator character.
16607         * bidi.c (bidi_init_it): Initialize paragraph_dir to NEUTRAL_DIR.
16609 2011-10-12  Dmitry Antipov  <dmantipov@yandex.ru>
16611         * alloc.c (Fgc_status): Do not access beyond zombies array
16612         boundary if nzombies > MAX_ZOMBIES.
16613         * alloc.c (dump_zombies): Add missing format specifier.
16615 2011-10-12  Paul Eggert  <eggert@cs.ucla.edu>
16617         * xdisp.c (set_cursor_from_row): Simplify conditionals,
16618         to pacify GCC 4.6.1 x86-64 with -O2 -Wstrict-overflow.
16620         * lread.c (read_escape): Allow hex escapes as large as ?\xfffffff.
16621         Some packages use them to denote characters with modifiers.
16623 2011-10-11  Andreas Schwab  <schwab@linux-m68k.org>
16625         * lisp.h (GCPRO1_VAR, GCPRO2_VAR, GCPRO3_VAR, GCPRO4_VAR)
16626         (GCPRO5_VAR, GCPRO6_VAR, UNGCPRO_VAR): Add whitespace to avoid
16627         matching a pp-number.  Rename parameter var to var1.
16629 2011-10-11  Stefan Monnier  <monnier@iro.umontreal.ca>
16631         * minibuf.c (Finternal_complete_buffer): Fix last change (bug#9709).
16633 2011-10-08  Glenn Morris  <rgm@gnu.org>
16635         * callint.c (Fcall_interactively): Give a more explicit error for the
16636         'c' case with a non-character input.  (Bug#8479)
16638 2011-10-08  Eli Zaretskii  <eliz@gnu.org>
16640         * xdisp.c (hscroll_window_tree): Support hscroll in right-to-left
16641         lines.
16642         (set_cursor_from_row): Fix cursor positioning in mixed L2R+R2L
16643         lines that are hscrolled on the left.
16645         * dispnew.c (buffer_posn_from_coords): Account for a possible
16646         presence of header-line.  (Bug#4426)
16648 2011-10-07  Stefan Monnier  <monnier@iro.umontreal.ca>
16650         * buffer.c (syms_of_buffer) <enable-multibyte-characters>:
16651         Don't advertise functionality which we discourage or doesn't work.
16653 2011-10-07  Paul Eggert  <eggert@cs.ucla.edu>
16655         * alloc.c (GC_LISP_OBJECT_ALIGNMENT): Use offsetof, not __alignof__
16656         or sizeof.  __alignof__ gives the wrong answer on Fedora x86-64
16657         with GCC 4.6.1 when configured with CC='gcc -m32' --with-wide-int;
16658         this makes Emacs dump core during garbage collection on rare
16659         occasions.  sizeof is obviously inferior to offsetof here, so
16660         stick with offsetof.
16661         (GC_POINTER_ALIGNMENT): New macro.
16662         (mark_memory): Omit 3rd (offset) arg; caller changed.
16663         Don't assume EMACS_INT alignment is the same as pointer alignment.
16665 2011-10-03  Stefan Monnier  <monnier@iro.umontreal.ca>
16667         * keyboard.c (read_key_sequence_remapped): New var.
16668         (read_key_sequence): Compute remapping in the right buffer.
16669         (command_loop_1): Use read_key_sequence's remapping directly.
16671 2011-10-02  Stefan Monnier  <monnier@iro.umontreal.ca>
16673         * dired.c (file_name_completion): Don't expand file name.
16674         (Ffile_name_completion, Ffile_name_all_completions): Expand file name
16675         before checking file name handler.
16677         * minibuf.c (Finternal_complete_buffer): Only show internal buffers if
16678         they've been requested explicitly (bug#9591).
16680 2011-10-01  Andreas Schwab  <schwab@linux-m68k.org>
16682         * keymap.c (Fsingle_key_description): Use make_specified_string
16683         instead of build_string to build string from push_key_description.
16684         (Bug#5193)
16686 2011-09-30  Paul Eggert  <eggert@cs.ucla.edu>
16688         * buffer.h (struct buffer): Use time_t, not int, for a time stamp.
16689         This fixes a Y2038 bug on 64-bit hosts.
16690         * buffer.c (reset_buffer):
16691         * fileio.c (Fdo_auto_save, Fset_buffer_auto_saved)
16692         (Fclear_buffer_auto_save_failure):
16693         Use 0, not -1, to represent an unset failure time, since time_t
16694         might not be signed.
16696         Remove dependency on glibc malloc internals.
16697         * alloc.c (XMALLOC_OVERRUN_CHECK_OVERHEAD, XMALLOC_OVERRUN_CHECK_SIZE):
16698         Move back here from lisp.h, but with their new implementations.
16699         (XMALLOC_BASE_ALIGNMENT, COMMON_MULTIPLE, XMALLOC_HEADER_ALIGNMENT)
16700         (XMALLOC_OVERRUN_SIZE_SIZE): Move these new lisp.h macros here.
16701         * charset.c (charset_table_init): New static var.
16702         (syms_of_charset): Use it instead of xmalloc.  This removes a
16703         dependency on glibc malloc internals.  See Eli Zaretskii's comment in
16704         <http://lists.gnu.org/archive/html/emacs-devel/2011-09/msg00815.html>.
16705         * lisp.h (XMALLOC_OVERRUN_CHECK_OVERHEAD, XMALLOC_OVERRUN_CHECK_SIZE):
16706         Move back to alloc.c.
16707         (XMALLOC_BASE_ALIGNMENT, COMMON_MULTIPLE, XMALLOC_HEADER_ALIGNMENT)
16708         (XMALLOC_OVERRUN_SIZE_SIZE): Move to alloc.c.
16710 2011-09-30  Jan Djärv  <jan.h.d@swipnet.se>
16712         * nsterm.m (windowDidResize): Call x_set_window_size only when
16713         ns_in_resize is true.  Otherwise set pixelwidth/height and
16714         call change_frame_size (Bug#9628).
16716 2011-09-30  Paul Eggert  <eggert@cs.ucla.edu>
16718         Port --enable-checking=all to Fedora 14 x86-64.
16719         * charset.c (syms_of_charset): Also account for glibc malloc's
16720         internal overhead when calculating the initial malloc maximum.
16722         Port --enable-checking=all to Fedora 14 x86.
16723         * alloc.c (XMALLOC_OVERRUN_CHECK_OVERHEAD, XMALLOC_OVERRUN_CHECK_SIZE):
16724         Move to lisp.h.
16725         (xmalloc_put_size, xmalloc_get_size, overrun_check_malloc)
16726         (overrun_check_realloc, overrun_check_free):
16727         Use XMALLOC_OVERRUN_SIZE_SIZE, not sizeof (size_t).
16728         That way, xmalloc returns a properly-aligned pointer even if
16729         XMALLOC_OVERRUN_CHECK is defined.  The old debugging code happened
16730         to align OK on typical 64-bit hosts, but not on Fedora 14 x86.
16731         * charset.c (syms_of_charset): Take XMALLOC_OVERRUN_CHECK_OVERHEAD
16732         into account when calculating the initial malloc maximum.
16733         * lisp.h (XMALLOC_OVERRUN_CHECK_OVERHEAD, XMALLOC_OVERRUN_CHECK_SIZE):
16734         Move here from alloc.c, so that charset.c can use it too.
16735         Properly align; the old code wasn't right for common 32-bit hosts
16736         when configured with --enable-checking=all.
16737         (XMALLOC_BASE_ALIGNMENT, COMMON_MULTIPLE, XMALLOC_HEADER_ALIGNMENT)
16738         (XMALLOC_OVERRUN_SIZE_SIZE): New macros.
16740 2011-09-29  Eli Zaretskii  <eliz@gnu.org>
16742         * sysdep.c (snprintf) [!EOVERFLOW]: If EOVERFLOW is not defined,
16743         use EDOM.
16745 2011-09-28  Eli Zaretskii  <eliz@gnu.org>
16747         * xdisp.c (compute_display_string_end): If there's no display
16748         string at CHARPOS, return -1.
16750         * bidi.c (bidi_fetch_char): When compute_display_string_end
16751         returns a negative value, treat the character as a normal
16752         character not covered by a display string.  (Bug#9624)
16754 2011-09-28  Juanma Barranquero  <lekktu@gmail.com>
16756         * lread.c (Fread_from_string): Fix typo in docstring.
16758 2011-09-27  Eli Zaretskii  <eliz@gnu.org>
16760         * xdisp.c (handle_invisible_prop): If invisible text ends on a
16761         newline, reseat the iterator instead of bidi-iterating there one
16762         character at a time.  (Bug#9610)
16763         (BUFFER_POS_REACHED_P, move_it_in_display_line_to): Bail when past
16764         TO_CHARPOS if the bidi iterator is at base embedding level.
16766 2011-09-27  Andreas Schwab  <schwab@linux-m68k.org>
16768         * lread.c (readevalloop): Use correct code for NBSP.
16769         (read1): Likewise.  (Bug#9608)
16771 2011-09-25  Michael Albinus  <michael.albinus@gmx.de>
16773         * dbusbind.c (Fdbus_register_signal): When service is not
16774         registered, use nil in Vdbus_registered_objects_table.  (Bug#9581)
16776 2011-09-25  Glenn Morris  <rgm@gnu.org>
16778         * buffer.c (truncate-lines): Doc fix.
16780 2011-09-24  Chong Yidong  <cyd@stupidchicken.com>
16782         * window.c (Fwindow_prev_buffers, Fset_window_prev_buffers)
16783         (Fset_window_next_buffers): Doc fix.
16785 2011-09-24  Glenn Morris  <rgm@gnu.org>
16787         * minibuf.c (read_minibuf): Disable line truncation.  (Bug#5715)
16789 2011-09-24  Paul Eggert  <eggert@cs.ucla.edu>
16791         Fix minor problems found by static checking.
16792         * xdisp.c (string_from_display_spec): Don't assume vecsize fits in int.
16793         * indent.c (Fvertical_motion): Fix == vs = typo.
16795 2011-09-24  Eli Zaretskii  <eliz@gnu.org>
16797         * dispnew.c (syms_of_display) <redisplay-dont-pause>:
16798         Default value is now t.  Doc fix.
16800         * indent.c (Fvertical_motion): Compute and apply the overshoot
16801         logic when moving up, not only when moving down.  Fix the
16802         confusing name and values of the it_overshoot_expected variable;
16803         logic changes accordingly.  (Bug#9254) (Bug#9549)
16805         * xdisp.c (pos_visible_p): Produce correct pixel coordinates when
16806         CHARPOS is covered by a display string which includes newlines.
16807         (move_it_vertically_backward): Avoid inflooping when START_CHARPOS
16808         is covered by a display string with embedded newlines.
16810 2011-09-24  Michael Albinus  <michael.albinus@gmx.de>
16812         * dbusbind.c (Fdbus_register_signal): Add match rule to
16813         Vdbus_registered_objects_table.  (Bug#9581)
16814         (Fdbus_register_method, Vdbus_registered_objects_table):
16815         Fix docstring.
16817 2011-09-24  Jim Meyering  <meyering@redhat.com>
16819         do not ignore write error for any output size
16820         The previous change was incomplete.
16821         While it makes emacs --batch detect the vast majority of stdout
16822         write failures, errors were still ignored whenever the output size is
16823         k * (BUFSIZ+1) - 4.  E.g., on a system with BUFSIZ of 4096,
16824           $ emacs --batch --eval '(print (format "%4093d" 0))' > /dev/full \
16825               && echo FAIL: ignored write error
16826           FAIL: ignored write error
16827           $ emacs --batch --eval '(print (format "%20481d" 0))' > /dev/full \
16828               && echo FAIL: ignored write error
16829           FAIL: ignored write error
16830         * emacs.c (Fkill_emacs): Also test ferror.  (Bug#9574)
16832 2011-09-23  Andreas Schwab  <schwab@linux-m68k.org>
16834         * emacs.c (Fkill_emacs): In noninteractive mode exit
16835         non-successfully if a write error occurred on stdout.  (Bug#9574)
16837 2011-09-21  Eli Zaretskii  <eliz@gnu.org>
16839         * xdisp.c (pop_it): Allow it->object that is a cons cell to pass
16840         the xassert test.
16842         * dispextern.h (struct it): Update the comment documenting what
16843         can it->OBJECT be.
16845 2011-09-20  Eli Zaretskii  <eliz@gnu.org>
16847         * xdisp.c (set_cursor_from_row): If the row ends in a newline from
16848         a display string, extend search for cursor position to end of row.
16849         (find_row_edges): If the row ends in a newline from a display
16850         string, increment its MATRIX_ROW_END_CHARPOS by one.  (Bug#9549)
16851         Handle the case of a display string with multiple newlines.
16852         (Fcurrent_bidi_paragraph_direction): Fix search for previous
16853         non-empty line.  Fixes confusing cursor motion with arrow keys at
16854         the beginning of a line that starts with whitespace.
16856 2011-09-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16858         * lread.c (Fread_from_string): Document what FINAL-STRING-INDEX is
16859         (bug#9493).
16861 2011-09-18  Chong Yidong  <cyd@stupidchicken.com>
16863         * xfns.c (Fx_create_frame): Handle the bitmapIcon resource as
16864         boolean (Bug#9154).
16866 2011-09-18  Eli Zaretskii  <eliz@gnu.org>
16868         * xdisp.c (display_line): Record maximum and minimum buffer
16869         positions even if no glyphs were produced (e.g., by a zero-width
16870         stretch).  Fixes bug#9530 on a TTY.  Under word-wrap, don't record
16871         buffer positions that will be removed from the glyph row because
16872         they don't fit.
16873         (produce_stretch_glyph): Fix a bug in :align-to on a TTY when the
16874         column is beyond frame width: don't subtract 1 "pixel" when
16875         computing width of the stretch.
16876         (reseat_at_next_visible_line_start): Undo the change made on
16877         2011-09-17 that saved paragraph information and restored it after
16878         the call to `reseat'.  (Bug#9545)
16880 2011-09-18  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
16882         * xdisp.c (expose_window): Save original value of phys_cursor_on_p
16883         and turn window cursor on if cleared (Bug#9415).
16885 2011-09-18  Andreas Schwab  <schwab@linux-m68k.org>
16887         * search.c (boyer_moore): Take unibyte characters from pattern
16888         literally.  (Bug#9458)
16890 2011-09-18  Eli Zaretskii  <eliz@gnu.org>
16892         * xdisp.c (reseat_at_next_visible_line_start): Fix last change.
16894 2011-09-18  Paul Eggert  <eggert@cs.ucla.edu>
16896         Fix minor problem found by static checking.
16897         * xdisp.c (reseat_at_next_visible_line_start): Mark locals as
16898         initialized, to pacify gcc -Wuninitialized.
16900         * fileio.c: Report proper errno when syscall falls.
16901         (Finsert_file_contents): Save and restore errno,
16902         so that report_file_error outputs the correct diagnostic.
16903         (Fwrite_region) [CLASH_DETECTION]: Likewise.
16905 2011-09-18  Eli Zaretskii  <eliz@gnu.org>
16907         * .gdbinit (pgx): Fix references to fields of `struct glyph'.
16909 2011-09-17  Eli Zaretskii  <eliz@gnu.org>
16911         * xdisp.c (produce_stretch_glyph): Another fix for changes made on
16912         2011-08-30T17:32:44Z!eliz@gnu.org.  (Bug#9530)
16914 2011-09-17  Eli Zaretskii  <eliz@gnu.org>
16916         * xdisp.c (reseat_at_next_visible_line_start): Keep information
16917         about the current paragraph and restore it after the call to reseat.
16919         * bidi.c (MAX_PARAGRAPH_SEARCH): New macro.
16920         (bidi_find_paragraph_start): Search back for paragraph beginning
16921         at most MAX_PARAGRAPH_SEARCH lines; if not found, return BEGV_BYTE.
16922         (bidi_move_to_visually_next): Only trigger paragraph-related
16923         computations when the last character is a newline or at EOB, not
16924         just any NEUTRAL_B.  (Bug#9470)
16926         * xdisp.c (set_cursor_from_row): Don't invoke special treatment of
16927         truncated lines if point is covered by a display string.  (Bug#9524)
16929 2011-09-16  Paul Eggert  <eggert@cs.ucla.edu>
16931         * xselect.c: Relax test for outgoing X longs (Bug#9498).
16932         (cons_to_x_long): New function.
16933         (lisp_data_to_selection_data): Use it.  Correct the test for
16934         short-versus-long data; it was negated.  Break out of vector
16935         loop, for efficiency, when a long datum is discovered.
16937 2011-09-16  Stefan Monnier  <monnier@iro.umontreal.ca>
16939         * eval.c (Fquote): Document its non-consing behavior (bug#9482).
16941 2011-09-16  Eli Zaretskii  <eliz@gnu.org>
16943         * image.c (tiff_handler): Work around a bug in MinGW GCC 3.x (see
16944         GCC PR/17406) by declaring this function with external scope.
16946 2011-09-15  Paul Eggert  <eggert@cs.ucla.edu>
16948         * editfns.c (Fformat): Fix bug in text-property fix (Bug#9514).
16949         Don't mishandle (length (format "%%")) and (format "%4000s%%" "").
16951 2011-09-15  Andreas Schwab  <schwab@linux-m68k.org>
16953         * editfns.c (Fformat): Correctly handle text properties on "%%".
16955 2011-09-15  Eli Zaretskii  <eliz@gnu.org>
16957         * xterm.c (x_draw_composite_glyph_string_foreground):
16958         * w32term.c (x_draw_composite_glyph_string_foreground):
16959         * term.c (encode_terminal_code):
16960         * composite.c (composition_update_it, get_composition_id):
16961         * xdisp.c (get_next_display_element)
16962         (fill_composite_glyph_string): Add comments about special meaning
16963         of TAB characters in a composition.
16965 2011-09-15  Paul Eggert  <eggert@cs.ucla.edu>
16967         * editfns.c (Fformat): Fix off-by-1 bug for "%%b" (Bug#9514).
16968         This occurs when processing a multibyte format.
16969         Problem reported by Wolfgang Jenker.
16971 2011-09-15  Johan Bockgård  <bojohan@gnu.org>
16973         * xdisp.c (try_cursor_movement): Only check for exact match if
16974         cursor hpos found by set_cursor_from_row is valid.  (Bug#9495)
16976 2011-09-14  Paul Eggert  <eggert@cs.ucla.edu>
16978         Remove unused external symbols.
16979         * dispextern.h (calc_pixel_width_or_height): Remove decl.
16980         * xdisp.c (calc_pixel_width_or_height): Now static.
16981         * doprnt.c (exprintf) [! (HAVE_X_WINDOWS && USE_X_TOOLKIT)]: Remove.
16982         * indent.c (check_display_width):
16983         * w32term.c: Fix comment to match code.
16984         * xterm.c, xterm.h (x_catching_errors): Remove.
16986 2011-09-14  Paul Eggert  <eggert@cs.ucla.edu>
16988         * xselect.c: Use signed conversions more consistently (Bug#9498).
16989         (selection_data_to_lisp_data): Assume incoming selection data are
16990         signed integers, not unsigned.  This is to be consistent with
16991         outgoing selection data, which was modified to use signed integers
16992         in as part of the fix to Bug#9196 in response to Jan D.'s comment
16993         in <http://debbugs.gnu.org/cgi/bugreport.cgi?bug=9196#32> that X11
16994         expects long, not unsigned long.
16996 2011-09-14  Eli Zaretskii  <eliz@gnu.org>
16998         * xdisp.c (try_window_reusing_current_matrix): Fix incorrect
16999         computation of loop end.  Reported by Johan Bockgård
17000         <bojohan@gnu.org>.
17002 2011-09-13  Chong Yidong  <cyd@stupidchicken.com>
17004         * frame.c (Fother_visible_frames_p): Function deleted.
17006 2011-09-12  Eli Zaretskii  <eliz@gnu.org>
17008         * indent.c (compute_motion): Process display vector front to back
17009         rather than the other way around.  (Bug#2496)
17011 2011-09-12  Stefan Monnier  <monnier@iro.umontreal.ca>
17013         * fileio.c (Finsert_file_contents): Don't assume beg_offset is 0.
17015 2011-09-11  Chong Yidong  <cyd@stupidchicken.com>
17017         * minibuf.c (Fread_from_minibuffer): Doc fix.
17019 2011-09-11  Eli Zaretskii  <eliz@gnu.org>
17021         * xdisp.c (produce_stretch_glyph): Fix a typo made in changes from
17022         2011-08-30T17:32:44Z!eliz@gnu.org.  (Bug#9475)
17024 2011-09-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17026         * fileio.c (Fvisited_file_modtime): Document `(-1 65535)' as a
17027         value for non-existent files.
17029 2011-09-11  Eli Zaretskii  <eliz@gnu.org>
17031         * fileio.c (Finsert_file_contents): If the file cannot be opened,
17032         set its "size" to -1.  This will set the modtime_size field of
17033         the corresponding buffer to -1, which is what
17034         verify-visited-file-modtime expects for files that do not exist.
17035         (Bug#9139)
17037 2011-09-11  Paul Eggert  <eggert@cs.ucla.edu>
17039         * keymap.h (KEY_DESCRIPTION_SIZE, push_key_description): Move decls
17040         here ...
17041         * lisp.h: ... from here.  push_key_description is no longer
17042         defined in keyboard.c, so its declaration should not be in
17043         lisp.h's "Defined in keyboard.c" section, and KEY_DESCRIPTION_SIZE
17044         logically belongs with push_key_description.
17046 2011-09-10  Paul Eggert  <eggert@cs.ucla.edu>
17048         * buffer.h: Include <sys/types.h> instead of <time.h>.
17049         Otherwise, off_t wasn't defined on FreeBSD 9.0-BETA2 i386.
17050         Problem reported by Herbert J. Skuhra.
17052 2011-09-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17054         * xml.c (parse_region): Make the parsing work for
17055         non-comment-starting XML files again (bug#9144).
17057 2011-09-10  Andreas Schwab  <schwab@linux-m68k.org>
17059         * image.c (gif_load): Fix calculation of bottom and right corner.
17060         (Bug#9468)
17062 2011-09-10  Eli Zaretskii  <eliz@gnu.org>
17064         * xdisp.c (MAX_DISP_SCAN): Decrease to 250.  Prevents sluggish
17065         redisplay in small windows.
17067 2011-09-09  Eli Zaretskii  <eliz@gnu.org>
17069         * frame.c (x_report_frame_params): Cast to avoid compiler warnings.
17071 2011-09-08  Martin Rudalics  <rudalics@gmx.at>
17073         * window.c (Fset_window_prev_buffers, Fset_window_next_buffers):
17074         Operate on live windows only.
17076 2011-09-08  Juanma Barranquero  <lekktu@gmail.com>
17078         * emacs.c (my_heap_start): #ifdef to avoid warnings when unused.
17080 2011-09-07  Eli Zaretskii  <eliz@gnu.org>
17082         * xdisp.c (move_it_in_display_line_to): Call RESTORE_IT on ppos_it
17083         only under bidi iteration.
17085 2011-09-07  Jan Djärv  <jan.h.d@swipnet.se>
17087         * gtkutil.c (xg_make_tool_item): Insert comment about eventbox.
17089 2011-09-06  Paul Eggert  <eggert@cs.ucla.edu>
17091         isnan: Fix porting problem to Solaris 10 with bundled gcc.
17092         Without this fix, the command to link temacs failed due to an
17093         undefined symbol __builtin_isnan.  This is because
17094         /usr/include/iso/math_c99.h #defines isnan(x) to
17095         __builtin_isnan(x), but the bundled gcc, which identifies itself
17096         as gcc 3.4.3 (csl-sol210-3_4-branch+sol_rpath), does not have
17097         a __builtin_isnan.
17098         * floatfns.c (isnan): #undef, and then #define to a clone of
17099         what's in data.c.
17100         (Fisnan): Always define, since it's always available now.
17101         (syms_of_floatfns): Always define isnan at the Lisp level.
17103 2011-09-06  Paul Eggert  <eggert@cs.ucla.edu>
17105         * Makefile.in (gl-stamp): move-if-change now in build-aux (Bug#9169).
17107 2011-09-06  Paul Eggert  <eggert@cs.ucla.edu>
17109         * fileio.c: Fix bugs with large file offsets (Bug#9428).
17110         The previous code assumed that file offsets (off_t values) fit in
17111         EMACS_INT variables, which is not true on typical 32-bit hosts.
17112         The code messed up by falsely reporting buffer overflow in cases
17113         such as (insert-file-contents "big" nil 1 2) into an empty buffer
17114         when "big" contains more than 2**29 bytes, even though this
17115         inserts just one byte and does not overflow the buffer.
17116         (Finsert_file_contents): Store file offsets as off_t
17117         values, not as EMACS_INT values.  Check for overflow when
17118         converting between EMACS_INT and off_t.  When checking for
17119         buffer overflow or for overlap, take the offsets into account.
17120         Don't use EMACS_INT for small values where int suffices.
17121         When checking for overlap, fix a typo: ZV was used where
17122         ZV_BYTE was intended.
17123         (Fwrite_region): Don't assume off_t fits into 'long'.
17124         * buffer.h (struct buffer.modtime_size): Now off_t, not EMACS_INT.
17126 2011-09-05  Michael Albinus  <michael.albinus@gmx.de>
17128         * dbusbind.c (xd_signature_cat): Rename from signature_cat.
17130 2011-09-04  Paul Eggert  <eggert@cs.ucla.edu>
17132         sprintf-related integer and memory overflow issues (Bug#9412).
17134         * doprnt.c (doprnt): Support printing ptrdiff_t and intmax_t values.
17135         (esprintf, exprintf, evxprintf): New functions.
17136         * keyboard.c (command_loop_level): Now EMACS_INT, not int.
17137         (cmd_error): Kbd macro iterations count is now EMACS_INT, not int.
17138         (modify_event_symbol): Do not assume that the length of
17139         name_alist_or_stem is safe to alloca and fits in int.
17140         (Fexecute_extended_command): Likewise for function name and binding.
17141         (Frecursion_depth): Wrap around reliably on integer overflow.
17142         * keymap.c (push_key_description): First arg is now EMACS_INT, not int,
17143         since some callers pass EMACS_INT values.
17144         (Fsingle_key_description): Don't crash if symbol name contains more
17145         than MAX_ALLOCA bytes.
17146         * minibuf.c (minibuf_level): Now EMACS_INT, not int.
17147         (get_minibuffer): Arg is now EMACS_INT, not int.
17148         * lisp.h (get_minibuffer, push_key_description): Reflect API changes.
17149         (esprintf, exprintf, evxprintf): New decls.
17150         * window.h (command_loop_level, minibuf_level): Reflect API changes.
17152         * dbusbind.c (signature_cat): New function.
17153         (xd_signature, Fdbus_register_signal):
17154         Do not overrun buffer; instead, report string overflow.
17156         * dispnew.c (add_window_display_history): Don't overrun buffer.
17157         Truncate instead; this is OK since it's just a log.
17159         * editfns.c (Fcurrent_time_zone): Don't overrun buffer
17160         even if the time zone offset is outlandishly large.
17161         Don't mishandle offset == INT_MIN.
17163         * emacs.c (main) [NS_IMPL_COCOA]: Don't overrun buffer
17164         when creating daemon; the previous buffer-overflow check was incorrect.
17166         * eval.c (verror): Simplify by rewriting in terms of evxprintf,
17167         which has the guts of the old verror function.
17169         * filelock.c (lock_file_1, lock_file): Don't blindly alloca long name;
17170         use SAFE_ALLOCA instead.  Use esprintf to avoid int-overflow issues.
17172         * font.c: Include <float.h>, for DBL_MAX_10_EXP.
17173         (font_unparse_xlfd): Don't blindly alloca long strings.
17174         Don't assume XINT result fits in int, or that XFLOAT_DATA * 10
17175         fits in int, when using sprintf.  Use single snprintf to count
17176         length of string rather than counting it via multiple sprintfs;
17177         that's simpler and more reliable.
17178         (font_unparse_fcname): Use it to avoid sprintf buffer overrun.
17179         (generate_otf_features) [0 && HAVE_LIBOTF]: Use esprintf, not
17180         sprintf, in case result does not fit in int.
17182         * fontset.c (num_auto_fontsets): Now printmax_t, not int.
17183         (fontset_from_font): Print it.
17185         * frame.c (tty_frame_count): Now printmax_t, not int.
17186         (make_terminal_frame, set_term_frame_name): Print it.
17187         (x_report_frame_params): In X, window IDs are unsigned long,
17188         not signed long, so print them as unsigned.
17189         (validate_x_resource_name): Check for implausibly long names,
17190         and don't assume name length fits in 'int'.
17191         (x_get_resource_string): Don't blindly alloca invocation name;
17192         use SAFE_ALLOCA.  Use esprintf, not sprintf, in case result does
17193         not fit in int.
17195         * gtkutil.c: Include <float.h>, for DBL_MAX_10_EXP.
17196         (xg_check_special_colors, xg_set_geometry):
17197         Make sprintf buffers a bit bigger, to avoid potential buffer overrun.
17199         * lread.c (dir_warning): Don't blindly alloca buffer; use SAFE_ALLOCA.
17200         Use esprintf, not sprintf, in case result does not fit in int.
17202         * macros.c (executing_kbd_macro_iterations): Now EMACS_INT, not int.
17203         (Fend_kbd_macro): Don't mishandle MOST_NEGATIVE_FIXNUM by treating
17204         it as a large positive number.
17205         (Fexecute_kbd_macro): Don't assume repeat count fits in int.
17206         * macros.h (executing_kbd_macro_iterations): Now EMACS_INT, not int.
17208         * nsterm.m ((NSSize)windowWillResize): Use esprintf, not sprintf,
17209         in case result does not fit in int.
17211         * print.c (float_to_string): Detect width overflow more reliably.
17212         (print_object): Make sprintf buffer a bit bigger, to avoid potential
17213         buffer overrun.  Don't assume list length fits in 'int'.  Treat
17214         print length of 0 as 0, not as infinity; to be consistent with other
17215         uses of print length in this function.  Don't overflow print length
17216         index.  Don't assume hash table size fits in 'long', or that
17217         vectorlike size fits in 'unsigned long'.
17219         * process.c (make_process): Use printmax_t, not int, to format
17220         process-name gensyms.
17222         * sysdep.c (snprintf) [! HAVE_SNPRINTF]: New function.
17224         * term.c (produce_glyphless_glyph): Make sprintf buffer a bit bigger
17225         to avoid potential buffer overrun.
17227         * xfaces.c (x_update_menu_appearance): Don't overrun buffer
17228         if X resource line is longer than 512 bytes.
17230         * xfns.c (x_window): Make sprintf buffer a bit bigger
17231         to avoid potential buffer overrun.
17233         * xterm.c (x_io_error_quitter): Don't overrun sprintf buffer.
17235         * xterm.h (x_check_errors): Add ATTRIBUTE_FORMAT_PRINTF.
17237 2011-09-04  Paul Eggert  <eggert@cs.ucla.edu>
17239         Integer overflow fixes for scrolling, etc.
17240         Without these, Emacs silently mishandles large integers sometimes.
17241         For example, "C-u 4294967297 M-x recenter" was treated as if
17242         it were "C-u 1 M-x recenter" on a typical 64-bit host.
17244         * xdisp.c (try_window_id): Check Emacs fixnum range before
17245         converting to 'int'.
17247         * window.c (window_scroll_line_based, Frecenter):
17248         Check that an Emacs fixnum is in range before assigning it to 'int'.
17249         (Frecenter, Fmove_to_window_line): Use EMACS_INT, not int, for
17250         values converted from Emacs fixnums.
17251         (Frecenter): Don't wrap around a line count if it is out of 'int'
17252         range; instead, treat it as an extreme value.
17253         (Fset_window_configuration, compare_window_configurations):
17254         Use ptrdiff_t, not int, for index that might exceed 2 GiB.
17256         * search.c (Freplace_match): Use ptrdiff_t, not int, for indexes
17257         that can exceed INT_MAX.  Check that EMACS_INT value is in range
17258         before assigning it to the (possibly-narrower) index.
17259         (match_limit): Don't assume that a fixnum can fit in 'int'.
17261         * print.c (print_object): Use ptrdiff_t, not int, for index that can
17262         exceed INT_MAX.
17264         * indent.c (position_indentation): Now takes ptrdiff_t, not int.
17265         (Fvertical_motion): Don't wrap around LINES values that don't fit
17266         in 'int'.  Instead, treat them as extreme values.  This is good
17267         enough for windows, which can't have more than INT_MAX lines anyway.
17269 2011-09-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17271         * Require libxml/parser.h to avoid compilation warning.
17273         * emacs.c (shut_down_emacs): Call xmlCleanupParser on shutdown.
17275         * xml.c (parse_region): Don't call xmlCleanupParser after parsing,
17276         since this reportedly can destroy thread storage.
17278 2011-08-30  Chong Yidong  <cyd@stupidchicken.com>
17280         * syntax.c (find_defun_start): Update all cache variables if
17281         exiting early (Bug#9401).
17283 2011-08-30  Eli Zaretskii  <eliz@gnu.org>
17285         * image.c (x_bitmap_pixmap): Cast to int to avoid compiler warnings.
17287         * xdisp.c (produce_stretch_glyph): No longer static, compiled also
17288         when HAVE_WINDOW_SYSTEM is not defined.  Support both GUI and TTY
17289         frames.  Call tty_append_glyph in the TTY case.  (Bug#9402)
17291         * term.c (tty_append_glyph): New function.
17292         (produce_stretch_glyph): Static function and its prototype deleted.
17294         * dispextern.h (produce_stretch_glyph, tty_append_glyph):
17295         Add prototypes.
17297 2011-08-29  Paul Eggert  <eggert@cs.ucla.edu>
17299         * image.c (parse_image_spec): Check for nonnegative, not for positive,
17300         when checking :margin (Bug#9390).
17301         (IMAGE_NON_NEGATIVE_INTEGER_VALUE_OR_PAIR):
17302         Rename from IMAGE_POSITIVE_INTEGER_VALUE_OR_PAIR,
17303         so that the name doesn't mislead.  All uses changed.
17305 2011-08-28  Johan Bockgård  <bojohan@gnu.org>
17307         * term.c (init_tty) [HAVE_GPM]: Move mouse settings after
17308         set_tty_hooks.
17310 2011-08-27  Eli Zaretskii  <eliz@gnu.org>
17312         * xdisp.c (move_it_to): Don't bail out early when reaching
17313         position beyond to_charpos, if we are scanning backwards.
17314         (move_it_vertically_backward): When DY == 0, make sure we get to
17315         the first character in the line after the newline.
17317 2011-08-27  Paul Eggert  <eggert@cs.ucla.edu>
17319         * ccl.c: Improve and simplify overflow checking (Bug#9196).
17320         (ccl_driver): Do not generate an out-of-range pointer.
17321         (Fccl_execute_on_string): Remove unnecessary check for
17322         integer overflow, noted by Stefan Monnier in
17323         <http://lists.gnu.org/archive/html/emacs-devel/2011-08/msg00979.html>.
17324         Remove a FIXME that didn't need fixing.
17325         Simplify the newly-introduced buffer reallocation code.
17327 2011-08-27  Juanma Barranquero  <lekktu@gmail.com>
17329         * makefile.w32-in ($(BLD)/alloc.$(O)): Depend on lib/verify.h.
17331 2011-08-26  Paul Eggert  <eggert@cs.ucla.edu>
17333         Integer and memory overflow issues (Bug#9196).
17335         * doc.c (get_doc_string): Rework so that
17336         get_doc_string_buffer_size is the actual buffer size, rather than
17337         being 1 less than the actual buffer size; this makes xpalloc more
17338         convenient.
17340         * image.c (x_allocate_bitmap_record, cache_image):
17341         * xselect.c (Fx_register_dnd_atom):
17342         Simplify previous changes by using xpalloc.
17344         * buffer.c (overlay_str_len): Now ptrdiff_t, not EMACS_INT,
17345         since either will do and ptrdiff_t is convenient with xpalloc.
17347         * charset.c (charset_table_size)
17348         (struct charset_sort_data.priority): Now ptrdiff_t.
17349         (charset_compare): Don't overflow if priorities differ greatly.
17350         (Fsort_charsets): Don't assume list length fits in int.
17351         Check for size-calculation overflow when allocating sort data.
17352         (syms_of_charset): Allocate an initial charset table that is
17353         just under 64 KiB, to avoid problems with glibc malloc and mmap.
17355         * cmds.c (internal_self_insert): Check for size-calculation overflow.
17357         * composite.h (struct composition.glyph_len): Now int, not unsigned.
17358         The actual value is always <= INT_MAX, and leaving it unsigned made
17359         overflow checking harder.
17361         * dispextern.h (struct glyph_matrix.rows_allocated)
17362         (struct face_cache.size): Now ptrdiff_t, for convenience in use
17363         with xpalloc.  The values are still always <= INT_MAX.
17365         * indent.c (compute_motion): Adjust to region_cache_forward sig change.
17367         * lisp.h (xnmalloc, xnrealloc, xpalloc): New decls.
17368         (SAFE_NALLOCA): New macro.
17370         * region-cache.c (struct boundary.pos, find_cache_boundary)
17371         (move_cache_gap, insert_cache_boundary, delete_cache_boundaries)
17372         (set_cache_region, invalidate_region_cache)
17373         (revalidate_region_cache, know_region_cache, region_cache_forward)
17374         (region_cache_backward, pp_cache):
17375         Use ptrdiff_t, not EMACS_INT, since either will do.  This is needed
17376         so that ptrdiff_t * can be passed to xpalloc.
17377         (struct region_cache): Similarly, for gap_start, gap_len, cache_len,
17378         beg_unchanged, end_unchanged, buffer_beg, buffer_end members.
17379         (pp_cache): Don't assume cache_len fits in int.
17380         * region-cache.h: Adjust extern decls to match.
17382         * search.c (scan_buffer, Freplace_match): Use ptrdiff_t, not
17383         EMACS_INT, since either will do, for xpalloc.
17385         * alloc.c: Include verify.h, and check that int fits in ptrdiff_t.
17386         (xnmalloc, xnrealloc, xpalloc): New functions.
17388         * bidi.c (bidi_shelve_header_size): New constant.
17389         (bidi_cache_ensure_space, bidi_shelve_cache): Use it.
17390         (bidi_cache_ensure_space): Avoid integer overflow when allocating.
17392         * bidi.c (bidi_cache_shrink):
17393         * buffer.c (overlays_at, overlays_in, record_overlay_string)
17394         (overlay_strings):
17395         Don't update size of array until after memory allocation succeeds,
17396         because xmalloc/xrealloc may not return.
17397         (struct sortstrlist.bytes): Now ptrdiff_t, as EMACS_INT doesn't help
17398         now that we have proper integer overflow checking.
17399         (record_overlay_string, overlay_strings): Catch overflows when
17400         calculating size of overlay_str_buf.
17402         * callproc.c (Fcall_process): Check for size overflow when
17403         calculating size of args2.
17404         (child_setup): Avoid overflow by using size_t rather than ptrdiff_t.
17405         Normally we prefer signed values, but sticking with ptrdiff_t would
17406         require adding more-complicated checks.
17408         * ccl.c (Fccl_execute_on_string): Check for memory overflow.
17409         Use ptrdiff_t rather than EMACS_INT where ptrdiff_t will do.
17410         Redo buffer-overflow calculations to avoid integer overflow.
17411         Add a FIXME comment where memory seems to be over-allocated.
17413         * character.c (Fstring): Check for size-calculation overflow.
17415         * coding.c (produce_chars): Redo buffer-overflow calculations to avoid
17416         unnecessary integer overflow.  Check for size overflow.
17417         (encode_coding_object): Don't update size until xmalloc succeeds.
17419         * composite.c (get_composition_id): Check for overflow in glyph
17420         length calculations.
17422         Integer and memory overflow fixes for display code.
17423         * dispextern.h (struct glyph_pool.nglyphs): Now ptrdiff_t, not int.
17424         * dispnew.c (adjust_glyph_matrix, realloc_glyph_pool)
17425         (scrolling_window): Check for overflow in size calculations.
17426         (line_draw_cost, realloc_glyph_pool, add_row_entry):
17427         Don't assume glyph table len fits in int.
17428         (struct row_entry.bucket, row_entry_pool_size, row_entry_idx)
17429         (row_table_size): Now ptrdiff_t, not int.
17430         (scrolling_window): Avoid overflow in size calculations.
17431         Don't update size until allocation succeeds.
17432         * fns.c (concat): Check for overflow in size calculations.
17433         (next_almost_prime): Verify NEXT_ALMOST_PRIME_LIMIT.
17434         * lisp.h (RANGED_INTEGERP, TYPE_RANGED_INTEGERP): New macros.
17435         (NEXT_ALMOST_PRIME_LIMIT): New constant.
17437         * doc.c (get_doc_string_buffer_size): Now ptrdiff_t, not int.
17438         (get_doc_string): Check for size calculation overflow.
17439         Don't update size until allocation succeeds.
17440         (get_doc_string, Fsubstitute_command_keys): Use ptrdiff_t, not
17441         EMACS_INT, where ptrdiff_t will do.
17442         (Fsubstitute_command_keys): Check for string overflow.
17444         * editfns.c (set_time_zone_rule): Don't assume environment length
17445         fits in int.
17446         (message_length): Now ptrdiff_t, not int.
17447         (Fmessage_box): Don't update size until allocation succeeds.
17448         Don't assume message length fits in int.
17449         (Fformat): Use ptrdiff_t, not EMACS_INT, where ptrdiff_t will do.
17451         * emacs.c (main): Do not reallocate argv, since there is a null at
17452         the end that can be overwritten, and this way there's no need to
17453         worry about size-calculation overflow.
17454         (sort_args): Check for size-calculation overflow.
17456         * eval.c (init_eval_once, grow_specpdl): Don't update size until
17457         alloc succeeds.
17458         (call_debugger, grow_specpdl): Redo calculations to avoid overflow.
17460         * frame.c (set_menu_bar_lines, x_set_frame_parameters)
17461         (x_set_scroll_bar_width, x_figure_window_size):
17462         Check for integer overflow.
17463         (x_set_alpha): Do not assume XINT fits in int.
17465         * frame.h (struct frame): Use int, not EMACS_INT, where int works.
17466         This is for the members text_lines, text_cols, total_lines, total_cols,
17467         where the system imposes an 'int' limit.
17469         * fringe.c (Fdefine_fringe_bitmap):
17470         Don't update size until alloc works.
17472         * ftfont.c (ftfont_get_open_type_spec, setup_otf_gstring)
17473         (ftfont_shape_by_flt): Check for integer overflow in size calculations.
17475         * gtkutil.c (get_utf8_string, xg_store_widget_in_map):
17476         Check for size-calculation overflow.
17477         (get_utf8_string): Use ptrdiff_t, not size_t, where either will
17478         do, as we prefer signed integers.
17479         (id_to_widget.max_size, id_to_widget.used)
17480         (xg_store_widget_in_map, xg_remove_widget_from_map)
17481         (xg_get_widget_from_map, xg_get_scroll_id_for_window)
17482         (xg_remove_scroll_bar, xg_update_scrollbar_pos):
17483         Use and return ptrdiff_t, not int.
17484         (xg_gtk_scroll_destroy): Don't assume ptrdiff_t fits in int.
17485         * gtkutil.h: Change prototypes to match the above.
17487         * image.c (RANGED_INTEGERP, TYPE_RANGED_INTEGERP): Remove; these
17488         are duplicate now that they've been promoted to lisp.h.
17489         (x_allocate_bitmap_record, x_alloc_image_color)
17490         (make_image_cache, cache_image, xpm_load):
17491         Don't update size until alloc is done.
17492         (xpm_load, lookup_rgb_color, lookup_pixel_color, x_to_xcolors)
17493         (x_detect_edges):
17494         Check for size calculation overflow.
17495         (ct_colors_allocated_max): New constant.
17496         (x_to_xcolors, x_detect_edges): Reorder multiplicands to avoid
17497         overflow.
17499         * keyboard.c (read_char, menu_bar_items, tool_bar_items)
17500         (read_char_x_menu_prompt, read_char_minibuf_menu_width)
17501         (read_char_minibuf_menu_prompt, follow_key, read_key_sequence):
17502         Use ptrdiff_t, not int, to count maps.
17503         (read_char_minibuf_menu_prompt): Check for overflow in size
17504         calculations.  Don't update size until allocation succeeds.
17505         Redo calculations to avoid overflow.
17506         * keyboard.h: Change prototypes to match the above.
17508         * keymap.c (cmm_size, current_minor_maps): Use ptrdiff_t, not int,
17509         to count maps.
17510         (current_minor_maps): Check for size calculation overflow.
17511         * keymap.h: Change prototypes to match the above.
17513         * lread.c (read1, init_obarray): Don't update size until alloc done.
17515         * macros.c (Fstart_kbd_macro): Don't update size until alloc done.
17516         (store_kbd_macro_char): Reorder multiplicands to avoid overflow.
17518         * nsterm.h (struct ns_color_table.size, struct ns_color_table.avail):
17519         Now ptrdiff_t, not int.
17520         * nsterm.m (ns_index_color): Use ptrdiff_t, not int, for table indexes.
17521         (ns_draw_fringe_bitmap): Rewrite to avoid overflow.
17523         * process.c (Fnetwork_interface_list): Check for overflow
17524         in size calculation.
17526         * region-cache.c (move_cache_gap): Check for size calculation overflow.
17528         * scroll.c (do_line_insertion_deletion_costs): Check for size calc
17529         overflow.  Don't bother calling xmalloc when xrealloc will do.
17531         * search.c (Freplace_match): Check for size calculation overflow.
17532         (Fset_match_data): Don't assume list lengths fit in 'int'.
17534         * sysdep.c (system_process_attributes): Use ptrdiff_t, not int,
17535         for command line length.  Do not attempt to address one before the
17536         beginning of an array, as that's not portable.
17538         * term.c (max_frame_lines): Remove; unused.
17539         (encode_terminal_src_size, encode_terminal_dst_size): Now ptrdiff_t,
17540         not int.
17541         (encode_terminal_code, calculate_costs): Check for size
17542         calculation overflow.
17543         (encode_terminal_code): Use ptrdiff_t, not int, to record glyph
17544         table lengths and related sizes.  Don't update size until alloc
17545         done.  Redo calculations to avoid overflow.
17546         (calculate_costs): Don't bother calling xmalloc when xrealloc will do.
17548         * termcap.c (tgetent): Use ptrdiff_t, not int, to record results of
17549         subtracting pointers.
17550         (gobble_line): Check for overflow more carefully.  Don't update size
17551         until alloc done.
17553         * tparam.c (tparam1): Use ptrdiff_t, not int, for sizes.
17554         Don't update size until alloc done.
17555         Redo size calculations to avoid overflow.
17556         Check for size calculation overflow.
17557         (main) [DEBUG]: Fix typo in invoking tparam1.
17559         * xdisp.c (store_mode_line_noprop_char, x_consider_frame_title):
17560         Use ptrdiff_t, not int, for sizes.
17561         (store_mode_line_noprop_char): Don't update size until alloc done.
17563         * xfaces.c (lface_id_to_name_size, Finternal_make_lisp_face):
17564         Use ptrdiff_t, not int, for sizes.
17565         (Finternal_make_lisp_face, cache_face):
17566         Check for size calculation overflow.
17567         (cache_face): Treat size calculation overflows as if they were
17568         memory exhaustion (the usual treatment), rather than aborting.
17570         * xfns.c (x_encode_text, x_set_name_internal)
17571         (Fx_change_window_property): Use ptrdiff_t, not int, to count
17572         sizes, since they can exceed INT_MAX in size.  Check for size
17573         calculation overflow.
17575         * xgselect.c (gfds_size): Now ptrdiff_t, for convenience with xpalloc.
17576         (xg_select): Check for size calculation overflow.
17577         Don't update size until alloc done.
17579         * xrdb.c (get_environ_db): Don't assume path length fits in int,
17580         as sprintf is limited to int lengths.
17582         * xselect.c (X_LONG_SIZE, X_SHRT_MAX, X_SHRT_MIN, X_LONG_MAX)
17583         (X_LONG_MIN): New macros.
17584         Use them to make the following changes clearer.
17585         (MAX_SELECTION_QUANTUM): Make the other bounds on this value clearer.
17586         This change doesn't affect the value now, but it may help remind
17587         future maintainers not to raise the value too much later.
17588         (SELECTION_QUANTUM): Remove, replacing with ...
17589         (selection_quantum): ... new function, which avoids overflow.
17590         All uses changed.
17591         (struct selection_data.size): Now ptrdiff_t, not int, to avoid
17592         assumption that selection length fits in 'int'.
17593         (x_reply_selection_request, x_handle_selection_request)
17594         (x_get_window_property, receive_incremental_selection)
17595         (x_get_window_property_as_lisp_data, selection_data_to_lisp_data)
17596         (lisp_data_to_selection_data, clean_local_selection_data):
17597         Use ptrdiff_t, not int, to record length of selection.
17598         (x_reply_selection_request, x_get_window_property)
17599         (receive_incremental_selection, x_property_data_to_lisp):
17600         Redo calculations to avoid overflow.
17601         (x_reply_selection_request): When sending hint, ceiling it at
17602         X_LONG_MAX rather than relying on wraparound overflow to send
17603         something.
17604         (x_get_window_property, receive_incremental_selection)
17605         (lisp_data_to_selection_data, x_property_data_to_lisp):
17606         Check for size-calculation overflow.
17607         (x_get_window_property, receive_incremental_selection)
17608         (lisp_data_to_selection_data, Fx_register_dnd_atom):
17609         Don't store size until memory allocation succeeds.
17610         (x_get_window_property): Plug memory leak on memory exhaustion.
17611         Don't double-block input; malloc is safe here.  Don't assume 2**34
17612         - 4 fits in unsigned long.  Add an xassert to check
17613         XGetWindowProperty overflow.  Be more careful about overflow
17614         calculations, and distinguish size from memory overflow better.
17615         (receive_incremental_selection): When tracing, don't assume
17616         unsigned int is less than INT_MAX.
17617         (x_selection_data_to_lisp_data): Remove unnecessary (and in theory
17618         harmful) conversions of unsigned short to int.
17619         (lisp_data_to_selection_data): Don't assume that integers
17620         in the range -65535 through -1 fit in an X unsigned short.
17621         Don't assume that ULONG_MAX == X_ULONG_MAX.  Don't store into
17622         result parameters unless successful.  Rely on cons_to_unsigned
17623         to report problems with elements; the old code wasn't right anyway.
17624         (x_check_property_data): Check for int overflow; we cannot use
17625         a wider type due to X limits.
17626         (x_handle_dnd_message): Use unsigned int, to avoid int overflow.
17628         * xsmfns.c (smc_save_yourself_CB): Check for size calc overflow.
17630         * xterm.c (x_color_cells, x_send_scrollbar_event, handle_one_xevent)
17631         (x_term_init): Check for size calculation overflow.
17632         (x_color_cells): Don't store size until memory allocation succeeds.
17633         (handle_one_xevent): Use ptrdiff_t, not int, for byte counts.
17634         Don't assume alloca size is less than MAX_ALLOCA.
17635         (x_term_init): Don't assume length fits in int (sprintf is limited
17636         to int size).
17638         Use ptrdiff_t for composition IDs.
17639         * character.c (lisp_string_width):
17640         * composite.c (composition_table_size, n_compositions)
17641         (get_composition_id, composition_gstring_from_id):
17642         * dispextern.h (struct glyph_string.cmp_id, struct composition_it.id):
17643         * xdisp.c (BUILD_COMPOSITE_GLYPH_STRING):
17644         * window.c (Frecenter):
17645         Use ptrdiff_t, not int, for composition IDs.
17646         * composite.c (get_composition_id): Check for integer overflow.
17647         * composite.h: Adjust prototypes to match the above changes.
17649         Use ptrdiff_t for hash table indexes.
17650         * category.c (hash_get_category_set):
17651         * ccl.c (ccl_driver):
17652         * charset.h (struct charset.hash_index, CHECK_CHARSET_GET_ID):
17653         * coding.c (coding_system_charset_list, detect_coding_system):
17654         * coding.h (struct coding_system.id):
17655         * composite.c (get_composition_id, gstring_lookup_cache):
17656         * fns.c (hash_lookup, hash_put, Fgethash, Fputhash):
17657         * image.c (xpm_get_color_table_h):
17658         * lisp.h (hash_lookup, hash_put):
17659         * minibuf.c (Ftest_completion):
17660         Use ptrdiff_t for hash table indexes, not int (which is too
17661         narrow, on 64-bit hosts) or EMACS_INT (which is too wide, on
17662         32-bit --with-wide-int hosts).
17664         * charset.c (Fdefine_charset_internal): Check for integer overflow.
17665         Add a FIXME comment about memory leaks.
17666         (syms_of_charset): Don't assume xmalloc returns.
17668         Don't assume that stated character widths fit in int.
17669         * character.c (Fchar_width, c_string_width, lisp_string_width):
17670         * character.h (CHAR_WIDTH):
17671         * indent.c (MULTIBYTE_BYTES_WIDTH):
17672         Use sanitize_char_width to avoid undefined and/or bad behavior
17673         with outlandish widths.
17674         * character.h (sanitize_tab_width): Rename from sanitize_width,
17675         now that we have two such functions.  All uses changed.
17676         (sanitize_char_width): New inline function.
17678         Don't assume that tab-width fits in int.
17679         * character.h (sanitize_width): New inline function.
17680         (SANE_TAB_WIDTH): New macro.
17681         (ASCII_CHAR_WIDTH): Use it.
17682         * indent.c (sane_tab_width): Remove.  All uses replaced by
17683         SANE_TAB_WIDTH (current_buffer).
17684         * xdisp.c (init_iterator): Use SANE_TAB_WIDTH.
17686         * fileio.c: Integer overflow issues with file modes.
17687         (Fset_file_modes, auto_save_1): Don't assume EMACS_INT fits in int.
17689         * charset.c (read_hex): New arg OVERFLOW.  All uses changed.
17690         Remove unreachable code.
17691         (read_hex, load_charset_map_from_file): Check for integer overflow.
17693         * xterm.c: Don't go over XClientMessageEvent limit.
17694         (scroll_bar_windows_size): Now ptrdiff_t, as we prefer signed.
17695         (x_send_scroll_bar_event): Likewise.  Check that the size does not
17696         exceed limits imposed by XClientMessageEvent, as well as the usual
17697         ptrdiff_t and size_t limits.
17699         * keyboard.c: Overflow, signedness and related fixes.
17700         (make_lispy_movement): Use same integer type in forward decl
17701         that is used in the definition.
17702         (read_key_sequence, keyremap_step):
17703         Change bufsize argument back to int, undoing my 2011-03-30 change.
17704         We prefer signed types, and int is wide enough here.
17705         (parse_tool_bar_item): Don't assume tool_bar_max_label_size is less
17706         than TYPE_MAXIMUM (EMACS_INT) / 2.  Don't let the label size grow
17707         larger than STRING_BYTES_BOUND.  Use ptrdiff_t for Emacs string
17708         length, not size_t.  Use ptrdiff_t for index, not int.
17709         (keyremap_step, read_key_sequence): Redo bufsize check to avoid
17710         possibility of integer overflow.
17712         Overflow, signedness and related fixes for images.
17714         * dispextern.h (struct it.stack[0].u.image.image_id)
17715         (struct_it.image_id, struct image.id, struct image_cache.size)
17716         (struct image_cache.used, struct image_cache.ref_count):
17717         * gtkutil.c (update_frame_tool_bar):
17718         * image.c (x_reference_bitmap, Fimage_size, Fimage_mask_p)
17719         (Fimage_metadata, free_image_cache, clear_image_cache, lookup_image)
17720         (cache_image, mark_image_cache, x_kill_gs_process, Flookup_image):
17721         * nsmenu.m (update_frame_tool_bar):
17722         * xdisp.c (calc_pixel_width_or_height):
17723         * xfns.c (image_cache_refcount):
17724         Image IDs are now ptrdiff_t, not int, to avoid arbitrary limits
17725         on typical 64-bit hosts.
17727         * image.c (RANGED_INTEGERP, TYPE_RANGED_INTEGERP): New macros.
17728         (x_bitmap_pixmap, x_create_x_image_and_pixmap):
17729         Omit unnecessary casts to int.
17730         (parse_image_spec): Check that integers fall into 'int' range
17731         when the callers expect that.
17732         (image_ascent): Redo ascent calculation to avoid int overflow.
17733         (clear_image_cache): Avoid overflow when sqrt (INT_MAX) < nimages.
17734         (lookup_image): Remove unnecessary tests.
17735         (xbm_image_p): Locals are now of int, not EMACS_INT,
17736         since parse_image_check makes sure they fit into int.
17737         (png_load, gif_load, svg_load_image):
17738         Prefer int to unsigned where either will do.
17739         (tiff_handler): New function, combining the cores of the
17740         old tiff_error_handler and tiff_warning_handler.
17741         This function is rewritten to use vsnprintf and thereby avoid
17742         stack buffer overflows.  It uses only the features of vsnprintf
17743         that are common to both POSIX and native Microsoft.
17744         (tiff_error_handler, tiff_warning_handler): Use it.
17745         (tiff_load, gif_load, imagemagick_load_image):
17746         Don't assume :index value fits in 'int'.
17747         (gif_load): Omit unnecessary cast to double, and avoid double-rounding.
17748         (imagemagick_load_image): Check that crop parameters fit into
17749         the integer types that MagickCropImage accepts.  Don't assume
17750         Vimagemagick_render_type has a nonnegative value.  Don't assume
17751         size_t fits in 'long'.
17752         (gs_load): Use printmax_t to print the widest integers possible.
17753         Check for integer overflow when computing image height and width.
17755 2011-08-26  Eli Zaretskii  <eliz@gnu.org>
17757         * xdisp.c (redisplay_window): Don't force window start if point
17758         will be invisible in the resulting window.  (Bug#9324)
17760 2011-08-25  Eli Zaretskii  <eliz@gnu.org>
17762         * xdisp.c (compute_display_string_pos): Return 2 in DISP_PROP when
17763         the display spec is of the form `(space ...)'.
17764         (handle_display_spec): Return the value returned by
17765         handle_single_display_spec, not just 1 or zero.
17766         (handle_single_display_spec): If the display spec is of the form
17767         `(space ...)', and specifies display in the text area, return 2
17768         rather than 1.
17769         (try_cursor_movement): Check for the need to scroll more
17770         accurately, and prefer exact match for point under bidi.
17771         Don't advance `row' beyond the last row of the window.
17773         * dispextern.h (struct bidi_it): Rename the disp_prop_p member
17774         into disp_prop; all users changed.
17776         * bidi.c (bidi_fetch_char): If compute_display_string_pos returns
17777         DISP_PROP = 2, substitute the u+2029 PARAGRAPH SEPARATOR character
17778         for the text covered by the display property.
17780 2011-08-25  Chong Yidong  <cyd@stupidchicken.com>
17782         * buffer.c (Fbury_buffer_internal): Rename from Funrecord_buffer.
17783         Change return value to nil.
17784         (Frecord_buffer): Delete unused function.
17786 2011-08-24  Eli Zaretskii  <eliz@gnu.org>
17788         * xdisp.c (Fcurrent_bidi_paragraph_direction): For unibyte
17789         buffers, return left-to-right.
17790         (set_cursor_from_row): Consider candidate row a win if its glyph
17791         represents a newline and point is on that newline.  Fixes cursor
17792         positioning on the newline at EOL of R2L text within L2R
17793         paragraph, and vice versa.
17794         (try_cursor_movement): Check continued rows, in addition to
17795         continuation rows.  Fixes unwarranted scroll when point enters a
17796         continued line of R2L text within an L2R paragraph, or vice versa.
17797         (cursor_row_p): Consider the case of point being equal to
17798         MATRIX_ROW_END_CHARPOS.  Prevents cursor being stuck when moving
17799         from the end of a short line to the beginning of a continued line
17800         of R2L text within L2R paragraph.
17801         (RECORD_MAX_MIN_POS): For max_pos, use IT_CHARPOS even for
17802         composed characters.
17804         * bidi.c (bidi_check_type): Use xassert.
17805         (bidi_cache_iterator_state): Update the disp_pos and disp_prop_p
17806         members.
17808 2011-08-23  Eli Zaretskii  <eliz@gnu.org>
17810         * bidi.c (bidi_get_type): Abort if we get zero as the bidi type of
17811         a character.
17813 2011-08-23  Chong Yidong  <cyd@stupidchicken.com>
17815         * nsfont.m (ns_otf_to_script): Fix typo.
17817 2011-08-22  Kenichi Handa  <handa@m17n.org>
17819         * chartab.c (Fset_char_table_extra_slot): Do not inhibit setting a
17820         extra slot even if the purpose is char-code-property-table.
17822 2011-08-23  Eli Zaretskii  <eliz@gnu.org>
17824         * xdisp.c (redisplay_window): When computing centering_position,
17825         account for the height of the header line.  (Bug#8874)
17827         * dispnew.c (buffer_posn_from_coords): Use buf_charpos_to_bytepos
17828         instead of CHAR_TO_BYTE.  Fixes a crash when a completion
17829         candidate is selected by the mouse, and that candidate has a
17830         composed character under the mouse.
17832         * xdisp.c (x_produce_glyphs): Set it->nglyphs to 1.  Fixes pixel
17833         coordinates reported by pos-visible-in-window-p for a composed
17834         character in column zero.
17836 2011-08-23  Stefan Monnier  <monnier@iro.umontreal.ca>
17838         * cmds.c (Fself_insert_command): Mention post-self-insert-hook.
17840 2011-08-22  Eli Zaretskii  <eliz@gnu.org>
17842         * xdisp.c (BUFFER_POS_REACHED_P): If this is a composition,
17843         consider it a hit if to_charpos is anywhere in the range of the
17844         composed buffer positions.
17846 2011-08-22  Chong Yidong  <cyd@stupidchicken.com>
17848         * image.c (gif_load): Don't assume that each subimage has the same
17849         dimensions as the base image.  Handle disposal method that is
17850         "undefined" by the gif spec (Bug#9335).
17852 2011-08-20  Chong Yidong  <cyd@stupidchicken.com>
17854         * eval.c (Fsignal): Handle `debug' symbol in error handler (Bug#9329).
17855         (Fcondition_case): Document `debug' symbol in error handler.
17857 2011-08-19  Eli Zaretskii  <eliz@gnu.org>
17859         * xfaces.c (face_at_buffer_position): Avoid repeated evaluation of
17860         face ID by FACE_FROM_ID, and avoid a crash when mouse is moved
17861         from an Org mode buffer to a Speedbar frame.
17863         * xdisp.c (RECORD_MAX_MIN_POS): If the display element comes from
17864         a composition, take its buffer position from IT->cmp_it.charpos.
17865         Fixes cursor positioning at the beginning of a line that begins
17866         with a composed character.
17868 2011-08-18  Eli Zaretskii  <eliz@gnu.org>
17870         * bidi.c (bidi_get_type): If bidi_type_table reports zero as the
17871         character bidirectional type, use STRONG_L instead.  Fixes crashes
17872         in a buffer produced by `describe-categories'.
17874         * dispextern.h (struct bidi_it): Move disp_pos and disp_prop_p
17875         members before the level stack, so they would be saved and
17876         restored when copying iterator state.  Fixes incorrect reordering
17877         around TABs covered by display properties.
17879 2011-08-18  Andreas Schwab  <schwab@linux-m68k.org>
17881         * process.c (Fnetwork_interface_list): Correctly determine buffer size.
17883 2011-08-17  Chong Yidong  <cyd@stupidchicken.com>
17885         * eval.c (internal_condition_case, internal_condition_case_1)
17886         (internal_condition_case_2, internal_condition_case_n):
17887         Remove unnecessary aborts (Bug#9081).
17889 2011-08-17  Eli Zaretskii  <eliz@gnu.org>
17891         * lread.c (Fload) [DOS_NT]: If `openp' returns -2, but the file
17892         has no `load' handler, try opening the file locally.  (Bug#9311)
17894 2011-08-16  Ken Brown  <kbrown@cornell.edu>
17896         * gmalloc.c: Expand comment.
17898 2011-08-16  Eli Zaretskii  <eliz@gnu.org>
17900         * xdisp.c (set_cursor_from_row): Don't accept a previous candidate
17901         if it fails the cursor_row_p test.  Fixes cursor positioning at ZV.
17903 2011-08-16  Ken Brown  <kbrown@cornell.edu>
17905         Fix memory allocation problems in Cygwin build (Bug#9273).
17907         * unexcw.c ( __malloc_initialized): Declare external variable.
17908         (fixup_executable): Force the dumped emacs to reinitialize malloc.
17910         * gmalloc.c [CYGWIN] (bss_sbrk_heapbase, bss_sbrk_heapinfo):
17911         New variables.
17912         (malloc_initialize_1) [CYGWIN]: Prepare for reinitializing the
17913         dumped emacs.
17914         (_free_internal_nolock) [CYGWIN]: Ignore requests to free storage
17915         in the static heap.
17916         [CYGWIN] (special_realloc): New function.
17917         (_realloc_internal_nolock) [CYGWIN]: Use the new function on
17918         requests to realloc storage in the static heap.
17920 2011-08-15  Paul Eggert  <eggert@cs.ucla.edu>
17922         * bidi.c (bidi_initialize): Remove unused local.
17924 2011-08-15  Eli Zaretskii  <eliz@gnu.org>
17926         * bidimirror.h:
17927         * biditype.h: Remove file.
17928         * makefile.w32-in ($(BLD)/bidi.$(O)):
17929         * deps.mk (bidi.o): Remove biditype.h and bidimirror.h.
17931         * dispextern.h: Fix a typo in the comment to bidi_type_t.
17933         * chartab.c: Improve commentary for the uniprop_table API.
17935         * bidi.c (bidi_paragraph_init): Support zero value of
17936         bidi_ignore_explicit_marks_for_paragraph_level.
17937         (bidi_initialize): Use uniprop_table instead of including
17938         biditype.h and bidimirror.h.
17940         * xdisp.c (move_it_in_display_line_to): Don't reset pixel
17941         coordinates of the iterator when restoring from ppos_it.
17942         (Bug#9296)
17944 2011-08-14  Kenichi Handa  <handa@m17n.org>
17946         * process.c (create_process): Call setup_process_coding_systems
17947         after the pid of the process is set to -1 (Bug#8162).
17949 2011-08-14  Eli Zaretskii  <eliz@gnu.org>
17951         * xdisp.c (move_it_in_display_line_to): Don't invoke
17952         IT_RESET_X_ASCENT_DESCENT when iterator position was restored from
17953         ppos_it.  Fixes vertical cursor motion when line beginning is
17954         covered by an image.  (Bug#9296)
17956 2011-08-14  Jan Djärv  <jan.h.d@swipnet.se>
17958         * nsterm.h (ns_run_ascript): Declare.
17959         (NSAPP_DATA2_RUNASSCRIPT): Define.
17961         * nsfns.m (as_script, as_result, as_status): New static variables.
17962         (ns_run_ascript): New function.
17963         (Fns_do_applescript): Set variables as_*.  Make an NSApplicationDefined
17964         event with data2 set to NSAPP_DATA2_RUNASSCRIPT, post it and then start
17965         the event loop.  Get status from as_status (Bug#7276).
17967         * nsterm.m (sendEvent): If event is NSApplicationDefined and
17968         data2 is NSAPP_DATA2_RUNASSCRIPT, call ns_run_ascript and then exit
17969         the event loop (Bug#7276).
17971 2011-08-14  Andreas Schwab  <schwab@linux-m68k.org>
17973         * gnutls.c (QCgnutls_bootprop_priority)
17974         (QCgnutls_bootprop_trustfiles, QCgnutls_bootprop_keylist)
17975         (QCgnutls_bootprop_crlfiles, QCgnutls_bootprop_callbacks)
17976         (QCgnutls_bootprop_loglevel, QCgnutls_bootprop_hostname)
17977         (QCgnutls_bootprop_min_prime_bits, QCgnutls_bootprop_verify_flags)
17978         (QCgnutls_bootprop_verify_hostname_error)
17979         (QCgnutls_bootprop_callbacks_verify): Rename from
17980         Qgnutls_bootprop_..., all uses changed.
17982         * xfaces.c (QCignore_defface): Rename from Qignore_defface, all
17983         uses changed.
17985 2011-08-14  Paul Eggert  <eggert@cs.ucla.edu>
17987         * xfaces.c (Qframe_set_background_mode): Now static.
17988         * dispextern.h (Qframe_set_background_mode): Remove decl.
17990         * process.c (Fnetwork_interface_info): Declare local only if needed.
17992 2011-08-13  Jan Djärv  <jan.h.d@swipnet.se>
17994         * process.c: Include ifaddrs.h and net/if_dl.h if available (Bug#8477).
17995         (Fnetwork_interface_list): Allocate in increments of bytes instead
17996         of sizeof (struct ifreq).  Iterate over ifconf.ifc_req by counting
17997         bytes (Bug#8477).  Count bytes correctly when ifr_addr is a struct
17998         sockaddr.
17999         (struct ifflag_def): notrailers is smart on OSX.
18000         (Fnetwork_interface_info): Handle case when ifr_flags is negative.
18001         Get hardware address with getifaddrs if available.
18003 2011-08-12  Eli Zaretskii  <eliz@gnu.org>
18005         * xdisp.c (iterate_out_of_display_property): xassert that
18006         IT->position is set to within IT->object's boundaries.  Break from
18007         the loop as soon as EOB is reached; avoids infloops in redisplay
18008         when IT->position is set up wrongly due to some bug.
18009         Set IT->current to match the bidi iterator unconditionally.
18010         (push_display_prop): Allow GET_FROM_STRING as IT->method on
18011         entry.  Force push_it to save on the stack the current
18012         buffer/string position, to be restored by pop_it.  Fix flags in
18013         the iterator structure wrt the object coming from a display
18014         property, as `line-prefix' and `wrap-prefix' are not ``replacing''
18015         properties.  (Bug#9284)
18017 2011-08-09  Andreas Schwab  <schwab@linux-m68k.org>
18019         * fontset.c (fontset_get_font_group): Add proper type checks.
18020         (Bug#9172)
18022 2011-08-09  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
18024         * unexmacosx.c (print_load_command_name): Add cases LC_FUNCTION_STARTS
18025         and LC_VERSION_MIN_MACOSX.
18026         (copy_linkedit_data) [LC_FUNCTION_STARTS]: New function.
18027         (dump_it) [LC_FUNCTION_STARTS]: Use it.
18029 2011-08-08  Eli Zaretskii  <eliz@gnu.org>
18031         * xdisp.c (forward_to_next_line_start): Allow to use the
18032         no-display-properties-and-no-overlays under bidi display.
18033         Set disp_pos in the bidi iterator to avoid searches for display
18034         properties and overlays.
18036 2011-08-08  Chong Yidong  <cyd@stupidchicken.com>
18038         * editfns.c (Fset_time_zone_rule): Document relationship with the
18039         setenv function.
18041         * ftfont.c (ftfont_pattern_entity): Copy the extras argument to
18042         the font entity extracted from the cache (Bug#8109).
18044 2011-08-07  Chong Yidong  <cyd@stupidchicken.com>
18046         * composite.c (autocmp_chars): Don't reset point.  That is done by
18047         restore_point_unwind (Bug#5984).
18049 2011-08-07  Juri Linkov  <juri@jurta.org>
18051         * editfns.c (Fformat_time_string): Doc fix, add tag `usage:'
18052         to show the arg `TIME' instead of `TIMEVAL'.
18054 2011-08-06  Eli Zaretskii  <eliz@gnu.org>
18056         * xdisp.c (set_cursor_from_row): Fix cursor positioning when a
18057         display property strides EOL and includes a newline, as in
18058         longlines-mode.  (Bug#9254)
18059         (move_it_in_display_line_to): Fix vertical-motion in a buffer with
18060         word-wrap under bidirectional display.  (Bug#9224)
18062         * bidi.c (bidi_unshelve_cache): Don't reset the cache if JUST_FREE
18063         is non-zero, even if the data buffer is NULL.  Fixes a crash in
18064         vertical-motion with longlines-mode.  (Bug#9254)
18066 2011-08-05  Eli Zaretskii  <eliz@gnu.org>
18068         * bidi.c <bidi_cache_total_alloc>: Now static.
18069         (bidi_initialize): Initialize bidi_cache_total_alloc.
18071         * xdisp.c (display_line): Release buffer allocated for shelved bidi
18072         cache.  (Bug#9221)
18074         * bidi.c (bidi_shelve_cache, bidi_unshelve_cache): Track total
18075         amount allocated this far in `bidi_cache_total_alloc'.
18076         (bidi_unshelve_cache): Accept an additional argument JUST_FREE; if
18077         non-zero, only free the data buffer without restoring the cache
18078         contents.  All callers changed.
18080         * dispextern.h (bidi_unshelve_cache): Update prototype.
18082         * xdisp.c (SAVE_IT, pos_visible_p, move_it_in_display_line_to)
18083         (move_it_in_display_line, move_it_to)
18084         (move_it_vertically_backward, move_it_by_lines): Replace the call
18085         to xfree to an equivalent call to bidi_unshelve_cache.
18086         (move_it_in_display_line_to): Fix logic of returning
18087         MOVE_POS_MATCH_OR_ZV in the bidi case.  (Bug#9224)
18089 2011-08-05  Eli Zaretskii  <eliz@gnu.org>
18091         * xdisp.c (set_cursor_from_row): Prefer the candidate glyph that
18092         came from a string character with a `cursor' property.  (Bug#9229)
18094 2011-08-04  Jan Djärv  <jan.h.d@swipnet.se>
18096         * Makefile.in (LIB_PTHREAD): New variable.
18097         (LIBES): Add LIB_PTHREAD (Bug#9216).
18099         * alloc.c, emacs.c, gmalloc.c, gtkutil.c, keyboard.c, syssignal.h:
18100         Rename HAVE_GTK_AND_PTHREAD to HAVE_PTHREAD (Bug#9216).
18102 2011-08-04  Andreas Schwab  <schwab@linux-m68k.org>
18104         * regex.c (re_iswctype): Remove some redundant boolean conversions.
18106 2011-08-04  Jan Djärv  <jan.h.d@swipnet.se>
18108         * xterm.c (x_find_topmost_parent): New function.
18109         (x_set_frame_alpha): Find topmost parent window with
18110         x_find_topmost_parent and set the property there also (bug#9181).
18111         (handle_one_xevent): Call x_set_frame_alpha on ReparentNotify.
18113 2011-08-04  Paul Eggert  <eggert@cs.ucla.edu>
18115         * callproc.c (Fcall_process): Avoid vfork clobbering
18116         the local vars buffer, coding_systems, current_dir.
18118 2011-08-03  Stefan Monnier  <monnier@iro.umontreal.ca>
18120         * keymap.c (Fmake_composed_keymap): Move to subr.el.
18122 2011-08-03  Paul Eggert  <eggert@cs.ucla.edu>
18124         * fontset.c (dump_fontset) [FONTSET_DEBUG]: Declare EXTERNALLY_VISIBLE
18125         so that it is not optimized away.
18127         * xdisp.c (compute_display_string_pos): Remove unused local.
18129 2011-08-02  Eli Zaretskii  <eliz@gnu.org>
18131         Fix slow cursor motion and scrolling in large buffers with
18132         selective display, like Org Mode buffers.  (Bug#9218)
18134         * dispextern.h (struct bidi_it): New member disp_prop_p.
18136         * xdisp.c: Remove one-slot cache of display string positions.
18137         (compute_display_string_pos): Accept an additional argument
18138         DISP_PROP_P; callers changed.  Scan at most 5K characters forward
18139         for a display string or property.  If found, set DISP_PROP_P
18140         non-zero.
18142         * bidi.c (bidi_fetch_char): Accept an additional argument
18143         DISP_PROP_P, and pass it to compute_display_string_pos.
18144         Only handle text covered by a display string if DISP_PROP_P is returned
18145         non-zero.  All callers of bidi_fetch_char changed.
18147 2011-08-02  Stefan Monnier  <monnier@iro.umontreal.ca>
18149         * keymap.c (Fdefine_key): Fix Lisp_Object/int mixup; apply some CSE.
18151 2010-12-03  Don March  <don@ohspite.net>
18153         * keymap.c (Fdefine_key): Fix non-prefix key error message when
18154         last character M-[char] is translated to ESC [char] (bug#7541).
18156 2011-08-02  Kenichi Handa  <handa@m17n.org>
18158         * lisp.h (uniprop_table): Extern it.
18160         * chartab.c (uniprop_table): Make it non-static.
18162 2011-08-01  Eli Zaretskii  <eliz@gnu.org>
18164         * xdisp.c (forward_to_next_line_start): Accept additional argument
18165         BIDI_IT_PREV, and store into it the state of the bidi iterator had
18166         on the newline.
18167         (reseat_at_next_visible_line_start): Use the bidi iterator state
18168         returned by forward_to_next_line_start to restore the state of
18169         it->bidi_it after backing up to previous newline.  (Bug#9212)
18171 2011-07-30  Andreas Schwab  <schwab@linux-m68k.org>
18173         * regex.c (re_comp): Protoize.
18174         (re_exec): Fix return type.
18175         (regexec): Fix type of `ret'.  (Bug#9203)
18177 2011-07-28  Paul Eggert  <eggert@cs.ucla.edu>
18179         * image.c (check_image_size): Use 1024x1024 if unknown frame (Bug#9189).
18180         This is needed if max-image-size is a floating-point number.
18182 2011-07-28  Andreas Schwab  <schwab@linux-m68k.org>
18184         * print.c (print_object): Print empty symbol as ##.
18186         * lread.c (read1): Read ## as empty symbol.
18188 2011-07-28  Alp Aker  <alp.tekin.aker@gmail.com>
18190         * nsfns.m (x_set_foreground_color): Set f->foreground_pixel when
18191         setting frame foreground color (Bug#9175).
18192         (x_set_background_color): Likewise.
18194         * nsmenu.m (-setText): Size tooltip dimensions precisely to
18195         contents (Bug#9176).
18196         (EmacsTooltip -init): Remove bezels and add shadows to
18197         tooltip windows.
18199         * nsterm.m (ns_dumpglyphs_stretch): Avoid overwriting left fringe
18200         or scroll bar (Bug#8470).
18202         * nsfont.m (nsfont_open): Remove assignment to voffset and
18203         unnecessary vars hshink, expand, hd, full_height, min_height.
18204         (nsfont_draw): Use s->ybase as baseline for glyph drawing (Bug#8913).
18206         * nsterm.h (nsfont_info): Remove voffset field.
18208 2011-07-28  Alp Aker  <alp.tekin.aker@gmail.com>
18210         Implement strike-through and overline on NextStep (Bug#8863).
18212         * nsfont.m (nsfont_open): Use underline position provided by font,
18213         instead of hard-coded value of 2.
18214         (nsfont_draw): Call ns_draw_text_decoration instead.
18216         * nsterm.h: Add declaration for ns_draw_text_decoration.
18218         * nsterm.m (ns_draw_text_decoration): New function for drawing
18219         underline, overline, and strike-through.
18220         (ns_dumpglyphs_image, ns_dumpglyphs_stretch): Add call to
18221         ns_draw_text_decoration.  Change treatment of cursor drawing to
18222         accommodate underlining, etc.
18224 2011-07-28  Eli Zaretskii  <eliz@gnu.org>
18226         * buffer.c (init_buffer_once): Set bidi-display-reordering to t by
18227         default.
18229 2011-07-28  Paul Eggert  <eggert@cs.ucla.edu>
18231         * alloc.c (memory_full) [!SYNC_INPUT]: Fix signal-related race.
18232         Without this fix, if a signal arrives just after memory fills up,
18233         'malloc' might be invoked reentrantly.
18235         * image.c (x_check_image_size) [!HAVE_X_WINDOWS]: Return 1.
18236         In other words, assume that every image size is allowed, on non-X
18237         hosts.  This assumption is probably wrong, but it lets Emacs compile.
18239 2011-07-28  Andreas Schwab  <schwab@linux-m68k.org>
18241         * regex.c (re_iswctype): Convert return values to boolean.
18243 2011-07-28  Eli Zaretskii  <eliz@fencepost.gnu.org>
18245         * xdisp.c (compute_display_string_pos): Don't use cached display
18246         string position if the buffer had its restriction changed.
18247         (Bug#9184)
18249 2011-07-28  Paul Eggert  <eggert@cs.ucla.edu>
18251         * callproc.c (Fcall_process): Use 'volatile' to avoid vfork clobbering.
18253 2011-07-28  Paul Eggert  <eggert@cs.ucla.edu>
18255         Integer signedness and overflow and related fixes.  (Bug#9079)
18257         * bidi.c: Integer size and overflow fixes.
18258         (bidi_cache_size, bidi_cache_idx, bidi_cache_last_idx)
18259         (bidi_cache_start, bidi_cache_fetch_state, bidi_cache_search)
18260         (bidi_cache_find_level_change, bidi_cache_ensure_space)
18261         (bidi_cache_iterator_state, bidi_cache_find, bidi_cache_start_stack)
18262         (bidi_find_other_level_edge):
18263         Use ptrdiff_t instead of EMACS_INT where either will do.
18264         This works better on 32-bit hosts configured --with-wide-int.
18265         (bidi_cache_ensure_space): Check for size-calculation overflow.
18266         Use % rather than repeated addition, for better worst-case speed.
18267         Don't set bidi_cache_size until after xrealloc returns, because it
18268         might not return.
18269         (bidi_dump_cached_states): Use ptrdiff_t, not int, to avoid overflow.
18270         (bidi_cache_ensure_space): Also check that the bidi cache size
18271         does not exceed that of the largest Lisp string or buffer.  See Eli
18272         Zaretskii in <http://debbugs.gnu.org/cgi/bugreport.cgi?bug=9079#29>.
18274         * alloc.c (__malloc_size_t): Remove.
18275         All uses replaced by size_t.  See Andreas Schwab's note
18276         <http://debbugs.gnu.org/cgi/bugreport.cgi?bug=9079#8>.
18278         * image.c: Improve checking for integer overflow.
18279         (check_image_size): Assume that f is nonnull, since
18280         it is always nonnull in practice.  This is one less thing to
18281         worry about when checking for integer overflow later.
18282         (x_check_image_size): New function, which checks for integer
18283         overflow issues inside X.
18284         (x_create_x_image_and_pixmap, xbm_read_bitmap_data): Use it.
18285         This removes the need for a memory_full check.
18286         (xbm_image_p): Rewrite to avoid integer multiplication overflow.
18287         (Create_Pixmap_From_Bitmap_Data, xbm_load): Use x_check_image_size.
18288         (xbm_read_bitmap_data): Change locals back to 'int', since
18289         their values must fit in 'int'.
18290         (xpm_load_image, png_load, tiff_load):
18291         Invoke x_create_x_image_and_pixmap earlier,
18292         to avoid much needless work if the image is too large.
18293         (tiff_load): Treat overly large images as if
18294         x_create_x_image_and_pixmap failed, not as malloc failures.
18295         (gs_load): Use x_check_image_size.
18297         * gtkutil.c: Omit integer casts.
18298         (xg_get_pixbuf_from_pixmap): Remove unnecessary cast.
18299         (xg_set_toolkit_scroll_bar_thumb): Rewrite to avoid need for cast.
18301         * image.c (png_load): Don't assume height * row_bytes fits in 'int'.
18303         * xfaces.c (Fbitmap_spec_p): Fix integer overflow bug.
18304         Without this fix, (bitmap-spec-p '(34359738368 1 "x"))
18305         would wrongly return t on a 64-bit host.
18307         * dispnew.c (init_display): Use *_RANGE_OVERFLOW macros.
18308         The plain *_OVERFLOW macros run afoul of GCC bug 49705
18309         <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=49705>
18310         and therefore cause GCC to emit a bogus diagnostic in some cases.
18312         * image.c: Integer signedness and overflow and related fixes.
18313         This is not an exhaustive set of fixes, but it's time to
18314         record what I've got.
18315         (lookup_pixel_color, check_image_size): Remove redundant decls.
18316         (check_image_size): Don't assume that arbitrary EMACS_INT values
18317         fit in 'int', or that arbitrary 'double' values fit in 'int'.
18318         (x_alloc_image_color, x_create_x_image_and_pixmap, png_load)
18319         (tiff_load, imagemagick_load_image):
18320         Check for overflow in size calculations.
18321         (x_create_x_image_and_pixmap): Remove unnecessary test for
18322         xmalloc returning NULL; that can't happen.
18323         (xbm_read_bitmap_data): Don't assume sizes fit into 'int'.
18324         (xpm_color_bucket): Use better integer hashing function.
18325         (xpm_cache_color): Don't possibly over-allocate memory.
18326         (struct png_memory_storage, tiff_memory_source, tiff_seek_in_memory)
18327         (gif_memory_source):
18328         Use ptrdiff_t, not int or size_t, to record sizes.
18329         (png_load): Don't assume values greater than 2**31 fit in 'int'.
18330         (our_stdio_fill_input_buffer): Prefer ptrdiff_t to size_t when
18331         either works, as we prefer signed integers.
18332         (tiff_read_from_memory, tiff_write_from_memory):
18333         Return tsize_t, not size_t, since that's what the TIFF API wants.
18334         (tiff_read_from_memory): Don't fail simply because the read would
18335         go past EOF; instead, return a short read.
18336         (tiff_load): Omit no-longer-needed casts.
18337         (Fimagemagick_types): Don't assume size fits into 'int'.
18339         Improve hashing quality when configured --with-wide-int.
18340         * fns.c (hash_string): New function, taken from sxhash_string.
18341         Do not discard information about ASCII character case; this
18342         discarding is no longer needed.
18343         (sxhash-string): Use it.  Change sig to match it.  Caller changed.
18344         * lisp.h: Declare it.
18345         * lread.c (hash_string): Remove, since we now use fns.c's version.
18346         The fns.c version returns a wider integer if --with-wide-int is
18347         specified, so this should help the quality of the hashing a bit.
18349         * emacs.c: Integer overflow minor fix.
18350         (heap_bss_diff): Now uprintmax_t, not unsigned long.  All used changed.
18351         Define only if GNU_LINUX.
18352         (main, Fdump_emacs): Set and use heap_bss_diff only if GNU_LINUX.
18354         * dispnew.c: Integer signedness and overflow fixes.
18355         Remove unnecessary forward decls, that were a maintenance hassle.
18356         (history_tick): Now uprintmax_t, so it's more likely to avoid overflow.
18357         All uses changed.
18358         (adjust_glyph_matrix, realloc_glyph_pool, adjust_frame_message_buffer)
18359         (scrolling_window): Use ptrdiff_t, not int, for byte count.
18360         (prepare_desired_row, line_draw_cost):
18361         Use int, not unsigned, where either works.
18362         (save_current_matrix, restore_current_matrix):
18363         Use ptrdiff_t, not size_t, where either works.
18364         (init_display): Check for overflow more accurately, and without
18365         relying on undefined behavior.
18367         * editfns.c (pWIDE, pWIDElen, signed_wide, unsigned_wide):
18368         Remove, replacing with the new symbols in lisp.h.  All uses changed.
18369         * fileio.c (make_temp_name):
18370         * filelock.c (lock_file_1, lock_file):
18371         * xdisp.c (message_dolog):
18372         Don't assume PRIdMAX etc. works; this isn't portable to pre-C99 hosts.
18373         Use pMd etc. instead.
18374         * lisp.h (printmax_t, uprintmax_t, pMd, pMu): New types and macros,
18375         replacing the pWIDE etc. symbols removed from editfns.c.
18377         * keyboard.h (num_input_events): Now uintmax_t.
18378         This is (very slightly) less likely to mess up due to wraparound.
18379         All uses changed.
18381         * buffer.c: Integer signedness fixes.
18382         (alloc_buffer_text, enlarge_buffer_text):
18383         Use ptrdiff_t rather than size_t when either will do, as we prefer
18384         signed integers.
18386         * alloc.c: Integer signedness and overflow fixes.
18387         Do not impose an arbitrary 32-bit limit on malloc sizes when debugging.
18388         (__malloc_size_t): Default to size_t, not to int.
18389         (pure_size, pure_bytes_used_before_overflow, stack_copy_size)
18390         (Fgarbage_collect, mark_object_loop_halt, mark_object):
18391         Prefer ptrdiff_t to size_t when either would do, as we prefer
18392         signed integers.
18393         (XMALLOC_OVERRUN_CHECK_OVERHEAD): New macro.
18394         (xmalloc_overrun_check_header, xmalloc_overrun_check_trailer):
18395         Now const.  Initialize with values that are in range even if char
18396         is signed.
18397         (XMALLOC_PUT_SIZE, XMALLOC_GET_SIZE): Remove, replacing with ...
18398         (xmalloc_put_size, xmalloc_get_size): New functions.  All uses changed.
18399         These functions do the right thing with sizes > 2**32.
18400         (check_depth): Now ptrdiff_t, not int.
18401         (overrun_check_malloc, overrun_check_realloc, overrun_check_free):
18402         Adjust to new way of storing sizes.  Check for size overflow bugs
18403         in rest of code.
18404         (STRING_BYTES_MAX): Adjust to new overheads.  The old code was
18405         slightly wrong anyway, as it missed one instance of
18406         XMALLOC_OVERRUN_CHECK_OVERHEAD.
18407         (refill_memory_reserve): Omit needless cast to size_t.
18408         (mark_object_loop_halt): Mark as externally visible.
18410         * xselect.c: Integer signedness and overflow fixes.
18411         (Fx_register_dnd_atom, x_handle_dnd_message):
18412         Use ptrdiff_t, not size_t, since we prefer signed.
18413         (Fx_register_dnd_atom): Check for ptrdiff_t (and size_t) overflow.
18414         * xterm.h (struct x_display_info): Use ptrdiff_t, not size_t, for
18415         x_dnd_atoms_size and x_dnd_atoms_length.
18417         * doprnt.c: Prefer signed to unsigned when either works.
18418         * eval.c (verror):
18419         * doprnt.c (doprnt):
18420         * lisp.h (doprnt):
18421         * xdisp.c (vmessage):
18422         Use ptrdiff_t, not size_t, when using or implementing doprnt,
18423         since the sizes cannot exceed ptrdiff_t bounds anyway, and we
18424         prefer signed arithmetic to avoid comparison confusion.
18425         * doprnt.c (doprnt): Avoid a "+ 1" that can't overflow,
18426         but is a bit tricky.
18428         Assume freestanding C89 headers, string.h, stdlib.h.
18429         * data.c, doprnt.c, floatfns.c, print.c:
18430         Include float.h unconditionally.
18431         * gmalloc.c: Assume C89-at-least behavior for preprocessor,
18432         limits.h, stddef.h, string.h.  Use memset instead of 'flood'.
18433         * regex.c: Likewise for stddef.h, string.h.
18434         (ISASCII): Remove; can assume it returns 1 now.  All uses removed.
18435         * s/aix4-2.h (HAVE_STRING_H): Remove obsolete undef.
18436         * s/ms-w32.h (HAVE_LIMITS_H, HAVE_STRING_H, HAVE_STDLIB_H)
18437         (STDC_HEADERS): Remove obsolete defines.
18438         * sysdep.c: Include limits.h unconditionally.
18440         Assume support for memcmp, memcpy, memmove, memset.
18441         * lisp.h, sysdep.c (memcmp, memcpy, memmove, memset):
18442         * regex.c (memcmp, memcpy):
18443         Remove; we assume C89 now.
18445         * gmalloc.c (memcpy, memset, memmove): Remove; we assume C89 now.
18446         (__malloc_safe_bcopy): Remove; no longer needed.
18448         * lisp.h (struct vectorlike_header, struct Lisp_Subr): Signed sizes.
18449         Use EMACS_INT, not EMACS_UINT, for sizes.  The code works equally
18450         well either way, and we prefer signed to unsigned.
18452 2011-07-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18454         * gnutls.c (emacs_gnutls_read): Don't message anything if the peer
18455         closes the connection while we're reading (bug#9182).
18457 2011-07-25  Jan Djärv  <jan.h.d@swipnet.se>
18459         * nsmenu.m (ns_popup_dialog): Add an "ok" button if no buttons
18460         are specified (Bug#9168).
18462 2011-07-25  Paul Eggert  <eggert@cs.ucla.edu>
18464         * bidi.c (bidi_dump_cached_states): Fix printf format mismatch.
18465         Found by GCC static checking and --with-wide-int on a 32-bit host.
18467 2011-07-25  Eli Zaretskii  <eliz@gnu.org>
18469         * xdisp.c (compute_display_string_pos): Fix logic of caching
18470         previous display string position.  Initialize cached_prev_pos to
18471         -1.  Fixes slow-down at the beginning of a buffer.
18473 2011-07-24  Eli Zaretskii  <eliz@gnu.org>
18475         * xfaces.c (check_lface_attrs) [HAVE_WINDOW_SYSTEM]: Allow `nil'
18476         for attrs[LFACE_FONTSET_INDEX].
18478 2011-07-23  Paul Eggert  <eggert@cs.ucla.edu>
18480         * xml.c (parse_region): Remove unused local
18481         that was recently introduced.
18483 2011-07-23  Eli Zaretskii  <eliz@gnu.org>
18485         * xfns.c (unwind_create_frame) [GLYPH_DEBUG]: Adapt to changes in
18486         2008-02-22T17:42:09Z!monnier@iro.umontreal.ca.
18488         * xdisp.c (move_it_in_display_line_to): Record the best matching
18489         position for TO_CHARPOS while scanning the line, and restore it on
18490         exit if none of the characters scanned was an exact match.
18491         Fixes vertical-motion and pos-visible-in-window-p under bidi redisplay
18492         when exact match is impossible due to invisible text, and the
18493         lines are truncated.
18495 2011-07-23  Jan Djärv  <jan.h.d@swipnet.se>
18497         * nsterm.m (initFrameFromEmacs): Set NSTitledWindowMask in styleMask
18498         for OSX >= 10.7.
18500 2011-07-22  Eli Zaretskii  <eliz@gnu.org>
18502         Fix a significant slow-down of cursor motion with C-n, C-p,
18503         C-f/C-b, and C-v/M-v that couldn't keep up with keyboard
18504         auto-repeat under bidi redisplay in fontified buffers.
18505         * xdisp.c (compute_stop_pos_backwards): New function.
18506         (next_element_from_buffer): Call compute_stop_pos_backwards to
18507         find a suitable prev_stop when we find ourselves before
18508         base_level_stop.
18509         (reseat): Don't look for prev_stop, as that could mean a very long
18510         run.
18511         <cached_disp_pos, cached_disp_buffer, cached_disp_modiff>
18512         <cached_disp_overlay_modiff>: Cache for last found display string
18513         position.
18514         (compute_display_string_pos): Return the cached position if asked
18515         about the same buffer in the same area of character positions, and
18516         the buffer wasn't changed since the time the display string
18517         position was cached.
18519 2011-07-22  Eli Zaretskii  <eliz@gnu.org>
18521         * xdisp.c (rows_from_pos_range): Don't ignore glyphs whose object
18522         is an integer, which is important for empty lines.  (Bug#9149)
18524 2011-07-22  Chong Yidong  <cyd@stupidchicken.com>
18526         * frame.c (Fmodify_frame_parameters): In tty case, update the
18527         default face if necessary (Bug#4238).
18529 2011-07-21  Chong Yidong  <cyd@stupidchicken.com>
18531         * editfns.c (Fstring_to_char): No need to explain what a character
18532         is in the docstring (Bug#6576).
18534 2011-07-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18536         * xml.c (parse_region): Make sure we always return a tree.
18538 2011-07-20  HAMANO Kiyoto  <khiker.mail@gmail.com>
18540         * xml.c (parse_region): If a document contains only comments,
18541         return that, too.
18543 2011-07-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18545         * xml.c (make_dom): Return comments, too.
18547 2011-07-19  Paul Eggert  <eggert@cs.ucla.edu>
18549         Port to OpenBSD.
18550         See http://lists.gnu.org/archive/html/emacs-devel/2011-07/msg00688.html
18551         and the surrounding thread.
18552         * minibuf.c (read_minibuf_noninteractive): Rewrite to use getchar
18553         rather than fgets, and retry after EINTR.  Otherwise, 'emacs
18554         --batch -f byte-compile-file' fails on OpenBSD if an inactivity
18555         timer goes off.
18556         * s/openbsd.h (BROKEN_SIGIO): Define.
18557         * unexelf.c (unexec) [__OpenBSD__]:
18558         Don't update the .mdebug section of the Alpha COFF symbol table.
18560 2011-07-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18562         * lread.c (syms_of_lread): Clarify when `lexical-binding' is used
18563         (bug#8460).
18565 2011-07-18  Paul Eggert  <eggert@cs.ucla.edu>
18567         * fileio.c (Fcopy_file) [!MSDOS]: Tighten created file's mask.
18568         This fixes some race conditions on the permissions of any newly
18569         created file.
18571         * alloc.c (valid_pointer_p): Use pipe, not open.
18572         This fixes some permissions issues when debugging.
18574         * fileio.c (Fcopy_file): Adjust mode if fchown fails.  (Bug#9002)
18575         If fchown fails to set both uid and gid, try to set just gid,
18576         as that is sometimes allowed.  Adjust the file's mode to eliminate
18577         setuid or setgid bits that are inappropriate if fchown fails.
18579 2011-07-18  Stefan Monnier  <monnier@iro.umontreal.ca>
18581         * xdisp.c (next_element_from_string, next_element_from_buffer): Use EQ
18582         to compare Lisp_Objects.
18583         * gnutls.c (syms_of_gnutls): Rename Vgnutls_log_level to
18584         global_gnutls_log_level, don't mistake it for a Lisp_Object.
18585         (init_gnutls_functions, emacs_gnutls_handle_error): Fix up uses.
18587 2011-07-17  Andreas Schwab  <schwab@linux-m68k.org>
18589         * lread.c (read_integer): Unread even EOF character.
18590         (read1): Likewise.  Properly record start position of symbol.
18592         * lread.c (read1): Read `#:' as empty uninterned symbol if no
18593         symbol character follows.
18595 2011-07-17  Paul Eggert  <eggert@cs.ucla.edu>
18597         * fileio.c (Fcopy_file): Pacify gcc re fchown.  (Bug#9002)
18598         This works around a problem with the previous change to Fcopy_file.
18599         Recent glibc declares fchown with __attribute__((warn_unused_result)),
18600         and without this change, GCC might complain about discarding
18601         fchown's return value.
18603 2011-07-16  Juanma Barranquero  <lekktu@gmail.com>
18605         * makefile.w32-in (GLOBAL_SOURCES): Add gnutls.c (followup to bug#9059).
18607 2011-07-16  Paul Eggert  <eggert@cs.ucla.edu>
18609         * fileio.c (Fcopy_file): Don't diagnose fchown failures.  (Bug#9002)
18611 2011-07-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18613         * gnutls.c (syms_of_gnutls): Define `gnutls-log-level' here, since
18614         it's used from the C level.
18616         * process.c: Use the same condition for POLL_FOR_INPUT in both
18617         keyboard.c and process.c (bug#1858).
18619 2011-07-09  Lawrence Mitchell  <wence@gmx.li>
18621         * gnutls.c (Qgnutls_bootprop_min_prime_bits): New variable.
18622         (Fgnutls_boot): Use it.
18624 2011-07-15  Andreas Schwab  <schwab@linux-m68k.org>
18626         * doc.c (Fsubstitute_command_keys): Revert last change.
18628 2011-07-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18630         * doc.c (Fsubstitute_command_keys): Clarify that \= really only
18631         quotes the next character, and doesn't affect other longer
18632         sequences (bug#8935).
18634         * lread.c (syms_of_lread): Clarify that is isn't only
18635         `eval-buffer' and `eval-defun' that's affected by
18636         `lexical-binding' (bug#8460).
18638 2011-07-15  Eli Zaretskii  <eliz@gnu.org>
18640         * xdisp.c (move_it_in_display_line_to): Fix vertical motion with
18641         bidi redisplay when a line includes both an image and is truncated.
18643 2011-07-14  Paul Eggert  <eggert@cs.ucla.edu>
18645         Fix minor problems found by static checking.
18646         * bidi.c (bidi_cache_size): Now EMACS_INT, not size_t.
18647         (elsz): Now a signed constant, not a size_t var.  We prefer signed
18648         types to unsigned, to avoid integer comparison confusion.  Without
18649         this change, GCC 4.6.1 with -Wunsafe-loop-optimizations complains
18650         "cannot optimize loop, the loop counter may overflow", a symptom
18651         of the confusion.
18652         * indent.c (Fvertical_motion): Mark locals as initialized.
18653         * xdisp.c (reseat_to_string): Fix pointer signedness issue.
18655 2011-07-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18657         * search.c (Fre_search_backward): Mention `case-fold-search' in
18658         all the re_search_* functions (bug#8138).
18660         * keyboard.c (Fopen_dribble_file): Document when the file is
18661         closed (bug#8056).
18663 2011-07-14  Eli Zaretskii  <eliz@gnu.org>
18665         * bidi.c (bidi_dump_cached_states): Fix format of displaying
18666         bidi_cache_idx.
18668         Support bidi reordering of display and overlay strings.
18669         * xdisp.c (compute_display_string_pos)
18670         (compute_display_string_end): Accept additional argument STRING.
18671         (init_iterator, reseat_1): Initialize bidi_it->string.s to NULL.
18672         (reseat_to_string): Initialize bidi_it->string.s and
18673         bidi_it->string.schars.
18674         (Fcurrent_bidi_paragraph_direction): Initialize itb.string.s to
18675         NULL (avoids a crash in bidi_paragraph_init).
18676         Initialize itb.string.lstring.
18677         (init_iterator): Call bidi_init_it only of a valid
18678         buffer position was specified.  Initialize paragraph_embedding to
18679         L2R.
18680         (reseat_to_string): Initialize the bidi iterator.
18681         (display_string): If we need to ignore text properties of
18682         LISP_STRING, set IT->stop_charpos to IT->end_charpos.  (The
18683         original value of -1 will not work with bidi.)
18684         (compute_display_string_pos): First arg is now struct
18685         `text_pos *'; all callers changed.  Support display properties on
18686         Lisp strings.
18687         (compute_display_string_end): Support display properties on Lisp
18688         strings.
18689         (init_iterator, reseat_1, reseat_to_string): Initialize the
18690         string.bufpos member to 0 (zero, for compatibility with IT_CHARPOS
18691         when iterating on a string not from display properties).
18692         (compute_display_string_pos, compute_display_string_end):
18693         Fix calculation of the object to scan.  Fixes an error when using
18694         arrow keys.
18695         (next_element_from_buffer): Don't abort when IT_CHARPOS is before
18696         base_level_stop; instead, set base_level_stop to BEGV.
18697         Fixes crashes in vertical-motion.
18698         (next_element_from_buffer): Improve commentary for when
18699         the iterator is before prev_stop.
18700         (init_iterator): Initialize bidi_p from the default value of
18701         bidi-display-reordering, not from buffer-local value.  Use the
18702         buffer-local value only if initializing for buffer iteration.
18703         (handle_invisible_prop): Support invisible properties on strings
18704         that are being bidi-reordered.
18705         (set_iterator_to_next): Support bidi reordering of C strings and
18706         Lisp strings.
18707         (next_element_from_string): Support bidi reordering of Lisp
18708         strings.
18709         (handle_stop_backwards): Support Lisp strings as well.
18710         (display_string): Support display of R2L glyph rows.
18711         Use IT_STRING_CHARPOS when displaying from a Lisp string.
18712         (init_iterator): Don't initialize it->bidi_p for strings
18713         here.
18714         (reseat_to_string): Initialize it->bidi_p for strings here.
18715         (next_element_from_string, next_element_from_c_string)
18716         (next_element_from_buffer): Add xassert's for correspondence
18717         between IT's object being iterated and it->bidi_it.string
18718         structure.
18719         (face_before_or_after_it_pos): Support bidi iteration.
18720         (next_element_from_c_string): Handle the case of the first string
18721         character that is not the first one in the visual order.
18722         (get_visually_first_element): New function, refactored from common
18723         parts of next_element_from_buffer, next_element_from_string, and
18724         next_element_from_c_string.
18725         (tool_bar_lines_needed, redisplay_tool_bar)
18726         (display_menu_bar): Force left-to-right direction.  Add a FIXME
18727         comment for making that be controlled by a user option.
18728         (push_it, pop_it): Save and restore the state of the
18729         bidi iterator.  Save and restore the bidi_p flag.
18730         (pop_it): Iterate out of display property for string iteration as
18731         well.
18732         (iterate_out_of_display_property): Support iteration over strings.
18733         (handle_single_display_spec): Set up it->bidi_it for iteration
18734         over a display string, and call bidi_init_it.
18735         (handle_single_display_spec, next_overlay_string)
18736         (get_overlay_strings_1, push_display_prop): Set up the bidi
18737         iterator for displaying display or overlay strings.
18738         (forward_to_next_line_start): Don't use the shortcut if
18739         bidi-iterating.
18740         (back_to_previous_visible_line_start): If handle_display_prop
18741         pushed the iterator stack, restore the internal state of the bidi
18742         iterator by calling bidi_pop_it same number of times.
18743         (reseat_at_next_visible_line_start): If ON_NEWLINE_P is non-zero,
18744         and we are bidi-iterating, don't decrement the iterator position;
18745         instead, set the first_elt flag in the bidi iterator, to produce
18746         the same effect.
18747         (reseat_1): Remove redundant setting of string_from_display_prop_p.
18748         (push_display_prop): xassert that we are iterating a buffer.
18749         (push_it, pop_it): Save and restore paragraph_embedding member.
18750         (handle_single_display_spec, next_overlay_string)
18751         (get_overlay_strings_1, reseat_1, reseat_to_string)
18752         (push_display_prop): Set up the `unibyte' member of bidi_it.string
18753         correctly.  Don't assume unibyte strings are not bidi-reordered.
18754         (compute_display_string_pos)
18755         (compute_display_string_end): Fix handling the case of C string.
18756         (push_it, pop_it): Save and restore from_disp_prop_p.
18757         (handle_single_display_spec, push_display_prop): Set the
18758         from_disp_prop_p flag.
18759         (get_overlay_strings_1): Reset the from_disp_prop_p flag.
18760         (pop_it): Call iterate_out_of_display_property only if we are
18761         popping after iteration over a string that came from a display
18762         property.  Fix a typo in popping stretch info.  Add an assertion
18763         for verifying that the iterator position is in sync with the bidi
18764         iterator.
18765         (handle_single_display_spec, get_overlay_strings_1)
18766         (push_display_prop): Fix initialization of paragraph direction for
18767         string when that of the parent object is not yet determined.
18768         (reseat_1): Call bidi_init_it to resync the bidi
18769         iterator with IT's position.  (Bug#7616)
18770         (find_row_edges): If ROW->start.pos gives position
18771         smaller than min_pos, use it as ROW->minpos.  (Bug#7616)
18772         (handle_stop, back_to_previous_visible_line_start, reseat_1):
18773         Reset the from_disp_prop_p flag.
18774         (SAVE_IT, RESTORE_IT): New macros.
18775         (pos_visible_p, face_before_or_after_it_pos)
18776         (back_to_previous_visible_line_start)
18777         (move_it_in_display_line_to, move_it_in_display_line)
18778         (move_it_to, move_it_vertically_backward, move_it_by_lines)
18779         (try_scrolling, redisplay_window, display_line): Use them when
18780         saving a temporary copy of the iterator and restoring it back.
18781         (back_to_previous_visible_line_start, reseat_1)
18782         (init_iterator): Empty the bidi cache "stack".
18783         (move_it_in_display_line_to): If iterator ended up at
18784         EOL, but we never saw any buffer positions smaller than
18785         to_charpos, return MOVE_POS_MATCH_OR_ZV.  Fixes vertical cursor
18786         motion in bidi-reordered lines.
18787         (move_it_in_display_line_to): Record prev_method and prev_pos
18788         immediately before the call to set_iterator_to_next.  Fixes cursor
18789         motion in bidi-reordered lines with stretch glyphs and strings
18790         displayed in margins.  (Bug#8133) (Bug#8867)
18791         Return MOVE_POS_MATCH_OR_ZV only if iterator position is past
18792         TO_CHARPOS.
18793         (pos_visible_p): Support positions in bidi-reordered lines.
18794         Save and restore bidi cache.
18796         * bidi.c (bidi_level_of_next_char): clen should be EMACS_NT, not int.
18797         (bidi_paragraph_info): Delete unused struct.
18798         (bidi_cache_idx, bidi_cache_last_idx): Declare EMACS_INT.
18799         (bidi_cache_start): New variable.
18800         (bidi_cache_reset): Reset bidi_cache_idx to bidi_cache_start, not
18801         to zero.
18802         (bidi_cache_fetch_state, bidi_cache_search)
18803         (bidi_cache_find_level_change, bidi_cache_iterator_state)
18804         (bidi_cache_find, bidi_peek_at_next_level)
18805         (bidi_level_of_next_char, bidi_find_other_level_edge)
18806         (bidi_move_to_visually_next): Compare cache index with
18807         bidi_cache_start rather than with zero.
18808         (bidi_fetch_char): Accept new argument STRING; all callers
18809         changed.  Support iteration over a string.  Support strings with
18810         display properties.  Support unibyte strings.  Fix the type of
18811         `len' according to what STRING_CHAR_AND_LENGTH expects.
18812         (bidi_paragraph_init, bidi_resolve_explicit_1)
18813         (bidi_resolve_explicit, bidi_resolve_weak)
18814         (bidi_level_of_next_char, bidi_move_to_visually_next):
18815         Support iteration over a string.
18816         (bidi_set_sor_type, bidi_resolve_explicit_1)
18817         (bidi_resolve_explicit, bidi_type_of_next_char): ignore_bn_limit
18818         can now be zero (for strings); special values 0 and -1 were
18819         changed to -1 and -2, respectively.
18820         (bidi_char_at_pos): New function.
18821         (bidi_paragraph_init, bidi_resolve_explicit, bidi_resolve_weak):
18822         Call it instead of FETCH_MULTIBYTE_CHAR.
18823         (bidi_move_to_visually_next): Abort if charpos or bytepos were not
18824         initialized to valid values.
18825         (bidi_init_it): Don't initialize charpos and bytepos with invalid
18826         values.
18827         (bidi_level_of_next_char): Allow the sentinel "position" to pass
18828         the test for valid cached positions.  Fix the logic for looking up
18829         the sentinel state in the cache.  GCPRO the Lisp string we are
18830         iterating.
18831         (bidi_push_it, bidi_pop_it): New functions.
18832         (bidi_initialize): Initialize the bidi cache start stack pointer.
18833         (bidi_cache_ensure_space): New function, refactored from part of
18834         bidi_cache_iterator_state.  Don't assume the required size is just
18835         one BIDI_CACHE_CHUNK away.
18836         (bidi_cache_start_stack, bidi_push_it): Use IT_STACK_SIZE.
18837         (bidi_count_bytes, bidi_char_at_pos): New functions.
18838         (bidi_cache_search): Don't assume bidi_cache_last_idx is
18839         always valid if bidi_cache_idx is valid.
18840         (bidi_cache_find_level_change): xassert that bidi_cache_last_idx
18841         is valid if it's going to be used.
18842         (bidi_shelve_cache, bidi_unshelve_cache): New functions.
18843         (bidi_cache_fetch_state, bidi_cache_search)
18844         (bidi_cache_find_level_change, bidi_cache_ensure_space)
18845         (bidi_cache_iterator_state, bidi_cache_find)
18846         (bidi_find_other_level_edge, bidi_cache_start_stack):
18847         All variables related to cache indices are now EMACS_INT.
18849         * dispextern.h (struct bidi_string_data): New structure.
18850         (struct bidi_it): New member `string'.  Make flag members be 1-bit
18851         fields, and put them last in the struct.
18852         (compute_display_string_pos, compute_display_string_end):
18853         Update prototypes.
18854         (bidi_push_it, bidi_pop_it): Add prototypes.
18855         (struct iterator_stack_entry): New members bidi_p,
18856         paragraph_embedding, and from_disp_prop_p.
18857         (struct it): Member bidi_p is now a bit field 1 bit wide.
18858         (bidi_shelve_cache, bidi_unshelve_cache):
18859         Declare prototypes.
18861         * .gdbinit (xvectype, xvector, xcompiled, xchartable, xboolvector)
18862         (xpr, xfont, xbacktrace): Use "header.size" when accessing vectors
18863         and vector-like objects.
18865         * dispnew.c (buffer_posn_from_coords): Save and restore the bidi
18866         cache around display iteration.
18868         * window.c (Fwindow_end, window_scroll_pixel_based)
18869         (displayed_window_lines, Frecenter): Save and restore the bidi
18870         cache around display iteration.
18872 2011-07-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18874         * editfns.c (Fdelete_region): Clarify the use of the named
18875         parameters (bug#6788).
18877 2011-07-14  Martin Rudalics  <rudalics@gmx.at>
18879         * indent.c (Fvertical_motion): Set and restore w->pointm when
18880         saving and restoring the window's buffer (Bug#9006).
18882 2011-07-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18884         * editfns.c (Fstring_to_char): Clarify just what is returned
18885         (bug#6576).  Text by Eli Zaretskii.
18887 2011-07-13  Juanma Barranquero  <lekktu@gmail.com>
18889         * gnutls.c (init_gnutls_functions): Honor gnutls_log_level (bug#9059).
18891 2011-07-13  Eli Zaretskii  <eliz@gnu.org>
18893         * buffer.c (mmap_find): Fix a typo.
18895 2011-07-13  Johan Bockgård  <bojohan@gnu.org>
18897         Fix execution of x selection hooks.
18898         * xselect.c (Qx_lost_selection_functions)
18899         (Qx_sent_selection_functions): New vars.
18900         (syms_of_xselect): DEFSYM them.
18901         (x_handle_selection_request): Pass Qx_sent_selection_functions
18902         rather than Vx_sent_selection_functions to Frun_hook_with_args.
18903         (x_handle_selection_clear,x_clear_frame_selections):
18904         Pass Qx_lost_selection_functions rather than
18905         Vx_lost_selection_functions to Frun_hook_with_args.
18907 2011-07-13  Paul Eggert  <eggert@cs.ucla.edu>
18909         * buffer.c (Fget_buffer_create): Initialize inhibit_shrinking.
18910         The old code sometimes used this field without initializing it.
18912         * alloc.c (gc_sweep): Don't read past end of array.
18913         In theory, the old code could also have corrupted Emacs internals,
18914         though it'd be very unlikely.
18916 2011-07-12  Andreas Schwab  <schwab@linux-m68k.org>
18918         * character.c (Fcharacterp): Don't advertise optional ignored
18919         argument.  (Bug#4026)
18921 2011-07-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18923         * keymap.c (syms_of_keymap): Clarify that "modifier" is "modifier
18924         key" (bug#4257).
18926         * window.c (Fset_window_start): Doc fix (bug#4199).
18927         (Fset_window_hscroll): Ditto.
18929 2011-07-12  Paul Eggert  <eggert@cs.ucla.edu>
18931         Fix minor new problems caught by GCC 4.6.1.
18932         * term.c (init_tty): Remove unused local.
18933         * xsettings.c (store_monospaced_changed): Define this function only
18934         if (defined HAVE_GSETTINGS || defined HAVE_GCONF), as it's
18935         not used otherwise.
18937 2011-07-12  Chong Yidong  <cyd@stupidchicken.com>
18939         * xdisp.c (Vresize_mini_windows): Minor doc fix (Bug#3300).
18941 2011-07-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18943         * xdisp.c (syms_of_xdisp): Make it explicit that the mini-windows
18944         are the mini-buffer and the echo area (bug#3320).
18946         * term.c (init_tty): Remove support for supdup, c10 and perq
18947         terminals, which are no longer supported (bug#1482).
18949 2011-07-10  Johan Bockgård  <bojohan@gnu.org>
18951         * xdisp.c (Ftool_bar_lines_needed): Fix WINDOWP check.
18953 2011-07-10  Jan Djärv  <jan.h.d@swipnet.se>
18955         * xmenu.c (menu_highlight_callback): Only pass frame to show_help_event
18956         for non-popups (Bug#3642).
18958 2011-07-10  Andreas Schwab  <schwab@linux-m68k.org>
18960         * alloc.c (reset_malloc_hooks): Protoize.
18961         * buffer.c (mmap_init, mmap_find, mmap_free_1, mmap_enlarge)
18962         (mmap_set_vars, mmap_alloc, mmap_free, mmap_realloc): Likewise.
18963         * cm.c (losecursor): Likewise.
18964         * data.c (fmod): Likewise.
18965         * dispnew.c (swap_glyphs_in_rows): Likewise.
18966         * emacs.c (memory_warning_signal): Likewise.
18967         * floatfns.c (float_error): Likewise.
18968         * font.c (check_gstring, check_otf_features, otf_tag_symbol)
18969         (otf_open, font_otf_capability, generate_otf_features)
18970         (font_otf_DeviceTable, font_otf_ValueRecord, font_otf_Anchor):
18971         Likewise.
18972         * image.c (pbm_read_file): Likewise.
18973         * indent.c (string_display_width): Likewise.
18974         * intervals.c (check_for_interval, search_for_interval)
18975         (inc_interval_count, count_intervals, root_interval)
18976         (adjust_intervals_for_insertion, make_new_interval): Likewise.
18977         * lread.c (defalias): Likewise.
18978         * ralloc.c (r_alloc_check): Likewise.
18979         * regex.c (set_image_of_range_1, set_image_of_range)
18980         (regex_grow_registers): Likewise.
18981         * sysdep.c (strerror): Likewise.
18982         * termcap.c (valid_filename_p, tprint, main): Likewise.
18983         * tparam.c (main): Likewise.
18984         * unexhp9k800.c (run_time_remap, save_data_space)
18985         (update_file_ptrs, read_header, write_header, calculate_checksum)
18986         (copy_file, copy_rest, display_header): Likewise.
18987         * widget.c (mark_shell_size_user_specified, create_frame_gcs):
18988         Likewise.
18989         * xdisp.c (check_it): Likewise.
18990         * xfaces.c (register_color, unregister_color, unregister_colors):
18991         Likewise.
18992         * xfns.c (print_fontset_result): Likewise.
18993         * xrdb.c (member, fatal, main): Likewise.
18995 2011-07-10  Paul Eggert  <eggert@cs.ucla.edu>
18997         Fix minor problems found by static checking (Bug#9031).
18998         * chartab.c (char_table_set_range, map_sub_char_table):
18999         Remove unused locals.
19000         (uniprop_table): Now static.
19001         * composite.c (_work_char): Remove unused static var.
19003 2011-07-09  Juanma Barranquero  <lekktu@gmail.com>
19005         * chartab.c (uniprop_table_uncompress): Remove unused local variable.
19007 2011-07-09  Jan Djärv  <jan.h.d@swipnet.se>
19009         * gtkutil.c (qttip_cb): Remove code without function.
19011 2011-07-09  Eli Zaretskii  <eliz@gnu.org>
19013         * w32.c (pthread_sigmask): New stub.
19015 2011-07-08  Paul Eggert  <eggert@cs.ucla.edu>
19017         Use pthread_sigmask, not sigprocmask (Bug#9010).
19018         sigprocmask is portable only for single-threaded applications, and
19019         Emacs can be multi-threaded when it uses GTK.
19020         * Makefile.in (LIB_PTHREAD_SIGMASK): New macro.
19021         (LIBES): Use it.
19022         * callproc.c (Fcall_process):
19023         * process.c (create_process):
19024         * sysdep.c (sys_sigblock, sys_sigunblock, sys_sigsetmask):
19025         Use pthread_sigmask, not sigprocmask.
19027 2011-07-08  Jan Djärv  <jan.h.d@swipnet.se>
19029         * gtkutil.c (qttip_cb): Set line wrap to FALSE for tooltip widget.
19030         (xg_prepare_tooltip): Revert text in x->ttip_lbl, margins was
19031         wrong (Bug#8591).
19033 2011-07-08  Jan Djärv  <jan.h.d@swipnet.se>
19035         * gtkutil.c (xg_prepare_tooltip): Fix indentation and comment.
19036         Put text in x->ttip_lbl instead of gtk_tooltip_set_text (Bug#8591).
19037         (xg_hide_tooltip): Fix comment.
19039         * nsterm.m (initFrameFromEmacs): Don't use ns_return_types
19040         in registerServicesMenuSendTypes.
19041         (validRequestorForSendType): Don't check ns_return_types.
19043         * nsfns.m (Fx_open_connection): Put NSStringPboardType into
19044         ns_return_type.
19046 2011-07-08  Jason Rumney  <jasonr@gnu.org>
19048         * w32term.c (x_make_frame_visible): Use SH_SHOWNORMAL rather than
19049         SH_SHOW for hidden windows (Bug#5482).
19051         * w32fns.c (w32_wnd_proc) [WM_TIMER, WM_SET_CURSOR]: Avoid using
19052         frame struct members of non-existent frames (Bug#6284).
19054 2011-07-08  Jan Djärv  <jan.h.d@swipnet.se>
19056         * nsterm.m (keyDown): Call to wantsToDelayTextChangeNotifications and
19057         variable firstTime not needed on OSX >= 10.6.
19058         (setPosition): setFloatValue:knobProportion: is deprecated on OSX
19059         >= 10.5.  Use setKnobProportion, setDoubleValue.
19061         * nsterm.h (MAC_OS_X_VERSION_10_3, MAC_OS_X_VERSION_10_4)
19062         (MAC_OS_X_VERSION_10_5): Define if not defined.
19063         (EmacsView, EmacsTooltip): Implements NSWindowDelegate on OSX >= 10.6.
19064         (EmacsMenu): Implements NSMenuDelegate on OSX >= 10.6.
19065         (EmacsToolbar): Implements NSToolbarDelegate on OSX >= 10.6.
19067         * nsselect.m (ns_string_from_pasteboard): Don't use deprecated methods
19068         cString and lossyCString on OSX >= 10.4.
19070         * nsmenu.m (fillWithWidgetValue): Don't use deprecated method
19071         sizeToFit on OSX >= 10.2.
19073         * nsimage.m (allocInitFromFile): Don't use deprecated method
19074         bestRepresentationForDevice on OSX >= 10.6.
19076         * nsfns.m (check_ns_display_info): Cast to long and use %ld in error
19077         to avoid warning.
19079         * emacs.c: Declare unexec_init_emacs_zone.
19081         * nsgui.h: Fix compiler warning about gnulib redefining verify.
19083         * nsselect.m (ns_get_local_selection): Change to extern (Bug#8842).
19085         * nsmenu.m (ns_update_menubar): Remove useless setDelegate call
19086         on svcsMenu (Bug#8842).
19088         * nsfns.m (Fx_open_connection): Remove NSStringPboardType from
19089         ns_return_types.
19090         (Fns_list_services): Just return Qnil on 10.6, code not working there.
19092         * nsterm.m (QUTF8_STRING): Declare.
19093         (initFrameFromEmacs): Call registerServicesMenuSendTypes.
19094         (validRequestorForSendType): Return type is (id).
19095         Change indexOfObjectIdenticalTo to indexOfObject.
19096         Check if we have local selection before returning self (Bug#8842).
19097         (writeSelectionToPasteboard): Put local selection into paste board
19098         if we have a local selection (Bug#8842).
19099         (syms_of_nsterm): DEFSYM QUTF8_STRING.
19101         * nsterm.h (MAC_OS_X_VERSION_10_6): Define here instead of nsterm.m.
19102         (ns_get_local_selection): Declare.
19104 2011-07-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19106         * keymap.c (describe_map_tree): Don't insert a double newline at
19107         the end of the buffer (bug#1169) and return whether we inserted
19108         something.
19110         * callint.c (Fcall_interactively): Change "reading args" to
19111         "providing args" to try to clarify what it does (bug#1010).
19113 2011-07-07  Kenichi Handa  <handa@m17n.org>
19115         * composite.c (composition_compute_stop_pos): Ignore a static
19116         composition starting before CHARPOS (Bug#8915).
19118         * xdisp.c (handle_composition_prop): Likewise.
19120 2011-07-07  Eli Zaretskii  <eliz@gnu.org>
19122         * term.c (produce_glyphs) <xassert>: Allow IT_GLYPHLESS in it->what.
19123         (Bug#9015)
19125 2011-07-07  Kenichi Handa  <handa@m17n.org>
19127         * character.h (unicode_category_t): New enum type.
19129         * chartab.c (uniprop_decoder_t, uniprop_encoder_t): New types.
19130         (Qchar_code_property_table): New variable.
19131         (UNIPROP_TABLE_P, UNIPROP_GET_DECODER)
19132         (UNIPROP_COMPRESSED_FORM_P): New macros.
19133         (char_table_ascii): Uncompress the compressed values.
19134         (sub_char_table_ref): New arg is_uniprop.  Callers changed.
19135         Uncompress the compressed values.
19136         (sub_char_table_ref_and_range): Likewise.
19137         (char_table_ref_and_range): Uncompress the compressed values.
19138         (sub_char_table_set): New arg is_uniprop.  Callers changed.
19139         Uncompress the compressed values.
19140         (sub_char_table_set_range): Args changed.  Callers changed.
19141         (char_table_set_range): Adjuted for the above change.
19142         (map_sub_char_table): Delete args default_val and parent.  Add arg
19143         top.  Give decoded values to a Lisp function.
19144         (map_char_table): Adjust for the above change.  Give decoded
19145         values to a Lisp function.  Gcpro more variables.
19146         (uniprop_table_uncompress)
19147         (uniprop_decode_value_run_length): New functions.
19148         (uniprop_decoder, uniprop_decoder_count): New variables.
19149         (uniprop_get_decoder, uniprop_encode_value_character)
19150         (uniprop_encode_value_run_length, uniprop_encode_value_numeric):
19151         New functions.
19152         (uniprop_encoder, uniprop_encoder_count): New variables.
19153         (uniprop_get_encoder, uniprop_table)
19154         (Funicode_property_table_internal, Fget_unicode_property_internal)
19155         (Fput_unicode_property_internal): New functions.
19156         (syms_of_chartab): DEFSYM Qchar_code_property_table, defsubr
19157         Sunicode_property_table_internal, Sget_unicode_property_internal,
19158         and Sput_unicode_property_internal.  Defvar_lisp
19159         char-code-property-alist.
19161         * composite.c (CHAR_COMPOSABLE_P): Adjust for the change of
19162         Vunicode_category_table.
19164         * font.c (font_range): Adjust for the change of
19165         Vunicode_category_table.
19167 2011-07-07  Dan Nicolaescu  <dann@ics.uci.edu>
19169         * m/iris4d.h: Remove file, move contents ...
19170         * s/irix6-5.h: ... here.
19172 2011-07-06  Paul Eggert  <eggert@cs.ucla.edu>
19174         Remove unportable assumption about struct layout (Bug#8884).
19175         * alloc.c (mark_buffer):
19176         * buffer.c (reset_buffer_local_variables, Fbuffer_local_variables)
19177         (clone_per_buffer_values): Don't assume that
19178         sizeof (struct buffer) is a multiple of sizeof (Lisp_Object).
19179         This isn't true in general, and it's particularly not true
19180         if Emacs is configured with --with-wide-int.
19181         * buffer.h (FIRST_FIELD_PER_BUFFER, LAST_FIELD_PER_BUFFER):
19182         New macros, used in the buffer.c change.
19184 2011-07-05  Jan Djärv  <jan.h.d@swipnet.se>
19186         * xsettings.c: Use both GConf and GSettings if both are available.
19187         (store_config_changed_event): Add comment.
19188         (dpyinfo_valid, store_font_name_changed, map_tool_bar_style)
19189         (store_tool_bar_style_changed): New functions.
19190         (store_monospaced_changed): Add comment.  Call dpyinfo_valid.
19191         (struct xsettings): Move font inside HAVE_XFT.
19192         (GSETTINGS_TOOL_BAR_STYLE, GSETTINGS_FONT_NAME): New defines.
19193         (GSETTINGS_MONO_FONT): Rename from SYSTEM_MONO_FONT.
19194         Move inside HAVE_XFT.
19195         (something_changed_gsettingsCB): Rename from something_changedCB.
19196         Check for changes in GSETTINGS_TOOL_BAR_STYLE and GSETTINGS_FONT_NAME
19197         also.
19198         (GCONF_TOOL_BAR_STYLE, GCONF_FONT_NAME): New defines.
19199         (GCONF_MONO_FONT): Rename from SYSTEM_MONO_FONT.  Move inside HAVE_XFT.
19200         (something_changed_gconfCB): Rename from something_changedCB.
19201         Check for changes in GCONF_TOOL_BAR_STYLE and GCONF_FONT_NAME also.
19202         (parse_settings): Move check for font inside HAVE_XFT.
19203         (read_settings, apply_xft_settings): Add comment.
19204         (read_and_apply_settings): Add comment.  Call map_tool_bar_style and
19205         store_tool_bar_style_changed.  Move check for font inside HAVE_XFT and
19206         call store_font_name_changed.
19207         (xft_settings_event): Add comment.
19208         (init_gsettings): Add comment.  Get values for GSETTINGS_TOOL_BAR_STYLE
19209         and GSETTINGS_FONT_NAME.  Move check for fonts within HAVE_XFT.
19210         (init_gconf): Add comment.  Get values for GCONF_TOOL_BAR_STYLE
19211         and GCONF_FONT_NAME.  Move check for fonts within HAVE_XFT.
19212         (xsettings_initialize): Call init_gsettings last.
19213         (xsettings_get_system_font, xsettings_get_system_normal_font):
19214         Add comment.
19216 2011-07-05  Paul Eggert  <eggert@cs.ucla.edu>
19218         Random fixes.  E.g., (random) never returned negative values.
19219         * fns.c (Frandom): Use GET_EMACS_TIME for random seed, and add the
19220         subseconds part to the entropy, as that's a bit more random.
19221         Prefer signed to unsigned, since the signedness doesn't matter and
19222         in general we prefer signed.  When given a limit, use a
19223         denominator equal to INTMASK + 1, not to VALMASK + 1, because the
19224         latter isn't right if USE_2_TAGS_FOR_INTS.
19225         * sysdep.c (get_random): Return a value in the range 0..INTMASK,
19226         not 0..VALMASK.  Don't discard "excess" bits that random () returns.
19228 2011-07-04  Stefan Monnier  <monnier@iro.umontreal.ca>
19230         * textprop.c (text_property_stickiness):
19231         Obey Vtext_property_default_nonsticky.
19232         (syms_of_textprop): Add `display' to Vtext_property_default_nonsticky.
19233         * w32fns.c (syms_of_w32fns):
19234         * xfns.c (syms_of_xfns): Don't Add `display' since it's there by default.
19236 2011-07-04  Paul Eggert  <eggert@cs.ucla.edu>
19238         * fileio.c (barf_or_query_if_file_exists): Use S_ISDIR.
19239         This is more efficient than Ffile_directory_p and avoids a minor race.
19241 2011-07-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19243         * buffer.c (Foverlay_put): Say what the return value is
19244         (bug#7835).
19246         * fileio.c (barf_or_query_if_file_exists): Check first if the file
19247         is a directory before asking whether to use the file name
19248         (bug#7564).
19249         (barf_or_query_if_file_exists): Make the "File is a directory"
19250         error be more correct.
19252         * fns.c (Frequire): Remove the mention of the .gz files, since
19253         that's installation-specific, but keep the mention of
19254         `get-load-suffixes'.
19256 2011-07-04  Paul Eggert  <eggert@cs.ucla.edu>
19258         * editfns.c (Fformat_time_string): Don't assume strlen fits in int.
19259         Report string overflow if the output is too long.
19261 2011-07-04  Juanma Barranquero  <lekktu@gmail.com>
19263         * gnutls.c (Fgnutls_boot): Don't mention :verify-error.
19264         (syms_of_gnutls): Remove duplicate DEFSYM for
19265         Qgnutls_bootprop_verify_hostname_error, an error for
19266         Qgnutls_bootprop_verify_error (which is no longer used).
19268         * eval.c (find_handler_clause): Remove parameters `sig' and `data',
19269         unused since 2011-01-26T20:02:07Z!monnier@iro.umontreal.ca.  All callers changed.
19270         Also (re)move comments that are misplaced or no longer relevant.
19272 2011-07-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19274         * callint.c (Finteractive): Clarify the meaning of "@" (bug#8813).
19276 2011-07-03  Chong Yidong  <cyd@stupidchicken.com>
19278         * xfaces.c (Finternal_merge_in_global_face): Modify the foreground
19279         and background color parameters if they have been changed.
19281 2011-07-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19283         * editfns.c (Fformat): Clarify the - and 0 flags (bug#6659).
19285 2011-07-03  Paul Eggert  <eggert@cs.ucla.edu>
19287         * xsettings.c (SYSTEM_FONT): Define only when used.
19288         No need to define when HAVE_GSETTINGS || !HAVE_XFT.
19290         * keymap.c (access_keymap_1): Now static.
19292 2011-07-02  Chong Yidong  <cyd@stupidchicken.com>
19294         * keyboard.c (command_loop_1): If a down-mouse event is unbound,
19295         leave any prefix arg for the up event (Bug#1586).
19297 2011-07-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19299         * lread.c (syms_of_lread): Mention single symbols defined by
19300         `defvar' or `defconst' (bug#7154).
19302         * fns.c (Frequire): Mention .el.gz files (bug#7314).
19303         (Frequire): Mention get-load-suffixes.
19305 2011-07-02  Martin Rudalics  <rudalics@gmx.at>
19307         * window.h (window): Remove clone_number slot.
19308         * window.c (Fwindow_clone_number, Fset_window_clone_number):
19309         Remove.
19310         (make_parent_window, make_window, saved_window)
19311         (Fset_window_configuration, save_window_save): Don't deal with
19312         clone numbers.
19313         * buffer.c (Qclone_number): Remove declaration.
19314         (sort_overlays, overlay_strings): Don't deal with clone numbers.
19316 2011-07-02  Stefan Monnier  <monnier@iro.umontreal.ca>
19318         Add multiple inheritance to keymaps.
19319         * keymap.c (Fmake_composed_keymap): New function.
19320         (Fset_keymap_parent): Simplify.
19321         (fix_submap_inheritance): Remove.
19322         (access_keymap_1): New function extracted from access_keymap to handle
19323         embedded parents and handle lists of maps.
19324         (access_keymap): Use it.
19325         (Fkeymap_prompt, map_keymap_internal, map_keymap, store_in_keymap)
19326         (Fcopy_keymap): Handle embedded parents.
19327         (Fcommand_remapping, define_as_prefix): Simplify.
19328         (Fkey_binding): Simplify.
19329         (syms_of_keymap): Move minibuffer-local-completion-map,
19330         minibuffer-local-filename-completion-map,
19331         minibuffer-local-must-match-map, and
19332         minibuffer-local-filename-must-match-map to Elisp.
19333         (syms_of_keymap): Defsubr make-composed-keymap.
19334         * keyboard.c (menu_bar_items): Use map_keymap_canonical.
19335         (parse_menu_item): Trivial simplification.
19337 2011-07-01  Glenn Morris  <rgm@gnu.org>
19339         * Makefile.in (SETTINGS_LIBS): Fix typo.
19341 2011-07-01  Kazuhiro Ito  <kzhr@d1.dion.ne.jp>  (tiny change)
19343         * coding.c (Fencode_coding_string): Record the last coding system
19344         used, as the function doc string says (bug#8738).
19346 2011-07-01  Jan Djärv  <jan.h.d@swipnet.se>
19348         * xsettings.c (store_monospaced_changed): Take new font as arg and
19349         check for change against current_mono_font.
19350         (EMACS_TYPE_SETTINGS): Remove this and related defines.
19351         (emacs_settings_constructor, emacs_settings_get_property)
19352         (emacs_settings_set_property, emacs_settings_class_init)
19353         (emacs_settings_init, gsettings_obj): Remove.
19354         (something_changedCB): New function for HAVE_GSETTINGS.
19355         (something_changedCB): HAVE_GCONF: Call store_monospaced_changed
19356         with value as argument.
19357         (init_gsettings): Check that GSETTINGS_SCHEMA exists before calling
19358         g_settings_new (Bug#8967).  Do not create gsettings_obj.
19359         Remove calls to g_settings_bind.  Connect something_changedCB to
19360         "changed".
19362         * xgselect.c: Add defined (HAVE_GSETTINGS).
19363         (xgselect_initialize): Ditto.
19365         * process.c: Add defined (HAVE_GSETTINGS) for xgselect.h
19366         (wait_reading_process_output): Add defined (HAVE_GSETTINGS) for
19367         xg_select.
19369 2011-07-01  Paul Eggert  <eggert@cs.ucla.edu>
19371         * eval.c (struct backtrace): Simplify and port the data structure.
19372         Do not assume that "int nargs : BITS_PER_INT - 2;" produces a
19373         signed bit field, as this assumption is not portable and it makes
19374         Emacs crash when compiled with Sun C 5.8 on sparc.  Do not use
19375         "char debug_on_exit : 1" as this is not portable either; instead,
19376         use the portable "unsigned int debug_on_exit : 1".  Remove unused
19377         member evalargs.  Remove obsolete comments about cc bombing out.
19379 2011-06-30  Jan Djärv  <jan.h.d@swipnet.se>
19381         * xsettings.c: Include glib-object.h, gio/gio.h if HAVE_GSETTINGS.
19382         Let HAVE_GSETTINGS override HAVE_GCONF.
19383         (store_monospaced_changed): New function.
19384         (EMACS_SETTINGS): A new type derived from GObject to handle
19385         GSettings notifications.
19386         (emacs_settings_constructor, emacs_settings_get_property)
19387         (emacs_settings_set_property, emacs_settings_class_init):
19388         New functions.
19389         (gsettings_client, gsettings_obj): New variables.
19390         (GSETTINGS_SCHEMA): New define.
19391         (something_changedCB): Call store_monospaced_changed.
19392         (init_gsettings): New function.
19393         (xsettings_initialize): Call init_gsettings.
19394         (syms_of_xsettings): Initialize gsettings_client, gsettings_obj
19395         to NULL.
19397         * Makefile.in (SETTINGS_CFLAGS, SETTINGS_LIBS): Rename from
19398         GCONF_CFLAGS/LIBS.
19400 2011-06-29  Martin Rudalics  <rudalics@gmx.at>
19402         * window.c (resize_root_window, grow_mini_window)
19403         (shrink_mini_window): Rename Qresize_root_window to
19404         Qwindow_resize_root_window and Qresize_root_window_vertically to
19405         Qwindow_resize_root_window_vertically.
19407 2011-06-28  Paul Eggert  <eggert@cs.ucla.edu>
19409         * gnutls.c (Qgnutls_bootprop_verify_error): Remove unused var.
19411 2011-06-27  Juanma Barranquero  <lekktu@gmail.com>
19413         * makefile.w32-in: Redesign dependencies so they reflect more
19414         clearly which files are directly included by each source file,
19415         and not through other includes.
19417 2011-06-27  Martin Rudalics  <rudalics@gmx.at>
19419         * buffer.c (Qclone_number): Declare static and DEFSYM it.
19420         (sort_overlays, overlay_strings): When an overlay's clone number
19421         matches the window's clone number process the overlay even if
19422         the overlay's window property doesn't match the current window.
19424         * window.c (Fwindow_vchild): Rename to Fwindow_top_child.
19425         (Fwindow_hchild): Rename to Fwindow_left_child.
19426         (Fwindow_next): Rename to Fwindow_next_sibling.
19427         (Fwindow_prev): Rename to Fwindow_prev_sibling.
19428         (resize_window_check): Rename to window_resize_check.
19429         (resize_window_apply): Rename to window_resize_apply.
19430         (Fresize_window_apply): Rename to Fwindow_resize_apply.
19431         (Fdelete_other_windows_internal, resize_frame_windows)
19432         (Fsplit_window_internal, Fdelete_window_internal)
19433         (grow_mini_window, shrink_mini_window)
19434         (Fresize_mini_window_internal): Fix callers accordingly.
19436 2011-06-26  Jan Djärv  <jan.h.d@swipnet.se>
19438         * emacsgtkfixed.h: State that this is only used with Gtk+3.
19439         (emacs_fixed_set_min_size): Remove.
19440         (emacs_fixed_new): Take frame as argument.
19442         * emacsgtkfixed.c: State that this is only used with Gtk+3.
19443         (_EmacsFixedPrivate): Remove minwidth/height.
19444         Add struct frame *f.
19445         (emacs_fixed_init): Initialize priv->f.
19446         (get_parent_class, emacs_fixed_set_min_size): Remove.
19447         (emacs_fixed_new): Set priv->f to argument.
19448         (emacs_fixed_get_preferred_width)
19449         (emacs_fixed_get_preferred_height): Use min_width/height from
19450         frames size_hint to set minimum and natural (Bug#8919).
19451         (XSetWMSizeHints, XSetWMNormalHints): Override these functions
19452         and use min_width/height from frames size_hint to set
19453         min_width/height (Bug#8919).
19455         * gtkutil.c (xg_create_frame_widgets): Pass f to emacs_fixed_new.
19456         (x_wm_set_size_hint): Remove call to emacs_fixed_set_min_size.
19457         Fix indentation.
19459 2011-06-26  Eli Zaretskii  <eliz@gnu.org>
19461         * bidi.c (bidi_paragraph_init): Test for ZV_BYTE before calling
19462         bidi_at_paragraph_end, since fast_looking_at doesn't like to be
19463         called at ZV.
19465 2011-06-26  Chong Yidong  <cyd@stupidchicken.com>
19467         * process.c (wait_reading_process_output): Bypass select if
19468         waiting for a cell while ignoring keyboard input, and input is
19469         pending.  Suggested by Jan Djärv (Bug#8869).
19471 2011-06-25  Paul Eggert  <eggert@cs.ucla.edu>
19473         Use gnulib's dup2 module instead of rolling our own.
19474         * sysdep.c (dup2) [!HAVE_DUP2]: Remove; gnulib now does this.
19476 2011-06-25  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
19478         * dispnew.c (scrolling_window): Before scrolling, turn off a
19479         mouse-highlight in the window being scrolled.
19481 2011-06-24  Juanma Barranquero  <lekktu@gmail.com>
19483         Move DEFSYM to lisp.h and use everywhere.
19485         * character.h (DEFSYM): Move declaration...
19486         * lisp.h (DEFSYM): ...here.
19488         * gnutls.c:
19489         * minibuf.c:
19490         * w32menu.c:
19491         * w32proc.c:
19492         * w32select.c: Don't include character.h.
19494         * alloc.c (syms_of_alloc):
19495         * buffer.c (syms_of_buffer):
19496         * bytecode.c (syms_of_bytecode):
19497         * callint.c (syms_of_callint):
19498         * casefiddle.c (syms_of_casefiddle):
19499         * casetab.c (init_casetab_once):
19500         * category.c (init_category_once, syms_of_category):
19501         * ccl.c (syms_of_ccl):
19502         * cmds.c (syms_of_cmds):
19503         * composite.c (syms_of_composite):
19504         * dbusbind.c (syms_of_dbusbind):
19505         * dired.c (syms_of_dired):
19506         * dispnew.c (syms_of_display):
19507         * doc.c (syms_of_doc):
19508         * editfns.c (syms_of_editfns):
19509         * emacs.c (syms_of_emacs):
19510         * eval.c (syms_of_eval):
19511         * fileio.c (syms_of_fileio):
19512         * fns.c (syms_of_fns):
19513         * frame.c (syms_of_frame):
19514         * fringe.c (syms_of_fringe):
19515         * insdel.c (syms_of_insdel):
19516         * keymap.c (syms_of_keymap):
19517         * lread.c (init_obarray, syms_of_lread):
19518         * macros.c (syms_of_macros):
19519         * msdos.c (syms_of_msdos):
19520         * print.c (syms_of_print):
19521         * process.c (syms_of_process):
19522         * search.c (syms_of_search):
19523         * sound.c (syms_of_sound):
19524         * syntax.c (init_syntax_once, syms_of_syntax):
19525         * terminal.c (syms_of_terminal):
19526         * textprop.c (syms_of_textprop):
19527         * undo.c (syms_of_undo):
19528         * w32.c (globals_of_w32):
19529         * window.c (syms_of_window):
19530         * xdisp.c (syms_of_xdisp):
19531         * xfaces.c (syms_of_xfaces):
19532         * xfns.c (syms_of_xfns):
19533         * xmenu.c (syms_of_xmenu):
19534         * xsettings.c (syms_of_xsettings):
19535         * xterm.c (syms_of_xterm): Use DEFSYM.
19537 2011-06-24  Teodor Zlatanov  <tzz@lifelogs.com>
19539         * gnutls.c (syms_of_gnutls): Use the DEFSYM macro from character.h.
19541 2011-06-23  Paul Eggert  <eggert@cs.ucla.edu>
19543         Integer and buffer overflow fixes (Bug#8873).
19545         * print.c (printchar, strout): Check for string overflow.
19546         (PRINTPREPARE, printchar, strout):
19547         Don't set size unless allocation succeeds.
19549         * minibuf.c (read_minibuf_noninteractive): Use ptrdiff_t, not int,
19550         for sizes.  Check for string overflow more accurately.
19551         Simplify newline removal at end; this suppresses a GCC 4.6.0 warning.
19553         * macros.c: Integer and buffer overflow fixes.
19554         * keyboard.h (struct keyboard.kbd_macro_bufsize):
19555         * macros.c (Fstart_kbd_macro, store_kbd_macro_char):
19556         Use ptrdiff_t, not int, for sizes.
19557         Don't increment bufsize until after realloc succeeds.
19558         Check for size-calculation overflow.
19559         (Fstart_kbd_macro): Use EMACS_INT, not int, for XINT result.
19561         * lisp.h (DEFVAR_KBOARD): Use offsetof instead of char * finagling.
19563         * lread.c: Integer overflow fixes.
19564         (read_integer): Radix is now EMACS_INT, not int,
19565         to improve quality of diagnostics for out-of-range radices.
19566         Calculate buffer size correctly for out-of-range radices.
19567         (read1): Check for integer overflow in radices, and in
19568         read-circle numbers.
19569         (read_escape): Avoid int overflow.
19570         (Fload, openp, read_buffer_size, read1)
19571         (substitute_object_recurse, read_vector, read_list, map_obarray):
19572         Use ptrdiff_t, not int, for sizes.
19573         (read1): Use EMACS_INT, not int, for sizes.
19574         Check for size overflow.
19576         * image.c (cache_image): Check for size arithmetic overflow.
19578         * lread.c: Integer overflow issues.
19579         (saved_doc_string_size, saved_doc_string_length)
19580         (prev_saved_doc_string_size, prev_saved_doc_string_length):
19581         Now ptrdiff_t, not int.
19582         (read1): Don't assume doc string length fits in int.  Check for
19583         out-of-range doc string lengths.
19584         (read_list): Don't assume file position fits in int.
19585         (read_escape): Check for hex character overflow.
19587 2011-06-22  Leo Liu  <sdl.web@gmail.com>
19589         * minibuf.c (Fcompleting_read_default, Vcompleting_read_function):
19590         Move to minibuffer.el.
19592 2011-06-22  Paul Eggert  <eggert@cs.ucla.edu>
19594         Fixes for GLYPH_DEBUG found by GCC 4.6.0 static checking.
19595         The following patches are for when GLYPH_DEBUG && !XASSERT.
19596         * dispextern.h (trace_redisplay_p, dump_glyph_string):
19597         * dispnew.c (flush_stdout):
19598         * xdisp.c (dump_glyph_row, dump_glyph_matrix, dump_glyph):
19599         Mark as externally visible.
19600         * dispnew.c (check_window_matrix_pointers): Now static.
19601         * dispnew.c (window_to_frame_vpos):
19602         * xfns.c (unwind_create_frame):
19603         * xterm.c (x_check_font): Remove unused local.
19604         * scroll.c (CHECK_BOUNDS):
19605         * xfaces.c (cache_fache): Rename local to avoid shadowing.
19606         * xfns.c, w32fns.c (image_cache_refcount, dpyinfo_refcount): Now static.
19607         * xdisp.c (check_window_end): Now a no-op if !XASSERTS.
19608         (debug_first_unchanged_at_end_vpos, debug_last_unchanged_at_beg_vpos)
19609         (debug_dvpos, debug_dy, debug_delta, debug_delta_bytes, debug_end_vpos):
19610         Now static.
19611         (debug_method_add): Use va_list and vsprintf rather than relying
19612         on undefined behavior with wrong number of arguments.
19613         (dump_glyph, dump_glyph_row, Fdump_glyph_matrix):
19614         Don't assume ptrdiff_t and EMACS_INT are the same width as int.
19615         In this code, it's OK to assume C99 behavior for ptrdiff_t formats
19616         since we're not interested in debugging glyphs with old libraries.
19617         * xfaces.c (cache_face): Move debugging code earlier; this pacifies
19618         GCC 4.6.0's static checking.
19620 2011-06-22  Paul Eggert  <eggert@cs.ucla.edu>
19622         Integer overflow and signedness fixes (Bug#8873).
19623         A few related buffer overrun fixes, too.
19625         * font.c (font_score): Use EMACS_INT, not int, to store XINT value.
19627         * dispextern.h (struct face.stipple):
19628         * image.c (x_bitmap_height, x_bitmap_width, x_bitmap_pixmap)
19629         (x_bitmap_mask, x_allocate_bitmap_record)
19630         (x_create_bitmap_from_data, x_create_bitmap_from_file)
19631         (x_destroy_bitmap, x_destroy_all_bitmaps, x_create_bitmap_mask)
19632         (x_create_bitmap_from_xpm_data):
19633         * nsterm.h (struct ns_display_info.bitmaps_size, .bitmaps_last):
19634         * w32term.h (struct w32_display_info.icon_bitmap_id, .bitmaps_size)
19635         (.bitmaps_last):
19636         * xfaces.c (load_pixmap):
19637         * xterm.c (x_bitmap_icon, x_wm_set_icon_pixmap):
19638         * xterm.h (struct x_display_info.icon_bitmap_id, .bitmaps_size)
19639         (.bitmaps_last, struct x_output.icon_bitmap):
19640         Use ptrdiff_t, not int, for bitmap indexes.
19641         (x_allocate_bitmap_record): Check for size overflow.
19642         * dispextern.h, lisp.h: Adjust to API changes elsewhere.
19644         Use ptrdiff_t, not int, for overlay counts.
19645         * buffer.h (overlays_at, sort_overlays, GET_OVERLAYS_AT):
19646         * editfns.c (overlays_around, get_pos_property):
19647         * textprop.c (get_char_property_and_overlay):
19648         * xdisp.c (next_overlay_change, note_mouse_highlight):
19649         * xfaces.c (face_at_buffer_position):
19650         * buffer.c (OVERLAY_COUNT_MAX): New macro.
19651         (overlays_at, overlays_in, sort_overlays, Foverlays_at)
19652         (Fnext_overlay_change, Fprevious_overlay_change)
19653         (mouse_face_overlay_overlaps, Foverlays_in):
19654         Use ptrdiff_t, not int, for sizes.
19655         (overlays_at, overlays_in): Check for size-calculation overflow.
19657         * xterm.c (xim_initialize, same_x_server): Strlen may not fit in int.
19659         * xsmfns.c (smc_save_yourself_CB, x_session_initialize): Avoid strlen.
19660         (x_session_initialize): Do not assume string length fits in int.
19662         * xsettings.c (apply_xft_settings): Fix potential buffer overrun.
19663         This is unlikely, but can occur if DPI is outlandish.
19665         * xsettings.c (Ffont_get_system_normal_font, Ffont_get_system_font):
19666         * xselect.c (Fx_get_atom_name): Avoid need for strlen.
19668         * xrdb.c: Don't assume strlen fits in int; avoid some strlens.
19669         * xrdb.c (magic_file_p, search_magic_path):
19670         Omit last arg SUFFIX; it was always 0.  All callers changed.
19671         (magic_file_p): Use ptrdiff_t, not int.  Check for size overflow.
19673         * xfont.c (xfont_match): Avoid need for strlen.
19675         * xfns.c: Don't assume strlen fits in int.
19676         (xic_create_fontsetname, x_window): Use ptrdiff_t, not int.
19678         * xdisp.c (message_log_check_duplicate): Return intmax_t,
19679         not unsigned long, as we prefer signed integers.  All callers changed.
19680         Detect integer overflow in repeat count.
19681         (message_dolog): Don't assume print length fits in 39 bytes.
19682         (display_mode_element): Don't assume strlen fits in int.
19684         * termcap.c: Don't assume sizes fit in int and never overflow.
19685         (struct termcap_buffer, tgetent): Use ptrdiff_t, not int, for sizes.
19686         (gobble_line): Check for size-calculation overflow.
19688         * minibuf.c (Fread_buffer):
19689         * lread.c (intern, intern_c_string):
19690         * image.c (xpm_scan) [HAVE_NS && !HAVE_XPM]:
19691         Don't assume string length fits in int.
19693         * keyboard.c (parse_tool_bar_item):
19694         * gtkutil.c (style_changed_cb): Avoid need for strlen.
19696         * font.c: Don't assume string length fits in int.
19697         (font_parse_xlfd, font_parse_fcname, font_unparse_fcname):
19698         Use ptrdiff_t, not int.
19699         (font_intern_prop): Don't assume string length fits in int.
19700         Don't assume integer property fits in fixnum.
19701         * font.h (font_intern_prop): 2nd arg is now ptrdiff_t, not int.
19703         * filelock.c: Fix some buffer overrun and integer overflow issues.
19704         (get_boot_time): Don't assume gzip command string fits in 100 bytes.
19705         Reformulate so as not to need the command string.
19706         Invoke gzip -cd rather than gunzip, as it's more portable.
19707         (lock_info_type, lock_file_1, lock_file):
19708         Don't assume pid_t and time_t fit in unsigned long.
19709         (LOCK_PID_MAX): Remove; we now use more-reliable bounds.
19710         (current_lock_owner): Prefer signed type for sizes.
19711         Use memcpy, not strncpy, where memcpy is what is really wanted.
19712         Don't assume (via atoi) that time_t and pid_t fit in int.
19713         Check for time_t and/or pid_t out of range, e.g., via a network share.
19714         Don't alloca where an auto var works fine.
19716         * fileio.c: Fix some integer overflow issues.
19717         (file_name_as_directory, Fexpand_file_name, Fsubstitute_in_file_name):
19718         Don't assume string length fits in int.
19719         (directory_file_name): Don't assume string length fits in long.
19720         (make_temp_name): Don't assume pid fits in int, or that its print
19721         length is less than 20.
19723         * data.c (Fsubr_name): Rewrite to avoid a strlen call.
19725         * coding.c (make_subsidiaries): Don't assume string length fits in int.
19727         * callproc.c (child_setup): Rewrite to avoid two strlen calls.
19729         * process.c (Fformat_network_address): Use EMACS_INT, not EMACS_UINT.
19730         We prefer signed integers, even for size calculations.
19732         * emacs.c: Don't assume string length fits in 'int'.
19733         (DEFINE_DUMMY_FUNCTION, sort_args): Use ptrdiff_t, not int.
19734         (main): Don't invoke strlen when not needed.
19736         * dbusbind.c (XD_ERROR): Don't arbitrarily truncate string.
19737         (XD_DEBUG_MESSAGE): Don't waste a byte.
19739         * callproc.c (getenv_internal_1, getenv_internal)
19740         (Fgetenv_internal):
19741         * buffer.c (init_buffer): Don't assume string length fits in 'int'.
19743         * lread.c (invalid_syntax): Omit length argument.
19744         All uses changed.  This doesn't fix a bug, but it simplifies the
19745         code away from its former Hollerith-constant appearance, and it's
19746         one less 'int' to worry about when looking at integer-overflow issues.
19747         (string_to_number): Simplify 2011-04-26 change by invoking xsignal1.
19749         * lisp.h (DEFUN): Remove bogus use of sizeof (struct Lisp_Subr).
19750         This didn't break anything, but it didn't help either.
19751         It's confusing to put a bogus integer in a place where the actual
19752         value does not matter.
19753         (LIST_END_P): Remove unused macro and its bogus comment.
19754         (make_fixnum_or_float): Remove unnecessary cast to EMACS_INT.
19756         * lisp.h (union Lisp_Object.i): EMACS_INT, not EMACS_UINT.
19757         This is for consistency with the ordinary, non-USE_LISP_UNION_TYPE,
19758         implementation.
19759         (struct Lisp_Bool_Vector.size): EMACS_INT, not EMACS_UINT.
19760         We prefer signed types, and the value cannot exceed the EMACS_INT
19761         range anyway (because otherwise the length would not be representable).
19762         (XSET) [USE_LISP_UNION_TYPE]: Use uintptr_t and intptr_t,
19763         not EMACS_UINT and EMACS_INT, when converting pointer to integer.
19764         This avoids a GCC warning when WIDE_EMACS_INT.
19766         * indent.c (sane_tab_width): New function.
19767         (current_column, scan_for_column, Findent_to, position_indentation)
19768         (compute_motion): Use it.  This is just for clarity.
19769         (Fcompute_motion): Don't assume hscroll and tab offset fit in int.
19771         * image.c (xbm_image_p): Don't assume stated width, height fit in int.
19773         * lisp.h (lint_assume): New macro.
19774         * composite.c (composition_gstring_put_cache):
19775         * ftfont.c (ftfont_shape_by_flt): Use it to pacify GCC 4.6.0.
19777         * editfns.c, insdel.c:
19778         Omit unnecessary forward decls, to simplify future changes.
19780         * ftfont.c (ftfont_shape_by_flt): Use signed integers for lengths.
19782         * font.c (Ffont_shape_gstring): Don't assume glyph len fits in 'int'.
19784         * fns.c (Ffillarray): Don't assume bool vector size fits in 'int'.
19785         Use much-faster test for byte-length change.
19786         Don't assume string byte-length fits in 'int'.
19787         Check that character arg fits in 'int'.
19788         (mapcar1): Declare byte as byte, for clarity.
19790         * alloc.c (Fmake_bool_vector): Avoid unnecessary multiplication.
19792         * fns.c (concat): Catch string overflow earlier.
19793         Do not rely on integer wraparound.
19795         * dispextern.h (struct it.overlay_strings_charpos)
19796         (struct it.selective): Now EMACS_INT, not int.
19797         * xdisp.c (forward_to_next_line_start)
19798         (back_to_previous_visible_line_start)
19799         (reseat_at_next_visible_line_start, next_element_from_buffer):
19800         Don't arbitrarily truncate the value of 'selective' to int.
19802         * xdisp.c (init_iterator): Use XINT, not XFASTINT; it might be < 0.
19804         * composite.c: Don't truncate sizes to 'int'.
19805         (composition_gstring_p, composition_reseat_it)
19806         (composition_adjust_point): Use EMACS_INT, not int.
19807         (get_composition_id, composition_gstring_put_cache): Use EMACS_INT,
19808         not EMACS_UINT, for indexes.
19810         * category.h (CATEGORY_SET_P): Remove unnecessary cast to EMACS_INT.
19812         * buffer.c: Include <verify.h>.
19813         (struct sortvec.priority, struct sortstr.priority):
19814         Now EMACS_INT, not int.
19815         (compare_overlays, cmp_for_strings): Avoid subtraction overflow.
19816         (struct sortstr.size, record_overlay_string)
19817         (struct sortstrlist.size, struct sortlist.used):
19818         Don't truncate size to int.
19819         (record_overlay_string): Check for size-calculation overflow.
19820         (init_buffer_once): Check at compile-time, not run-time.
19822 2011-06-22  Jim Meyering  <meyering@redhat.com>
19824         Don't leak an XBM-image-sized buffer
19825         * image.c (xbm_load): Free the image buffer after using it.
19827 2011-06-21  Paul Eggert  <eggert@cs.ucla.edu>
19829         Port to Sun C.
19830         * composite.c (find_automatic_composition): Omit needless 'return 0;'
19831         that Sun C diagnosed.
19832         * fns.c (secure_hash): Fix pointer signedness issue.
19833         * intervals.c (static_offset_intervals): New function.
19834         (offset_intervals): Use it.
19836 2011-06-21  Leo Liu  <sdl.web@gmail.com>
19838         * deps.mk (fns.o):
19839         * makefile.w32-in ($(BLD)/fns.$(O)): Include sha256.h and
19840         sha512.h.
19842         * fns.c (secure_hash): Rename from crypto_hash_function and change
19843         the first arg to accept symbols.
19844         (Fsecure_hash): New primitive.
19845         (syms_of_fns): New symbols.
19847 2011-06-20  Deniz Dogan  <deniz@dogan.se>
19849         * process.c (Fset_process_buffer): Clarify return value in
19850         docstring.
19852 2011-06-18  Chong Yidong  <cyd@stupidchicken.com>
19854         * dispnew.c (add_window_display_history): Use BVAR.
19856         * xdisp.c (debug_method_add): Use BVAR.
19857         (check_window_end, dump_glyph_matrix, dump_glyph)
19858         (dump_glyph_row, dump_glyph_string): Convert arglist to ANSI C.
19860         * xfaces.c (check_lface_attrs, check_lface, dump_realized_face):
19861         Likewise.
19863         * xfns.c (Fx_create_frame, x_create_tip_frame): Delay image cache
19864         check till after the cache is created in init_frame_faces.
19866 2011-06-17  Stefan Monnier  <monnier@iro.umontreal.ca>
19868         * fns.c (Fsafe_length): Yet another int/Lisp_Object mixup.
19870 2011-06-16  Paul Eggert  <eggert@cs.ucla.edu>
19872         * lisp.h: Include <limits.h>, for INT_MAX, LONG_MAX, LLONG_MAX.
19873         Without this, prin1 mishandles Lisp_Misc_Save_Value printing on
19874         hosts with pre-C99 libraries, because pD is wrongly defined to "t".
19876         Improve buffer-overflow checking (Bug#8873).
19877         * fileio.c (Finsert_file_contents):
19878         * insdel.c (insert_from_buffer_1, replace_range, replace_range_2):
19879         Remove the old (too-loose) buffer overflow checks.
19880         They weren't needed, since make_gap checks for buffer overflow.
19881         * insdel.c (make_gap_larger): Catch buffer overflows that were missed.
19882         The old code merely checked for Emacs fixnum overflow, and relied
19883         on undefined (wraparound) behavior.  The new code avoids undefined
19884         behavior, and also checks for ptrdiff_t and/or size_t overflow.
19886         * editfns.c (Finsert_char): Don't dump core with very negative counts.
19887         Tune.  Don't use wider integers than needed.  Don't use alloca.
19888         Use a bigger 'string' buffer.  Rewrite to avoid 'n > 0' test.
19890         * insdel.c (replace_range): Fix buf overflow when insbytes < outgoing.
19892         * insdel.c, lisp.h (buffer_overflow): New function.
19893         (insert_from_buffer_1, replace_range, replace_range_2):
19894         * insdel.c (make_gap_larger):
19895         * editfns.c (Finsert_char):
19896         * fileio.c (Finsert_file_contents): Use it, to normalize wording.
19898         * buffer.h (BUF_BYTES_MAX): Cast to ptrdiff_t so that it's signed.
19900 2011-06-15  Paul Eggert  <eggert@cs.ucla.edu>
19902         Integer overflow and signedness fixes (Bug#8873, Bug#8828).
19904         * ccl.c (ASCENDING_ORDER): New macro, to work around GCC bug 43772.
19905         (GET_CCL_RANGE, IN_INT_RANGE): Use it.
19907         * fileio.c: Don't assume EMACS_INT fits in off_t.
19908         (emacs_lseek): New static function.
19909         (Finsert_file_contents, Fwrite_region): Use it.
19910         Use SEEK_SET, SEEK_CUR, SEEK_END as appropriate.
19912         * fns.c (Fload_average): Don't assume 100 * load average fits in int.
19914         * fns.c: Don't overflow int when computing a list length.
19915         * fns.c (QUIT_COUNT_HEURISTIC): New constant.
19916         (Flength, Fsafe_length): Use EMACS_INT, not int, to avoid unwanted
19917         truncation on 64-bit hosts.  Check for QUIT every
19918         QUIT_COUNT_HEURISTIC entries rather than every other entry; that's
19919         faster and is responsive enough.
19920         (Flength): Report an error instead of overflowing an integer.
19921         (Fsafe_length): Return a float if the value is not representable
19922         as a fixnum.  This shouldn't happen except in contrived situations.
19923         (Fnthcdr, Fsort): Don't assume list length fits in int.
19924         (Fcopy_sequence): Don't assume vector length fits in int.
19926         * alloc.c: Check that resized vectors' lengths fit in fixnums.
19927         (header_size, word_size): New constants.
19928         (allocate_vectorlike): Don't check size overflow here.
19929         (allocate_vector): Check it here instead, since this is the only
19930         caller of allocate_vectorlike that could cause overflow.
19931         Check that the new vector's length is representable as a fixnum.
19933         * fns.c (next_almost_prime): Don't return a multiple of 3 or 5.
19934         The previous code was bogus.  For example, next_almost_prime (32)
19935         returned 39, which is undesirable as it is a multiple of 3; and
19936         next_almost_prime (24) returned 25, which is a multiple of 5 so
19937         why was the code bothering to check for multiples of 7?
19939         * bytecode.c (exec_byte_code): Use ptrdiff_t, not int, for vector length.
19941         * eval.c, doprnt.c (SIZE_MAX): Remove; inttypes.h defines this now.
19943         Variadic C functions now count arguments with ptrdiff_t.
19944         This partly undoes my 2011-03-30 change, which replaced int with size_t.
19945         Back then I didn't know that the Emacs coding style prefers signed int.
19946         Also, in the meantime I found a few more instances where arguments
19947         were being counted with int, which may truncate counts on 64-bit
19948         machines, or EMACS_INT, which may be unnecessarily wide.
19949         * lisp.h (struct Lisp_Subr.function.aMANY)
19950         (DEFUN_ARGS_MANY, internal_condition_case_n, safe_call):
19951         Arg counts are now ptrdiff_t, not size_t.
19952         All variadic functions and their callers changed accordingly.
19953         (struct gcpro.nvars): Now size_t, not size_t.  All uses changed.
19954         * bytecode.c (exec_byte_code): Check maxdepth for overflow,
19955         to avoid potential buffer overrun.  Don't assume arg counts fit in 'int'.
19956         * callint.c (Fcall_interactively): Check arg count for overflow,
19957         to avoid potential buffer overrun.  Use signed char, not 'int',
19958         for 'varies' array, so that we needn't bother to check its size
19959         calculation for overflow.
19960         * editfns.c (Fformat): Use ptrdiff_t, not EMACS_INT, to count args.
19961         * eval.c (apply_lambda):
19962         * fns.c (Fmapconcat): Use XFASTINT, not XINT, to get args length.
19963         (struct textprop_rec.argnum): Now ptrdiff_t, not int.  All uses changed.
19964         (mapconcat): Use ptrdiff_t, not int and EMACS_INT, to count args.
19966         * callint.c (Fcall_interactively): Don't use index var as event count.
19968         * vm-limit.c (check_memory_limits): Fix incorrect extern function decls.
19969         * mem-limits.h (SIZE): Remove; no longer used.
19971         * xterm.c (x_alloc_nearest_color_1): Prefer int to long when int works.
19973         Remove unnecessary casts.
19974         * xterm.c (x_term_init):
19975         * xfns.c (x_set_border_pixel):
19976         * widget.c (create_frame_gcs): Remove casts to unsigned long etc.
19977         These aren't needed now that we assume ANSI C.
19979         * sound.c (Fplay_sound_internal): Remove cast to unsigned long.
19980         It's more likely to cause problems (due to unsigned overflow)
19981         than to cure them.
19983         * dired.c (Ffile_attributes): Don't use 32-bit hack on 64-bit hosts.
19985         * unexelf.c (unexec): Don't assume BSS addr fits in unsigned.
19987         * xterm.c (handle_one_xevent): Omit unnecessary casts to unsigned.
19989         * keyboard.c (modify_event_symbol): Don't limit alist len to UINT_MAX.
19991         * lisp.h (CHAR_TABLE_SET): Omit now-redundant test.
19993         * lread.c (Fload): Don't compare a possibly-garbage time_t value.
19995         GLYPH_CODE_FACE returns EMACS_INT, not int.
19996         * dispextern.h (merge_faces):
19997         * xfaces.c (merge_faces):
19998         * xdisp.c (get_next_display_element, next_element_from_display_vector):
19999         Don't assume EMACS_INT fits in int.
20001         * character.h (CHAR_VALID_P): Remove unused parameter.
20002         * fontset.c, lisp.h, xdisp.c: All uses changed.
20004         * editfns.c (Ftranslate_region_internal): Omit redundant test.
20006         * fns.c (concat): Minor tuning based on overflow analysis.
20007         This doesn't fix any bugs.  Use int to hold character, instead
20008         of constantly refetching from Emacs object.  Use XFASTINT, not
20009         XINT, for value known to be a character.  Don't bother comparing
20010         a single byte to 0400, as it's always less.
20012         * floatfns.c (Fexpt):
20013         * fileio.c (make_temp_name): Omit unnecessary cast to unsigned.
20015         * editfns.c (Ftranslate_region_internal): Use int, not EMACS_INT
20016         for characters.
20018         * doc.c (get_doc_string): Omit (unsigned)c that mishandled negatives.
20020         * data.c (Faset): If ARRAY is a string, check that NEWELT is a char.
20021         Without this fix, on a 64-bit host (aset S 0 4294967386) would
20022         incorrectly succeed when S was a string, because 4294967386 was
20023         truncated before it was used.
20025         * chartab.c (Fchar_table_range): Use CHARACTERP to check range.
20026         Otherwise, an out-of-range integer could cause undefined behavior
20027         on a 64-bit host.
20029         * composite.c: Use int, not EMACS_INT, for characters.
20030         (fill_gstring_body, composition_compute_stop_pos): Use int, not
20031         EMACS_INT, for values that are known to be in character range.
20032         This doesn't fix any bugs but is the usual style inside Emacs and
20033         may generate better code on 32-bit machines.
20035         Make sure a 64-bit char is never passed to ENCODE_CHAR.
20036         This is for reasons similar to the recent CHAR_STRING fix.
20037         * charset.c (Fencode_char): Check that character arg is actually
20038         a character.  Pass an int to ENCODE_CHAR.
20039         * charset.h (ENCODE_CHAR): Verify that the character argument is no
20040         wider than 'int', as a compile-time check to prevent future regressions
20041         in this area.
20043         * character.c (char_string): Remove unnecessary casts.
20045         Make sure a 64-bit char is never passed to CHAR_STRING.
20046         Otherwise, CHAR_STRING would do the wrong thing on a 64-bit platform,
20047         by silently ignoring the top 32 bits, allowing some values
20048         that were far too large to be valid characters.
20049         * character.h: Include <verify.h>.
20050         (CHAR_STRING, CHAR_STRING_ADVANCE): Verify that the character
20051         arguments are no wider than unsigned, as a compile-time check
20052         to prevent future regressions in this area.
20053         * data.c (Faset):
20054         * editfns.c (Fchar_to_string, general_insert_function, Finsert_char)
20055         (Fsubst_char_in_region):
20056         * fns.c (concat):
20057         * xdisp.c (decode_mode_spec_coding):
20058         Adjust to CHAR_STRING's new requirement.
20059         * editfns.c (Finsert_char, Fsubst_char_in_region):
20060         * fns.c (concat): Check that character args are actually
20061         characters.  Without this test, these functions did the wrong
20062         thing with wildly out-of-range values on 64-bit hosts.
20064         Remove incorrect casts to 'unsigned' that lose info on 64-bit hosts.
20065         These casts should not be needed on 32-bit hosts, either.
20066         * keyboard.c (read_char):
20067         * lread.c (Fload): Remove casts to unsigned.
20069         * lisp.h (UNSIGNED_CMP): New macro.
20070         This fixes comparison bugs on 64-bit hosts.
20071         (ASCII_CHAR_P): Use it.
20072         * casefiddle.c (casify_object):
20073         * character.h (ASCII_BYTE_P, CHAR_VALID_P)
20074         (SINGLE_BYTE_CHAR_P, CHAR_STRING):
20075         * composite.h (COMPOSITION_ENCODE_RULE_VALID):
20076         * dispextern.h (FACE_FROM_ID):
20077         * keyboard.c (read_char): Use UNSIGNED_CMP.
20079         * xmenu.c (dialog_selection_callback) [!USE_GTK]: Cast to intptr_t,
20080         not to EMACS_INT, to avoid GCC warning.
20082         * xfns.c (x_set_scroll_bar_default_width): Remove unused 'int' locals.
20084         * buffer.h (PTR_BYTE_POS, BUF_PTR_BYTE_POS): Remove harmful cast.
20085         The cast incorrectly truncated 64-bit byte offsets to 32 bits, and
20086         isn't needed on 32-bit machines.
20088         * buffer.c (Fgenerate_new_buffer_name):
20089         Use EMACS_INT for count, not int.
20090         (advance_to_char_boundary): Return EMACS_INT, not int.
20092         * data.c (Qcompiled_function): Now static.
20094         * window.c (window_body_lines): Now static.
20096         * image.c (gif_load): Rename local to avoid shadowing.
20098         * lisp.h (SAFE_ALLOCA_LISP): Check for integer overflow.
20099         (struct Lisp_Save_Value): Use ptrdiff_t, not int, for 'integer' member.
20100         * alloc.c (make_save_value): Integer argument is now of type
20101         ptrdiff_t, not int.
20102         (mark_object): Use ptrdiff_t, not int.
20103         * lisp.h (pD): New macro.
20104         * print.c (print_object): Use it.
20106         * alloc.c: Use EMACS_INT, not int, to count objects.
20107         (total_conses, total_markers, total_symbols, total_vector_size)
20108         (total_free_conses, total_free_markers, total_free_symbols)
20109         (total_free_floats, total_floats, total_free_intervals)
20110         (total_intervals, total_strings, total_free_strings):
20111         Now EMACS_INT, not int.  All uses changed.
20112         (Fgarbage_collect): Compute overall total using a double, so that
20113         integer overflow is less likely to be a problem.  Check for overflow
20114         when converting back to an integer.
20115         (n_interval_blocks, n_string_blocks, n_float_blocks, n_cons_blocks)
20116         (n_vectors, n_symbol_blocks, n_marker_blocks): Remove.
20117         These were 'int' variables that could overflow on 64-bit hosts;
20118         they were never used, so remove them instead of repairing them.
20119         (nzombies, ngcs, max_live, max_zombies): Now EMACS_INT, not 'int'.
20120         (inhibit_garbage_collection): Set gc_cons_threshold to max value.
20121         Previously, this ceilinged at INT_MAX, but that doesn't work on
20122         64-bit machines.
20123         (allocate_pseudovector): Don't use EMACS_INT when int would do.
20125         * alloc.c (Fmake_bool_vector): Don't assume vector size fits in int.
20126         (allocate_vectorlike): Check for ptrdiff_t overflow.
20127         (mark_vectorlike, mark_char_table, mark_object): Avoid EMACS_UINT
20128         when a (possibly-narrower) signed value would do just as well.
20129         We prefer using signed arithmetic, to avoid comparison confusion.
20131         * alloc.c: Catch some string size overflows that we were missing.
20132         (XMALLOC_OVERRUN_CHECK_SIZE) [!XMALLOC_OVERRUN_CHECK]: Define to 0,
20133         for convenience in STRING_BYTES_MAX.
20134         (STRING_BYTES_MAX): New macro, superseding the old one in lisp.h.
20135         The definition here is exact; the one in lisp.h was approximate.
20136         (allocate_string_data): Check for string overflow.  This catches
20137         some instances we weren't catching before.  Also, it catches
20138         size_t overflow on (unusual) hosts where SIZE_MAX <= min
20139         (PTRDIFF_MAX, MOST_POSITIVE_FIXNUM), e.g., when size_t is 32 bits
20140         and ptrdiff_t and EMACS_INT are both 64 bits.
20142         * character.c, coding.c, doprnt.c, editfns.c, eval.c:
20143         All uses of STRING_BYTES_MAX replaced by STRING_BYTES_BOUND.
20144         * lisp.h (STRING_BYTES_BOUND): Rename from STRING_BYTES_MAX.
20146         * character.c (string_escape_byte8): Fix nbytes/nchars typo.
20148         * alloc.c (Fmake_string): Check for out-of-range init.
20150 2011-06-15  Stefan Monnier  <monnier@iro.umontreal.ca>
20152         * eval.c (Fdefvaralias): Also mark the target as variable-special-p.
20154 2011-06-14  Jan Djärv  <jan.h.d@swipnet.se>
20156         * xfns.c (x_set_scroll_bar_default_width): Remove argument to
20157         xg_get_default_scrollbar_width.
20159         * gtkutil.c: Include emacsgtkfixed.h if HAVE_GTK3.
20160         (int_gtk_range_get_value): Move to the scroll bar part of the file.
20161         (style_changed_cb): Call update_theme_scrollbar_width and call
20162         x_set_scroll_bar_default_width and xg_frame_set_char_size for
20163         all frames (Bug#8505).
20164         (xg_create_frame_widgets): Call emacs_fixed_new if HAVE_GTK3 (Bug#8505).
20165         Call gtk_window_set_resizable if HAVE_GTK3.
20166         (x_wm_set_size_hint): Call emacs_fixed_set_min_size with min width
20167         and height if HAVE_GTK3 (Bug#8505).
20168         (scroll_bar_width_for_theme): New variable.
20169         (update_theme_scrollbar_width): New function.
20170         (xg_get_default_scrollbar_width): Move code to
20171         update_theme_scrollbar_width, just return scroll_bar_width_for_theme.
20172         (xg_initialize): Call update_theme_scrollbar_width.
20174         * gtkutil.h (xg_get_default_scrollbar_width): Remove argument.
20176         * emacsgtkfixed.c, emacsgtkfixed.h: New files.
20178 2011-06-12  Martin Rudalics  <rudalics@gmx.at>
20180         * frame.c (make_frame): Call other_buffer_safely instead of
20181         other_buffer.
20183         * window.c (temp_output_buffer_show): Call display_buffer with
20184         second argument Vtemp_buffer_show_specifiers and reset latter
20185         immediately after the call.
20186         (Vtemp_buffer_show_specifiers): New variable.
20187         (auto_window_vscroll_p, next_screen_context_lines)
20188         (Vscroll_preserve_screen_position): Remove leading asterisks from
20189         doc-strings.
20191 2011-06-12  Paul Eggert  <eggert@cs.ucla.edu>
20193         Fix minor problems found by GCC 4.6.0 static checking.
20194         * buffer.c (Qclone_number): Remove for now, as it's unused.
20195         (record_buffer, Funrecord_buffer): Rename local to avoid shadowing.
20196         (record_buffer): Remove unused local.
20197         * frame.c (other_visible_frames, frame_buffer_list): Now static.
20198         (set_frame_buffer_list): Remove; unused.
20199         * frame.h (other_visible_frames): Remove decl.
20200         * keyboard.h (menu_items_inuse): Declare only if USE_GTK || USE_MOTIF.
20201         * lisp.h (frame_buffer_list, set_frame_buffer_list): Remove decls.
20202         (add_gpm_wait_descriptor, delete_gpm_wait_descriptor): Declare only
20203         if HAVE_GPM.
20204         * menu.c (menu_items_inuse): Now static unless USE_GTK || USE_MOTIF.
20205         * process.c (add_gpm_wait_descriptor, delete_gpm_wait_descriptor):
20206         Define only if HAVE_GPM.
20207         * widget.c (EmacsFrameResize, emacsFrameClassRec): Now static.
20208         (update_hints_inhibit): Remove; never set.  All uses removed.
20209         * widgetprv.h (emacsFrameClassRec): Remove decl.
20210         * window.c (delete_deletable_window): Now returns void, since it
20211         wasn't returning anything.
20212         (compare_window_configurations): Remove unused locals.
20213         * xfns.c (x_set_scroll_bar_default_width): Remove unused locals.
20214         * xmenu.c (x_menu_set_in_use): Define only if USE_GTK || USE_MOTIF.
20215         (dialog_selection_callback) [!USE_GTK]: Prefer intptr_t for integers
20216         the same widths as pointers.  This follows up on the 2011-05-06 patch.
20217         * xterm.c (x_alloc_lighter_color_for_widget): Define only if USE_LUCID.
20218         * xterm.h: Likewise.
20219         (x_menu_set_in_use): Declare only if USE_GTK || USE_MOTIF.
20221 2011-06-12  Juanma Barranquero  <lekktu@gmail.com>
20223         * makefile.w32-in: Update dependencies.
20224         (LISP_H): Add lib/intprops.h.
20226 2011-06-11  Chong Yidong  <cyd@stupidchicken.com>
20228         * image.c (gif_load): Add animation frame delay to the metadata.
20229         (syms_of_image): Use DEFSYM.  New symbol `delay'.
20231 2011-06-11  Martin Rudalics  <rudalics@gmx.at>
20233         * window.c (delete_deletable_window): Re-add.
20234         (Fset_window_configuration): Rewrite to handle dead buffers and
20235         consequently deletable windows.
20236         (window_tree, Fwindow_tree): Remove.  Supply functionality in
20237         window.el.
20238         (compare_window_configurations): Simplify code.
20240 2011-06-11  Andreas Schwab  <schwab@linux-m68k.org>
20242         * image.c (imagemagick_load_image): Fix type mismatch.
20243         (Fimagemagick_types): Likewise.
20245         * window.h (replace_buffer_in_windows): Declare.
20247 2011-06-11  Martin Rudalics  <rudalics@gmx.at>
20249         * buffer.c: New Lisp objects Qbuffer_list_update_hook and
20250         Qclone_number.  Remove external declaration of Qdelete_window.
20251         (Fbuffer_list): Rewrite doc-string.  Minor restructuring of
20252         code.
20253         (Fget_buffer_create, Fmake_indirect_buffer, Frename_buffer):
20254         Run Qbuffer_list_update_hook if allowed.
20255         (Fother_buffer): Rewrite doc-string.  Major rewrite for new
20256         buffer list implementation.
20257         (other_buffer_safely): New function.
20258         (Fkill_buffer): Replace call to replace_buffer_in_all_windows by
20259         calls to replace_buffer_in_windows and
20260         replace_buffer_in_windows_safely.  Run Qbuffer_list_update_hook
20261         if allowed.
20262         (record_buffer): Inhibit quitting and rewrite using quittable
20263         functions.  Run Qbuffer_list_update_hook if allowed.
20264         (Frecord_buffer, Funrecord_buffer): New functions.
20265         (switch_to_buffer_1, Fswitch_to_buffer): Remove.
20266         Move switch-to-buffer to window.el.
20267         (bury-buffer): Move to window.el.
20268         (Vbuffer_list_update_hook): New variable.
20270         * lisp.h (other_buffer_safely): Add prototype in buffer.c
20271         section.
20273         * window.h (resize_frame_windows): Move up in code.
20274         (Fwindow_frame): Remove EXFUN.
20275         (replace_buffer_in_all_windows): Remove prototype.
20276         (replace_buffer_in_windows_safely): Add prototype.
20278         * window.c: Declare Qdelete_window static again.  Move down
20279         declaration of select_count.
20280         (Fnext_window, Fprevious_window): Rewrite doc-strings.
20281         (Fother_window): Move to window.el.
20282         (window_loop): Remove DELETE_BUFFER_WINDOWS and UNSHOW_BUFFER
20283         cases.  Add REPLACE_BUFFER_IN_WINDOWS_SAFELY case.
20284         (Fdelete_windows_on, Freplace_buffer_in_windows): Move to
20285         window.el.
20286         (replace_buffer_in_windows): Implement by calling
20287         Qreplace_buffer_in_windows.
20288         (replace_buffer_in_all_windows): Remove with some functionality
20289         moved into replace_buffer_in_windows_safely.
20290         (replace_buffer_in_windows_safely): New function.
20291         (select_window_norecord, select_frame_norecord): Move in front
20292         of run_window_configuration_change_hook.  Remove now obsolete
20293         declarations.
20294         (Fset_window_buffer): Rewrite doc-string.
20295         Call Qrecord_window_buffer.
20296         (keys_of_window): Move binding for other-window to window.el.
20298 2011-06-11  Chong Yidong  <cyd@stupidchicken.com>
20300         * dispextern.h (struct image): Replace data member, whose int_val
20301         and ptr_val fields were not used by anything, with a single
20302         lisp_val object.
20304         * image.c (Fimage_metadata, make_image, mark_image, tiff_load)
20305         (gif_clear_image, gif_load, imagemagick_load_image)
20306         (gs_clear_image, gs_load): Callers changed.
20308 2011-06-10  Paul Eggert  <eggert@cs.ucla.edu>
20310         * buffer.h: Include <time.h>, for time_t.
20311         Needed to build on FreeBSD 8.2.  Problem reported by Herbert J. Skuhra.
20313         Fix minor problems found by static checking.
20315         * image.c (PixelGetMagickColor): Declare if ImageMagick headers don't.
20317         Make identifiers static if they are not used in other modules.
20318         * data.c (Qcompiled_function, Qframe, Qvector):
20319         * image.c (QimageMagick, Qsvg):
20320         * minibuf.c (Qmetadata):
20321         * window.c (resize_window_check, resize_root_window): Now static.
20322         * window.h (resize_window_check, resize_root_window): Remove decls.
20324         * window.c (window_deletion_count, delete_deletable_window):
20325         Remove; unused.
20326         (window_body_lines): Now static.
20327         (Fdelete_other_windows_internal): Mark vars as initialized.
20328         Make sure 'resize_failed' is initialized.
20329         (run_window_configuration_change_hook): Rename local to avoid shadowing.
20330         (resize_window_apply): Remove unused local.
20331         * window.h (delete_deletable_window): Remove decl.
20333         * image.c (gif_load, svg_load_image): Rename locals to avoid shadowing.
20334         (imagemagick_load_image): Fix pointer signedness problem by changing
20335         last arg from unsigned char * to char *.  All uses changed.
20336         Also, fix a local for similar reasons.
20337         Remove unused locals.  Remove locals to avoid shadowing.
20338         (fn_rsvg_handle_free): Remove; unused.
20339         (svg_load, svg_load_image): Fix pointer signedness problem.
20340         (imagemagick_load_image): Don't use garbage pointer image_wand.
20342         * ftfont.c (ftfont_get_metrics, ftfont_drive_otf): Remove unused locals.
20344 2011-06-10  Chong Yidong  <cyd@stupidchicken.com>
20346         * image.c (gif_load): Fix omitted cast error introduced by
20347         2011-06-06 change.
20349 2011-06-10  Martin Rudalics  <rudalics@gmx.at>
20351         * window.h (resize_proportionally, orig_total_lines)
20352         (orig_top_line): Remove from window structure.
20353         (set_window_height, set_window_width, change_window_heights)
20354         (Fdelete_window): Remove prototypes.
20355         (resize_frame_windows): Remove duplicate declaration.
20357 2011-06-10  Eli Zaretskii  <eliz@gnu.org>
20359         * window.h (resize_frame_windows, resize_window_check)
20360         (delete_deletable_window, resize_root_window)
20361         (resize_frame_windows): Declare prototypes.
20363         * window.c (resize_window_apply): Make definition be "static" to
20364         match the prototype.
20366 2011-06-10  Martin Rudalics  <rudalics@gmx.at>
20368         * window.c: Remove declarations of Qwindow_size_fixed,
20369         window_min_size_1, window_min_size_2, window_min_size,
20370         size_window, window_fixed_size_p, enlarge_window, delete_window.
20371         Remove static from declaration of Qdelete_window, it's
20372         temporarily needed by Fbury_buffer.
20373         (replace_window): Don't assign orig_top_line and
20374         orig_total_lines.
20375         (Fdelete_window, delete_window): Remove.  Window deletion is
20376         handled by window.el.
20377         (window_loop): Remove DELETE_OTHER_WINDOWS case.
20378         Replace Fdelete_window calls with calls to Qdelete_window.
20379         (Fdelete_other_windows): Remove.  Deleting other windows is
20380         handled by window.el.
20381         (window_fixed_size_p): Remove.  Fixed-sizeness of windows is
20382         handled in window.el.
20383         (window_min_size_2, window_min_size_1, window_min_size): Remove.
20384         Window minimum sizes are handled in window.el.
20385         (shrink_windows, size_window, set_window_height)
20386         (set_window_width, change_window_heights, window_height)
20387         (window_width, CURBEG, CURSIZE, enlarge_window)
20388         (adjust_window_trailing_edge, Fadjust_window_trailing_edge)
20389         (Fenlarge_window, Fshrink_window): Remove.  Window resizing is
20390         handled in window.el.
20391         (make_dummy_parent): Rename to make_parent_window and give it a
20392         second argument horflag.
20393         (make_window): Don't set resize_proportionally any more.
20394         (Fsplit_window): Remove.  Windows are split in window.el.
20395         (save_restore_action, save_restore_orig_size)
20396         (shrink_window_lowest_first, save_restore_orig_size): Remove.
20397         Resize mini windows in window.el.
20398         (grow_mini_window, shrink_mini_window): Implement by calling
20399         Qresize_root_window_vertically, resize_window_check and
20400         resize_window_apply.
20401         (saved_window, Fset_window_configuration, save_window_save):
20402         Do not handle orig_top_line, orig_total_lines, and
20403         resize_proportionally.
20404         (window_min_height, window_min_width): Move to window.el.
20405         (keys_of_window): Move bindings for delete-other-windows,
20406         split-window, delete-window and enlarge-window to window.el.
20408         * buffer.c: Temporarily extern Qdelete_window.
20409         (Fbury_buffer): Temporarily call Qdelete_window instead of
20410         Fdelete_window (Fbury_buffer will move to window.el soon).
20412         * frame.c (set_menu_bar_lines_1): Remove code handling
20413         orig_top_line and orig_total_lines.
20415         * dispnew.c (adjust_frame_glyphs_initially): Don't use
20416         set_window_height but set heights directly.
20417         (change_frame_size_1): Use resize_frame_windows.
20419         * xdisp.c (init_xdisp): Don't use set_window_height but set
20420         heights directly.
20422         * xfns.c (x_set_menu_bar_lines, x_set_tool_bar_lines):
20423         Use resize_frame_windows instead of change_window_heights and run
20424         run_window_configuration_change_hook.
20426         * w32fns.c (x_set_tool_bar_lines): Use resize_frame_windows
20427         instead of change_window_heights and run
20428         run_window_configuration_change_hook.
20430 2011-06-09  Martin Rudalics  <rudalics@gmx.at>
20432         * window.c (replace_window): Rename second argument REPLACEMENT to
20433         NEW.  New third argument SETFLAG.  Rewrite.
20434         (delete_window, make_dummy_parent): Call replace_window with
20435         third argument 1.
20436         (window_list_1): Move down in code.
20437         (run_window_configuration_change_hook): Move set_buffer part
20438         before select_frame_norecord part in order to unwind correctly.
20439         Rename count1 to count.
20440         (recombine_windows, delete_deletable_window, resize_root_window)
20441         (Fdelete_other_windows_internal)
20442         (Frun_window_configuration_change_hook, make_parent_window)
20443         (resize_window_check, resize_window_apply, Fresize_window_apply)
20444         (resize_frame_windows, Fsplit_window_internal)
20445         (Fdelete_window_internal, Fresize_mini_window_internal):
20446         New functions.
20447         (syms_of_window): New variables Vwindow_splits and Vwindow_nest.
20449 2011-06-08  Martin Rudalics  <rudalics@gmx.at>
20451         * window.h (window): Add some new members to window structure -
20452         normal_lines, normal_cols, new_total, new_normal, clone_number,
20453         splits, nest, prev_buffers, next_buffers.
20454         (WINDOW_TOTAL_SIZE): Move here from window.c.
20455         (MIN_SAFE_WINDOW_WIDTH, MIN_SAFE_WINDOW_HEIGHT): Define here.
20457         * window.c (Fwindow_height, Fwindow_width, Fwindow_full_width_p):
20458         Remove.
20459         (make_dummy_parent): Set new members of windows structure.
20460         (make_window): Move down in code.  Handle new members of window
20461         structure.
20462         (Fwindow_clone_number, Fwindow_splits, Fset_window_splits)
20463         (Fwindow_nest, Fset_window_nest, Fwindow_new_total)
20464         (Fwindow_normal_size, Fwindow_new_normal, Fwindow_prev_buffers)
20465         (Fset_window_prev_buffers, Fwindow_next_buffers)
20466         (Fset_window_next_buffers, Fset_window_clone_number):
20467         New functions.
20468         (Fwindow_hscroll, Fwindow_at, Fwindow_point, Fwindow_start)
20469         (Fwindow_end, Fwindow_line_height, Fset_window_dedicated_p):
20470         Doc-string fixes.
20471         (Fwindow_parameters, Fwindow_parameter, Fset_window_parameter):
20472         Argument WINDOW can be now internal window too.
20473         (Fwindow_use_time): Move up in code.
20474         (Fget_buffer_window): Rename argument FRAME to ALL-FRAMES.
20475         Rewrite doc-string.
20476         (Fset_window_configuration, saved_window)
20477         (Fcurrent_window_configuration, save_window_save): Handle new
20478         members of window structure.
20479         (WINDOW_TOTAL_SIZE, MIN_SAFE_WINDOW_WIDTH)
20480         (MIN_SAFE_WINDOW_HEIGHT): Move to window.h.
20481         (syms_of_window): New Lisp objects Qrecord_window_buffer,
20482         Qwindow_deletable_p, Qdelete_window, Qreplace_buffer_in_windows,
20483         Qget_mru_window, Qresize_root_window,
20484         Qresize_root_window_vertically, Qsafe, Qabove, Qbelow,
20485         Qauto_buffer_name; staticpro them.
20487 2011-06-07  Martin Rudalics  <rudalics@gmx.at>
20489         * window.c (Fwindow_total_size, Fwindow_left_column)
20490         (Fwindow_top_line, window_body_lines, Fwindow_body_size)
20491         (Fwindow_list_1): New functions.
20492         (window_box_text_cols): Replace with window_body_cols.
20493         (Fwindow_width, Fscroll_left, Fscroll_right):
20494         Use window_body_cols instead of window_box_text_cols.
20495         (delete_window, Fset_window_configuration):
20496         Call delete_all_subwindows with window as argument.
20497         (delete_all_subwindows): Take a window as argument and not a
20498         structure.  Rewrite.
20499         (window_loop): Remove handling of GET_LRU_WINDOW and
20500         GET_LARGEST_WINDOW.
20501         (Fget_lru_window, Fget_largest_window): Move to window.el.
20503         * window.h: Extern window_body_cols instead of
20504         window_box_text_cols.  delete_all_subwindows now takes a
20505         Lisp_Object as argument.
20507         * indent.c (compute_motion, Fcompute_motion):
20508         Use window_body_cols instead of window_box_text_cols.
20510         * frame.c (delete_frame): Call delete_all_subwindows with root
20511         window as argument.
20513 2011-06-07  Daniel Colascione  <dan.colascione@gmail.com>
20515         * fns.c (Fputhash): Document return value.
20517 2011-06-06  Chong Yidong  <cyd@stupidchicken.com>
20519         * image.c (gif_load): Implement gif89a spec "no disposal" method.
20521 2011-06-06  Paul Eggert  <eggert@cs.ucla.edu>
20523         Cons<->int and similar integer overflow fixes (Bug#8794).
20525         Check for overflow when converting integer to cons and back.
20526         * charset.c (Fdefine_charset_internal, Fdecode_char):
20527         Use cons_to_unsigned to catch overflow.
20528         (Fencode_char): Use INTEGER_TO_CONS.
20529         * composite.h (LGLYPH_CODE): Use cons_to_unsigned.
20530         (LGLYPH_SET_CODE): Use INTEGER_TO_CONS.
20531         * data.c (long_to_cons, cons_to_long): Remove.
20532         (cons_to_unsigned, cons_to_signed): New functions.
20533         These signal an error for invalid or out-of-range values.
20534         * dired.c (Ffile_attributes): Use INTEGER_TO_CONS.
20535         * fileio.c (Fset_visited_file_modtime): Use CONS_TO_INTEGER.
20536         * font.c (Ffont_variation_glyphs):
20537         * fontset.c (Finternal_char_font): Use INTEGER_TO_CONS.
20538         * lisp.h: Include <intprops.h>.
20539         (INTEGER_TO_CONS, CONS_TO_INTEGER): New macros.
20540         (cons_to_signed, cons_to_unsigned): New decls.
20541         (long_to_cons, cons_to_long): Remove decls.
20542         * undo.c (record_first_change): Use INTEGER_TO_CONS.
20543         (Fprimitive_undo): Use CONS_TO_INTEGER.
20544         * xfns.c (Fx_window_property): Likewise.
20545         * xselect.c: Include <limits.h>.
20546         (x_own_selection, selection_data_to_lisp_data):
20547         Use INTEGER_TO_CONS.
20548         (x_handle_selection_request, x_handle_selection_clear)
20549         (x_get_foreign_selection, Fx_disown_selection_internal)
20550         (Fx_get_atom_name, x_send_client_event): Use CONS_TO_INTEGER.
20551         (lisp_data_to_selection_data): Use cons_to_unsigned.
20552         (x_fill_property_data): Use cons_to_signed.
20553         Report values out of range.
20555         Check for buffer and string overflow more precisely.
20556         * buffer.h (BUF_BYTES_MAX): New macro.
20557         * lisp.h (STRING_BYTES_MAX): New macro.
20558         * alloc.c (Fmake_string):
20559         * character.c (string_escape_byte8):
20560         * coding.c (coding_alloc_by_realloc):
20561         * doprnt.c (doprnt):
20562         * editfns.c (Fformat):
20563         * eval.c (verror):
20564         Use STRING_BYTES_MAX, not MOST_POSITIVE_FIXNUM,
20565         since they may not be the same number.
20566         * editfns.c (Finsert_char):
20567         * fileio.c (Finsert_file_contents):
20568         Likewise for BUF_BYTES_MAX.
20570         * image.c: Use ptrdiff_t, not int, for sizes.
20571         (slurp_file): Switch from int to ptrdiff_t.
20572         All uses changed.
20573         (slurp_file): Check that file size fits in both size_t (for
20574         malloc) and ptrdiff_t (for sanity and safety).
20576         * fileio.c (Fverify_visited_file_modtime): Avoid time overflow
20577         if b->modtime has its maximal value.
20579         * dired.c (Ffile_attributes): Don't assume EMACS_INT has >32 bits.
20581         Don't assume time_t can fit into int.
20582         * buffer.h (struct buffer.modtime): Now time_t, not int.
20583         * fileio.c (Fvisited_file_modtime): No need for time_t cast now.
20584         * undo.c (Fprimitive_undo): Use time_t, not int, for time_t value.
20586         Minor fixes for signed vs unsigned integers.
20587         * character.h (MAYBE_UNIFY_CHAR):
20588         * charset.c (maybe_unify_char):
20589         * keyboard.c (read_char, reorder_modifiers):
20590         XINT -> XFASTINT, since the integer must be nonnegative.
20591         * ftfont.c (ftfont_spec_pattern):
20592         * keymap.c (access_keymap, silly_event_symbol_error):
20593         XUINT -> XFASTINT, since the integer must be nonnegative.
20594         (Fsingle_key_description, preferred_sequence_p): XUINT -> XINT,
20595         since it makes no difference and we prefer signed.
20596         * keyboard.c (record_char): Use XUINT when all the neighbors do.
20597         (access_keymap): NATNUMP -> INTEGERP, since the integer must be
20598         nonnegative.
20600 2011-06-06  Stefan Monnier  <monnier@iro.umontreal.ca>
20602         * window.h (Fwindow_frame): Declare.
20604 2011-06-06  Paul Eggert  <eggert@cs.ucla.edu>
20606         * alloc.c: Simplify handling of large-request failures (Bug#8800).
20607         (SPARE_MEMORY): Always define.
20608         (LARGE_REQUEST): Remove.
20609         (memory_full): Use SPARE_MEMORY rather than LARGE_REQUEST.
20611 2011-06-06  Martin Rudalics  <rudalics@gmx.at>
20613         * lisp.h: Move EXFUNS for Fframe_root_window,
20614         Fframe_first_window and Fset_frame_selected_window to window.h.
20616         * window.h: Move EXFUNS for Fframe_root_window,
20617         Fframe_first_window and Fset_frame_selected_window here from
20618         lisp.h.
20620         * frame.c (Fwindow_frame, Fframe_first_window)
20621         (Fframe_root_window, Fframe_selected_window)
20622         (Fset_frame_selected_window): Move to window.c.
20623         (Factive_minibuffer_window): Move to minibuf.c.
20624         (Fother_visible_frames_p): New function.
20626         * minibuf.c (Factive_minibuffer_window): Move here from frame.c.
20628         * window.c (decode_window, decode_any_window): Move up in code.
20629         (Fwindowp, Fwindow_live_p): Rewrite doc-strings.
20630         (inhibit_frame_unsplittable): Remove unused variable.
20631         (Fwindow_buffer): Move up and rewrite doc-string.
20632         (Fwindow_parent, Fwindow_vchild, Fwindow_hchild, Fwindow_next)
20633         (Fwindow_prev): New functions.
20634         (Fwindow_frame): Move here from frame.c.  Accept any window as
20635         argument.
20636         (Fframe_root_window, Fframe_first_window)
20637         (Fframe_selected_window): Move here from frame.c.  Accept frame
20638         or arbitrary window as argument.  Update doc-strings.
20639         (Fminibuffer_window): Move up in code.
20640         (Fwindow_minibuffer_p): Move up in code and simplify.
20641         (Fset_frame_selected_window): Move here from frame.c.
20642         Marginal rewrite.
20643         (Fselected_window, select_window, Fselect_window): Move up in
20644         code.  Minor doc-string fixes.
20646 2011-06-06  Paul Eggert  <eggert@cs.ucla.edu>
20648         * alloc.c (memory_full) [SYSTEM_MALLOC]: Port to MacOS (Bug#8800).
20649         Do not assume that spare memory exists; that assumption is valid
20650         only if SYSTEM_MALLOC.
20651         (LARGE_REQUEST): New macro, so that the issue of large requests
20652         is separated from the issue of spare memory.
20654 2011-06-05  Andreas Schwab  <schwab@linux-m68k.org>
20656         * editfns.c (Fformat): Correctly handle zero flag with hexadecimal
20657         format.  (Bug#8806)
20659         * gtkutil.c (xg_get_default_scrollbar_width): Avoid warning.
20661         * xfns.c (x_set_scroll_bar_default_width): Move declarations
20662         before statements.
20664 2011-06-05  Jan Djärv  <jan.h.d@swipnet.se>
20666         * gtkutil.c (xg_get_default_scrollbar_width): New function.
20668         * gtkutil.h: Declare xg_get_default_scrollbar_width.
20670         * xfns.c (x_set_scroll_bar_default_width): If USE_GTK, get
20671         min width by calling x_set_scroll_bar_default_width (Bug#8505).
20673 2011-06-05  Juanma Barranquero  <lekktu@gmail.com>
20675         * xdisp.c (single_display_spec_intangible_p): Remove declaration.
20677 2011-06-04  Chong Yidong  <cyd@stupidchicken.com>
20679         * xselect.c (x_clipboard_manager_save): Remove redundant arg.
20680         (x_clipboard_manager_save): Add return value.
20681         (x_clipboard_manager_error_1, x_clipboard_manager_error_2):
20682         New error handlers.
20683         (x_clipboard_manager_save_frame, x_clipboard_manager_save_all):
20684         Obey Vx_select_enable_clipboard_manager.  Catch errors in
20685         x_clipboard_manager_save (Bug#8779).
20686         (Vx_select_enable_clipboard_manager): New variable.
20687         (x_get_foreign_selection): Reduce scope of x_catch_errors (Bug#8790).
20689 2011-06-04  Dan Nicolaescu  <dann@ics.uci.edu>
20691         * emacs.c (main): Warn when starting a GTK emacs in daemon mode.
20693 2011-06-04  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
20695         * fringe.c (update_window_fringes): Don't update overlay arrow bitmap
20696         in the current matrix if keep_current_p is non-zero.
20698 2011-06-04  Eli Zaretskii  <eliz@gnu.org>
20700         * bidi.c (bidi_level_of_next_char): Fix last change.
20702 2011-06-03  Eli Zaretskii  <eliz@gnu.org>
20704         Support bidi reordering of text covered by display properties.
20706         * bidi.c (bidi_copy_it): Use offsetof instead of emulating it.
20707         (bidi_fetch_char, bidi_fetch_char_advance): New functions.
20708         (bidi_cache_search, bidi_cache_iterator_state)
20709         (bidi_paragraph_init, bidi_resolve_explicit, bidi_resolve_weak)
20710         (bidi_level_of_next_char, bidi_move_to_visually_next):
20711         Support character positions inside a run of characters covered by a
20712         display string.
20713         (bidi_paragraph_init, bidi_resolve_explicit_1)
20714         (bidi_level_of_next_char): Call bidi_fetch_char and
20715         bidi_fetch_char_advance instead of FETCH_CHAR and
20716         FETCH_CHAR_ADVANCE.
20717         (bidi_init_it): Initialize new members.
20718         (LRE_CHAR, RLE_CHAR, PDF_CHAR, LRO_CHAR, RLO_CHAR): Remove macro
20719         definitions.
20720         (bidi_explicit_dir_char): Lookup character type in bidi_type_table,
20721         instead of using explicit *_CHAR codes.
20722         (bidi_resolve_explicit, bidi_resolve_weak):
20723         Use FETCH_MULTIBYTE_CHAR instead of FETCH_CHAR, as reordering of
20724         bidirectional text is supported only in multibyte buffers.
20725         (bidi_init_it): Accept additional argument FRAME_WINDOW_P and use
20726         it to initialize the frame_window_p member of struct bidi_it.
20727         (bidi_cache_iterator_state, bidi_resolve_explicit_1)
20728         (bidi_resolve_explicit, bidi_resolve_weak)
20729         (bidi_level_of_next_char, bidi_move_to_visually_next): Abort if
20730         bidi_it->nchars is non-positive.
20731         (bidi_level_of_next_char): Don't try to lookup the cache for the
20732         next/previous character if nothing is cached there yet, or if we
20733         were just reseat()'ed to a new position.
20735         * xdisp.c (set_cursor_from_row): Set start and stop points
20736         according to the row's direction when priming the loop that looks
20737         for the glyph on which to display cursor.
20738         (single_display_spec_intangible_p): Function deleted.
20739         (display_prop_intangible_p): Reimplement to call
20740         handle_display_spec instead of single_display_spec_intangible_p.
20741         Accept 3 additional arguments needed by handle_display_spec.
20742         This fixes incorrect cursor motion across display property with complex
20743         values: lists, `(when COND...)' forms, etc.
20744         (single_display_spec_string_p): Support property values that are
20745         lists with the argument STRING its top-level element.
20746         (display_prop_string_p): Fix the condition for processing a
20747         property that is a list to be consistent with handle_display_spec.
20748         (handle_display_spec): New function, refactored from the
20749         last portion of handle_display_prop.
20750         (compute_display_string_pos): Accept additional argument
20751         FRAME_WINDOW_P.  Call handle_display_spec to determine whether the
20752         value of a `display' property is a "replacing spec".
20753         (handle_single_display_spec): Accept 2 additional arguments BUFPOS
20754         and FRAME_WINDOW_P.  If IT is NULL, don't set up the iterator from
20755         the display property, but just return a value indicating whether
20756         the display property will replace the characters it covers.
20757         (Fcurrent_bidi_paragraph_direction): Initialize the nchars and
20758         frame_window_p members of struct bidi_it.
20759         (compute_display_string_pos, compute_display_string_end):
20760         New functions.
20761         (push_it): Accept second argument POSITION, where pop_it should
20762         jump to continue iteration.
20763         (reseat_1): Initialize bidi_it.disp_pos.
20765         * keyboard.c (adjust_point_for_property): Adjust the call to
20766         display_prop_intangible_p to its new signature.
20768         * dispextern.h (struct bidi_it): New member frame_window_p.
20769         (bidi_init_it): Update prototypes.
20770         (display_prop_intangible_p): Update prototype.
20771         (compute_display_string_pos, compute_display_string_end):
20772         Declare prototypes.
20773         (struct bidi_it): New members nchars and disp_pos.  ch_len is now
20774         EMACS_INT.
20776 2011-06-02  Paul Eggert  <eggert@cs.ucla.edu>
20778         Malloc failure behavior now depends on size of allocation.
20779         * alloc.c (buffer_memory_full, memory_full): New arg NBYTES.
20780         * lisp.h: Change signatures accordingly.
20781         * alloc.c, buffer.c, editfns.c, menu.c, minibuf.c, xterm.c:
20782         All callers changed.  (Bug#8762)
20784         * gnutls.c: Use Emacs's memory allocators.
20785         Without this change, the gnutls library would invoke malloc etc.
20786         directly, which causes problems on non-SYNC_INPUT hosts, and which
20787         runs afoul of improving memory_full behavior.  (Bug#8761)
20788         (fn_gnutls_global_set_mem_functions): New macro or function pointer.
20789         (emacs_gnutls_global_init): Use it to specify xmalloc, xrealloc,
20790         xfree instead of the default malloc, realloc, free.
20791         (Fgnutls_boot): No need to check for memory allocation failure,
20792         since xmalloc does that for us.
20794         Remove arbitrary limit of 2**31 entries in hash tables.  (Bug#8771)
20795         * category.c (hash_get_category_set):
20796         * ccl.c (ccl_driver):
20797         * charset.c (Fdefine_charset_internal):
20798         * charset.h (struct charset.hash_index):
20799         * composite.c (get_composition_id, gstring_lookup_cache)
20800         (composition_gstring_put_cache):
20801         * composite.h (struct composition.hash_index):
20802         * dispextern.h (struct image.hash):
20803         * fns.c (next_almost_prime, larger_vector, cmpfn_eql)
20804         (cmpfn_equal, cmpfn_user_defined, hashfn_eq, hashfn_eql)
20805         (hashfn_equal, hashfn_user_defined, make_hash_table)
20806         (maybe_resize_hash_table, hash_lookup, hash_put)
20807         (hash_remove_from_table, hash_clear, sweep_weak_table, SXHASH_COMBINE)
20808         (sxhash_string, sxhash_list, sxhash_vector, sxhash_bool_vector)
20809         (Fsxhash, Fgethash, Fputhash, Fmaphash):
20810         * image.c (make_image, search_image_cache, lookup_image)
20811         (xpm_put_color_table_h):
20812         * lisp.h (struct Lisp_Hash_Table):
20813         * minibuf.c (Ftry_completion, Fall_completions, Ftest_completion):
20814         * print.c (print): Use 'EMACS_UINT' and 'EMACS_INT'
20815         for hashes and hash indexes, instead of 'unsigned' and 'int'.
20816         * alloc.c (allocate_vectorlike):
20817         Check for overflow in vector size calculations.
20818         * ccl.c (ccl_driver):
20819         Check for overflow when converting EMACS_INT to int.
20820         * fns.c, image.c: Remove unnecessary static decls that would otherwise
20821         need to be updated by these changes.
20822         * fns.c (make_hash_table, maybe_resize_hash_table):
20823         Check for integer overflow with large hash tables.
20824         (make_hash_table, maybe_resize_hash_table, Fmake_hash_table):
20825         Prefer the faster XFLOAT_DATA to XFLOATINT where either will do.
20826         (SXHASH_REDUCE): New macro.
20827         (sxhash_string, sxhash_list, sxhash_vector, sxhash_bool_vector):
20828         Use it instead of discarding useful hash info with large hash values.
20829         (sxhash_float): New function.
20830         (sxhash): Use it.  No more need for "& INTMASK" due to above changes.
20831         * lisp.h (FIXNUM_BITS): New macro, useful for SXHASH_REDUCE etc.
20832         (MOST_NEGATIVE_FIXNUM, MOST_POSITIVE_FIXNUM, INTMASK):
20833         Rewrite to use FIXNUM_BITS, as this simplifies things.
20834         (next_almost_prime, larger_vector, sxhash, hash_lookup, hash_put):
20835         Adjust signatures to match updated version of code.
20836         (consing_since_gc): Now EMACS_INT, since a single hash table can
20837         use more than INT_MAX bytes.
20839 2011-06-01  Dan Nicolaescu  <dann@ics.uci.edu>
20841         Make it possible to build with GCC-4.6+ -O2 -flto.
20843         * emacs.c (__malloc_initialize_hook): Mark as EXTERNALLY_VISIBLE.
20845 2011-06-01  Stefan Monnier  <monnier@iro.umontreal.ca>
20847         * minibuf.c (get_minibuffer, read_minibuf_unwind):
20848         Call minibuffer-inactive-mode.
20850 2011-05-31  Juanma Barranquero  <lekktu@gmail.com>
20852         * makefile.w32-in ($(BLD)/data.$(O), $(BLD)/editfns.$(O)):
20853         Update dependencies.
20855 2011-05-31  Dan Nicolaescu  <dann@ics.uci.edu>
20857         * data.c (init_data): Remove code for UTS, this system is not
20858         supported anymore.
20860 2011-05-31  Dan Nicolaescu  <dann@ics.uci.edu>
20862         Don't force ./temacs to start in terminal mode.
20864         * frame.c (make_initial_frame): Initialize faces in all cases, not
20865         only when CANNOT_DUMP is defined.
20866         * dispnew.c (init_display): Remove CANNOT_DUMP condition.
20868 2011-05-31  Dan Nicolaescu  <dann@ics.uci.edu>
20870         * dispnew.c (add_window_display_history): Use const for the string
20871         pointer.  Remove declaration, not needed.
20873 2011-05-31  Paul Eggert  <eggert@cs.ucla.edu>
20875         Use 'inline', not 'INLINE'.
20876         <http://lists.gnu.org/archive/html/emacs-devel/2011-05/msg00914.html>
20877         * alloc.c, fontset.c (INLINE): Remove.
20878         * alloc.c, bidi.c, charset.c, coding.c, dispnew.c, fns.c, image.c:
20879         * intervals.c, keyboard.c, process.c, syntax.c, textprop.c, w32term.c:
20880         * xdisp.c, xfaces.c, xterm.c: Replace all uses of INLINE with inline.
20881         * gmalloc.c (register_heapinfo): Use inline unconditionally.
20882         * lisp.h (LISP_MAKE_RVALUE): Use inline, not __inline__.
20884 2011-05-31  Dan Nicolaescu  <dann@ics.uci.edu>
20886         Make it possible to run ./temacs.
20888         * callproc.c (set_initial_environment): Remove CANNOT_DUMP code,
20889         syms_of_callproc does the same thing.  Remove test for
20890         "initialized", do it in the caller.
20891         * emacs.c (main): Avoid calling set_initial_environment when dumping.
20893 2011-05-31  Stefan Monnier  <monnier@iro.umontreal.ca>
20895         * minibuf.c (Finternal_complete_buffer): Return `category' metadata.
20896         (read_minibuf): Use get_minibuffer.
20897         (syms_of_minibuf): Use DEFSYM.
20898         (Qmetadata): New var.
20899         * data.c (Qbuffer): Don't make it static.
20900         (syms_of_data): Use DEFSYM.
20902 2011-05-31  Paul Eggert  <eggert@cs.ucla.edu>
20904         * ccl.c (CCL_CODE_RANGE): Allow negative numbers.  (Bug#8751)
20905         (CCL_CODE_MIN): New macro.
20907 2011-05-30  Paul Eggert  <eggert@cs.ucla.edu>
20909         * alloc.c (lisp_align_malloc): Omit unnecessary val==NULL tests.
20911         * eval.c (Qdebug): Now static.
20912         * lisp.h (Qdebug): Remove decl.  This reverts a part of the
20913         2011-04-26T11:26:05Z!dan.colascione@gmail.com that inadvertently undid part of
20914         2011-04-14T06:48:41Z!eggert@cs.ucla.edu.
20916 2011-05-29  Chong Yidong  <cyd@stupidchicken.com>
20918         * image.c: Various fixes to ImageMagick code comments.
20919         (Fimagemagick_types): Doc fix.
20921 2011-05-29  Paul Eggert  <eggert@cs.ucla.edu>
20923         Minor fixes prompted by GCC 4.6.0 warnings.
20925         * xselect.c (converted_selections, conversion_fail_tag): Now static.
20927         * emacs.c [HAVE_X_WINDOWS]: Include "xterm.h".
20928         (x_clipboard_manager_save_all): Move extern decl to ...
20929         * xterm.h: ... here, so that it can be checked for consistency.
20931 2011-05-29  Chong Yidong  <cyd@stupidchicken.com>
20933         * xselect.c (x_clipboard_manager_save_frame)
20934         (x_clipboard_manager_save_all): New functions.
20935         (Fx_clipboard_manager_save): Lisp function deleted.
20937         * emacs.c (Fkill_emacs): Call x_clipboard_manager_save_all.
20938         * frame.c (delete_frame): Call x_clipboard_manager_save_frame.
20940         * xterm.h: Update prototype.
20942 2011-05-28  William Xu  <william.xwl@gmail.com>
20944         * nsterm.m (ns_term_shutdown): Synchronize user defaults before
20945         exiting (Bug#8239).
20947 2011-05-28  Jim Meyering  <meyering@redhat.com>
20949         Avoid a sign-extension bug in crypto_hash_function.
20950         * fns.c (to_uchar): Define.
20951         (crypto_hash_function): Use it to convert some newly-signed
20952         variables to unsigned, to avoid sign-extension bugs.  For example,
20953         without this change, (md5 "truc") would evaluate to
20954         45723a2aff78ff4fff7fff1114760e62 rather than the expected
20955         45723a2af3788c4ff17f8d1114760e62.  Reported by Antoine Levitt in
20956         https://lists.gnu.org/archive/html/emacs-devel/2011-05/msg00883.html.
20958 2011-05-27  Paul Eggert  <eggert@cs.ucla.edu>
20960         Integer overflow fixes.
20962         * dbusbind.c: Serial number integer overflow fixes.
20963         (CHECK_DBUS_SERIAL_GET_SERIAL): New macro.
20964         (Fdbus_call_method_asynchronously, xd_read_message_1): Use a float
20965         to hold a serial number that is too large for a fixnum.
20966         (Fdbus_method_return_internal, Fdbus_method_error_internal):
20967         Check for serial numbers out of range.  Decode any serial number
20968         that was so large that it became a float.  (Bug#8722)
20970         * dbusbind.c: Use XFASTINT rather than XUINT, and check for nonneg.
20971         (Fdbus_call_method, Fdbus_call_method_asynchronously):
20972         Use XFASTINT rather than XUINT when numbers are nonnegative.
20973         (xd_append_arg, Fdbus_method_return_internal):
20974         (Fdbus_method_error_internal): Likewise.  Also, for unsigned
20975         arguments, check that Lisp number is nonnegative, rather than
20976         silently wrapping negative numbers around.  (Bug#8722)
20977         (xd_read_message_1): Don't assume dbus_uint32_t can fit in int.
20978         (Bug#8722)
20980         * data.c (arith_driver, Flsh): Avoid unnecessary casts to EMACS_UINT.
20982         * ccl.c (ccl_driver): Redo slightly to avoid the need for 'unsigned'.
20984         ccl: Add integer overflow checks.
20985         * ccl.c (CCL_CODE_MAX, GET_CCL_RANGE, GET_CCL_CODE, GET_CCL_INT):
20986         (IN_INT_RANGE): New macros.
20987         (ccl_driver): Use them to check for integer overflow when
20988         decoding a CCL program.  Many of the new checks are whether XINT (x)
20989         fits in int; it doesn't always, on 64-bit hosts.  The new version
20990         doesn't catch all possible integer overflows, but it's an
20991         improvement.  (Bug#8719)
20993         * alloc.c (make_event_array): Use XINT, not XUINT.
20994         There's no need for unsigned here.
20996         * mem-limits.h (EXCEEDS_LISP_PTR) [!USE_LSB_TAG]: EMACS_UINT -> uintptr_t
20997         This follows up to the 2011-05-06 change that substituted uintptr_t
20998         for EMACS_INT.  This case wasn't caught back then.
21000         Rework Fformat to avoid integer overflow issues.
21001         * editfns.c: Include <float.h> unconditionally, as it's everywhere
21002         now (part of C89).  Include <verify.h>.
21003         (MAX_10_EXP, CONVERTED_BYTE_SIZE): Remove; no longer needed.
21004         (pWIDE, pWIDElen, signed_wide, unsigned_wide): New defns.
21005         (Fformat): Avoid the prepass trying to compute sizes; it was only
21006         approximate and thus did not catch overflow reliably.  Instead, walk
21007         through the format just once, formatting and computing sizes as we go,
21008         checking for integer overflow at every step, and allocating a larger
21009         buffer as needed.  Keep track separately whether the format is
21010         multibyte.  Keep only the most-recently calculated precision, rather
21011         than them all.  Record whether each argument has been converted to
21012         string.  Use EMACS_INT, not int, for byte and char and arg counts.
21013         Support field widths and precisions larger than INT_MAX.  Avoid
21014         sprintf's undefined behavior with conversion specifications such as %#d
21015         and %.0c.  Fix bug with strchr succeeding on '\0' when looking for
21016         flags.  Fix bug with (format "%c" 256.0).  Avoid integer overflow when
21017         formatting out-of-range floating point numbers with int
21018         formats.  (Bug#8668)
21020         * lisp.h (FIXNUM_OVERFLOW_P): Work even if arg is a NaN.
21022         * data.c: Avoid integer truncation in expressions involving floats.
21023         * data.c: Include <intprops.h>.
21024         (arith_driver): When there's an integer overflow in an expression
21025         involving floating point, convert the integers to floating point
21026         so that the resulting value does not suffer from catastrophic
21027         integer truncation.  For example, on a 64-bit host (* 4
21028         most-negative-fixnum 0.5) should yield about -4.6e+18, not zero.
21029         Do not rely on undefined behavior after integer overflow.
21031         merge count_size_as_multibyte, parse_str_to_multibyte
21032         * character.c, character.h (count_size_as_multibyte):
21033         Rename from parse_str_to_multibyte; all uses changed.
21034         Check for integer overflow.
21035         * insdel.c, lisp.h (count_size_as_multibyte): Remove,
21036         since it's now a duplicate of the other.  This is more of
21037         a character than a buffer op, so better that it's in character.c.
21038         * fns.c, print.c: Adjust to above changes.
21040 2011-05-27  Stefan Monnier  <monnier@iro.umontreal.ca>
21042         * xselect.c (x_convert_selection): Yet another int/Lisp_Object mixup.
21044 2011-05-27  Paul Eggert  <eggert@cs.ucla.edu>
21046         * xselect.c: Fix minor problems prompted by GCC 4.6.0 warnings.
21047         (x_handle_selection_request, frame_for_x_selection): Remove unused vars.
21048         (x_clipboard_manager_save): Now static.
21049         (Fx_clipboard_manager_save): Rename local to avoid shadowing.
21051         * fns.c: Fix minor problems prompted by GCC 4.6.0 warnings.
21052         (crypto_hash_function): Now static.
21053         Fix pointer signedness problems.  Avoid unnecessary initializations.
21055 2011-05-27  Chong Yidong  <cyd@stupidchicken.com>
21057         * termhooks.h (Vselection_alist): Make it terminal-local.
21059         * terminal.c (create_terminal): Initialize it.
21061         * xselect.c: Support for clipboard managers.
21062         (Vselection_alist): Move to termhooks.h as terminal-local var.
21063         (LOCAL_SELECTION): New macro.
21064         (x_atom_to_symbol): Handle x_display_info_for_display fail case.
21065         (symbol_to_x_atom): Remove gratuitous arg.
21066         (x_handle_selection_request, lisp_data_to_selection_data)
21067         (x_get_foreign_selection, Fx_register_dnd_atom): Callers changed.
21068         (x_own_selection, x_get_local_selection, x_convert_selection):
21069         New arg, specifying work frame.  Use terminal-local Vselection_alist.
21070         (some_frame_on_display): Delete unused function.
21071         (Fx_own_selection_internal, Fx_get_selection_internal)
21072         (Fx_disown_selection_internal, Fx_selection_owner_p)
21073         (Fx_selection_exists_p): New optional frame arg.
21074         (frame_for_x_selection, Fx_clipboard_manager_save): New functions.
21075         (x_handle_selection_clear): Don't treat other terminals with the
21076         same keyboard specially.  Use the terminal-local Vselection_alist.
21077         (x_clear_frame_selections): Use Frun_hook_with_args.
21079         * xterm.c (x_term_init): Intern ATOM and CLIPBOARD_MANAGER atoms.
21081         * xterm.h: Add support for those atoms.
21083 2011-05-26  Chong Yidong  <cyd@stupidchicken.com>
21085         * xselect.c: ICCCM-compliant handling of MULTIPLE targets.
21086         (converted_selections, conversion_fail_tag): New global variables.
21087         (x_selection_request_lisp_error): Free the above.
21088         (x_get_local_selection): Remove unnecessary code.
21089         (x_reply_selection_request): Args changed; handle arbitrary array
21090         of converted selections stored in converted_selections.
21091         Separate the XChangeProperty and SelectionNotify steps.
21092         (x_handle_selection_request): Rewrite to handle MULTIPLE target.
21093         (x_convert_selection): New function.
21094         (x_handle_selection_event): Simplify.
21095         (x_get_foreign_selection): Don't ignore incoming requests while
21096         waiting for an answer; this will fail when we implement
21097         SAVE_TARGETS, and seems unnecessary anyway.
21098         (selection_data_to_lisp_data): Recognize ATOM_PAIR type.
21099         (Vx_sent_selection_functions): Doc fix.
21101 2011-05-26  Leo Liu  <sdl.web@gmail.com>
21103         * editfns.c (Ftranspose_regions): Allow empty regions.  (Bug#8699)
21105 2011-05-25  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
21107         * dispextern.h (struct glyph_row): New member fringe_bitmap_periodic_p.
21109         * dispnew.c (shift_glyph_matrix, scrolling_window): Mark scrolled row
21110         for fringe update if it has periodic bitmap.
21111         (row_equal_p): Also compare left_fringe_offset, right_fringe_offset,
21112         and fringe_bitmap_periodic_p.
21114         * fringe.c (get_fringe_bitmap_data): New function.
21115         (draw_fringe_bitmap_1, update_window_fringes): Use it.
21116         (update_window_fringes): Record periodicity of fringe bitmap in glyph
21117         row.  Mark glyph row for fringe update if periodicity changed.
21119         * xdisp.c (try_window_reusing_current_matrix): Don't mark scrolled row
21120         for fringe update unless it has periodic bitmap.
21122 2011-05-25  Kenichi Handa  <handa@m17n.org>
21124         * xdisp.c (get_next_display_element): Set correct it->face_id for
21125         a static composition.
21127 2011-05-24  Leo Liu  <sdl.web@gmail.com>
21129         * deps.mk (fns.o):
21130         * makefile.w32-in ($(BLD)/fns.$(O)): Include sha1.h.
21132         * fns.c (crypto_hash_function, Fsha1): New function.
21133         (Fmd5): Use crypto_hash_function.
21134         (syms_of_fns): Add Ssha1.
21136 2011-05-22  Paul Eggert  <eggert@cs.ucla.edu>
21138         * gnutls.c: Remove unused macros.
21139         (fn_gnutls_transport_set_lowat, fn_gnutls_transport_set_pull_function):
21140         (fn_gnutls_transport_set_push_function) [!WINDOWSNT]:
21141         Remove macros that are defined and never used.
21142         Caught by gcc -Wunused-macros (GCC 4.6.0, Fedora 14).
21144 2011-05-22  Chong Yidong  <cyd@stupidchicken.com>
21146         * xselect.c (syms_of_xselect): Remove unused symbol SAVE_TARGETS.
21147         (Fx_get_selection_internal): Minor cleanup.
21148         (Fx_own_selection_internal): Rename arguments for consistency with
21149         select.el.
21151 2011-05-22  Paul Eggert  <eggert@cs.ucla.edu>
21153         * xselect.c (QSAVE_TARGETS): New static var, to fix build failure.
21155 2011-05-22  Chong Yidong  <cyd@stupidchicken.com>
21157         * xselect.c (syms_of_xselect): Include character.h; use DEFSYM.
21159 2011-05-21  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
21161         * dispnew.c (scrolling_window): Don't exclude the case that the
21162         last enabled row in the desired matrix touches the bottom boundary.
21164 2011-05-21  Glenn Morris  <rgm@gnu.org>
21166         * Makefile.in ($(etc)/DOC): Make second command line even shorter.
21167         (SOME_MACHINE_OBJECTS): Replace FONT_OBJ by its maximal expansion,
21168         and add some more files.
21170 2011-05-20  Eli Zaretskii  <eliz@gnu.org>
21172         * callproc.c (Fcall_process) [MSDOS]: Fix arguments to
21173         report_file_error introduced by the change from 2011-05-07.
21175 2011-05-20  Paul Eggert  <eggert@cs.ucla.edu>
21177         * systime.h (Time): Define only if emacs is defined.
21178         This is to allow ../lib-src/profile.c to be compiled on FreeBSD,
21179         where the include path doesn't have X11/X.h by default.  See
21180         <http://lists.gnu.org/archive/html/emacs-devel/2011-05/msg00561.html>.
21182 2011-05-20  Kenichi Handa  <handa@m17n.org>
21184         * composite.c (find_automatic_composition): Fix previous change.
21186 2011-05-20  Glenn Morris  <rgm@gnu.org>
21188         * lisp.mk: New file, split from Makefile.in.
21189         * Makefile.in (lisp): Move to separate file, inserted by @lisp_frag@.
21190         (shortlisp): Remove.
21191         ($(etc)/DOC): Edit lisp.mk rather than using $shortlisp.
21193 2011-05-19  Glenn Morris  <rgm@gnu.org>
21195         * Makefile.in (MSDOS_SUPPORT_REAL, MSDOS_SUPPORT, NS_SUPPORT)
21196         (REAL_MOUSE_SUPPORT, GPM_MOUSE_SUPPORT, MOUSE_SUPPORT, TOOLTIP_SUPPORT)
21197         (BASE_WINDOW_SUPPORT, X_WINDOW_SUPPORT, WINDOW_SUPPORT): Remove.
21198         (lisp): Set the order to that of loadup.el.
21199         (shortlisp): Make it a copy of $lisp.
21200         (SOME_MACHINE_LISP): Remove.
21201         ($(etc)/DOC): Depend just on $lisp, not $SOME_MACHINE_LISP too.
21202         Use just $shortlisp, not $SOME_MACHINE_LISP too.
21204 2011-05-18  Kenichi Handa  <handa@m17n.org>
21206         * composite.c (CHAR_COMPOSABLE_P): Add more check for efficiency.
21207         (BACKWARD_CHAR): Wrap the arg STOP by parenthesis.
21208         (find_automatic_composition): Mostly rewrite for efficiency.
21210 2011-05-18  Juanma Barranquero  <lekktu@gmail.com>
21212         * makefile.w32-in: Update dependencies.
21214 2011-05-18  Christoph Scholtes  <cschol2112@googlemail.com>
21216         * menu.c: Include limits.h (fixes the MS-Windows build broken by
21217         2011-06-18T18:49:19Z!cyd@stupidchicken.com).
21219 2011-05-18  Paul Eggert  <eggert@cs.ucla.edu>
21221         Fix some integer overflow issues, such as string length overflow.
21223         * insdel.c (count_size_as_multibyte): Check for string overflow.
21225         * character.c (lisp_string_width): Check for string overflow.
21226         Use EMACS_INT, not int, for string indexes and lengths; in
21227         particular, 2nd arg is now EMACS_INT, not int.  Do not crash if
21228         the resulting string length overflows an EMACS_INT; instead,
21229         report a string overflow if no precision given.  When checking for
21230         precision exhaustion, use a check that cannot possibly have
21231         integer overflow.  (Bug#8675)
21232         * character.h (lisp_string_width): Adjust to new signature.
21234         * alloc.c (string_overflow): New function.
21235         (Fmake_string): Use it.  This doesn't change behavior, but saves
21236         a few bytes and will simplify future changes.
21237         * character.c (string_escape_byte8): Likewise.
21238         * lisp.h (string_overflow): New decl.
21240         Fixups, following up to the user-interface timestamp change.
21241         * nsterm.m (last_mouse_movement_time, ns_mouse_position): Use Time
21242         for UI timestamps, instead of unsigned long.
21243         * msdos.c (mouse_get_pos): Likewise.
21244         * w32inevt.c (movement_time, w32_console_mouse_position): Likewise.
21245         * w32gui.h (Time): Define by including "systime.h" rather than by
21246         declaring it ourselves.  (Bug#8664)
21248         * dispextern.h (struct image): Don't assume time_t <= unsigned long.
21249         * image.c (clear_image_cache): Likewise.
21251         * term.c (term_mouse_position): Don't assume time_t wraparound.
21253         Be more systematic about user-interface timestamps.
21254         Before, the code sometimes used 'Time', sometimes 'unsigned long',
21255         and sometimes 'EMACS_UINT', to represent these timestamps.
21256         This change causes it to use 'Time' uniformly, as that's what X uses.
21257         This makes the code easier to follow, and makes it easier to catch
21258         integer overflow bugs such as Bug#8664.
21259         * frame.c (Fmouse_position, Fmouse_pixel_position):
21260         Use Time, not unsigned long, for user-interface timestamps.
21261         * keyboard.c (last_event_timestamp, kbd_buffer_get_event): Likewise.
21262         (button_down_time, make_lispy_position, make_lispy_movement): Likewise.
21263         * keyboard.h (last_event_timestamp): Likewise.
21264         * menu.c (Fx_popup_menu) [!HAVE_X_WINDOWS]: Likewise.
21265         * menu.h (xmenu_show): Likewise.
21266         * term.c (term_mouse_position): Likewise.
21267         * termhooks.h (struct input_event.timestamp): Likewise.
21268         (struct terminal.mouse_position_hook): Likewise.
21269         * xmenu.c (create_and_show_popup_menu, xmenu_show): Likewise.
21270         * xterm.c (XTmouse_position, x_scroll_bar_report_motion): Likewise.
21271         * systime.h (Time): New decl.  Pull it in from <X11/X.h> if
21272         HAVE_X_WINDOWS, otherwise define it as unsigned long, which is
21273         what it was before.
21274         * menu.h, termhooks.h: Include "systime.h", for Time.
21276         * keyboard.c (make_lispy_event): Fix problem in integer overflow.
21277         Don't assume that the difference between two unsigned long values
21278         can fit into an integer.  At this point, we know button_down_time
21279         <= event->timestamp, so the difference must be nonnegative, so
21280         there's no need to cast the result if double-click-time is
21281         nonnegative, as it should be; check that it's nonnegative, just in
21282         case.  This bug is triggered when events are more than 2**31 ms
21283         apart (about 25 days).  (Bug#8664)
21285         * xselect.c (last_event_timestamp): Remove duplicate decl.
21286         (x_own_selection): Remove needless cast to unsigned long.
21288         * xmenu.c (set_frame_menubar): Use int, not EMACS_UINT, for indexes
21289         that always fit in int.  Use a sentinel instead of a counter, to
21290         avoid a temp and to allay GCC's concerns about possible int overflow.
21291         * frame.h (struct frame): Use int for menu_bar_items_used
21292         instead of EMACS_INT, since it always fits in int.
21294         * menu.c (grow_menu_items): Check for int overflow.
21296         * xmenu.c (set_frame_menubar): Don't mishandle vectors with no nils.
21298         * xterm.c: Use EMACS_INT for Emacs modifiers, and int for X modifiers.
21299         Before, the code was not consistent.  These values cannot exceed
21300         2**31 - 1 so there's no need to make them unsigned.
21301         (x_x_to_emacs_modifiers): Accept int and return EMACS_INT.
21302         (x_emacs_to_x_modifiers): Accept EMACS_INT and return int.
21303         (x_x_to_emacs_modifiers, x_emacs_to_x_modifiers): Reject non-integers
21304         as modifiers.
21305         * xterm.h (x_x_to_emacs_modifiers): Adjust to signature change.
21307         * lisp.h (XINT) [USE_LISP_UNION_TYPE]: Cast to EMACS_INT.
21308         (XUINT) [USE_LISP_UNION_TYPE]: Cast to EMACS_UINT.
21309         Otherwise, GCC 4.6.0 warns about printf (pI, XINT (...)),
21310         presumably because the widths might not match.
21312         * window.c (size_window): Avoid needless test at loop start.
21314 2011-05-18  Courtney Bane  <emacs-bugs-7626@cbane.org>  (tiny change)
21316         * term.c (Fresume_tty): Restore hooks before reinitializing (bug#8687).
21318 2011-05-12  Drew Adams  <drew.adams@oracle.com>
21320         * textprop.c (Fprevious_single_char_property_change): Doc fix (bug#8655).
21322 2011-05-12  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
21324         * w32term.c (w32_draw_fringe_bitmap): Rename local vars `left' and
21325         `width' to `bar_area_x' and `bar_area_width', respectively.
21326         (x_scroll_run): Take account of fringe background extension.
21328         * xterm.c (x_draw_fringe_bitmap) [USE_TOOLKIT_SCROLL_BARS]:
21329         Rename local vars `left' and `width' to `bar_area_x' and
21330         `bar_area_width', respectively.
21331         (x_scroll_run) [USE_TOOLKIT_SCROLL_BARS]: Take account of fringe
21332         background extension.
21334 2011-05-10  Jim Meyering  <meyering@redhat.com>
21336         * xdisp.c (x_intersect_rectangles): Fix typo "the the -> the".
21338 2011-05-10  Juanma Barranquero  <lekktu@gmail.com>
21340         * image.c (Finit_image_library): Return t for built-in image types,
21341         like pbm and xbm.  (Bug#8640)
21343 2011-05-09  Andreas Schwab  <schwab@linux-m68k.org>
21345         * w32menu.c (set_frame_menubar): Fix submenu allocation.
21347 2011-05-07  Eli Zaretskii  <eliz@gnu.org>
21349         * w32console.c (Fset_screen_color): Doc fix.
21350         (Fget_screen_color): New function.
21351         (syms_of_ntterm): Defsubr it.
21353         * callproc.c (call_process_cleanup) [MSDOS]: Don't close and
21354         unlink the temporary file if Fcall_process didn't create it in the
21355         first place.
21356         (Fcall_process) [MSDOS]: Don't create tempfile if stdout of the
21357         child process will be redirected to a file specified with `:file'.
21358         Don't try to re-open tempfile in that case, and set fd[0] to -1 as
21359         cue to call_process_cleanup not to close that handle.
21361 2011-05-07  Ben Key  <bkey76@gmail.com>
21363         * makefile.w32-in: The bootstrap-temacs rule now makes use of
21364         one of two shell specific rules, either bootstrap-temacs-CMD or
21365         bootstrap-temacs-SH.  The bootstrap-temacs-SH rule is identical
21366         to the previous implementation of the bootstrap-temacs rule.
21367         The bootstrap-temacs-CMD rule is similar to the previous
21368         implementation of the bootstrap-temacs rule except that it
21369         makes use of the ESC_CFLAGS variable instead of the CFLAGS
21370         variable.
21372         These changes, along with some changes to nt/configure.bat,
21373         nt/gmake.defs, and nt/nmake.defs, are required to extend my
21374         earlier fix to add support for --cflags and --ldflags options
21375         that include quotes so that it works whether make uses cmd or
21376         sh as the shell.
21378 2011-05-06  Michael Albinus  <michael.albinus@gmx.de>
21380         * dbusbind.c (QCdbus_type_unix_fd): Declare static.
21381         (xd_remove_watch): Don't check QCdbus_type_unix_fd for SYMBOLP, it
21382         is a constant.
21383         (Fdbus_init_bus, xd_read_queued_messages): Bus can be a symbol or
21384         a string.  Handle both cases.
21385         (Fdbus_call_method_asynchronously, Fdbus_register_signal)
21386         (Fdbus_register_method): Use Qinvalid_function.
21388 2011-05-06  Juanma Barranquero  <lekktu@gmail.com>
21390         * makefile.w32-in: Update dependencies.
21391         (LISP_H): Add inttypes.h and stdin.h.
21392         (PROCESS_H): Add unistd.h.
21394 2011-05-06  Eli Zaretskii  <eliz@gnu.org>
21396         * lread.c: Include limits.h (fixes the MS-Windows build broken by
21397         2011-05-06T07:13:19Z!eggert@cs.ucla.edu).
21399 2011-05-06  Paul Eggert  <eggert@cs.ucla.edu>
21401         * image.c (Finit_image_library) [!HAVE_NTGUI]: Omit unused local.
21403         * term.c (vfatal): Remove stray call to va_end.
21404         It's not needed and the C Standard doesn't allow it here anyway.
21406         Use C99's va_copy to avoid undefined behavior on x86-64 GNU/Linux.
21407         * eval.c (verror): doprnt a copy of ap, not the original.  (Bug#8545)
21409         * eval.c (verror): OK to create a string of up to MOST_POSITIVE_FIXNUM
21410         bytes.
21412         * term.c: Don't include <stdarg.h>, as <lisp.h> does that.
21414         * callproc.c (Fcall_process): Use 'volatile' to avoid vfork clobbering.
21416         * process.c (Fformat_network_address): Fix typo: args2 -> *args2.
21418         * xmenu.c (set_frame_menubar): Fix typo: int * -> int (3 times).
21420         * coding.c (detect_coding_charset): Fix typo: * 2 -> *4 (Bug#8601).
21422         * charset.h (struct charset.code_space): Now has 15 elements, not 16.
21423         * charset.c (Fdefine_charset_internal): Don't initialize
21424         charset.code_space[15].  The value was garbage, on hosts with
21425         32-bit int (Bug#8600).
21427         * lread.c (read_integer): Be more consistent with string-to-number.
21428         Use string_to_number to do the actual conversion; this avoids
21429         rounding errors and fixes some other screwups.  Without this fix,
21430         for example, #x1fffffffffffffff was misread as -2305843009213693952.
21431         (digit_to_number): Move earlier, for benefit of read_integer.
21432         Return -1 if the digit is out of range for the base, -2 if it is
21433         not a digit in any supported base.  (Bug#8602)
21435         * doprnt.c (doprnt): Support arbitrary pI values, such as "I64".
21437         * dispnew.c (scrolling_window): Return 1 if we scrolled,
21438         to match comment at start of function.  This also removes a
21439         GCC warning about overflow in a 32+64-bit port.
21441         * lisp.h (EMACS_INT, EMACS_UINT, BITS_PER_EMACS_INT, pI): Simplify.
21443         * dbusbind.c: Do not use XPNTR on a value that may be an integer.
21444         Reported by Stefan Monnier in
21445         <http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00919.html>.
21446         (xd_remove_watch, Fdbus_init_bus, xd_read_queued_messages):
21447         Use SYMBOLP-guarded XSYMBOL, not XPNTR.
21449         * lisp.h (EMACS_INTPTR): Remove.  All uses changed to intptr_t.
21450         (EMACS_UINTPTR): Likewise, with uintptr_t.
21452         * lisp.h: Prefer 64-bit EMACS_INT if available.
21453         (EMACS_INT, EMACS_UINT, BITS_PER_EMACS_INT, pI): Define to 64-bit
21454         on 32-bit hosts that have 64-bit int, so that they can access
21455         large files.
21456         However, temporarily disable this change unless the temporary
21457         symbol WIDE_EMACS_INT is defined.
21459         * lread.c, process.c: Do not include <inttypes.h>; lisp.h does it now.
21461         Prefer intptr_t/uintptr_t for integers the same widths as pointers.
21462         This removes an assumption that EMACS_INT and long are the same
21463         width as pointers.  The assumption is true for Emacs porting targets
21464         now, but we want to make other targets possible.
21465         * lisp.h: Include <inttypes.h>, for INTPTR_MAX, UINTPTR_MAX.
21466         (EMACS_INTPTR, EMACS_UINTPTR): New macros.
21467         In the rest of the code, change types of integers that hold casted
21468         pointers to EMACS_INTPTR and EMACS_UINTPTR, systematically
21469         replacing EMACS_INT, long, EMACS_UINT, and unsigned long.
21470         (XTYPE): Don't cast arg to EMACS_UINT; normally is not needed.
21471         (XSET): Cast type of XTYPE arg to EMACS_INTPTR; it is needed here.
21472         No need to cast type when ORing.
21473         (XPNTR): Return a value of type EMACS_INTPTR or EMACS_UINTPTR.
21474         * alloc.c (lisp_align_malloc): Remove a no-longer-needed cast.
21475         * doc.c (store_function_docstring): Use EMACS_INTPTR, so as not to
21476         assume EMACS_INT is the same width as char *.
21477         * gtkutil.c (xg_gtk_scroll_destroy, xg_tool_bar_button_cb):
21478         (xg_tool_bar_callback, xg_tool_bar_help_callback, xg_make_tool_item):
21479         Remove no-longer-needed casts.
21480         (xg_create_scroll_bar, xg_tool_bar_button_cb, xg_tool_bar_callback):
21481         (xg_tool_bar_help_callback, xg_make_tool_item):
21482         Use EMACS_INTPTR to hold an integer
21483         that will be cast to void *; this can avoid a GCC warning
21484         if EMACS_INT is not the same width as void *.
21485         * menu.c (find_and_call_menu_selection): Remove no-longer-needed cast.
21486         * xdisp.c (display_echo_area_1, resize_mini_window_1):
21487         (current_message_1, set_message_1):
21488         Use a local to convert to proper width without a cast.
21489         * xmenu.c (dialog_selection_callback): Likewise.
21491         * sysdep.c (get_random): Don't assume EMACS_INT is no wider than long.
21492         Also, don't assume VALBITS / RAND_BITS is less than 5,
21493         and don't rely on undefined behavior when shifting a 1 left into
21494         the sign bit.
21495         * lisp.h (get_random): Change signature to match.
21497         * lread.c (hash_string): Use size_t, not int, for hash computation.
21498         Normally we prefer signed values; but hashing is special, because
21499         it's better to use unsigned division on hash table sizes so that
21500         the remainder is nonnegative.  Also, size_t is the natural width
21501         for hashing into memory.  The previous code used 'int', which doesn't
21502         retain enough info to hash well into very large tables.
21503         (oblookup, oblookup_last_bucket_number, Funintern): Likewise.
21505         * dbusbind.c: Don't possibly lose pointer info when converting.
21506         (xd_remove_watch, Fdbus_init_bus, xd_read_queued_messages):
21507         Use XPNTR rather than XHASH, so that the high-order bits of
21508         the pointer aren't lost when converting through void *.
21510         * eval.c (Fautoload): Don't double-shift a pointer.
21512         * fns.c (Frandom): Let EMACS_UINT be wider than unsigned long.
21514 2011-05-06  Juanma Barranquero  <lekktu@gmail.com>
21516         * gnutls.c (DEF_GNUTLS_FN):
21517         * image.c (DEF_IMGLIB_FN): Make function pointers static.
21519 2011-05-05  Andreas Schwab  <schwab@linux-m68k.org>
21521         * lread.c (lisp_file_lexically_bound_p): Stop scanning at end
21522         marker.  (Bug#8610)
21524 2011-05-05  Eli Zaretskii  <eliz@gnu.org>
21526         * w32heap.c (allocate_heap) [USE_LISP_UNION_TYPE || USE_LSB_TAG]:
21527         New version that can reserve upto 2GB of heap space.
21529 2011-05-05  Chong Yidong  <cyd@stupidchicken.com>
21531         * nsfns.m (Fns_read_file_name): Doc fix (Bug#8534).
21533 2011-05-05  Teodor Zlatanov  <tzz@lifelogs.com>
21535         * gnutls.c (fn_gnutls_certificate_set_x509_key_file): Add alias to
21536         `gnutls_certificate_set_x509_key_file'.
21538 2011-05-05  Juanma Barranquero  <lekktu@gmail.com>
21540         * makefile.w32-in ($(BLD)/image.$(O), $(BLD)/process.$(O)):
21541         Update dependencies.
21543 2011-05-04  Juanma Barranquero  <lekktu@gmail.com>
21545         * gnutls.h (emacs_gnutls_write, emacs_gnutls_read):
21546         * gnutls.c (emacs_gnutls_write, emacs_gnutls_read):
21547         Remove unused parameter `fildes'.
21548         * process.c (read_process_output, send_process): Don't pass it.
21550 2011-05-04  Juanma Barranquero  <lekktu@gmail.com>
21552         Fix previous change: the library cache is defined in w32.c.
21553         * image.c (CACHE_IMAGE_TYPE) [!HAVE_NTGUI]: Define to noop.
21554         (Finit_image_library): Wrap Vlibrary_cache on "#ifdef HAVE_NTGUI".
21556 2011-05-04  Juanma Barranquero  <lekktu@gmail.com>
21558         Implement dynamic loading of GnuTLS on Windows.
21560         * gnutls.h (GNUTLS_EMACS_ERROR_NOT_LOADED): New macro.
21561         (emacs_gnutls_write, emacs_gnutls_read): Mark as extern.
21562         (emacs_gnutls_record_check_pending, emacs_gnutls_transport_set_errno):
21563         Declare.
21565         * gnutls.c (Qgnutls_dll): Define.
21566         (DEF_GNUTLS_FN, LOAD_GNUTLS_FN): New macros.
21567         (gnutls_*): Declare function pointers.
21568         (init_gnutls_functions): New function to initialize function pointers.
21569         (emacs_gnutls_handshake, Fgnutls_error_string, Fgnutls_deinit)
21570         (emacs_gnutls_global_init, Fgnutls_bye): Use function pointers.
21571         (emacs_gnutls_record_check_pending, emacs_gnutls_transport_set_errno):
21572         Wrappers for gnutls_record_check_pending and gnutls_transport_set_errno.
21573         (emacs_gnutls_write, emacs_gnutls_read)
21574         (emacs_gnutls_handle_error, Fgnutls_error_fatalp)
21575         (Fgnutls_available_p): New function.
21576         (Fgnutls_boot): Call Fgnutls_available_p.  Use function pointers.
21577         (syms_of_gnutls) <Qgnutls_dll>: Initialize and staticpro it.
21578         (syms_of_gnutls) <Sgnutls_available_p>: defsubr it.
21580         * image.c: Include w32.h.
21581         (Vimage_type_cache): Delete.
21582         (syms_of_image) <Vimage_type_cache>: Don't initialize and staticpro it.
21583         (CACHE_IMAGE_TYPE, Finit_image_library): Use Vlibrary_cache instead.
21584         (w32_delayed_load): Move to w32.c.
21586         * w32.h (VlibraryCache, QCloaded_from, w32_delayed_load): Declare.
21588         * w32.c (QCloaded_from, Vlibrary_cache): Define.
21589         (w32_delayed_load): Move from image.c.  When loading a library, record
21590         its filename in the :loaded-from property of the library id.
21591         (globals_of_w32) <QCloaded_from, Vlibrary_cache>:
21592         Initialize and staticpro them.
21593         (emacs_gnutls_pull, emacs_gnutls_push): Call emacs_gnutls_* functions.
21595         * process.c: Include lisp.h before w32.h, not after.
21596         (wait_reading_process_output): Call emacs_gnutls_record_check_pending
21597         instead of gnutls_record_check_pending.
21599         * callproc.c, emacs.c: Include lisp.h before w32.h, not after.
21601 2011-05-04  Teodor Zlatanov  <tzz@lifelogs.com>
21603         * gnutls.c (Fgnutls_boot): Support :keylist and :crlfiles options
21604         instead of :keyfiles.  Give GnuTLS the keylist and the CRL lists
21605         as passed in.
21607 2011-05-03  Jan Djärv  <jan.h.d@swipnet.se>
21609         * xterm.c (x_set_frame_alpha): Do not set property on anything
21610         else than FRAME_X_OUTER_WINDOW (Bug#8608).
21612 2011-05-02  Juanma Barranquero  <lekktu@gmail.com>
21614         * sysdep.c (get_tty_size) [WINDOWSNT]: Implement.  (Bug#8596)
21616 2011-05-02  Juanma Barranquero  <lekktu@gmail.com>
21618         * gnutls.c (Qgnutls_log_level, Qgnutls_code, Qgnutls_anon)
21619         (Qgnutls_x509pki, Qgnutls_e_interrupted, Qgnutls_e_again)
21620         (Qgnutls_e_invalid_session, Qgnutls_e_not_ready_for_handshake)
21621         (gnutls_global_initialized, Qgnutls_bootprop_priority)
21622         (Qgnutls_bootprop_trustfiles, Qgnutls_bootprop_keyfiles)
21623         (Qgnutls_bootprop_callbacks, Qgnutls_bootprop_loglevel)
21624         (Qgnutls_bootprop_hostname, Qgnutls_bootprop_verify_flags)
21625         (Qgnutls_bootprop_verify_error, Qgnutls_bootprop_verify_hostname_error)
21626         (Qgnutls_bootprop_callbacks_verify): Make static.
21628 2011-05-01  Andreas Schwab  <schwab@linux-m68k.org>
21630         * callproc.c: Indentation fixup.
21632         * sysdep.c (wait_for_termination_1): Make static.
21633         (wait_for_termination, interruptible_wait_for_termination):
21634         Move after wait_for_termination_1.
21636 2011-05-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
21638         * sysdep.c (interruptible_wait_for_termination): New function
21639         which is like wait_for_termination, but allows keyboard
21640         interruptions.
21642         * callproc.c (Fcall_process): Add (:file "file") as an option for
21643         the STDOUT buffer.
21644         (Fcall_process_region): Ditto.
21646 2011-04-30  Eli Zaretskii  <eliz@gnu.org>
21648         * dosfns.c (Fint86, Fdos_memget, Fdos_memput): Use `ASIZE (FOO)'
21649         rather than `XVECTOR (FOO)->size'.
21651         * process.c: Remove HAVE_INTTYPES_H condition from inclusion of
21652         inttypes.h, as a gnulib replacement is used if it not available in
21653         system headers.
21655 2011-04-21  Eli Zaretskii  <eliz@gnu.org>
21657         Lift the MOST_POSITIVE_FIXNUM/4 limitation on visited files.
21658         * fileio.c (Finsert_file_contents): Don't limit file size to 1/4
21659         of MOST_POSITIVE_FIXNUM.  (Bug#8528)
21661         * coding.c (coding_alloc_by_realloc): Error out if destination
21662         will grow beyond MOST_POSITIVE_FIXNUM.
21663         (decode_coding_emacs_mule): Abort if there isn't enough place in
21664         charbuf for the composition carryover bytes.  Reserve an extra
21665         space for up to 2 characters produced in a loop.
21666         (decode_coding_iso_2022): Abort if there isn't enough place in
21667         charbuf for the composition carryover bytes.
21669 2011-04-21  Eli Zaretskii  <eliz@gnu.org>
21671         * doprnt.c (doprnt) [!HAVE_LONG_LONG_INT]: Error out instead of
21672         aborting when %lld or %lll format is passed.
21673         [!HAVE_UNSIGNED_LONG_LONG_INT]: Error out instead of aborting when
21674         %llo or %llx format is passed.  (Bug#8545)
21676         * window.c (window_scroll_line_based): Use a marker instead of
21677         simple variables to record original value of point.  (Bug#7952)
21679         * doprnt.c (doprnt): Fix the case where a multibyte sequence
21680         produced by %s or %c overflows available buffer space.  (Bug#8545)
21682 2011-04-28  Paul Eggert  <eggert@cs.ucla.edu>
21684         * doprnt.c (doprnt): Omit useless test; int overflow check (Bug#8545).
21685         (SIZE_MAX): Move defn after all includes, as they might #define it.
21687 2011-04-28  Juanma Barranquero  <lekktu@gmail.com>
21689         * w32.c (init_environment): Warn about defaulting HOME to C:\.
21691 2011-04-28  Juanma Barranquero  <lekktu@gmail.com>
21693         * keyboard.c (Qdelayed_warnings_hook): Define.
21694         (command_loop_1): Run `delayed-warnings-hook'
21695         if Vdelayed_warnings_list is non-nil.
21696         (syms_of_keyboard) <delayed-warnings-hook>: DEFSYM it.
21697         (syms_of_keyboard) <delayed-warnings-list>: DEFVAR_LISP it.
21699 2011-04-28  Eli Zaretskii  <eliz@gnu.org>
21701         * doprnt.c (doprnt): Don't return value smaller than the buffer
21702         size if the message was truncated.  (Bug#8545).
21704 2011-04-28  Juanma Barranquero  <lekktu@gmail.com>
21706         * w32fns.c (Fx_change_window_property, Fx_delete_window_property)
21707         (Fx_window_property): #if-0 the whole functions, not just the bodies.
21709 2011-04-27  Paul Eggert  <eggert@cs.ucla.edu>
21711         * doprnt.c (doprnt): Support "ll" length modifier, for long long.
21713 2011-04-27  Juanma Barranquero  <lekktu@gmail.com>
21715         * makefile.w32-in: Update dependencies.
21717 2011-04-27  Eli Zaretskii  <eliz@gnu.org>
21719         Improve `doprnt' and its usage.  (Bug#8545)
21720         * doprnt.c (doprnt): Make sure `format' is never accessed beyond
21721         `format_end'.  Remove support for %l as a conversion specifier.
21722         Don't use xrealloc.  Improve diagnostics when the %l size modifier
21723         is used.  Update the commentary.
21725         * eval.c (verror): Simplify calculation of size_t.
21727         * coding.c (Ffind_operation_coding_system): Fix diagnostic error
21728         messages.
21730 2011-04-27  Yoshiaki Kasahara  <kasahara@nc.kyushu-u.ac.jp>  (tiny change)
21732         * buffer.c (init_buffer) [USE_MMAP_FOR_BUFFERS]: Adjust to aliasing
21733         change.
21735 2011-04-27  Paul Eggert  <eggert@cs.ucla.edu>
21737         * nsmenu.m: Replace all uses of XVECTOR with ASIZE and AREF.
21738         This makes this file independent of the recent pseudovector change.
21740 2011-04-26  Paul Eggert  <eggert@cs.ucla.edu>
21742         * keyboard.c (handle_user_signal): Fix pointer signedness problem.
21744         * gnutls.c (emacs_gnutls_handle_error): Remove unused local.
21745         (Fgnutls_boot): gnutls_certificate_verify_peers2 wants unsigned *.
21746         Remove unused local.
21747         (emacs_gnutls_write): Don't use uninitialized rtnval if nbyte <= 0.
21749         * lisp.h: Fix a problem with aliasing and vector headers.  (Bug#8546)
21750         GCC 4.6.0 optimizes based on type-based alias analysis.
21751         For example, if b is of type struct buffer * and v of type struct
21752         Lisp_Vector *, then gcc -O2 was incorrectly assuming that &b->size
21753         != &v->size, and therefore "v->size = 1; b->size = 2; return
21754         v->size;" must therefore return 1.  This assumption is incorrect
21755         for Emacs, since it type-puns struct Lisp_Vector * with many other
21756         types.  To fix this problem, this patch adds a new type struct
21757         vectorlike_header that documents the constraints on layout of vectors
21758         and pseudovectors, and helps optimizing compilers not get fooled
21759         by Emacs's type punning.  It also adds the macros XSETTYPED_PVECTYPE
21760         XSETTYPED_PSEUDOVECTOR, TYPED_PSEUDOVECTORP, for similar reasons.
21761         * lisp.h (XSETTYPED_PVECTYPE): New macro, specifying the name of
21762         the size member.
21763         (XSETPVECTYPE): Rewrite in terms of new macro.
21764         (XSETPVECTYPESIZE): New macro, specifying both type and size.
21765         This is a bit clearer, and further avoids the possibility of
21766         undesirable aliasing.
21767         (XSETTYPED_PSEUDOVECTOR): New macro, specifying the size.
21768         (XSETPSEUDOVECTOR): Rewrite in terms of XSETTYPED_PSEUDOVECTOR.
21769         (XSETSUBR): Rewrite in terms of XSETTYPED_PSEUDOVECTOR and XSIZE,
21770         since Lisp_Subr is a special case (no "next" field).
21771         (ASIZE): Now uses header.size rather than size.
21772         All previous uses of XVECTOR (foo)->size replaced to use this macro,
21773         to avoid the hassle of writing XVECTOR (foo)->header.size.
21774         (struct vectorlike_header): New type.
21775         (TYPED_PSEUDOVECTORP): New macro, also specifying the C type of the
21776         object, to help avoid aliasing.
21777         (PSEUDOVECTORP): Rewrite in terms of TYPED_PSEUDOVECTORP.
21778         (SUBRP): Likewise, since Lisp_Subr is a special case.
21779         * lisp.h (struct Lisp_Vector, struct Lisp_Char_Table):
21780         (struct Lisp_Sub_Char_Table, struct Lisp_Bool_Vector):
21781         (struct Lisp_Hash_Table): Combine first two members into a single
21782         struct vectorlike_header member.  All uses of "size" and "next" members
21783         changed to be "header.size" and "header.next".
21784         * buffer.h (struct buffer): Likewise.
21785         * font.h (struct font_spec, struct font_entity, struct font): Likewise.
21786         * frame.h (struct frame): Likewise.
21787         * process.h (struct Lisp_Process): Likewise.
21788         * termhooks.h (struct terminal): Likewise.
21789         * window.c (struct save_window_data, struct saved_window): Likewise.
21790         * window.h (struct window): Likewise.
21791         * alloc.c (allocate_buffer, Fmake_bool_vector, allocate_pseudovector):
21792         Use XSETPVECTYPESIZE, not XSETPVECTYPE, to avoid aliasing problems.
21793         * buffer.c (init_buffer_once): Likewise.
21794         * lread.c (defsubr): Use XSETTYPED_PVECTYPE, since Lisp_Subr is a
21795         special case.
21796         * process.c (Fformat_network_address): Use local var for size,
21797         for brevity.
21799         * bytecode.c (exec_byte_code): Don't use XVECTOR before CHECK_VECTOR.
21801         Make the Lisp reader and string-to-float more consistent (Bug#8525)
21802         * data.c (atof): Remove decl; no longer used or needed.
21803         (digit_to_number): Move to lread.c.
21804         (Fstring_to_number): Use new string_to_number function, to be
21805         consistent with how the Lisp reader treats infinities and NaNs.
21806         Do not assume that floating-point numbers represent EMACS_INT
21807         without losing information; this is not true on most 64-bit hosts.
21808         Avoid double-rounding errors, by insisting on integers when
21809         parsing non-base-10 numbers, as the documentation specifies.
21810         * lisp.h (string_to_number): New decl, replacing ...
21811         (isfloat_string): Remove.
21812         * lread.c: Include <inttypes.h>, for uintmax_t and strtoumax.
21813         (read1): Do not accept +. and -. as integers; this
21814         appears to have been a coding error.  Similarly, do not accept
21815         strings like +-1e0 as floating point numbers.  Do not report
21816         overflow for integer overflows unless the base is not 10 which
21817         means we have no simple and reliable way to continue.
21818         Break out the floating-point parsing into a new
21819         function string_to_number, so that Fstring_to_number parses
21820         floating point numbers consistently with the Lisp reader.
21821         (digit_to_number): Move here from data.c.  Make it static inline.
21822         (E_CHAR, EXP_INT): Remove, replacing with ...
21823         (E_EXP): New macro, to solve the "1.0e+" problem mentioned below.
21824         (string_to_number): New function, replacing isfloat_string.
21825         This function checks for valid syntax and produces the resulting
21826         Lisp float number too.  Rework it so that string-to-number
21827         no longer mishandles examples like "1.0e+".  Use strtoumax,
21828         so that overflow for non-base-10 numbers is reported only when
21829         there's no portable and simple way to convert to floating point.
21831         * textprop.c (set_text_properties_1): Rewrite for clarity,
21832         and to avoid GCC warning about integer overflow.
21834         * intervals.h (struct interval): Use EMACS_INT for members
21835         where EMACS_UINT might cause problems.  See
21836         <http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00514.html>.
21837         (CHECK_TOTAL_LENGTH): Remove cast to EMACS_INT; no longer needed.
21838         * intervals.c (interval_deletion_adjustment): Now returns EMACS_INT.
21839         All uses changed.
21840         (offset_intervals): Tell GCC not to worry about length overflow
21841         when negating a negative length.
21843         * alloc.c (overrun_check_malloc, overrun_check_realloc): Now static.
21844         (overrun_check_free): Likewise.
21846         * alloc.c (SDATA_SIZE) [!GC_CHECK_STRING_BYTES]: Avoid runtime check
21847         in the common case where SDATA_DATA_OFFSET is a multiple of Emacs
21848         word size.
21850         * gnutls.c: Fix problems found by GCC 4.6.0 on Ubuntu 10.10.
21851         (gnutls_make_error): Rename local to avoid shadowing.
21852         (gnutls_emacs_global_deinit): ifdef out; not used.
21853         (Fgnutls_boot): Use const for pointer to readonly storage.
21854         Comment out unused local.  Fix pointer signedness problems.
21856         * lread.c (openp): Don't stuff size_t into an 'int'.
21857         Use <= on length, not < on length + 1, to avoid GCC 4.6.0 warning
21858         about possible signed overflow.
21860         * gtkutil.c: Fix problems found by GCC 4.6.0 on Ubuntu 10.10.
21861         (GDK_KEY_g): Don't define if already defined.
21862         (xg_prepare_tooltip): Avoid pointer signedness problem.
21863         (xg_set_toolkit_scroll_bar_thumb): Redo to avoid two casts.
21865         * process.c (Fnetwork_interface_info): Avoid left-shift undefined
21866         behavior with 1 << 31.  GCC 4.6.0 warns about this on 32-bit hosts.
21868         * xfns.c (Fx_window_property): Simplify a bit,
21869         to make a bit faster and to avoid GCC 4.6.0 warning.
21870         * xselect.c (x_get_window_property, x_handle_dnd_message): Likewise.
21872         * fns.c (internal_equal): Don't assume size_t fits in int.
21874         * alloc.c (compact_small_strings): Tighten assertion a little.
21876         Replace pEd with more-general pI, and fix some printf arg casts.
21877         * lisp.h (pI): New macro, generalizing old pEd macro to other
21878         conversion specifiers.  For example, use "...%"pI"d..." rather
21879         than "...%"pEd"...".
21880         (pEd): Remove.  All uses replaced with similar uses of pI.
21881         * m/amdx86-64.h, m/ia64.h, m/ibms390x.h: Likewise.
21882         * alloc.c (check_pure_size): Don't overflow by converting size to int.
21883         * bidi.c (bidi_dump_cached_states): Use pI to avoid cast.
21884         * data.c (Fnumber_to_string): Use pI instead of if-then-else-abort.
21885         * dbusbind.c (xd_append_arg): Use pI to avoid cast.
21886         (Fdbus_method_return_internal, Fdbus_method_error_internal): Likewise.
21887         * font.c (font_unparse_xlfd): Avoid potential buffer overrun on
21888         64-bit hosts.
21889         (font_unparse_xlfd, font_unparse_fcname): Use pI to avoid casts.
21890         * keyboard.c (record_char, modify_event_symbol): Use pI to avoid casts.
21891         * print.c (safe_debug_print, print_object): Likewise.
21892         (print_object): Don't overflow by converting EMACS_INT or EMACS_UINT
21893         to int.
21894         Use pI instead of if-then-else-abort.  Use %p to avoid casts,
21895         avoiding the 0 flag, which is not portable.
21896         * process.c (Fmake_network_process): Use pI to avoid cast.
21897         * region-cache.c (pp_cache): Likewise.
21898         * xdisp.c (decode_mode_spec): Likewise.
21899         * xrdb.c (x_load_resources) [USE_MOTIF]: Use pI to avoid undefined
21900         behavior on 64-bit hosts with printf arg.
21901         * xselect.c (x_queue_event): Use %p to avoid casts, avoiding 0 flag.
21902         (x_stop_queuing_selection_requests): Likewise.
21903         (x_get_window_property): Don't truncate byte count to an 'int'
21904         when tracing.
21906         * frame.c (frame_name_fnn_p): Get rid of strtol, which isn't right
21907         here, since it parses constructs like leading '-' and spaces,
21908         which are not wanted; and it overflows with large numbers.
21909         Instead, simply match F[0-9]+, which is what is wanted anyway.
21911         * alloc.c: Remove unportable assumptions about struct layout.
21912         (SDATA_SELECTOR, SDATA_DATA_OFFSET): New macros.
21913         (SDATA_OF_STRING, SDATA_SIZE, allocate_string_data):
21914         (allocate_vectorlike, make_pure_vector): Use the new macros,
21915         plus offsetof, to remove unportable assumptions about struct layout.
21916         These assumptions hold on all porting targets that I know of, but
21917         they are not guaranteed, they're easy to remove, and removing them
21918         makes further changes easier.
21920         * alloc.c (BLOCK BYTES): Fix typo by changing "ablock" to "ablocks".
21921         This doesn't fix a bug but makes the code clearer.
21922         (string_overrun_cookie): Now const.  Use initializers that
21923         don't formally overflow signed char, to avoid warnings.
21924         (allocate_string_data) [GC_CHECK_STRING_OVERRUN]: Fix typo that
21925         can cause Emacs to crash when string overrun checking is enabled.
21926         (allocate_buffer): Don't assume sizeof (struct buffer) is a
21927         multiple of sizeof (EMACS_INT); it need not be, if
21928         alignof(EMACS_INT) < sizeof (EMACS_INT).
21929         (check_sblock, check_string_bytes, check_string_free_list): Protoize.
21931 2011-04-26  Juanma Barranquero  <lekktu@gmail.com>
21933         * keyboard.c (QCrtl): Rename from Qrtl.  All uses changed.
21935 2011-04-26  Teodor Zlatanov  <tzz@lifelogs.com>
21937         * gnutls.c (emacs_gnutls_handshake): Return an error if we're not
21938         supposed to be handshaking.  (Bug#8556)
21939         Reported by Paul Eggert <eggert@cs.ucla.edu>.
21941 2011-04-26  Daniel Colascione  <dan.colascione@gmail.com>
21943         * lisp.h (Qdebug): List symbol.
21944         * eval.c (Qdebug): Restore global linkage.
21945         * keyboard.c (debug-on-event): New variable.
21946         (handle_user_signal): Break into debugger when debug-on-event
21947         matches the current signal symbol.
21949 2011-04-25  Dan Nicolaescu  <dann@ics.uci.edu>
21951         * alloc.c (check_sblock, check_string_bytes)
21952         (check_string_free_list): Convert to standard C.
21954 2011-04-25  Teodor Zlatanov  <tzz@lifelogs.com>
21956         * w32.c (emacs_gnutls_push): Fix typo.
21958 2011-04-25  Eli Zaretskii  <eliz@gnu.org>
21960         * gnutls.c (emacs_gnutls_handshake): Avoid compiler warnings about
21961         "cast to pointer from integer of different size".
21963         Improve doprnt and its use in verror.  (Bug#8545)
21964         * doprnt.c (doprnt): Document the set of format control sequences
21965         supported by the function.  Use SAFE_ALLOCA instead of always
21966         using `alloca'.
21968         * eval.c (verror): Don't limit the buffer size at size_max-1, that
21969         is one byte too soon.  Don't use xrealloc; instead xfree and
21970         xmalloc anew.
21972 2011-04-24  Teodor Zlatanov  <tzz@lifelogs.com>
21974         * gnutls.h: Add GNUTLS_STAGE_CALLBACKS enum to denote we're in the
21975         callbacks stage.
21977         * gnutls.c: Renamed global_initialized to
21978         gnutls_global_initialized.  Added internals for the
21979         :verify-hostname-error, :verify-error, and :verify-flags
21980         parameters of `gnutls-boot' and documented those parameters in the
21981         docstring.  Start callback support.
21982         (emacs_gnutls_handshake): Add Woe32 support.  Retry handshake
21983         unless a fatal error occurred.  Call gnutls_alert_send_appropriate
21984         on error.  Return error code.
21985         (emacs_gnutls_write): Call emacs_gnutls_handle_error.
21986         (emacs_gnutls_read): Likewise.
21987         (Fgnutls_boot): Return handshake error code.
21988         (emacs_gnutls_handle_error): New function.
21989         (wsaerror_to_errno): Likewise.
21991         * w32.h (emacs_gnutls_pull): Add prototype.
21992         (emacs_gnutls_push): Likewise.
21994         * w32.c (emacs_gnutls_pull): New function for GnuTLS on Woe32.
21995         (emacs_gnutls_push): Likewise.
21997 2011-04-24  Claudio Bley  <claudio.bley@gmail.com>  (tiny change)
21999         * process.c (wait_reading_process_output): Check if GnuTLS
22000         buffered some data internally if no FDs are set for TLS
22001         connections.
22003         * makefile.w32-in (OBJ2): Add gnutls.$(O).
22004         (LIBS): Link to USER_LIBS.
22005         ($(BLD)/gnutls.$(0)): New target.
22007 2011-04-24  Eli Zaretskii  <eliz@gnu.org>
22009         * xdisp.c (handle_single_display_spec): Rename the
22010         display_replaced_before_p argument into display_replaced_p, to
22011         make it consistent with the commentary.  Fix typos in the
22012         commentary.
22014         * textprop.c (syms_of_textprop): Remove dead code.
22015         (copy_text_properties): Delete obsolete commentary about an
22016         interface that was deleted long ago.  Fix typos in the description
22017         of arguments.
22019         * msdos.c (XMenuActivate, XMenuAddSelection): Adjust argument list
22020         to changes in oldXMenu/XMenu.h from 2011-04-16.
22021         <menu_help_message, prev_menu_help_message>: Constify.
22022         (IT_menu_make_room): menu->help_text is now `const char **';
22023         adjust.
22025         * msdos.h (XMenuActivate, XMenuAddSelection): Adjust prototypes
22026         to changes in oldXMenu/XMenu.h from 2011-04-16.
22027         (struct XMenu): Declare `help_text' `const char **'.
22029         * xfaces.c <Qunspecified>: Make extern again.
22031         * syntax.c: Include sys/types.h before including regex.h, as
22032         required by POSIX.
22034         * doc.c (get_doc_string): Improve the format passed to `error'.
22036         * doprnt.c (doprnt): Improve commentary.
22038         * term.c (init_tty) [MSDOS]: Fix 1st argument to maybe_fatal.
22040         * Makefile.in (TAGS): Depend on $(M_FILE) and $(S_FILE), and scan
22041         them with etags.
22043         * makefile.w32-in (globals.h): Add a dummy recipe, to make any
22044         changes in globals.h immediately force recompilation.
22045         (TAGS): Depend on $(CURDIR)/m/intel386.h and
22046         $(CURDIR)/s/ms-w32.h.
22047         (TAGS-gmake): Scan $(CURDIR)/m/intel386.h and $(CURDIR)/s/ms-w32.h.
22049         * character.c (Fchar_direction): Function deleted.
22050         (syms_of_character): Don't defsubr it.
22051         <char-direction-table>: Deleted.
22053 2011-04-23  Eli Zaretskii  <eliz@gnu.org>
22055         Fix doprnt so it could be used again safely in `verror'.  (Bug#8435)
22056         * doprnt.c: Include limits.h.
22057         (SIZE_MAX): New macro.
22058         (doprnt): Return a size_t value.  2nd arg is now size_t.
22059         Many local variables are now size_t instead of int or unsigned.
22060         Improve overflow protection.  Support `l' modifier for integer
22061         conversions.  Support %l conversion.  Don't assume an EMACS_INT
22062         argument for integer conversions and for %c.
22064         * lisp.h (doprnt): Restore prototype.
22066         * makefile.w32-in ($(BLD)/callint.$(O)): Depend on
22067         $(SRC)/character.h.
22069         * Makefile.in (base_obj): Add back doprnt.o.
22071         * deps.mk (doprnt.o): Add back prerequisites.
22072         (callint.o): Depend on character.h.
22074         * eval.c (internal_lisp_condition_case): Include the handler
22075         representation in the error message.
22076         (verror): Call doprnt instead of vsnprintf.  Fix an off-by-one bug
22077         when breaking from the loop.
22079         * xdisp.c (vmessage): Call doprnt instead of vsnprintf.
22081         * callint.c (Fcall_interactively): When displaying error message
22082         about invalid control letter, pass the character's codepoint, not
22083         a pointer to its multibyte form.  Improve display of the character
22084         in octal and display also its hex code.
22086         * character.c (char_string): Use %x to display the (unsigned)
22087         codepoint of an invalid character, to avoid displaying a bogus
22088         negative value.
22090         * font.c (check_otf_features): Pass SDATA of SYMBOL_NAME to
22091         `error', not SYMBOL_NAME itself.
22093         * coding.c (Fencode_sjis_char, Fencode_big5_char): Use %c for
22094         character arguments to `error'.
22096         * charset.c (check_iso_charset_parameter): Fix incorrect argument
22097         to `error' in error message about FINAL_CHAR argument.  Make sure
22098         FINAL_CHAR is a character, and use %c when it is passed as
22099         argument to `error'.
22101 2011-04-23  Eli Zaretskii  <eliz@gnu.org>
22103         * s/ms-w32.h (localtime): Redirect to sys_localtime.
22105         * w32.c: Include <time.h>.
22106         (sys_localtime): New function.
22108 2011-04-23  Chong Yidong  <cyd@stupidchicken.com>
22110         * xdisp.c (init_xdisp): Initialize echo_area_window (Bug#6451).
22112         * buffer.c (syms_of_buffer): Doc fix (Bug#6902).
22114 2011-04-23  Samuel Thibault  <sthibault@debian.org>  (tiny change)
22116         * sysdep.c (wait_for_termination): On GNU Hurd, kill returns -1 on
22117         zombies (Bug#8467).
22119 2011-04-19  Eli Zaretskii  <eliz@gnu.org>
22121         * syntax.h (SETUP_SYNTAX_TABLE_FOR_OBJECT): Fix setting of
22122         gl_state.e_property when gl_state.object is Qt.
22124         * insdel.c (make_gap_larger): Remove limitation of buffer size
22125         to <= INT_MAX.
22127 2011-04-18  Chong Yidong  <cyd@stupidchicken.com>
22129         * xdisp.c (lookup_glyphless_char_display)
22130         (produce_glyphless_glyph): Handle cons cell entry in
22131         glyphless-char-display.
22132         (Vglyphless_char_display): Document it.
22134         * term.c (produce_glyphless_glyph): Handle cons cell entry in
22135         glyphless-char-display.
22137 2011-04-17  Chong Yidong  <cyd@stupidchicken.com>
22139         * xdisp.c (get_next_display_element): Remove unnecessary ifdefs.
22141         * termhooks.h (FRAME_WINDOW_P): Remove duplicated definitions.
22143         * dispextern.h (FACE_SUITABLE_FOR_ASCII_CHAR_P): Add missing
22144         definition for no-X builds.
22146 2011-04-16  Paul Eggert  <eggert@cs.ucla.edu>
22148         Static checks with GCC 4.6.0 and non-default toolkits.
22150         * s/sol2-6.h, s/unixware.h (PTY_TTY_NAME_SPRINTF): Protoize decl.
22152         * process.c (keyboard_bit_set): Define only if SIGIO.
22153         (send_process_trap): Mark it with NO_RETURN if it doesn't return.
22154         (send_process): Repair possible setjmp clobbering.
22156         * s/usg5-4-common.h (SETUP_SLAVE_PTY): Don't pass extra arg to 'fatal'.
22158         * eval.c: Include <stdio.h>, for vsnprintf on non-GNU/Linux hosts.
22160         * data.c (arith_error): Mark with NO_RETURN if it doesn't return.
22162         * alloc.c (bytes_used_when_full, SPARE_MEMORY, BYTES_USED):
22163         Define only if needed.
22165         * sysdep.c (_FILE_OFFSET_BITS): Make this hack even uglier
22166         by pacifying GCC about it.  Maybe it's time to retire it?
22167         * xfaces.c (USG, __TIMEVAL__): Likewise.
22169         * dispextern.h (struct redisplay_interface): Rename param
22170         to avoid shadowing.
22171         * termhooks.h (struct terminal): Likewise.
22172         * xterm.c (xembed_send_message): Likewise.
22174         * insdel.c (make_gap_smaller): Define only if
22175         USE_MMAP_FOR_BUFFERS || REL_ALLOC || DOUG_LEA_MALLOC.
22177         * keyboard.c (read_char): Make a var volatile so longjmp won't clobber
22178         it.
22180         * emacs.c (MAX_HEAP_BSS_DIFF, my_edata): Move to where they're used,
22181         so that we aren't warned about unused symbols.
22183         * xfns.c (Fx_file_dialog): Rename local to avoid shadowing.
22185         * xdisp.c (x_produce_glyphs): Mark var as initialized (Bug#8512).
22187         * xfns.c (x_real_positions): Mark locals as initialized.
22189         * xmenu.c (xmenu_show): Don't use uninitialized vars.
22191         * xterm.c: Fix problems found by static analysis with other toolkits.
22192         (toolkit_scroll_bar_interaction): Define and use only if USE_X_TOOLKIT.
22193         (x_dispatch_event): Declare static if USE_GTK, and
22194         define if USE_GTK || USE_X_TOOLKIT.
22195         (SET_SAVED_BUTTON_EVENT): Define only if USE_X_TOOLKIT || USE_GTK.
22196         * xterm.h (x_dispatch_event): Extern only if USE_X_TOOLKIT.
22197         * xterm.c, xterm.h (x_mouse_leave): Bring this function back, but only
22198         if defined HAVE_MENUS && !defined USE_X_TOOLKIT && !defined USE_GTK.
22200         * xmenu.c (menu_help_callback): Pointer type fixes.
22201         Use const pointers when pointing at readonly data.  Avoid pointer
22202         signedness clashes.
22203         (FALSE): Remove unused macro.
22204         (update_frame_menubar): Remove unused decl.
22206         * xfns.c (Fx_hide_tip): Move locals to avoid shadowing.
22208         * menu.c (push_submenu_start, push_submenu_end): Do not define unless
22209         USE_X_TOOLKIT || USE_GTK || HAVE_NS || defined HAVE_NTGUI.
22210         (single_menu_item): Rename local to avoid shadowing.
22212         * keyboard.c (make_lispy_event): Remove unused local var.
22214         * frame.c, frame.h (x_get_resource_string): Bring this back, but
22215         only if HAVE_X_WINDOWS && !USE_X_TOOLKIT.
22217         * bitmaps: Change bitmaps from unsigned char back to the X11
22218         compatible char.  Avoid the old compiler warnings about
22219         out-of-range initializers by using, for example, '\xab' rather
22220         than 0xab.
22222         * xgselect.c (xgselect_initialize): Check vs interface
22223         even if ! (defined (USE_GTK) || defined (HAVE_GCONF)).
22225         * xmenu.c (xmenu_show): Rename parm to avoid shadowing.
22227         * xterm.c (x_create_toolkit_scroll_bar): Use const * for pointers
22228         to read-only memory.
22230         * fns.c (vector): Remove; this old hack is no longer needed.
22232         * xsmfns.c (create_client_leader_window): Rename shadowing arg.
22233         Remove unused var.
22234         (gdk_x11_set_sm_client_id) [!USE_GTK]: Don't define.
22236         * xrdb.c (x_load_resources): Omit unused local.
22238         * xfns.c (free_frame_menubar, atof): Remove duplicate decls.
22239         (x_window): Rename locals to avoid shadowing.
22240         (USG): Use the kludged USG macro, to pacify gcc.
22242         * xterm.c (x_alloc_nearest_color_for_widget): Remove; unused.
22243         (x_term_init): Remove local to avoid shadowing.
22245         * xfns.c, xterm.c (_XEditResCheckMessages): Protoize decl.
22247         * xdisp.c, dispextern.h (set_vertical_scroll_bar): Now extern if
22248         USE_TOOLKIT_SCROLL_BARS && !USE_GTK, as xterm.c needs it then.
22250 2011-04-16  Eli Zaretskii  <eliz@gnu.org>
22252         * gnutls.c (Fgnutls_boot): Don't pass Lisp_Object to `error'.
22254         Fix regex.c, syntax.c and friends for buffers > 2GB.
22255         * syntax.h (struct gl_state_s): Declare character position members
22256         EMACS_INT.
22258         * syntax.c (update_syntax_table): Declare 2nd argument EMACS_INT.
22260         * textprop.c (verify_interval_modification, interval_of):
22261         Declare arguments EMACS_INT.
22263         * intervals.c (adjust_intervals_for_insertion): Declare arguments
22264         EMACS_INT.
22266         * intervals.h (CHECK_TOTAL_LENGTH): Cast to EMACS_INT, not `int'.
22268         * indent.c (Fvertical_motion): Local variable it_start is now
22269         EMACS_INT.
22271         * regex.c (re_match, re_match_2, re_match_2_internal)
22272         (bcmp_translate, regcomp, regexec, print_double_string)
22273         (group_in_compile_stack, re_search, re_search_2, regex_compile)
22274         (re_compile_pattern, re_exec): Declare arguments and local
22275         variables `size_t' and `ssize_t' and return values `regoff_t', as
22276         appropriate.
22277         (POP_FAILURE_REG_OR_COUNT) <pfreg>: Declare `long'.
22278         (CHECK_INFINITE_LOOP) <failure>: Declare `ssize_t'.
22279         <compile_stack_type>: `size' and `avail' are now `size_t'.
22281         * regex.h <regoff_t>: Use ssize_t, not int.
22282         (re_search, re_search_2, re_match, re_match_2): Arguments that
22283         specify buffer/string position and length are now ssize_t and
22284         size_t.  Return type is regoff_t.
22286 2011-04-16  Ben Key  <bkey76@gmail.com>
22288         * nsfont.m: Fixed bugs in ns_get_family and
22289         ns_descriptor_to_entity that were caused by using free to
22290         deallocate memory blocks that were allocated by xmalloc (via
22291         xstrdup).  This caused Emacs to crash when compiled with
22292         XMALLOC_OVERRUN_CHECK defined (when Emacs was configured with
22293         --enable-checking=xmallocoverrun).  xfree is now used to
22294         deallocate these memory blocks.
22296 2011-04-15  Paul Eggert  <eggert@cs.ucla.edu>
22298         * sysdep.c (emacs_read): Remove unnecessary check vs MAX_RW_COUNT.
22300         emacs_write: Accept and return EMACS_INT for sizes.
22301         See http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00514.html
22302         et seq.
22303         * gnutls.c, gnutls.h (emacs_gnutls_read, emacs_gnutls_write):
22304         Accept and return EMACS_INT.
22305         (emacs_gnutls_write): Return the number of bytes written on
22306         partial writes.
22307         * sysdep.c, lisp.h (emacs_read, emacs_write): Likewise.
22308         (emacs_read, emacs_write): Remove check for negative size, as the
22309         Emacs source code has been audited now.
22310         * sysdep.c (MAX_RW_COUNT): New macro, to work around kernel bugs.
22311         (emacs_read, emacs_write): Use it.
22312         * process.c (send_process): Adjust to the new signatures of
22313         emacs_write and emacs_gnutls_write.  Do not attempt to store
22314         a byte offset into an 'int'; it might overflow.
22315         See http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00483.html
22317         * sound.c: Don't assume sizes fit in 'int'.
22318         (struct sound_device.period_size, alsa_period_size):
22319         Return EMACS_INT, not int.
22320         (struct sound_device.write, vox_write, alsa_write):
22321         Accept EMACS_INT, not int.
22322         (wav_play, au_play): Use EMACS_INT to store sizes and to
22323         record read return values.
22325 2011-04-15  Ben Key  <bkey76@gmail.com>
22327         * keyboard.c (Qundefined): Don't declare static since it is used
22328         in nsfns.m.
22329         * xfaces.c (Qbold, Qexpanded, Qitalic, Qcondensed): Don't declare
22330         static since they are used in nsfont.m.
22332 2011-04-15  Stefan Monnier  <monnier@iro.umontreal.ca>
22334         * process.c (Qprocessp): Don't declare static.
22335         * lisp.h (Qprocessp): Declare again.
22337 2011-04-15  Juanma Barranquero  <lekktu@gmail.com>
22339         * font.c (Qopentype): Don't make static (used from w32uniscribe.c).
22341 2011-04-14  Paul Eggert  <eggert@cs.ucla.edu>
22343         Improve C-level modularity by making more things 'static'.
22345         Don't publish debugger-only interfaces to other modules.
22346         * lisp.h (safe_debug_print, debug_output_compilation_hack):
22347         (verify_bytepos, count_markers): Move decls to the only modules
22348         that need them.
22349         * region-cache.h (pp_cache): Likewise.
22350         * window.h (check_all_windows): Likewise.
22351         * marker.c, print.c, region-cache.c, window.c: Decls moved here.
22353         * sysdep.c (croak): Now static, if
22354         defined TIOCNOTTY || defined USG5 || defined CYGWIN.
22355         * syssignal.h (croak): Declare only if not static.
22357         * alloc.c (refill_memory_reserve): Now static if
22358         !defined REL_ALLOC || defined SYSTEM_MALLOC.
22359         * lisp.h (refill_memory_reserve): Declare only if not static.
22361         * xsettings.c, xsettings.h (xsettings_get_system_normal_font):
22362         Define only if USE_LUCID.
22364         * xrdb.c (x_customization_string, x_rm_string): Now static.
22366         * xmenu.c (x_menu_wait_for_event): Export only if USE_MOTIF.
22367         * xterm.h (x_menu_wait_for_event): Declare only if USE_MOTIF.
22369         * xdisp.c (draw_row_with_mouse_face): Now static.
22370         * dispextern.h (draw_row_with_mouse_fave): Remove decl.
22372         * window.h (check_all_windows): Mark externally visible.
22374         * window.c (window_deletion_count): Now static.
22376         * undo.c: Make symbols static if they're not exported.
22377         (last_undo_buffer, last_boundary_position, pending_boundary):
22378         Now static.
22380         * textprop.c (interval_insert_behind_hooks): Now static.
22381         (interval_insert_in_front_hooks): Likewise.
22383         * term.c: Make symbols static if they're not exported.
22384         (tty_turn_off_highlight, get_tty_terminal, max_frame_cols):
22385         (max_frame_lines, tty_set_terminal_modes):
22386         (tty_reset_terminal_modes, tty_turn_off_highlight):
22387         (get_tty_terminal): Now static.
22388         (term_mouse_moveto): Do not define if HAVE_WINDOW_SYSTEM.
22389         * termhooks.h (term_mouse_moveto): Do not declare if
22390         HAVE_WINDOW_SYSTEM.
22391         * dispextern.h (tty_set_terminal_modes, tty_reset_terminal_modes):
22392         (tty_turn_off_highlight, get_tty_terminal): Remove decls.
22394         * sysdep.c: Make symbols static if they're not exported.
22395         (emacs_get_tty, emacs_set_tty, old_fcntl_flags, old_fcntl_owner):
22396         Now static.
22397         (sigprocmask_set, full_mask): Remove; unused.
22398         (wait_debugging): Mark as visible.
22399         * syssignal.h (SIGFULLMASK, full_mask): Remove decls.
22400         * systty.h (emacs_get_tty, emacs_set_tty): Remove decls.
22402         * syntax.c (syntax_temp): Define only if !__GNUC__.
22404         * sound.c (current_sound_device, current_sound): Now static.
22406         * search.c (searchbufs, searchbuf_head): Now static.
22408         * scroll.c (scroll_cost): Remove; unused.
22409         * dispextern.h (scroll_cost): Remove decl.
22411         * region-cache.h (pp_cache): Mark as externally visible.
22413         * process.c: Make symbols static if they're not exported.
22414         (process_tick, update_tick, create_process, chan_process):
22415         (Vprocess_alist, proc_buffered_char, datagram_access):
22416         (fd_callback_data, send_process_frame, process_sent_to): Now static.
22417         (deactivate_process): Mark defn as static, as well as decl.
22418         * lisp.h (create_process): Remove decl.
22419         * process.h (chan_process, Vprocess_alist): Remove decls.
22421         * print.c: Make symbols static if they're not exported.
22422         (print_depth, new_backquote_output, being_printed, print_buffer):
22423         (print_buffer_size, print_buffer_pos, print_buffer_pos_byte):
22424         (print_interval, print_number_index, initial_stderr_stream):
22425         Now static.
22426         * lisp.h (Fprinc): Remove decl.
22427         (debug_output_compilation_hack): Mark as externally visible.
22429         * sysdep.c (croak): Move decl from here to syssignal.h.
22430         * syssignal.h (croak): Put it here, so the API can be checked when
22431         'croak' is called from dissociate_if_controlling_tty.
22433         * minibuf.c: Make symbols static if they're not exported.
22434         (minibuf_save_list, choose_minibuf_frame): Now static.
22435         * lisp.h (choose_minibuf_frame): Remove decl.
22437         * lisp.h (verify_bytepos, count_markers): Mark as externally visible.
22439         * lread.c: Make symbols static if they're not exported.
22440         (read_objects, initial_obarray, oblookup_last_bucket_number):
22441         Now static.
22442         (make_symbol): Remove; unused.
22443         * lisp.h (initial_obarray, make_symbol): Remove decls.
22445         * keyboard.c: Make symbols static if they're not exported.
22446         (single_kboard, recent_keys_index, total_keys, recent_keys):
22447         (this_command_key_count_reset, raw_keybuf, raw_keybuf_count):
22448         (this_single_command_key_start, echoing, last_auto_save):
22449         (read_key_sequence_cmd, dribble, recursive_edit_unwind):
22450         (command_loop, echo_now, keyboard_init_hook, help_char_p):
22451         (quit_throw_to_read_char, command_loop_2, top_level_1, poll_timer):
22452         (Vlispy_mouse_stem, double_click_count):
22453         Now static.
22454         (force_auto_save_soon): Define only if SIGDANGER.
22455         (ignore_mouse_drag_p): Now static if
22456         !defined HAVE_WINDOW_SYSTEM || defined USE_GTK || defined HAVE_NS.
22457         (print_help): Remove; unused.
22458         (stop_character, last_timer_event): Mark as externally visible.
22459         * keyboard.h (ignore_mouse_drag_p): Declare only if
22460         defined HAVE_WINDOW_SYSTEM && !defined USE_GTK && !defined HAVE_NS.
22461         (echo_now, help_char_p, quit_throw_to_read_char): Remove decls.
22462         * lisp.h (echoing): Remove decl.
22463         (force_auto_save_soon): Declare only if SIGDANGER.
22464         * xdisp.c (redisplay_window): Simplify code, to make it more
22465         obvious that ignore_mouse_drag_p is not accessed if !defined
22466         USE_GTK && !defined HAVE_NS.
22468         * intervals.c: Make symbols static if they're not exported.
22469         (merge_properties_sticky, merge_interval_right, delete_interval):
22470         Now static.
22471         * intervals.h (merge_interval_right, delete_interval): Remove decls.
22473         * insdel.c: Make symbols static if they're not exported.
22474         However, leave prepare_to_modify_buffer alone.  It's never
22475         called from outside this function, but that appears to be a bug.
22476         (combine_after_change_list, combine_after_change_buffer):
22477         (adjust_after_replace, signal_before_change): Now static.
22478         (adjust_after_replace_noundo): Remove; unused.
22479         * lisp.h (adjust_after_replace, adjust_after_replace_noundo):
22480         (signal_before_change): Remove decls.
22482         * indent.c (val_compute_motion, val_vmotion): Now static.
22484         * image.c: Make symbols static if they're not exported.
22485         * dispextern.h (x_create_bitmap_from_xpm_data): Do not declare
22486         if USE_GTK.
22487         * image.c (x_create_bitmap_from_xpm_data): Do not define if USE_GTK.
22488         (xpm_color_cache, ct_table, ct_colors_allocated): Now static.
22490         * fringe.c (standard_bitmaps): Now static.
22491         (max_used_fringe_bitmap): Now static, unless HAVE_NS.
22493         * frame.c: Make symbols static if they're not exported.
22494         (x_report_frame_params, make_terminal_frame): Now static.
22495         (get_frame_param): Now static, unless HAVE_NS.
22496         (x_fullscreen_adjust): Define if WINDOWSNT, not if HAVE_WINDOW_SYSTEM.
22497         (x_get_resource_string): Remove; not used.
22498         * frame.h (make_terminal_frame, x_report_frame_params):
22499         (x_get_resource_string); Remove decls.
22500         (x_fullscreen_adjust): Declare only if WINDOWSNT.
22501         * lisp.h (get_frame_param): Declare only if HAVE_NS.
22503         * font.c, fontset.c: Make symbols static if they're not exported.
22504         * dispextern.h (FACE_SUITABLE_FOR_ASCII_CHAR_P): New macro.
22505         (FACE_SUITABLE_FOR_CHAR_P): Use it.
22506         * font.c (font_close_object): Now static.
22507         * font.h (font_close_object): Remove.
22508         * fontset.c (FONTSET_OBJLIST): Remove.
22509         (free_realized_fontset) #if-0 the body, which does nothing.
22510         (face_suitable_for_char_p): #if-0, as it's never called.
22511         * fontset.h (face_suitable_for_char_p): Remove decl.
22512         * xfaces.c (face_at_string_position):
22513         Use FACE_SUITABLE_FOR_ASCII_CHAR_P, not FACE_SUITABLE_FOR_CHAR_P,
22514         since 0 is always ASCII.
22516         * fns.c (weak_hash_tables): Now static.
22518         * fileio.c: Make symbols static if they're not exported.
22519         (auto_saving, auto_save_mode_bits, auto_save_error_occurred):
22520         (Vwrite_region_annotation_buffers): Now static.
22522         * eval.c: Make symbols static if they're not exported.
22523         (backtrace_list, lisp_eval_depth, when_entered_debugger): Now static.
22524         * lisp.h (backtrace_list): Remove decl.
22526         * emacs.c: Make symbols static if they're not exported.
22527         (malloc_state_ptr, malloc_using_checking, syms_of_emacs):
22528         (fatal_error_code, fatal_error_signal_hook, standard_args):
22529         Now static.
22530         (fatal_error_signal): Now static, unless FLOAT_CATCH_SIGKILL.
22531         (DEFINE_DUMMY_FUNCTION): Mark function as externally visible.
22532         (__CTOR_LIST__, __DTOR_LIST__): Now externally visible.
22533         * lisp.h (fatal_error_signal_hook): Remove decl.
22534         (fatal_error_signal): Declare only if FLOAT_CATCH_SIGKILL.
22536         * editfns.c: Move a (normally-unused) function to its only use.
22537         * editfns.c, lisp.h (get_operating_system_release): Remove.
22538         * process.c (init_process) [DARWIN_OS]: Do it inline, as it is not
22539         worth the hassle of breaking this out.
22541         * xterm.c: Make symbols static if they're not exported.
22542         (x_raise_frame, x_lower_frame, x_wm_set_window_state):
22543         (x_wm_set_icon_pixmap, x_initialize, XTread_socket_fake_io_error):
22544         (x_destroy_window, x_delete_display):
22545         Now static.
22546         (x_dispatch_event): Now static if ! (USE_MOTIF || USE_X_TOOLKIT).
22547         (x_mouse_leave): Remove; unused.
22548         * xterm.h (x_display_info_for_name, x_raise_frame, x_lower_frame):
22549         (x_destroy_window, x_wm_set_window_state, x_wm_set_icon_pixmap):
22550         (x_delete_display, x_initialize, x_set_border_pixel, x_screen_planes):
22551         Remove decls.
22552         (x_mouse_leave): Declare only if WINDOWSNT.
22553         (x_dispatch_event): Declare only if USE_MOTIF or USE_X_TOOLKIT.
22554         (xic_create_fontsetname): Declare only if HAVE_X_WINDOWS &&
22555         USE_X_TOOLKIT.
22557         * ftxfont.c: Make symbols static if they're not exported.
22558         (ftxfont_driver): Export only if !defined HAVE_XFT && def8ined
22559         HAVE_FREETYPE.
22560         * font.h (ftxfont_driver): Likewise.
22562         * xfns.c: Make symbols static if they're not exported.
22563         (x_last_font_name, x_display_info_for_name):
22564         (x_set_foreground_color, x_set_background_color, x_set_mouse_color):
22565         (x_set_cursor_color, x_set_border_pixel, x_set_border_color):
22566         (x_set_cursor_type, x_set_icon_type, x_set_icon_name):
22567         (x_set_scroll_bar_foreground, x_set_scroll_bar_background):
22568         (x_explicitly_set_name, x_set_title, xic_defaut_fontset, tip_timer):
22569         (last_show_tip_args): Now static.
22570         (xic_defaut_fontset, xic_create_fontsetname): Define only if
22571         defined HAVE_X_WINDOWS && defined USE_X_TOOLKIT
22572         (x_screen_planes): Remove; unused.
22573         * dispextern.h (x_screen_planes): Remove decl.
22575         * dispnew.c: Make symbols static if they're not exported.
22576         * dispextern.h (redraw_garbaged_frames, scrolling):
22577         (increment_row_positions): Remove.
22578         * dispnew.c (new_glyph_matrix, increment_row_positions, scrolling):
22579         (delayed_size_change, glyph_matrix_count, glyph_pool_count):
22580         Now static.
22581         (redraw_garbaged_frames): Remove; unused.
22583         * xfaces.c: Make symbols static if they're not exported.
22584         * dispextern.h (ascii_face_of_lisp_face, free_realized_face):
22585         Remove decls.
22586         * xterm.h (defined_color): Remove decls.
22587         (x_free_dpy_colors): Declare only if USE_X_TOOLKIT.
22588         * xfaces.c (tty_suppress_bold_inverse_default_colors_p):
22589         (menu_face_changed_default, defined_color, free_realized_face):
22590         (x_free_dpy_colors): Define only if USE_X_TOOLKIT.
22591         (ascii_face_of_lisp_face): Remove; unused.
22593         * xdisp.c: Make symbols static if they're not exported.
22594         * dispextern.h (scratch_glyph_row, window_box_edges):
22595         (glyph_to_pixel_coords, set_cursor_from_row):
22596         (get_next_display_element, set_iterator_to_next):
22597         (highlight_trailing_whitespace, frame_to_window_pixel_xy):
22598         (show_mouse_face): Remove decls
22599         * frame.h (message_buf_print): Likewise.
22600         * lisp.h (pop_message, set_message, check_point_in_composition):
22601         Likewise.
22602         * xterm.h (set_vertical_scroll_bar): Likewise.
22603         * xdisp.c (list_of_error, Vmessage_stack, line_number_displayed):
22604         (message_buf_print, scratch_glyph_row, displayed_buffer):
22605         (set_iterator_to_next, pop_message, set_message, set_cursor_from_row):
22606         (get_next_display_element, show_mouse_face, window_box_edges):
22607         (frame_to_window_pixel_xy, check_point_in_composition):
22608         (set_vertical_scroll_bar, highlight_trailing_whitespace): Now static.
22609         (glyph_to_pixel_coords): Remove; unused.
22611         * dired.c (file_name_completion): Now static.
22613         * dbusbind.c (xd_in_read_queued_messages): Now static.
22615         * lisp.h (circular_list_error, FOREACH): Remove; unused.
22616         * data.c (circular_list_error): Remove.
22618         * commands.h (last_point_position, last_point_position_buffer):
22619         (last_point_position_window): Remove decls.
22620         * keyboard.c: Make these variables static.
22622         * coding.h (coding, code_convert_region, encode_coding_gap):
22623         Remove decls.
22624         * coding.c (Vsjis_coding_system, Vbig5_coding_system):
22625         (iso_code_class, detect_coding, code_convert_region): Now static.
22626         (encode_coding_gap): Remove; unused.
22628         * chartab.c (chartab_chars, chartab_bits): Now static.
22630         * charset.h (charset_iso_8859_1): Remove decl.
22631         * charset.c (charset_iso_8859_1, charset_emacs, map_charset_for_dump):
22632         Now static.
22634         * ccl.h (check_ccl_update, Vccl_program_table): Remove decls.
22635         * ccl.c (Vccl_program_table): Now static.
22636         (check_ccl_update): Remove; unused.
22638         * category.c (SET_CATEGORY_SET, set_category_set): Move here.
22639         * category.h: ... from here.
22640         * category.c (check_category_table, set_category_set): Now static.
22642         * casetab.c (Vascii_upcase_table, Vascii_eqv_table): Now static.
22643         * lisp.h: Remove these decls.
22645         * buffer.c (buffer_count): Remove unused var.
22647         * bidi.c (bidi_dump_cached_states): Mark as externally visible,
22648         so that it's not optimized away.
22649         (bidi_ignore_explicit_marks_for_paragraph_level): Likewise.
22650         * dispextern.h (bidi_dump_cached_states): Remove, since it's
22651         exported only to the debugger.
22653         * atimer.c (alarm_signal_handler, run_all_atimers): Now static.
22654         * atimer.h (run_all_atimers): Remove; not exported.
22656         font.c: Make copy_font_spec and merge_font_spec ordinary C functions.
22657         * font.c (copy_font_spec): Rename from Fcopy_font_spec, since it
22658         was inaccessible from Lisp.
22659         (merge_font_spec): Likewise, renaming from Fmerge_font_spec.
22660         * font.c, font.h, fontset.c, xfaces.c, xfont.c: Change all uses.
22662         alloc.c: Import and export fewer symbols, and remove unused items.
22663         * lisp.h (suppress_checking, die): Declare only if ENABLE_CHECKING
22664         is defined.
22665         (suppress_checking): Add EXTERNALLY_VISIBLE attribute, so that
22666         it's not optimized away by whole-program optimization.
22667         (message_enable_multibyte, free_misc): Remove.
22668         (catchlist, handlerlist, mark_backtrace):
22669         Declare only if BYTE_MARK_STACK.
22670         (mark_byte_stack): Likewise, fixing a ifdef-vs-if typo.
22671         * alloc.c (pure): Export only if VIRT_ADDR_VARIES is defined.
22672         (message_enable_multibyte): Remove decl.
22673         (free_misc, interval_free_list, float_block, float_block_index):
22674         (n_float_blocks, float_free_list, cons_block, cons_block_index):
22675         (cons_free_list, last_marked_index):
22676         Now static.
22677         (suppress_checking, die): Define only if ENABLE_CHECKING is defined.
22678         * eval.c (catchlist, handlerlist): Export only if BYTE_MARK_STACK.
22679         (mark_backtrace): Define only if BYTE_MARK_STACK.
22680         * xdisp.c (message_enable_multibyte): Now static.
22682         Declare Lisp_Object Q* variables to be 'static' if not exported.
22683         This makes it easier for human readers (and static analyzers)
22684         to see whether these variables are used from other modules.
22685         * alloc.c, buffer.c, bytecode.c, callint.c, casetab.c, category.c:
22686         * ccl.c, character.c, charset.c, cmds.c, coding.c, composite.c:
22687         * data.c, dbusbind.c, dired.c, editfns.c, eval.c, fileio.c, fns.c:
22688         * font.c, frame.c, fringe.c, ftfont.c, image.c, keyboard.c, keymap.c:
22689         * lread.c, macros.c, minibuf.c, print.c, process.c, search.c:
22690         * sound.c, syntax.c, textprop.c, window.c, xdisp.c, xfaces.c, xfns.c:
22691         * xmenu.c, xselect.c:
22692         Declare Q* vars static if they are not used in other modules.
22693         * ccl.h, character.h, charset.h, coding.h, composite.h, font.h:
22694         * frame.h, intervals.h, keyboard.h, lisp.h, process.h, syntax.h:
22695         Remove decls of unexported vars.
22696         * keyboard.h (EVENT_HEAD_UNMODIFIED): Remove now-unused macro.
22698         * lisp.h (DEFINE_FUNC): Make sname 'static'.
22700         Make Emacs functions such as Fatom 'static' by default.
22701         This makes it easier for human readers (and static analyzers)
22702         to see whether these functions can be called from other modules.
22703         DEFUN now defines a static function.  To make the function external
22704         so that it can be used in other C modules, use the new macro DEFUE.
22705         * lisp.h (Funibyte_char_to_multibyte, Fsyntax_table_p):
22706         (Finit_image_library):
22707         (Feval_region, Fbacktrace, Ffetch_bytecode, Fswitch_to_buffer):
22708         (Ffile_executable_p, Fmake_symbolic_link, Fcommand_execute):
22709         (Fget_process, Fdocumentation_property, Fbyte_code, Ffile_attributes):
22710         Remove decls, since these functions are now static.
22711         (Funintern, Fget_internal_run_time): New decls, since these functions
22712         were already external.
22714         * alloc.c, buffer.c, callint.c, callproc.c, casefiddle.c, casetab.c:
22715         * ccl.c, character.c, chartab.c, cmds.c, coding.c, data.c, dispnew.c:
22716         * doc.c, editfns.c, emacs.c, eval.c, fileio.c, filelock.c, floatfns.c:
22717         * fns.c, font.c, fontset.c, frame.c, image.c, indent.c:
22718         * keyboard.c, keymap.c, lread.c:
22719         * macros.c, marker.c, menu.c, minibuf.c, print.c, process.c, search.c:
22720         * syntax.c, term.c, terminal.c, textprop.c, undo.c:
22721         * window.c, xdisp.c, xfaces.c, xfns.c, xmenu.c, xsettings.c:
22722         Mark functions with DEFUE instead of DEFUN,
22723         if they are used in other modules.
22724         * buffer.c (Fset_buffer_major_mode, Fdelete_overlay): New forward
22725         decls for now-static functions.
22726         * buffer.h (Fdelete_overlay): Remove decl.
22727         * callproc.c (Fgetenv_internal): Mark as internal.
22728         * composite.c (Fremove_list_of_text_properties): Remove decl.
22729         (Fcomposition_get_gstring): New forward static decl.
22730         * composite.h (Fcomposite_get_gstring): Remove decl.
22731         * dired.c (Ffile_attributes): New forward static decl.
22732         * doc.c (Fdocumntation_property): New forward static decl.
22733         * eval.c (Ffetch_bytecode): New forward static decl.
22734         (Funintern): Remove extern decl; now in .h file where it belongs.
22735         * fileio.c (Fmake_symbolic_link): New forward static decl.
22736         * image.c (Finit_image_library): New forward static decl.
22737         * insdel.c (Fcombine_after_change_execute): Make forward decl static.
22738         * intervals.h (Fprevious_property_change):
22739         (Fremove_list_of_text_properties): Remove decls.
22740         * keyboard.c (Fthis_command_keys): Remove decl.
22741         (Fcommand_execute): New forward static decl.
22742         * keymap.c (Flookup_key): New forward static decl.
22743         (Fcopy_keymap): Now static.
22744         * keymap.h (Flookup_key): Remove decl.
22745         * process.c (Fget_process): New forward static decl.
22746         (Fprocess_datagram_address): Mark as internal.
22747         * syntax.c (Fsyntax_table_p): New forward static decl.
22748         (skip_chars): Remove duplicate decl.
22749         * textprop.c (Fprevious_property_change): New forward static decl.
22750         * window.c (Fset_window_fringes, Fset_window_scroll_bars):
22751         Now internal.
22752         (Fset_window_margins, Fset_window_vscroll): New forward static decls.
22753         * window.h (Fset_window_vscroll, Fset_window_margins): Remove decls.
22755         * editfns.c (Fformat): Remove unreachable code.
22757 2011-04-14  Andreas Schwab  <schwab@linux-m68k.org>
22759         * fileio.c (Finsert_file_contents): Fix typo in 2005-05-13
22760         change.  (Bug#8496)
22762 2011-04-13  Eli Zaretskii  <eliz@gnu.org>
22764         * xdisp.c (handle_invisible_prop): Don't call bidi_paragraph_init
22765         when at ZV.  (Bug#8487)
22767 2011-04-12  Andreas Schwab  <schwab@linux-m68k.org>
22769         * charset.c (Fclear_charset_maps): Use xfree instead of free.
22770         (Bug#8437)
22771         * keyboard.c (parse_tool_bar_item): Likewise.
22772         * sound.c (sound_cleanup, alsa_close): Likewise.
22773         * termcap.c (tgetent): Likewise.
22774         * xfns.c (x_default_font_parameter): Likewise.
22775         * xsettings.c (read_and_apply_settings): Likewise.
22777         * alloc.c (overrun_check_malloc, overrun_check_realloc)
22778         (overrun_check_free): Protoize.
22780 2011-04-12  Paul Eggert  <eggert@cs.ucla.edu>
22782         * sysdep.c (emacs_read, emacs_write): Check for negative sizes
22783         since callers should never pass a negative size.
22784         Change the signature to match that of plain 'read' and 'write'; see
22785         <http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00397.html>.
22786         * lisp.h: Update prototypes of emacs_write and emacs_read.
22788 2011-04-11  Eli Zaretskii  <eliz@gnu.org>
22790         * xdisp.c (redisplay_window): Don't try to determine the character
22791         position of the scroll margin if the window start point w->startp
22792         is outside the buffer's accessible region.  (Bug#8468)
22794 2011-04-10  Eli Zaretskii  <eliz@gnu.org>
22796         Fix write-region and its subroutines for buffers > 2GB.
22797         * fileio.c (a_write, e_write): Modify declaration of arguments and
22798         local variables to support buffers larger than 2GB.
22799         (Fcopy_file): Use EMACS_INT for return value of emacs_read.
22801         * sysdep.c (emacs_write, emacs_read): Use ssize_t for last
22802         argument, local variables, and return value.
22804         * lisp.h: Update prototypes of emacs_write and emacs_read.
22806         * sound.c (vox_write): Use ssize_t for return value of emacs_write.
22808 2011-04-10  Paul Eggert  <eggert@cs.ucla.edu>
22810         * xdisp.c (vmessage): Use memchr, not strnlen, which some hosts lack.
22812         Fix more problems found by GCC 4.6.0's static checks.
22814         * xdisp.c (vmessage): Use a better test for character truncation.
22816         * charset.c (load_charset_map): <, not <=, for optimization,
22817         and to avoid potential problems with integer overflow.
22818         * chartab.c (sub_char_table_set_range, char_table_set_range): Likewise.
22819         * casetab.c (set_identity, shuffle): Likewise.
22820         * editfns.c (Fformat): Likewise.
22821         * syntax.c (skip_chars): Likewise.
22823         * xmenu.c (set_frame_menubar): Allocate smaller local vectors.
22824         This also lets GCC 4.6.0 generate slightly better loop code.
22826         * callint.c (Fcall_interactively): <, not <=, for optimization.
22827         (Fcall_interactively): Count the number of arguments produced,
22828         not the number of arguments given.  This is simpler and lets GCC
22829         4.6.0 generate slightly better code.
22831         * ftfont.c: Distingish more carefully between FcChar8 and char.
22832         The previous code passed unsigned char * to a functions like
22833         strlen and xstrcasecmp that expect char *, which does not
22834         conform to the C standard.
22835         (get_adstyle_property, ftfont_pattern_entity): Use FcChar8 for
22836         arguments to FcPatternGetString, and explicitly cast FcChar8 * to
22837         char * when the C standard requires it.
22839         * keyboard.c (read_char): Remove unused var.
22841         * eval.c: Port to Windows vsnprintf (Bug#8435).
22842         Include <limits.h>.
22843         (SIZE_MAX): Define if the headers do not.
22844         (verror): Do not give up if vsnprintf returns a negative count.
22845         Instead, grow the buffer.  This ports to Windows vsnprintf, which
22846         does not conform to C99.  Problem reported by Eli Zaretskii.
22847         Also, simplify the allocation scheme, by avoiding the need for
22848         calling realloc, and removing the ALLOCATED variable.
22850         * eval.c (verror): Initial buffer size is 4000 (not 200) bytes.
22852         Remove invocations of doprnt, as Emacs now uses vsnprintf.
22853         But keep the doprint source code for now, as we might revamp it
22854         and use it again (Bug#8435).
22855         * lisp.h (doprnt): Remove.
22856         * Makefile.in (base_obj): Remove doprnt.o.
22857         * deps.mk (doprnt.o): Remove.
22859         error: Print 32- and 64-bit integers portably (Bug#8435).
22860         Without this change, on typical 64-bit hosts error ("...%d...", N)
22861         was used to print both 32- and 64-bit integers N, which relied on
22862         undefined behavior.
22863         * lisp.h, m/amdx86-64.h, m/ia64.h, m/ibms390x.h (pEd): New macro.
22864         * lisp.h (error, verror): Mark as printf-like functions.
22865         * eval.c (verror): Use vsnprintf, not doprnt, to do the real work.
22866         Report overflow in size calculations when allocating printf buffer.
22867         Do not truncate output string at its first null byte.
22868         * xdisp.c (vmessage): Use vsnprintf, not doprnt, to do the real work.
22869         Truncate the output at a character boundary, since vsnprintf does not
22870         do that.
22871         * charset.c (check_iso_charset_parameter): Convert internal
22872         character to string before calling 'error', since %c now has the
22873         printf meaning.
22874         * coding.c (Fdecode_sjis_char, Fdecode_big5_char): Avoid int
22875         overflow when computing char to be passed to 'error'.  Do not
22876         pass Lisp_Object to 'error'; pass the integer instead.
22877         * nsfns.m (Fns_do_applescript): Use int, not long, since it's
22878         formatted with plain %d.
22880         * eval.c (internal_lisp_condition_case): Don't pass spurious arg.
22882         * keyboard.c (access_keymap_keyremap): Print func name, not garbage.
22884         * coding.c (Fdecode_sjis_char): Don't assume CODE fits in int.
22886         * xterm.c (x_catch_errors): Remove duplicate declaration.
22888         * term.c (maybe_fatal): Mark its 3rd arg as a printf format, too.
22890         * xdisp.c, lisp.h (message_nolog): Remove; unused.
22892 2011-04-10  Jim Meyering  <meyering@redhat.com>
22894         use ssize_t and size_t for read- and write-like emacs_gnutls_* functions
22895         * gnutls.c (emacs_gnutls_read): Adjust signature to be more read-like:
22896         return ssize_t not "int", and use size_t as the buffer length.
22897         (emacs_gnutls_write): Likewise, and make the buffer pointer "const".
22898         * gnutls.h: Update declarations.
22899         * process.c (read_process_output): Use ssize_t, to match.
22900         (send_process): Likewise.
22902 2011-04-09  Chong Yidong  <cyd@stupidchicken.com>
22904         * image.c (Fimagemagick_types): Doc fix, and comment cleanup.
22906 2011-04-09  Chong Yidong  <cyd@stupidchicken.com>
22908         * ftfont.c (get_adstyle_property, ftfont_pattern_entity):
22909         Use unsigned char, to match FcChar8 type definition.
22911         * xterm.c (handle_one_xevent):
22912         * xmenu.c (create_and_show_popup_menu):
22913         * xselect.c (x_decline_selection_request)
22914         (x_reply_selection_request): Avoid type-punned deref of X events.
22916 2011-04-09  Eli Zaretskii  <eliz@gnu.org>
22918         Fix some uses of `int' instead of EMACS_INT.
22919         * search.c (string_match_1, fast_string_match)
22920         (fast_c_string_match_ignore_case, fast_string_match_ignore_case)
22921         (scan_buffer, find_next_newline_no_quit)
22922         (find_before_next_newline, search_command, Freplace_match)
22923         (Fmatch_data): Make some `int' variables be EMACS_INT.
22925         * xdisp.c (display_count_lines): 3rd argument and return value now
22926         EMACS_INT.  All callers changed.
22927         (pint2hrstr): Last argument is now EMACS_INT.
22929         * coding.c (detect_coding_utf_8, detect_coding_emacs_mule)
22930         (detect_coding_iso_2022, detect_coding_sjis, detect_coding_big5)
22931         (detect_coding_ccl, detect_coding_charset, decode_coding_utf_8)
22932         (decode_coding_utf_16, decode_coding_emacs_mule)
22933         (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
22934         (decode_coding_ccl, decode_coding_charset)
22935         <consumed_chars, consumed_chars_base>: Declare EMACS_INT.
22936         (decode_coding_iso_2022, decode_coding_emacs_mule)
22937         (decode_coding_sjis, decode_coding_big5, decode_coding_charset)
22938         <char_offset, last_offset>: Declare EMACS_INT.
22939         (encode_coding_utf_8, encode_coding_utf_16)
22940         (encode_coding_emacs_mule, encode_invocation_designation)
22941         (encode_designation_at_bol, encode_coding_iso_2022)
22942         (encode_coding_sjis, encode_coding_big5, encode_coding_ccl)
22943         (encode_coding_raw_text, encode_coding_charset) <produced_chars>:
22944         Declare EMACS_INT.
22945         (ASSURE_DESTINATION): Declare more_bytes EMACS_INT.
22946         (encode_invocation_designation): Last argument P_NCHARS is now
22947         EMACS_INT.
22948         (decode_eol): Declare pos_byte, pos, and pos_end EMACS_INT.
22949         (produce_chars): from_nchars and to_nchars are now EMACS_INT.
22951         * coding.h (struct coding_system) <head_ascii>: Declare EMACS_INT.
22952         All users changed.
22954         * ccl.c (Fccl_execute_on_string): Declare some variables
22955         EMACS_INT.
22957 2011-04-08  Samuel Thibault  <sthibault@debian.org>  (tiny change)
22959         * term.c (init_tty): Fix incorrect ifdef placement (Bug#8450).
22961 2011-03-19  Christoph Scholtes  <cschol2112@googlemail.com>
22963         * process.c (Fformat_network_address): Doc fix.
22965 2011-04-08  T.V. Raman  <tv.raman.tv@gmail.com>  (tiny change)
22967         * xml.c (parse_region): Avoid creating spurious whitespace nodes.
22969 2011-04-08  Chong Yidong  <cyd@stupidchicken.com>
22971         * keyboard.c (read_char): Call Lisp function help-form-show,
22972         instead of using internal_with_output_to_temp_buffer.
22973         (Qhelp_form_show): New var.
22974         (syms_of_keyboard): Use DEFSYM macro.
22976         * print.c (internal_with_output_to_temp_buffer): Function deleted.
22978         * lisp.h (internal_with_output_to_temp_buffer): Remove prototype.
22980 2011-04-06  Chong Yidong  <cyd@stupidchicken.com>
22982         * process.c (Flist_processes): Remove to Lisp.
22983         (list_processes_1): Delete.
22985 2011-04-06  Eli Zaretskii  <eliz@gnu.org>
22987         * msdos.c (careadlinkat, careadlinkatcwd): MS-DOS replacements.
22989         * w32.c (careadlinkat, careadlinkatcwd): New always-fail stubs.
22991 2011-04-06  Paul Eggert  <eggert@cs.ucla.edu>
22993         Fix more problems found by GCC 4.6.0's static checks.
22995         * xmenu.c (Fx_popup_dialog): Don't assume string is free of formats.
22997         * menu.c (Fx_popup_menu): Don't assume error_name lacks printf formats.
22999         * lisp.h (message, message_nolog, fatal): Mark as printf-like.
23001         * xdisp.c (vmessage): Mark as a printf-like function.
23003         * term.c (vfatal, maybe_fatal): Mark as printf-like functions.
23005         * sound.c (sound_warning): Don't crash if arg contains a printf format.
23007         * image.c (tiff_error_handler, tiff_warning_handler): Mark as
23008         printf-like functions.
23009         (tiff_load): Add casts to remove these marks before passing them
23010         to system-supplied API.
23012         * eval.c (Fsignal): Remove excess argument to 'fatal'.
23014         * coding.c (EMIT_ONE_BYTE, EMIT_TWO_BYTES): Use unsigned, not int.
23015         This avoids several warnings with gcc -Wstrict-overflow.
23016         (DECODE_COMPOSITION_RULE): If the rule is invalid, goto invalid_code
23017         directly, rather than having caller test rule sign.  This avoids
23018         some unnecessary tests.
23019         * composite.h (COMPOSITION_ENCODE_RULE_VALID): New macro.
23020         (COMPOSITION_ENCODE_RULE): Arguments now must be valid.  This
23021         affects only one use, in DECODE_COMPOSITION_RULE, which is changed.
23023         * xfont.c (xfont_text_extents): Remove var that was set but not used.
23024         (xfont_open): Avoid unnecessary tests.
23026         * composite.c (composition_gstring_put_cache): Use unsigned integer.
23028         * composite.h, composite.c (composition_gstring_put_cache):
23029         Use EMACS_INT, not int, for length.
23031         * composite.h (COMPOSITION_DECODE_REFS): New macro,
23032         breaking out part of COMPOSITION_DECODE_RULE.
23033         (COMPOSITION_DECODE_RULE): Use it.
23034         * composite.c (get_composition_id): Remove unused local vars,
23035         by using the new macro.
23037         * textprop.c (set_text_properties_1): Change while to do-while,
23038         since the condition is always true at first.
23040         * intervals.c (graft_intervals_into_buffer): Mark var as used.
23041         (interval_deletion_adjustment): Return unsigned value.
23042         All uses changed.
23044         * process.c (list_processes_1, create_pty, read_process_output):
23045         (exec_sentinel): Remove vars that were set but not used.
23046         (create_pty): Remove unnecessary "volatile"s.
23047         (Fnetwork_interface_info): Avoid possibility of int overflow.
23048         (read_process_output): Do adaptive read buffering even if carryover.
23049         (read_process_output): Simplify nbytes computation if buffered.
23051         * bytecode.c (exec_byte_code): Rename local to avoid shadowing.
23053         * syntax.c (scan_words): Remove var that was set but not used.
23054         (update_syntax_table): Use unsigned instead of int.
23056         * lread.c (lisp_file_lexically_bound_p): Use ints rather than endptrs.
23057         (lisp_file_lexically_bound_p, read1): Use unsigned instead of int.
23058         (safe_to_load_p): Make the end-of-loop test the inverse of the in-loop.
23060         * print.c (print_error_message): Avoid int overflow.
23062         * font.c (font_list_entities): Redo for clarity,
23063         so that reader need not know FONT_DPI_INDEX + 1 == FONT_SPACING_INDEX.
23065         * font.c (font_find_for_lface, Ffont_get_glyphs): Remove unused vars.
23066         (font_score): Avoid potential overflow in diff calculation.
23068         * fns.c (substring_both): Remove var that is set but not used.
23069         (sxhash): Redo loop for clarity and to avoid wraparound warning.
23071         * eval.c (funcall_lambda): Rename local to avoid shadowing.
23073         * alloc.c (mark_object_loop_halt, mark_object): Use size_t, not int.
23074         Otherwise, GCC 4.6.0 optimizes the loop check away since the check
23075         can always succeed if overflow has undefined behavior.
23077         * search.c (boyer_moore, wordify): Remove vars set but not used.
23078         (wordify): Omit three unnecessary tests.
23080         * indent.c (MULTIBYTE_BYTES_WIDTH): Don't compute wide_column.
23081         All callers changed.  This avoids the need for an unused var.
23083         * casefiddle.c (casify_region): Remove var that is set but not used.
23085         * dired.c (file_name_completion): Remove var that is set but not used.
23087         * fileio.c (Finsert_file_contents): Make EOF condition clearer.
23089         * fileio.c (Finsert_file_contents): Avoid signed integer overflow.
23090         (Finsert_file_contents): Remove unnecessary code checking fd.
23092         * minibuf.c (read_minibuf_noninteractive): Use size_t for sizes.
23093         Check for integer overflow on size calculations.
23095         * buffer.c (Fprevious_overlay_change): Remove var that is set
23096         but not used.
23098         * keyboard.c (menu_bar_items, read_char_minibuf_menu_prompt):
23099         Remove vars that are set but not used.
23100         (timer_check_2): Don't assume timer-list and idle-timer-list are lists.
23101         (timer_check_2): Mark vars as initialized.
23103         * gtkutil.c (xg_get_file_with_chooser): Mark var as initialized.
23105         * image.c (lookup_image): Remove var that is set but not used.
23106         (xbm_load): Use parse_p, for gcc -Werror=unused-but-set-variable.
23108         * fontset.c (Finternal_char_font, Ffontset_info): Remove vars
23109         that are set but not used.
23111         * xfns.c (make_invisible_cursor): Don't return garbage
23112         if XCreateBitmapFromData fails (Bug#8410).
23114         * xselect.c (x_get_local_selection, x_handle_property_notify):
23115         Remove vars that are set but not used.
23117         * xfns.c (x_create_tip_frame): Remove var that is set but not used.
23118         (make_invisible_cursor): Initialize a possibly-uninitialized variable.
23120         * xterm.c (x_scroll_bar_to_input_event) [!USE_GTK]:
23121         Remove var that is set but not used.
23122         (scroll_bar_windows_size): Now size_t, not int.
23123         (x_send_scroll_bar_event): Use size_t, not int, for sizes.
23124         Check for overflow.
23126         * xfaces.c (realize_named_face): Remove vars that are set but not used.
23127         (map_tty_color) [!defined MSDOS]: Likewise.
23129         * term.c (tty_write_glyphs): Use size_t; this avoids overflow warning.
23131         * coding.c: Remove vars that are set but not used.
23132         (DECODE_COMPOSITION_RULE): Remove 2nd arg, which is unused.
23133         All callers changed.
23134         (decode_coding_utf_8, decode_coding_utf_16 decode_coding_emacs_mule):
23135         (decode_coding_iso_2022, encode_coding_sjis, encode_coding_big5):
23136         (decode_coding_charset): Remove vars that are set but not used.
23138         * bytecode.c (Fbyte_code) [!defined BYTE_CODE_SAFE]: Remove var
23139         that is set but not used.
23141         * print.c (print_object): Remove var that is set but not used.
23143         Replace 2 copies of readlink code with 1 gnulib version (Bug#8401).
23144         The gnulib version avoids calling malloc in the usual case,
23145         and on 64-bit hosts doesn't have some arbitrary 32-bit limits.
23146         * fileio.c (Ffile_symlink_p): Use emacs_readlink.
23147         * filelock.c (current_lock_owner): Likewise.
23148         * lisp.h (READLINK_BUFSIZE, emacs_readlink): New function.
23149         * sysdep.c: Include allocator.h, careadlinkat.h.
23150         (emacs_no_realloc_allocator): New static constant.
23151         (emacs_readlink): New function.
23152         * deps.mk (sysdep.o): Depend on ../lib/allocator.h and on
23153         ../lib/careadlinkat.h.
23155 2011-04-04  Stefan Monnier  <monnier@iro.umontreal.ca>
23157         * keyboard.c (safe_run_hook_funcall): Fix last change (don't stop at the
23158         first non-nil return value).
23160 2011-04-03  Jan Djärv  <jan.h.d@swipnet.se>
23162         * nsterm.m (ns_update_auto_hide_menu_bar): Define MAC_OS_X_VERSION_10_6
23163         if not defined (Bug#8403).
23165 2011-04-02  Juanma Barranquero  <lekktu@gmail.com>
23167         * xdisp.c (display_count_lines): Remove parameter `start',
23168         unused since 1998-01-01T02:27:27Z!rms@gnu.org.  All callers changed.
23169         (get_char_face_and_encoding): Remove parameter `multibyte_p',
23170         unused since 2008-05-14T01:40:23Z!handa@m17n.org.  All callers changed.
23171         (fill_stretch_glyph_string): Remove parameters `row' and `area',
23172         unused at least since Kim's GUI unification at 2003-03-16T20:45:46Z!storm@cua.dk
23173         and thereabouts.  All callers changed.
23174         (get_per_char_metric): Remove parameter `f', unused since
23175         2008-05-14T01:40:23Z!handa@m17n.org.  All callers changed.
23177 2011-04-02  Jim Meyering  <meyering@redhat.com>
23179         do not dereference NULL upon failed strdup
23180         * nsfont.m (ns_descriptor_to_entity): Use xstrdup, not strdup.
23181         (ns_get_family): Likewise.
23183 2011-04-02  Juanma Barranquero  <lekktu@gmail.com>
23185         * eval.c (unwind_to_catch) [DEBUG_GCPRO]: Remove redundant assignment.
23187 2011-04-02  Jan Djärv  <jan.h.d@swipnet.se>
23189         * nsterm.m (ns_update_auto_hide_menu_bar): Only for OSX 10.6 or
23190         later (Bug#8403).
23192 2011-04-01  Stefan Monnier  <monnier@iro.umontreal.ca>
23194         Add lexical binding.
23196         * window.c (Ftemp_output_buffer_show): New fun.
23197         (Fsave_window_excursion):
23198         * print.c (Fwith_output_to_temp_buffer): Move to subr.el.
23200         * lread.c (lisp_file_lexically_bound_p): New function.
23201         (Fload): Bind Qlexical_binding.
23202         (readevalloop): Remove `evalfun' arg.
23203         Bind Qinternal_interpreter_environment.
23204         (Feval_buffer): Bind Qlexical_binding.
23205         (defvar_int, defvar_bool, defvar_lisp_nopro, defvar_kboard):
23206         Mark as dynamic.
23207         (syms_of_lread): Declare `lexical-binding'.
23209         * lisp.h (struct Lisp_Symbol): New field `declared_special'.
23211         * keyboard.c (eval_dyn): New fun.
23212         (menu_item_eval_property): Use it.
23214         * image.c (parse_image_spec): Use Ffunctionp.
23216         * fns.c (concat, mapcar1): Accept byte-code-functions.
23218         * eval.c (Fsetq): Handle lexical vars.
23219         (Fdefun, Fdefmacro, Ffunction): Make closures when needed.
23220         (Fdefconst, Fdefvaralias, Fdefvar): Mark as dynamic.
23221         (FletX, Flet): Obey lexical binding.
23222         (Fcommandp): Handle closures.
23223         (Feval): New `lexical' arg.
23224         (eval_sub): New function extracted from Feval.  Use it almost
23225         everywhere where Feval was used.  Look up vars in lexical env.
23226         Handle closures.
23227         (Ffunctionp): Move from subr.el.
23228         (Ffuncall): Handle closures.
23229         (apply_lambda): Remove `eval_flags'.
23230         (funcall_lambda): Handle closures and new byte-code-functions.
23231         (Fspecial_variable_p): New function.
23232         (syms_of_eval): Initialize the Vinternal_interpreter_environment var,
23233         but without exporting it to Lisp.
23235         * doc.c (Fdocumentation, store_function_docstring):
23236         * data.c (Finteractive_form): Handle closures.
23238         * callint.c (Fcall_interactively): Preserve lexical-binding mode for
23239         interactive spec.
23241         * bytecode.c (Bstack_ref, Bstack_set, Bstack_set2, BdiscardN):
23242         New byte-codes.
23243         (exec_byte_code): New function extracted from Fbyte_code to handle new
23244         calling convention for byte-code-functions.  Add new byte-codes.
23246         * buffer.c (defvar_per_buffer): Set new `declared_special' field.
23248         * alloc.c (Fmake_symbol): Init new `declared_special' field.
23250 2011-03-31  Juanma Barranquero  <lekktu@gmail.com>
23252         * xdisp.c (redisplay_internal): Fix prototype.
23254 2011-03-31  Eli Zaretskii  <eliz@gnu.org>
23256         * xdisp.c (SCROLL_LIMIT): New macro.
23257         (try_scrolling): Use it when setting scroll_limit.
23258         Limit scrolling to 100 screen lines.
23259         (redisplay_window): Even when falling back on "recentering",
23260         position point in the window according to scroll-conservatively,
23261         scroll-margin, and scroll-*-aggressively variables.  (Bug#6671)
23263         (try_scrolling): When point is above the window, allow searching
23264         as far as scroll_max, or one screenful, to compute vertical
23265         distance from PT to the scroll margin position.  This prevents
23266         try_scrolling from unnecessarily failing when
23267         scroll-conservatively is set to a value slightly larger than the
23268         window height.  Clean up the case of PT below the margin at bottom
23269         of window: scroll_max can no longer be INT_MAX.  When aggressive
23270         scrolling is in use, don't let point enter the opposite scroll
23271         margin as result of the scroll.
23272         (syms_of_xdisp) <scroll-conservatively>: Document the
23273         threshold of 100 lines for never-recentering scrolling.
23275 2011-03-31  Juanma Barranquero  <lekktu@gmail.com>
23277         * dispextern.h (move_it_by_lines):
23278         * xdisp.c (move_it_by_lines): Remove parameter `need_y_p', unused
23279         since 2000-12-29T14:24:09Z!gerd@gnu.org.  All callers changed.
23280         (message_log_check_duplicate): Remove parameters `prev_bol' and
23281         `this_bol', unused since 1998-01-01T02:27:27Z!rms@gnu.org.  All callers changed.
23282         (redisplay_internal): Remove parameter `preserve_echo_area',
23283         unused since 1999-07-21T21:43:52Z!gerd@gnu.org.  All callers changed.
23285         * indent.c (Fvertical_motion):
23286         * window.c (window_scroll_pixel_based, Frecenter):
23287         Don't pass `need_y_p' to `move_it_by_lines'.
23289 2011-03-30  Stefan Monnier  <monnier@iro.umontreal.ca>
23291         * eval.c (struct backtrace): Don't cheat with negative numbers, but do
23292         steal a few bits to be more compact.
23293         (interactive_p, Fbacktrace, Fbacktrace_frame, mark_backtrace):
23294         Remove unneeded casts.
23296         * bytecode.c (Fbyte_code): CAR and CDR can GC.
23298 2011-03-30  Zachary Kanfer  <zkanfer@gmail.com>  (tiny change)
23300         * keyboard.c (Fexecute_extended_command): Do log the "suggest key
23301         binding" message (bug#7967).
23303 2011-03-30  Paul Eggert  <eggert@cs.ucla.edu>
23305         Fix more problems found by GCC 4.6.0's static checks.
23307         * unexelf.c (unexec) [! (defined _SYSTYPE_SYSV || defined __sgi)]:
23308         Remove unused local var.
23310         * editfns.c (Fmessage_box): Remove unused local var.
23312         * xdisp.c (try_window_reusing_current_matrix, x_produce_glyphs):
23313         (note_mode_line_or_margin_highlight, note_mouse_highlight):
23314         Omit unused local vars.
23315         * window.c (shrink_windows): Omit unused local var.
23316         * menu.c (digest_single_submenu): Omit unused local var.
23317         * dispnew.c (update_window) [PERIODIC_PREEMPTION_CHECKING]:
23318         Omit unused local var.
23320         * keyboard.c (parse_modifiers_uncached, parse_modifiers):
23321         Don't assume string length fits in int.
23322         (keyremap_step, read_key_sequence): Use size_t for sizes.
23323         (read_key_sequence): Don't check last_real_key_start redundantly.
23325         * callproc.c (Fcall_process, Fcall_process_region): Use SAFE_ALLOCA
23326         instead of alloca (Bug#8344).
23328         * eval.c (Fbacktrace): Don't assume nargs fits in int.
23329         (Fbacktrace_frame): Don't assume nframes fits in int.
23331         * syntax.c (scan_sexps_forward): Avoid pointer wraparound.
23333         * xterm.c (x_make_frame_visible, same_x_server): Redo to avoid overflow
23334         concerns.
23336         * term.c (produce_glyphless_glyph): Remove unnecessary test.
23338         * cm.c (calccost): Turn while-do into do-while, for clarity.
23340         * keyboard.c (syms_of_keyboard): Use the same style as later
23341         in this function when indexing through an array.  This also
23342         works around GCC bug 48267.
23344         * image.c (tiff_load): Fix off-by-one image count (Bug#8336).
23346         * xselect.c (x_check_property_data): Return correct size (Bug#8335).
23348         * chartab.c (sub_char_table_ref_and_range): Redo for slight
23349         efficiency gain, and to bypass a gcc -Wstrict-overflow warning.
23351         * keyboard.c, keyboard.h (num_input_events): Now size_t.
23352         This avoids undefined behavior on integer overflow, and is a bit
23353         more convenient anyway since it is compared to a size_t variable.
23355         Variadic C functions now count arguments with size_t, not int.
23356         This avoids an unnecessary limitation on 64-bit machines, which
23357         caused (substring ...) to crash on large vectors (Bug#8344).
23358         * lisp.h (struct Lisp_Subr.function.aMANY): Now takes size_t, not int.
23359         (DEFUN_ARGS_MANY, internal_condition_case_n, safe_call): Likewise.
23360         All variadic functions and their callers changed accordingly.
23361         (struct gcpro.nvars): Now size_t, not int.  All uses changed.
23362         * data.c (arith_driver, float_arith_driver): Likewise.
23363         * editfns.c (general_insert_function): Likewise.
23364         * eval.c (struct backtrace.nargs, interactive_p)
23365         (internal_condition_case_n, run_hook_with_args, apply_lambda)
23366         (funcall_lambda, mark_backtrace): Likewise.
23367         * fns.c (concat): Likewise.
23368         * frame.c (x_set_frame_parameters): Likewise.
23369         * fns.c (get_key_arg): Now accepts and returns size_t, and returns
23370         0 if not found, not -1.  All callers changed.
23372         * alloc.c (garbage_collect): Don't assume stack size fits in int.
23373         (stack_copy_size): Now size_t, not int.
23374         (stack_copy, stack_copy_size): Define only if MAX_SAVE_STACK > 0.
23376 2011-03-28  Juanma Barranquero  <lekktu@gmail.com>
23378         * coding.c (encode_designation_at_bol): Remove parameter `charbuf_end',
23379         unused since 2002-03-01T01:17:24Z!handa@m17n.org and 2008-02-01T16:01:31Z!miles@gnu.org.
23380         All callers changed.
23382         * lisp.h (multibyte_char_to_unibyte):
23383         * character.c (multibyte_char_to_unibyte): Remove parameter `rev_tbl',
23384         unused since 2002-03-01T01:16:34Z!handa@m17n.org and 2008-02-01T16:01:31Z!miles@gnu.org.
23385         * character.h (CHAR_TO_BYTE8):
23386         * cmds.c (internal_self_insert):
23387         * editfns.c (general_insert_function):
23388         * keymap.c (push_key_description):
23389         * search.c (Freplace_match):
23390         * xdisp.c (message_dolog, set_message_1): All callers changed.
23392 2011-03-28  Stefan Monnier  <monnier@iro.umontreal.ca>
23394         * keyboard.c (safe_run_hook_funcall): New function.
23395         (safe_run_hooks_1, safe_run_hooks_error, safe_run_hooks): On error,
23396         don't set the hook to nil, but remove the offending function instead.
23397         (Qcommand_hook_internal): Remove, unused.
23398         (syms_of_keyboard): Don't initialize Qcommand_hook_internal nor define
23399         Vcommand_hook_internal.
23401         * eval.c (enum run_hooks_condition): Remove.
23402         (funcall_nil, funcall_not): New functions.
23403         (run_hook_with_args): Call each function through a `funcall' argument.
23404         Remove `cond' argument, now redundant.
23405         (Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success)
23406         (Frun_hook_with_args_until_failure): Adjust accordingly.
23407         (run_hook_wrapped_funcall, Frun_hook_wrapped): New functions.
23409 2011-03-28  Juanma Barranquero  <lekktu@gmail.com>
23411         * dispextern.h (string_buffer_position): Remove declaration.
23413         * print.c (strout): Remove parameter `multibyte', unused since
23414         1999-08-21T19:30:21Z!gerd@gnu.org.  All callers changed.
23416         * search.c (boyer_moore): Remove parameters `len', `pos' and `lim',
23417         never used since function introduction in 1998-02-08T21:33:56Z!rms@gnu.org.
23418         All callers changed.
23420         * w32.c (_wsa_errlist): Use braces for struct initializers.
23422         * xdisp.c (string_buffer_position_lim): Remove parameter `w',
23423         never used since function introduction in 2001-03-09T18:41:50Z!gerd@gnu.org.
23424         All callers changed.
23425         (string_buffer_position): Likewise.  Also, make static (it's never
23426         used outside xdisp.c).
23427         (cursor_row_p): Remove parameter `w', unused since
23428         2000-10-17T16:08:57Z!gerd@gnu.org.  All callers changed.
23429         (decode_mode_spec): Remove parameter `precision', introduced during
23430         Gerd Moellmann's rewrite at 1999-07-21T21:43:52Z!gerd@gnu.org, but never used.
23431         All callers changed.
23433 2011-03-27  Jan Djärv  <jan.h.d@swipnet.se>
23435         * nsterm.m (syms_of_nsterm): Use doc: for ns-auto-hide-menu-bar.
23437 2011-03-27  Anders Lindgren  <andlind@gmail.com>
23439         * nsterm.m (ns_menu_bar_is_hidden): New variable.
23440         (ns_constrain_all_frames, ns_menu_bar_should_be_hidden)
23441         (ns_update_auto_hide_menu_bar): New functions.
23442         (ns_update_begin): Call ns_update_auto_hide_menu_bar.
23443         (applicationDidBecomeActive): Call ns_update_auto_hide_menu_bar and
23444         ns_constrain_all_frames.
23445         (constrainFrameRect): Return at once if ns_menu_bar_should_be_hidden.
23446         (syms_of_nsterm): DEFVAR ns-auto-hide-menu-bar, init to Qnil.
23448 2011-03-27  Jan Djärv  <jan.h.d@swipnet.se>
23450         * nsmenu.m (runDialogAt): Remove argument to timer_check.
23452 2011-03-27  Glenn Morris  <rgm@gnu.org>
23454         * syssignal.h: Replace RETSIGTYPE with void.
23455         * atimer.c, data.c, dispnew.c, emacs.c, floatfns.c, keyboard.c:
23456         * keyboard.h, lisp.h, process.c, sysdep.c, xterm.c:
23457         Replace SIGTYPE with void everywhere.
23458         * s/usg5-4-common.h (SIGTYPE): Remove definition.
23459         * s/template.h (SIGTYPE): Remove commented out definition.
23461 2011-03-26  Eli Zaretskii  <eliz@gnu.org>
23463         * xdisp.c (redisplay_window): Don't check buffer's clip_changed
23464         flag as a prerequisite for invoking try_scrolling.  (Bug#6671)
23466 2011-03-26  Juanma Barranquero  <lekktu@gmail.com>
23468         * w32.c (read_unc_volume): Use parameter `henum', instead of
23469         global variable `wget_enum_handle'.
23471         * keymap.c (describe_vector): Remove parameters `indices' and
23472         `char_table_depth', unused since 2002-03-01T01:43:26Z!handa@m17n.org.
23473         (describe_map, Fdescribe_vector): Adjust calls to `describe_vector'.
23475         * keyboard.h (timer_check, show_help_echo): Remove unused parameters.
23477         * keyboard.c (timer_check): Remove parameter `do_it_now',
23478         unused since 1996-04-12T06:01:29Z!rms@gnu.org.
23479         (show_help_echo): Remove parameter `ok_to_overwrite_keystroke_echo',
23480         unused since 2008-04-19T19:30:53Z!monnier@iro.umontreal.ca.
23482         * keyboard.c (read_char):
23483         * w32menu.c (w32_menu_display_help):
23484         * xmenu.c (show_help_event, menu_help_callback):
23485         Adjust calls to `show_help_echo'.
23487         * gtkutil.c (xg_maybe_add_timer):
23488         * keyboard.c (readable_events):
23489         * process.c (wait_reading_process_output):
23490         * xmenu.c (x_menu_wait_for_event): Adjust calls to `timer_check'.
23492         * insdel.c (adjust_markers_gap_motion):
23493         Remove; no-op since 1998-01-02T21:29:48Z!rms@gnu.org.
23494         (gap_left, gap_right): Don't call it.
23496 2011-03-25  Chong Yidong  <cyd@stupidchicken.com>
23498         * xdisp.c (handle_fontified_prop): Discard changes to clip_changed
23499         incurred during fontification.
23501 2011-03-25  Juanma Barranquero  <lekktu@gmail.com>
23503         * buffer.c (defvar_per_buffer): Remove unused parameter `doc'.
23504         (DEFVAR_PER_BUFFER): Don't pass it.
23506         * dispnew.c (row_equal_p, add_row_entry): Remove unused parameter `w'.
23507         (scrolling_window): Don't pass it.
23509 2011-03-25  Juanma Barranquero  <lekktu@gmail.com>
23511         * dispextern.h (glyph_matric): Use #if GLYPH_DEBUG, not #ifdef.
23513         * fileio.c (check_executable) [DOS_NT]: Remove unused variables `len'
23514         and `suffix'.
23515         (Fset_file_selinux_context) [HAVE_LIBSELINUX]: Move here declaration
23516         of variables specific to SELinux and computation of `encoded_absname'.
23518         * image.c (XPutPixel): Remove unused variable `height'.
23520         * keyboard.c (make_lispy_event): Remove unused variable `hpos'.
23522         * unexw32.c (get_section_info): Remove unused variable `section'.
23524         * w32.c (stat): Remove unused variables `drive_root' and `devtype'.
23525         (system_process_attributes): Remove unused variable `sess'.
23526         (sys_read): Remove unused variable `err'.
23528         * w32fns.c (top): Wrap variables with #if GLYPH_DEBUG, not #ifdef.
23529         (w32_wnd_proc): Remove unused variable `isdead'.
23530         (unwind_create_frame): Use #if GLYPH_DEBUG, not #ifdef.
23531         (Fx_server_max_request_size): Remove unused variable `dpyinfo'.
23532         (x_create_tip_frame): Remove unused variable `tem'.
23534         * w32inevt.c (w32_console_read_socket):
23535         Remove unused variable `no_events'.
23537         * w32term.c (x_draw_composite_glyph_string_foreground):
23538         Remove unused variable `width'.
23540 2011-03-24  Juanma Barranquero  <lekktu@gmail.com>
23542         * w32term.c (x_set_glyph_string_clipping):
23543         Don't pass uninitialized region to CombineRgn.
23545 2011-03-23  Juanma Barranquero  <lekktu@gmail.com>
23547         * w32fns.c (x_set_menu_bar_lines): Remove unused variable `olines'.
23548         (w32_wnd_proc): Pass NULL to Windows API, not uninitialized buffer.
23549         (Fx_close_connection): Remove unused variable `i'.
23551         * w32font.c (w32font_draw): Return number of glyphs.
23552         (w32font_open_internal): Remove unused variable `i'.
23553         (w32font_driver): Add missing initializer.
23555         * w32menu.c (utf8to16): Remove unused variable `utf16'.
23556         (fill_in_menu): Remove unused variable `items_added'.
23558         * w32term.c (last_mouse_press_frame): Remove static global variable.
23559         (w32_clip_to_row): Remove unused variable `f'.
23560         (x_delete_terminal): Remove unused variable `i'.
23562         * w32uniscribe.c (uniscribe_shape): Remove unused variable `nclusters'.
23563         (NOTHING): Remove unused static global variable.
23564         (uniscribe_check_otf): Remove unused variable `table'.
23565         (uniscribe_font_driver): Add missing initializers.
23567 2011-03-23  Julien Danjou  <julien@danjou.info>
23569         * term.c (Fsuspend_tty, Fresume_tty):
23570         * minibuf.c (read_minibuf, run_exit_minibuf_hook):
23571         * window.c (temp_output_buffer_show):
23572         * insdel.c (signal_before_change):
23573         * frame.c (Fhandle_switch_frame):
23574         * fileio.c (Fdo_auto_save):
23575         * emacs.c (Fkill_emacs):
23576         * editfns.c (save_excursion_restore):
23577         * cmds.c (internal_self_insert):
23578         * callint.c (Fcall_interactively):
23579         * buffer.c (Fkill_all_local_variables):
23580         * keyboard.c (Fcommand_execute, Fsuspend_emacs, safe_run_hooks_1):
23581         Use Frun_hooks.
23582         (command_loop_1): Use Frun_hooks.  Call safe_run_hooks
23583         unconditionally since it does the check itself.
23585 2011-03-23  Paul Eggert  <eggert@cs.ucla.edu>
23587         Fix more problems found by GCC 4.5.2's static checks.
23589         * coding.c (encode_coding_raw_text): Avoid unnecessary test
23590         the first time through the loop, since we know p0 < p1 then.
23591         This also avoids a gcc -Wstrict-overflow warning.
23593         * lisp.h (SAFE_ALLOCA, SAFE_ALLOCA_LISP): Avoid 'int' overflow
23594         leading to a memory leak, possible in functions like
23595         load_charset_map_from_file that can allocate an unbounded number
23596         of objects (Bug#8318).
23598         * xmenu.c (set_frame_menubar): Use EMACS_UINT, not int, for indexes
23599         that could (at least in theory) be that large.
23601         * xdisp.c (message_log_check_duplicate): Return unsigned long, not int.
23602         This is less likely to overflow, and avoids undefined behavior if
23603         overflow does occur.  All callers changed.  Use strtoul to scan
23604         for the unsigned long integer.
23605         (pint2hrstr): Simplify and tune code slightly.
23606         This also avoids a (bogus) GCC warning with gcc -Wstrict-overflow.
23608         * scroll.c (do_scrolling): Work around GCC bug 48228.
23609         See <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=48228>.
23611         * frame.c (Fmodify_frame_parameters): Simplify loop counter.
23612         This also avoids a warning with gcc -Wstrict-overflow.
23613         (validate_x_resource_name): Simplify count usage.
23614         This also avoids a warning with gcc -Wstrict-overflow.
23616         * fileio.c (Fcopy_file): Report error if fchown or fchmod
23617         fail (Bug#8306).
23619         * emacs.c (Fdaemon_initialized): Do not ignore I/O errors (Bug#8303).
23621         * process.c (Fmake_network_process): Use socklen_t, not int,
23622         where POSIX says socklen_t is required in portable programs.
23623         This fixes a porting bug on hosts like 64-bit HP-UX, where
23624         socklen_t is wider than int (Bug#8277).
23625         (Fmake_network_process, server_accept_connection):
23626         (wait_reading_process_output, read_process_output):
23627         Likewise.
23629         * process.c: Rename or move locals to avoid shadowing.
23630         (list_processes_1, Fmake_network_process):
23631         (read_process_output_error_handler, exec_sentinel_error_handler):
23632         Rename or move locals.
23633         (Fmake_network_process): Define label "retry_connect" only if needed.
23634         (Fnetwork_interface_info): Fix pointer signedness.
23635         (process_send_signal): Add cast to avoid pointer signedness problem.
23636         (FIRST_PROC_DESC, IF_NON_BLOCKING_CONNECT): Remove unused macros.
23637         (create_process): Use 'volatile' to avoid vfork clobbering (Bug#8298).
23639         Make tparam.h and terminfo.c consistent.
23640         * cm.c (tputs, tgoto, BC, UP): Remove extern decls.
23641         Include tparam.h instead, since it declares them.
23642         * cm.h (PC): Remove extern decl; tparam.h now does this.
23643         * deps.mk (cm.o, terminfo.o): Depend on tparam.h.
23644         * terminfo.c: Include tparam.h, to check interfaces.
23645         (tparm): Make 1st arg a const pointer in decl.  Put it at top level.
23646         (tparam): Adjust signature to match interface in tparam.h;
23647         this removes some undefined behavior.  Check that outstring and len
23648         are zero, which they always are with Emacs.
23649         * tparam.h (PC, BC, UP): New extern decls.
23651         * xftfont.c (xftfont_shape): Now static, and defined only if needed.
23652         (xftfont_open): Rename locals to avoid shadowing.
23654         * ftfont.c (ftfont_resolve_generic_family): Fix pointer signedness.
23655         (ftfont_otf_capability, ftfont_shape): Omit decls if not needed.
23656         (OTF_TAG_SYM): Omit macro if not needed.
23657         (ftfont_list): Remove unused local.
23658         (get_adstyle_property, ftfont_pattern_entity):
23659         (ftfont_lookup_cache, ftfont_open, ftfont_anchor_point):
23660         Rename locals to avoid shadowing.
23662         * xfont.c (xfont_list_family): Mark var as initialized.
23664         * xml.c (make_dom): Now static.
23666         * composite.c (composition_compute_stop_pos): Rename local to
23667         avoid shadowing.
23668         (composition_reseat_it): Remove unused locals.
23669         (find_automatic_composition, composition_adjust_point): Likewise.
23670         (composition_update_it): Mark var as initialized.
23671         (find_automatic_composition): Mark vars as initialized,
23672         with a FIXME (Bug#8290).
23674         character.h: Rename locals to avoid shadowing.
23675         * character.h (PREV_CHAR_BOUNDARY, FETCH_STRING_CHAR_ADVANCE):
23676         (FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE, FETCH_CHAR_ADVANCE):
23677         (FETCH_CHAR_ADVANCE_NO_CHECK, INC_POS, DEC_POS, BUF_INC_POS):
23678         (BUF_DEC_POS): Be more systematic about renaming local temporaries
23679         to avoid shadowing.
23681         * textprop.c (property_change_between_p): Remove; unused.
23683         * intervals.c (interval_start_pos): Now static.
23685         * intervals.h (CHECK_TOTAL_LENGTH): Avoid empty "else".
23687         * atimer.c (start_atimer, append_atimer_lists, set_alarm):
23688         Rename locals to avoid shadowing.
23690         * sound.c (wav_play, au_play, Fplay_sound_internal):
23691         Fix pointer signedness.
23692         (alsa_choose_format): Remove unused local var.
23693         (wav_play): Initialize a variable to 0, to prevent undefined
23694         behavior (Bug#8278).
23696         * region-cache.c (insert_cache_boundary): Redo var to avoid shadowing.
23698         * region-cache.h (pp_cache): New decl, for gcc -Wmissing-prototypes.
23700         * callproc.c (Fcall_process): Use 'volatile' to avoid vfork
23701         clobbering (Bug#8298).
23702         * sysdep.c (sys_subshell): Likewise.
23703         Previously, the sys_subshell 'volatile' was incorrectly IF_LINTted out.
23705         * lisp.h (child_setup): Now NO_RETURN unless DOS_NT.
23706         This should get cleaned up, so that child_setup has the
23707         same signature on all platforms.
23709         * callproc.c (call_process_cleanup): Now static.
23710         (relocate_fd): Rename locals to avoid shadowing.
23712 2011-03-22  Chong Yidong  <cyd@stupidchicken.com>
23714         * xterm.c (x_clear_frame): Remove XClearWindow call.  This appears
23715         not to be necessary, and produces flickering.
23717 2011-03-20  Glenn Morris  <rgm@gnu.org>
23719         * config.in: Remove file.
23721 2011-03-20  Juanma Barranquero  <lekktu@gmail.com>
23723         * minibuf.c (Vcompleting_read_function): Don't declare, global variables
23724         are now in src/globals.h.
23725         (syms_of_minibuf): Remove spurious & from previous change.
23727 2011-03-20  Leo Liu  <sdl.web@gmail.com>
23729         * minibuf.c (completing-read-function): New variable.
23730         (completing-read-default): Rename from completing-read.
23731         (completing-read): Call completing-read-function.
23733 2011-03-19  Juanma Barranquero  <lekktu@gmail.com>
23735         * xfaces.c (Fx_load_color_file):
23736         Read color file from absolute filename (bug#8250).
23738 2011-03-19  Juanma Barranquero  <lekktu@gmail.com>
23740         * makefile.w32-in: Update dependencies.
23742 2011-03-17  Eli Zaretskii  <eliz@gnu.org>
23744         * makefile.w32-in ($(BLD)/unexw32.$(O)): Depend on $(SRC)/unexec.h.
23746 2011-03-17  Paul Eggert  <eggert@cs.ucla.edu>
23748         Fix more problems found by GCC 4.5.2's static checks.
23750         * process.c (make_serial_process_unwind, send_process_trap):
23751         (sigchld_handler): Now static.
23753         * process.c (allocate_pty): Let PTY_ITERATION declare iteration vars.
23754         That way, the code declares only the vars that it needs.
23755         * s/aix4-2.h (PTY_ITERATION): Declare iteration vars.
23756         * s/cygwin.h (PTY_ITERATION): Likewise.
23757         * s/darwin.h (PTY_ITERATION): Likewise.
23758         * s/gnu-linux.h (PTY_ITERATION): Likewise.
23760         * s/irix6-5.h (PTY_OPEN): Declare stb, to loosen coupling.
23761         * process.c (allocate_pty): Don't declare stb unless it's needed.
23763         * bytecode.c (MAYBE_GC): Rewrite so as not to use empty "else".
23764         (CONSTANTLIM): Remove; unused.
23765         (METER_CODE, Bscan_buffer, Bread_char, Bset_mark):
23766         Define only if needed.
23768         * unexelf.c (unexec): Name an expression,
23769         to avoid gcc -Wbad-function-cast warning.
23770         Use a different way to cause a compilation error if anyone uses
23771         n rather than nn, a way that does not involve shadowing.
23772         (ELF_BSS_SECTION_NAME, OLD_PROGRAM_H): Remove; unused.
23774         * deps.mk (unexalpha.o): Remove; unused.
23776         New file unexec.h, the (simple) interface for unexec (Bug#8267).
23777         * unexec.h: New file.
23778         * deps.mk (emacs.o, unexaix.o, unexcw.o, unexcoff.o, unexelf.o):
23779         (unexhp9k800.o, unexmacosx.o, unexsol.o, unexw32.o):
23780         Depend on unexec.h.
23781         * emacs.c [!defined CANNOT_DUMP]: Include unexec.h.
23782         * unexaix.c, unexcoff.c, unexcw.c, unexelf.c, unexhp9k800.c:
23783         * unexmacosx.c, unexsol.c, unexw32.c: Include unexec.h.
23784         Change as necessary to match prototype in unexec.h.
23786         * syntax.c (Fforward_comment, scan_lists): Rename locals to avoid
23787         shadowing.
23788         (back_comment, skip_chars): Mark vars as initialized.
23790         * character.h (FETCH_STRING_CHAR_ADVANCE_NO_CHECK, BUF_INC_POS):
23791         Rename locals to avoid shadowing.
23793         * lread.c (read1): Rewrite so as not to use empty "else".
23794         (Fload, readevalloop, read1): Rename locals to avoid shadowing.
23796         * print.c (Fredirect_debugging_output): Fix pointer signedess.
23798         * lisp.h (debug_output_compilation_hack): Add decl here, to avoid
23799         warning when compiling print.c.
23801         * font.c (font_unparse_fcname): Abort in an "impossible" situation
23802         instead of using an uninitialized var.
23803         (font_sort_entities): Mark var as initialized.
23805         * character.h (FETCH_CHAR_ADVANCE): Rename locals to avoid shadowing.
23807         * font.c (font_unparse_xlfd): Don't mix pointers to variables with
23808         pointers to constants.
23809         (font_parse_fcname): Remove unused vars.
23810         (font_delete_unmatched): Now static.
23811         (font_get_spec): Remove; unused.
23812         (font_style_to_value, font_prop_validate_style, font_unparse_fcname):
23813         (font_update_drivers, Ffont_get_glyphs, font_add_log):
23814         Rename or move locals to avoid shadowing.
23816         * fns.c (require_nesting_list, require_unwind): Now static.
23817         (Ffillarray): Rename locals to avoid shadowing.
23819         * floatfns.c (domain_error2): Define only if needed.
23820         (Ffrexp, Fldexp): Rename locals to avoid shadowing.
23822         * alloc.c (mark_backtrace): Move decl from here ...
23823         * lisp.h: ... to here, so that it can be checked.
23825         * eval.c (call_debugger, do_debug_on_call, grow_specpdl): Now static.
23826         (Fdefvar): Rewrite so as not to use empty "else".
23827         (lisp_indirect_variable): Name an expression,
23828         to avoid gcc -Wbad-function-cast warning.
23829         (Fdefvar): Rename locals to avoid shadowing.
23831         * callint.c (quotify_arg, quotify_args): Now static.
23832         (Fcall_interactively): Rename locals to avoid shadowing.
23833         Use const pointer when appropriate.
23835         * lisp.h (get_system_name, get_operating_system_release):
23836         Move decls here, to check interfaces.
23837         * process.c (get_operating_system_release): Move decl to lisp.h.
23838         * xrdb.c (get_system_name): Likewise.
23839         * editfns.c (init_editfns, Fuser_login_name, Fuser_uid):
23840         (Fuser_real_uid, Fuser_full_name): Remove unnecessary casts,
23841         some of which prompt warnings from gcc -Wbad-function-cast.
23842         (Fformat_time_string, Fencode_time, Finsert_char):
23843         (Ftranslate_region_internal, Fformat):
23844         Rename or remove local vars to avoid shadowing.
23845         (Ftranslate_region_internal): Mark var as initialized.
23847         * doc.c (Fdocumentation, Fsnarf_documentation): Move locals to
23848         avoid shadowing.
23850         * lisp.h (eassert): Check that the argument compiles, even if
23851         ENABLE_CHECKING is not defined.
23853         * data.c (Findirect_variable): Name an expression, to avoid
23854         gcc -Wbad-function-cast warning.
23855         (default_value, arithcompare, arith_driver, arith_error): Now static.
23856         (store_symval_forwarding): Rename local to avoid shadowing.
23857         (Fmake_variable_buffer_local, Fmake_local_variable):
23858         Mark variables as initialized.
23859         (do_blv_forwarding, do_symval_forwarding): Remove; unused.
23861         * alloc.c (check_cons_list): Do not define unless GC_CHECK_CONS_LIST.
23862         (Fmake_vector, Fvector, Fmake_byte_code, Fgarbage_collect):
23863         Rename locals to avoid shadowing.
23864         (mark_stack): Move local variables into the #ifdef region where
23865         they're used.
23866         (BLOCK_INPUT_ALLOC, UNBLOCK_INPUT_ALLOC): Define only if
23867         ! defined SYSTEM_MALLOC && ! defined SYNC_INPUT, as they are not
23868         needed otherwise.
23869         (CHECK_ALLOCATED): Define only if GC_CHECK_MARKED_OBJECTS.
23870         (GC_STRING_CHARS): Remove; not used.
23871         (Fmemory_limit): Cast sbrk's returned value to char *.
23873         * lisp.h (check_cons_list): Declare if GC_CHECK_CONS_LIST; this
23874         avoids undefined behavior in theory.
23876         * regex.c (IF_LINT): Add defn, for benefit of ../lib-src.
23878         Use functions, not macros, for up- and down-casing (Bug#8254).
23879         * buffer.h (DOWNCASE_TABLE, UPCASE_TABLE, DOWNCASE, UPPERCASEP):
23880         (NOCASEP, LOWERCASEP, UPCASE, UPCASE1): Remove.  All callers changed
23881         to use the following functions instead of these macros.
23882         (downcase): Adjust to lack of DOWNCASE_TABLE.  Return int, not
23883         EMACS_INT, since callers assume the returned value fits in int.
23884         (upcase1): Likewise, for UPCASE_TABLE.
23885         (uppercasep, lowercasep, upcase): New static inline functions.
23886         * editfns.c (Fchar_equal): Remove no-longer-needed workaround for
23887         the race-condition problem in the old DOWNCASE.
23889         * regex.c (CHARSET_LOOKUP_RANGE_TABLE_RAW, POP_FAILURE_REG_OR_COUNT):
23890         Rename locals to avoid shadowing.
23891         (regex_compile, re_match_2_internal): Move locals to avoid shadowing.
23892         (regex_compile, re_search_2, re_match_2_internal):
23893         Remove unused local vars.
23894         (FREE_VAR): Rewrite so as not to use empty "else",
23895         which gcc can warn about.
23896         (regex_compile, re_match_2_internal): Mark locals as initialized.
23897         (RETALLOC_IF): Define only if needed.
23898         (WORDCHAR_P): Likewise.  This one is never needed, but is used
23899         only in a comment talking about a compiler bug, so put inside
23900         the #if 0 of that comment.
23901         (CHARSET_LOOKUP_BITMAP, FAIL_STACK_FULL, RESET_FAIL_STACK):
23902         (PUSH_FAILURE_ELT, BUF_PUSH_3, STOP_ADDR_VSTRING):
23903         Remove; unused.
23905         * search.c (boyer_moore): Rename locals to avoid shadowing.
23906         * character.h (FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE):
23907         (PREV_CHAR_BOUNDARY): Likewise.
23909         * search.c (simple_search): Remove unused var.
23911         * dired.c (compile_pattern): Move decl from here ...
23912         * lisp.h: ... to here, so that it can be checked.
23913         (struct re_registers): New forward decl.
23915         * character.h (INC_POS, DEC_POS): Rename locals to avoid shadowing.
23917         * indent.c (MULTIBYTE_BYTES_WIDTH): New args bytes, width.
23918         All uses changed.
23919         (MULTIBYTE_BYTES_WIDTH, scan_for_column, compute_motion):
23920         Rename locals to avoid shadowing.
23921         (Fvertical_motion): Mark locals as initialized.
23923         * casefiddle.c (casify_object, casify_region): Now static.
23924         (casify_region): Mark local as initialized.
23926         * cmds.c (internal_self_insert): Rename local to avoid shadowing.
23928         * lisp.h (GCPRO2_VAR, GCPRO3_VAR, GCPRO4_VAR, GCPRO5_VAR, GCPRO6_VAR):
23929         New macros, so that the caller can use some names other than
23930         gcpro1, gcpro2, etc.
23931         (GCPRO2, GCPRO3, GCPRO4, GCPRO5, GCPRO6): Reimplement in terms
23932         of the new macros.
23933         (GCPRO1_VAR, UNGCPRO_VAR): Change the meaning of the second
23934         argument, for consistency with GCPRO2_VAR, etc: it is now the
23935         prefix of the variable, not the variable itself.  All uses
23936         changed.
23937         * dired.c (directory_files_internal, file_name_completion):
23938         Rename locals to avoid shadowing.
23940         Fix a race condition diagnosed by gcc -Wsequence-point (Bug#8254).
23941         An expression of the form (DOWNCASE (x) == DOWNCASE (y)), found in
23942         dired.c's scmp function, had undefined behavior.
23943         * lisp.h (DOWNCASE_TABLE, UPCASE_TABLE, DOWNCASE, UPPERCASEP):
23944         (NOCASEP, LOWERCASEP, UPCASE, UPCASE1): Move from here ...
23945         * buffer.h: ... to here, because these macros use current_buffer,
23946         and the new implementation with inline functions needs to have
23947         current_buffer in scope now, rather than later when the macros
23948         are used.
23949         (downcase, upcase1): New static inline functions.
23950         (DOWNCASE, UPCASE1): Reimplement using these functions.
23951         This avoids undefined behavior in expressions like
23952         DOWNCASE (x) == DOWNCASE (y), which previously suffered
23953         from race conditions in accessing the global variables
23954         case_temp1 and case_temp2.
23955         * casetab.c (case_temp1, case_temp2): Remove; no longer needed.
23956         * lisp.h (case_temp1, case_temp2): Remove their decls.
23957         * character.h (ASCII_CHAR_P): Move from here ...
23958         * lisp.h: ... to here, so that the inline functions mentioned
23959         above can use them.
23961         * dired.c (directory_files_internal_unwind): Now static.
23963         * fileio.c (file_name_as_directory, directory_file_name):
23964         (barf_or_query_if_file_exists, auto_save_error, auto_save_1):
23965         Now static.
23966         (file_name_as_directory): Use const pointers when appropriate.
23967         (Fexpand_file_name): Likewise.  In particular, newdir might
23968         point at constant storage, so make it a const pointer.
23969         (Fmake_directory_internal, Fread_file_name): Remove unused vars.
23970         (Ffile_selinux_context, Fset_file_selinux_context): Fix pointer
23971         signedness issues.
23972         (Fset_file_times, Finsert_file_contents, auto_save_error):
23973         Rename locals to avoid shadowing.
23975         * minibuf.c (choose_minibuf_frame_1): Now static.
23976         (Ftry_completion, Fall_completions): Rename or remove locals
23977         to avoid shadowing.
23979         * marker.c (bytepos_to_charpos): Remove; unused.
23981         * lisp.h (verify_bytepos, count_markers): New decls,
23982         so that gcc does not warn that these functions aren't declared.
23984         * insdel.c (check_markers, make_gap_larger, make_gap_smaller):
23985         (reset_var_on_error, Fcombine_after_change_execute_1): Now static.
23986         (CHECK_MARKERS): Redo to avoid gcc -Wempty-body diagnostic.
23987         (copy_text): Remove unused local var.
23989         * filelock.c (within_one_second): Now static.
23990         (lock_file_1): Rename local to avoid shadowing.
23992         * buffer.c (fix_overlays_before): Mark locals as initialized.
23993         (fix_start_end_in_overlays): Likewise.  This function should be
23994         simplified by using pointers-to-pointers, but that's a different
23995         matter.
23996         (switch_to_buffer_1): Now static.
23997         (Fkill_buffer, record_buffer, Fbury_buffer, Fset_buffer_multibyte):
23998         (report_overlay_modification): Rename locals to avoid shadowing.
24000         * sysdep.c (system_process_attributes): Rename vars to avoid shadowing.
24001         Fix pointer signedness issue.
24002         (sys_subshell): Mark local as volatile if checking for lint,
24003         to suppress a gcc -Wclobbered warning that does not seem to be right.
24004         (MAXPATHLEN): Define only if needed.
24006         * process.c (serial_open, serial_configure): Move decls from here ...
24007         * systty.h: ... to here, so that they can be checked.
24009         * fns.c (get_random, seed_random): Move extern decls from here ...
24010         * lisp.h: ... to here, so that they can be checked.
24012         * sysdep.c (reset_io): Now static.
24013         (wait_for_termination_signal): Remove; unused.
24015         * keymap.c (keymap_parent, keymap_memberp, map_keymap_internal):
24016         (copy_keymap_item, append_key, push_text_char_description):
24017         Now static.
24018         (Fwhere_is_internal): Don't test CONSP (sequences) unnecessarily.
24019         (DENSE_TABLE_SIZE): Remove; unused.
24020         (get_keymap, access_keymap, Fdefine_key, Fwhere_is_internal):
24021         (describe_map_tree):
24022         Rename locals to avoid shadowing.
24024         * keyboard.c: Declare functions static if they are not used elsewhere.
24025         (echo_char, echo_dash, cmd_error, top_level_2):
24026         (poll_for_input, handle_async_input): Now static.
24027         (read_char, kbd_buffer_get_event, make_lispy_position):
24028         (make_lispy_event, make_lispy_movement, apply_modifiers):
24029         (decode_keyboard_code, tty_read_avail_input, menu_bar_items):
24030         (parse_tool_bar_item, read_key_sequence, Fread_key_sequence):
24031         (Fread_key_sequence_vector): Rename locals to avoid shadowing.
24032         (read_key_sequence, read_char): Mark locals as initialized.
24033         (Fexit_recursive_edit, Fabort_recursive_edit): Mark with NO_RETURN.
24035         * keyboard.h (make_ctrl_char): New decl.
24036         (mark_kboards): Move decl here ...
24037         * alloc.c (mark_kboards): ... from here.
24039         * lisp.h (force_auto_save_soon): New decl.
24041         * emacs.c (init_cmdargs): Rename local to avoid shadowing.
24042         (DEFINE_DUMMY_FUNCTION): New macro.
24043         (__do_global_ctors, __do_global_ctors_aux, __do_global_dtors, __main):
24044         Use it.
24045         (main): Add casts to avoid warnings
24046         if GCC considers string literals to be constants.
24048         * lisp.h (fatal_error_signal): Add decl, since it's exported.
24050         * dbusbind.c: Pointer signedness fixes.
24051         (xd_signature, xd_append_arg, xd_initialize):
24052         (Fdbus_call_method, Fdbus_call_method_asynchronously):
24053         (Fdbus_method_return_internal, Fdbus_method_error_internal):
24054         (Fdbus_send_signal, xd_read_message_1, Fdbus_register_service):
24055         (Fdbus_register_signal): Use SSDATA when the context wants char *.
24057         * dbusbind.c (Fdbus_init_bus): Add cast to avoid warning
24058         if GCC considers string literals to be constants.
24059         (Fdbus_register_service, Fdbus_register_method): Remove unused vars.
24061 2011-03-16  Stefan Monnier  <monnier@iro.umontreal.ca>
24063         * print.c (PRINT_CIRCLE_CANDIDATE_P): New macro.
24064         (print_preprocess, print_object): New macro to fix last change.
24066         * print.c (print_preprocess): Don't forget font objects.
24068 2011-03-16  Juanma Barranquero  <lekktu@gmail.com>
24070         * emacs.c (USAGE3): Doc fixes.
24072 2011-03-15  Andreas Schwab  <schwab@linux-m68k.org>
24074         * coding.c (detect_coding_iso_2022): Reorganize code to clarify
24075         structure.
24077 2011-03-14  Juanma Barranquero  <lekktu@gmail.com>
24079         * lisp.h (VWindow_system, Qfile_name_history):
24080         * keyboard.h (lispy_function_keys) [WINDOWSNT]:
24081         * w32term.h (w32_system_caret_hwnd, w32_system_caret_height)
24082         (w32_system_caret_x, w32_system_caret_y): Declare extern.
24084         * w32select.c: Don't #include "keyboard.h".
24085         (run_protected): Add extern declaration for waiting_for_input.
24087         * w32.c (Qlocal, noninteractive1, inhibit_window_system):
24088         * w32console.c (detect_input_pending, read_input_pending)
24089         (encode_terminal_code):
24090         * w32fns.c (quit_char, lispy_function_keys, Qtooltip)
24091         (w32_system_caret_hwnd, w32_system_caret_height, w32_system_caret_x)
24092         (w32_system_caret_y, Qfile_name_history):
24093         * w32font.c (w32font_driver, QCantialias, QCotf, QClang):
24094         * w32inevt.c (reinvoke_input_signal, lispy_function_keys):
24095         * w32menu.c (Qmenu_bar, QCtoggle, QCradio, Qoverriding_local_map)
24096         (Qoverriding_terminal_local_map, Qmenu_bar_update_hook):
24097         * w32proc.c (Qlocal, report_file_error):
24098         * w32term.c (Vwindow_system, updating_frame):
24099         * w32uniscribe.c (initialized, uniscribe_font_driver):
24100         Remove unneeded extern declarations.
24102 2011-03-14  Chong Yidong  <cyd@stupidchicken.com>
24104         * buffer.c (Fmake_indirect_buffer): Fix incorrect assertions.
24106 2011-03-13  Chong Yidong  <cyd@stupidchicken.com>
24108         * buffer.h (BUF_BEGV, BUF_BEGV_BYTE, BUF_ZV, BUF_ZV_BYTE, BUF_PT)
24109         (BUF_PT_BYTE): Rewrite to handle indirect buffers (Bug#8219).
24110         These macros can no longer be used for assignment.
24112         * buffer.c (Fget_buffer_create, Fmake_indirect_buffer):
24113         Assign struct members directly, instead of using BUF_BEGV etc.
24114         (record_buffer_markers, fetch_buffer_markers): New functions for
24115         recording and fetching special buffer markers.
24116         (set_buffer_internal_1, set_buffer_temp): Use them.
24118         * lread.c (unreadchar): Use SET_BUF_PT_BOTH.
24120         * insdel.c (adjust_point): Use SET_BUF_PT_BOTH.
24122         * intervals.c (temp_set_point_both): Use SET_BUF_PT_BOTH.
24123         (get_local_map): Use SET_BUF_BEGV_BOTH and SET_BUF_ZV_BOTH.
24125         * xdisp.c (hscroll_window_tree):
24126         (reconsider_clip_changes): Use PT instead of BUF_PT.
24128 2011-03-13  Eli Zaretskii  <eliz@gnu.org>
24130         * makefile.w32-in ($(BLD)/editfns.$(O)): Depend on
24131         $(EMACS_ROOT)/lib/intprops.h.
24133 2011-03-13  Paul Eggert  <eggert@cs.ucla.edu>
24135         Fix more problems found by GCC 4.5.2's static checks.
24137         * gtkutil.c (xg_get_pixbuf_from_pixmap): Add cast from char *
24138         to unsigned char * to avoid compiler diagnostic.
24139         (xg_free_frame_widgets): Make it clear that a local variable is
24140         needed only if USE_GTK_TOOLTIP.
24141         (gdk_window_get_screen): Make it clear that this macro is needed
24142         only if USE_GTK_TOOLTIP.
24143         (int_gtk_range_get_value): New function, which avoids a diagnostic
24144         from gcc -Wbad-function-cast.
24145         (xg_set_toolkit_scroll_bar_thumb): Use it.
24146         (xg_tool_bar_callback, xg_tool_item_stale_p): Rewrite to avoid
24147         diagnostic from gcc -Wbad-function-cast.
24148         (get_utf8_string, xg_get_file_with_chooser):
24149         Rename locals to avoid shadowing.
24150         (create_dialog): Move locals to avoid shadowing.
24152         * xgselect.c (xg_select): Remove unused var.
24154         * image.c (four_corners_best): Mark locals as initialized.
24155         (gif_load): Initialize transparent_p to zero (Bug#8238).
24156         Mark another local as initialized.
24157         (my_png_error, my_error_exit): Mark with NO_RETURN.
24159         * image.c (clear_image_cache): Now static.
24160         (DIM, HAVE_STDLIB_H_1): Remove unused macros.
24161         (xpm_load): Redo to avoid "discards qualifiers" gcc warning.
24162         (x_edge_detection): Remove unnecessary cast that
24163         gcc -Wbad-function-cast diagnoses.
24164         (gif_load): Fix pointer signedness.
24165         (clear_image_cache, xbm_read_bitmap_data, x_detect_edges):
24166         (jpeg_load, gif_load): Rename locals to avoid shadowing.
24168 2011-03-12  Paul Eggert  <eggert@cs.ucla.edu>
24170         Improve quality of tests for time stamp overflow.
24171         For example, without this patch (encode-time 0 0 0 1 1
24172         1152921504606846976) returns the obviously-bogus value (-948597
24173         62170) on my RHEL 5.5 x86-64 host.  With the patch, it correctly
24174         reports time overflow.  See
24175         <http://lists.gnu.org/archive/html/emacs-devel/2011-03/msg00470.html>.
24176         * deps.mk (editfns.o): Depend on ../lib/intprops.h.
24177         * editfns.c: Include limits.h and intprops.h.
24178         (TIME_T_MIN, TIME_T_MAX): New macros.
24179         (time_overflow): Move earlier, to before first use.
24180         (hi_time, lo_time): New functions, for an accurate test for
24181         out-of-range times.
24182         (Fcurrent_time, Fget_internal_run_time, make_time): Use them.
24183         (Fget_internal_run_time): Don't assume time_t fits in int.
24184         (make_time): Use list2 instead of Fcons twice.
24185         (Fdecode_time): More accurate test for out-of-range times.
24186         (check_tm_member): New function.
24187         (Fencode_time): Use it, to test for out-of-range times.
24188         (lisp_time_argument): Don't rely on undefined left-shift and
24189         right-shift behavior when checking for time stamp overflow.
24191         * editfns.c (time_overflow): New function, refactoring common code.
24192         (Fformat_time_string, Fdecode_time, Fencode_time):
24193         (Fcurrent_time_string): Use it.
24195         Move 'make_time' to be next to its inverse 'lisp_time_argument'.
24196         * dired.c (make_time): Move to ...
24197         * editfns.c (make_time): ... here.
24198         * systime.h: Note the move.
24200 2011-03-12  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
24202         * fringe.c (update_window_fringes): Remove unused variables.
24204         * unexmacosx.c (copy_data_segment): Also copy __got section.
24205         (Bug#8223)
24207 2011-03-12  Eli Zaretskii  <eliz@gnu.org>
24209         * termcap.c [MSDOS]: Include "msdos.h".
24210         (find_capability, tgetnum, tgetflag, tgetstr, tputs, tgetent):
24211         Constify `char *' arguments and their references according to
24212         prototypes in tparam.h.
24214         * deps.mk (termcap.o): Depend on tparam.h and msdos.h.
24216         * msdos.c (XMenuAddPane): 3rd argument is `const char *' now.
24217         Adapt all references accordingly.
24219         * msdos.h (XMenuAddPane): 3rd argument is `const char *' now.
24221 2011-03-11  Tom Tromey  <tromey@redhat.com>
24223         * buffer.c (syms_of_buffer): Remove obsolete comment.
24225 2011-03-11  Eli Zaretskii  <eliz@gnu.org>
24227         * termhooks.h (encode_terminal_code): Declare prototype.
24229         * msdos.c (encode_terminal_code): Don't declare prototype.
24231         * term.c (encode_terminal_code): Now external again, used by
24232         w32console.c and msdos.c.
24234         * makefile.w32-in ($(BLD)/term.$(O), ($(BLD)/tparam.$(O)):
24235         Depend on $(SRC)/tparam.h, see 2011-03-11T07:24:21Z!eggert@cs.ucla.edu.
24237 2011-03-11  Paul Eggert  <eggert@cs.ucla.edu>
24239         Fix some minor problems found by GCC 4.5.2's static checks.
24241         * fringe.c (update_window_fringes): Mark locals as initialized
24242         (Bug#8227).
24243         (destroy_fringe_bitmap, init_fringe_bitmap): Now static.
24245         * alloc.c (mark_fringe_data): Move decl from here ...
24246         * lisp.h (mark_fringe_data) [HAVE_WINDOW_SYSTEM]: ... to here,
24247         to check its interface.
24248         (init_fringe_once): Do not declare unless HAVE_WINDOW_SYSTEM.
24250         * fontset.c (free_realized_fontset): Now static.
24251         (Fset_fontset_font): Rename local to avoid shadowing.
24252         (fontset_font): Mark local as initialized.
24253         (FONTSET_SPEC, FONTSET_REPERTORY, RFONT_DEF_REPERTORY): Remove; unused.
24255         * xrdb.c: Include "xterm.h", to check x_load_resources's interface.
24257         * xselect.c (x_disown_buffer_selections): Remove; not used.
24258         (TRACE3) [!defined TRACE_SELECTION]: Remove; not used.
24259         (x_own_selection, Fx_disown_selection_internal): Rename locals
24260         to avoid shadowing.
24261         (x_handle_dnd_message): Remove local to avoid shadowing.
24263         * lisp.h (GCPRO1_VAR, UNGCPRO_VAR): New macros,
24264         so that the caller can use some name other than gcpro1.
24265         (GCPRO1, UNGCPRO): Reimplement in terms of the new macros.
24266         * xfns.c (Fx_create_frame, x_create_tip_frame, Fx_show_tip):
24267         (Fx_backspace_delete_keys_p):
24268         Use them to avoid shadowing, and rename vars to avoid shadowing.
24269         (x_decode_color, x_set_name, x_window): Now static.
24270         (Fx_create_frame): Add braces to silence GCC warning.
24271         (Fx_file_dialog, Fx_select_font): Fix pointer signedness.
24272         (x_real_positions, xg_set_icon_from_xpm_data, x_create_tip_frame):
24273         Remove unused locals.
24274         (Fx_create_frame, x_create_tip_frame, Fx_show_tip):
24275         (Fx_backspace_delete_keys_p): Rename locals to avoid shadowing.
24276         Some of these renamings use the new GCPRO1_VAR and UNGCPRO_VAR
24277         macros.
24279         * xterm.h (x_mouse_leave): New decl.
24281         * xterm.c (x_copy_dpy_color, x_focus_on_frame, x_unfocus_frame):
24282         Remove unused functions.
24283         (x_shift_glyphs_for_insert, XTflash, XTring_bell):
24284         (x_calc_absolute_position): Now static.
24285         (XTread_socket): Don't define label "out" unless it's used.
24286         Don't declare local "event" unless it's used.
24287         (x_iconify_frame, x_free_frame_resources): Don't declare locals
24288         unless they are used.
24289         (XEMBED_VERSION, xembed_set_info): Don't define unless needed.
24290         (x_fatal_error_signal): Remove; not used.
24291         (x_draw_image_foreground, redo_mouse_highlight, XTmouse_position):
24292         (x_scroll_bar_report_motion, handle_one_xevent, x_draw_bar_cursor):
24293         (x_error_catcher, x_connection_closed, x_error_handler):
24294         (x_error_quitter, xembed_send_message, x_iconify_frame):
24295         (my_log_handler): Rename locals to avoid shadowing.
24296         (x_delete_glyphs, x_ins_del_lines): Mark with NO_RETURN.
24297         (x_connection_closed): Tell GCC not to suggest NO_RETURN.
24299         * xfaces.c (clear_face_cache, Fx_list_fonts, Fface_font):
24300         Rename or move locals to avoid shadowing.
24301         (tty_defined_color, merge_face_heights): Now static.
24302         (free_realized_faces_for_fontset): Remove; not used.
24303         (Fx_list_fonts): Mark variable that gcc -Wuninitialized
24304         does not deduce is never used uninitialized.
24305         (STRDUPA, LSTRDUPA, FONT_POINT_SIZE_QUANTUM): Remove; not used.
24306         (LFACEP): Define only if XASSERTS, as it's not needed otherwise.
24308         * terminal.c (store_terminal_param): Now static.
24310         * xmenu.c (menu_highlight_callback): Now static.
24311         (set_frame_menubar): Remove unused local.
24312         (xmenu_show): Rename parameter to avoid shadowing.
24313         (xmenu_show, xdialog_show, xmenu_show): Make local pointers "const"
24314         since they might point to immutable storage.
24315         (next_menubar_widget_id): Declare only if USE_X_TOOLKIT,
24316         since it's unused otherwise.
24318         * xdisp.c (produce_glyphless_glyph): Initialize lower_xoff.
24319         Add a FIXME, since the code still doesn't look right.  (Bug#8215)
24320         (Fcurrent_bidi_paragraph_direction): Simplify slightly; this
24321         avoids a gcc -Wuninitialized diagnostic.
24322         (display_line, BUILD_COMPOSITE_GLYPH_STRING, draw_glyphs):
24323         (note_mouse_highlight): Mark variables that gcc -Wuninitialized
24324         does not deduce are never used uninitialized.
24326         * lisp.h (IF_LINT): New macro, copied from ../lib-src/emacsclient.c.
24328         * xdisp.c (redisplay_window): Rename local to avoid shadowing.
24329         * window.c (window_loop, size_window):
24330         (run_window_configuration_change_hook, enlarge_window): Likewise.
24332         * window.c (display_buffer): Now static.
24333         (size_window): Mark variables that gcc -Wuninitialized
24334         does not deduce are never used uninitialized.
24335         * window.h (check_all_windows): New decl, to forestall
24336         gcc -Wmissing-prototypes diagnostic.
24337         * dispextern.h (bidi_dump_cached_states): Likewise.
24339         * charset.h (CHECK_CHARSET_GET_CHARSET): Rename locals to avoid
24340         shadowing.
24341         * charset.c (map_charset_for_dump, Fchar_charset): Likewise.
24342         Include <limits.h>.
24343         (Fsort_charsets): Redo min/max calculation to shorten the code a bit
24344         and to avoid gcc -Wuninitialized warning.
24345         (load_charset_map): Mark variables that gcc -Wuninitialized
24346         does not deduce are never used uninitialized.
24347         (load_charset): Abort instead of using uninitialized var (Bug#8229).
24349         * coding.c (coding_set_source, coding_set_destination):
24350         Use "else { /* comment */ }" rather than "else /* comment */;"
24351         for clarity, and to avoid gcc -Wempty-body warning.
24352         (Fdefine_coding_system_internal): Don't redeclare 'i' inside
24353         a block, when the outer 'i' will do.
24354         (decode_coding_utf_8, decode_coding_utf_16, detect_coding_emacs_mule):
24355         (emacs_mule_char, decode_coding_emacs_mule, detect_coding_iso_2022):
24356         (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5):
24357         (decode_coding_raw_text, decode_coding_charset, get_translation_table):
24358         (Fdecode_sjis_char, Fdefine_coding_system_internal):
24359         Rename locals to avoid shadowing.
24360         * character.h (FETCH_STRING_CHAR_ADVANCE): Likewise.
24361         * coding.c (emacs_mule_char, encode_invocation_designation):
24362         Now static, since they're not used elsewhere.
24363         (decode_coding_iso_2022): Add "default: abort ();" as a safety check.
24364         (decode_coding_object, encode_coding_object, detect_coding_system):
24365         (decode_coding_emacs_mule): Mark variables that gcc
24366         -Wuninitialized does not deduce are never used uninitialized.
24367         (detect_coding_iso_2022): Initialize a local variable that might
24368         be used uninitialized.  Leave a FIXME because it's not clear that
24369         this initialization is needed.  (Bug#8211)
24370         (ISO_CODE_LF, ISO_CODE_CR, CODING_ISO_FLAG_EUC_TW_SHIFT):
24371         (ONE_MORE_BYTE_NO_CHECK, UTF_BOM, UTF_16_INVALID_P):
24372         (SHIFT_OUT_OK, ENCODE_CONTROL_SEQUENCE_INTRODUCER):
24373         (ENCODE_DIRECTION_R2L, ENCODE_DIRECTION_L2R):
24374         Remove unused macros.
24376         * category.c (hash_get_category_set): Remove unused local var.
24377         (copy_category_table): Now static, since it's not used elsewhere.
24378         * character.c (string_count_byte8): Likewise.
24380         * ccl.c (CCL_WRITE_STRING, CCL_ENCODE_CHAR, Fccl_execute_on_string):
24381         (Fregister_code_conversion_map): Rename locals to avoid shadowing.
24383         * chartab.c (copy_sub_char_table): Now static, since it's not used
24384         elsewhere.
24385         (sub_char_table_ref_and_range, char_table_ref_and_range):
24386         Rename locals to avoid shadowing.
24387         (ASET_RANGE, GET_SUB_CHAR_TABLE): Remove unused macros.
24389         * bidi.c (bidi_check_type): Now static, since it's not used elsewhere.
24390         (BIDI_BOB): Remove unused macro.
24392         * cm.c (cmgoto): Mark variables that gcc -Wuninitialized does not
24393         deduce are never used uninitialized.
24394         * term.c (encode_terminal_code): Likewise.
24396         * term.c (encode_terminal_code): Now static.  Remove unused local.
24398         * tparam.h: New file.
24399         * term.c, tparam.h: Include it.
24400         * deps.mk (term.o, tparam.o): Depend on tparam.h.
24401         * term.c (tputs, tgetent, tgetflag, tgetnum, tparam, tgetstr):
24402         Move these decls to tparam.h, and make them agree with what
24403         is actually in tparam.c.  The previous trick of using incompatible
24404         decls in different modules does not conform to the C standard.
24405         All callers of tparam changed to use tparam's actual API.
24406         * tparam.c (tparam1, tparam, tgoto):
24407         Use const pointers where appropriate.
24409         * cm.c (calccost, cmgoto): Use const pointers where appropriate.
24410         * cm.h (struct cm): Likewise.
24411         * dispextern.h (do_line_insertion_deletion_costs): Likewise.
24412         * scroll.c (ins_del_costs, do_line_insertion_deletion_costs): Likewise.
24413         * term.c (tty_ins_del_lines, calculate_costs, struct fkey_table):
24414         (term_get_fkeys_1, append_glyphless_glyph, produce_glyphless_glyph):
24415         (turn_on_face, init_tty): Likewise.
24416         * termchar.h (struct tty_display_info): Likewise.
24418         * term.c (term_mouse_position): Rename local to avoid shadowing.
24420         * alloc.c (mark_ttys): Move decl from here ...
24421         * lisp.h (mark_ttys): ... to here, so that it's checked against defn.
24423 2011-03-11  Andreas Schwab  <schwab@linux-m68k.org>
24425         * .gdbinit (pwinx, xbuffer): Fix access to buffer name.
24427 2011-03-09  Juanma Barranquero  <lekktu@gmail.com>
24429         * search.c (compile_pattern_1): Remove argument regp, unused since
24430         revid:rms@gnu.org-19941211082627-3x1g1wyqkjmwloig.
24431         (compile_pattern): Don't pass it.
24433 2011-03-08  Jan Djärv  <jan.h.d@swipnet.se>
24435         * xterm.h (DEFAULT_GDK_DISPLAY): New define.
24436         (GDK_WINDOW_XID, gtk_widget_get_preferred_size): New defines
24437         for ! HAVE_GTK3.
24438         (GTK_WIDGET_TO_X_WIN): Use GDK_WINDOW_XID.
24440         * xmenu.c (menu_position_func): Call gtk_widget_get_preferred_size.
24442         * gtkutil.c: Include gtkx.h if HAVE_GTK3.  If ! HAVE_GTK3, define
24443         gdk_window_get_screen, gdk_window_get_geometry,
24444         gdk_x11_window_lookup_for_display and GDK_KEY_g.
24445         (xg_set_screen): Use DEFAULT_GDK_DISPLAY.
24446         (xg_get_pixbuf_from_pixmap): New function.
24447         (xg_get_pixbuf_from_pix_and_mask): Change parameters from GdkPixmap
24448         to Pixmap, take frame as parameter, remove GdkColormap parameter.
24449         Call xg_get_pixbuf_from_pixmap instead of
24450         gdk_pixbuf_get_from_drawable.
24451         (xg_get_image_for_pixmap): Do not make GdkPixmaps, call
24452         xg_get_pixbuf_from_pix_and_mask with Pixmap parameters instead.
24453         (xg_check_special_colors): Use GtkStyleContext and its functions
24454         for HAVE_GTK3.
24455         (xg_prepare_tooltip, xg_hide_tooltip): Call gdk_window_get_screen.
24456         (xg_prepare_tooltip, create_dialog, menubar_map_cb)
24457         (xg_update_frame_menubar, xg_tool_bar_detach_callback)
24458         (xg_tool_bar_attach_callback, xg_update_tool_bar_sizes):
24459         Call gtk_widget_get_preferred_size.
24460         (xg_frame_resized): gdk_window_get_geometry only takes 5
24461         parameters.
24462         (xg_win_to_widget, xg_event_is_for_menubar):
24463         Call gdk_x11_window_lookup_for_display.
24464         (xg_set_widget_bg): New function.
24465         (delete_cb): New function.
24466         (xg_create_frame_widgets): Connect delete-event to delete_cb.
24467         Call xg_set_widget_bg.  Only set background pixmap for ! HAVE_GTK3
24468         (xg_set_background_color): Call xg_set_widget_bg.
24469         (xg_set_frame_icon): Call xg_get_pixbuf_from_pix_and_mask.
24470         (xg_create_scroll_bar): vadj is a GtkAdjustment for HAVE_GTK3.
24471         Only call gtk_range_set_update_policy if ! HAVE_GTK3.
24472         (xg_make_tool_item): Only connect xg_tool_bar_item_expose_callback
24473         if ! HAVE_GTK3.
24474         (update_frame_tool_bar): Call gtk_widget_hide.
24475         (xg_initialize): Use GDK_KEY_g.
24477         * xsmfns.c (gdk_set_sm_client_id): Define to gdk_set_sm_client_id
24478         if ! HAVE_GTK3
24479         (x_session_initialize): Call gdk_x11_set_sm_client_id.
24481         * xterm.c (XFillRectangle): Use cairo routines for HAVE_GTK3.
24482         (x_term_init): Disable Xinput(2) with GDK_CORE_DEVICE_EVENTS.
24483         Load ~/emacs.d/gtkrc only for ! HAVE_GTK3.
24485 2011-03-08  Juanma Barranquero  <lekktu@gmail.com>
24487         * w32xfns.c (select_palette): Check success of RealizePalette against
24488         GDI_ERROR, not zero.
24490 See ChangeLog.11 for earlier changes.
24492 ;; Local Variables:
24493 ;; coding: utf-8
24494 ;; End:
24496   Copyright (C) 2011-2013 Free Software Foundation, Inc.
24498   This file is part of GNU Emacs.
24500   GNU Emacs is free software: you can redistribute it and/or modify
24501   it under the terms of the GNU General Public License as published by
24502   the Free Software Foundation, either version 3 of the License, or
24503   (at your option) any later version.
24505   GNU Emacs is distributed in the hope that it will be useful,
24506   but WITHOUT ANY WARRANTY; without even the implied warranty of
24507   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
24508   GNU General Public License for more details.
24510   You should have received a copy of the GNU General Public License
24511   along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.