*** empty log message ***
[emacs.git] / src / ChangeLog
blobaa5ff38f12ee1344b77b72d0dfcd36e10df04e68
1 2003-04-11  Kenichi Handa  <handa@m17n.org>
3         * fileio.c (Vafter_insert_file_adjust_coding_function): Delete
4         this variable.
5         (Qafter_insert_file_set_coding): New variable.
6         (syms_of_fileio): Initialize and staticpro it.  Delete declaration
7         for after-insert-file-adjust-coding-function.
8         (Finsert_file_contents): Call Qafter_insert_file_set_coding
9         instead of Vafter_insert_file_adjust_coding_function.
11 2003-04-11  Kenichi Handa  <handa@m17n.org>
13         * lisp.h (temp_echo_area_glyphs): Adjust prototype.
15         * minibuf.c (temp_echo_area_glyphs): Change the arg to Lisp
16         string.  Callers changed.
18 2003-04-10  Kenichi Handa  <handa@m17n.org>
20         * fileio.c (Vafter_insert_file_adjust_coding_function): New
21         variable.
22         (syms_of_fileio): Declare it as a lisp variable.
23         (Finsert_file_contents): Call
24         Vafter_insert_file_adjust_coding_function before calling
25         decode-format.
27 2003-04-09  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
29         * xterm.c (xg_scroll_callback): Call gtk_range_get_adjustment to
30         get GtkAdjustment as widget now is a GtkRange.
32         * gtkutil.c (xg_create_scroll_bar): Connect to value-changed on
33         GtkRange to avoid memory leak.
35 2003-04-09  Kenichi Handa  <handa@m17n.org>
37         * xfaces.c (Vface_font_rescale_alist): New variable.
38         (struct font_name): New member rescale_ratio.
39         (font_rescale_ratio): New function.
40         (split_font_name): If NUMERIC_P is nonzero, set
41         font->rescale_ratio.
42         (better_font_p): On comparing point sized, pay attention to
43         recale_ratio member of fonts.
44         (build_scalable_font_name): Reflect font->rescale_ratio in the
45         font name.
46         (syms_of_xfaces): Declare Vface_font_rescale_alist as a Lisp
47         variable.
49         * lread.c (read1): Before calling index, check if the 2nd
50         arguemnt is in ASCII range.
52 2003-04-08  Richard M. Stallman  <rms@gnu.org>
54         * fileio.c (Ffile_symlink_p): Doc fix.
56         * editfns.c (Fformat): Translate positions of text properties
57         in the format string to apply them to the result.
59         * fileio.c (Finsert_file_contents): Doc fix.
60         (syms_of_fileio) <after-insert-file-functions>: Doc fix.
62 2003-04-08  Ivan Zakharyaschev  <imz@altlinux.org>  (tiny change)
63         
64         * lread.c (openp): Get the Qfile_exists_p handler for STRING, not FN.
66 2003-04-08  Steven Tamm  <steventamm@mac.com>
68         * mac.c (init_mac_osx_environment): Switch libexec and bin so
69         that self-contained application finds libexec files.
71 2003-04-08  Kenichi Handa  <handa@m17n.org>
73         * coding.c (code_convert_region_unwind): Set
74         Vlast_coding_system_used to the argument.
75         (code_convert_region): If post-read-conversion function changed
76         the value of last-coding-sytem, keep the new value in
77         coding->symbol so that it won't be overridden.
78         (run_pre_post_conversion_on_str): Likewise.
79         (coding_system_accept_latin_extra_p): New function.
80         (find_safe_codings): Pay attention to characters registered in
81         latin-extra-code-table.
83 2003-04-07  Thien-Thi Nguyen  <ttn@gnu.org>
85         * Makefile.in (md5.o): Add missing dependency info.
87 2003-04-06  Richard M. Stallman  <rms@gnu.org>
89         * xselect.c (x_handle_selection_request): Move UNGCPRO to very end.
91         * marker.c (verify_bytepos): New function.
93         * intervals.c (set_intervals_multibyte_1): When becoming
94         multibyte, adjust right and left child sizes to a whole set of
95         characters.  If an interval gets zero total-length, delete it.
96         If an interval consists of just its children, delete one of them.
98         * intervals.h (CHECK_TOTAL_LENGTH): New macro.
99         * intervals.c: Add many calls to CHECK_TOTAL_LENGTH.
101         * alloc.c: (VALIDATE_LISP_STORAGE): Macro deleted.
102         All calls deleted.
103         (lisp_malloc): Do the work here directly.
105 2003-04-06  Gareth Jones  <emacs@referential.org.uk>  (tiny change)
107         * fns.c (Flength): Return SUB_CHAR_TABLE_ORDINARY_SLOTS for sub
108         char tables.
110 2003-04-04  Kenichi Handa  <handa@m17n.org>
112         * editfns.c (Fformat): Use a copy of FORMAT string so that we can
113         destructively change "%S" to "%s".
115 2003-04-03  Miles Bader  <miles@gnu.org>
117         * xfaces.c (choose_face_font): Make sure *NEEDS_OVERSTRIKE is
118         always set.
120 2003-04-01  Dave Love  <fx@gnu.org>
122         * xfns.c (xpm_lookup_color): Grok "opaque".
124 2003-03-31  Andrew Choi  <akochoi@shaw.ca>
126         * frame.c (x_report_frame_params) [HAVE_CARBON]: Do not report
127         parent window ID.
129         * macfns.c (syms_of_macfns): Remove call to init_x_parm_symbols.
131         * macterm.h (struct mac_output): Define x_pixels_diff and
132         y_pixels_diff.
134 2003-03-31  Juanma Barranquero  <lektu@terra.es>
136         * makefile.w32-in ($(BLD)/frame.$(O)): Add dependency on
137         blockinput.h and files included from it.
139 2003-03-31  Kim F. Storm  <storm@cua.dk>
141         The following changes consolidates the common code related to
142         frame-parameter handling from the xfns.c, w32fns.c, and macfns.c
143         files into frame.c.
145         * frame.c: Include blockinput.h.
146         (Vx_resource_name, Vx_resource_class, Qx_frame_parameter)
147         (Qx_resource_name, Qface_set_after_frame_default): Define vars here.
148         (Qauto_raise, Qauto_lower, ...): Define all frame parameter
149         related vars here.
150         (struct frame_parm_table, frame_parms): New table for describing
151         frame parameters and their associated Q-variable.
152         The order of the parameters corresponds to the sequence of the
153         frame_parm_handlers table in redisplay_interface.
154         (x_fullscreen_move, x_set_frame_parameters)
155         (x_report_frame_params, x_set_fullscreen, x_set_line_spacing)
156         (x_set_screen_gamma, x_set_font, x_set_fringe_width)
157         (x_set_border_width, x_set_internal_border_width, x_set_visibility)
158         (x_set_autoraise, x_set_autolower, x_set_unsplittable)
159         (x_set_vertical_scroll_bars, x_set_scroll_bar_width, x_icon_type):
160         Generic functions for processing of frame parameters.
161         (validate_x_resource_name, xrdb_get_resource, Fx_get_resource)
162         (display_x_get_resource, x_get_resource_string): Functions for
163         generic access to X resources.
164         (x_get_arg, x_frame_get_arg, x_frame_get_and_record_arg)
165         (x_default_parameter, Fx_parse_geometry): Functions for generic
166         access to frame parameters.
167         (x_figure_window_size): Generic calculation of frame size. Fixed
168         to add space needed for tool bar.  Also setup size_hint_flags.
169         (syms_of_frame): Intern and staticpro frame parameter variables.
170         Defvar_lisp Vx_resource_class and Vx_resource_name here.
171         Defsubr Sx_get_resource and Sx_parse_geometry.
173         * frame.h (Qauto_raise, Qauto_lower, ...): Declare extern all frame
174         parameter related vars defined in frame.c.
175         (EMACS_CLASS): Define here.
176         (enum FULLSCREEN_*): Define here.
177         (x_set_scroll_bar_default_width, x_wm_set_icon_position)
178         (x_set_offset, x_new_font, x_new_fontset): Add prototypes.
179         (x_fullscreen_adjust, x_set_frame_parameters, x_report_frame_params)
180         (x_set_fullscreen, x_set_line_spacing, x_set_screen_gamma, x_set_font)
181         (x_set_fringe_width, x_set_border_width, x_set_internal_border_width)
182         (x_set_visibility, x_set_autoraise, x_set_autolower)
183         (x_set_unsplittable, x_set_vertical_scroll_bars)
184         (x_set_scroll_bar_width, x_icon_type, validate_x_resource_name)
185         (x_figure_window_size): Add prototypes.
187         * dispextern.h (frame_parm_handler): New typedef.
188         (struct redisplay_interface): New member frame_parm_handlers.
189         (enum resource_types): Move declaration here.
190         (x_get_arg, x_frame_get_arg, x_frame_get_and_record_arg)
191         (x_default_parameter): Add prototypes.
193         * window.c: Remove extern decl for frame parameter vars.
194         (change_window_heights): New generic function;
195         replaces x_change_window_heights.  All users changed.
197         * window.h (change_window_heights): Add prototype.
199         * xfaces.c: Remove extern decl for frame parameter vars.
201         * xterm.h (EMACS_CLASS): Remove.  Use generic define.
202         (struct w32_display_info): Fix type of xrdb member.
203         (enum FULLSCREEN_*): Remove.
204         Remove prototypes for generic functions (in frame.h).
206         * xfns.c (Qauto_raise, Qauto_lower, ...): Remove vars for frame
207         parameters now defined in frame.h and frame.c.
208         (Vx_resource_name): Remove. Use generic var.
209         (enum x_frame_parms): Remove (bogus, unused enum).
210         (check_x_display_info): Make non-static (for frame.c).
211         (struct x_frame_parm_table, x_frame_parms): Remove.
212         (init_x_parm_symbols, x_set_frame_parameters, x_report_frame_params)
213         (x_set_line_spacing, x_set_screen_gamma, x_icon_type, x_set_font)
214         (x_set_border_width, x_set_internal_border_width, x_set_visibility)
215         (x_change_window_heights, x_set_autoraise, x_set_autolower)
216         (x_set_vertical_scroll_bars, x_set_scroll_bar_width)
217         (validate_x_resource_name, Fx_get_resource, x_get_resource_string)
218         (x_default_parameter, Fx_parse_geometry, x_figure_window_size):
219         Remove.  Use generic functions instead.
220         (enum resource_types): Remove.
221         (x_set_scroll_bar_default_width): New global function (for frame.c).
222         (Fx_create_frame): Depend on x_figure_window_size to add space for
223         toolbar and setup size_hint_flags.
224         (x_frame_parm_handlers): New table for redisplay_interface.
225         (syms_of_xfns): Don't intern/staticpro removed vars.
227         * xterm.c: Remove unnecessary extern declarations.
228         (x_fullscreen_adjust): Remove. Use generic instead.
229         (x_redisplay_interface): Add x_frame_parm_handlers member.
231         * w32gui.h (XrmDatabase): New (dummy) typedef.
233         * w32term.h (EMACS_CLASS): Remove.  Use generic define.
234         (struct w32_display_info): Fix type of xrdb member.
235         (enum FULLSCREEN_*): Remove.
236         (x_fullscreen_adjust): Remove prototype.
238         * w32fns.c (Qauto_raise, Qauto_lower, ...): Remove vars for frame
239         parameters now defined in frame.h and frame.c.
240         (Vx_resource_name): Remove. Use generic var.
241         (enum x_frame_parms): Remove (bogus, unused enum).
242         (check_x_display_info): Make non-static (for frame.c).
243         (struct x_frame_parm_table, x_frame_parms): Remove.
244         (init_x_parm_symbols, x_set_frame_parameters, x_report_frame_params)
245         (x_set_line_spacing, x_set_screen_gamma, x_icon_type, x_set_font)
246         (x_set_border_width, x_set_internal_border_width, x_set_visibility)
247         (x_change_window_heights, x_set_autoraise, x_set_autolower)
248         (x_set_vertical_scroll_bars, x_set_scroll_bar_width)
249         (validate_x_resource_name, Fx_get_resource, x_get_resource_string)
250         (x_default_parameter, Fx_parse_geometry, x_figure_window_size):
251         Remove.  Use generic functions instead.
252         (enum resource_types): Remove.
253         (x_set_scroll_bar_default_width): New global function (for frame.c).
254         (Fx_create_frame): Depend on x_figure_window_size to add space for
255         toolbar and setup size_hint_flags.
256         (w32_frame_parm_handlers): New table for redisplay_interface.
257         (syms_of_w32fns): Don't intern/staticpro removed vars.
259         * w32term.c: Remove unnecessary extern declarations.
260         (x_fullscreen_adjust): Remove. Use generic instead.
261         (x_redisplay_interface): Add w32_frame_parm_handlers member.
263         * w32reg.c (x_get_string_resource): Use XrmDatabase.
265         * macgui.h (XrmDatabase): New (dummy) typedef.
267         * macterm.h (EMACS_CLASS): Remove.
268         (struct mac_display_info): Add xrdb member.
269         (struct mac_output): Add want_fullscreen member.
271         * macfns.c (Qauto_raise, Qauto_lower, ...): Remove vars for frame
272         parameters now defined in frame.h and frame.c.
273         (Vx_resource_name): Remove. Use generic var.
274         (check_x_display_info): Make non-static (for frame.c).
275         (struct x_frame_parm_table, x_frame_parms): Remove.
276         (init_x_parm_symbols, x_set_frame_parameters, x_report_frame_params)
277         (x_set_line_spacing, x_set_screen_gamma, x_icon_type, x_set_font)
278         (x_set_border_width, x_set_internal_border_width, x_set_visibility)
279         (x_change_window_heights, x_set_autoraise, x_set_autolower)
280         (x_set_vertical_scroll_bars, x_set_scroll_bar_width)
281         (validate_x_resource_name, Fx_get_resource, x_get_resource_string)
282         (x_default_parameter, Fx_parse_geometry, x_figure_window_size):
283         Remove.  Use generic functions instead.
284         (enum resource_types): Remove.
285         (x_set_scroll_bar_default_width): New global function (for frame.c).
286         (mac_frame_parm_handlers): New table for redisplay_interface.
287         (syms_of_macfns): Don't intern/staticpro removed vars.
289         * macterm.c: Remove unnecessary extern declarations.
290         (x_redisplay_interface): Add mac_frame_parm_handlers member.
292         * Makefile.in (frame.o): Add dependency on blockinput.h and files
293         included from it (atimer.h and systime.h).
295 2003-03-30  Andreas Schwab  <schwab@suse.de>
297         * xdisp.c (x_insert_glyphs): Fix swapped width and height
298         parameters for shift_glyphs_for_insert.
300         * macterm.c (x_redisplay_interface): Add missing entry for
301         draw_vertical_window_border.
303 2003-03-29  Kai Gro\e,A_\e(Bjohann  <kai.grossjohann@gmx.net>
305         * fileio.c (Fexpand_file_name): In the no-handler case, after
306         expanding, look again for a handler and invoke it.  This is needed
307         for filenames like "/foo/../user@host:/bar/../baz" -- the first
308         expansion produces "/user@host:/bar/../baz" which needs to be
309         expanded again for the finame result "/user@host:/baz".
311 2003-03-28  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
313         * gtkutil.c (xg_tool_bar_item_expose_callback): Reduce size
314         of area to be redrawn for better performance.
316 2003-03-28  Stefan Monnier  <monnier@cs.yale.edu>
318         * xterm.c (take_vertical_position_into_account): Remove.
319         (xt_action_hook): Call set_vertical_scroll_bar if needed.
320         (XM_SB_MIN, XM_SB_RANGE): Remove (min is now set to 0).
321         (xm_scroll_callback, x_create_toolkit_scroll_bar)
322         (x_set_toolkit_scroll_bar_thumb): Simplify.
323         (x_scroll_bar_expose): Only compile if !USE_TOOLKIT_SCROLL_BARS.
324         (XTread_socket): Remove unused var.
325         (x_make_frame_invisible): Replace goto with else.
327         * xdisp.c (set_vertical_scroll_bar): New fun.
328         (redisplay_window): Use it.
330 2003-03-26  Richard M. Stallman  <rms@gnu.org>
332         * xdisp.c (update_tool_bar): Recompute tool bar if
333         update_mode_lines is set.  Set w->update_mode_line
334         only if the tool bar contents actually change.
335         (update_menu_bar): Undo previous change.
337 2003-03-26  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
339         * gtkutil.c (xg_resize_widgets): Don't call xg_frame_cleared.
340         (xg_frame_set_char_size): Calculate scroll bar width before frame
341         width.  Call SET_FRAME_GARBAGED and cancel_mouse_face.
342         (xg_separator_p): Check for all documented separator types.
343         (xg_update_scrollbar_pos): Variable gheight not needed, use height.
344         (update_frame_tool_bar): Don't call gdk_window_process_all_updates.
346         * xdisp.c (update_menu_bar): Set w->update_mode_line to Qt
347         so tool bar gets updated.
349 2003-03-26  Stefan Monnier  <monnier@cs.yale.edu>
351         * data.c (store_symval_forwarding): Re-instate part of the code
352         that was deleted with too much enthusiasm.
354 2003-03-25  Stefan Monnier  <monnier@cs.yale.edu>
356         * data.c (store_symval_forwarding): Delete special read-only
357         hack for type == -1, since we now use ->constant instead.
358         (Fkill_local_variable): Don't use XBUFFER if it can be nil.
360         * buffer.c (overlays_in): Declare static.
361         (syms_of_buffer) <enable-multibyte-characters>: Use the symbol's
362         `constant' field rather than the variable's `type' field.
364 2003-03-24  Andrew Choi  <akochoi@shaw.ca>
366         * config.in [MAC_OSX]: Do not redefine bcopy, bzero, and bcmp.
368         * dispextern.h [HAVE_CARBON]: Include Carbon.h.
370         * fns.c [MAC_OSX]: Do not redefine vector.
372         * keyboard.c [MAC_OSX]: Handle SIGINT with interrupt_signal.
374         * macgui.h: Remove definition of No_Cursor.
376         * macterm.h: Include Carbon.h.  Replace (struct Cursor *) by Cursor.
378         * xdisp.c: Define No_Cursor.
379         (x_write_glyphs, notice_overwritten_cursor)
380         (draw_phys_cursor_glyph, note_mode_line_or_margin_highlight)
381         (note_mouse_highlight): Remove Mac-specific code.
382         (note_mouse_highlight): Use bcmp instead of == to compare Cursors.
384 2003-03-24  John Paul Wallington  <jpw@gnu.org>
386         * xdisp.c (redisplay_window): If mini window's buffer is not
387         empty, then redisplay it like other windows.
389 2003-03-23  Kim F. Storm  <storm@cua.dk>
391         * w32term.c (w32_draw_window_cursor): Fix last change.
393 2003-03-23  Kenichi Handa  <handa@m17n.org>
395         * alloc.c (make_string_from_bytes, make_specified_string):
396         Add `const' for the arg CONTENTS.
398         * lisp.h (make_string_from_bytes, make_specified_string):
399         Prototypes adjusted.
401 2003-03-23  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
403         * xdisp.c (get_glyph_string_clip_rect): Remove ; at end of #endif
405         * gtkutil.h: Take two more arguments to xg_update_scrollbar_pos.
406         (XG_SB_RANGE): New define.
408         * gtkutil.c (xg_fixed_handle_expose): New function.
409         (xg_create_frame_widgets): Call xg_fixed_handle_expose for
410         expose events.
411         (xg_update_scrollbar_pos): Take two more arguments, left and width
412         of scroll bar including borders.
413         Clear left and right part outside scroll bar separately as some
414         themes have bars that are not an even number of pixels.
415         Don't set reallocate_redraws, don't call
416         gdk_window_process_all_updates.
417         (xg_set_toolkit_scroll_bar_thumb): Upper value is fixed,
418         so no need to change it.  Calculate size and value with XG_SB_RANGE.
420         * xterm.c (x_scroll_bar_create, XTset_vertical_scroll_bar):
421         Pass left and width of scroll bar including borders to
422         xg_update_scrollbar_pos.
424 2003-03-22  Thien-Thi Nguyen  <ttn@gnu.org>
426         * Makefile.in: Make sure space precedes end-of-line backslashes.
428 2003-03-22  Kim F. Storm  <storm@cua.dk>
430         * xdisp.c (pixel_to_glyph_coords, glyph_to_pixel_coords):
431         Add generic versions here.  Remove system specific versions
432         defined elsewhere.
434         * dispextern.h (pixel_to_glyph_coords, glyph_to_pixel_coords):
435         Add prototypes.
437         * xterm.h (STORE_NATIVE_RECT): New macro.
439 2003-03-21  Kim F. Storm  <storm@cua.dk>
441         * xdisp.c (get_glyph_string_clip_rect):
442         Use FRAME_INTERNAL_BORDER_WIDTH.
444         * dispextern.h (struct redisplay_interface): Add active_p
445         argument to draw_window_cursor member.  All uses changed.
447 2003-03-21  Kim F. Storm  <storm@cua.dk>
449         The following changes consolidate code related to writing and
450         inserting glyphs, exposing frame, the tool bar, the mouse face,
451         the output cursor, and help echo from xterm.c, w32term.c and
452         macterm.c into xdisp.c.  It also generalizes the use of the
453         window_part enum instead of using numeric values throughout.
455         * xdisp.c: Consolidate gui-independent code here.
456         Include keymap.h.
457         (Qhelp_echo): Import.
458         (mouse_autoselect_window, x_stretch_cursor_p): Declare here.
459         (help_echo_string, help_echo_window, help_echo_object)
460         (previous_help_echo_string, help_echo_pos): Declare here.
461         (output_cursor, last_mouse_frame, last_tool_bar_item): Declare here.
462         (estimate_mode_line_height): Define here.  Handle windowing
463         systems directly (without using estimate_mode_line_height_hook).
464         (x_y_to_hpos_vpos, get_tool_bar_item, note_tool_bar_highlight):
465         (update_window_cursor, update_cursor_in_window_tree)
466         (fast_find_position, fast_find_string_pos)
467         (note_mode_line_highlight, note_mode_line_or_margin_highlight)
468         (expose_area, expose_line, expose_overlaps, expose_window)
469         (expose_window_tree, phys_cursor_in_rect_p): New generic versions;
470         declared static as they are only used locally in xdisp.c.
471         (draw_glyphs): Rename from x_draw_glyphs and make static.
472         (tool_bar_item_info, notice_overwritten_cursor): Make static.
473         (frame_to_window_pixel_xy, get_glyph_string_clip_rect)
474         (set_output_cursor, x_cursor_to, handle_tool_bar_click)
475         (x_write_glyphs, x_insert_glyphs, x_clear_end_of_line):
476         (x_fix_overlapping_area, draw_phys_cursor_glyph, erase_phys_cursor)
477         (display_and_set_cursor, x_update_cursor, x_clear_cursor)
478         (show_mouse_face, clear_mouse_face, cursor_in_mouse_face_p)
479         (note_mouse_highlight, x_clear_window_mouse_face)
480         (cancel_mouse_face, x_draw_vertical_border, expose_frame)
481         (x_intersect_rectangles): New generic functions for use by xdisp.c
482         and GUI front-ends.
483         (syms_of_xdisp): Initialize and staticpro help_echo* variables.
484         Defvar_bool "x-streach-cursor" and "mouse-autoselect-window" here.
486         * dispextern.h (Display_Info): Generic typedef for *_display_info.
487         (NativeRectangle): Generic typedef for rectangle type.
488         (enum window_part): Move here from window.c.
489         (struct redisplay_interface): New members flush_display_optional,
490         define_frame_cursor, clear_frame_area, draw_window_cursor,
491         draw_vertical_window_border, shift_glyphs_for_insert.
492         Rename member clear_mouse_face to clear_window_mouse_face.
493         (estimate_mode_line_height_hook): Remove hook.
494         (auto_raise_tool_bar_buttons_p): Don't declare extern.
495         (tool_bar_item_info): Remove prototype.
496         (help_echo_string, help_echo_window, help_echo_object)
497         (previous_help_echo_string, help_echo_pos)
498         (last_mouse_frame, last_tool_bar_item, mouse_autoselect_window):
499         (x_stretch_cursor_p, output_cursor): Declare extern.
500         (x_draw_glyphs, notice_overwritten_cursor): Remove prototypes.
501         (x_write_glyphs), x_insert_glyphs, x_clear_end_of_line)
502         (x_fix_overlapping_area, draw_phys_cursor_glyph, erase_phys_cursor)
503         (display_and_set_cursor, set_output_cursor, x_cursor_to)
504         (x_update_cursor, x_clear_cursor, x_draw_vertical_border)
505         (frame_to_window_pixel_xy, get_glyph_string_clip_rect)
506         (note_mouse_highlight, x_clear_window_mouse_face, cancel_mouse_face)
507         (handle_tool_bar_click, clear_mouse_face, show_mouse_face)
508         (cursor_in_mouse_face_p, expose_frame, x_intersect_rectangles):
509         Add prototypes.
510         (mode_line_string, marginal_area_string): Fix prototypes.
512         * window.c (enum window_part): Move to dispextern.h.
513         (coordinates_in_window): Use enum window_part member names
514         instead of numbers to describe return value.
515         (struct check_window_data): Change part member to window_part.
516         (check_window_containing): Return window_part unaltered.
517         (window_from_coordinates): Change part arg from int to enum
518         window_part.  Allow part arg to be null.  All users changed.
520         * window.h (window_from_coordinates): Fix prototype.
522         * term.c (estimate_mode_line_height): Move to xdisp.c.
524         * keyboard.c (make_lispy_event): Use enum window_part.
526         * dispnew.c (mode_line_string, marginal_area_string): Use enum
527         window_part instead of int in arg list.  Users changed.
529         * xterm.h (No_Cursor): Declare as None for X.
530         (struct mac_output): Replace member cross_cursor by hand_cursor.
532         * xterm.c: Remove consolidated defines and code.
533         (BETWEEN): Remove unused macro.
534         (x_draw_vertical_window_border, x_shift_glyphs_for_insert)
535         (x_define_frame_cursor, x_clear_frame_area)
536         (x_draw_window_cursor): New X-specific functions for RIF.
537         (x_redisplay_interface): Add new members.
539         * xfns.c: Setup and use hand_cursor instead of cross_cursor.
541         * w32term.h (struct w32_output): Remove cross_cursor member.
543         * w32term.c: Remove consolidated defines and code.
544         (BETWEEN): Remove unused macro.
545         (w32_draw_vertical_window_border, w32_shift_glyphs_for_insert)
546         (w32_define_frame_cursor, w32_clear_frame_area)
547         (w32_draw_window_cursor): New W32-specific functions for RIF.
548         (w32_redisplay_interface): Add new members.
550         * w32gui.h (No_Cursor):  Define as 0 for W32.
551         (XRectangle): Add X compatible rectangle type.
552         (NativeRectangle): Declare as RECT for W32.
553         (CONVERT_TO_XRECT, CONVERT_FROM_XRECT, STORE_NATIVE_RECT): New macros.
555         * w32fns.c: Remove setup of cross_cursor (already has hand_cursor).
557         * w32console.c: Remove consolidated defines and code.
559         * msdos.h (Display_Info): Add generic typedef.
561         * msdos.c: Remove consolidated defines and code.
562         (IT_note_mouse_highlight, dos_rawgetc): Use enum window_part.
564         * macterm.h (struct mac_output): Replace member cross_cursor by
565         hand_cursor.
566         (activate_scroll_bars, deactivate_scroll_bars): Add prototypes.
568         * macterm.c: Remove consolidated defines and code.
569         (BETWEEN): Remove unused macro.
570         (mac_draw_vertical_window_border, mac_shift_glyphs_for_insert)
571         (mac_define_frame_cursor, mac_clear_frame_area)
572         (mac_draw_window_cursor): New Mac-specific functions for RIF.
573         (x_redisplay_interface): Add new members.
575         * macgui.h (No_Cursor): Define as 0 for Mac.
576         (XRectangle): Add X compatible rectangle type.
577         (NativeRectangle): Declare as Rect for Mac.
578         (CONVERT_TO_XRECT, CONVERT_FROM_XRECT, STORE_NATIVE_RECT): New macros.
580         * macfns.c (x_set_mouse_color): Setup hand_cursor.
581         (x_set_cursor_color): Use x_display_and_set_cursor.
583         * Makefile.in (xdisp.o): Add dependency on blockinput.h and files
584         included from it.  Add dependency on keymap.h.
586         * makefile.w32-in (xdisp.o): Add dependency on keymap.h.
588 2003-03-21  Kenichi Handa  <handa@m17n.org>
590         * fileio.c (Fexpand_file_name): Fix previous change.
592 2003-03-19  Kenichi Handa  <handa@m17n.org>
594         * fileio.c (Ffile_name_directory): Reconstruct file name by
595         make_specified_string.
596         (Ffile_name_nondirectory, Ffile_name_as_directory)
597         (Fdirectory_file_name, Fexpand_file_name)
598         (Fsubstitute_in_file_name): Likewise.
599         (Fread_file_name): Compare decoded homedir with DIR and
600         DEFAULT_FILENAME.
602         * alloc.c (make_specified_string): If NCHARS is negative, count
603         the number of characters.
605 2003-03-18  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
607         * gtkutil.c (xg_frame_cleared): Call gtk_widget_queue_draw for
608         all widgets.
610         * gtkutil.h: Removed xg_ignore_next_thumb.
612 2003-03-18  Kenichi Handa  <handa@m17n.org>
614         * coding.c (Vchar_coding_system_table): Remove this variable.
615         (Vcoding_system_safe_chars): New variable.
616         (intersection): Remove this function.
617         (find_safe_codings): Don't use Vchar_coding_system_table, but try
618         all codings in SAFE_CODINGS.
619         (Ffind_coding_systems_region_internal): Adjust for the change of
620         find_safe_codings.  Get generic coding systems from
621         Vcoding_system_safe_chars.
622         (Fdefine_coding_system_internal): New function.
623         (syms_of_coding): Defsubr Sdefine_coding_system_internal.
624         Initialize and staticpro Vcoding_system_safe_chars.
626 2003-03-18  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
628         * gtkutil.c (xg_set_toolkit_scroll_bar_thumb): Check if new values
629         equal old values before updating.
631         * xterm.c (xg_scroll_callback): Remove xg_ignore_next_thumb.
633         * gtkutil.c (xg_initialize): Remove xg_ignore_next_thumb.
635 2003-03-17  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
637         * gtkutil.c: Removed handle_fixed_child, struct xg_last_sb_pos.
638         (xg_resize_widgets): Don't call foreach(handle_fixed_child).
639         (xg_gtk_scroll_destroy): Remove free of struct xg_last_sb_pos.
640         (scroll_bar_button_cb): Set bar->dragging to NIL on button release.
641         (xg_create_scroll_bar): Pass bar to button event callback.
642         (xg_find_top_left_in_fixed): New function.
643         (xg_update_scrollbar_pos): Don't call gdk_window_clear on
644         whole scroll bar area.  Get old position with
645         xg_find_top_left_in_fixed, calculate and only clear needed areas.
646         (xg_set_toolkit_scroll_bar_thumb): Do not adjust scroll bar if
647         dragging is in progress.  Calculate whole as for Motif.
648         Remove code that saved last values.  Call gtk_range functions to
649         set scroll bar sizes.
651         * gtkutil.h: Removed xg_ignore_next_thumb.
653 2003-03-17  Juanma Barranquero  <lektu@terra.es>
655         * makefile.w32-in ($(BLD)/xdisp.$(O)): Add dependency on blockinput.h
656         and files included from it.
658 2003-03-18  Stefan Monnier  <monnier@cs.yale.edu>
660         * keymap.c (accessible_keymaps_1): Break cycles but without preventing
661         multiple occurrences of the same keymap under different prefixes.
662         (Faccessible_keymaps): Remove code redundant since 1994-08-03T07:39:00Z!rms@gnu.org.
664 2003-03-16  Jason Rumney  <jasonr@gnu.org>
666         * w32gui.h: Use HDC for Display.
668         * w32term.c (w32_encode_char): Prevent double-byte chars from
669         crashing Emacs.
671         * w32fns.c (jpeg_load, png_load, slurp_file): Read image files
672         as binary.
674 2003-03-16  Juanma Barranquero  <lektu@terra.es>
676         * xdisp.c (x_produce_glyphs): Use FRAME_BASELINE_OFFSET.
678 2003-03-16  Kim F. Storm  <storm@cua.dk>
680         The following changes consolidate some of the gui-independent
681         parts of the processing and drawing of "glyph strings" from
682         xterm.c, w32term.c, and macterm.c into xdisp.c.
684         * dispextern.h (struct glyph): Reduce face_id member from 22 to
685         21 bits (this reduces number of faces from 4M to 2M).
686         Replace W32 specific w32_font_type member (2 bits) by generic
687         font_type member (3 bits) for portability.
688         (FONT_TYPE_UNKNOWN): New define, default for font_type member.
689         (enum draw_glyphs_face): Define here.
690         (struct glyph_string): Define here.  Merge W32 and X versions.
691         (struct redisplay_interface): New members per_char_metric,
692         encode_char, compute_glyph_string_overhangs, draw_glyph_string.
693         (VCENTER_BASELINE_OFFSET): Define here.
694         (dump_glyph_string, x_get_glyph_overhangs, x_produce_glyphs)
695         (x_draw_glyphs, notice_overwritten_cursor): Declare prototypes here.
697         * xdisp.c: Consolidate gui-independent "glyph string" code here.
698         (dump_glyph_string): Moved here.
699         (init_glyph_string, append_glyph_string_lists, append_glyph_string)
700         (prepend_glyph_string_lists, get_glyph_face_and_encoding)
701         (fill_composite_glyph_string, fill_glyph_string)
702         (fill_image_glyph_string, fill_stretch_glyph_string)
703         (left_overwritten, left_overwriting, right_overwritten)
704         (right_overwriting, get_char_face_and_encoding)
705         (set_glyph_string_background_width, compute_overhangs_and_x)
706         (append_glyph, append_composite_glyph, produce_image_glyph)
707         (take_vertical_position_into_account, append_stretch_glyph)
708         (produce_stretch_glyph): New generic functions (based on X version).
709         Call platform specific functions through rif.
710         (INIT_GLYPH_STRING): New macro, hides W32 details.
711         (BUILD_STRETCH_GLYPH_STRING, BUILD_IMAGE_GLYPH_STRING)
712         (BUILD_CHAR_GLYPH_STRINGS, BUILD_COMPOSITE_GLYPH_STRING)
713         (BUILD_GLYPH_STRINGS): Generic macros (based on X version).
714         (x_draw_glyphs, x_get_glyph_overhangs, x_produce_glyphs)
715         (notice_overwritten_cursor):
716         Generic functions exported to platform modules.  Users changed.
718         * xterm.h (FONT_DESCENT, FRAME_X_OUTPUT, FRAME_BASELINE_OFFSET)
719         (FONT_TYPE_FOR_UNIBYTE, FONT_TYPE_FOR_MULTIBYTE)
720         (STORE_XCHAR2B, XCHAR2B_BYTE1, XCHAR2B_BYTE2):
721         New macros for consolidated code.
723         * xterm.c: Remove consolidated defines and code.
724         (x_per_char_metric, x_encode_char)
725         (x_compute_glyph_string_overhangs): Adapt to RIF requirements.
726         (x_redisplay_interface): Add new members.
728         * w32gui.h (Display): Add dummy typedef for consolidation.
729         (XChar2b): Define alias for wchar_t for consolidation.
730         (STORE_XCHAR2B, XCHAR2B_BYTE1, XCHAR2B_BYTE2): New macros.
732         * w32term.h (FRAME_X_OUTPUT, FRAME_X_WINDOW, FRAME_X_DISPLAY)
733         (FONT_TYPE_FOR_UNIBYTE, FONT_TYPE_FOR_MULTIBYTE):
734         New macros for consolidation.
736         * w32term.c: Remove consolidated defines and code.
737         (BUILD_WCHAR_T, BYTE1, BYTE2): Macros removed; callers changed
738         to use STORE_XCHAR2B, XCHAR2B_BYTE1, XCHAR2B_BYTE2 instead.
739         (w32_per_char_metric): Change font_type arg to int for RIF.
740         (w32_encode_char): Return int according to RIF requirements.
741         (w32_compute_glyph_string_overhangs): Adapt to RIF.
742         (w32_get_glyph_overhangs): New function for RIF.  Uses generic
743         x_get_glyph_overhangs.
744         (w32_redisplay_interface): Add new members.
746         * macgui.h (XChar2b): Move typedef here for consolidation.
747         (STORE_XCHAR2B, XCHAR2B_BYTE1, XCHAR2B_BYTE2): New macros.
749         * macterm.h (FRAME_X_OUTPUT, FRAME_X_WINDOW, FRAME_X_DISPLAY):
750         (FONT_TYPE_FOR_UNIBYTE, FONT_TYPE_FOR_MULTIBYTE): New macros for
751         consolidation.
753         * macterm.c: Remove consolidated defines and code.
754         (mac_per_char_metric): New function for RIF.
755         (mac_encode_char): Adapt to new RIF requirements.
756         (mac_compute_glyph_string_overhangs): Adapt for RIF.
757         (x_redisplay_interface): Add new members.
759 2003-03-15  Stefan Monnier  <monnier@cs.yale.edu>
761         * keymap.c (Vmenu_events): New var.
762         (syms_of_keymap): Initialize it.
763         (where_is_internal): Check more carefully what is a menu event.
765 2003-03-14  Richard M. Stallman  <rms@gnu.org>
767         * lread.c (read1): After #!, exit loop on eof.
769 2003-03-14  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
771         * gtkutil.h: Add declaration for xg_frame_cleared.
773         * xterm.c (x_clear_frame): Call xg_frame_cleared for GTK.
775         * gtkutil.c (struct xg_last_sb_pos): New structure.
776         (handle_fixed_child): New function.
777         (xg_resize_widgets): Call handle_fixed_child on all scroll bar widgets
778         and force a redraw on them.
779         (xg_gtk_scroll_destroy): Free struct xg_last_sb_pos also.
780         (xg_create_scroll_bar): Add struct xg_last_sb_pos to scroll bar
781         so we can avoid unneeded redraws.
782         (xg_update_scrollbar_pos): Invalidate data in xg_last_sb_pos
783         and force a redraw on the scroll bar.
784         (xg_set_toolkit_scroll_bar_thumb): Do not change/redraw scroll bar
785         if xg_last_sb_pos shows the positions are up to date.
786         (xg_frame_cleared): New function.
788 2003-03-13  Kenichi Handa  <handa@m17n.org>
790         * coding.c (Fdetect_coding_region): Fix docstring.
791         (Fdetect_coding_string): Fix docstring.
793 2003-03-13  Andreas Schwab  <schwab@suse.de>
795         * gtkutil.c: Add prototype for create_menus.
797         * data.c (long_to_cons): Fix type of top.
799         * xselect.c (selection_data_to_lisp_data): Use int instead of
800         long for an integer of size 4.
802         * gtkutil.c (xg_update_frame_menubar): Add missing return value.
803         (xg_tool_bar_help_callback): Likewise.
805 2003-03-12  Andreas Schwab  <schwab@suse.de>
807         * xterm.c (x_term_init) [USE_GTK]: Fix typo.
809 2003-03-12  Kim F. Storm  <storm@cua.dk>
811         The following changes consolidate the fringe handling from
812         xterm.c, w32term.c, and macterm.c into xdisp.c.
814         * xdisp.c: Consolidate fringe handling code here.
815         (left_bits, right_bits, continued_bits, continuation_bits)
816         (ov_bits, zv_bits): Define fringe bitmaps.
817         (fringe_bitmaps): New array holding fringe bitmaps.
818         (draw_fringe_bitmap): Draw a specific bitmap; call display
819         specific drawing routine via rif->draw_fringe_bitmap.
820         (draw_row_fringe_bitmaps): Generic replacement for
821         x_draw_row_fringe_bitmaps; all callers changed.
822         (compute_fringe_widths): Generic replacement for
823         x_compute_fringe_widths; all callers changed.
825         * dispextern.h (enum fringe_bitmap_type): Define here.
826         (struct fringe_bitmap, struct draw_fringe_bitmap_params): New.
827         (fringe_bitmaps): Declare extern.
828         (struct redisplay_interface): New member draw_fringe_bitmap.
829         (draw_row_fringe_bitmaps, compute_fringe_widths): Declare extern.
831         * xterm.c: Remove generic fringe code.
832         (x_draw_fringe_bitmap): Only perform actual fringe drawing.
833         (x_redisplay_interface): Add x_draw_fringe_bitmap member.
835         * w32term.c: Remove generic fringe code.
836         (w32_draw_fringe_bitmap): Only perform actual fringe drawing.
837         (w32_redisplay_interface): Add w32_draw_fringe_bitmap member.
839         * macterm.c: Remove generic fringe code.
840         (x_draw_fringe_bitmap): Only perform actual fringe drawing.
841         (x_redisplay_interface): Add x_draw_fringe_bitmap member.
843 2003-03-11  Stefan Monnier  <monnier@cs.yale.edu>
845         * print.c (Fprin1_to_string): Return unibyte string if possible.
847 2003-03-09  David Kastrup  <dak@gnu.org>
849         * process.c (read_process_output): We have allocated enough space
850         for readmax and carryover, so actually use the alloted space.
852 2003-03-09  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
854         * keyboard.c (make_lispy_event): Extend mouse_syms if needed for
855         toolkit scrollbar click.
857         * xterm.c (x_window_to_scroll_bar): Call xg_get_scroll_id_for_window
858         for USE_GTK.
859         (x_scroll_bar_handle_click): Use this function for toolkit scrollbars
860         also.
861         (handle_one_xevent): ButtonPress/Release:  If event is for a toolkit
862         scrollbar and control is pressed, call x_scroll_bar_handle_click.
864         * gtkutil.h: Declare xg_get_scroll_id_for_window.
866         * gtkutil.c (xg_get_scroll_id_for_window): New function.
867         (xg_tool_bar_item_expose_callback): New function.
868         (xg_tool_bar_expose_callback): Call update_frame_tool_bar.
869         (xg_create_tool_bar): Connect xg_tool_bar_expose_callback to expose
870         on the tool bar widget.
871         (update_frame_tool_bar): Connect xg_tool_bar_item_expose_callback
872         to expose on the tool bar item widgets.
874 2003-03-08  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
876         * gtkutil.c (update_frame_tool_bar): Compare pixmap ID instead of
877         struct image* when deciding to update (struct image* may have been
878         deleted from the image cache).
880         * xterm.c (handle_one_xevent): Pass ReparentNotify to Xt even if
881         the event isn't for a frame (i.e. for dialogs).
883 2003-03-07  Kenichi Handa  <handa@m17n.org>
885         * coding.c (CODING_ADD_COMPOSITION_COMPONENT): If the number of
886         composition components reaches the limit, terminate composing.
887         (COMPOSITION_OK): New macro.
888         (detect_coding_iso2022): Use it if an escape sequence for
889         composition is found.
890         (coding_restore_composition): Adjust the number of composition
891         components if it is not sane.
893 2003-03-06  Juanma Barranquero  <lektu@terra.es>
895         * w32term.h (struct w32_display_info): Add xrdb member to support
896         passing resources via -xrm on Windows.
898         * w32term.c (w32_make_rdb): New function.
899         (w32_term_init): Use it to initialize xrdb member of w32_display_info
900         struct.  Delete leftover code.
902         * w32fns.c (Fx_get_resource, x_get_resource_string): Pass xrdb to check
903         for resources passed on the command line.
905         * w32reg.c (w32_get_rdb_resource): New function.
906         (x_get_string_resource): Use it, so resources passed with -xrm
907         supercede the ones in the registry.
909 2003-03-04  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
911         * xterm.c (x_detect_focus_change): Call x_any_window_to_frame
912         instead of x_top_window_to_frame.
914 2003-03-03  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
916         * xsmfns.c (smc_save_yourself_CB): Add --no-splash to options
917         when restarting Emacs.
919 2003-03-03  Richard M. Stallman  <rms@gnu.org>
921         * buffer.c (Fkill_buffer): Use Frun_hook_with_args_until_failure
922         to run kill-buffer-query-functions.
923         (Qkill_buffer_query_functions): New var.
924         (syms_of_buffer): Init and staticpro it.
926 2003-03-02  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
928         * xterm.h (XSync): Define as gdk_window_process_all_updates for GTK.
930 2003-02-25  Kim F. Storm  <storm@cua.dk>
932         * xdisp.c (redisplay_window): Fix infinite loop in redisplay.
933         If centering point failed to make whole line visible and vscroll
934         is non-zero, disable vscroll and try centering point again.
936         * lread.c (read1): Accept `single space' syntax like (? x).
938 2003-02-25  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
940         * keyboard.c (cancel_hourglass_unwind): Surround with
941         #ifdef HAVE_X_WINDOWS
943 2003-02-25  Kenichi Handa  <handa@m17n.org>
945         * buffer.c (Fset_buffer_multibyte): Pay attention to the buffer
946         process only when "subprocesses" is defined.
948 2003-02-24  Stefan Monnier  <monnier@cs.yale.edu>
950         * syntax.c (back_comment): Only check nestedness of 2nd char if needed.
952 2003-02-24  Juanma Barranquero  <lektu@terra.es>
954         * callint.c (fix_command): Declare as static void and move before
955         Fcall_interactively.
957         * xdisp.c (Qwhen): Declare external; it's now defined in callint.c.
958         (syms_of_xdisp): Don't initialize Qwhen.
960 2003-02-23  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
962         * keyboard.c (cancel_hourglass_unwind): New function.
963         (command_loop_1): Cancel hourglass with unwind-protect.
965 2003-02-23  Richard M. Stallman  <rms@gnu.org>
967         * callint.c (fix_command): New subroutine, from Fcall_interactively.
968         Detect (when ... (region-beginning)) etc.
969         (Fcall_interactively): Call fix_command.
970         (Qif, Qwhen): New variables.
971         (syms_of_callint): Init and staticpro them.
973         * regex.c (print_partial_compiled_pattern): Output to stderr.
975 2003-02-23  Kai Gro\e,A_\e(Bjohann  <kai.grossjohann@uni-duisburg.de>
977         * dired.c (directory_files_internal): Don't expand directory.
978         (Fdirectory_files, Fdirectory_files_and_attributes): Do it here
979         instead.  From Lars Hansen <larsh@math.ku.dk>.
981 2003-02-22  Stefan Monnier  <monnier@cs.yale.edu>
983         * fns.c (string_to_multibyte): Remove unused var i.
984         (Flanginfo): Fix int/Lisp_Object mixup.
985         (void_call2): New fun.
986         (Fmap_char_table): Use it in place of call2.
988         * xfaces.c (x_face_list_fonts): Fix int/Lisp_Object mixup.
990         * macros.c (Fstart_kbd_macro): Remove redundant assignment.
992         * keymap.c (copy_keymap_1): Make it static.
994         * alloc.c (Fgarbage_collect): Don't use XSETFLOAT.
996 2003-02-22  David Ponce  <david@dponce.com>
998         * lread.c (Fload): Don't check STRING_MULTIBYTE.
1000 2003-02-21  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
1002         * process.h: Removed subtty field from struct Lisp_Process.
1004         * process.c (create_process): Remove setting of subtty.
1005         (emacs_get_tty_pgrp): New function.
1006         (Fprocess_running_child_p, process_send_signal):
1007         Call emacs_get_tty_pgrp instead of ioctl.
1008         (process_send_signal): Call EMACS_KILLPG if ioctl TIOCSIGSEND fails.
1010 2003-02-21  Kai Gro\e,A_\e(Bjohann  <kai.grossjohann@uni-duisburg.de>
1012         * keymap.c (Fdefine_key): Doc fix.
1014 2003-02-21  Juanma Barranquero  <lektu@terra.es>
1016         Port of patch for RC by Klaus Zeitler <kzeitler@lucent.com>.
1018         * s/hpux10.h: Define POLL_INTERRUPTED_SYS_CALL, not
1019         POLLING_PROBLEM_IN_SELECT.
1021         * s/hpux11.h: Include hpux10-20.h instead of hpux10.h.
1022         Delete #undef of POLLING_PROBLEM_IN_SELECT.
1024         * s/hpux10-20.h: New file.
1026         * process.c (wait_reading_process_input):
1027         Use POLL_INTERRUPTED_SYS_CALL, not POLLING_PROBLEM_IN_SELECT.
1029 2003-02-20  Kenichi Handa  <handa@m17n.org>
1031         * fontset.c (check_fontset_name): If NAME is nil, return the
1032         default fontset.
1033         (override_font_info): New function.
1034         (Fset_fontset_font): Document that NAME nil means the default fontset.
1035         (Ffontset_info): If FONTSET is not the default fontset, merge
1036         FONTSET onto the copy of the default fontset, and work on that
1037         copy.  Document that NAME nil means the default fontset.
1038         (Ffontset_font): Document that NAME nil means the default fontset.
1040         * process.c (setup_process_coding_systems): If the process's
1041         in/out descriptor is -1, do nothing.
1043 2003-02-19  Andreas Schwab  <schwab@suse.de>
1045         * lisp.h (Fcancel_kbd_macro_events, Fstring_to_multibyte):
1046         Add prototypes.
1048 2003-02-19  Kenichi Handa  <handa@m17n.org>
1050         * xfaces.c (try_alternative_families): Try all scalable fonts if
1051         Vscalable_fonts_allowed is not Qt.
1053 2003-02-19  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
1055         * xfaces.c (x_face_list_fonts): Set *pfonts to 0 if no fonts found.
1057 2003-02-18  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
1059         * xterm.c (x_list_fonts): If maxnames is less than 0, get all font
1060         names.
1062         * xfaces.c (x_face_list_fonts): Allocate struct font_name here.
1063         (sorted_font_list): Move allocation of struct font_name to
1064         x_face_list_fonts.
1065         (Fx_font_family_list): Set font-list-limit to -1 to get all font names.
1066         (Fx_list_fonts): Set maxnames to -1 to get all font names.
1068 2003-02-18  Kim F. Storm  <storm@cua.dk>
1070         * lread.c (read1): Fix last change.
1071         "`" is not always special.  Allow "?" after a character constant.
1073 2003-02-18  Andrew Choi  <akochoi@shaw.ca>
1075         * unexmacosx.c (copy_data_segment): Also copy __cfstring section.
1077 2003-02-18  Andreas Schwab  <schwab@suse.de>
1079         * window.c (window_scroll_pixel_based): Move outside a
1080         multi-glyph character before setting new window start.
1082         * xdisp.c (in_display_vector_p): New function.
1083         * dispextern.h (in_display_vector_p): Declare.
1085 2003-02-18  Kim F. Storm  <storm@cua.dk>
1087         * lread.c (read1): Fix and relax read syntax.
1088         Recognize "[", ";", "#", and "?" after a dotted-pair dot.
1089         Only recognize "," after dotted-pair dot if inside backquote.
1090         Never include "`" or "," (inside backquote) in a symbol.
1091         Allow dotted-pair dot after a character constant.
1092         Allow "`" and "," (inside backquote) after a character constant.
1094 2003-02-17  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
1096         * gtkutil.c (xg_tool_bar_expose_callback): New function.
1097         (xg_create_tool_bar): Force style of tool bar to be horizontal with
1098         icons.  Set name of tool bar to emacs-toolbar.
1099         (update_frame_tool_bar): Connect expose event to
1100         xg_tool_bar_expose_callback.
1102 2003-02-17  Richard M. Stallman  <rms@gnu.org>
1104         * keyboard.c (this_command_key_count_reset): New variable.
1105         Initiatize to 0 where this_command_key_count is set.
1106         (read_char): Save and restore this_command_key_count_reset
1107         around input method code.
1108         (read_char): If this_command_key_count_reset, echo reread commands.
1109         (Freset_this_command_lengths): Set this_command_key_count_reset to 1.
1111 2003-02-17  Kenichi Handa  <handa@m17n.org>
1113         * fns.c (string_to_multibyte): Always return a multibyte string.
1115 2003-02-16  Jason Rumney  <jasonr@gnu.org>
1117         * w32fns.c (w32_list_bdf_fonts, w32_list_fonts):
1118         Negative max_fonts parameter means list all.
1120 2003-02-14  Dave Love  <fx@gnu.org>
1122         * fns.c (Flanginfo): Doc fix.
1124 2003-02-13  Kim F. Storm  <storm@cua.dk>
1126         * lread.c (read_escape): Interpret \s as a SPACE character, except
1127         for \s-X in a character constant which still is the super modifier.
1128         (read1): Signal an `invalid read syntax' error if a character
1129         constant is immediately followed by a digit or symbol character.
1131         * search.c (Fmatch_data): Doc fix.  Explicitly state that
1132         match-data is undefined if last search failed.
1134         * keymap.c (Fcommand_remapping): Renamed from Fremap_command.
1135         All uses changed.
1137 2003-02-12  Juanma Barranquero  <lektu@terra.es>
1139         * eval.c (Fdefmacro): Fix typo.
1141 2003-02-12  Kim F. Storm  <storm@cua.dk>
1143         * macros.c (Fstart_kbd_macro): If appending, and last keyboard
1144         macro is a string, convert meta modifiers in string when copying
1145         the string into a vector.
1147 2003-02-11  Kim F. Storm  <storm@cua.dk>
1149         * keymap.c (Fremap_command): Return nil if arg is not a symbol.
1151 2003-02-11  Kenichi Handa  <handa@m17n.org>
1153         * Makefile.in (lisp, shortlisp): Add malayalam.el and tamil.el.
1155 2003-02-10  Kim F. Storm  <storm@cua.dk>
1157         * process.c: Doc fixes.
1158         (syms_of_process): Add `:' prefix to QCfilter_multibyte.
1160 2003-02-10  Kenichi Handa  <handa@m17n.org>
1162         * fns.c (Fstring_to_multibyte): Fix typo in the docstring.
1164         * process.c (QCfilter_multibyte): New variable.
1165         (setup_process_coding_systems): New function.
1166         (Fset_process_buffer, Fset_process_filter):
1167         Call setup_process_coding_systems.
1168         (Fstart_process): Initialize the member `filter_multibyte' of
1169         struct Lisp_Process.
1170         (create_process): Call setup_process_coding_systems.
1171         (Fmake_network_process): New keyward `:filter-multibyte'.
1172         Initialize the member `filter_multibyte' of struct Lisp_Process.
1173         Call setup_process_coding_systems.
1174         (server_accept_connection): Call setup_process_coding_systems.
1175         (read_process_output): If the process has a filter, decide the
1176         multibyteness of a string to given to the filter by
1177         `filter_multibyte' member of the process.  If the process doesn't
1178         have a filter and the result of conversion is unibyte, use
1179         Fstring_to_multibyte (not Fstring_make_multibyte) to get the
1180         multibyte form.
1181         (Fset_process_coding_system): Call setup_process_coding_systems.
1182         (Fset_process_filter_multibyte): New function.
1183         (Fprocess_filter_multibyte_p): New function.
1184         (syms_of_process): Intern and staticpro QCfilter_multibyte.
1185         Defsubr Sset_process_filter_multibyte and
1186         Sprocess_filter_multibyte_p.
1188         * process.h (struct Lisp_Process): New member filter_multibyte.
1190         * lisp.h (setup_process_coding_systems): Add prototype.
1192         * buffer.c (Fset_buffer_multibyte): If the current buffer has a
1193         process, update coding systems for the process.
1195 2003-02-09  Kenichi Handa  <handa@m17n.org>
1197         * fns.c (string_to_multibyte): New function.
1198         (Fstring_to_multibyte): New function.
1199         (syms_of_fns): Defsubr it.
1201 2003-02-08  Andreas Schwab  <schwab@suse.de>
1203         * Makefile.in (EXEEXT): Define to @EXEEXT@ and use this variable
1204         instead of the substitution.
1206 2003-02-08  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
1208         * xterm.c (x_make_frame_visible): Call gtk_window_deiconify.
1210         * xmenu.c (menu_position_func): Adjust menu popup position so that
1211         the menu is fully visible.
1213 2003-02-07  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
1215         * xterm.c (x_text_icon, x_raise_frame, x_lower_frame)
1216         (x_make_frame_invisible, x_wm_set_icon_position):
1217         Use FRAME_OUTER_WINDOW instead of ifdef X_TOOLKIT/else/endif.
1219         * xfns.c (x_set_name, x_set_title): Ditto.
1221 2003-02-04  Richard M. Stallman  <rms@gnu.org>
1223         * keyboard.c (echo_now): Update before_command_echo_length.
1224         (Freset_this_command_lengths): Reset this_command_key_count etc.
1225         immediately rather than arranging to do it later.
1226         (before_command_key_count_1, before_command_echo_length_1)
1227         (before_command_restore_flag): Vars deleted.
1228         (add_command_key): Don't handle before_command_restore_flag.
1229         (read_char, record_menu_key): Don't update before_command_key_count or
1230         before_command_echo_length.
1231         (read_char): Don't handle before_command_restore_flag.
1233         * keyboard.c (command_loop_1): Don't call adjust_point_for_property
1234         in direct-output clauses if it wouldn't be called in the ordinary case.
1236 2003-02-04  Kim F. Storm  <storm@cua.dk>
1238         * keyboard.c (syms_of_keyboard) <this-original-command>: Doc fix.
1240 2003-02-02  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
1242         * gtkutil.c (remove_from_container): Copying list is not needed.
1243         (xg_update_menubar, xg_update_menu_item, xg_update_submenu)
1244         (xg_modify_menubar_widgets, update_frame_tool_bar): Call g_list_free
1245         on list returned from gtk_container_get_children to avoid memory leak.
1247 2003-02-01  Jason Rumney  <jasonr@gnu.org>
1249         * w32fns.c (w32_create_pixmap_from_bitmap_data): Use alloca for
1250         local malloc.
1251         [HAVE_XPM]: Avoid clashes with XColor, XImage and Pixel
1252         definitions in xpm.h.
1253         (init_xpm_functions): New function.
1254         (xpm_load): Sync with xfns.c. Adapt for Windows version of libXpm.
1255         (init_external_image_libraries): Try to load libXpm.dll.
1257         * fileio.c (Fcopy_file) [WINDOWSNT]: Reverse logic for setting
1258         timestamp.
1260 2003-01-31  Dave Love  <fx@gnu.org>
1262         * syntax.c (Fskip_chars_forward)
1263         (open-paren-in-column-0-is-defun-start): Doc fix.
1265 2003-01-31  Joe Buehler  <jhpb@draco.hekimian.com>
1267         * fileio.c: Support // at start of name for Cygwin (just added proper
1268         preprocessor tests).
1270         * keyboard.c: Port to Cygwin (just added proper preprocessor tests).
1272         * Makefile.in: Use @EXEEXT@ for Cygwin.
1274         * mem-limits.h: Added ifdef to define BSD4_2 for Cygwin.
1276         * s/cygwin.h: Added for Cygwin port.
1278 2003-01-31  Juanma Barranquero  <lektu@terra.es>
1280         * w32fns.c (DrawText): Kludge to avoid a redefinition on Windows
1281         when including gif_lib.h.
1282         (init_gif_functions, init_tiff_functions): New functions.
1283         (gif_load, tiff_load): Sync with xfns.c version. Adjust colors for
1284         Windows. Disable color table lookups. Call library functions
1285         through pointers determined at runtime.
1286         (init_external_image_libraries): Try to load libungif.dll and
1287         libtiff.dll.
1289 2003-01-31  Kenichi Handa  <handa@m17n.org>
1291         * xdisp.c (SKIP_GLYPHS): New macro.
1292         (set_cursor_from_row): Skip all glyphs that comes from overlay string.
1294 2003-01-30  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
1296         * gtkutil.c (free_frame_tool_bar): Remove debug printf.
1298 2003-01-30  Dave Love  <fx@gnu.org>
1300         * alloc.c (Vgc_elapsed, gcs_done): New variables.
1301         (Fgarbage_collect): Use them.
1302         (init_alloc, syms_of_alloc): Set them up.
1304 2003-01-30  Juanma Barranquero  <lektu@terra.es>
1306         * w32fns.c (init_external_image_libraries): Add missing operator.
1308 2003-01-29  Jason Rumney  <jasonr@gnu.org>
1310         * w32fns.c (init_external_image_libraries): Allow jpeg-62.dll as
1311         an alternative name for jpeg.dll.
1313 2003-01-29  Kenichi Handa  <handa@m17n.org>
1315         * xdisp.c (set_cursor_from_row): Pay attention to string display
1316         properties.
1318 2003-01-28  Benjamin Riefenstahl  <Benjamin.Riefenstahl@epost.de>
1320         * macterm.c (keycode_to_xkeysym_table): Add <tab>, <backspace>,
1321         <escape>.
1322         (keycode_to_xkeysym_table): Reformat and add more comments.
1323         (XTread_socket): Drop special case for backspace.
1325 2003-01-28  Andrew Choi  <akochoi@shaw.ca>
1327         * macfns.c (x_to_mac_color): Correct the order for parsing the RGB
1328         values in old-style RGB specs.
1330 2003-01-27  Juanma Barranquero  <lektu@terra.es>
1332         * w32fns.c (init_external_image_libraries): Try alternate names for the
1333         jpeg dll.
1335 2003-01-27  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
1337         * gtkutil.c (create_dialog, xg_separator_p)
1338         (xg_item_label_same_p, xg_update_menu_item): Check for NULL string
1339         before calling strcmp or strlen.
1341 2003-01-26  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
1343         * gtkutil.c (update_frame_tool_bar): Call prepare_image_for_display
1344         and handle image load failure.
1346 2003-01-26  Jason Rumney  <jasonr@gnu.org>
1348         * w32fns.c (init_jpeg_functions, jpeg_resync_to_restart_wrapper):
1349         New functions.
1350         (jpeg_load): Sync with xfns.c version. Adjust colors for Windows.
1351         Disable color table lookups. Call jpeg library functions
1352         through pointers determined at runtime.
1353         (init_external_image_libraries): Try to load jpeg.dll.
1355 2003-01-25  Richard M. Stallman  <rms@gnu.org>
1357         * lisp.h: Declare format2 instead of format1.
1359         * fileio.c (barf_or_query_if_file_exists):
1360         Call format2 instead of format1.
1362         * editfns.c (format2): New function, replaces format1
1363         but takes exactly two Lisp Objects as format args.
1365         * buffer.c (Fkill_buffer): Call format2 instead of format1.
1367 2003-01-25  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
1369         * xterm.h: Change to return value of x_dispatch_event to int.
1371         * xterm.c (x_filter_event): New function.
1372         (event_handler_gdk, XTread_socket): Call x_filter_event.
1373         (x_dispatch_event): Change to return value of finish.
1374         (event_handler_gdk): Use return value from x_dispatch_event.
1376         * xfns.c (x_window): Call create_frame_xic for GTK version to
1377         initialize input methods.
1379         * gtkutil.h: Add (void) prototypes.
1381         * gtkutil.c (create_menus): Remove code that puts the help menu to
1382         the right.
1384 2003-01-25  Jason Rumney  <jasonr@gnu.org>
1386         * w32fns.c (XPutPixel): Handle monochrome images; used for masks.
1387         [HAVE_PNG]: Sync with xfns.c version.
1388         (png_load): Adjust colors for Windows. Use Windows
1389         bitmaps. Disable color table lookups.
1390         (DEF_IMGLIB_FN, LOAD_IMGLIB_FN): New macros.
1391         (init_png_functions): New function.
1392         (png_read_from_memory, png_load): Call png library functions
1393         through pointers determined at runtime.
1394         (QCloader, QCbounding_box, QCpt_width, QCpt_height): Declare.
1395         (init_external_image_libraries): New function.
1396         (init_xfns): Call it.
1398 2003-01-24  Andreas Schwab  <schwab@suse.de>
1400         * minibuf.c (Fminibuffer_message): Verify type of parameter.
1402 2003-01-24  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
1404         * gtkutil.c (xg_initialize): Initialize id_to_widget here instead
1405         of static initializer.
1407 2003-01-24  Dave Love  <fx@gnu.org>
1409         * s/gnu-linux.h (GC_SETJMP_WORKS, GC_MARK_STACK): Define for more
1410         architectures.
1412         * alloc.c (mark_stack) [!GC_LISP_OBJECT_ALIGNMENT && __GNUC__]:
1413         Use __alignof__.
1415 2003-01-24  Kenichi Handa  <handa@m17n.org>
1417         * keyboard.c (adjust_point_for_property): New second arg MODIFIED.
1418         It it is nonzero, don't pretend that an invisible area doesn't exist.
1419         (command_loop_1): Call adjust_point_for_property with proper
1420         second arg.
1422 2003-01-22  Jason Rumney  <jasonr@gnu.org>
1424         Sync changes with xterm.c and xfns.c.
1426         * w32term.c (x_draw_glyph_string_foreground)
1427         (x_draw_composite_glyph_string_foreground): Implement overstriking.
1429         * w32term.c (x_write_glyphs): Clear phys_cursor_on_p if current
1430         phys_cursor's hpos is overwritten.  This is still not completely
1431         correct, as it doesn't really make sense to use hpos at all to
1432         get the cursor glyph (as that is relative to the width of the
1433         characters on the line, which may have changed during the update).
1435         * w32term.c (notice_overwritten_cursor): Handle the special case
1436         of the cursor being in the first blank non-text line at the
1437         end of a window.
1439         * w32term.c (x_draw_hollow_cursor, x_draw_bar_cursor)
1440         (x_draw_phys_cursor_glyph): Set phys_cursor_width here.
1441         Compute from the x position returned by x_draw_glyphs.
1443         (x_display_and_set_cursor): Don't set phys_cursor_width here,
1444         except for NO_CURSOR and system caret, to make phys_cursor_width
1445         contain what its name suggests.
1446         (notice_overwritten_cursor): Consider the cursor image erased if
1447         the output area intersects the cursor image in y-direction.
1449         * w32term.c (note_mode_line_or_margin_highlight): Rename from
1450         note_mode_line_highlight and extend.
1452         * w32term.c (last_window): New variable.
1453         (w32_read_socket) <WM_MOUSEMOVE>: Generate SELECT_WINDOW_EVENTs.
1454         (note_mouse_movement): Remove reimplemented code in #if 0.
1456         * w32fns.c (x_set_cursor_type): Set cursor_type_changed,
1457         not update_mode_lines, and always set it to 1.
1459 2003-01-21  Jason Rumney  <jasonr@gnu.org>
1461         * w32fns.c (IDC_HAND): Define it if system headers don't.
1463 2003-01-21  KOBAYASHI Yasuhiro  <kobayays@otsukakj.co.jp>
1465         * w32term.h (struct w32_output): New member hand_cursor.
1466         (WM_EMACS_SETCURSOR): New message definition.
1468         * w32term.c (note_mode_line_highlight): Delete #if 0 to enable
1469         function w32_define_cursor.
1470         (note_mouse_highlight): Initialize, setup cursor accoding to mouse
1471         position, change member name output_data.x to output_data.w32 and
1472         add function w32_define_cursor.
1473         (show_mouse_face): Delete #if 0 to enable function w32_define_cursor
1474         and change member name output_data.x to output_data.w32.
1475         (w32_initialize_display_info):
1476         Setup dpyinfo->vertical_scroll_bar_cursor.
1478         * w32fns.c (Vx_hand_shape): New variable.
1479         (w32_wnd_proc): Add message entries for WM_SETCURSOR and
1480         WM_EMACS_SETCURSOR.
1481         (x-create-frame): Setup Cursor types.
1483 2003-01-21  David Ponce  <david@dponce.com>
1485         * w32term.c (w32_encode_char): For DIM=1 charset, set
1486         ccl->reg[2] to -1 before calling ccl_driver. (Sync. with xterm.c
1487         x_encode_char change by Kenichi Handa <handa@m17n.org> on
1488         2002-09-30.)
1489         (w32_draw_relief_rect): Declare all args.
1490         (w32_define_cursor): New.
1492         * w32fns.c (w32_load_cursor): New function.
1493         (w32_init_class): Use it.
1494         (x_put_x_image): Declare all args.
1496 2003-01-21  Richard Dawe  <rich@phekda.freeserve.co.uk>  (tiny change)
1498         * Makefile.in (ALL_CFLAGS): Include MYCPPFLAGS, not MYCPPFLAG.
1500 2003-01-21  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
1502         * gtkutil.c: Must include stdio.h before termhooks.h
1504 2003-01-21  Dave Love  <fx@gnu.org>
1506         * alloc.c (Fgc_status): Print zombie list.
1507         (mark_maybe_object) [GC_MARK_STACK==GC_USE_GCPROS_CHECK_ZOMBIES]:
1508         Fix assignment of zombies.
1509         (Fgarbage_collect) [GC_MARK_STACK==GC_USE_GCPROS_CHECK_ZOMBIES]:
1510         Don't take car of non-cons.
1512         * s/sol2-5.h (GC_SETJMP_WORKS, GC_MARK_STACK): Define.
1514         * s/sunos4-0.h (GC_SETJMP_WORKS, GC_MARK_STACK): Define.
1516 2003-01-20  David Ponce  <david@dponce.com>
1518         * w32menu.c (digest_single_submenu): Declare all args.
1520         Sync with 2002-12-23  Richard M. Stallman  <rms@gnu.org>
1521         changes in xmenu.c:
1523         (parse_single_submenu): Use individual keymap's prompt
1524         string as pane name, if there is one.
1525         (set_frame_menubar): Save menu_items_n_panes from each call to
1526         parse_single_submenu and use it when calling digest_single_submenu.
1528 2003-01-20  Steven Tamm  <steventamm@mac.com>
1530         * macterm.c (XTread_socket): Checks for valid, visible window
1531         before sending a scroll-wheel event.
1533 2003-01-20  Richard M. Stallman  <rms@gnu.org>
1535         * xdisp.c (redisplay_window): If mini window's buffer is not
1536         a minibuffer, then redisplay it like other windows.
1538 2003-01-20  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
1540         * gtkutil.c (xg_create_frame_widgets): Check if there is an
1541         external tool bar before setting tool bar height.
1543 2003-01-19  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
1545         * xterm.c (handle_one_xevent): Surround popup_activated
1546         with #ifdef:s for non-toolkit version.
1548         * Makefile.in (XOBJ): Add gtkutil.o if USE_GTK
1549         (gtkutil.o): New file.
1550         (TOOLKIT_DEFINES): Set to -DUSE_GTK if HAVE_GTK.
1551         (LIBW): Set to @GTK_LIBS@ if USE_GTK.
1553         * gtkutil.c: New file for GTK version.
1555         * gtkutil.h: New file for GTK version.
1557         * xterm.h: Add xt_or_gtk_widget.
1558         Include gtk files for USE_GTK.
1559         (struct x_output): Add toolbar_height.
1560         (struct x_output): Add GTK widgets and Gdk size_hints.
1561         (GTK_WIDGET_TO_X_WIN, FRAME_GTK_OUTER_WIDGET, FRAME_GTK_WIDGET)
1562         (FRAME_OUTER_WINDOW): New macros for USE_GTK.
1563         (FRAME_OUTER_TO_INNER_DIFF_Y): Add FRAME_TOOLBAR_HEIGHT to calculation.
1565         * xterm.c: Include gtkutil.h for USE_GTK.
1566         Declare extern void free_frame_menubar for USE_GTK.
1567         (note_mouse_highlight): Check popup_activated for USE_GTK.
1568         (xt_action_hook): Don't compile if USE_GTK.
1569         (x_scroll_bar_to_input_event): Use CurrentTime for USE_GTK.
1570         (xg_scroll_callback): New function.
1571         (x_create_toolkit_scroll_bar): Call xg_create_scroll_bar for USE_GTK.
1572         (x_set_toolkit_scroll_bar_thumb): Call xg_set_toolkit_scroll_bar_thumb
1573         for USE_GTK.
1574         (x_scroll_bar_create): Call xg_update_scrollbar_pos and
1575         xg_show_scroll_bar for USE_GTK.
1576         (x_scroll_bar_remove): Call xg_remove_scroll_bar for USE_GTK.
1577         (XTset_vertical_scroll_bar): Call xg_update_scrollbar_pos for USE_GTK.
1578         (event_handler_gdk): New function for USE_GTK.
1579         (handle_one_xevent): Call xg_resize_widgets for USE_GTK.
1580         (handle_one_xevent): Make sure widget is mapped before
1581         calling x_real_positions for USE_GTK.
1582         (XTread_socket): Add GTK event loop for USE_GTK.
1583         (x_set_window_size): Call xg_frame_set_char_size for USE_GTK.
1584         (x_make_frame_visible): Call gtk_widget_show_all for USE_GTK.
1585         (x_make_frame_invisible): Call gtk_widget_hide for USE_GTK.
1586         (x_iconify_frame): Add code for USE_GTK.
1587         (x_free_frame_resources): Call gtk_widget_destroy for USE_GTK.
1588         (x_wm_set_size_hint): Only compile if not USE_GTK.  GTK version
1589         is in gtkutil.c.
1590         (x_term_init): Add initialization for GTK.
1591         (syms_of_xterm): Set Vx_toolkit_scroll_bars for USE_GTK.
1593         * xmenu.c: Include gtkutil.h for USE_GTK.
1594         (Fx_popup_menu): Use current position if x and y is NIL.
1595         (single_menu_item, single_menu_item, Fx_popup_dialog):
1596         Check for USE_GTK.
1597         (popup_widget_loop): New function for USE_GTK.
1598         (x_activate_menubar): Add code for USE_GTK.
1599         (popup_activate_callback, popup_deactivate_callback)
1600         (menu_highlight_callback, menubar_selection_callback):
1601         Add USE_GTK versions.
1602         (update_frame_menubar): Call xg_update_frame_menubar for USE_GTK.
1603         (set_frame_menubar): Call xg_modify_menubar_widgets for USE_GTK.
1604         (free_frame_menubar): Only compile if not USE_GTK.  GTK version
1605         is in gtkutil.c.
1606         (popup_selection_callback): New version for USE_GTK.
1607         (create_and_show_popup_menu): New fuction, one USE_GTK version and
1608         one USE_X_TOOLKIT version.
1609         (xmenu_show): Call create_and_show_popup_menu.
1610         (dialog_selection_callback): New version for USE_GTK.
1611         (create_and_show_dialog): New fuction, one USE_GTK version and
1612         one USE_X_TOOLKIT version.
1613         (xdialog_show): Call create_and_show_dialog.
1615         * xfns.c: Include gtkutil for USE_GTK.
1616         (x_window_to_frame, x_any_window_to_frame)
1617         (x_non_menubar_window_to_frame, x_menubar_window_to_frame)
1618         (x_top_window_to_frame): Add code for USE_GTK.
1619         (x_set_background_color): Call xg_set_background_color for GTK.
1620         (x_set_menu_bar_lines): Check for USE_GTK.
1621         (x_set_tool_bar_lines): Call update_frame_tool_bar for USE_GTK.
1622         (x_set_name, x_set_title): Call gtk_window_set_title for USE_GTK.
1623         (x_window): Call xg_create_frame_widgets for USE_GTK.
1624         (Fx_create_frame): Check for USE_GTK
1625         (Fx_file_dialog): New implementation for USE_GTK.
1627         * xdisp.c: Add check for USE_GTK for extern void set_frame_menubar.
1628         (update_menu_bar): Add check for USE_GTK.
1629         (update_tool_bar): Add check for USE_GTK and external tool bar.
1630         (redisplay_tool_bar): Add check for USE_GTK and external tool bar.
1631         (redisplay_internal): Add check for USE_GTK and popup_activated.
1632         (redisplay_window): Add check for USE_GTK and FRAME_EXTERNAL_MENU_BAR.
1633         (redisplay_window): Add check for USE_GTK and FRAME_EXTERNAL_TOOL_BAR.
1634         (display_menu_bar): Add check for USE_GTK
1636         * lisp.h: Declare Vx_resource_name extern.
1638         * keyboard.c (kbd_buffer_get_event):  Check MENU_BAR_ACTIVATE_EVENT
1639         for USE_GTK.
1640         (make_lispy_event): Check MENU_BAR_EVENT for USE_GTK.
1642         * frame.h (struct frame): Add external_tool_bar.  Check for USE_GTK.
1643         (FRAME_EXTERNAL_TOOL_BAR): New macro.
1644         (FRAME_EXTERNAL_MENU_BAR): Check for USE_GTK.
1646         * fileio.c (Fread_file_name): Add check for USE_GTK.
1648         * dispnew.c (adjust_frame_glyphs_for_window_redisplay):
1649         Add check for USE_GTK.
1651         * config.in: Added HAVE_GTK
1653         * alloc.c (Fgarbage_collect): Call xg_mark_data for GTK.
1655 2003-01-18  Stefan Monnier  <monnier@cs.yale.edu>
1657         * charset.h (Funibyte_char_to_multibyte): Export.
1659 2003-01-18  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
1661         * xmenu.c (mouse_position_for_popup): New function.
1662         (Fx_popup_menu): Call mouse_position_for_popup for X and
1663         mouse_position_hook for others.
1665 2003-01-17  Kim F. Storm  <storm@cua.dk>
1667         * editfns.c (Finsert): Mention `string-make-multibyte' and
1668         `string-as-multibyte' in doc string.
1670 2003-01-17  Kenichi Handa  <handa@m17n.org>
1672         * fontset.c (syms_of_fontset): Setup Vfont_encoding_alist here.
1674         * editfns.c (Fformat): Convert an unibyte char argument that is
1675         formatted by "%c" to multibyte if the total result must be a
1676         multibyte string.
1678 2003-01-16  Kim F. Storm  <storm@cua.dk>
1680         * process.c (set-process-filter): Document unibyte/multibyte-ness
1681         of string argument.
1683 2003-01-16  Kenichi Handa  <handa@m17n.org>
1685         * charset.h (NEXT_CHAR_BOUNDARY, PREV_CHAR_BOUNDARY): New macros.
1687         * regex.c (GET_CHAR_BEFORE_2): Use PREV_CHAR_BOUNDARY.
1688         (re_search_2): Likewise.
1690 2003-01-15  Kenichi Handa  <handa@m17n.org>
1692         * xdisp.c (message_dolog): Fix bug of the case that *Message*
1693         buffer is unibyte.
1695 2003-01-15  Francesco Potort\e,Al\e(B  <pot@gnu.org>
1697         * fns.c (Fsubstring): Clarify doc string.
1699         * textprop.c (Ftext_properties_at, Fnext_char_property_change)
1700         (Fprevious_char_property_change)
1701         (Fnext_single_char_property_change)
1702         (Fprevious_single_char_property_change, Fnext_property_change)
1703         (Fnext_single_property_change, Fprevious_property_change)
1704         (Fprevious_single_property_change, Fadd_text_properties)
1705         (Fput_text_property, Fset_text_properties)
1706         (Fremove_text_properties, Fremove_list_of_text_properties)
1707         (Ftext_property_any, Ftext_property_not_all): Clarify doc strings.
1709 2003-01-14  Kim F. Storm  <storm@cua.dk>
1711         * process.h (struct Lisp_Process): New member plist replaces old
1712         member private_vars.  All uses changed.
1714         * process.c: Reworked 2003-01-12 change -- call a plist a plist!
1715         (QCplist): Rename from QCvars.  Change all uses.
1716         (Fprocess_plist): Replaces Fprocess_variable.  Simplified.
1717         (Fset_process_plist): Replaces Fset_process_variable.  Simplify.
1718         (syms_of_process): Intern, staticpro, defsubr these.
1719         (Fmake_network_process): Describe :plist arg.  Remove :vars arg.
1721 2003-01-14  Francesco Potort\e,Al\e(B  <pot@gnu.org>
1723         * m/delta.h: Remove (obsolete).
1725 2003-01-13  Francesco Potort\e,Al\e(B  <pot@gnu.org>
1727         * fileio.c (Fdelete_directory, Fdelete_file): Document the
1728         behaviour in front of symlinks.
1729         (Fdelete_file): Raise an error on directories.
1731 2003-01-13  Dave Love  <fx@gnu.org>
1733         * fns.c (Freverse): Use QUIT.
1735 2003-01-13  Richard M. Stallman  <rms@gnu.org>
1737         * minibuf.c (minibuffer_completion_contents):
1738         Error if point is inside prompt.
1740         * keyboard.c (command_loop_1): Don't redisplay directly
1741         if there's a post-command-hook.
1743         * fileio.c (syms_of_fileio) <directory-sep-char>: Doc fix.
1744         (Fdo_auto_save): Add gcpros around Ffile_name_directory.
1746 2003-01-12  Kim F. Storm  <storm@cua.dk>
1748         * process.h (struct Lisp_Process): New member private_vars.
1750         * process.c (QCvars): New variable.
1751         (syms_of_process): Intern and staticpro it.
1752         (Fset_process_contact): Removed function.
1753         (Fprocess_variable, Fset_process_variable): New functions.
1754         (syms_of_process): Defsubr them.
1755         (Fstart_process): Initialize private_vars plist to nil.
1756         (Fmake_network_process): New arg :vars to setup the private
1757         variables for new network process.
1758         (server_accept_connection): Copy server's private variables to
1759         client process.
1761         * alloc.c (pure_alloc): Fixed 2003-01-10 changed (caused spurious
1762         crashes).  Code rewritten and simplified.  Now directly aligns the
1763         pointer and recalculates pure_bytes_used, rather than aligning the
1764         size and adjusting the pointer.
1766 2003-01-11  Kim F. Storm  <storm@cua.dk>
1768         * process.c (Fset_process_contact): New function.
1769         (syms_of_process): defsubr it.
1770         (make-network-process): Update doc.
1772 2003-01-10  Andreas Schwab  <schwab@suse.de>
1774         * alloc.c (pure_alloc): Correct alignment for Lisp_Floats.
1775         Reported by Berthold Gunreben <b.gunreben@web.de>.
1777 2003-01-10  Dave Love  <fx@gnu.org>
1779         * composite.c (syms_of_composite): Make composition_hash_table weak.
1781 2003-01-09  Kim F. Storm  <storm@cua.dk>
1783         * process.c (Fmake_network_process): Convert new port number
1784         to host byte order for `:service t' case.  From Mario Lang.
1786 2003-01-08  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
1788         * xfns.c (Fx_file_dialog): Call XtAppNextEvent and x_dispatch_event
1789         instead of XtAppProcessEvent.
1791         * xterm.c (handle_one_xevent): New function.
1792         (x_dispatch_event): New function.
1793         (XTread_socket): Call handle_one_xevent.
1795         * xterm.h (FRAME_OUTER_TO_INNER_DIFF_X/Y): New.
1797         * xmenu.c (Fx_popup_menu): If popping up at mouse position,
1798         call XQueryPointer to get coordinates.
1799         (popup_get_selection): Do not set popup_activated_flag to zero,
1800         let popup_deactivate_callback do that.  Needed for Motif.
1801         Call x_dispatch_event instead of XtDispatchEvent.
1802         (xmenu_show): Calculate root coordinate from frame top/left position.
1804 2003-01-08  Kim F. Storm  <storm@cua.dk>
1806         * process.c (server_accept_connection): Fix recording of new
1807         connection's local address in :local property of contact info.
1808         (Fmake_network_process): Record local network address for new
1809         client processes in :local property of contact info.
1810         (format-network-address): Add arg OMIT-PORT.  Change callers.
1812 2003-01-07  Dave Love  <fx@gnu.org>
1814         * Makefile.in (fns.o): Depend on coding.h.
1816 2003-01-07  Markus Rost  <rost@math.ohio-state.edu>
1818         * minibuf.c (Fread_variable): Doc fix.
1820         * eval.c (Fuser_variable_p): Doc change.  For custom variables,
1821         use the same test as for custom-variable-p.
1823 2003-01-05  Richard M. Stallman  <rms@gnu.org>
1825         * xdisp.c (try_scrolling): New arg LAST_LINE_MISFIT.
1826         Count LAST_LINE_MISFIT in scroll margin for end of window.
1827         Move label too_near_end before setting SCROLL_MARGIN_POS.
1828         Set LAST_LINE_MISFIT before jumping there.
1830         * xdisp.c (try_scrolling): Calculate amount_to_scroll better in
1831         scroll_conservatively case.  If scrolling that much doesn't change
1832         STARTP, move it down one line.
1834         * xdisp.c (redisplay_window): Pass last_line_misfit arg to
1835         try_scrolling.  Make it 1 after make_cursor_line_fully_visible fails.
1837         * xdisp.c (setup_echo_area_for_printing): Kill Emacs if no
1838         selected frame.
1840         * keymap.c (apropos_predicate, apropos_accumulate): Make them static.
1841         (syms_of_keymap): staticpro them.
1842         (Fapropos_internal): Initialize them and clear them out.
1843         Don't GCPRO them.
1845         * buffer.c (syms_of_buffer) <scroll-up-aggressively, scroll-down-aggressively>:
1846         Doc fixes.
1848         * lisp.h: New misc type Lisp_Save_Value.
1849         (enum Lisp_Misc_Type): Add Lisp_Misc_Save_Value.
1850         (XSAVE_VALUE): New macro.
1851         (struct Lisp_Save_Value): New data type.
1852         (union Lisp_Misc): Add u_save_value alternative.
1853         (make_save_value): Declared.
1855         * alloc.c (make_save_value): New function.
1857         * xterm.c (x_catch_errors): Save dpy using make_save_value.
1858         (x_catch_errors_unwind): Call XSync.
1860 2003-01-01  Richard M. Stallman  <rms@gnu.org>
1862         * window.c (window_scroll_pixel_based): Partially undo last change.
1864         * keyboard.c (command_loop_1): Call adjust_point_for_property
1865         in direct action cases for Qforward_char and Qbackward_char.
1866         Set already_adjusted so it won't be done twice.
1868 2002-12-30  Richard Dawe  <rich@phekda.freeserve.co.uk>  (tiny change)
1870         * src/config.in (!HAVE_SIZE_T): Fix order of arguments in
1871         type definition of size_t.
1873 2003-01-02  Steven Tamm  <steventamm@mac.com>
1875         * macterm.c (syms_of_macterm): Provide the feature "mac-carbon" to
1876         distinguish Carbon GUI builds from X11 builds on darwin.
1878 2002-12-30  Steven Tamm  <steventamm@mac.com>
1880         * macterm.c (syms_of_macterm): Set mac-wheel-button-is-mouse-2
1881         to default to t.
1883 2002-12-29  Francesco Potort\e,Al\e(B  <pot@gnu.org>
1885         * data.c (Fstring_to_number, Fminus): Better English in doc strings.
1887 2002-12-28  Steven Tamm  <steventamm@mac.com>
1889         * Makefile.in (macosx-bundle): Fixes to Mac OS X/Carbon port to
1890         allow building in a different directory than source.  Uses some
1891         GNU Make extensions, but there is no other make on Mac OS X.
1893 2002-12-26  Francesco Potort\e,Al\e(B  <pot@gnu.org>
1895         * data.c (Fmakunbound, Ffmakunbound, Fmake_variable_buffer_local)
1896         (Fsetq_default, Fmake_local_variable, Fkill_local_variable)
1897         (Fmake_variable_frame_local, Faset, Fnumber_to_string, Fminus)
1898         (Fstring_to_number): Mention the returned value in the doc strings.
1900 2002-12-23  Richard M. Stallman  <rms@gnu.org>
1902         * buffer.c (syms_of_buffer) <scroll-up-aggressively>
1903         <scroll-down-aggressively>: Doc fix.
1905         * xmenu.c (parse_single_submenu): Use individual keymap's prompt
1906         string as pane name, if there is one.
1907         (set_frame_menubar): Save menu_items_n_panes from each call to
1908         parse_single_submenu and use it when calling digest_single_submenu.
1910         * window.c (window_scroll_pixel_based): Fix check for reaching BEGV.
1911         Don't try to make last line fully visible if it is past end of window.
1913 2002-12-22  Steven Tamm  <steventamm@mac.com>
1915         * macmenu.c (MIN_POPUP_SUBMENU_ID): Add.
1916         (mac_menu_show): Add support for hierarchical popup menus.
1917         (add_menu_item): Remove indentation support.
1918         (fill_submenu, fill_menu): Create hierarchical menus
1919         instead of using indentation.
1921 2002-12-22  Richard M. Stallman  <rms@gnu.org>
1923         * xdisp.c (try_cursor_movement): Don't call try_window here.
1924         (redisplay_window): Never redisplay minibuffer when inactive.
1926         * window.c (select_window_1): Undo 9/21 change.
1928 2002-12-22  Steven Tamm  <steventamm@mac.com>
1930         * macterm.c (XTread_socket): Call KeyTranslate for control and
1931         meta to deal correctly shifted non-alpha characters, like C-S-5
1932         being treated like C-%.  Does not look for shift key to deal
1933         with masking off control-key with mac-reverse-ctrl-meta.
1935 2002-12-21  Richard M. Stallman  <rms@gnu.org>
1937         * xmenu.c (popup_get_selection): Now static.  New arg DO_TIMERS.
1938         If it is non-nil, run timers.  Use an unwind-protect to requeue
1939         the events that were read ahead.
1940         (popup_get_selection_unwind): New subroutine.
1941         (popup_get_selection_queue): File-scope variable now holds that queue.
1942         (xmenu_show): Pass 0 for DO_TIMERS to popup_get_selection.
1943         (xdialog_show): Pass 1 for DO_TIMERS to popup_get_selection.
1944         Use an unwind-protect to pop down the dialog box.
1945         (xdialog_show_unwind): New subroutine implements that.
1947         * xdisp.c (row_containing_pos): Change exit test using last_y.
1948         (try_window_id): Abort if row_containing_pos returns null.
1950         * lread.c (load_error_handler): New function.
1951         (Fload): Handle errors in Fsubstitute_in_file_name.
1952         Don't expect Fsignal to return.
1954         * eval.c: Errors and throws work right with interrupt blocking.
1955         (struct catchtag): New elt interrupt_input_blocked.
1956         (unwind_to_catch): Restore interrupt_input_blocked from saved value.
1957         (internal_catch, Fcondition_case, internal_condition_case)
1958         (internal_condition_case_1, internal_condition_case_2): Save it.
1959         (Fsignal): Don't do TOTALLY_UNBLOCK_INPUT.
1961         * editfns.c (Fformat): Add parens.
1963         * dired.c (file_name_completion): Fix that change.
1964         Delete special quit-handling code; just use QUIT.
1966 2002-12-21  Tak Ota  <Takaaki.Ota@am.sony.com>  (tiny change)
1968         * dired.c (file_name_completion): Close directory on error
1969         just as in directory_files_internal.
1971 2002-12-19  David Kastrup  <David.Kastrup@t-online.de>
1973         * window.c (Fset_window_configuration): Set old_point to correct
1974         value when new_current_buffer == current_buffer.
1976 2002-12-17  Ben Key  <bkey1@tampabay.rr.com>
1978         Revisited my earlier fix for the following entry in etc/PROBLEMS:
1979         "Emacs built on Windows 9x/ME crashes at startup on Windows XP,
1980         or Emacs builtpart of on XP crashes at startup on Windows 9x/ME."
1982         These changes were in part based upon suggestions made by Peter
1983         'Luna' Runestig [peter@runestig.com].
1985         * w32.c (g_b_init_is_windows_9x, g_b_init_open_process_token,
1986         g_b_init_get_token_information, g_b_init_lookup_account_sid,
1987         g_b_init_get_sid_identifier_authority ): Add several static
1988         global variables.
1990         * w32.c (globals_of_w32): New function.  Used to initialize those
1991         global variables that must always be initialized on startup even
1992         when the global variable initialized is non zero.  Its primary
1993         purpose at this time is to set the global variables
1994         g_b_init_is_windows_9x, g_b_init_open_process_token,
1995         g_b_init_get_token_information, g_b_init_lookup_account_sid, and
1996         g_b_init_get_sid_identifier_authority to 0 on startup.
1997         Called from main.
1999         * w32.c (is_windows_9x): Perform initialization only if
2000         g_b_init_is_windows_9x is equal to 0.  On initialization set
2001         g_b_init_is_windows_9x equal to 1.
2003         * w32.c (open_process_token): Perform initialization only if
2004         g_b_init_open_process_token is equal to 0.  On initialization set
2005         g_b_init_open_process_token equal to 1.
2007         * w32.c (get_token_information): Perform initialization only if
2008         g_b_init_get_token_information is equal to 0.  On initialization
2009         set g_b_init_get_token_information equal to 1.
2011         * w32.c (lookup_account_sid): Perform initialization only if
2012         g_b_init_lookup_account_sid is equal to 0.  On initialization
2013         set g_b_init_lookup_account_sid equal to 1.
2015         * w32.c (get_sid_identifier_authority): Perform initialization
2016         only if g_b_init_get_sid_identifier_authority is equal to 0.
2017         On initialization set g_b_init_get_sid_identifier_authority equal to 1.
2019         * w32fns.c (globals_of_w32fns): New function. Used to initialize
2020         those global variables that must always be initialized on startup
2021         even when the global variable initialized is non zero.
2022         Its primary purpose at this time is to initialize the global variable
2023         track_mouse_event_fn.
2025         * w32fns.c (w32_wnd_proc):  Remove initialization of
2026         track_mouse_event_fn from the handler for the WM_SETFOCUS message.
2028         * w32fns.c (syms_of_w32fns): Call globals_of_w32fns.
2030         * w32menu.c (globals_of_w32menu):  New function. Used to
2031         initialize those global variables that must always be initialized
2032         on startup even when the global variable initialized is non zero.
2033         Its primary purpose at this time is to initialize the global
2034         variables get_menu_item_info and set_menu_item_info.
2036         * w32menu.c (initialize_frame_menubar): Remove initialization of
2037         get_menu_item_info and set_menu_item_info.
2039         * w32menu.c (syms_of_w32menu): Call globals_of_w32menu.
2041         * w32.h (globals_of_w32, globals_of_w32fns, globals_of_w32menu):
2042         Declare them.
2044         * emacs.c (main): Call globals_of_w32 prior to calling
2045         init_environment if WINDOWSNT is defined.  Call globals_of_w32fns
2046         and globals_of_w32menu if initialized is non zero and HAVE_NTGUI
2047         is defined.
2049         * w32term.c (x_update_window_begin): Fix Windows API error
2050         detected by BoundsChecker.  Test to determine if
2051         w32_system_caret_hwnd is NULL prior to attempting to use
2052         SendMessage to send the WM_EMACS_HIDE_CARET message to it.
2054         * w32term.c (x_update_window_end): Fix Windows API error
2055         detected by BoundsChecker.  Test to determine if
2056         w32_system_caret_hwnd is NULL prior to attempting to use
2057         SendMessage to send the WM_EMACS_SHOW_CARET message to it.
2059 2002-12-17  Kenichi Handa  <handa@m17n.org>
2061         * coding.c (coding_system_require_warning): New variable.
2062         (syms_of_coding): DEFVAR it.
2064         * coding.h (coding_system_require_warning): Extern it.
2066         * fileio.c (choose_write_coding_system): Even if
2067         Vcoding_system_for_write is non-nil, if
2068         coding_system_require_warning is nonzero, call
2069         Vselect_safe_coding_system_function.
2071 2002-12-17  Markus Rost  <rost@math.ohio-state.edu>
2073         * Makefile.in (lisp, shortlisp): Add cus-face and timer.
2074         (lisp): Add font-core.
2076 2002-12-13  Stefan Monnier  <monnier@cs.yale.edu>
2078         * textprop.c (text_read_only): New arg `propval'.
2079         (get_char_property_and_overlay): Remove unused var `next_overlay'.
2080         (verify_interval_modification): Use text_read_only's new arg.
2082 2002-12-13  Kenichi Handa  <handa@m17n.org>
2084         * coding.c (Funencodable_char_position): Set pend correctly.
2086 2002-12-12  Jason Rumney  <jasonr@gnu.org>
2088         * w32term.c (last_mousemove_x, last_mousemove_y): New variables.
2089         (w32_read_socket) <WM_MOUSEMOVE>: Use them to detect non-movement.
2090         Be more careful about when help_events are generated.
2092 2002-12-12  Steven Tamm  <steventamm@mac.com>
2094         * macterm.c (mac_check_for_quit_char): Correctly set the
2095         modifiers of the event to 0.
2096         * mac.c (sys_select): Duplicate rfds before calling select to
2097         ensure that rfds survive the while loop.
2099 2002-12-11  Kim F. Storm  <storm@cua.dk>
2101         * xdisp.c (try_window_id): Don't call set_cursor_from_row if
2102         row_containing_pos returned NULL.
2104 2002-12-10  Steven Tamm  <steventamm@mac.com>
2106         * mac.c (sys_read): Fix sys_read to not call select if IO is
2107         non-blocking.
2108         (sys_select): Fix sys_select to not use a timeout larger than
2109         the one given.
2111 2002-12-10  Juanma Barranquero  <lektu@terra.es>
2113         * editfns.c (Fformat): Use alloca, not _alloca.
2115 2002-12-09  Richard M. Stallman  <rms@gnu.org>
2117         * buffer.c (Fget_buffer_create): Call Qucs_set_table_for_input
2118         as the last thing.
2120 2002-12-09  Dave Love  <fx@gnu.org>
2122         * s/sol2-8.h: Removed.  (Not necessary.)
2124 2002-12-09  Matthew Swift  <swift@alum.mit.edu>
2126         * editfns.c (Fformat): Handle precision in string conversion
2127         specifiers like libc functions do (ie, print at most that many
2128         characters).
2130 2002-12-08  Richard M. Stallman  <rms@gnu.org>
2132         * xdisp.c (row_containing_pos): Check more carefully
2133         whether charpos is really in the row before returning it.
2135 2002-12-07  Steven Tamm  <steventamm@mac.com>
2137         * sysdep.c (emacs_read) [HAVE_CARBON]: Have emacs_read use sys_read.
2139         * eval.c (Feval) [HAVE_CARBON]: Calls mac_check_for_quit_char at
2140         each stack frame.  This may change as it could be time consuming.
2142         * macterm.c (mac_check_for_quit_char, quit_char_comp)
2143         (init_quit_char_handler, mac_determine_quit_char_modifiers)
2144         (mac_initialize): Add code to check for pressing of quit_char
2145         in the OS event queue.
2147         * mac.c (sys_select): Call mac_check_for_quit_char every second
2148         while blocking on select.
2150         * mac.c (sys_read): Use sys_select to test for input first
2151         before calling read, to allow C-g to break.
2153 2002-12-07  Richard M. Stallman  <rms@gnu.org>
2155         * minibuf.c (Fcompleting_read): Doc fix.
2157         * lread.c (syms_of_lread) <load-history>: Doc fix.
2159         * fileio.c (Fcopy_file): Set immediate_quit around emacs_open call.
2161         * eval.c (Fdefun, Fdefmacro): Record in load-history redefining an
2162         autoload.
2164         * data.c (Fdefalias): Record in load-history redefining an autoload.
2166         * alloca.c: Undo ifdef change accidentally made on 12-04.
2168 2002-12-06  Francesco Potorti`  <pot@gnu.org>
2170         * xfns.c (png_load): Avoid double gamma correction for PNG images.
2172 2002-12-04  Richard M. Stallman  <rms@gnu.org>
2174         * sysdep.c (fcntl.h): Test only HAVE_FCNTL_H.
2176         * fileio.c (fcntl.h): Test only HAVE_FCNTL_H.
2178         * alloca.c: Don't use #error.
2180 2002-12-03  Dave Love  <fx@gnu.org>
2182         * buffer.c (Qucs_set_table_for_input): New.
2183         (Fget_buffer_create): Use it.
2184         (Qset_buffer_major_mode_hook): Deleted.
2185         (Fset_buffer_major_mode): Revert previous change.
2186         (init_buffer_once): Intern ucs-set-table-for-input.
2187         (syms_of_buffer): Delete Qset_buffer_major_mode_hook.
2188         Add &Qucs_set_table_for_input.
2190 2002-12-03  Andreas Schwab  <schwab@suse.de>
2192         * callint.c (Fcall_interactively): Use next_event only if less
2193         than key_count.
2195 2002-12-02  Andrew Choi  <akochoi@shaw.ca>
2197         * macmenu.c (add_menu_item, fill_menubar): Truncate menu item
2198         names to 255 characters.
2200         * macterm.c (XTread_socket): If all frames have been collapsed,
2201         expand the first one before handling drag-and-drop events.
2203         * s/darwin.h (GETPGRP_NO_ARG): Delete.  Replaced by GETPGRP_VOID,
2204         which is detected by autoconf.
2206 2002-12-01  Steven Tamm  <steventamm@mac.com>
2208         * unexmacosx.c (copy_twolevelhints, dump_it): Now corrects the
2209         offset in two hints table to allow prebinding to be redone and
2210         allow the executable to be stripped.
2212 2002-11-29  Dave Love  <fx@gnu.org>
2214         * fns.c (Frequire): Don't call LOADHIST_ATTACH if feature was
2215         already provided.
2217 2002-11-29  Richard M. Stallman  <rms@gnu.org>
2219         * xdisp.c (start_display): Check more intelligently for
2220         whether the line is continued.
2221         (move_it_vertically_backward): Clear it->continuation_lines_width.
2223 2002-11-28  Dave Love  <fx@gnu.org>
2225         * s/amdahl.h, s/unipl5-0.h, m/sgi3000.h, s/3700.h, s/alliant-2800.h:
2226         * s/alliant.h, s/altos.h: Deleted.  (Unused/empty.)
2228 2002-11-27  Steven Tamm  <steventamm@mac.com>
2230         * fns.c (Frequire): Change nesting allowance from 2 to 3 to cause
2231         more descriptive error output from lread.c:Fload upon most require
2232         cycles during boostrapping.
2234 2002-11-27  Jason Rumney  <jasonr@gnu.org>
2236         * fileio.c (Finsert_file_contents): Give a more appropriate error
2237         for files bigger than 2Gb when off_t is 32 bit.
2239         * dired.c (Ffile_attributes): Don't return negative file sizes for
2240         files bigger than 2Gb when off_t is 32 bit.
2242 2002-11-27  Dave Love  <fx@gnu.org>
2244         * s/irix6-0.h (GC_SETJMP_WORKS, GC_MARK_STACK): Define.
2246         * systty.h: Don't conditionally define GETPGRP_NO_ARG.
2247         Test GETPGRP_VOID instead.
2248         [BSD_TERMIOS]: Remove definitions (never used).
2250         * s/osf5-0.h (WAIT_USE_INT, SYS_SIGLIST_DECLARED, sys_siglist):
2251         Don't define.
2252         (GC_SETJMP_WORKS, GC_MARK_STACK): Define.
2254         * m/mips.h (WORDS_BIG_ENDIAN): Define conditionally.
2256 2002-11-25  Jason Rumney  <jasonr@gnu.org>
2258         * w32.c (sys_write): Avoid non-blocking mode, which is not fully
2259         supported.
2261 2002-11-25  Dave Love  <fx@gnu.org>
2263         * unexalpha.c (update_dynamic_symbols): Cast arg of fatal_unexec.
2265         * Makefile.in (TEMACS_LDFLAGS): Update last change.
2267 2002-11-25  Andreas Schwab  <schwab@suse.de>
2269         * m/ia64.h: Restore `#ifndef NOT_C_CODE' deleted by last change.
2271 2002-11-24  Steven Tamm  <steventamm@mac.com>
2273         * unexmacosx.c (unexec_realloc): Use malloc_default_zone to
2274         determine the size of pointers alloced in unexed space instead
2275         of using possibly invalid emacs_zone pointers.  This fixes the
2276         binary incompatibility problems caused by updates to libSystem.B.
2278 2002-11-24  Richard M. Stallman  <rms@gnu.org>
2280         * search.c (Fstring_match): Doc fix.
2282         * callint.c (Fcall_interactively): If a command fails because
2283         `*' detects a read-only buffer, but RECORD_FLAG is set,
2284         record it anyway if the args don't actually do tty input.
2286 2002-11-22  Dave Love  <fx@gnu.org>
2288         * sysdep.c (stuff_char) [PROTOTYPES]: Provide ISO C arglist.
2290         * keyboard.c (interrupt_signal): Provide forward declaration.
2291         (kbd_buffer_store_event): Don't declare interrupt_signal.
2293         * xdisp.c (store_frame_title_char) [PROTOTYPES]: Provide ISO C arglist.
2295 2002-11-21  Richard M. Stallman  <rms@gnu.org>
2297         * eval.c (interactive_p): Skip any number of bytecode
2298         and special form frames, in any order.
2300 2002-11-20  Jason Rumney  <jasonr@gnu.org>
2302         * w32fns.c (convert_mono_to_color_image): New function.
2303         (xbm_load, xbm_load_image): Use it when foreground or background
2304         is explicitly set.
2306 2002-11-19  Dave Love  <fx@gnu.org>
2308         * s/usg5-4.h, sco4.h (bcopy, bzero, bcmp): Don't define.
2310 2002-11-18  Jason Rumney  <jasonr@gnu.org>
2312         * w32fns.c (x_build_heuristic_mask): Filter palette info from color.
2313         (XPutPixel): Swap blue and red.
2314         (xpm_format, pbm_format, png_format, jpeg_format, tiff_format)
2315         (gif_format, gs_format): Use IMAGE_ASCENT_VALUE.
2316         (xpm_image_p, pbm_image_p, png_image_p, jpeg_image_p)
2317         (tiff_image_p, gif_image_p, gs_image_p): Don't check ascent.
2319 2002-11-18  Dave Love  <fx@gnu.org>
2321         * m/orion105.h (HAVE_ALLOCA): Don't define.
2323         * m/m68k.h, m/arm.h, mtekxd88.h, m/tower32v3.h: Don't define alloca.
2325         * m/intel386.h: Don't include alloca.h or define alloca.
2327         * m/ia64.h: Don't include alloca.h, stdlib.h.  Don't declare
2328         malloc, realloc, calloc.
2330         * m/hp800.h, m/sr2k.h, m/ns16000.h, m/wicat.h (bcopy, bzero)
2331         (bcmp): Don't define.
2333         * m/delta.h (bcopy, bzero, bcmp, alloca): Don't define.
2335         * m/amdahl.h: Don't define LIB_STANDARD.
2337         * m/alpha.h: Move OSF1 stuff from here to s/osf1.h.
2339         * s/osf1.h: Move OSF1 stuff from m/alpha.h to here.
2341         * s/irix4-0.h, s/irix5-0.h, m/powerpcle.h, m/sparc.h:
2342         Don't include alloca.h.
2344         * s/aix3-2.h (HAVE_FSYNC): Don't define.
2346         * regex.c (_GNU_SOURCE): Don't define.
2348         * process.c (_GNU_SOURCE): Don't define.
2350         * fileio.c (_GNU_SOURCE, HAVE_FSYNC): Don't define.
2352 2002-11-18  Markus Rost  <rost@math.ohio-state.edu>
2354         * s/sol2-8.h: Include sol2-6.h.
2356 2002-11-18  Miles Bader  <miles@gnu.org>
2358         * dispextern.h (struct face): Add `overstrike' field.
2359         * xterm.c (x_draw_glyph_string_foreground)
2360         (x_draw_composite_glyph_string_foreground): Implement overstriking.
2361         * xfaces.c (load_face_font): Set `face->overstrike' based on
2362         result from choose_face_font.
2363         (best_matching_font, choose_face_font): Add `needs_overstrike'
2364         argument, and use it to return whether overstriking is desirable
2365         for this face/font combo.
2366         (set_font_frame_param: Pass new argument to choose_face_font.
2368 2002-11-17  Ben Key  <BKey1@tampabay.rr.com>
2370         This change is my fix for the following entry in etc/PROBLEMS:
2371         "Emacs built on Windows 9x/ME crashes at startup on Windows XP,
2372         or Emacs builtpart of on XP crashes at startup on Windows 9x/ME."
2374         * w32.c: Added wrapper functions around the win32 API functions
2375         OpenProcessToken, GetTokenInformation, LookupAccountSid, and
2376         GetSidIdentifierAuthority.  These wrapper functions serve two
2377         purposes:
2378         1.  They ensure that the wrapped function can never be called
2379         when Emacs is running on an operating system on which they are
2380         not supported (Microsoft Windows 95 / 98 / ME).
2381         2.  They call the wrapped functions via function pointers rather
2382         than calling them directly.  This avoids taking advantage of the
2383         undocumented fact that although these functions are not supported
2384         in the 9x branch of Microsoft Windows, the functions do exist in
2385         the version of advapi32.dll that is found in the 9x branch of
2386         Microsoft Windows.
2388         * w32.c (init_user_info): Replace the calls to the win32 API
2389         functions OpenProcessToken, GetTokenInformation, LookupAccountSid,
2390         and GetSidIdentifierAuthority with calls to the newly added
2391         wrapper functions.
2393         * w32.h: Added extern declarations for the following functions:
2394         syms_of_w32term, syms_of_w32fns, syms_of_w32select,
2395         syms_of_w32menu, and void syms_of_fontset.
2397         * w32fns.c (w32_wnd_proc): Add code to reinitialize the
2398         function pointer track_mouse_event_fn in the handler for the
2399         WM_SETFOCUS message.
2401         * w32menu.c (initialize_frame_menubar): Add code to
2402         reinitialize the function pointers set_menu_item_info and
2403         get_menu_item_info.
2405 2002-11-17  Ben Key  <BKey1@tampabay.rr.com>
2407         * sound.c: Added a partial implementation of play-sound-internal
2408         for Microsoft Windows.  Added various #ifdef / #else / #endif
2409         code blocks to separate the code that will compile under
2410         Microsoft Windows from the code that is specific to Gnu/Linux.
2411         Moved several blocks of code around to make this separation of code
2412         into Windows compatible and Gnu/Linux compatible code blocks easier.
2414         * makefile.w32-in: Include sound.c and link with WinMM.lib.
2416         * s/ms-w32.h: Defined the symbol HAVE_SOUND so that the newly
2417         added support for play-sound-internal under Windows would be
2418         included in the build of Emacs.
2420 2002-11-16  Jason Rumney  <jasonr@gnu.org>
2422         * w32fns.c (w32_load_system_font): Don't disable Cleartype.
2424         * w32term.c (w32_get_glyph_string_clip_rect): Clip cursor tightly.
2426 2002-11-15  Stefan Monnier  <monnier@cs.yale.edu>
2428         * keyboard.c (command_loop_1): Fix int/Lisp_Object mixup.
2429         (adjust_point_for_property): Move out of display and invisible even if
2430         we were already inside before (in case a property was added while
2431         we weren't looking).  Be more careful when handling invisible props.
2432         Skip invisible text as if it really wasn't there at all.
2434 2002-11-15  Jason Rumney  <jasonr@gnu.org>
2436         * w32term.c (x_draw_image_foreground)
2437         (w32_draw_image_foreground_1): Use standard copy and invert
2438         operations to draw images.
2440         * w32fns.c (x_create_x_image_and_pixmap): Fill in palette for
2441         depth of 1.
2442         (xbm_read_bitmap_data): Invert bits as xbm is read in.
2443         (XPutPixel): Don't invert bits here.
2445 2002-11-15  Jason Rumney  <jasonr@gnu.org>
2447         * w32term.c (x_draw_image_foreground, x_draw_image_glyph_string)
2448         (w32_draw_image_foreground_1): Handle image masks.
2449         (x_draw_image_glyph_string): Don't BitBlt transparently.
2451         * w32fns.c (w32_defined_color): Adjust RGB values for Emacs.
2452         (x_from_xcolors): Adjust RGB values for W32.
2453         (image_background, image_background_transparent)
2454         (postprocess_image, x_to_xcolors, x_disable_image)
2455         (x_build_heuristic_mask): Adapt for W32 and enable.
2456         (x_create_x_image_and_pixmap): Mark images with palettes as such.
2457         (xbm_load): Remove unused variable.
2459 2002-11-14  Richard M. Stallman  <rms@gnu.org>
2461         * buffer.c (syms_of_buffer): Doc fix.
2463 2002-11-14  Dave Love  <fx@gnu.org>
2465         * alloc.c (SETJMP_WILL_NOT_WORK): Add note.
2467         * xterm.c (x_draw_relief_rect, x_draw_box_rect, x_update_cursor):
2468         * xmenu.c (unuse_menu_items, digest_single_submenu):
2469         * xfns.c (x_put_x_image):
2470         * xdisp.c (message2_nolog, set_message):
2471         * undo.c (record_point):
2472         * terminfo.c (tparam):
2473         * syntax.c (scan_sexps_forward):
2474         * scroll.c (calculate_scrolling, calculate_direct_scrolling):
2475         * composite.c (update_compositions):
2476         * cm.c (calccost, cmgoto):
2477         * charset.c (c_string_width): Declare all args (per C99).
2479         * frame.h (get_specified_cursor_type, get_window_cursor_type): Declare.
2481         * lisp.h (get_specified_cursor_type, get_window_cursor_type):
2482         Don't declare.
2484         * emacs.c (main) [!VMS]: Avoid third arg.
2486         * fns.c (Fcopy_sequence): Doc fix.
2487         (Fmap_char_table): Cast `call2'.
2489 2002-11-14  Francesco Potorti`  <pot@gnu.org>
2491         * s/sol2-8.h: New file.
2493 2002-11-14  Kim F. Storm  <storm@cua.dk>
2495         * buffer.c (syms_of_buffer) <mode-line-format>: Document symbol
2496         dependency on `risky-local-variable' and the :propertize form.
2498 2002-11-12  Stefan Monnier  <monnier@cs.yale.edu>
2500         * fns.c (Fmap_char_table): Don't use map_char_table's function arg.
2502         * syntax.c (scan_sexps_forward): Undo last patch.
2503         Use a more obvious fix: check eob before updating the syntax table.
2505 2002-11-09  Stefan Monnier  <monnier@cs.yale.edu>
2507         * syntax.c (scan_sexps_forward): Update syntax table before reading
2508         a char rather than after so we don't update the table past eob.
2510 2002-11-09  Dave Love  <fx@gnu.org>
2512         * buffer.c (Fset_buffer_major_mode): Fix last change.
2514         * regex.c (regexec): Fix pmatch declaration.
2516         * cmds.c (Fself_insert_command): Apply Vtranslation_table_for_input.
2518         * keyboard.c (command_loop_1): Apply Vtranslation_table_for_input
2519         to self-inserting characters.
2520         (syms_of_keyboard) <keyboard-translate-table>: Doc fix.
2522         * coding.c (Vtranslation_table_for_input): New.
2523         (syms_of_coding): DEFVAR it.
2525 2002-11-08  Juanma Barranquero  <lektu@terra.es>
2527         * w32term.c (w32_draw_fringe_bitmap): Remove unused local variable
2528         window.
2530 2002-11-08  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
2532         * process.c (Fformat_network_address): Remove unused locals p,
2533         cp, and i.
2535 2002-11-06  Dave Love  <fx@gnu.org>
2537         * buffer.c (Qset_buffer_major_mode_hook): New.
2538         (Fset_buffer_major_mode): Use it.
2540 2002-11-06  Richard M. Stallman  <rms@gnu.org>
2542         * xterm.c (x_term_init): Use turn_on_atimers, not start_polling
2543         and stop_polling.
2545         * process.c (wait_reading_process_input):
2546         Test POLLING_PROBLEM_IN_SELECT, not hpux.
2547         Avoid initialization for auto Lisp_Object var.
2549         * s/hpux11.h (POLLING_PROBLEM_IN_SELECT): Add #undef.
2551         * s/hpux10.h (POLLING_PROBLEM_IN_SELECT): Defined.
2553 2002-11-05  Richard M. Stallman  <rms@gnu.org>
2555         * s/sol2-5.h (BROKEN_SIGIO): Turn off the #undef.
2557         * callint.c (Fcall_interactively): New local filter_specs.
2558         (Fcall_interactively): Check for progn as well as let.
2559         Add a gcpro.
2560         (Qprogn): New variable.
2561         (syms_of_callint): Staticpro and init Qprogn.
2563 2002-11-04  John Paul Wallington  <jpw@shootybangbang.com>
2565         * lread.c (Feval_buffer): Doc fix.
2567 2002-11-04  Dave Love  <fx@gnu.org>
2569         * keyboard.c (read_char): Always translate iff
2570         Vkeyboard_translate_table is a char table and c is valid.
2572         * xterm.c (XTread_socket): Check Lisp types for Vx_keysym_table
2573         and fix C types.
2575 2002-11-03  Stefan Monnier  <monnier@cs.yale.edu>
2577         * xdisp.c (single_display_prop_intangible_p): Strings are intangible.
2579         * editfns.c (get_pos_property): Don't hardcode Qfield.
2581         * keyboard.c (adjust_point_for_property): Handle `display' prop on
2582         overlays.  Also handle `invisible' prop.
2584 2002-11-02  Stefan Monnier  <monnier@cs.yale.edu>
2586         * coding.c (decode_coding_emacs_mule, decode_coding_iso2022)
2587         (decode_coding_sjis_big5, decode_eol): Allow lone \r in DOS EOL.
2589 2002-11-01  Andreas Schwab  <schwab@suse.de>
2591         * editfns.c (Fmessage): Revert last change to properly handle %%.
2593 2002-11-01  Stefan Monnier  <monnier@cs.yale.edu>
2595         * xmenu.c (unuse_menu_items): New fun.
2596         (menu_items_inuse): New var.
2597         (syms_of_xmenu): Initialize it.
2598         (init_menu_items): Use it to detect re-entrance.
2599         (Fx_popup_menu, Fx_popup_dialog, set_frame_menubar): Reset when done.
2600         (Fx_popup_menu): Remove spurious XSETFRAME.
2602         * editfns.c (find_field): Make an exception for nil fields.
2604 2002-11-01  Dave Love  <fx@gnu.org>
2606         * m/gec63.h: Deleted.
2608 2002-10-31  Dave Love  <fx@gnu.org>
2610         * xterm.c (XTread_socket): Fix last change.
2611         (xaw_scroll_callback): Cast call_data to long to avoid warning.
2613 2002-10-31  Stefan Monnier  <monnier@cs.yale.edu>
2615         * process.c (Fformat_network_address): Fix int/Lisp_Object mixup.
2617 2002-10-30  Stefan Monnier  <monnier@cs.yale.edu>
2619         * editfns.c (overlays_around, get_pos_property): New funs.
2620         (find_field): Use them.
2621         Also be careful not to modify POS before its last use.
2622         (Fmessage): Don't Fformat if there's nothing to format.
2624 2002-10-30  Dave Love  <fx@gnu.org>
2626         * process.c [HAVE_SYS_WAIT]: Include sys/wait.h.
2627         [HAVE_PTY_H]; Include pty.h.
2629         * lread.c (Fload) <!load_dangerous_libraries>: Close fd.
2631         * xterm.c (Qeql): Declare.
2632         (Vx_keysym_table): New.
2633         (syms_of_xterm): Initialize it.
2634         (XTread_socket): Use it.  Deal with ASCII keysyms.
2635         (XSetIMValues) [HAVE_X11R6]: Prototype.
2637         * keyboard.c (lispy_accent_codes, lispy_accent_keys): Extended.
2638         (lispy_kana_keys): Comment out.
2639         (make_lispy_event) [XK_kana_A]: Comment out.
2640         (modify_event_symbol) <sizeof (long) == sizeof (EMACS_INT)>:
2641         Fix sprintf call.
2643         * s/osf5-0.h (C_SWITCH_SYSTEM): Revert last change (fixed by
2644         regexp.h change).
2645         (TERMINFO, LIBS_TERMCAP): Define.
2647         * s/usg5-4.h (bcopy, bzero): Define conditional on HAVE_BCOPY.
2648         (bcmp): Define conditional on HAVE_BCMP.
2649         (NO_SIOCTL_H): Don't define.
2650         (TIOCSIGSEND): Don't make conditional on IRIX6.
2652         * s/sol2-5.h: Don't include strings.h.
2653         (bcopy, bzero, bcmp) [HAVE_BCOPY]: Don't undef.
2655         * s/irix6-0.h (IRIX6): Don't define.
2656         (bcopy, bcmp, bzero): Don't undef.
2658         * s/irix6-5.h: Don't include strings.h.
2659         (IRIX6): Don't define.
2660         (bcopy, bcmp, bzero): Don't undef.
2662         * syntax.c (Fforward_comment): Doc fix.
2664 2002-10-29  Kim F. Storm  <storm@cua.dk>
2666         * process.c (Fsignal_process): Allow PROCESS to be specified by
2667         name in addition to pid (as integer or string).
2669 2002-10-28  Harald Maier  <Harald.Maier.BW@t-online.de>  (tiny change)
2671         * w32heap.c: Don't redefine _heap_init and _heap_term on MSVC 7 build
2672         environments.
2674 2002-10-27  Kim F. Storm  <storm@cua.dk>
2676         * xterm.c (note_mouse_highlight): Don't use mouse-face if hidden.
2678         * w32term.c (note_mouse_highlight): Don't use mouse-face if hidden.
2680         * msdos.c (IT_note_mouse_highlight): Don't use mouse-face if hidden.
2682         * macterm.c (note_mouse_highlight): Don't use mouse-face if hidden.
2684 2002-10-26  Richard M. Stallman  <rms@gnu.org>
2686         * editfns.c (Fformat): Detect invalid format letters for floats.
2688 2002-10-25  Kenichi Handa  <handa@m17n.org>
2690         * xfns.c (x_set_name): Encode by Qcompound_text unconditionally.
2691         (x_set_title): Likewise.
2693 2002-10-25  Juanma Barranquero  <lektu@terra.es>
2695         * macgui.h:
2696         * w32gui.h: Remove definition of XColor.
2698         * dispextern.h [!HAVE_X_WINDOWS]: Define XColor.
2700 2002-10-24  Kim F. Storm  <storm@cua.dk>
2702         * xdisp.c (get_window_cursor_type): New arg ACTIVE_CURSOR.
2703         Callers changed (supply dummy arg).
2705         * lisp.h (get_window_cursor_type): Update prototype.
2707         * w32term.c (x_display_and_set_cursor): Get active_cursor from
2708         get_window_cursor_type to track system caret.
2710 2002-10-24  Kim F. Storm  <storm@cua.dk>
2712         * process.c (Fformat_network_address): New function.
2713         (syms_of_process): Defsubr it.
2714         (list_processes_1): Use it to format :local/:remote address if
2715         service/host is not set; before emacs would crash in that case.
2716         (Fmake_network_process): Don't use Ffind_operation_coding_system
2717         to setup coding system if host or service is not set.
2719 2002-10-23  Juanma Barranquero  <lektu@terra.es>
2721         Patch suggested by Jay Finger <jay_finger@hotmail.com>.
2723         * w32term.c (w32_term_init): Pass XColor to w32_define_color, not
2724         COLORREF.
2726         * macgui.h:
2727         * w32gui.h: Add definition of XColor.
2729         * macfns.c:
2730         * w32fns.c:
2731         * xfaces.c: Remove definition of XColor.
2733 2002-10-22  Stefan Monnier  <monnier@cs.yale.edu>
2735         * xfns.c (x_set_name, x_set_title): `icon.value' has unsigned char.
2737         * window.c (window_loop): For GET_LRU_WINDOW and GET_LARGEST_WINDOW>,
2738         Only ignore truly dedicated windows.  For UNSHOW_BUFFER, delete the
2739         window if it is dedicated.
2740         (Fshrink_window): Add preserve_before as was done for enlarge_window.
2741         (Vspecial_display_function): Update docstring.
2743         * buffer.c (assoc_ignore_text_properties, Fother_buffer, Fkill_buffer)
2744         (call_overlay_mod_hooks): Use CONSP and XCAR/XCDR.
2745         (Fget_buffer_create, advance_to_char_boundary): Use BEG and BEG_BYTE;
2747 2002-10-21  Stefan Monnier  <monnier@cs.yale.edu>
2749         * casefiddle.c (casify_region): Don't treat a prefix char as part
2750         of a word when at the beginning.
2752 2002-10-17  Juanma Barranquero  <lektu@terra.es>
2754         * lread.c (syms_of_lread): Fix typos.
2756 2002-10-17  Dave Love  <fx@gnu.org>
2758         * Makefile.in (TEMACS_LDFLAGS): Add trailing comment.
2760 2002-10-16  Richard M. Stallman  <rms@gnu.org>
2762         * fileio.c (Fcopy_file): Fix backward test of KEEP_TIME.
2764 2002-10-14  Juanma Barranquero  <lektu@terra.es>
2766         * w16select.c (syms_of_win16select): Fix docstring for
2767         `selection-coding-system'.
2769         * w32select.c (syms_of_w32select): Likewise.
2771 2002-10-14  Stefan Monnier  <monnier@cs.yale.edu>
2773         * syntax.c (scan_lists): Don't get fooled by a symbol ending with
2774         a backslash-quoted char.
2775         (scan_lists, scan_sexps_forward): Pacify the compiler.
2777 2002-10-13  Richard M. Stallman  <rms@gnu.org>
2779         * window.c (window_scroll): Set immediate_quit.
2781         * print.c (print): When backquote form is the car of a list,
2782         output in old style.  Use old_backquote_output to output all
2783         comma forms inside it in old style too.
2785         * buffer.h (struct buffer): Move `undo_list' down below `name'.
2787 2002-10-11  Markus Rost  <rost@math.ohio-state.edu>
2789         * emacs.c (syms_of_emacs) <kill-emacs-hook>: Doc fix (not run in
2790         batch mode).
2792         * lread.c (Fload): Doc fix (load-suffixes).
2794 2002-10-10  Steven Tamm  <steventamm@mac.com>
2796         * macterm.c (syms_of_macterm, mac_get_mouse_btn):
2797         Reverse functionality of mac-wheel-button-is-mouse-2 to be correct.
2798         Also switch the default to Qnil from Qt.
2800 2002-10-08  Kenichi Handa  <handa@m17n.org>
2802         * coding.c (code_convert_region): When we need more GAP for
2803         conversion, pay attention to the case that coding->produced is not
2804         greater than coding->consumed.
2806 2002-10-07  Richard M. Stallman  <rms@gnu.org>
2808         * unexelf.c (unexec): Redo 9/16 change, but only if IRIX6_5.
2810 2002-10-06  Andrew Choi  <akochoi@shaw.ca>
2812         * macmenu.c (mac_menu_show): Add j to count menu items; match
2813         menu_item_selection to it to find selected item.
2815 2002-10-06  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
2817         * xterm.c (XTread_socket): Fix from 2002-10-03 didn't cover all
2818         cases.  The correct fix is to pass ReparentNotify to Xt.
2819         The shell widget interprets ConfigureNotify differently depending
2820         on if it has been reparented or not.
2822 2002-10-05  Markus Rost  <rost@math.ohio-state.edu>
2824         * editfns.c (Fformat_time_string): Doc fix.
2826 2002-10-05  John Paul Wallington  <jpw@shootybangbang.com>
2828         * fns.c (Flength): Doc fix.
2830 2002-10-04  Stefan Monnier  <monnier@cs.yale.edu>
2832         * keyboard.c (keyremap): New struct.
2833         (read_key_sequence): Use it: globally replace keytran_foo with
2834         keytran.foo and fkey_foo with fkey.foo.  Rename temp vars
2835         keytran_next and fkey_next to just `next'.
2837 2002-10-04  Steven Tamm  <steventamm@mac.com>
2839         * macterm.c (keycode_to_xkeysym_table): Change return to be
2840         treated like an X keysym.
2842 2002-10-03  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
2844         * xterm.c (XTread_socket): For ConfigureNotify, with x and y == 0,
2845         and USE_MOTIF, call XTranslateCoordinates to get the real x and y.
2846         This is to also handle x/y changes that occur because of a resize.
2848 2002-10-02  John Paul Wallington  <jpw@shootybangbang.com>
2850         * frame.c (Vdelete_frame_functions): New variable.
2851         (syms_of_frame): Initialize and defvar it.
2852         (Fdelete_frame): Use it instead of delete-frame-hook.  Don't run
2853         it when frame's `tooltip' parameter is non-nil.
2855         * xfns.c (x_create_tip_frame): Set `tooltip' frame parameter to t.
2857         * w32fns.c (x_create_tip_frame): Likewise.
2859         * macfns.c (x_create_tip_frame): Likewise.
2861 2002-09-30  Kenichi Handa  <handa@m17n.org>
2863         * xterm.c (x_encode_char): For DIM=1 charset, set ccl->reg[2] to
2864         -1 before calling ccl_driver.
2866         * coding.c (decode_coding_emacs_mule): Check coding->cmp_data.
2867         Only when it is non-nil, handle composition sequence.
2868         (setup_coding_system) <0>: Don't force composition handling.
2870         * Makefile.in (lisp, shortlisp): Add utf-16.elc
2872 2002-09-29  Richard M. Stallman  <rms@gnu.org>
2874         * search.c (Freplace_match): Adjust match data for the substitution
2875         just made in the buffer.
2877         * xdisp.c (STOP_POLLING, RESUME_POLLING): New macros.
2878         (redisplay_internal): Use them.  Do RESUME_POLLING at end of function.
2880 2002-09-27  Richard M. Stallman  <rms@gnu.org>
2882         * keyboard.c (STOP_POLLING, RESUME_POLLING): New macros.
2883         (read_char): Use them.  Do all exits thru the end of the function.
2885 2002-09-27  Kenichi Handa  <handa@etl.go.jp>
2887         * xfaces.c (try_font_list): Pay attention to the case that FAMILY
2888         is nil.
2890 2002-09-26  Richard M. Stallman  <rms@gnu.org>
2892         * regex.h (__restrict_arr): Don't define if already defined.
2894         * coding.c (run_pre_post_conversion_on_str):
2895         Save and restore Vdeactivate_mark.
2897 2002-09-26  John Paul Wallington  <jpw@shootybangbang.com>
2899         * minibuf.c (Fminibufferp): Add an optional `buffer' argument.
2901 2002-09-26  Kenichi Handa  <handa@etl.go.jp>
2903         * xfaces.c (try_font_list): New arg PREFER_FACE_FAMILY.  If it is
2904         nonzero, try face's family at first.  Otherwise try FAMILY at first.
2905         (choose_face_font): If C is a single byte char or latin-1, call
2906         try_font_list with PREFER_FACE_FAMILY 1.
2908 2002-09-21  Richard M. Stallman  <rms@gnu.org>
2910         * window.c (select_window_1): Don't select frame.
2911         Set frame's selected window only when frame itself is selected.
2912         (Fselect_window): Doc fix.
2914 2002-09-18  Kim F. Storm  <storm@cua.dk>
2916         * process.c (make-network-process): Doc fix (there is no
2917         network-server-log-function hook).
2919 2002-09-18  Richard M. Stallman  <rms@gnu.org>
2921         * print.c (print): Clear out the unused parts of Vprint_number_table.
2922         (syms_of_print): Doc fix for `print-number-table'.
2924         * unexelf.c (unexec): Undo previous change.
2926 2002-09-17  Andreas Schwab  <schwab@suse.de>
2928         * m/alpha.h [LINUX]: Don't define DATA_START.
2930 2002-09-16  Dave Love  <fx@gnu.org>
2932         * unexelf.c (unexec): Deal with .got, reinstating change from
2933         25-08-1999.
2935 2002-09-13  Richard M. Stallman  <rms@gnu.org>
2937         * s/sol2-6.h (UNEXEC): Comment out definition.
2939         * unexsol.c (unexec): Don't downcase first letter of error msg.
2941         * xfaces.c (Fcolor_supported_p): Just one arg is required.
2943 2002-09-12  Markus Rost  <rost@math.ohio-state.edu>
2945         * unexsol.c: Include buffer.h, charset.h, coding.h.
2947 2002-09-11  Richard M. Stallman  <rms@gnu.org>
2949         * unexsol.c: Don't use report_file_error; do it by hand
2950         using dlerror.
2952         * process.c (wait_reading_process_input, both versions):
2953         Before calling turn_on_atimers, call stop_polling.
2955         * emacs.c (syms_of_emacs) <command-line-args>: Doc fix.
2957         * xdisp.c (try_scrolling): If after make_cursor_line_fully_visible
2958         we go to too_near_end, call clear_glyph_matrix.
2959         (redisplay_window): After make_cursor_line_fully_visible,
2960         call clear_glyph_matrix and bypass `goto done'.
2962         * xfns.c (x_report_frame_params): If FRAME_SCROLL_BAR_PIXEL_WIDTH is 0
2963         and we have non-toolkit scroll bars, return nil for scroll-bar-width.
2965 2002-09-10  Richard M. Stallman  <rms@gnu.org>
2967         * fileio.c (Fdo_auto_save): Catch error making directory.
2968         Only call push_message if we need to.
2969         At the same time, make an unwind-protect to pop it.
2970         Rename local message_p to old_message_p.
2971         (do_auto_save_make_dir, do_auto_save_eh): New functions.
2972         (do_auto_save_unwind): Don't call pop_message.
2974         * lisp.h (pop_message_unwind): Renamed from push_message_unwind.
2976         * keyboard.c (Fexecute_extended_command): Use pop_message_unwind.
2978         * alloc.c (Fgarbage_collect): Use pop_message_unwind.
2980         * xdisp.c (pop_message_unwind): Renamed from push_message_unwind.
2982 2002-09-10  Stefan Monnier  <monnier@cs.yale.edu>
2984         * regex.c (DISCARD_FAILURE_REG_OR_COUNT): Delete.
2985         (CHECK_INFINITE_LOOP): Don't pop anything: just set `cycle' to 1.
2986         (re_match_2_internal): Be more careful with infinite loops.
2988 2002-09-10  Kim F. Storm  <storm@cua.dk>
2990         * macros.c (end_kbd_macro): New function.
2991         (Fend_kbd_macro): Use it.
2993         * macros.h (end_kbd_macro): Declare extern.
2995         * keyboard.c (Fdiscard_input): If defining keyboard macro,
2996         end and save it instead of discarding it.
2998 2002-09-09  Markus Rost  <rost@math.ohio-state.edu>
3000         * s/sol2-6.h: Fix typo.  Add comment.
3002 2002-09-09  Richard M. Stallman  <rms@gnu.org>
3004         * regex.c (regnum_t): Use signed int, not unsigned int.
3006         * s/sol2-6.h: New file.
3008         * s/sol2-5.h (UNEXEC): Definition deleted.
3010 2002-09-08  Kim F. Storm  <storm@cua.dk>
3012         * macros.c (executing_macro_index): Change type to EMACS_INT.
3013         (syms_of_macros): DEFVAR_INT it  (needed by kmacro).
3015         * macros.h (executing_macro_index): Change type to EMACS_INT.
3017 2002-09-06  Richard M. Stallman  <rms@gnu.org>
3019         * casetab.c (set_case_table): Make canon table point to eqv table.
3021 2002-09-06  Juanma Barranquero  <lektu@terra.es>
3023         * coding.c (syms_of_coding): Fix spacing.
3025         * composite.c (Fcompose_region_internal)
3026         (Fcompose_string_internal): Likewise.
3028         * data.c (Flsh): Likewise.
3030         * fontset.c (Fset_fontset_font): Likewise.
3032         * macfns.c (Fx_server_max_request_size): Likewise.
3034         * w16select.c (syms_of_win16select): Likewise.
3036         * w32select.c (syms_of_w32select): Likewise.
3038         * xselect.c (syms_of_xselect): Likewise.
3040 2002-09-05  Richard M. Stallman  <rms@gnu.org>
3042         * regex.c (set_image_of_range_1): In no-TRANSLATE case,
3043         call EXTEND_RANGE_TABLE and return a proper value.
3044         (set_image_of_range): Don't call set_image_of_range_1
3045         if no TRANSLATE or if range includes all of Latin-1.
3046         Only call it for the Latin-1 part of the range.
3047         For other cases, make two separate ranges,
3048         one for the original specified characters and one for
3049         their case-conversions.
3051 2002-09-04  Richard M. Stallman  <rms@gnu.org>
3053         * s/sol2-5.h (UNEXEC): Use unexsol.o.
3055         * window.c (displayed_window_lines): Correct for one-off bug
3056         in HEIGHT on non-window displays.
3058         * regex.c (set_image_of_range_1): New function.
3059         (set_image_of_range): Use set_image_of_range_1 for Latin-1.
3060         Return a value to indicate running out of memory.
3061         (SET_RANGE_TABLE_WORK_AREA): Check value from set_image_of_range.
3062         (extend_range_table_work_area): New subroutine.
3063         (EXTEND_RANGE_TABLE): Replaces EXTEND_RANGE_TABLE_WORK_AREA.
3064         Different calling conventions, and used from set_image_of_range{,_1}.
3065         (IMMEDIATE_QUIT_CHECK): Definitions moved.
3067 2002-09-04  Juanma Barranquero  <lektu@terra.es>
3069         * makefile.w32-in: All dependencies updated.
3071 2002-09-01  Richard M. Stallman  <rms@gnu.org>
3073         * unexsol.c: New file.
3075         * xfns.c (Qbox): Declare external, don't define.
3077         * xdisp.c (redisplay_window) <force-start case>:
3078         If point is on semi-visible last line, reposition
3079         it at previous line.
3081         * alloc.c (display_malloc_warning): Use display-warning.
3082         (malloc_warning_1): Function deleted.
3084         * alloc.c [ALLOC_DEBUG]: #undef INLINE.
3086         * lread.c (read1): Handle #! by skipping the line.
3088 2002-08-31  Richard M. Stallman  <rms@gnu.org>
3090         * Makefile.in (TEMACS_LDFLAGS): Renamed from ALL_LDFLAGS.
3091         Don't include LDFLAGS.
3092         (temacs): Pass LDFLAGS separately, and not via YMF_PASS_LDFLAGS.
3094 2002-08-31  Eli Zaretskii  <eliz@is.elta.co.il>
3096         * xdisp.c (get_window_cursor_type): Don't use x_highlight_frame
3097         member of x_display_info unless we compile for some window system.
3099 2002-08-31  Kim F. Storm  <storm@cua.dk>
3101         * xdisp.c (Valternate_cursor_type, Qalternate_cursor_type): Removed.
3102         (get_window_cursor_type): Don't use them.
3103         (syms_of_xdisp): Remove intern, staticpro, and defvar for them.
3105 2002-08-30  Kenichi Handa  <handa@etl.go.jp>
3107         * xdisp.c (get_next_display_element): Fix previous change.
3109 2002-08-30  Andrew Choi  <akochoi@shaw.ca>
3111         * macterm.c (expose_overlaps): New function (merge code from xterm.c).
3112         (expose_window): Use it to fix the display of overlapping
3113         rows (merge code from xterm.c).
3115         * macfns.c (Qbox): Add extern declaration.
3117 2002-08-30  Juanma Barranquero  <lektu@terra.es>
3119         * w32fns.c (Qbox): Make extern.
3120         (syms_of_w32fns): Remove initialization of Qbox.
3122 2002-08-30  Rune Kleveland  <runekl@viewpoint.no>  (tiny change)
3124         * xfns.c (Fx_open_connection): Fix error message.
3126 2002-08-30  Kim F. Storm  <storm@cua.dk>
3128         The following changes consolidates the handling of the cursor
3129         type in xdisp.c, moving duplicate code and functionality from
3130         xfns.c, xterm.c, w32fns.c, w32term.c, macfns.c, and macterm.c.
3132         * frame.h (enum text_cursor_kinds): Consolidated here.
3133         Added DEFAULT_CURSOR value.
3134         (struct frame) <desired_cursor, cursor_width>
3135         <blink_off_cursor, blink_off_cursor_width>: New fields.
3136         Consolidated from output_x, output_w32 and output_mac structs.
3137         (FRAME_DESIRED_CURSOR, FRAME_CURSOR_WIDTH, FRAME_BLINK_OFF_CURSOR)
3138         (FRAME_BLINK_OFF_CURSOR_WIDTH): Macros consolidated here.
3140         * xdisp.c (Qbar, Qhbar, Qbox, Qhollow, Vblink_cursor_alist):
3141         Variables consolidated here.
3142         (Valternate_cursor_type, Qalternate_cursor_type): New variables.
3143         (Vcursor_in_non_selected_windows): Renamed from
3144         cursor_in_non_selected_windows and changed to Lisp_Object.
3145         (syms_of_xdisp): Define and staticpro new and moved variables.
3146         (get_specified_cursor_type): Renamed from x_specified_cursor_type;
3147         consolidated here.  Recognize Qhollow setting.
3148         (set_frame_cursor_types): New function to set frame cursor types
3149         based on the frame parameters.
3150         (get_window_cursor_type): New function to calculate new cursor
3151         type and width for the specified window.  Based on duplicated
3152         code consolidated here.
3153         Enhancements: cursor-in-non-selected-windows may be a cursor type,
3154         check buffer-local alternate-cursor-type and blink-cursor-alist
3155         before using built-in blink off methods.
3157         * dispextern.h (cursor_in_non_selected_windows): Extern removed.
3159         * lisp.h (Qcursor_in_non_selected_windows): Extern removed.
3160         (get_specified_cursor_type, get_window_cursor_type)
3161         (set_frame_cursor_types): Added prototypes.
3163         * macfns.c (x_specified_cursor_type): Removed.
3164         (x_set_cursor_type): Use set_frame_cursor_types.
3165         (Qbar, Qbox): Removed.
3166         (syms_of_macfns): Don't intern or staticpro them.
3168         * macterm.c (x_specified_cursor_type): Remove prototype.
3169         (x_draw_bar_cursor): Use FRAME_CURSOR_WIDTH.
3170         (x_display_and_set_cursor): Use get_window_cursor_type.
3171         Remove unused local variables cursor_non_selected, active_cursor.
3172         Redraw cursor if hbar cursor width changes.
3173         (make_mac_frame): Set FRAME_DESIRED_CURSOR.
3175         * macterm.h (enum text_cursor_kinds): Removed.
3176         (struct output_mac) <current_cursor, desired_cursor, cursor_width>
3177         <blink_off_cursor, blink_off_cursor_width>: Members removed.
3178         (FRAME_DESIRED_CURSOR): Macro removed.
3180         * w32fns.c (Vblink_cursor_alist): Removed.
3181         (Qbar, Qhbar, Qbox, Qhollow): Removed.
3182         (syms_of_w32fns): Don't intern, staticpro, or define them.
3183         (x_specified_cursor_type): Removed.
3184         (x_set_cursor_type): Use set_frame_cursor_types.
3186         * w32term.c (x_specified_cursor_type): Remove prototype.
3187         (x_draw_bar_cursor): Use FRAME_CURSOR_WIDTH.
3188         (x_display_and_set_cursor): Use get_window_cursor_type.
3189         Remove unused local variables cursor_off_state.
3190         Redraw cursor if hbar cursor width changes.
3191         Changed all occurrences of w32_highlight_frame to x_highlight_frame.
3193         * w32term.h (enum text_cursor_kinds): Removed.
3194         (struct output_w32) <current_cursor, desired_cursor, cursor_width>
3195         <blink_off_cursor, blink_off_cursor_width>: Members removed.
3196         (FRAME_DESIRED_CURSOR, FRAME_CURSOR_WIDTH, FRAME_BLINK_OFF_CURSOR)
3197         (FRAME_BLINK_OFF_CURSOR_WIDTH): Macros removed.
3198         (struct w32_display_info) <x_highlight_frame>: Renamed member from
3199         w32_highlight_frame.
3201         * xfns.c (Vblink_cursor_alist): Removed.
3202         (Qbar, Qhbar, Qbox, Qhollow): Removed.
3203         (syms_of_xfns): Don't intern, staticpro, or define them.
3204         (x_specified_cursor_type): Removed.
3205         (x_set_cursor_type): Use set_frame_cursor_types.
3207         * xterm.c (x_specified_cursor_type): Remove prototype.
3208         (x_draw_bar_cursor): Use FRAME_CURSOR_WIDTH.
3209         (x_display_and_set_cursor): Use get_window_cursor_type.
3210         Remove unused local variables cursor_off_state.
3211         Redraw cursor if hbar cursor width changes.
3213         * xterm.h (enum text_cursor_kinds): Removed.
3214         (struct output_x) <current_cursor, desired_cursor, cursor_width>
3215         <blink_off_cursor, blink_off_cursor_width>: Members removed.
3216         (FRAME_DESIRED_CURSOR, FRAME_CURSOR_WIDTH, FRAME_BLINK_OFF_CURSOR)
3217         (FRAME_BLINK_OFF_CURSOR_WIDTH): Macros removed.
3218         (x_specified_cursor_type): Remove prototype.
3220 2002-08-28  Richard M. Stallman  <rms@gnu.org>
3222         * w32fns.c (x_set_cursor_type): Set FRAME_BLINK_OFF_CURSOR and
3223         FRAME_BLINK_OFF_CURSOR_WIDTH using defaults and Vblink_cursor_alist.
3224         (Vblink_cursor_alist): New variable.
3225         (syms_of_w32fns): Initialize and defvar it.
3226         (x_specified_cursor_type): Recognize Qbox for filled box.
3227         Exceptions are hollow boxes.
3228         (Qbox, Qhollow): New variables.
3229         (syms_of_w32fns): Initialize and staticpro them.
3231         * w32term.h (FRAME_BLINK_OFF_CURSOR, FRAME_BLINK_OFF_CURSOR_WIDTH):
3232         New macros.
3233         (struct w32_output): New fields blink_off_cursor,
3234         blink_off_cursor_width.
3235         (FRAME_CURSOR_WIDTH): New macro.
3237         * w32term.c (x_display_and_set_cursor): Use FRAME_BLINK_OFF_CURSOR
3238         and FRAME_BLINK_OFF_CURSOR_WIDTH for blinking cursor off.
3240         * w32term.c (x_display_and_set_cursor): Check FRAME_CURSOR_WIDTH
3241         for bar cursor.
3243         * w32term.c (expose_overlaps): New function.
3244         (expose_window): Use it to fix the display of overlapping rows.
3246 2002-08-28  Simon Josefsson  <jas@extundo.com>
3248         * xfns.c (Fx_open_connection): Improve help when X connection
3249         fails, xhost is insecure and xauth is better.
3251 2002-08-28  Juanma Barranquero  <lektu@terra.es>
3253         * makefile.w32-in: Add missing dependencies on w32term.h and
3254         composite.h.
3256         * emacs.c (USAGE1): Add missing newline.
3258 2002-08-27  Andrew Choi  <akochoi@shaw.ca>
3260         * s/darwin.h [HAVE_LIBNCURSES]: Define HAVE_TERMINFO.
3262 2002-08-27  Richard M. Stallman  <rms@gnu.org>
3264         * xfns.c (x_set_cursor_type): Set FRAME_BLINK_OFF_CURSOR and
3265         FRAME_BLINK_OFF_CURSOR_WIDTH using defaults and Vblink_cursor_alist.
3266         (Vblink_cursor_alist): New variable.
3267         (syms_of_xfns): Initialize and defvar it.
3268         (x_specified_cursor_type): Recognize Qbox for filled box.
3269         Exceptions are hollow boxes.
3270         (Qbox, Qhollow): New variables.
3271         (syms_of_xfns): Initialize and staticpro them.
3273         * xterm.h (FRAME_BLINK_OFF_CURSOR, FRAME_BLINK_OFF_CURSOR_WIDTH):
3274         New macros.
3275         (struct x_output): New fields blink_off_cursor, blink_off_cursor_width.
3277         * xterm.c (x_display_and_set_cursor): Use FRAME_BLINK_OFF_CURSOR
3278         and FRAME_BLINK_OFF_CURSOR_WIDTH for blinking cursor off.
3280         * emacs.c (main): Handle --script.
3281         (USAGE1): Mention --script.
3282         (standard_args): Define sort order for --script.
3284 2002-08-27  Gerd Moellmann  <gerd.moellmann@t-online.de>
3286         * xdisp.c (redisplay_updating_p): Variable removed.
3287         (inhibit_free_realized_faces, Qinhibit_free_realized_faces):
3288         New variables.
3289         (init_iterator): Don't free realized faces if
3290         inhibit_free_realized_faces is set.
3291         (redisplay_internal): Bind Qinhibit_free_realized_faces to nil.
3292         (syms_of_xdisp): DEFVAR_BOOL inhibit-free-realized-faces,
3293         initialize Qinhibit_free_realized_faces.
3295         * dispextern.h (PRODUCE_GLYPHS): Set inhibit_free_realized_faces
3296         when iterator is adding glyphs to a glyph matrix.
3298 2002-08-27  Kenichi Handa  <handa@etl.go.jp>
3300         * xdisp.c (get_next_display_element): In unibyte case, don't use
3301         octal form for such eight-bit characters that can be converted to
3302         multibyte char.
3304 2002-08-26  Kim F. Storm  <storm@cua.dk>
3306         * frame.c (make_terminal_frame) [CANNOT_DUMP]: Initialize foreground
3307         and background colors.  From Joe Buehler (tiny change).
3309 2002-08-26  Miles Bader  <miles@gnu.org>
3311         * bytecode.c (Fbyte_code): Fsub1 can GC, so protect it.
3313 2002-08-25  Andrew Choi  <akochoi@shaw.ca>
3315         * emacs.c (main): Call init_mac_osx_environment if HAVE_CARBON is
3316         defined instead of MAC_OSX.
3318         * s/darwin.h (select): Define select to sys_select only if
3319         HAVE_CARBON is defined.
3320         (HAVE_WORKING_VFORK): #undef it.  Define vfork to fork.
3321         (DONT_REOPEN_PTY): #def it.
3323         * macterm.c (XTread_socket): Remove code to call
3324         SendEventToEventTarget for keys with command modifiers when
3325         mac_command_key_is_meta is nil.
3327 2002-08-24  Andreas Schwab  <schwab@suse.de>
3329         * eval.c (Fdefvar): Fix last change.
3331 2002-08-23  Richard M. Stallman  <rms@gnu.org>
3333         * eval.c (Fdefvar, Fdefconst, Fdefvaralias):
3334         Record variables in load history as (defvar . VAR).
3335         (Fdefvar): Don't record in load history if no initial value.
3336         (Qdefvar): New variable.
3337         (syms_of_eval): Init and staticpro it.
3339         * lread.c (syms_of_lread): Doc fix.
3340         (build_load_history): Use Fmember to see if a definition
3341         is already in the Vload_history element.
3343         * process.c (Fstart_process): Remove /: from program name.
3345         * emacs.c (decode_env_path): Don't add /: if file name handler
3346         has a `safe-magic' property.
3348         * callproc.c (Fcall_process): Remove /: from program name.
3350 2002-08-23  Stefan Monnier  <monnier@cs.yale.edu>
3352         * regex.c (PATFETCH): Remove the translating fetch.
3353         (PATFETCH_RAW): Rename to PATFETCH.
3354         (set_image_of_range): New fun.
3355         (SET_RANGE_TABLE_WORK_AREA): Use it.
3356         (regex_compile): Don't translate the pattern chars so eagerly.
3357         Only do it when inserting an `exactn' bytecode or when handling
3358         a char-range.
3359         (mutually_exclusive_p): Avoid empty statement.
3361 2002-08-22  Kim F. Storm  <storm@cua.dk>
3363         * xdisp.c (redisplay_window): Do not `goto try_to_scroll' when we
3364         end up on a partially visible line; this reverts a specific part
3365         of the 2002-07-07 change by Richard M. Stallman to "fix" a nasty
3366         display error which has been reported several times now.
3367         However it introduces the problem that changes was supposed to fix.
3368         See my comments in the source if you want to debug this further.
3370 2002-08-20  Kenichi Handa  <handa@etl.go.jp>
3372         * abbrev.c (Fexpand_abbrev): Fix for the multibyte case.
3374 2002-08-19  Eli Zaretskii  <eliz@is.elta.co.il>
3376         * msdos.c (croak): Add `void' to definition.
3378         * sysdep.c [MSDOS] (request_sigio, unrequest_sigio):
3379         Don't define them, they are defined in msdos.c.
3381         * mem-limits.h [MSDOS]: Declare etext.
3383         * fileio.c (Ffile_name_directory) [DOS_NT]: Don't declare `beg'
3384         `const' since CORRECT_DIR_SEPS modifies its target.
3386 2002-08-19  Kim F. Storm  <storm@cua.dk>
3388         * keyboard.c (Fclear_this_command_keys): Added optional arg
3389         KEEP-RECORD to avoid clearing lossage when we just want to clear
3390         the current key sequence (kmacro needs this).
3392 2002-08-19  Kenichi Handa  <handa@localhost>
3394         * composite.c (run_composition_function): Call FUNC if it is fboundp.
3396         * composite.h (COMPOSITION_MODIFICATION_FUNC): If PROP is not a
3397         cons, return Qnil.
3399 2002-08-17  Richard M. Stallman  <rms@gnu.org>
3401         * s/sol2-5.h (BROKEN_SIGIO): Add #undef.
3403         * sysdep.c [!VMS]: Include sys/files.h.
3405         * editfns.c (save_restriction_restore): Defend from unchained marker.
3407         * buffer.c (overlays_at): Handle extending vec uniformly.
3408         (overlays_in): Handle extending vec from length 0 as in overlays_at.
3410 2002-08-15  Andrew Choi  <akochoi@shaw.ca>
3412         * mac.c (init_mac_osx_environment): New function.
3414         * emacs.c (main) [MAC_OSX]: Call init_mac_osx_environment.
3416 2002-08-14  Kim F. Storm  <storm@cua.dk>
3418         * macros.c (Fstart_kbd_macro): Added NO-EXEC argument to inhibit
3419         executing macro before appending to it (when used from Lisp).
3420         (Fexecute_kbd_macro): Added LOOPFUNC argument to supply function
3421         which is called prior to each iteration of macro (for kmacro.el).
3422         (Fend_kbd_macro, Fcall_last_kbd_macro): Likewise.
3424         * lisp.h (Fexecute_kbd_macro): Update prototype.
3426         * keyboard.c (Fcommand_execute): Update call to Fexecute_kbd_macro.
3428 2002-08-14  Kenichi Handa  <handa@etl.go.jp>
3430         * xselect.c (QUTF8_STRING): New variable.
3431         (symbol_to_x_atom): Pay attention to QUTF8_STRING.
3432         (x_atom_to_symbol): Likewise.
3433         (x_get_local_selection): New argument local_request.  If it is
3434         nonzero, call handler_fn with the second arg nil.
3435         (x_handle_selection_request): Call x_get_local_selection with
3436         local_request 0.
3437         (lisp_data_to_selection_data): Don't encode the string here.
3438         (Fx_get_selection_internal): Call x_get_local_selection with
3439         local_request 1.
3440         (syms_of_xselect): Intern and staticpro QUTF8_STRING.
3442         * xterm.c (x_term_init): Initialize dpyinfo->Xatom_UTF8_STRING.
3444         * xterm.h (struct x_display_info): New member Xatom_UTF8_STRING.
3446 2002-08-13  Richard M. Stallman  <rms@gnu.org>
3448         * minibuf.c (Fminibufferp): New function.
3449         (syms_of_minibuf): Defsubr it.
3450         (Fminibuffer_prompt_end): Handle non-minibuffers specially.
3452 2002-08-13  Gerd Moellmann  <gerd.moellmann@t-online.de>
3454         * coding.c (Funencodable_char_position): Lisp_Object/int mixup.
3456 2002-08-12  Richard M. Stallman  <rms@gnu.org>
3458         * syswait.h: Only the include of sys/wait.h tests HAVE_SYS_WAIT_H.
3459         [!VMS] (WCOREDUMP, WEXITSTATUS, WIFEXITED, WIFSTOPPED, WIFSIGNALED)
3460         (WSTOPSIG, WTERMSIG): Define each one independently if not defined
3461         already.
3463         * buffer.c (syms_of_buffer) <fill-column>: Doc fix.
3465 2002-08-11  Andrew Choi  <akochoi@shaw.ca>
3467         * macterm.c (XTmouse_position): Check wp with is_emacs_window.
3468         (Vmac_pass_command_to_system): New variable.
3469         (Vmac_pass_control_to_system): New variable.
3470         (do_mouse_moved): Check wp with is_emacs_window.
3471         (XTread_socket): Check window_ptr with is_emacs_window.
3472         Call FrontNonFloatingWindow instead of FrontWindow.  Send keydown
3473         events back to Mac Toolbox for processing, depending on values of
3474         Vmac_pass_command_to_system and Vmac_pass_control_to_system.
3475         (syms_of_macterm): DEFVAR_LISP Vmac_pass_command_to_system and
3476         Vmac_pass_control_to_system.
3478 2002-08-10  Kenichi Handa  <handa@etl.go.jp>
3480         * coding.c (unencodable_char_position): New function.
3481         (Funencodable_char_position): New function.
3482         (syms_of_coding): Defsubr Funencodable_char_position.
3484 2002-08-10  Andrew Choi  <akochoi@shaw.ca>
3486         * mac.c (sys_select) [MAC_OSX]: New function.
3488         * macterm.c (MakeMeTheFrontProcess): New function.
3489         (mac_initialize): Call MakeMeTheFrontProcess.
3491         * s/darwin.h: Define select to sys_select.
3493 2002-08-09  Richard M. Stallman  <rms@gnu.org>
3495         * keyboard.c (make_lispy_event): Test WINDOWSNT, not WINDOWS_NT.
3497 2002-08-09  Gerd Moellmann  <gerd.moellmann@t-online.de>
3499         * xdisp.c (forward_to_next_line_start): Return 0 when reaching the
3500         end of the buffer.
3502 2002-08-08  Ken Raeburn  <raeburn@mit.edu>
3504         * coding.c (Ffind_operation_coding_system): Fix Lisp_Object/int mixup.
3506         * puresize.h (BASE_PURESIZE): Increase to 910000.
3508 2002-08-08  Kenichi Handa  <handa@etl.go.jp>
3510         * coding.c (Ffind_operation_coding_system): For write-region, if
3511         VISIT is a filename, make it the target.
3513 2002-08-07  Richard M. Stallman  <rms@gnu.org>
3515         * alloc.c (mark_object): Detect long lists for debugging.
3516         (mark_object_loop_halt): New variable.
3518         * s/hpux10.h (C_SWITCH_SYSTEM): #undef it.
3520         * data.c (Fmake_variable_frame_local): Doc fix.
3522 2002-08-01  David Ponce  <david@dponce.com>
3524         * w32menu.c (local_heap, local_alloc, local_free): New macros.
3525         (malloc_widget_value, free_widget_value)
3526         (w32_free_submenu_strings): Use them.
3528         (push_submenu_start, push_submenu_end, push_left_right_boundary)
3529         (push_menu_pane, push_menu_item, single_keymap_panes)
3530         (single_menu_item, Fx_popup_menu, menubar_selection_callback)
3531         (single_submenu, set_frame_menubar)
3532         (w32_menu_show, w32_dialog_show): Use AREF, ASET, ASIZE.
3534         (Fx_popup_menu): Don't show pop up menu until preceding one is
3535         actually cleaned up.  Moved UNGCPRO outside #ifdef HAVE_MENUS block.
3537         * w32menu.c: Changes adapted from xmenu.c
3538         (set_frame_menubar): First parse all submenus,
3539         then make widget_value trees from them.
3540         Don't allocate any widget_value objects
3541         until we are done with the parsing.
3542         (parse_single_submenu): New function.
3543         (digest_single_submenu): New function.
3544         (single_submenu): Function deleted, replaced by those two.
3546 2002-08-04  Andrew Choi  <akochoi@shaw.ca>
3548         * macterm.c (XTread_socket): Check that FrontNonFloatingWindow
3549         returns a valid window pointer before proceeding for keyDown and
3550         autoKey events.
3552 2002-08-03  Andrew Choi  <akochoi@shaw.ca>
3554         * macterm.c (USE_CARBON_EVENTS): New macro.
3555         (macCtrlKey, macShiftKey, macMetaKey, macAltKey): New macros.
3556         (x_iconify_frame): Call CollapseWindow.
3557         (Vmac_reverse_ctrl_meta): New variable.
3558         (Vmac_wheel_button_is_mouse_2): New variable.
3559         (init_mac_drag_n_drop): New function.
3560         (mac_do_receive_drag): New function.
3561         (mac_handle_service_event): New function.
3562         (init_service_handler): New function.
3563         (mac_to_emacs_modifiers): New function.
3564         (mac_event_to_emacs_modifiers): New function.
3565         (mac_get_mouse_btn): New function.
3566         (mac_convert_event_ref): New function.
3567         (XTread_socket) [USE_CARBON_EVENTS]: Call ReceiveNextEvent,
3568         SendEventToEventTarget, mac_event_to_emacs_modifiers, and
3569         mac_get_mouse_btn.
3570         (mac_initialize): Call init_mac_drag_n_drop and init_service_handler.
3572         * keyboard.c: Define Qmouse_wheel, mouse_wheel_syms, and
3573         lispy_mouse_wheel_names for MAC_OSX as well as for WINDOWS_NT.
3574         (kbd_buffer_get_event): Set used_mouse_menu for MENU_BAR_EVENT and
3575         TOOL_BAR_EVENT for MAC_OS as well.
3576         (make_lispy_event): Handle MOUSE_WHEEL_EVENT for MAC_OSX as well
3577         as for WINDOWS_NT.
3578         (syms_of_keyboard): Initialize Qmouse_wheel for MAC_OSX.
3580         * termhooks.h (event_kind): Define MOUSE_WHEEL_EVENT also for MAC_OSX.
3582 2002-08-03  Gerd Moellmann  <gerd.moellmann@t-online.de>
3584         * xdisp.c (forward_to_next_line_start): Fix a condition that
3585         lead to a newline being skipped.
3587 2002-08-02  Andrew Choi  <akochoi@shaw.ca>
3589         * mac.c (syms_of_mac): Defsubr Sx_selection_exists_p.
3591 2002-08-01  Richard M. Stallman  <rms@gnu.org>
3593         * Makefile.in (SOME_MACHINE_OBJECTS): Add fontset.o.
3595 2002-07-31  Andrew Choi  <akochoi@shaw.ca>
3597         * macfns.c: #undef init_process before #define-ing it.
3599         * s/darwin.h: Define MAC_OS, SYMS_SYSTEM, and OTHER_FILES only if
3600         HAVE_CARBON is defined.
3602 2002-07-31  Richard M. Stallman  <rms@gnu.org>
3604         * xmenu.c (set_frame_menubar): First parse all submenus,
3605         then make widget_value trees from them.
3606         Don't allocate any widget_value objects
3607         until we are done with the parsing.
3608         (parse_single_submenu): New function.
3609         (digest_single_submenu): New function.
3610         (single_submenu): Function deleted, replaced by those two.
3612 2002-07-30  Juanma Barranquero  <lektu@terra.es>
3614         * w32proc.c (syms_of_ntproc): Fix docstring of
3615         `w32-get-true-file-attributes'.
3617 2002-07-28  Richard M. Stallman  <rms@gnu.org>
3619         * s/hpux8.h (HPUX8): Define this before including hpux.h.
3620         (HAVE_SYS_WAIT_H): #define deleted; we let Autoconf decide.
3622         * s/hpux.h (HAVE_SYS_WAIT_H): The #undef is conditional on HPUX8.
3624         * keyboard.c (make_lispy_event):
3625         Use #ifdef to test USE_TOOLKIT_SCROLL_BARS.
3626         Explicitly clear up_modifier in event->modifiers.
3628 2002-07-27  Richard M. Stallman  <rms@gnu.org>
3630         * xterm.h (FRAME_CURSOR_WIDTH): New macro.
3632         * xterm.c (x_display_and_set_cursor): Check FRAME_CURSOR_WIDTH
3633         for bar cursor.
3635 2002-07-26  Kenichi Handa  <handa@etl.go.jp>
3637         * coding.c (detect_coding_iso2022): While checking a byte sequence
3638         for CODING_CATEGORY_MASK_ISO_8_2, if we read one extra byte, check
3639         it in the normal loop.
3641 2002-07-24  Gerd Moellmann  <gerd.moellmann@t-online.de>
3643         * xterm.c (expose_overlaps): New function.
3644         (expose_window): Use it to fix the display of overlapping rows.
3646         * xdisp.c (unwind_redisplay): Clear redisplay_updating_p.
3648 2002-07-23  Ken Raeburn  <raeburn@gnu.org>
3650         * lisp.h (XPNTR): Use NO_UNION_TYPE version for union as well,
3651         since it only depends on XUINT.
3653         * m/alpha.h (BITS_PER_LONG, BITS_PER_EMACS_INT, EMACS_INT,
3654         EMACS_UINT, SPECIAL_EMACS_INT, DATA_SEG_BITS,
3655         PNTR_COMPARISON_TYPE, VALBITS, MARKBIT, XINT, XUINT, XPNTR):
3656         Macros deleted.
3658         * mem-limits.h (start_of_data): If DATA_START is defined, prefer
3659         its value over other approaches.
3660         * sysdep.c (start_of_data): Don't define the function if a macro
3661         form has been defined.
3663 2002-07-23  Gerd Moellmann  <gerd.moellmann@t-online.de>
3665         * xdisp.c (redisplay_updating_p): New variable.
3666         (init_iterator): Don't free realized faces when
3667         redisplay_updating_p is set.
3668         (redisplay_internal): Set redisplay_updating_p while updating
3669         the display.
3671 2002-07-23  Richard M. Stallman  <rms@gnu.org>
3673         * editfns.c (Fmessage): Treat "" like nil.
3675 2002-07-23  Kenichi Handa  <handa@etl.go.jp>
3677         * xdisp.c (face_before_or_after_it_pos):
3678         Call FETCH_MULTIBYTE_CHAR with byte postion, not char position.
3680 2002-07-22  Juanma Barranquero  <lektu@terra.es>
3682         * callproc.c (init_callproc) [DOS_NT]:
3683         Initialize Vshared_game_score_directory to nil.
3684         (syms_of_callproc) [DOS_NT]: Likewise.
3686 2002-07-22  Gerd Moellmann  <gerd.moellmann@t-online.de>
3688         * xdisp.c (display_line): Replace an abort with xassert.
3690 2002-07-21  Richard M. Stallman  <rms@gnu.org>
3692         * xdisp.c (redisplay_window): Don't test BEG_UNCHANGED
3693         and END_UNCHANGED when setting buffer_unchanged_p.
3694         Use current_matrix_up_to_date_p to decide whether to use
3695         try_cursor_movement.
3697         * config.in (HAVE_SHARED_GAME_DIR): Undef deleted.
3699         * epaths.in (PATH_GAME): New macro, edited by ../Makefile.in.
3701         * callproc.c (init_callproc): Set up Vshared_game_score_directory.
3702         Set to nil if dir does not exist.
3703         (syms_of_callproc): Init unconditionally and simply.
3705         * buffer.c (Fbuffer_list): Doc fix.
3707 2002-07-21  Ken Raeburn  <raeburn@gnu.org>
3709         * sysdep.c (end_of_text, end_of_data): Unused functions deleted.
3711         * buffer.c (mmap_realloc): When shrinking, make sure number of
3712         pages to unmap is rounded towards zero.
3714         * m/mips-siemens.h (XSETUINT, XSETPNTR): Unused macros deleted.
3715         (XSETINT): Deleted.
3717         * m/att3b.h (XINT): Don't define.
3718         (VALBITS, VALMASK, XTYPE): Deleted.
3719         (DATA_SEG_BITS): Define.
3720         * m/gec63.h (VALBITS, VALAMASK, XTYPE, XSETTYPE, XPNTR, XSET,
3721         ARRAY_MARK_FLAG): Deleted.
3722         (DATA_SEG_BITS): Define.
3723         * m/pfa50.h (VALBITS, VALMASK, XTYPE): Deleted.
3724         (DATA_SEG_BITS): Define.
3726 2002-07-20  Richard M. Stallman  <rms@gnu.org>
3728         * print.c (print_error_message): New args CONTEXT and CALLER.
3729         Calls changed.
3731         * lisp.h (print_error_message): Declare new args.
3733         * keyboard.c (cmd_error_internal): Pass Vsignaling_function
3734         and CONTEXT to print_error_message, don't print them here.
3735         For a Quit, don't use Vsignaling_function.
3736         Call message_log_maybe_newline.
3738         * Makefile.in (xsmfns.o): Don't depend on lisp.h.
3740 2002-07-20  Kim F. Storm  <storm@cua.dk>
3742         * xdisp.c (redisplay_window): Test MODIFF to set buffer_unchanged_p.
3744 2002-07-19  Ken Raeburn  <raeburn@gnu.org>
3746         * bytecode.c (struct byte_stack): Pointers into byte string now
3747         point to const.
3748         * callproc.c (Fcall_process): Make NEW_ARGV array hold pointer to
3749         const.
3750         * charset.h (BCOPY_SHORT): Source pointer now points to const.
3751         * coding.c (encode_eol, detect_coding, detect_eol):
3752         (decode_coding, encode_coding, detect_coding_system):
3753         Source strings now treated as const.
3754         (decode_coding_string, encode_coding_string): Use STRING_COPYIN to
3755         modify Lisp string contents.
3756         * coding.h (decode_coding, encode_coding, detect_coding,
3757         detect_eol): Declarations updated.
3758         * composite.c (compose_chars_in_text): Treat Lisp string contents
3759         as const.
3760         * dispnew.c (safe_bcopy): Source pointer now points to const.
3761         * lisp.h (STRING_COPYIN): New macro.
3762         (detect_coding_system, safe_bcopy, temp_output_buffer_setup):
3763         (internal_with_output_to_temp_buffer): Declarations updated.
3764         * print.c (temp_output_buffer_setup):
3765         (internal_with_output_to_temp_buffer): Buffer name argument is now
3766         pointer to const.
3767         * sound.c (struct sound_device): Function pointer field "write"
3768         buffer argument now points to const.
3769         (vox_write): Buffer argument points to const.
3770         * syntax.c (Fstring_to_syntax, skip_chars): Treat Lisp string
3771         contents as const.
3772         * sysdep.c (emacs_write): Buffer pointer now const.
3773         * term.c (encode_terminal_code): Buffer pointer now const.
3774         * xfaces.c (may_use_scalable_font_p): Argument now points to const.
3775         (x_face_list_fonts, x_update_menu_appearance):
3776         (hash_string_case_insensitive): Treat Lisp string contents as const.
3778 2002-07-19  Juanma Barranquero  <lektu@terra.es>
3780         * fileio.c (Ffile_name_as_directory): Fix argument name in docstring.
3781         (file_name_as_directory): Use literal '/' instead of DIRECTORY_SEP.
3783         * xdisp.c (syms_of_xdisp): Remove redundant deprecation info.
3785         * fileio.c (syms_of_fileio): Likewise.
3787 2002-07-18  Richard M. Stallman  <rms@gnu.org>
3789         * data.c (Fdefalias): Doc fix.
3791 2002-07-17  Dave Love  <fx@gnu.org>
3793         * intervals.h (text_property_stickiness): Use P_.
3795         * ccl.c: Remove `emacs' conditionals.
3796         (ccl_backtrace_table): Fix size spec.
3797         (ccl_driver): Fix type errors.
3799 2002-07-16  Ken Raeburn  <raeburn@gnu.org>
3801         * alloc.c (xstrdup, make_string, make_unibyte_string)
3802         (make_multibyte_string, build_string): String pointer args now
3803         point to const.
3804         * charset.c (find_charset_in_text, c_string_width):
3805         (chars_in_text, multibyte_chars_in_text, parse_str_as_multibyte):
3806         * fileio.c (report_file_error):
3807         * insdel.c (copy_text, count_size_as_multibyte, insert_1):
3808         (count_combining_before, count_combining_after, insert_1_both):
3809         (insert, insert_and_inherit, insert_string):
3810         (insert_before_markers, insert_before_markers_and_inherit):
3811         * lread.c (intern, oblookup, hash_string):
3812         * minibuf.c (temp_echo_area_glyphs):
3813         * search.c (fast_c_string_match_ignore_case):
3814         * sysdep.c (emacs_open, set_file_times):
3815         * xfaces.c (xstricmp):
3816         * xdisp.c (store_frame_title, string_char_and_length):
3817         (message_dolog, message2, message2_nolog, set_message): Likewise.
3818         (set_message_1): Cast message string argument to const pointer.
3819         * editfns.c (general_insert_function): Insertion function now
3820         takes pointer to const for input data.
3821         * charset.h (find_charset_in_text, c_string_width):
3822         (parse_str_as_multibyte): Declarations updated.
3823         * dispextern.h (xstricmp): Declaration updated.
3824         * lisp.h (chars_in_text, multibyte_chars_in_text, copy_text):
3825         (count_size_as_multibyte, count_combining_before):
3826         (count_combining_after, insert_1, insert_1_both, message_dolog):
3827         (insert, insert_and_inherit, insert_before_markers)
3828         (insert_before_markers_and_inherit, set_message, message2):
3829         (message2_dolog, build_string, make_string, make_unibyte_string):
3830         (make_multibyte_string, intern, oblookup, report_file_error):
3831         (fast_c_string_match_ignore_case, temp_echo_area_glyphs):
3832         (emacs_open, xstrdup): Declarations updated.
3833         * systime.h (set_file_times): Declaration updated.
3835         * charset.c (find_charset_in_text, lisp_string_width): Use const
3836         for pointer to lisp string data.
3837         * charset.h (FETCH_STRING_CHAR_ADVANCE):
3838         (FETCH_STRING_CHAR_ADVANCE_NO_CHECK):
3839         * coding.c (Ffind_coding_systems_region_interval):
3840         * fileio.c (Ffile_name_directory, Ffile_name_nondirectory):
3841         (Fmake_directory_internal, Fdelete_directory):
3842         (Ffile_name_absolute_p, Fwrite_region, double_dollars):
3843         * fontset.c (font_family_registry, fs_query_fontset):
3844         (list_fontsets):
3845         * frame.c (Fframe_parameter):
3846         * keyboard.c (cmd_error_internal):
3847         * keymap.c (Fdescribe_buffer_bindings):
3848         * lread.c (complete_filename_p, openp):
3849         * minibuf.c (Fminibuffer_complete_word):
3850         * xdisp.c (string_pos_nchars_ahead, init_from_display_pos):
3851         (face_before_or_after_it_pos, next_element_from_string):
3852         (get_overlay_arrow_glyph_row, display_mode_element):
3853         (decode_mode_spec_coding):
3854         * xterm.c (same_x_server): Likewise.
3856         * buffer.c (reset_buffer_local_variables): Delete "#if 0"
3857         settings of non-existent fields.
3859         * editfns.c (Fstring_to_char): Don't use XSTRING/XSETSTRING to
3860         copy a lisp value.
3862         * lread.c (Fintern_soft): Use string macros instead of
3863         Lisp_String fields.
3864         * keyboard.c (echo_char, parse_modifiers_uncached):
3865         (parse_solitary_modifier, Fexecute_extended_command): Likewise.
3866         * textprop.c (validate_interval_range, interval_of): Likewise.
3868         * fontset.c (Fset_fontset_font): Use SDATA instead of XSTRING()->data.
3870         * charset.h (FETCH_STRING_CHAR_ADVANCE)
3871         (FETCH_STRING_CHAR_ADVANCE_NO_CHECK): Use SBYTES instead of
3872         XSTRING()->size_byte.
3874         * lisp.h (SDATA, SREF): Produce rvalue.
3875         (SSET): New macro.
3876         * alloc.c (make_event_array): Use SSET for storing into a string.
3877         * buffer.c (Fother_buffer): Use SREF when retrieving a byte from
3878         a string.
3879         * casefiddle.c (casify_object): Use SSET.
3880         * charset.h (FETCH_STRING_CHAR_ADVANCE)
3881         (FETCH_STRING_CHAR_ADVANCE_NO_CHECK): Use SDATA when getting
3882         address of string contents.
3883         * data.c (Faref): Use SDATA.
3884         (Faset): Use SDATA, SSET.
3885         * dired.c (directory_files_internal): Use SSET.
3886         * fileio.c (Fmake_symbolic_link, Fexpand_file_name): Use SSET.
3887         (Fread_file_name): Use SREF, SSET.
3888         * fns.c (concat): Use SSET.
3889         (concat, Fdelete): Use SDATA.
3890         * insdel.c (insert_from_string_1): Use SDATA.
3891         * keyboard.c (Fevent_convert_list): Use SREF.
3892         * lread.c (Fload): Use SDATA, SSET.
3893         * macfns.c (validate_x_resource_name): Use SSET.
3894         * process.c (status_message): Use SSET.
3895         * search.c (wordify): Use SDATA.
3896         (Freplace_match): Use SREF.
3897         * w32fns.c (validate_x_resource_name): Use SSET.
3898         * xfns.c (validate_x_resource_name): Use SSET.
3899         * xterm.c (x_catch_errors, x_clear_errors): Use SSET.
3901 2002-07-16  Richard M. Stallman  <rms@gnu.org>
3903         * s/hpux11.h (USG_SUBTTY_WORKS): Defined.
3905         * xdisp.c (reconsider_clip_changes):
3906         Don't test prevent_redisplay_optimizations_p.
3907         (redisplay_internal): Test prevent_redisplay_optimizations_p
3908         along with clip_changed in some cases.
3909         (try_window_id): Likewise.
3910         (redisplay_window): New local var buffer_unchanged_p.
3912         * keyboard.c (cmd_error) [HAVE_X_WINDOWS]: Maybe call cancel_houglass.
3914         * process.c (create_process): Test USG_SUBTTY_WORKS.
3915         (process_send_signal): Clean up handling of GID.
3916         Detect errors in ioctls meant to set GID.
3918         * window.c (temp_output_buffer_show):
3919         Don't set prevent_redisplay_optimizations_p.
3921 2002-07-15  Juanma Barranquero  <lektu@terra.es>
3923         * eval.c (Fdefvaralias): Add docstring argument.
3925 2002-07-15  Ken Raeburn  <raeburn@gnu.org>
3927         * lisp.h (STRING_INTERVALS): Produce rvalue.
3928         (STRING_SET_INTERVALS): New macro.
3929         * buffer.c (Fget_buffer_create, Fmake_indirect_buffer): Use it.
3930         * fns.c (Fstring_as_multibyte): Likewise.
3931         * intervals.c (balance_possible_root_interval, delete_interval)
3932         (create_root_interval, copy_intervals_to_string): Likewise.
3933         * textprop.c (set_text_properties): Likewise.  Use NULL_INTERVAL
3934         instead of 0.
3936 2002-07-14  Ken Raeburn  <raeburn@gnu.org>
3938         * lisp.h (STRING_SET_CHARS): New macro.
3939         (SCHARS, SBYTES): Produce rvalues.
3940         * dired.c (directory_files_internal): Use STRING_SET_CHARS.
3941         * fns.c (concat): Likewise.
3942         * lread.c (read_vector): Likewise.
3944         * lisp.h (SMBP): Deleted.  All uses changed to STRING_MULTIBYTE.
3945         (STRING_SET_UNIBYTE): New macro.
3946         (SET_STRING_BYTES): Deleted.  Callers (all of which supplied a
3947         length of -1) changed to use STRING_SET_UNIBYTE.
3948         * abbrev.c, alloc.c, buffer.c, bytecode.c, callint.c, callproc.c,
3949         casefiddle.c, category.c, ccl.c, charset.c, charset.h, coding.c,
3950         composite.c, data.c, dired.c, dispnew.c, disptab.h, doc.c,
3951         dosfns.c, editfns.c, emacs.c, eval.c, fileio.c, filelock.c, fn.c,
3952         fontset.c, frame.c, indent.c, insdel.c, intervals.c, keyboard.c,
3953         keymap.c, lread.c, mac.c, macfns.c, macmenu.c, macterm.c,
3954         minibuf.c, msdos.c, print.c, process.c, search.c, sound.c,
3955         sunfns.c, syntax.c, syntax.h, sysdep.c, textprop.c, undo.c,
3956         w16select.c, w32.c, w32fns.c, w32menu.c, w32proc.c, w32select.c,
3957         w32term.c, window.c, xdisp.c, xfaces.c, xfns.c, xmenu.c,
3958         xselect.c, xsmfns.c, xterm.c: Most uses of XSTRING combined with
3959         STRING_BYTES or indirection changed to SCHARS, SBYTES,
3960         STRING_INTERVALS, SREF, SDATA; explicit size_byte references left
3961         unchanged for now.
3963 2002-07-13  Kim F. Storm  <storm@cua.dk>
3965         * keyboard.c (command_loop_1): Invert check on Vmemory_full.
3967 2002-07-12  Richard M. Stallman  <rms@gnu.org>
3969         * fileio.c (Fwrite_region): Doc fix.
3971         * print.c (print_error_message): Don't handle Vsignaling_function here.
3973         * keyboard.c (cmd_error_internal): Handle Vsignaling_function here.
3974         (command_loop_1): Avoid certain actions after memory-full error.
3976         * eval.c (Fsignal): Don't call cancel_hourglass.
3977         For a memory-full error, don't call Vsignal_hook_function
3978         and don't set Vsignaling_function.
3980         * process.c (process_send_signal): Add abort call.
3982 2002-07-11  Markus Rost  <rost@math.ohio-state.edu>
3984         * keymap.c (Fkey_binding): Fix typo.
3986 2002-07-11  Richard M. Stallman  <rms@gnu.org>
3988         * alloc.c (Vmemory_full): New variable.
3989         (Vmemory_signal_data): Renamed from memory_signal_data.
3990         Uses changed.
3991         (syms_of_alloc): Defvar them.
3992         (memory_full, buffer_memory_full): Set Vmemory_full.
3994         * lisp.h (Vmemory_full): Add declaration.
3995         (current_column, indented_beyond_p): Change declaration.
3997         * indent.c (last_known_column): Declare as double, not float.
3998         (current_column, current_column_1, string_display_width)
3999         (position_indentation): Return `double'.
4000         (indented_beyond_p): Arg `column' is `double'.  Callers changed.
4002         * xdisp.c (message_dolog): Do nothing if Vmemory_full is non-nil.
4003         (back_to_previous_visible_line_start)
4004         (reseat_at_next_visible_line_start, next_element_from_buffer):
4005         Use `double', not `float', when calling indented_beyond_p.
4007         * s/hpux11.h (BROKEN_SA_RESTART): Defined.
4009         * sysdep.c (sys_signal): Test BROKEN_SA_RESTART.
4011 2002-07-11  Juanma Barranquero  <lektu@terra.es>
4013         * alloc.c, buffer.c, bytecode.c, callint.c, callproc.c, coding.c,
4014         * composite.c, dired.c, dispnew.c, editfns.c, emacs.c, eval.c,
4015         * fileio.c, fns.c, insdel.c, keyboard.c, keymap.c, lread.c, macfns.c,
4016         * macmenu.c, macros.c, minibuf.c, print.c, process.c, sound.c,
4017         * textprop.c, w32fns.c, w32menu.c, window.c, xfaces.c, xfns.c,
4018         * xmenu.c, xselect.c, xterm.c: Use SPECPDL_INDEX wherever makes sense.
4020 2002-07-10  Juanma Barranquero  <lektu@terra.es>
4022         * lisp.h (SPECPDL_INDEX): Rename from BINDING_STACK_SIZE. All callers
4023         changed.
4025 2002-07-09  Stefan Monnier  <monnier@cs.yale.edu>
4027         * data.c (Fdefalias): Add an optional `docstring' argument.
4028         (set_internal, Fsetq_default): Use XCAR/XCDR.
4030         * composite.c (HASH_VALUE, HASH_KEY):
4031         * ccl.c (HASH_VALUE): Remove (it's in lisp.h now).
4033 2002-07-09  Kenichi Handa  <handa@etl.go.jp>
4035         * callproc.c (Fcall_process): Fix previous change.
4037 2002-07-07  Stefan Monnier  <monnier@cs.yale.edu>
4039         * minibuf.c (Ftry_completion, Fall_completions, Ftest_completion):
4040         Add support for hash-tables.
4041         (Ftry_completion): Return t even if the string appears multiple times.
4043         * fns.c (Fnconc): Use XCDR.
4044         (Fprovide): Use CONSP and XCDR.
4045         (HASH_KEY, HASH_VALUE, HASH_NEXT, HASH_HASH, HASH_INDEX)
4046         (HASH_TABLE_SIZE): Delete: moved to lisp.h.
4047         (Fmake_hash_table): Accept `:size nil'.
4048         (Fmakehash): Delete: moved to subr.el.
4049         (syms_of_fns): Don't defsubr makehash.
4051         * lisp.h (HASH_KEY, HASH_VALUE, HASH_NEXT, HASH_HASH, HASH_INDEX)
4052         (HASH_TABLE_SIZE): Move from fns.c.
4054 2002-07-07  Richard M. Stallman  <rms@gnu.org>
4056         * xdisp.c (make_cursor_line_fully_visible): Don't try short scrolls.
4057         Instead just return 0 when there is something to be done.
4058         (try_scrolling): If make_cursor_line_fully_visible returns 0,
4059         retry scrolling as if cursor were off the bottom.
4060         (try_cursor_movement): If make_cursor_line_fully_visible returns 0,
4061         return CURSOR_MOVEMENT_MUST_SCROLL.
4062         (redisplay_window): If make_cursor_line_fully_visible returns 0,
4063         go to try_to_scroll.
4065         * buffer.c (Fbuffer_local_value): Store current value into its binding
4066         so we get the up-to-date value for the binding that is loaded.
4068         * eval.c (Fdefmacro): Doc fix.
4070 2002-07-05  Dave Love  <fx@gnu.org>
4072         * keyboard.c (read_key_sequence): Set initial_idleness_start_time
4073         correctly.
4075         * ccl.c (Vtranslation_hash_table_vector, GET_HASH_TABLE)
4076         (HASH_VALUE, CCL_LookupIntConstTbl, CCL_LookupCharConstTbl): New.
4077         (ccl_driver): Add cases for CCL_LookupIntConstTbl,
4078         CCL_LookupCharConstTbl.
4079         (syms_of_ccl): Defvar translation-hash-table-vector.
4081 2002-07-05  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
4083         * xdisp.c: Remove unused variable `face'.
4085 2002-07-04  Juanma Barranquero  <lektu@terra.es>
4087         * keyboard.c (post_command_idle_hook): Remove redundant (and inexact)
4088         obsolescence information.
4090 2002-07-03  Andrew Choi  <akochoi@shaw.ca>
4092         * macterm.c (x_list_fonts): Fix comment.  Cache fonts matching
4093         pattern.  Search cache first.
4094         (init_font_name_table): Also add entry for jisx0201.1976-0 coding
4095         for Japanese font.
4096         (XLoadQueryFont): Use it.
4098 2002-07-02  Richard M. Stallman  <rms@gnu.org>
4100         * keymap.c (Fdefine_key): Doc fix.
4102         * xterm.c (x_term_init): Turn off polling around XtOpenDisplay.
4104 2002-07-02  Juanma Barranquero  <lektu@terra.es>
4106         * keymap.c (syms_of_keymap): Fix typo.
4108 2002-07-01  Andrew Choi  <akochoi@shaw.ca>
4110         * s/darwin.h: Define POSIX_SIGNALS.
4112         * macterm.c (do_ae_open_documents) [MAC_OSX]: Call FSpMakeFSRef
4113         and FSRefMakePath to convert FSSpec returned with Apple Event to
4114         Posix pathname.
4115         (mac_initialize) [TARGET_API_MAC_CARBON]:
4116         Call init_required_apple_events and disable the `Quit' menu item
4117         provided automatically by the Carbon Toolbox.
4119 2002-07-01  Dave Love  <fx@gnu.org>
4121         * keyboard.c (kbd_buffer_store_event): Fix interrupt_signal decl
4122         for K&R.
4124         * xterm.c: Fix prototype for K&R.
4126         * term.c (costs_set): Declare static, non-initialized for pcc.
4128 2002-07-01  Richard M. Stallman  <rms@gnu.org>
4130         * keyboard.c (timer_last_idleness_start_time): New variable.
4131         (timer_start_idle): Set that.
4132         (read_key_sequence): Use that to reset timer_idleness_start_time
4133         to previous value.
4135         * window.c (Frecenter): With arg, set optional_new_start.
4137         * xdisp.c (redisplay_internal): Make optional_new_start really work.
4139         * minibuf.c (Fminibuffer_complete_and_exit): Move to end of
4140         buffer for completion.
4142 2002-06-29  Ken Raeburn  <raeburn@gnu.org>
4144         * xdisp.c (store_mode_line_string): Lisp_Object/int mixup.
4146 2002-06-28  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
4148         * keyboard.c (readable_filtered_events): New function that filters
4149         FOCUS_IN_EVENT depending on parameter.
4150         (readable_events): Calls readable_filtered_events, not filtering
4151         FOCUS_IN_EVENT.
4152         (get_filtered_input_pending): New function, filtering parameter passed
4153         to readable_filtered_events.
4154         (get_input_pending): Calls get_filtered_input_pending, not filtering
4155         FOCUS_IN_EVENT.
4156         (Finput_pending_p): Calls get_filtered_input_pending, DO filter
4157         FOCUS_IN_EVENT.
4159         * xterm.h (struct x_output): Add focus_state.
4161         * xterm.c (x_focus_changed): New function.
4162         (x_detect_focus_change): New function.
4163         (XTread_socket): Call x_detect_focus_change for FocusIn/FocusOut
4164         EnterNotify and LeaveNotify to track X focus changes.
4166 2002-06-28  Andreas Schwab  <schwab@suse.de>
4168         * lisp.h: Remove duplicate declaration of code_convert_string_norecord.
4170 2002-06-27  Kim F. Storm  <storm@cua.dk>
4172         * xdisp.c: (mode_line_string_list, mode_line_string_face)
4173         (mode_line_string_face_prop): New variables.
4174         (store_mode_line_string): New function.
4175         (display_mode_element): Use store_mode_line_string to
4176         add mode-line string elements to mode_line_string_list
4177         when mode_line_string_list is non-nil.
4178         (Fformat_mode_line): Now returns propertized string by
4179         default.  New arg NO-PROPS to ignore properties.
4180         (decode_mode_spec): Only add two dashes for %- in propertized
4181         mode-line string.
4182         (syms_of_xdisp): Init and staticpro mode_line_string_list.
4184 2002-06-27  Stefan Monnier  <monnier@cs.yale.edu>
4186         * minibuf.c (minibuffer_completion_contents): Add return type.
4188 2002-06-27  Juanma Barranquero  <lektu@terra.es>
4190         * charset.c (Fchar_bytes): Remove obsolescence info from docstring.
4192 2002-06-26  Juanma Barranquero  <lektu@terra.es>
4194         * fileio.c (read_file_name_cleanup): Add missing return.
4196 2002-06-26  Richard M. Stallman  <rms@gnu.org>
4198         * window.c (Frecenter): Don't set force_start flag.
4200         * minibuf.c (do_completion, Fminibuffer_complete_word)
4201         (Fminibuffer_completion_help): Complete just the text before point.
4202         (minibuffer_completion_contents): New function.
4204         * buffer.c (Fbury_buffer): Use frames_discard_buffer.
4206         * frame.c (frames_bury_buffer): Function deleted.
4208 2002-06-25  Miles Bader  <miles@gnu.org>
4210         * callint.c (Fcall_interactively): When checking to see if doprnt hit
4211         the end of callint_message, allow for a terminating '\0'.
4213 2002-06-24  Juanma Barranquero  <lektu@terra.es>
4215         * w32select.c: Include composite.h
4217         * w16select.c: Likewise.
4219 2002-06-24  Kenichi Handa  <handa@etl.go.jp>
4221         * callproc.c (Fcall_process): If code detection is necessary,
4222         call detect_coding directly here.
4224         * coding.c (detect_eol): Preserve coding->cmp_data.
4226         * w16select.c (Fw16_get_clipboard_data):
4227         * w32fns.c (w32_to_x_font):
4228         * w32select.c (Fw32_get_clipboard_data):
4229         * xselect.c (selection_data_to_lisp_data):
4230         * xterm.c (XTread_socket): Disable composition handling.
4232 2002-06-24  Stefan Monnier  <monnier@cs.yale.edu>
4234         * print.c (temp_output_buffer_setup): Kill all local variables.
4236 2002-06-22  Stefan Monnier  <monnier@cs.yale.edu>
4238         * lread.c (Fread): Remove redundant and imprecise declaration.
4240         * xfns.c (check_x_display_info): Use check_x_frame.
4242         * .gdbinit (xprintsym): Use the new `xname' field.
4243         (xsymbol): Use it.
4245 2002-06-22  Jason Rumney  <jasonr@gnu.org>
4247         * w32fns.c (file_dialog_callback): New function.
4248         (Fx_file_dialog): Allow selecting directories as well as files.
4250 2002-06-21  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
4252         * m/pmax.h (START_FILES): Define START_FILES for NetBSD and
4253         OpenBSD. Add support for mipseb-*-netbsd* machines.
4255 2002-06-17  Andrew Choi  <akochoi@shaw.ca>
4257         * macterm.c (mac_scroll_area): Set foreground and backcolor to
4258         black and white before scrolling.  Restore frame background and
4259         foreground color after scrolling.
4260         (do_window_update): Call XClearWindow before calling expose_frame.
4261         (make_mac_frame): Don't set FRAME_BACKGROUND_PIXEL and
4262         FRAME_FOREGROUND_PIXEL of frame.
4264         * macterm.c (XTread_socket): If Vmac_command_key_is_meta is nil,
4265         test Mac command key as <ALT> key.
4267 2002-06-17  Stefan Monnier  <monnier@cs.yale.edu>
4269         * window.c (Fset_window_configuration): Lisp_Object/int mixup.
4271         * keyboard.c (read_key_sequence): Be more careful with first_unbound.
4272         Lookup keys in function-key-map immediately so that key-translation-map
4273         can be applied earlier.
4274         Remove function_key_possible and key_translation_possible, replaced
4275         by checking `keytran_start < t'.
4277         * .gdbinit (xsymbol): Use the new `xname' field.
4279 2002-06-17  Andrew Choi  <akochoi@shaw.ca>
4281         * macterm.c (XTread_socket): If Vmac_command_key_is_meta is nil,
4282         test Mac command key as <ALT> key.
4284         * mac.c (do_applescript): Call initialize_applescript if necessary
4285         when first called.  Dispose of result_desc only when there is no error.
4286         (Fdo_applescript): Use %d format specifier instead of %ld.
4288 2002-06-16  Andrew Choi  <akochoi@shaw.ca>
4290         * macterm.c (XTread_socket): Call FrontNonFloatingWindow instead
4291         of FrontWindow for cases keyDown and autoKey.
4293         * fontset.c (syms_of_fontset) [MAC_OS]: Set ASCII font of
4294         Vdefault_fontset to Monaco with mac-roman coding.
4296         * mac.c, macfns.c, macmenu.c, macterm.c: Undefine and redefine
4297         init_process before and after inclusion of Carbon/Carbon.h, resp.
4299         * macterm.c (x_new_font): Set font for normal_gc, reverse_gc, and
4300         cursor_gc.
4301         (add_font_name_table_entry): New function.
4302         (init_font_name_table): Use add_font_name_table_entry; add italic,
4303         bold, and bold-italic entries for truetype fonts.
4305         * xfaces.c (init_frame_faces) [MAC_OS]: Call realize_basic_faces
4306         for Mac too.
4307         (try_font_list) [MAC_OS]: If no font matches given registry, try
4308         fonts with any registry matching face_family.
4309         (realize_x_face) [MAC_OS]: Remove old ad-hoc fix to load font here.
4311         * s/darwin.h: If autoconf detects the Ncurses library, define
4312         LIBS_TERMCAP to -lncurses to use it.
4314 2002-06-16  Eli Zaretskii  <eliz@is.elta.co.il>
4316         * strftime.c [__hpux]: Include sys/_mbstate_t.h.
4318 2002-06-15  Richard M. Stallman  <rms@gnu.org>
4320         * window.c (Fset_window_configuration): Explicitly preserve
4321         the point value that new_current_buffer had at the start.
4323 2002-06-14  Juanma Barranquero  <lektu@terra.es>
4325         * composite.c (Fcompose_region_internal, Fcompose_string_internal):
4326         Fix typos.
4328 2002-06-14  Kim F. Storm  <storm@cua.dk>
4330         * insdel.c (insert_1_both, insert_from_string_1)
4331         (insert_from_buffer_1): Recalculate END_UNCHANGED in case the
4332         insert happened in the end_unchanged region.  Otherwise, the
4333         redisplay may be confused and duplicate the last line in the
4334         buffer [seen after save-buffer when require-final-newline==t].
4336 2002-06-13  Jason Rumney  <jasonr@gnu.org>
4338         * w32.c (init_environment): Remove EMACSLOCKDIR.
4339         (stat): Swap _S_IFDIR and _S_IFREG.
4341 2002-06-13  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
4343         * keyboard.c, macterm.c, macmenu.c, msdos.c, sysdep.c
4344         * termhooks.h, xmenu.c, xsmfns.c, xterm.h, xterm.c, w32term.c,
4345         * w32menu.c, w32inevt.c: Rename enum event_kind as follows:
4346         ascii_keystroke to ASCII_KEYSTROKE_EVENT, multibyte_char_keystroke
4347         to MULTIBYTE_CHAR_KEYSTROKE_EVENT, non_ascii_keystroke to
4348         NON_ASCII_KEYSTROKE_EVENT, timer_event to TIMER_EVENT, mouse_click
4349         to MOUSE_CLICK_EVENT, mouse_wheel to MOUSE_WHEEL_EVENT,
4350         language_change_event to LANGUAGE_CHANGE_EVENT, scroll_bar_click
4351         to SCROLL_BAR_CLICK_EVENT, w32_scroll_bar_click to
4352         W32_SCROLL_BAR_CLICK_EVENT, selection_request_event to
4353         SELECTION_REQUEST_EVENT, selection_clear_event to
4354         SELECTION_CLEAR_EVENT, buffer_switch_event to BUFFER_SWITCH_EVENT,
4355         delete_window_event to DELETE_WINDOW_EVENT, iconify_event to
4356         ICONIFY_EVENT, deiconify_event to DEICONIFY_EVENT,
4357         menu_bar_activate_event to MENU_BAR_ACTIVATE_EVENT, drag_n_drop to
4358         DRAG_N_DROP_EVENT, save_session_event to SAVE_SESSION_EVENT and
4359         no_event to NO_EVENT.
4361 2002-06-12  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
4363         * macmenu.c: Remove declaration of Qmouse_click and Qevent_kind.
4365 2002-06-12  Stefan Monnier  <monnier@cs.yale.edu>
4367         * intervals.c (textget): Don't forget to `return'.
4368         (lookup_char_property): Use XCAR/XCDR.
4370 2002-06-12  Juanma Barranquero  <lektu@terra.es>
4372         * xdisp.c (Fformat_mode_line): Fix typo.
4374 2002-06-12  Kim F. Storm  <storm@cua.dk>
4376         * xdisp.c (Fformat_mode_line): New function.
4377         (frame_title_buf, frame_title_buf_end, frame_title_ptr)
4378         (store_frame_title_char, store_frame_title): Use unconditionally.
4379         (init_xdisp): Defsubr Fformat_mode_line.
4380         Initialize frame_title_buf etc. unconditionally.
4382 2002-06-11  Stefan Monnier  <monnier@cs.yale.edu>
4384         * keyboard.c (read_key_sequence):
4385         Remove prev_(fkey|keytran}_(map|start|end) since we don't want to pass
4386         things through those maps after downcasing events.
4387         Enforce that keytran_end <= fkey_start, i.e. that key-translation-map
4388         applies after function-key-map.
4389         Make sure that keytran can be done in the middle in the sequence.
4390         Be careful not to throw away events past the one we downcase.
4392         * lread.c (read_integer): Remove unused var `tem'.
4393         (read1): Fix int/Lisp_Object mixup.
4395         * xfaces.c (tty_lookup_color): Type bool/Lisp_Object mismatch fixed.
4397 2002-06-11  Richard M. Stallman  <rms@gnu.org>
4399         * keyboard.c (readable_events): Ignore any number of
4400         FOCUS_IN_EVENT events and return 0 if nothing else in buffer.
4402 2002-06-09  Miles Bader  <miles@gnu.org>
4404         * xfaces.c (Ftty_supports_face_attributes_p): New function.
4405         (parse_rgb_list, tty_lookup_color): New functions.
4406         (tty_defined_color): Use `tty_lookup_color' to do all the work.
4407         (color_distance, Fcolor_distance): New functions.
4408         (TTY_SAME_COLOR_THRESHOLD): New macro.
4409         (Qtty_color_standard_values): New variable.
4410         (syms_of_xfaces): Initialize new vars & functions.
4412 2002-06-08  Colin Walters  <walters@verbum.org>
4414         * textprop.c (Vchar_property_alias_alist): New variable.
4415         (syms_of_textprop) <Vchar_property_alias_alist>: DEFVAR_LISP.
4417         * intervals.c (lookup_char_property): New function for looking up
4418         overlay and text properties, created from textget.
4419         (textget): Use it.
4421         * intervals.h (lookup_char_property): Declare.
4422         (Vchar_property_alias_alist): Declare.
4424         * buffer.c (Foverlay_get): Use lookup_char_property.
4426 2002-06-07  Sam Steingold  <sds@gnu.org>
4428         * xselect.c (lisp_data_to_selection_data): Fix last change:
4429         *data_ret is not a Lisp string, while unibyte_string is.
4431 2002-06-07  Eli Zaretskii  <eliz@is.elta.co.il>
4433         * xselect.c (lisp_data_to_selection_data): Fix last change:
4434         set size_ret.
4436 2002-06-07  Andreas Schwab  <schwab@suse.de>
4438         * m/amdx86-64.h: New file.
4440 2002-06-05  Eli Zaretskii  <eliz@is.elta.co.il>
4442         * fns.c (Fstring_make_unibyte): Doc fix.
4444         * xselect.c (lisp_data_to_selection_data): If the requested type
4445          is STRING, call string_make_unibyte to encode the selected text
4446          as a string.
4448         * window.c (Fset_window_hscroll): Doc fix.
4450 2002-06-05  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
4452         * fileio.c (choose_write_coding_system):
4453         Call select-safe-coding-system properly.
4455 2002-06-03  Richard M. Stallman  <rms@gnu.org>
4457         * xdisp.c (message_with_string): Error if STRING is not a string.
4459         * fns.c (md5): Pass FILE arg to Vselect_safe_coding_system_function.
4461         * fileio.c (choose_write_coding_system): Pass FILE arg to
4462         Vselect_safe_coding_system_function.
4464 2002-06-03  Ken Raeburn  <raeburn@gnu.org>
4466         * buffer.c (fix_overlays_before): Fix list-walking bug in 05-19 change.
4468 2002-06-02  Thien-Thi Nguyen  <ttn@gnu.org>
4470         * bytecode.c (Fbyte_code): Cast `current_column' return value to int.
4471         * cmds.c (Fdelete_backward_char, internal_self_insert): Likewise.
4472         * keymap.c (describe_command): Likewise.
4473         * minibuf.c (read_minibuf): Likewise.
4475         * xdisp.c (redisplay_internal, redisplay_window, decode_mode_spec):
4476         Cast `current_column' return value to int.
4477         (back_to_previous_visible_line_start)
4478         (reseat_at_next_visible_line_start, next_element_from_buffer):
4479         Cast `indented_beyond_p' 3rd arg to float.
4481         * indent.c (last_known_column): Now a float.
4482         (current_column_1, position_indentation, current_column)
4483         (string_display_width): Return float.
4484         (Fcurrent_column): Cast `current_column' return value to int.
4485         (Fcurrent_indentation): Cast `position_indentation' retval to int.
4486         (indented_beyond_p): Third arg now a float.
4487         (compute_motion, vmotion): Cast `indented_beyond_p' 3rd arg to float.
4489         * lisp.h (current_column): Now returns float.
4490         (indented_beyond_p): 3rd arg now a float.
4492 2002-05-31  Eli Zaretskii  <eliz@is.elta.co.il>
4494         * xfns.c (x_encode_text): Return stringp non-NULL if coding_system
4495         is Qcompound_text_with_extensions.
4497         * xselect.c (lisp_data_to_selection_data): Always set selection
4498         type as string if x_encode_text returns streingp non-NULL.
4500         * s/netbsd.h: Include /usr/pkg in the run time shared library path.
4502 2002-05-30  Richard M. Stallman  <rms@gnu.org>
4504         * window.c (Fset_window_configuration): Correct the handling
4505         of point in current buffer, to work with multiple windows.
4507 2002-05-29  Colin Walters  <walters@verbum.org>
4509         * lread.c (Fread_from_string): Don't depend on order of evaluation
4510         for C function parameters.
4512 2002-05-28  Richard M. Stallman  <rms@gnu.org>
4514         * xterm.c (x_display_and_set_cursor): Change the cursor in the same
4515         way for blinked-off state and for a nonselected window.
4517         * window.c (window_scroll_pixel_based): Don't call Fbolp;
4518         instead, see if the new start pos is at beginning of line.
4520         * fileio.c (Fwrite_region): If START is a string, don't
4521         make any annotations.
4523         * eval.c (syms_of_eval): Doc fix.
4525 2002-05-28  Colin Walters  <walters@debian.org>
4527         * emacs.c (USAGE1): Add --no-splash.
4528         (standard_args): Ditto.
4530 2002-05-28  Colin Walters  <walters@gnu.org>
4532         * lread.c (readchar_count): New variable.
4533         (readchar): Increment it.
4534         (unreadchar): Decrement it.
4535         (read_multibyte): Decrement it.
4536         (Vread_with_symbol_positions): New variable.
4537         (Vread_symbol_positions_list): New variable.
4538         (read_internal_start): New function, created from Fread and
4539         Fread_from_string.  Handle Vread_symbol_positions_list and
4540         Vread_with_symbol_positions.
4541         (readevalloop, Fread, Fread_from_string): Use it.
4542         (read1): Use readchar_count to add symbol positions to
4543         Vread_symbol_positions_list if Vread_with_symbol_positions is non-nil.
4544         (syms_of_lread): DEFVAR_LISP and initialize them.
4546         * lread.c (read0, read1, read_list, read_vector, read_multibyte)
4547         (substitute_object_recurse, substitute_object_in_subtree)
4548         (substitute_in_interval): Prototype.
4549         (read_multibyte): Return c if it's less than zero.
4551 2002-05-28  Kim F. Storm  <storm@cua.dk>
4553         * fileio.c (Fread_file_name_internal): Added brute-force
4554         speed up for using predicate file-directory-p.
4556 2002-05-28  Kim F. Storm  <storm@cua.dk>
4558         * fileio.c (Vread_file_name_function, Vread_file_name_predicate):
4559         New variables.
4560         (syms_of_fileio): DEFVAR_LISP them.
4561         (read_file_name_cleanup): New unwind function.
4562         (Fread_file_name_internal): Only return completions satifying
4563         Vread_file_name_predicate.  Temporarily unwind protect and rebind
4564         default-directory while checking completions against the predicate.
4565         (Fread_file_name): Added PREDICATE argument.  Specbind it to
4566         Vread_file_name_predicate during completion.
4567         Call Vread_file_name_function to read the file name if non-nil.
4569         * lisp.h (Fread_file_name): Now has 6 args.
4571         * callint.c (Fcall_interactively) <"D">: Supply Qfile_directory_p
4572         predicate for Fread_file_name when reading directory name.
4573         Supply Qnil for predicate in other calls to Fread_file_name.
4575 2002-05-26  Miles Bader  <miles@gnu.org>
4577         * term.c (tty_capable_p): New function.
4578         * dispextern.h (tty_capable_p): New function declaration.
4579         (TTY_CAP_INVERSE, TTY_CAP_UNDERLINE, TTY_CAP_BOLD, TTY_CAP_DIM)
4580         (TTY_CAP_BLINK, TTY_CAP_ALT_CHARSET): New macros.
4582 2002-05-23  Stefan Monnier  <monnier@cs.yale.edu>
4584         * fileio.c (read_non_regular, Finsert_file_contents): Use BEG_BYTE.
4585         (Finsert_file_contents, build_annotations): Use XCAR, XCDR.
4586         (Vwrite_region_annotate_functions): Docstring fix.
4588 2002-05-23  Kim F. Storm  <storm@cua.dk>
4590         * xterm.c (x_write_glyphs): Clear phys_cursor_on_p if current
4591         phys_cursor's hpos is overwritten.  This is still not completely
4592         correct, as it doesn't really make sense to use hpos at all to
4593         get the cursor glyph (as that is relative to the width of the
4594         characters on the line, which may have changed during the update).
4596 2002-05-22  Jason Rumney  <jasonr@gnu.org>
4598         * w32fns.c (enumfont_t): Remove tail, make pattern a normal
4599         Lisp_Object.
4600         (enum_font_cb2, enum_font_maybe_add_to_list, w32_list_fonts):
4601         Use modified enumfont_t struct.
4603         * w32term.h (text_cursor_kinds): New enumeration member HBAR_CURSOR.
4605         * w32term.c (x_draw_bar_cursor): New argument KIND; callers changed.
4606         Handle the `hbar' cursor type.
4607         (x_display_and_set_cursor): Handle the HBAR_CURSOR case.
4609         * w32fns.c (Qhbar): New variable.
4610         (x_specified_cursor_type): Use it.
4612 2002-05-21  Ken Raeburn  <raeburn@gnu.org>
4614         * w32fns.c (enum_font_maybe_add_to_list): Use XCDR_AS_LVALUE for
4615         now, when the address is needed.
4617 2002-05-21  Colin Walters  <walters@gnu.org>
4619         * Makefile.in (shortlisp): Add font-core.el.
4621 2002-05-20  Richard M. Stallman  <rms@gnu.org>
4623         * buffer.c (syms_of_buffer) <cursor-type>: Doc fix.
4625         * keyboard.c (read_char_minibuf_menu_prompt): Don't list
4626         equivalent key bindings here.
4628 2002-05-20  Ken Raeburn  <raeburn@gnu.org>
4630         Change symbol structure to contain a lisp object for the symbol
4631         name:
4632         * lisp.h (struct Lisp_Symbol): Replace field "name" with a lisp
4633         object field named "xname".
4634         (SYMBOL_NAME): New macro.
4635         * abbrev.c (write_abbrev): Use SYMBOL_NAME instead of XSYMBOL and
4636         name field.
4637         * alloc.c (Fmake_symbol): Set symbol xname field instead of name.
4638         (mark_object, gc_sweep): Use symbol xname field and XSTRING
4639         instead of name field.
4640         * buffer.c (buffer_slot_type_mismatch): Use XSTRING and
4641         SYMBOL_NAME instead of XSYMBOL and name field.
4642         * callint.c (Fcall_interactively): Use XSTRING and SYMBOL_NAME
4643         instead of XSYMBOL and name field.
4644         * charset.c (Fdefine_charset, Fdeclare_equiv_charset): Use XSTRING
4645         and SYMBOL_NAME instead of XSYMBOL and name field.
4646         * coding.c (Fread_coding_system, code_convert_region1)
4647         (code_convert_string1, code_convert_string_norecord)
4648         (Ffind_operation_coding_system): Use SYMBOL_NAME instead of
4649         XSYMBOL and name field.
4650         * data.c (Fkeywordp, Fsymbol_name, store_symval_forwarding)
4651         (Fmake_variable_buffer_local, Fmake_local_variable)
4652         (Fmake_variable_frame_local): Use SYMBOL_NAME and XSTRING instead
4653         of XSYMBOL and name field.
4654         * editfns.c (Fformat): Use SYMBOL_NAME and XSTRING instead of
4655         XSYMBOL and name field.
4656         * emacs.c (shut_down_emacs) [#if 0]: Use SYMBOL_NAME and XSTRING
4657         instead of XSYMBOL and name field.
4658         * eval.c (do_autoload): Use SYMBOL_NAME and XSTRING instead of
4659         XSYMBOL and name field.
4660         * fns.c (Fstring_equal, Fstring_lessp, Frequire, sxhash):
4661         Use SYMBOL_NAME and XSTRING instead of XSYMBOL and name field.
4662         * fontset.c (Fset_fontset_font): Use SYMBOL_NAME and XSTRING
4663         instead of XSYMBOL and name field.
4664         * keyboard.c (echo_char, record_char, parse_modifiers_uncached)
4665         (parse_modifiers, apply_modifiers, Fevent_convert_list)
4666         (parse_solitary_modifier, Fexecute_extended_command):
4667         Use SYMBOL_NAME and XSTRING instead of XSYMBOL and name field.
4668         * keymap.c (silly_event_symbol_error, Fsingle_key_description)
4669         (Fdescribe_buffer_bindings): Use SYMBOL_NAME and XSTRING instead
4670         of XSYMBOL and name field.
4671         (describe_command, describe_translation): Use SYMBOL_NAME and
4672         assignment instead of XSYMBOL and name field and XSETSTRING.
4673         * lread.c (Fintern_soft, oblookup): Use SYMBOL_NAME and XSTRING
4674         instead of XSYMBOL and name field.
4675         (Funintern): Use SYMBOL_NAME and assignment instead of XSYMBOL and
4676         name field and XSETSTRING.
4677         * macfns.c (parse_image_spec): Use SYMBOL_NAME and XSTRING instead
4678         of XSYMBOL and name field.
4679         * minibuf.c (Fread_command, Fread_variable): Use SYMBOL_NAME and
4680         assignment instead of XSYMBOL and name field and XSETSTRING.
4681         * print.c (print_error_message, print_object): Use SYMBOL_NAME and
4682         XSTRING instead of XSYMBOL and name field.
4683         * process.c (set_socket_options, Fsignal_process): Use SYMBOL_NAME
4684         and XSTRING instead of XSYMBOL and name field.
4685         * w32fns.c (parse_image_spec, w32_parse_hot_key): Use SYMBOL_NAME
4686         and XSTRING instead of XSYMBOL and name field.
4687         * xfaces.c (merge_face_vector_with_property): Use SYMBOL_NAME and
4688         XSTRING instead of XSYMBOL and name field.
4689         * xfns.c (parse_image_spec): Use SYMBOL_NAME and XSTRING instead
4690         of XSYMBOL and name field.
4691         * xselect.c (symbol_to_x_atom, x_get_foreign_selection):
4692         Use SYMBOL_NAME and XSTRING instead of XSYMBOL and name field.
4694 2002-05-19  Ken Raeburn  <raeburn@gnu.org>
4696         * lisp.h (LISP_MAKE_RVALUE): Delete disabled version, making XCAR
4697         and XCDR real rvalues in most configurations.
4699         * buffer.c (fix_overlays_in_range, fix_overlays_before):
4700         Don't take the address of the cdr part of a cons cell; instead, track
4701         the parent cell and call XSETCDR, or set the variable for the head
4702         of the list if we haven't started down the list yet.
4704 2002-05-19  Richard M. Stallman  <rms@gnu.org>
4706         * doc.c (reread_doc_file): Don't ask for confirmation.
4708 2002-05-18  Jason Rumney  <jasonr@gnu.org>
4710         * w32fns.c (w32_create_pixmap_from_bitmap_data): New function.
4711         (xbm_load_image): Use it.
4712         (xbm_load): Ditto.
4713         (xbm_read_bitmap_data): Reverted to xfns.c version.
4714         From David Ponce <david@dponce.com>.
4716 2002-05-17  Eli Zaretskii  <eliz@is.elta.co.il>
4718         * msdos.c (sig_suspender, sigprocmask): Don't define for DJGPP
4719         2.02 and later.
4721 2002-05-16  Juanma Barranquero  <lektu@terra.es>
4723         * keyboard.c (Fthis_command_keys, Fthis_command_keys_vector): Fix typo.
4725 2002-05-15  Stefan Monnier  <monnier@cs.yale.edu>
4727         * keyboard.c (read_char_x_menu_prompt): Use an equivalent but more
4728         meaningful test.
4729         (read_char_minibuf_menu_prompt): Fix typo.
4731 2002-05-15  Eli Zaretskii  <eliz@is.elta.co.il>
4733         * eval.c (Fcommandp): Doc fix.
4735 2002-05-13  Stefan Monnier  <monnier@cs.yale.edu>
4737         * keymap.c (keymap_parent): New fun, extracted from Fkeymap_parent.
4738         (Fkeymap_parent, keymap_memberp, fix_submap_inheritance): Use it.
4739         (Fset_keymap_parent): Gcpro a bit more.
4740         (access_keymap): Gcpro around meta_map call and around the main loop.
4741         (get_keyelt): Gcpro when following indirect references.
4742         (copy_keymap_item): New fun, extracted from Fcopy_keymap.
4743         (copy_keymap_1, Fcopy_keymap): Use it.  Don't copy the parent map.
4744         (Fdefine_key, Flookup_key): Gcpro before calling get_keymap.
4745         Remove useless ad-hoc remap code.
4747 2002-05-13  Richard M. Stallman  <rms@gnu.org>
4749         * search.c (search_buffer): Give up boyer moore search if inverse
4750         translation change charset_base.
4752 2002-05-12  Eli Zaretskii  <eliz@is.elta.co.il>
4754         * coding.c (decode_coding) <coding_type_ccl>: If a lone CR
4755         characters is carried over from the previous block of text, adjust
4756         coding->produced to account for the extra character.
4758 2002-05-11  Andreas Schwab  <schwab@suse.de>
4760         * coding.c (intersection): Keep the elements of the returned list
4761         in the same order as in the first list.
4763 2002-05-11  Kim F. Storm  <storm@cua.dk>
4765         * keymap.c (current_minor_maps): Fixed resizing of cmm_maps;
4766         only update cmm_size if realloc actually succeeds.
4767         Testing with initial size of 2 elements revealed that using
4768         realloc on GNU/Linux would cause a random trap in xmalloc
4769         later on, so I rewrote the code to use malloc/bcopy/free instead
4770         of realloc.
4772 2002-05-10  Jason Rumney  <jasonr@gnu.org>
4774         * w32fns.c (enum_font_cb2): Avoid DBCS raster fonts.
4776 2002-05-10  Eli Zaretskii  <eliz@is.elta.co.il>
4778         * coding.c (encode_coding_sjis_big5): Enclose bitwise AND in
4779         parens, to ensure correct evaluation order.
4781 2002-05-10  Kim F. Storm  <storm@cua.dk>
4783         * keymap.c (Vemulation_mode_map_alists): New variable.
4784         (syms_of_keymap): DEFVAR_LISP it.
4785         (current_minor_maps): Process keymap alists in that list before
4786         minor-mode-overriding-map-alist and minor-mode-map-alist.
4788 2002-05-09  Richard M. Stallman  <rms@gnu.org>
4790         * search.c (Freplace_match): Doc fix.
4792 2002-05-09  Kim F. Storm  <storm@cua.dk>
4794         * macterm.c (x_draw_image_foreground, x_draw_image_foreground_1):
4795         Enlarge cursor rectangle drawn around image with non-zero relief.
4797         * w32term.c (x_draw_image_foreground, w32_draw_image_foreground_1):
4798         Enlarge cursor rectangle drawn around image with non-zero relief.
4800         * xterm.c (x_draw_image_foreground, x_draw_image_foreground_1):
4801         Enlarge cursor rectangle drawn around image with non-zero relief.
4803 2002-05-07  Eli Zaretskii  <eliz@is.elta.co.il>
4805         * xselect.c (lisp_data_to_selection_data): Don't set selection
4806         type if comes from the Lisp object's car.  If the selection
4807         contains a pure ASCII text, always return QSTRING as its type.
4809 2002-05-06  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
4811         * mac.c (mac-cut-function): Doc fix.
4813 2002-05-05  Richard M. Stallman  <rms@gnu.org>
4815         * s/gnu.h [DOUG_LEA_MALLOC] (REL_ALLOC): Undefine it.
4817 2002-05-04  Jason Rumney  <jasonr@gnu.org>
4819         * keyboard.c (make_lispy_event) <mouse-wheel>: Set count to 1
4820         for event-click-count.
4822         * process.c (init_process): Only add server subfeature if we can
4823         use non-blocking I/O.
4825 2002-05-04  Andrew Choi  <akochoi@shaw.ca>
4827         * macterm.c (XTread_socket): Call WaitNextEvent once instead of
4828         repeatedly.
4830 2002-05-03  Jason Rumney  <jasonr@gnu.org>
4832         * process.c (Fmake_network_process): Only support server sockets
4833         when we can make them non-blocking.
4835         * s/ms-w32.h (HAVE_SELECT): Define.
4837         * w32.h (FILE_NDELAY): New flag.
4839         * w32.c (sys_getpeername, fcntl): New functions.
4840         (_sys_read_ahead): Temporarily block on non-blocking sockets.
4842         * w32proc.c: include sys/file.h.
4844 2002-05-03  Colin Walters  <walters@verbum.org>
4846         * callproc.c (Vgame_score_directory): Renamed to
4847         Vshared_game_score_directory.
4849 2002-04-30  Richard M. Stallman  <rms@gnu.org>
4851         * s/gnu.h [emacs]: Include stdio.h.
4852         (GNU_LIBRARY_PENDING_OUTPUT_COUNT): New definition, conditional.
4854         * eval.c (do_autoload): Error if called while preparing to dump.
4856         * fns.c (Frequire): Error if need to load while preparing to dump.
4858 2002-04-28  Colin Walters  <walters@verbum.org>
4860         * callproc.c (Vgame_score_directory) [!HAVE_SHARED_GAME_DIR]:
4861         Default to "~/.emacs.d/games".
4863 2002-04-29  Stefan Monnier  <monnier@cs.yale.edu>
4865         * lread.c (openp): Change arg exec_only to predicate.
4866         (build_load_history): Use XCAR/XCDR.
4867         (Flocate_file_internal): New fun.
4868         (syms_of_lread): Defsubr it.
4869         (Fload): Update call to openp.
4871         * lisp.h (openp): Update prototype.
4873         * xfns.c (x_create_bitmap_from_file, x_find_image_file):
4874         * w32proc.c (sys_spawnve):
4875         * w32fns.c (x_create_bitmap_from_file, x_find_image_file):
4876         * w32.c (check_windows_init_file):
4877         * sound.c (Fplay_sound_internal):
4878         * process.c (Fstart_process):
4879         * macfns.c (x_create_bitmap_from_file, x_find_image_file):
4880         * mac.c (run_mac_command):
4881         * emacs.c (init_cmdargs):
4882         * callproc.c (Fcall_process): Update call to openp.
4884         * textprop.c (remove_properties): Don't use XCAR without CONSP.
4886         * xterm.c (XTread_socket): Disable the Xutf8LookupString code.
4888 2002-04-29  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
4890         * dispextern.h (DEFAULT_TOOL_BAR_BUTTON_MARGIN)
4891         (DEFAULT_TOOL_BAR_BUTTON_RELIEF): Change default values.
4893 2002-04-28  Richard M. Stallman  <rms@gnu.org>
4895         * minibuf.c (Fall_completions, Ftry_completion): New arg to Fcommandp.
4897         * eval.c (Fcommandp): New arg for_call_interactively.
4898         * lisp.h (Fcommandp): Declare new arg.
4900 2002-04-28  Jason Rumney  <jasonr@gnu.org>
4902         * w32proc.c (syms_of_w32proc): Get true file attributes by default.
4904         * w32.c (stat, fstat): Use file index information to generate
4905         inodes for directories where available.
4907 2002-04-26  Andrew Choi  <akochoi@shaw.ca>
4909         * Makefile.in (C_SWITCH_SYSTEM_TEMACS): Add.
4910         [HAVE_CARBON]: Include Mac object files.
4912         * alloc.c, callproc.c, dispextern.h, dispnew.c, emacs.c,
4913         fontset.c, frame.c, frame.h, keyboard.c, sysdep.c, term.c,
4914         termcap.c, window.c, xdisp.c, xfaces.c: Use macros MAC_OS8,
4915         MAC_OSX, and MAC_OS instead of macintosh.
4917         * editfns.c [MAC_OS8]: Include stdio.h.
4919         * emacs.c [MAC_OS8]: Call mac_initialize instead of x_term_init.
4921         * fontset.c [MAC_OS]: Set Vdefault_fontset to ETL Fixed instead of
4922         Apple Monaco.
4924         * process.c: Declare QCfamily and QCfilter as extern.
4925         (wait_reading_process_input) [MAC_OSX]: Clear bit for stdin before
4926         calling select.
4928         * termcap.c [MAC_OSX]: Don't define tgetnum, PC, tputs, and tgetent.
4930         * tparam.c [MAC_OSX]: Don't define BC and UP.
4932         * config.in [HAVE_CARBON]: Add.
4934         * mac.c, macgui.h, macfns.c, macmenu.c, macterm.c, macterm.h:
4935         Move here from mac/src and mac/inc.
4937         * s/darwin.h, m/powermac.h, unexmacosx.c: New files.
4939 2002-04-26  Gerd Moellmann  <gerd@gnu.org>
4941         * xterm.c (x_draw_phys_cursor_glyph): Undo last change.
4942         Compute phys_cursor_width from the x position returned
4943         by x_draw_glyhs, which is cheaper.
4944         (x_display_and_set_cursor): Compute the buffer-local value
4945         of `cursor-in-non-selected-windows' only when needed.
4947 2002-04-25  Gerd Moellmann  <gerd@gnu.org>
4949         * xterm.c (x_draw_phys_cursor_glyph): Take into account that a box
4950         cursor on a stretch glyph has a width that depends on
4951         x_stretch_cursor_p.
4953 2002-04-25  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
4955         * abbrev.c (abbrev-start-location): Doc fix.
4957         * indent.c (Fvertical_motion): Fix last change.
4959 2002-04-25  Gerd Moellmann  <gerd@gnu.org>
4961         * indent.c (Fvertical_motion): Move to the start of the line
4962         containing PT before moving up or down.
4964 2002-04-24  Gerd Moellmann  <gerd@gnu.org>
4966         * dispnew.c (update_text_area): Set phys_cursor_on_p to 0 in the
4967         case of writing a whole row, more or less analogous to the case of
4968         writing only parts of a row.
4970         * xterm.c (x_display_and_set_cursor): Set phys_cursor_width to
4971         0 for NO_CURSOR.
4973         * xterm.c (notice_overwritten_cursor): Fix an off by 1 error.
4975 2002-04-23  Colin Walters  <walters@verbum.org>
4977         * buffer.c (syms_of_buffer): Doc fix.
4979 2002-04-23  Gerd Moellmann  <gerd@gnu.org>
4981         * xterm.c (notice_overwritten_cursor): Handle the special case
4982         of the cursor being in the first blank non-text line at the
4983         end of a window.
4985         * xterm.c (x_draw_hollow_cursor, x_draw_bar_cursor)
4986         (x_draw_phys_cursor_glyph): Set phys_cursor_width here.
4987         (x_display_and_set_cursor): Don't set phys_cursor_width here, for
4988         bar cursors only, to make phys_cursor_width contain what its name
4989         suggests.
4990         (notice_overwritten_cursor): Consider the cursor image erased if
4991         the output area intersects the cursor image in y-direction.
4993 2002-04-23  Simon Marshall  <simon@gnu.org>
4995         * xfns.c (x_set_mouse_color): Change default for cross_cursor
4996         to XC_hand2.
4998 2002-04-23  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
5000         * xdisp.c: Remove unused global variable `minibuf_prompt_pixel_width'.
5002 2002-04-22  Kim F. Storm  <storm@cua.dk>
5004         * textprop.c (remove_properties): Fixed trap for malformed plist.
5006 2002-04-22  Richard M. Stallman  <rms@gnu.org>
5008         * cmds.c (Fend_of_line): Handle intangible text in mid line.
5010         * window.c (make_window): Initialize height_fixed_p,
5011         last_cursor_off_p, and p->cursor_off_p slots.
5013 2002-04-20  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
5015         * fns.c (use-dialog-box): Doc fix.
5017 2002-04-19  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
5019         * xterm.c (note_mode_line_or_margin_highlight): Remove unused
5020         variables `row', `i' and `area'.
5021         (XTread_socket) <KeyPress>: Pass KeyPress events when in menu to
5022         toolkit library.
5024 2002-04-19  Stefan Monnier  <monnier@cs.yale.edu>
5026         * xfaces.c (clear_font_table): Don't free the default font of
5027         a frame even if it's on another display.
5028         (Finternal_set_lisp_face_attribute): Don't use XFRAME on something
5029         that could be Qt.
5031 2002-04-19  Juanma Barranquero  <lektu@terra.es>
5033         * indent.c (Fmove_to_column): Remove unused local variable
5034         `next_boundary_byte'.
5035         (current_column_1): Likewise.
5037 2002-04-19  Eli Zaretskii  <eliz@is.elta.co.il>
5039         * msdos.c (Qhbar): New variable.
5040         (syms_of_msdos): Intern and staticpro it.
5041         (IT_set_cursor_type, IT_set_frame_parameters): Handle the `hbar'
5042         cursor type.
5044 2002-04-19  Dave Lambert  <dlambert@acm.org>
5046         Theses change implement an underscore-like (`hbar') cursor.
5048         * xterm.h (text_cursor_kinds): New enumeration member HBAR_CURSOR.
5050         * xterm.c (x_draw_bar_cursor): New argument KIND; callers changed.
5051         Handle the `hbar' cursor type.
5052         (x_display_and_set_cursor): Handle the HBAR_CURSOR case.
5054         * xfns.c (Qhbar): New variable.
5055         (syms_of_xfns): Intern and staticpro it.
5056         (x_specified_cursor_type): Handle `hbar' cursor.
5058         * s/sol2-5.h (bcopy, bzero, bcmp): Define only if HAVE_BCOPY is
5059         not defined.
5061 2002-04-18  Richard M. Stallman  <rms@gnu.org>
5063         * textprop.c (remove_properties): New arg LIST allows scanning
5064         either a list or a plist.
5065         (interval_has_some_properties_list): New function, like
5066         interval_has_some_properties using list instead of plist.
5067         All callers changed.
5068         (Fremove_list_of_text_properties): New function.
5069         (syms_of_textprop): Defsubr it.
5071 2002-04-17  Eli Zaretskii  <eliz@is.elta.co.il>
5073         * s/sol2.h (HAVE_LIBKSTAT): Define only if not already defined.
5075 2002-04-17  Juanma Barranquero  <lektu@terra.es>
5077         * indent.c (Fmove_to_column): Remove unused local variable `end_byte'.
5079 2002-04-17  Eli Zaretskii  <eliz@is.elta.co.il>
5081         * window.c (coordinates_in_window): Don't report on margin area
5082         if its width is zero.
5084 2002-04-16  Jason Rumney  <jasonr@gnu.org>
5086         * w32fns.c (Fx_file_dialog): Decode file name before using.
5088         * w32term.c (construct_drag_n_drop): Likewise.
5090 2002-04-16  Eli Zaretskii  <eliz@is.elta.co.il>
5092         * puresize.h (BASE_PURESIZE): Increase to 830000, since we now
5093         store load-history in pure space.
5095         * s/msdos.h (SYSTEM_PURESIZE_EXTRA): Reduce to 50000.
5097 2002-04-16  Stefan Monnier  <monnier@cs.yale.edu>
5099         * xterm.c (Qlatin_1, Qutf_8): New vars.
5100         (syms_of_xterm): Initialize them.
5101         (XTread_socket): Eliminate incorrect optimization that tried to avoid
5102         decoding the output of X*LookupString.
5103         Always use latin-1 to decode the output of XLookupString.
5104         Try Xutf8LookupString if XmbLookupString failed.
5106         * region-cache.c (new_region_cache): Use BEG.
5108 2002-04-16  Gerd Moellmann  <gerd@gnu.org>
5110         * buffer.c (MMAP_ALLOCATED_P): New macro to be set from system
5111         configuration files.
5112         (mmap_enlarge): Enlarge mapped regions only if MMAP_ALLOCATED_P
5113         returns 0.
5115 2002-04-15  Andreas Schwab  <schwab@suse.de>
5117         * config.in: Regenerated using autoheader.
5119         * m/7300.h, m/acorn.h, m/alliant-2800.h, m/alliant.h, m/alpha.h,
5120         m/altos.h, m/amdahl.h, m/apollo.h, m/arm.h, m/att3b.h, m/aviion.h,
5121         m/celerity.h, m/clipper.h, m/cnvrgnt.h, m/convex.h, m/cydra5.h,
5122         m/delta.h, m/delta88k.h, m/dpx2.h, m/elxsi.h, m/gec63.h,
5123         m/gould.h, m/hp800.h, m/hp9000s300.h, m/i860.h, m/ia64.h,
5124         m/ibmps2-aix.h, m/ibmrs6000.h, m/ibmrt-aix.h, m/ibmrt.h,
5125         m/ibms390.h, m/intel386.h, m/iris4d.h, m/irist.h, m/isi-ov.h,
5126         m/m68k.h, m/macppc.h, m/masscomp.h, m/mg1.h, m/mips-siemens.h,
5127         m/mips.h, m/news-r6.h, m/news.h, m/next.h, m/nh3000.h, m/nh4000.h
5128         m/ns32000.h, m/orion.h, m/pfa50.h, m/plexus.h, m/pmax.h,
5129         m/powerpcle.h, m/pyrmips.h, m/sequent-ptx.h, m/sequent.h,
5130         m/sparc.h, m/sr2k.h, m/symmetry.h, m/tad68k.h, m/tahoe.h,
5131         m/targon31.h, m/tek4300.h, m/tekxd88.h, m/template.h, m/tower32.h,
5132         m/tower32v3.h, m/ustation.h, m/vax.h, m/wicat.h, m/windowsnt.h,
5133         m/xps100.h, s/aix3-2.h, s/aix4-2.h, s/irix4-0.h, s/irix5-0.h,
5134         s/sco5.h, s/unixware.h: Don't set HAVE_ALLOCA, C_ALLOCA and
5135         STACK_DIRECTION, now set by autoconf.
5137 2002-04-14  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
5139         * dispnew.c (marginal_area_string): Sort arguments.
5141         * dispextern.h (marginal_area_string): Add prototype.
5143 2002-04-13  Richard M. Stallman  <rms@gnu.org>
5145         * fileio.c (Finsert_file_contents):
5146         Don't call temp_output_buffer_setup--do just part, by hand.
5148         * coding.c (run_pre_post_conversion_on_str):
5149         Don't call temp_output_buffer_setup--do just part, by hand.
5151         * keyboard.c (command_loop_1): Don't call start_hourglass
5152         or cancel_hourglass when executing a macro.
5154         * marker.c (count_markers): New function.
5156         * xdisp.c (display_mode_element): Don't let mode_line_proptrans_alist
5157         grow without limit.  Move recently used elements to the front.
5159 2002-04-13  Eli Zaretskii  <eliz@is.elta.co.il>
5161         * unexelf.c (unexec) [__sgi]: Undo the change from 2002-01-20.
5163 2002-04-12  Gerd Moellmann  <gerd@gnu.org>
5165         * xdisp.c (sync_frame_with_window_matrix_rows): Don't give frame
5166         rows marginal areas.
5167         (Fdump_frame_glyph_matrix) [GLYPH_DEBUG]: New function.
5168         (syms_of_xdisp) [GLYPH_DEBUG]: Defsubr it.
5170         * dispnew.c (marginal_area_string): Check that glyph row is enabled.
5172 2002-04-12  Dave Love  <fx@gnu.org>
5174         * dispnew.c (marginal_area_string): New.
5176         * window.c (window_part): Add ON_LEFT_MARGIN, ON_RIGHT_MARGIN.
5177         (Qleft_margin, Qright_margin): Declare.
5178         (coordinates_in_window, (Fcoordinates_in_window_p): Deal with margins.
5180         * xterm.c (note_mode_line_or_margin_highlight): Renamed from
5181         note_mode_line_highlight and extended.
5183         * keyboard.c (Qleft_margin, Qright_margin): Declare.
5184         (make_lispy_event): Deal with mouse events in margins.
5186 2002-04-12  Stefan Monnier  <monnier@cs.yale.edu>
5188         * msdos.c (dos_rawgetc): Use a single event for HELP_EVENT.
5190         * keyboard.c (command_loop_1): Turn off transient-mark-mode rather
5191         than deactivating the mark if tmm is set to `lambda'.
5192         (gen_help_event, kbd_buffer_store_help_event, kbd_buffer_get_event):
5193         Use a single event for HELP_EVENT.
5194         (Fexecute_extended_command): Save last_point_position.
5196 2002-04-12  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
5198         * lisp.h (Fpropertize): Add prototype.
5200         * fns.c (Fy_or_n_p): Use `minibuffer-prompt' face for prompt.
5202 2002-04-10  Colin Walters  <walters@verbum.org>
5204         * config.in: Add HAVE_SHARED_GAME_DIR.
5206         * callproc.c: (Vgame_score_directory): New variable.
5207         (syms_of_callproc) <Vgame_score_directory>: DEFVAR_LISP.
5209 2002-04-10  Richard M. Stallman  <rms@gnu.org>
5211         * puresize.h (BASE_PURESIZE): Reduce again to avoid big excess.
5213 2002-04-09  Stefan Monnier  <monnier@cs.yale.edu>
5215         * minibuf.c (read_minibuf): Use empty_string.
5216         (Ftry_completion): Allow lambda forms and lists of strings for `alist'.
5217         Short-circuit the search as soon as it "failed".
5218         (Fall_completions): Allow lambda forms and lists of strings for alist.
5219         (Fcompleting_read): Set Qminibuffer_completion_confirm to nil
5220         when require_match is nil.
5221         (Ftest_completion): Rename from `test_completion' and export to elisp.
5222         Call the predicate also when alist is a list.
5223         Obey Vcompletion_regexp_list.
5224         (do_completion, Fminibuffer_complete_and_exit): Use it.
5225         (Fassoc_string): Rename from `assoc_for_completion'.
5226         Allow list of strings as well and export to elisp.
5228 2002-04-08  Stefan Monnier  <monnier@cs.yale.edu>
5230         * puresize.h (BASE_PURESIZE): Increase to 900KB.
5232 2002-04-08  Juanma Barranquero  <lektu@terra.es>
5234         * w32.c (sys_accept): Don't hide variable `s'.
5236 2002-04-05  Gerd Moellmann  <gerd@gnu.org>
5238         * callint.c (Fcall_interactively): Use INTEGERP instead of
5239         NUMBERP for checking Vhistory_length.
5241 2002-04-05  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
5243         * sound.c (Fplay_sound_internal): Renamed from Fplay_sound.
5244         Doc fix to reflect it.
5246 2002-04-04  Richard M. Stallman  <rms@gnu.org>
5248         * xdisp.c (display_mode_element): New arg RISKY.
5249         Disregard text props found or specified within a variable
5250         that isn't marked risky-local-variable.
5251         (Qrisky_local_variable): New variable.
5252         (syms_of_xdisp): Init and staticpro it.
5254 2002-04-04  Stefan Monnier  <monnier@cs.yale.edu>
5256         * undo.c (record_point): New fun.
5257         (record_delete, record_insert): Use it.
5259 2002-04-03  Juanma Barranquero  <lektu@terra.es>
5261         * doc.c (Fdocumentation): Add missing parentheses.
5262         (Fdocumentation_property): Likewise.
5264 2002-04-03  Stefan Monnier  <monnier@cs.yale.edu>
5266         * doc.c (Fdocumentation, Fdocumentation_property): When the doc
5267         data is 0, just return nil.
5269 2002-04-03  Eli Zaretskii  <eliz@is.elta.co.il>
5271         * msdos.c (syms_of_msdos): Fix last change with
5272         mouse_autoselect_window.
5274 2002-04-03  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
5276         * w32term.c, xterm.c, msdos.c: Rename autoselect_window_p to
5277         mouse_autoselect_window.
5279 2002-04-02  Stefan Monnier  <monnier@cs.yale.edu>
5281         * keyboard.c (make_lispy_event): Handle unknown keysyms together
5282         with system-specific keysyms.  Use it also for unknown function keys.
5284         * doc.c (reread_doc_file): Return whether reload was attempted.
5285         (Fdocumentation, Fdocumentation_property): Don't try to reload
5286         if the doc is 0 and only ask once.
5288         * Makefile.in (lisp, shortlisp): Add ucs-tables.elc.
5290 2002-04-02  Eli Zaretskii  <eliz@is.elta.co.il>
5292         * keyboard.c (read_char): If the event was Qselect_window,
5293         restore timer_idleness_start_time to its previous value.
5295         * msdos.c (dos_rawgetc): Generate SELECT_WINDOW_EVENTs when required.
5297 2002-04-01  Stefan Monnier  <monnier@cs.yale.edu>
5299         * region-cache.c (new_region_cache): Use BEG.
5301         * marker.c (buf_charpos_to_bytepos, buf_bytepos_to_charpos):
5302         Use BEG and BEG_BYTE.
5304         * doc.c (get_doc_string): Return nil if the location is wrong.
5305         (reread_doc_file): New fun.
5306         (Fdocumentation, Fdocumentation_property):
5307         Call it if get_doc_string fails.
5308         (Fsnarf_documentation): Make it work for a dumped Emacs.
5310         * charset.h (DEC_POS, BUF_DEC_POS): Use BEG_BYTE.
5311         Bound the search with MAX_MULTIBYTE_LENGTH to avoid pathological case.
5313         * charset.c (Fstring): Allow 0 arguments.
5315         * xterm.c (XTread_socket): Fix int/Lisp_Object confusion.
5317         * process.c (DATAGRAM_CONN_P, list_processes_1)
5318         (Fprocess_datagram_address, Fset_process_datagram_address)
5319         (Fset_network_process_options, server_accept_connection):
5320         Fix some int/Lisp_Object confusions (thank you union types).
5322 2002-04-01  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
5324         * msdos.c: Rename x_autoselect_window_p to autoselect_window_p.
5326         * w32term.c: Likewise.
5327         (note_mouse_movement): Put code for x_autoselect_window_p in #if 0.
5329         * keyboard.c (Qselect_window): New symbol.
5330         (head_table): Use it.
5331         (keys_of_keyboard): Bound select-window event to handle-select-window.
5332         (kbd_buffer_get_event): Make a Lisp event from SELECT_WINDOW_EVENT.
5334         * xterm.c: Rename x_autoselect_window_p to autoselect_window_p.
5335         (last_window): New variable.
5336         (XTread_socket): Generate SELECT_WINDOW_EVENTs.
5337         (note_mouse_movement): Remove reimplemented code in #if 0.
5338         (XTread_socket): Generate SELECT_WINDOW_EVENTs only for
5339         Emacs windows.
5341         * termhooks.h (enum event_kind): New event type `SELECT_WINDOW_EVENT'.
5343 2002-03-31  Gerd Moellmann  <gerd@gnu.org>
5345         * xterm.c (x_get_char_face_and_encoding): Add parameter DISPLAY_P.
5346         Callers changed.
5348 2002-03-30  Richard M. Stallman  <rms@gnu.org>
5350         * window.c (window_scroll_pixel_based): Exit the move_it_by_lines
5351         loop whenever it stops making progress.
5353         * widget.c (set_frame_size): Don't call change_frame_size.
5355 2002-03-30  Gerd Moellmann  <gerd@gnu.org>
5357         * dispnew.c (direct_output_for_insert):
5358         Call mark_window_display_accurate.
5360 2002-03-29  Jason Rumney  <jasonr@gnu.org>
5362         * w32term.c (w32_draw_relief_rect): Fix calculations of line lengths.
5364 2002-03-29  Eli Zaretskii  <eliz@is.elta.co.il>
5366         * Makefile.in (lread.o): Depend on coding.h.
5368         * lread.c (openp, Fload): Encode the file name before passing it
5369         to `stat', `access', and `emacs_open'.
5370         (openp): GCPRO the encoded file name.  Don't recompute Lisp
5371         strings unnecessarily.
5373 2002-03-29  Kim F. Storm  <storm@cua.dk>
5375         * fns.c (Flax_plist_put): Doc fix.
5377 2002-03-28  Miles Bader  <miles@gnu.org>
5379         * process.c (DATAGRAM_CONN_P): Make sure PROC is really a process.
5381 2002-03-27  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
5383         * process.c (set-network-process-options): Add usage.
5384         (make-network-process): Doc fix.
5386 2002-03-26  Eli Zaretskii  <eliz@is.elta.co.il>
5388         * emacs.c (Fdump_emacs): Fix a typo in "command-line-processed".
5390 2002-03-26  Richard M. Stallman  <rms@gnu.org>
5392         * fns.c (Fsubstring_no_properties): New function.
5393         (Flax_plist_get, Flax_plist_put): New functions.
5394         (syms_of_fns): defsubr them.
5396         * xdisp.c (update_menu_bar): Test only update_mode_lines;
5397         don't test or alter w->update_mode_line.
5399         * window.c (Fdisplay_buffer): Doc fix.
5401 2002-03-24  Richard M. Stallman  <rms@gnu.org>
5403         * regex.c (GET_UNSIGNED_NUMBER): Give proper error for spaces.
5405 2002-03-24  Gerd Moellmann  <gerd@gnu.org>
5407         * eval.c (Qdeclare, Vmacro_declaration_function): New variables.
5408         (Fdefmacro): Handle `(declare ...)'.
5409         (syms_of_eval) <Qdeclare>: Initialize and staticpro.
5410         (syms_of_eval) <Vmacro_declaration_function>: DEFVAR_LISP.
5412 2002-03-24  Jason Rumney  <jasonr@gnu.org>
5414         * w32fns.c (xbm_scan, xbm_load_image, xbm_read_bitmap_data)
5415         (xbm_file_p): Add prototypes.
5416         (xbm_format, xbm_image_p): Sync with xfns.c.
5417         (reflect_byte): New function.
5418         (xbm_read_bitmap_data): Sync with xfns.c, adapt for Windows.
5419         (xbm_load_image): Create bitmaps with a depth of 1.
5420         (init_xfns): Enable XBM images.
5422 2002-03-23  Jason Rumney  <jasonr@gnu.org>
5424         * w32term.c (w32_handle_tool_bar_click): Detect up and down events
5425         correctly.  Do not pass up_modifier to keyboard buffer.
5427         * w32fns.c [HAVE_IMAGES, HAVE_PBM]: Remove conditionals.
5429 2002-03-22  Stefan Monnier  <monnier@cs.yale.edu>
5431         * Makefile.in (bootstrapclean): New target.
5432         (bootstrap-temacs, bootstrap-doc): Remove.
5433         (bootstrap-emacs): Use a bog-standard `temacs'.
5434         Don't bother to build a DOC file.
5436         * sysdep.c (wait_for_termination): Use sigsuspend rather than sigpause.
5438         * emacs.c (main): Handle --unibyte, --multibyte, and --no-loadup
5439         in temacs even if !CANNOT_DUMP.
5440         (standard_args): Keep --no-loadup even if !CANNOT_DUMP.
5442         * alloc.c (check_pure_size): Only output a warning.
5444 2002-03-22  Jason Rumney  <jasonr@gnu.org>
5446         * w32fns.c (Fx_create_frame): Enable tool-bar when images are
5447         supported.
5449         * w32term.c (zv_bits): Declare as short, for word alignment.
5450         (w32_read_socket) <WM_XBUTTONUP>: Fix last change.
5451         (syms_of_w32term): Define x-use-underline-position-properties.
5453         * w32fns.c (x_set_cursor_color): Set cursor_gc as well.
5454         (clear_image_cache): Block input, fix logic, clear matrices in
5455         all frames that share this cache.
5457 2002-03-22  Eli Zaretskii  <eliz@is.elta.co.il>
5459         * emacs.c (main): Update the Copyright year in the blurb printed
5460         by "emacs --version".
5462         * xdisp.c (message_with_string): Fix syntax of a call to GCPRO2.
5464         * xterm.c (XTread_socket): If XK_ISO_Lock and
5465         XK_ISO_Last_Group_Lock are defined, handle keysyms between
5466         XK_ISO_Lock and XK_ISO_Last_Group_Lock similarly to Mode_switch.
5468 2002-03-21  Kim F. Storm  <storm@cua.dk>
5470         * keyboard.c (menu_bar_items): Mostly undo 2002-02-20 patch, so
5471         menu-bar bindings in keymap and local-map properties _are_ used.
5472         But try keymap property first in accordance with 2002-01-03 patch.
5473         Added comment describing why this is not always reliable.
5474         (tool_bar_items): Ditto for tool-bar.
5476 2002-03-21  Jason Rumney  <jasonr@gnu.org>
5478         * w32fns.c (x_clear_image_1): Disable color table code.
5480 2002-03-21  Kim F. Storm  <storm@cua.dk>
5482         * lisp.h (DEFUN) [USE_NONANSI_DEFUN]: The 2001-10-17 patch
5483         removed the wrong version of the DEFUN macro; fixed it.
5485         * fns.c (Ffeaturep): Allow subfeature to be a list (test using
5486         Fmember rather than Fmemq).
5487         (Fprovide): Check that subfeatures is a list.
5489         * process.c (QCfeature, QCdatagram): Removed variables.
5490         (QCtype, Qdatagram): New variables.
5491         (network_process_featurep): Removed function.
5492         (Fmake_network_process): Removed :feature check.
5493         Use :type 'datagram instead of :datagram t to create a datagram
5494         socket.  This allows us to add other connection types (e.g. raw
5495         sockets) later in a consistent manner.
5496         (init_process) [subprocess, HAVE_SOCKETS]: Provide list of
5497         supported subfeatures for feature make-network-process.
5498         (syms_of_process) [subprocess]: Remove QCfeature and QCdatagram.
5499         Intern and staticpro QCtype and Qdatagram.
5500         (syms_of_process) [!subprocess]: Intern and staticpro QCtype.
5502         * xfns.c: (QCtype): Remove duplicate declaration and
5503         initialization (is now declared in process.c).
5505         * w32fns.c: (QCtype): Remove duplicate declaration and
5506         initialization (is now declared in process.c).
5508 2002-03-21  Richard M. Stallman  <rms@gnu.org>
5510         * regex.c (DISCARD_FAILURE_REG_OR_COUNT): New macro.
5511         (CHECK_INFINITE_LOOP): Use DISCARD_FAILURE_REG_OR_COUNT
5512         when jumping to `fail' to avoid undoing reg changes in the
5513         last iteration of the loop.
5514         (GET_UNSIGNED_NUMBER): Skip spaces around the number.
5516         * Makefile.in (dispnew.o, sysdep.o, xdisp.o, xselect.o, alloc.o):
5517         Depend on process.h.
5519 2002-03-20  Jason Rumney  <jasonr@gnu.org>
5521         Most of the following changes are still conditional on HAVE_IMAGES
5522         which is not set by default on Windows.
5524         * emacs.c (main) [WINDOWSNT]: Call init_xfns.
5526         * w32fns.c (x_set_cursor_color): Set foreground of cursor, not frame.
5527         (Fimage_size, Fimage_mask_p, XPutPixel): New functions.
5528         (four_corners_best, x_clear_image_1, x_clear_image)
5529         (x_alloc_image_color, postprocess_image)
5530         (x_create_x_image_and_pixmap, x_destroy_x_image, xbm_load_image)
5531         (x_from_x_colors, x_disable_image, pbm_load): Adapt for Windows.
5532         (init_xfns, syms_of_w32fns): Initialize image functions and constants.
5534         * w32gui.h (struct XImage): Define.
5536         * w32term.c (w32_read_socket) <WM_XBUTTONUP>: Use XFASTINT to
5537         extract mouse co-ordinates.
5539 2002-03-20  Jason Rumney  <jasonr@gnu.org>
5541         * w32.c (init_winsock): Dynamically load new server and UDP
5542         socket functions.
5543         (socket_to_fd): New function.
5544         (sys_socket): Use it.
5545         (sys_setsockopt, sys_listen, sys_getsockname, sys_accept)
5546         (sys_recvfrom, sys_sendto): New wrapper functions.
5548         * process.c (QCfamily, QCfilter): Remove duplicate declaration
5549         and initialization.
5551         * makefile.w32-in (LIBS): Remove $(WSOCK32).
5553 2002-03-20  Eli Zaretskii  <eliz@is.elta.co.il>
5555         * process.c (conv_sockaddr_to_lisp, conv_lisp_to_sockaddr):
5556         Don't use "sun" as a variable, it's a predefined constant on Sun
5557         machines.
5559 2002-03-20  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
5561         * bytecode.c (Fbyte_code): Revert last change.
5563 2002-03-19  Kim F. Storm  <storm@cua.dk>
5565         * makefile.w32-in (LIBS): Add $(WSOCK32).
5566         From David Ponce <dponce@voila.fr>.
5568 2002-03-18  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
5570         * process.c (wait_reading_process_input): Move variables `pname'
5571         and `pnamelen' down where they are used.
5573         * bytecode.c (Fbyte_code): Discard unused computed value to
5574         prevent gcc warning.
5576         * lisp.h (Fplist_member): Add prototype.
5578 2002-03-18  Kim F. Storm  <storm@cua.dk>
5580         * config.in: Add HAVE_SENDTO, HAVE_RECVFROM, HAVE_SETSOCKOPT,
5581         HAVE_GETSOCKOPT, HAVE_GETPEERNAME, HAVE_GETSOCKNAME, and HAVE_SYS_UN_H.
5583         * process.c: Define HAVE_LOCAL_SOCKETS based on HAVE_SYS_UN_H.
5584         Remove explicit GNU_LINUX settings for datagram support.
5586 2002-03-18  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
5588         * process.c (Fmake_network_process): Remove unused variable `sa'.
5589         Doc fix.  Add usage:.
5590         (set_socket_options): Remove unused variables `optnum' and `opttype'.
5592 2002-03-17  Richard M. Stallman  <rms@gnu.org>
5594         * xdisp.c (cursor_type_changed): New variable.
5595         (redisplay_internal): Redisplay all windows if cursor_type_changed.
5596         Clear it when clearing windows_or_buffers_changed.
5597         (try_cursor_movement, redisplay_window, try_window_id)
5598         (try_window_reusing_current_matrix): Test cursor_type_changed
5599         along with windows_or_buffers_changed.
5601         * window.h (cursor_type_changed): New variable.
5603         * xfns.c (x_set_cursor_type): Set cursor_type_changed,
5604         not update_mode_lines, and always set it to 1.
5606         * xdisp.c (clear_garbaged_frames): Don't set windows_or_buffers_changed
5607         if no frames needed redrawing.
5609 2002-03-17  Kim F. Storm  <storm@cua.dk>
5611         The following changes add support for network server processes,
5612         datagram connections, and local (unix) sockets.
5614         * process.h (struct Lisp_Process): New member log.
5615         Doc fix: Member command used to indicate stopped network process.
5616         Doc fix: Member childp contains plist for network process.
5617         Doc fix: Member kill_without_query is inverse of query-on-exit flag.
5619         * process.c (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
5620         (QClocal, QCremote, QCserver, QCdatagram, QCnowait, QCnoquery,QCstop)
5621         (QCcoding, QCoptions, QCfilter, QCsentinel, QClog, QCfeature):
5622         New variables.
5623         (NETCONN1_P): New macro.
5624         (DATAGRAM_SOCKETS): New conditional symbol.
5625         (datagram_address): New array.
5626         (DATAGRAM_CONN_P, DATAGRAM_CHAN_P): New macros.
5627         (status_message): Use concat3.
5628         (Fprocess_status): Add `listen' status to doc string.  Return `stop'
5629         for a stopped network process.
5630         (Fset_process_buffer): Update contact plist for network process.
5631         (Fset_process_filter): Ditto.  Don't enable input for stopped
5632         network processes.  Server must listen, even if filter is t.
5633         (Fset_process_query_on_exit_flag, Fprocess_query_on_exit_flag):
5634         New functions.
5635         (Fprocess_kill_without_query): Removed.  Now defined in simple.el.
5636         (Fprocess_contact): Added KEY argument.  Handle datagrams.
5637         (list_processes_1): Optionally show only processes with the query
5638         on exit flag set.  Dynamically adjust column widths.  Omit tty
5639         column if not needed.  Report stopped network processes.
5640         Identify server and datagram network processes.
5641         (Flist_processes): New optional arg `query-only'.
5642         (conv_sockaddr_to_lisp, get_lisp_to_sockaddr_size)
5643         (conv_lisp_to_sockaddr, set_socket_options)
5644         (network_process_featurep, unwind_request_sigio): New helper functions.
5645         (Fprocess_datagram_address, Fset_process_datagram_address):
5646         (Fset_network_process_options): New lisp functions.
5647         (Fopen_network_stream): Removed.  Now defined in simple.el.
5648         (Fmake_network_process): New lisp function.  Code is based on previous
5649         Fopen_network_stream, but heavily reworked with new property list based
5650         argument list, support for datagrams, server processes, and local
5651         sockets in addition to old client-only functionality.
5652         (server_accept_connection): New function.
5653         (wait_reading_process_input): Use it to handle incoming connects.
5654         Do not enable input on a new connection if process is stopped.
5655         (read_process_output): Handle datagram sockets. Use 2k buffer for them.
5656         (send_process): Handle datagram sockets.
5657         (Fstop_process, Fcontinue_process): Apply to network processes.  A stopped
5658         network process is indicated by setting command field to t .
5659         (Fprocess_send_eof): No-op if datagram connection.
5660         (Fstatus_notify): Don't read input for a stream server socket or a
5661         stopped network process.
5662         (init_process): Initialize datagram_address array.
5663         (syms_of_process): Intern and staticpro new variables, defsubr new
5664         functions.
5666 2002-03-16  Jason Rumney  <jasonr@gnu.org>
5668         * w32fns.c (w32_to_all_x_charsets): Return correct type in
5669         startup case.
5671 2002-03-16  Richard M. Stallman  <rms@gnu.org>
5673         * xdisp.c (redisplay_internal, redisplay_windows):
5674         Use list_of_error to call internal_condition_case_1.
5675         (safe_eval, safe_call): Pass Qt to internal_condition_case_{1,2}
5676         so as to catch all errors with no possibility of debugger redisplay.
5677         (list_of_error): New variable.
5678         (syms_of_xdisp): Init and staticpro it.
5680         * print.c (print_object): Delete `\ ' from printed rep of frame.
5682 2002-03-15  Eli Zaretskii  <eliz@is.elta.co.il>
5684         * msdos.c (dos_rawgetc): Disable the x-autoselect-window feature,
5685         until its implementation is fixed.
5687 2002-03-14  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
5689         * xfns.c (png_load): Remove unused variable `gamma_str'.
5691 2002-03-14  Richard M. Stallman  <rms@gnu.org>
5693         * xfns.c (x_real_positions): Handle failure in XQueryTree.
5695 2002-03-14  Miles Bader  <miles@gnu.org>
5697         * intervals.c (adjust_for_invis_intang): New function.
5698         (set_point_both): Use `adjust_for_invis_intang' to do most of the
5699         work for dealing with invisible+intangible regions.  Do so before
5700         and after both forward and backward movements, to handle both
5701         front-sticky and rear-sticky cases.
5702         * textprop.c (text_property_stickiness): Function moved here from
5703         `editfns.c'.
5704         * intervals.h (text_property_stickiness): New declaration.
5705         * editfns.c (char_property_eq): Function removed.
5706         (text_property_stickiness): Function moved to `textprop.c'.
5708 2002-03-13  Jason Rumney  <jasonr@gnu.org>
5710         * config.in: Add STRFTIME_NO_POSIX2.
5712         * strftime.c (my_strftime) [STRFTIME_NO_POSIX2]: Handle %h, %EX
5713         and %OX when underlying strftime does not.
5715 2002-03-13  Stefan Monnier  <monnier@cs.yale.edu>
5717         * xterm.c (x_set_toolkit_scroll_bar_thumb) <USE_MOTIF>:
5718         Use a fixed-size thumb (based on an ad-hoc estimate of 30 chars per
5719         line) to avoid annoying flicker.
5720         (xm_scroll_callback): Get rid of the now unnecessary kludge.
5721         (XTread_socket): Mark it static.
5723         * xdisp.c (display_mode_element): Fix int/Lisp_Object mixup.
5725 2002-03-13  Kim F. Storm  <storm@cua.dk>
5727         * puresize.h (BASE_PURESIZE): Increase to 775000.
5729 2002-03-12  Juanma Barranquero  <lektu@terra.es>
5731         * editfns.c (syms_of_editfns): Fix typo.
5733 2002-03-12  Gerd Moellmann  <gerd@gnu.org>
5735         * xsmfns.c: Include stdio.h because termhooks.h needs it.
5736         Include termopt.h for interrupt_input.
5738 2002-03-11  Andreas Schwab  <schwab@suse.de>
5740         * coding.c (syms_of_coding) <file-coding-system-alist>: Doc fix.
5742 2002-03-11  Gerd Moellmann  <gerd@gnu.org>
5744         * xterm.c (note_mouse_movement): Put code for
5745         x_autoselect_window_p in #if 0.
5747         * lread.c (Fload): Don't assume that message_with_string uses the
5748         string it is given like a C string.
5750 2002-03-10  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
5752         * xterm.h (x_session_check_input, x_session_initialize): Declared.
5754         * xterm.c: (XTread_socket): Add call to x_session_check_input and
5755         x_session_have_connection.
5756         (x_initialize): Add call to x_session_initialize.
5758         * termhooks.h (enum event_kind): Add save_session_event.
5760         * keyboard.c: Add Emacs event save_session_event.
5762         * emacs.c (main): Add call to syms_of_xsmfns.
5764         * lisp.h: Declare syms_of_xsmfns as extern.
5766         * config.in: Add HAVE_X_SM.
5768         * Makefile.in (LIBXT): Add -lSM -lICE
5769         if HAVE_X_SM and not USE_X_TOOLKIT.
5770         (XOBJ): New file xsmfns.c added.
5772         * xsmfns.c: New file for X session management.
5774 2002-03-09  Jason Rumney  <jasonr@gnu.org>
5776         * fileio.c (Fcopy_file) [WINDOWS_NT]: Ensure file is not
5777         read-only when setting modified time.
5779 2002-03-08  Gerd Moellmann  <gerd@gnu.org>
5781         * xdisp.c (move_it_vertically_backward): At the end of the function,
5782         when moving forward by lines, treat terminal frames specially.
5784         * keyboard.c (echo_char): Make sure to add a separator between
5785         keys even if echo_dash hasn't been called.
5787         * xdisp.c: Use new string macros.
5788         (update_echo_area): Pass number of bytes to message3 instead of
5789         number of chars.
5790         (set_message_1): Don't access a string's size_byte directly.
5791         (decode_mode_spec_coding): Use number of bytes of eoltype string
5792         instead number of chars.
5794         * lisp.h (SREF, SDATA, SCHARS, SBYTES, SMBP): New macros.
5796 2002-03-08  Juanma Barranquero  <lektu@terra.es>
5798         * w32fns.c (Fx_display_color_cells): Force 24+ bit color depths to
5799         24-bit.
5801 2002-03-06  Jason Rumney  <jasonr@gnu.org>
5803         * w32term.c (x_draw_hollow_cursor): Draw same size as block cursor.
5805 2002-03-06  Gerd Moellmann  <gerd@gnu.org>
5807         * keyboard.c (echo_prompt, echo_char, echo_dash, echo_now)
5808         (cancel_echoing, echo_length, echo_truncate): Changed to
5809         work with new kboard definition.
5810         (echo_now): Use message3_nolog instead of message2_nolog.
5812         * alloc.c (mark_kboards): Mark echo_string.
5814         * keyboard.h (ECHOBUFSIZE): Removed.
5815         (struct kboard): Member echoptr removed, member echobuf renamed
5816         to echo_string.
5818         * xdisp.c (message_with_string): Use Fformat instead of doprnt and
5819         message3 instead of message2 to display the message using STRING's
5820         text properties.
5822 2002-03-05  Andreas Schwab  <schwab@suse.de>
5824         * xdisp.c (hscroll_margin): Change to EMACS_INT.
5826 2002-03-05  Per Abrahamsen  <abraham@dina.kvl.dk>
5828         * frame.c (default-frame-alist): Explain that setting it doesn't
5829         affect existing frames.
5831 2002-03-05  Stefan Monnier  <monnier@cs.yale.edu>
5833         * indent.c (skip_invisible): Fix my brain fart.
5835         * dispnew.c (sit_for): Don't wait if executing a kbd macro.
5837 2002-03-04  Stefan Monnier  <monnier@cs.yale.edu>
5839         * dosfns.c, dosfns.h, dispnew.c, dispextern.h, commands.h, charset.c,
5840         * alloc.c, abbrev.c, emacs.c, eval.c, keyboard.c, keyboard.h,
5841         * lisp.h, lread.c, sysdep.c, termcap.c, termchar.h, w32term.c,
5842         * window.c, xdisp.c, xselect.c, xterm.c: Change defvar_int definition
5843         and variables to use EMACS_INT instead of just int.
5845         * buffer.c (syms_of_buffer): Allow non-string `mode-name'.
5847 2002-03-04  Eli Zaretskii  <eliz@is.elta.co.il>
5849         * sysdep.c (sys_subshell) [MSDOS]: If PWD is set in the
5850         environment, pass it down with corrected value.
5852 2002-03-04  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
5854         * lread.c (read_filtered_event): Do not call start_hourglass
5855         before returning.
5857 2002-03-04  Juanma Barranquero  <lektu@terra.es>
5859         * w32term.c (x_display_and_set_cursor): Fix typo.
5861 2002-03-03  Richard M. Stallman  <rms@gnu.org>
5863         * fileio.c (Fmake_temp_name): Doc fix.
5865 2002-03-03  Gary Wong  <gtw@gnu.org>
5867         * termcap.c [!emacs]: Replace ospeed for building standalone
5868         libtermcap, for binary compatibility.
5870         * tparam.c [!emacs]: Move #define of bcopy to after string.h.
5872 2002-03-03  Richard M. Stallman  <rms@gnu.org>
5874         * xrdb.c (file_p): Rename arg `path' to `filename'.
5876         * abbrev.c (Fexpand_abbrev): Increment plist as use count
5877         only if it is an integer.
5879         * xfns.c (png_load): Set screen_gamma based on f->gamma.
5880         If png_get_sRGB gives an answer, call png_set_gamma
5881         using the default image gamma value.
5883         * lread.c (read1): When reading from a file, default string to
5884         multibyte only if it has some multibyte characters.
5886         * print.c (print_object): Output multibyte chars 128...255
5887         using \x even if ! print_escape_multibyte.
5889         * xdisp.c (display_mode_element): Move the places where
5890         bytepos, charpos, this, and lisp_string are set.
5891         Use lisp_string to set bytepos.
5893         * xdisp.c (redisplay_internal):
5894         Call clear_image_cache only if HAVE_WINDOW_SYSTEM.
5896         * xdisp.c (display_mode_element): Merge properties specified with
5897         :propertize onto those that come with the string.
5899 2002-03-03  Eli Zaretskii  <eliz@is.elta.co.il>
5901         * xdisp.c (syms_of_xdisp) <auto-hscroll-mode>: Renamed from
5902         automatic-hscrolling.  Users changed.
5903         <hscroll-margin>: Renamed from automatic-hscroll-margin.
5904         Users changed.
5905         <hscroll-step>: Renamed from automatic-hscroll-step.  Users changed.
5907 2002-03-02  Eli Zaretskii  <eliz@is.elta.co.il>
5909         * buffer.c (syms_of_buffer) <buffer-file-coding-system>: Doc fix.
5911 2002-03-02  Kim F. Storm  <storm@cua.dk>
5913         * window.c (Fminibuffer_selected_window): New function.
5914         (syms_of_window): Defsubr it.
5916 2002-03-01  Kim F. Storm  <storm@cua.dk>
5918         * window.h (struct window): New member phys_cursor_width.
5920         * window.c (make_window, replace_window): Init phys_cursor_width.
5922         * xterm.c (x_display_and_set_cursor): Blink box cursor using
5923         hollow box cursor.  Blink bar cursor using 1 pixel wide bar.
5925         * w32term.c (x_display_and_set_cursor): Blink box cursor using
5926         hollow box cursor.  Blink bar cursor using 1 pixel wide bar.
5928         * lisp.h (GCPRO6): New macro.
5930         * process.c (Fopen_network_stream): Use GCPRO6.
5932 2002-03-01  Kim F. Storm  <storm@cua.dk>
5934         * process.c (Qconnect, Qfailed): New variables.
5935         (syms_of_process): Intern and staticpro them.
5936         (Fprocess_status): Document connect and failed return values.
5937         [NON_BLOCKING_CONNECT]: New conditional.
5938         (connect_wait_mask, num_pending_connects): New variables.
5939         (status_message): Convert Qfailed status.
5940         (Fopen_network_stream): Added support for non-blocking connect.
5941         New optional args: filter, sentinel, non_blocking.  Doc updated.
5942         [HAVE_GETADDRINFO, !HAVE_GETADDRINFO]: Merged common code.
5943         (deactivate_process): Handle pending non-blocking connect.
5944         (wait_reading_process_input): Poll for status of non-blocking
5945         connects.  Exec sentinel directly when connect succeeds.
5946         (status_notify): Don't read process output if not yet connected.
5948 2002-02-28  Kim F. Storm  <storm@cua.dk>
5950         * window.c: (minibuf_selected_window): Renamed from
5951         Vminibuf_selected_window.  Users changed.
5952         (syms_of_window): Staticpro it.
5954 2002-02-26  Kim F. Storm  <storm@cua.dk>
5956         The following changes add a new Vminibuf_selected_window variable
5957         which is similar to Vminibuf_scroll_window, but which is only set
5958         on entry to the minibuffer (from a non-minibuffer window):
5960         * window.c: (Vminibuf_selected_window): New variable.
5961         (struct save_window_data): New member minibuf_selected_window.
5962         (Fset_window_configuration): Restore Vminibuf_selected_window.
5963         (Fcurrent_window_configuration): Save Vminibuf_selected_window.
5964         Set minibuf_scroll_window member to nil if minibuf_level is 0.
5965         (compare_window_configurations): Compare minibuf_selected_window.
5967         * window.h: (Vminibuf_selected_window): Declare extern.
5969         * minibuf.c (read_minibuf): Set Vminibuf_selected_window on first
5970         entry to minibuffer or on entry from a non-minibuffer window.
5972         * dispextern.h (CURRENT_MODE_LINE_FACE_ID_3): Compare with
5973         Vminibuf_selected_window instead of Vminibuf_scroll_window.
5975         * xdisp.c (init_iterator): Compare with Vminibuf_selected_window
5976         instead of Vminibuf_scroll_window when deciding in which window
5977         the region should be highlighted.  Consequently, the region remains
5978         highlighteded even when a completion buffer is also displayed.
5980 2002-02-26  Eli Zaretskii  <eliz@is.elta.co.il>
5982         * fileio.c (Fsubstitute_in_file_name): Fix the change from 2002-02-08.
5984         * xselect.c (Qcompound_text_with_extensions): Renamed from
5985         Qcompound_text_no_extensions.
5986         (lisp_data_to_selection_data, syms_of_xselect): Use the new name.
5988 2002-02-26  Juanma Barranquero  <lektu@terra.es>
5990         * w32proc.c (syms_of_ntproc): Doc fix.
5992 2002-02-24  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
5994         * intervals.h: Include "dispextern.h" unconditionally.
5996 2002-02-24  Jason Rumney  <jasonr@gnu.org>
5998         * Makefile.in (WINNT_SUPPORT) [WINDOWSNT]: Add w32-vars.elc
5999         and disp-table.elc.
6000         (lisp): Add emacs-lisp/backquote.elc.
6002 2002-02-24  Kim F. Storm  <storm@cua.dk>
6004         * keymap.c (Flookup_key): Fixed problem in 2001-12-28 patch:
6005         The validation of the event type was too strict as it didn't
6006         allow string events; buffer names are used in bindings for
6007         menu-bar-select-buffer (see `menu-bar-update-buffers').
6009 2002-02-23  Kim F. Storm  <storm@cua.dk>
6011         The following changes rework my patch of 2002-02-06 which
6012         added command remapping by entering the commands directly into
6013         the keymaps.  Now, command remapping uses an explicit `remap'
6014         prefix in the keymaps, i.e. [remap COMMAND].
6016         * keymap.c (Qremap, remap_command_vector): New variables.
6017         (is_command_symbol): Removed function.
6018         (Fdefine_key): No longer accept a symbol for KEY.
6019         Added validation of [remap COMMAND] argument for KEY.
6020         The DEF is no longer required to be a symbol when remapping a command.
6021         (Fremap_command): New function to remap command through keymaps.
6022         (Flookup_key): Perform command remapping initiated by
6023         Fremap_command directly for speed.
6024         (Fkey_binding): Use Fremap_command for command remapping.
6025         (where_is_internal): Handle new command remapping representation.
6026         (syms_of_keymap): Intern Qremap, initialize remap_command_vector,
6027         staticpro them.  Defsubr Fremap_command.
6029         * keymap.h (Fremap_command): Declare extern.
6030         (is_command_symbol): Remove extern.
6032         * keyboard.c (command_loop_1): Use Fremap_command for command
6033         remapping; now try command remapping for all symbols.
6035 2002-02-23  Eli Zaretskii  <eliz@is.elta.co.il>
6037         * coding.h (run_pre_post_conversion_on_str): Add prototype.
6039 2002-02-23  Jason Rumney  <jasonr@gnu.org>
6041         * w32select.c (Fw32_set_clipboard_data): Run pre-write-conversion
6042         on the string before encoding it.
6043         (Fw32_get_clipboard_data): Run post-read-conversion on the string
6044         after decoding it.
6046         * w32fns.c (w32_wnd_proc) <WM_TIMER>: Fix last change.
6048 2002-02-23  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
6050         * w32term.c (enter_timestamp): Remove unused static variable to
6051         prevent warning.
6053         * xterm.c (enter_timestamp): Put in #if 0 to prevent warning.
6055 2002-02-23  Eli Zaretskii  <eliz@is.elta.co.il>
6057         * w16select.c (Fw16_get_clipboard_data): Fix last change.
6059         * xselect.c (selection_data_to_lisp_data): Fix last change.
6061 2002-02-22  Jason Rumney  <jasonr@gnu.org>
6063         * w32term.h (struct w32_output): New member menu_command_in_progress.
6065         * w32menu.c (menubar_selection_callback): Free the menu and
6066         clear the menu_command_in_progress flag.
6068         * w32fns.c (mouse_move_timer, mouse_button_timer): Initialize.
6069         (menu_free_timer): New variable.
6070         (MENU_FREE_ID, MENU_FREE_DELAY): New constants.
6071         (w32_wnd_proc) <WM_TIMER>: Handle menu_free_timer.
6072         <WM_EXITMENULOOP>: Delay before freeing menu.  Do nothing if a
6073         menu command is in progress.
6074         <WM_COMMAND>: Set the menu_command_in_progress flag.
6075         Kill any menu_free_timer that is running.
6077         * w32term.c (w32_text_out): Renamed from W32_TEXTOUT.
6078         Call ExtTextOutA rather than ExtTextOut.
6080 2002-02-22  Eli Zaretskii  <eliz@gnu.org>
6082         * puresize.h (BASE_PURESIZE): Increase to 755000.
6084 2002-02-22  Eli Zaretskii  <eliz@is.elta.co.il>
6086         * w16select.c (Fw16_set_clipboard_data): Run pre-write-conversion
6087         on the string before encoding it.
6088         (Fw16_get_clipboard_data): Run post-read-conversion on the string
6089         after decoding it.
6091 2002-02-22  Eli Zaretskii  <eliz@is.elta.co.il>
6093         Support for ICCCM  Extended Segments in X selections:
6095         * xselect.c <Qcompound_text_no_extensions>: New variable.
6096         (syms_of_xselect): Intern and staticpro it.
6097         (selection_data_to_lisp_data): Run post-read-conversion on decoded
6098         selection text.
6099         (lisp_data_to_selection_data): If next-selection-coding-system is
6100         compound-text-no-extensions, set the type of selection to be
6101         compound-text.
6103         * xterm.h (x_encode_text): Update prototype.
6105         * xfns.c (x_encode_text): Accept additional arg SELECTIONP; all
6106         callers changed.  If SELECTIONP is non-zero, run the
6107         pre-write-conversion function before encoding the selection text.
6109 2002-02-21  Kim F. Storm  <storm@cua.dk>
6111         * frame.c (syms_of_frame): Change mouse-highlight default to t.
6113         * keyboard.c (kbd_buffer_get_event) [WINDOWSNT]:
6114         Correct composing of language-change event.
6116 2002-02-20  Kim F. Storm  <storm@cua.dk>
6118         * keyboard.c (menu_bar_items): Don't include keymap or local-map
6119         bindings at PT when building menu (the menu is not updated often
6120         enough for this to work reliable).
6121         (tool_bar_items): Likewise.
6122         (current_active_maps): Removed unused (and buggy) function.
6124 2002-02-20  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
6126         * xfns.c (gif_load): Use correct width and height for GIF images.
6128 2002-02-19  Eli Zaretskii  <eliz@is.elta.co.il>
6130         * floatfns.c (Fatan): Accept an optional second arg and call
6131         atan2 if passed 2 args.
6133 2002-02-18  Jason Rumney  <jasonr@gnu.org>
6135         * w32term.c (glyph_rect): Determine the row and glyph more precisely.
6137 2002-02-17  Jason Rumney  <jasonr@gnu.org>
6139         * w32term.c (x_autoselect_window_p): New variable.
6140         (syms_of_w32term): DEFVAR_BOOL and initialize it.
6141         (note_mouse_movement): Use it.
6143         * w32fns.c (w32_load_system_font): Never set fonts_changed_p to zero.
6145         * w32bdf.c (w32_load_bdf_font): Maybe set fonts_changed_p.
6147         * w32fns.c (Qfullscreen, Qfullwidth, Qfullheight, Qfullboth):
6148         New variables.
6149         (syms_of_w32fns): Intern and staticpro them.
6150         (x_frame_parms) <"fullscreen">: New parameter.
6151         (x_fullscreen_move, x_set_fullscreen): New functions.
6152         (x_set_frame_parameters): Support Qfullscreen.
6153         (x_real_positions): Save x/y_pixels_diff frame params.
6154         (x_figure_window_size): Support full-screen frames.
6155         (Fx_create_frame): Default the fullscreen parameter.
6157         * w32term.c (x_check_fullscreen, x_check_fullscreen_move)
6158         (x_fullscreen_adjust): New functions.
6159         (w32_read_socket) <WM_WINDOWPOSCHANGED>: Don't  resize to
6160         fullscreen.  Call x_check_fullscreen_move, and set the
6161         want_fullscreen member of output_data.w32
6162         <WM_ACTIVATE, WM_ACTIVATEAPP>: Call x_check_fullscreen.
6164         * w32term.h: New enum for FULLSCREEN_* constants.
6165         (struct w32_output): New members want_fullscreen, x_pixels_diff,
6166         y_pixels_diff, x_pixels_outer_diff, and y_pixels_outer_diff.
6167         (x-fullscreen-adjust): New prototype.
6169 2002-02-17  Kim F. Storm  <storm@cua.dk>
6171         * frame.c: (Vmouse_highlight): New variable.
6172         (syms_of_frame): DEFVAR_LISP it.
6174         * frame.h: (Vmouse_highlight): Declare extern.
6176         * xterm.h (struct x_display_info): Add mouse_face_hidden.
6178         * xterm.c (disable_mouse_highlight): Removed variable.
6179         (note_mouse_highlight): Don't highlight if Vmouse_highlight is nil.
6180         (show_mouse_face): Don't show highlight if mouse_face_hidden is set.
6181         (XTread_socket): Turn mouse_face_hidden off after mouse movement,
6182         and on after keyboard input.
6183         (x_term_init): Initialize mouse_face_hidden.
6185         * msdos.h (struct display_info): Add mouse_face_hidden.
6187         * msdos.c (disable_mouse_highlight): Removed variable.
6188         (show_mouse_face): Don't show highlight if mouse_face_hidden is set.
6189         (IT_note_mouse_highlight): Don't highlight if Vmouse_highlight is nil.
6190         (internal_terminal_init): Initialize mouse_face_hidden.
6191         (dos_rawgetc): Turn mouse_face_hidden off after mouse movement,
6192         and on after keyboard input.
6194         * w32term.h (struct w32_display_info): Add mouse_face_hidden.
6196         * w32term.c (disable_mouse_highlight): Removed variable.
6197         (note_mouse_highlight): Disable highlight if Vmouse_highlight is nil.
6198         (show_mouse_face): Don't show highlight if mouse_face_hidden is set.
6199         (w32_read_socket): Turn mouse_face_hidden off after mouse movement,
6200         and on after keyboard input.
6201         (w32_initialize_display_info): Initialize mouse_face_hidden.
6203 2002-02-16  Eli Zaretskii  <eliz@is.elta.co.il>
6205         * msdos.c (last_mouse_window): New variable.
6206         (dos_rawgetc): Fix last change--if the mouse is in the same window
6207         as recorded in last_mouse_window, don't select this window.
6209         * Makefile.in (lisp, shortlisp): Use cus-start.elc, not cus-start.el.
6211         * msdos.c (x_autoselect_window_p): New variable.
6212         (syms_of_msdos): Defvar it.
6213         (dos_rawgetc): If x_autoselect_window_p is set, select the window in
6214         which the last mouse movement occured, unless it is already selected.
6216         * xdisp.c (automatic_hscroll_margin, Vautomatic_hscroll_step):
6217         New variables.
6218         (syms_of_xdisp): DEVFAR them.
6219         (hscroll_window_tree): Use automatic_hscroll_margin and
6220         Vautomatic_hscroll_step to compute the amount of window scrolling.
6222 2002-02-16  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
6224         * xterm.c (x-autoselect-window): New variable.
6225         (note_mouse_movement): Use it.
6227         * keyboard.c: Do not include "systime.h" twice.
6229 2002-02-15  Andreas Schwab  <schwab@suse.de>
6231         * puresize.h (BASE_PURESIZE): Increase to 9/5.
6233         * alloc.c (NSTATICS): Increase to 1280.
6235 2002-02-15  Kai Gro\e,A_\e(Bjohann  <Kai.Grossjohann@CS.Uni-Dortmund.DE>
6237         * alloc.c (NSTATICS): Bump to 1026.
6239         * xterm.c (Vx_alt_keysym, Vx_hyper_keysym, Vx_meta_keysym)
6240         (Vx_super_keysym): New variables.
6241         (syms_of_xterm): DEFVAR_LISP them.
6242         (x_x_to_emacs_modifiers, x_emacs_to_x_modifiers): Use the
6243         variables to determine which keys to use for the various modifiers.
6245 2002-02-13  Kim F. Storm  <storm@cua.dk>
6247         * window.c: (Vmode_line_in_non_selected_windows): Removed.
6248         (mode_line_in_non_selected_windows): New variable.
6249         (syms_of_window): DEFVAR_BOOL it.
6251         * dispextern.h (CURRENT_MODE_LINE_FACE_ID_3):
6252         Use mode_line_in_non_selected_windows.
6253         (mode_line_in_non_selected_windows): Declare extern.
6254         (Vmode_line_in_non_selected_windows): Removed extern.
6256 2002-02-13  Richard M. Stallman  <rms@gnu.org>
6258         * keyboard.c (Fthis_command_keys, Fthis_command_keys_vector)
6259         (Fthis_single_command_keys, Fthis_single_command_raw_keys)
6260         (Fclear_this_command_keys): Doc fixes.
6262         * xfaces.c (Finternal_make_lisp_face, Finternal_copy_lisp_face)
6263         (update_face_from_frame_parameter): Increment face_change_count
6264         and windows_or_buffers_changed to force redisplay using changed faces.
6266         * xdisp.c (QCpropertize): New variable.
6267         (mode_line_proptrans_alist): New variable.
6268         (display_mode_element): New arg PROPS; all calls changed.
6269         Implement this, for strings.
6270         Handle literal output of strings by sharing the
6271         main-line code for strings, using local var `literal'.
6272         Handle :propertize feature.
6273         (syms_of_xdisp): Initialze and staticpro QCpropertize and
6274         mode_line_proptrans_alist.
6276 2002-02-11  Kim F. Storm  <storm@cua.dk>
6278         * window.c: (Vmode_line_in_non_selected_windows): New variable.
6279         (syms_of_window): DEFVAR_LISP it.
6281         * dispextern.h (CURRENT_MODE_LINE_FACE_ID_3): New macro.
6282         (CURRENT_MODE_LINE_FACE_ID): Use it.
6283         (Vmode_line_in_non_selected_windows): Declare extern.
6285         * xdisp.c (display_mode_lines): Use CURRENT_MODE_LINE_FACE_ID_3
6286         to get mode line face.
6288 2002-02-11  Eli Zaretskii  <eliz@is.elta.co.il>
6290         * msdos.c (Vx_bitmap_file_path, x_stretch_cursor_p): Remove these
6291         variables; cus-start.el doesn't need them anymore.
6293 2002-02-09  Kim F. Storm  <storm@cua.dk>
6295         * insdel.c (make_gap_smaller): Preserve BEG_UNCHANGED during gap
6296         reduction.  This fixes a display problem where stray newlines were
6297         inserted in the window (corrected by C-l).  Clarified code (IMHO).
6299 2002-02-09  Eli Zaretskii  <eliz@is.elta.co.il>
6301         * dispextern.h (CURRENT_MODE_LINE_FACE_ID): Fix last change.
6303         * xdisp.c (display_mode_lines): Fix last change.
6305 2002-02-09  Jason Rumney  <jasonr@gnu.org>
6307         * w32fns.c (enum_font_cb2): Don't let charsets unknown to Windows
6308         match each other.
6309         (w32_load_system_font): Prevent Cleartype fonts from loading.
6310         (Fx_show_tip): Ensure tip frames are above other topmost windows.
6312 2002-02-09  Kim F. Storm  <storm@cua.dk>
6314         * dispextern.h (CURRENT_MODE_LINE_FACE_ID): New macro.
6315         (CURRENT_MODE_LINE_HEIGHT): Use it.
6316         (enum face_id): Add MODE_LINE_INACTIVE_FACE_ID.
6318         * xdisp.c (window_box_height): Use CURRENT_MODE_LINE_FACE_ID.
6319         (pos_visible_p, handle_face_prop): Likewise.
6320         (display_mode_lines): Likewise, but for the real selected window.
6321         (init_iterator) [row == NULL]: Handle MODE_LINE_INACTIVE_FACE_ID.
6323         * xfaces.c (Qmode_line_inactive): New face variable for mode-line
6324         in non-selected windows.
6325         (realize_basic_faces): Realize it.
6326         (syms_of_term): Intern and staticpro it.
6328 2002-02-08  Kim F. Storm  <storm@cua.dk>
6330         * alloc.c (SETJMP_WILL_LIKELY_WORK, SETJMP_WILL_NOT_WORK):
6331         Changed mail addresses to emacs-devel@gnu.org.
6333 2002-02-08  Eli Zaretskii  <eliz@is.elta.co.il>
6335         * fileio.c (Fsubstitute_in_file_name): If the file name includes
6336         ~user, and there's no such user, don't discard everything before ~user.
6338         * floatfns.c (Fround): Doc fix.
6340 2002-02-08  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
6342         * sysdep.c (init_system_name): Put unused variable `p' in #if 0.
6344 2002-02-07  Stefan Monnier  <monnier@cs.yale.edu>
6346         * lisp.h (Fx_file_dialog): Add extern decl (used in fileio.c).
6348 2002-02-07  Kim F. Storm  <storm@cua.dk>
6350         * keymap.c (where_is_internal): Only check whether definition is
6351         remapped if it fulfills is_command_symbol.
6353 2002-02-07  Andreas Schwab  <schwab@suse.de>
6355         * s/gnu-linux.h (GC_LISP_OBJECT_ALIGNMENT): Define to 2 for m68k.
6357         * alloc.c (mark_stack): Don't assume sizeof (Lisp_Object) is 4.
6359 2002-02-06  Kim F. Storm  <storm@cua.dk>
6361         * keymap.c (Fdefine_key): Allow symbol as KEY argument for
6362         defining command remapping.  Doc updated.
6363         (Flookup_key): Remap command through keymap if KEY is a symbol.
6364         (is_command_symbol): New function.
6365         (Fkey_binding): Use it.  New optional argument NO-REMAP.
6366         Doc updated.  Callers changed.  Perform command remapping via
6367         recursive call unless that arg is non-nil.
6368         (where_is_internal): New argument no_remap.  Callers changed.
6369         Call recursively to find original key bindings for a remapped
6370         comand unless that arg is non-nil.
6371         (Fwhere_is_internal): New optional argument NO-REMAP.
6372         Doc updated.  Callers changed.  Pass arg to where_is_internal.
6374         * keymap.h (Fkey_binding, Fwhere_is_internal): Update prototype.
6375         (is_command_symbol): Added prototype.
6377         * keyboard.c (Vthis_original_command): New variable.
6378         (syms_of_keyboard): DEFVAR_LISP it.
6379         (command_loop_1): Set it, and perform command remapping.
6381 2002-02-06  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
6383         * keyboard.c (recursive_edit_1): Call cancel_hourglass unconditionally.
6385 2002-02-06  Jason Rumney  <jasonr@gnu.org>
6387         * w32term.c (w32_native_per_char_metric): Disable 2002-01-20 change.
6389 2002-02-06  Eli Zaretskii  <eliz@is.elta.co.il>
6391         * charset.c (get_charset_id): Use if-else instead of ?:.
6393 2002-02-06  Richard M. Stallman  <rms@gnu.org>
6395         * filelock.c (S_ISLNK): Define if not defined.
6397 2002-02-03  Richard M. Stallman  <rms@gnu.org>
6399         * fileio.c (Fdo_auto_save): Improve "auto save disabled" msg.
6401         * lread.c (read1): Redesign strategy for force_multibyte and
6402         force_singlebyte.  Now is_multibyte records whether read_buffer
6403         is multibyte.  Encountering any multibyte character makes it so.
6405 2002-02-02  Stefan Monnier  <monnier@cs.yale.edu>
6407         * term.c (term_get_fkeys_1): If `k0' and `k;' are both specified and
6408         with the same sequence, map that sequence to f10 rather than f0.
6410 2002-02-03  Andreas Schwab  <schwab@suse.de>
6412         * s/gnu-linux.h: Check for __mc68000__ instead of __m68k__, the
6413         latter never being defined on GNU/Linux.
6415 2002-02-02  Eli Zaretskii  <eliz@is.elta.co.il>
6417         * xfaces.c (realize_default_face): Don't set the weight and slant of
6418         the default face to Qnormal, unless these attributes are unspecified.
6420 2002-02-02  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
6422         * keyboard.c (command_loop_1) [HAVE_X_WINDOWS]:
6423         Call cancel_hourglass unconditionally.
6425         * eval.c (Fsignal): Remove duplicated declaration of
6426         the variable `display_hourglass_p'.
6428 2002-01-31  Richard M. Stallman  <rms@gnu.org>
6430         * editfns.c (region_limit): Nicer error message.
6432         * coding.c (decode_composition_emacs_mule):
6433         Give up if NCOMPONENT gets too large to index `component'.
6435         * callint.c (check_mark): New arg to specify clearer error message.
6436         Callers changed.
6438 2002-01-27  Richard M. Stallman  <rms@gnu.org>
6440         * minibuf.c (Fcompleting_read): Doc fix.
6442 2002-01-27  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
6444         * minibuf.c (Fread_from_minibuffer, Fread_command, Fread_function)
6445         (Fread_variable, Fread_buffer, minibuffer-completion-confirm):
6446         Fix doc-strings.
6448 2002-01-26  Richard M. Stallman  <rms@gnu.org>
6450         * buffer.c (syms_of_buffer): Doc fixes for scroll-...-aggressively.
6452         * xdisp.c (try_scrolling): Exchange uses of scroll_down_aggressively
6453         and scroll_up_aggressively.
6455 2002-01-26  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
6457         * keyboard.c (parse_tool_bar_item): Remove duplicated prototypes.
6459 2002-01-25  Stefan Monnier  <monnier@cs.yale.edu>
6461         * textprop.c (Fnext_property_change, Fnext_single_property_change)
6462         (Fprevious_property_change, Fprevious_single_property_change):
6463         Stay within the narrowed-buffer boundaries.
6465 2002-01-25  Eli Zaretskii  <eliz@is.elta.co.il>
6467         * term.c (Ftty_display_color_cells): New function.
6468         (syms_of_term): Defsubr it.
6469         (Ftty_display_color_cells, Ftty_display_color_p): Change the
6470         argument name to DISPLAY.  Doc fix.
6472         * dispextern.h: Add prototype for set_tty_color_mode and
6473         tty_setup_colors.
6475 2002-01-24  Jason Rumney  <jasonr@gnu.org>
6477         * w32term.c (x_scroll_run): Use ScrollWindowEx in place of BitBlt.
6478         If region left to draw is not what was expected, mark the frame as
6479         garbaged.
6481         * w32fns.c (w32_wnd_proc) <WM_PAINT>: Initialize update_rect.
6482         Combine the regions returned by BeginPaint and GetUpdateRect.
6484 2002-01-23  Jason Rumney  <jasonr@gnu.org>
6486         * w32term.c (x_update_window_begin): Only hide caret if
6487         w32_use_visible_system_caret is set.
6488         (x_update_window_end): Only show caret if
6489         w32_use_visible_system_caret is set.
6490         (syms_of_w32term): Handle SystemParametersInfo call failing.
6492         * w32fns.c (syms_of_w32fns): Initialize w32_visible_system_caret_hwnd.
6494 2002-01-22  Richard M. Stallman  <rms@gnu.org>
6496         * unexelf.c (unexec): Define n so as to cause compilation error
6497         for the code where people have often written n instead of nn.
6499         * .gdbinit (hookpost-run): Defined.
6501 2002-01-22  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
6503         * xfns.c (x_set_frame_parameters): Typo in previous fix corrected.
6505 2002-01-21  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
6507         * xfns.c (x_set_frame_parameters): Just call x_fullscreen_adjust
6508         if fullscreen is being set.
6510 2002-01-21  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
6512         * minibuf.c (Fminibuffer_contents)
6513         (Fminibuffer_contents_no_properties, Fread_from_minibuffer)
6514         (Fread_string, Fread_no_blanks_input, Fcompleting_read): Doc fixes.
6516 2002-01-21  Richard M. Stallman  <rms@gnu.org>
6518         * window.c (check_frame_size): Fix minimum height calculation.
6520 2002-01-20  Ken Raeburn  <raeburn@gnu.org>
6522         * dispextern.h (WINDOW_WANTS_MODELINE_P): Use XFASTINT on window
6523         height before comparison.
6524         (WINDOW_WANTS_HEADER_LINE_P): Likewise.
6526 2002-01-20  Jason Rumney  <jasonr@gnu.org>
6528         * w32term.c (w32_system_caret_width): Remove.
6529         (w32_use_visible_system_caret): New user flag.
6530         (syms_of_w32term): DEFVAR_BOOL it.  Initialize based on whether
6531         Windows reports a screen reader running.
6532         (x_update_window_begin): Hide the system caret.
6533         (x_update_window_end): Show the system caret.
6534         (x_display_and_set_cursor): Don't draw a cursor when
6535         w32_use_visible_system_caret is set.  Do not adjust width.
6537         * w32fns.c (w32_visible_system_caret_hwnd): New static variable.
6538         (w32_wnd_proc) <WM_KILL_FOCUS, WM_EMACS_DESTROY_CARET>: Set it.
6539         <WM_EMACS_TRACK_CARET>: Arrange for system caret to be visible if
6540         the user requests it.  Use system default width when creating.
6541         <WM_EMACS_HIDE_CARET, WM_EMACS_SHOW_CARET>: Handle new messages.
6543         * w32term.h (WM_EMACS_SHOW_CARET, WM_EMACS_HIDE_CARET):
6544         New window messages.
6546 2002-01-20  Richard M. Stallman  <rms@gnu.org>
6548         * window.c (MIN_SAFE_WINDOW_HEIGHT): Value now 1.
6550 2002-01-20  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
6552         * doprnt.c (doprnt1): Fix typos in error call.
6554 2002-01-20  Eli Zaretskii  <eliz@is.elta.co.il>
6556         * unexelf.c (unexec) [__sgi]: Support the .got sections.
6558 2002-01-20  Jason Rumney  <jasonr@gnu.org>
6560         * w32term.c (w32_native_per_char_metric): Don't trust the metrics
6561         that Windows returns.  If a double check fails, try to guess how
6562         ExtTextOut is going to act.
6564         * w32fns.c (w32_load_system_font, w32_to_x_charset): Use strnicmp
6565         in place of stricmp.
6566         (w32_list_synthesized_fonts): Removed.
6567         (w32_to_all_x_charsets, enum_font_maybe_add_to_list): New functions.
6568         (struct enumfont_t): New element; list.
6569         (enum_font_cb2): List all style and charset variations of a font.
6570         (Fw32_select_font): New optional argument; include_proportional.
6571         Exclude vertical fonts.  Exclude proportional fonts unless
6572         include_proportional is non-nil.
6573         (w32_enable_synthesized_fonts): Change to a boolean.
6574         (Fw32_send_sys_command): Doc fix.
6576 2002-01-19  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
6578         * dispnew.c (update_frame): Move the variable `tem' to the block
6579         where it is used.
6581 2002-01-19  Jason Rumney  <jasonr@gnu.org>
6583         * w32fns.c (Fx_create_frame): Bind redisplay-dont-pause around
6584         call to face-set-after-frame-default.
6586 2002-01-18  Richard M. Stallman  <rms@gnu.org>
6588         * dispextern.h (WINDOW_WANTS_MODELINE_P): Check window height > 1.
6589         (WINDOW_WANTS_HEADER_LINE_P): Check window height provides room.
6591 2002-01-17  Richard M. Stallman  <rms@gnu.org>
6593         * window.c (enlarge_window): When exceeding size of parent,
6594         directly delete all the siblings instead of trying to resize it.
6596 2002-01-17  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
6598         * term.c (set_tty_color_mode): Remove unused variable `tem'.
6600 2002-01-16  Henrik Enberg  <henrik@enberg.org>
6602         * lread.c (init_lread): Move the installed-lisp dirs later in the path.
6604 2002-01-16  Kim F. Storm  <storm@cua.dk>
6606         * xterm.c (x_erase_phys_cursor): Don't erase cursor if cursor row
6607         is invisible.  This can happen if cursor is on top line of a
6608         window, and we switch to a buffer with a header line.
6610         * w32term.c (x_erase_phys_cursor): Ditto.
6612 2002-01-16  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
6614         * xterm.c (XTread_socket) [!USE_X_TOOLKIT]: Compute the value of
6615         `dont_resize' only when used.
6617         * xdisp.c: Remove forgotten extern declaration of `Qimage'.
6619 2002-01-15  Eli Zaretskii  <eliz@is.elta.co.il>
6621         * xdisp.c (display_mode_element): When computing charpos, depend
6622         on multibyteness of elt, not the text in field.
6624 2002-01-15  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
6626         * buffer.c (Fkill_all_local_variables):
6627         Increment `update_mode_lines' only once.
6629 2002-01-14  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
6631         * lisp.h (adjust_after_replace_noundo)
6632         (Fupdate_coding_systems_internal): Add prototypes.
6634         * sound.c (Fplay_sound): Initialize header_size also for :data case.
6636 2002-01-14  Eli Zaretskii  <eliz@is.elta.co.il>
6638         Support for the --color command-line argument and tty-color-mode
6639         frame parameter:
6641         * term.c (tty_default_color_capabilities, tty_setup_colors)
6642         (set_tty_color_mode): New functions.
6643         (term_init): Call tty_default_color_capabilities.
6644         (Qtty_color_mode_alist): New variable.
6645         (syms_of_term): Intern and staticpro it.
6647         * frame.c (store_frame_param): Call set_tty_color_mode for termcap
6648         frames.
6649         (do_switch_frame): For termcap frames, switch the tty
6650         color mode as specified by the frame's parameters.
6651         (Qtty_color_mode): New variable.
6652         (syms_of_frame): Intern and staticpro it.
6654         * emacs.c (USAGE2): Add the --color option.
6655         (standard_args): Ditto.
6657 2002-01-13  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
6659         * xterm.h (struct x_output): New members want_fullscreen,
6660         x_pixels_diff, y_pixels_diff, x_pixels_outer_diff, and
6661         y_pixels_outer_diff.
6662         New enum for FULLSCREEN_* constants.
6663         (FRAME_OUTER_WINDOW): Handle the case where output_data.x->widget
6664         is NULL.
6665         (x_fullscreen_adjust): Add prototype.
6667         * emacs.c (USAGE2): Add the new full-screen arguments.
6668         (standard_args): Ditto.
6670         * xfns.c (Qfullscreen, Qfullwidth, Qfullheight, Qfullboth):
6671         New variables.
6672         (syms_of_xfns): Intern and staticpro them.
6673         (x_frame_parms) <"fullscreen">: New parameter.
6674         (x_fullscreen_move, x_set_fullscreen): New functions.
6675         (x_set_frame_parameters): Support for Qfullscreen.
6676         (x_real_positions): More accurate computation of the frame position.
6677         (x_figure_window_size): Support full-screen frames.
6678         (Fx_create_frame): Default the fullscreen parameter.
6680         * xterm.c (x_check_fullscreen, x_fullscreen_adjust): New functions.
6681         (XTread_socket) <Expose>: Call x_check_fullscreen.
6682         <ConfigureNotify>: Don't resize to fullscreen.
6683         Call x_check_fullscreen_move, and set the want_fullscreen member of
6684         output_data.x.
6686 2002-01-13  Jason Rumney  <jasonr@gnu.org>
6688         * w32term.h (WM_XBUTTONDOWN, WM_XBUTTONUP): New window messages
6689         for mice with more than 3 buttons.
6691         * w32term.c (parse_button): New parameter xbutton.  Callers changed.
6692         (w32_read_socket): Handle new "XBUTTON" messages.
6694         * w32fns.c (w32_pass_extra_mouse_buttons_to_system): New user option.
6695         (syms_of_w32fns): DEFVAR_BOOL it.
6696         (w32_wnd_proc): Handle new "XBUTTON" messages.
6698 2002-01-13  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
6700         * keyboard.c (read_key_sequence): Remove unused variable `extra_maps'.
6702 2002-01-13  Andreas Schwab  <schwab@suse.de>
6704         * xterm.c (x_load_font): Never set fonts_changed_p to zero.
6706 2002-01-12  Andreas Schwab  <schwab@suse.de>
6708         * .gdbinit (xbuffer): Remove address operator since data is now a
6709         pointer.
6711 2002-01-11  Richard M. Stallman  <rms@gnu.org>
6713         * insdel.c (adjust_after_replace_noundo): New function.
6715         * coding.c (code_convert_region): Don't copy old text if undo disabled.
6717 2002-01-09  Jason Rumney  <jasonr@gnu.org>
6719         * xdisp.c (x_consider_frame_title): Don't count the tooltip frame
6720         when checking for multiple frames.
6722 2002-01-08  Richard M. Stallman  <rms@gnu.org>
6724         * window.c (delete_window): Rewrite the code for changing the
6725         selected window to handle the case where WINDOW is not a leaf.
6727 2002-01-07  Eli Zaretskii  <eliz@is.elta.co.il>
6729         * process.c (send_process): Set src_multibyte to 1 after the call
6730         top setup_coding_system, not before the call.
6732 2002-01-07  Jason Rumney  <jasonr@gnu.org>
6734         * xmenu.c (set_frame_menubar, xmenu_show):
6735         (xdialog_show): Initialize wv->help to Qnil.
6737         * w32menu.c (single_submenu, set_frame_menubar, w32_menu_show):
6738         (w32_dialog_show): Initialize wv->help to Qnil.
6740 2002-01-06  Jason Rumney  <jasonr@gnu.org>
6742         * xmenu.c (single_submenu): Initialize wv->help to Qnil.
6744         * w32menu.c (w32_menu_display_help): Revert last change.
6746         * xmenu.c (menu_highlight_callback): Revert last change.
6748 2002-01-06  Andreas Schwab  <schwab@suse.de>
6750         * insdel.c (make_gap_larger): Make sure buffer size does not
6751         overflow range of int.
6753 2002-01-05  Jason Rumney  <jasonr@gnu.org>
6755         * w32term.c (x_draw_glyphs): Don't call notice_overwritten_cursor if
6756         OVERLAPS_P.
6758         * w32menu.c (w32_menu_display_help): Hide any tooltip window.
6760         * w32fns.c (compute_tip_xy): If tooltip won't fit on the screen
6761         to the left or to the right of the pointer, put it against
6762         the left screen edge.
6763         (x_frame_parms): Add missing braces around initializer.
6765         * w32term.c (x_setup_relief_colors): Don't compute an image's
6766         background color if it doesn't have a Pixmap.
6767         (notice_overwritten_cursor): Don't depend on
6768         output_cursor and updated_area.  Compare pixel coordinates with
6769         window's cursor pixel coordinates.
6770         (x_draw_glyphs, x_clear_end_of_line, show_mouse_face):
6771         Call notice_overwritten_cursor with new arg list.
6772         (show_mouse_face): Fix bug setting a row's mouse_face_p flag
6773         unconditionally.
6774         (x_draw_image_relief): Use predefined macro instead of
6775         constant when the value of `tool_bar_button_relief' is negative.
6777         * w32term.c (x_display_and_set_cursor): Fix PostMessage arg types.
6779 2002-01-04  Richard M. Stallman  <rms@gnu.org>
6781         * xmenu.c (menu_highlight_callback): Hide any tooltip window.
6783 2002-01-03  Richard M. Stallman  <rms@gnu.org>
6785         * keymap.c (Fcurrent_active_maps): Put the `keymap' property map first.
6786         (Fkey_binding): Try the `keymap' property map first.
6787         (Fdescribe_buffer_bindings): Show `keymap' property bindings before
6788         minor mode bindings.
6790 2002-01-03  Kim F. Storm  <storm@cua.dk>
6792         * keyboard.c (read_key_sequence): Fixed cast of submaps arg to bcopy.
6794 2002-01-02  Richard M. Stallman  <rms@gnu.org>
6796         * keyboard.c (read_key_sequence): Handle the keymap property
6797         before minor mode maps.
6799         * editfns.c (Fformat): Update thissize from field_width
6800         based on the actual width, in the string case.
6802 2002-01-01  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
6804         * charset.h (UNIBYTE_STR_AS_MULTIBYTE_P): Parenthesize assignment
6805         when used as truth value to prevent gcc warnings.
6807         * sysdep.c, unexapollo.c, w32.c, w32bdf.c, w32heap.c, w32inevt.c,
6808         * w32proc.c: Include <config.h>.
6810 2002-01-01  Andreas Schwab  <schwab@suse.de>
6812         * eval.c (max_specpdl_size, max_lisp_eval_depth): Define as int,
6813         not EMACS_INT, to make them compatible with DEFVAR_INT.
6814         * lisp.h (max_specpdl_size): Adjust declaration.
6816 2002-01-01  Richard M. Stallman  <rms@gnu.org>
6818         * print.c (print_object): Test print_escape_nonascii only for
6819         unibyte strings.
6820         (PRINTPREPARE): Once again bind Qprint_escape_nonascii
6821         when outputting to a multibyte buffer.
6823 2001-12-29  Richard M. Stallman  <rms@gnu.org>
6825         * print.c (print_object): In multibyte string, use hex escapes.
6826         Use octal only for unibyte strings.
6827         (PRINTPREPARE): Don't ever set Qprint_escape_nonascii.
6829         * lread.c (read_escape): New arg BYTEREP for reporting whether
6830         escape forces unibyte or multibyte.
6831         (read1): When reading a string, take note of that info.
6833 2001-12-29  Ken Raeburn  <raeburn@gnu.org>
6835         * abbrev.c (Fexpand_abbrev): Use NILP instead of implicit zero
6836         comparison to test lisp value returned by Fget.
6838 2001-12-29  Richard M. Stallman  <rms@gnu.org>
6840         * lisp.h (max_specpdl_size): Add declaration.
6842         * fileio.c (Fdo_auto_save): If NO_MESSAGE, don't call push_message.
6844         * keymap.c (silly_event_symbol_error): New subrtn, from Fdefine_key.
6845         Handle modifier bits.  Correct typo in error message.
6847 2001-12-28  Richard M. Stallman  <rms@gnu.org>
6849         * abbrev.c: Use the plist of an abbrev for multiple params if nec.
6850         (Fdefine_abbrev): New arg SYSTEM-FLAG for a system abbrev.
6851         (Fdefine_global_abbrev, Fdefine_mode_abbrev):
6852         Update calls to Fdefine_abbrev.
6853         (write_abbrev): Update for changed data format.
6854         Don't list "system" abbrevs.
6855         (Fexpand_abbrev): Update use count with new data format.
6856         (describe_abbrev): Update for changed data format.
6857         (Fdefine_abbrev_table): Handle the new SYSTEM-FLAG.
6859         * config.in (HAVE_MBSINIT): Add #undef.
6861         * strftime.c (mbsinit): Define as no-op if not available.
6863         * s/sco5.h (LIBX11_SYSTEM) [MOTIF]: Add -lgen.
6864         (sigprocmask_set): Conditionalize decl on ! NOT_C_CODE.
6866         * keymap.c (Flookup_key): Error message if key has wrong data type.
6867         (Fdefine_key): Add error message for trying to bind [DEL], [RET], etc.
6868         (exclude_key): New variable.
6870 2001-12-28  Gerd Moellmann  <gerd@gnu.org>
6872         * xterm.c (x_setup_relief_colors): Don't compute an image's
6873         background color if it doesn't have a Pixmap.
6875         * xterm.c (notice_overwritten_cursor): Don't depend on
6876         output_cursor and updated_area.  Compare pixel coordinates with
6877         window's cursor pixel coordinates.
6878         (x_draw_glyphs, x_clear_end_of_line, show_mouse_face):
6879         Call notice_overwritten_cursor with new arg list.
6880         (show_mouse_face): Fix bug setting a row's mouse_face_p flag
6881         unconditionally.
6883         * xdisp.c (try_scrolling) <PT below scroll margin>: Add the
6884         height of the cursor line to the amount to scroll.
6886 2001-12-27  Richard M. Stallman  <rms@gnu.org>
6888         * intervals.c (set_point_both): The position after an invisible,
6889         intangible character is not an acceptable stopping point.
6891 2001-12-27  Ken Raeburn  <raeburn@gnu.org>
6893         * window.c (enlarge_window): In new preserve_before code, convert
6894         CURBEG from lisp object to integer before doing arithmetic.
6896 2001-12-27  Richard M. Stallman  <rms@gnu.org>
6898         * bytecode.c (Fbyte_code): Undo previous change.
6900 2001-12-26  Kim F. Storm  <storm@cua.dk>
6902         * keyboard.c (record_char): Ignore duplicate help-echo events only
6903         separated by mouse-movement.  When tracking mouse, only record
6904         first and last mouse-movement event in same window.
6905         Don't record mouse-movement events in keyboard macros.
6907 2001-12-25  Richard M. Stallman  <rms@gnu.org>
6909         * window.c (enlarge_window): New arg PRESERVE_BEFORE.  Callers changed.
6910         (Fenlarge_window): New arg PRESERVE_BEFORE.
6912         * bytecode.c (Fbyte_code): Use Fstring_make_unibyte
6913         instead of Fstring_as_unibyte.
6915 2001-12-22  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
6917         The following changes remove mocklisp support:
6919         * mocklisp.h, mocklisp.c: Files removed.
6921         * lisp.h: Remove declarations of variables `Vmocklisp_arguments',
6922         `Qmocklisp' and `Qmocklisp_arguments'.
6923         Remove prototype of syms_of_mocklisp.
6925         * makefile.nt, makefile.w32-in, Makefile.in: Remove mocklisp files.
6927         * callint.c: Do not include mocklisp.h.
6928         (Fcall_interactively): Do not test for mocklisp case.
6930         * eval.c: Remove variables `Qmocklisp_arguments',
6931         `Vmocklisp_arguments' and `Qmocklisp'.  Remove prototype of ml_apply.
6932         (Fprogn, Fwhile, Fcommandp, Feval, Ffuncall, funcall_lambda):
6933         Do not test for mocklisp case.
6934         (Fwhile): Remove unused variable `tem'.
6935         (syms_of_eval): Remove variable `moclisp-arguments'.
6937         * data.c (wrong_type_argument): Remove mocklisp case.
6939         * doc.c (Fdocumentation): Remove mocklisp case.
6941         * emacs.c (main): Do not call syms_of_mocklisp.
6943 2001-12-21  Richard M. Stallman  <rms@gnu.org>
6945         * xfns.c (compute_tip_xy): If tooltip won't fit on the screen
6946         to the left or to the right of the pointer, put it against
6947         the left screen edge.
6949 2001-12-21  Eli Zaretskii  <eliz@is.elta.co.il>
6951         * Makefile.in (distclean): Remove .gdbinit if we are building
6952         outside the source tree.
6954 2001-12-19  Eli Zaretskii  <eliz@is.elta.co.il>
6956         * w32.c (emacs_root_dir): New function.
6958         * msdos.c (emacs_root_dir): New function.
6960         * fileio.c (Fexpand_file_name) [DOS_NT]: Use the root directory
6961         of the current drive as the fallback for default_directory.
6963         * dired.c (file_name_completion): Run the elements of
6964         completion-ignored-extensions through ENCODE_FILE.
6966         * lisp.h (scmp): Remove prototype, since it's now a static
6967         function private to dired.c.
6969 2001-12-18  Richard M. Stallman  <rms@gnu.org>
6971         * dired.c (scmp): Function moved from minibuf.c.
6972         Delete multibyte handling--used only on encoded strings.
6974         * minibuf.c (scmp): Function moved to dired.c.
6976         * fns.c (merge): Add QUIT call.
6978 2001-12-18  Dave Love  <fx@gnu.org>
6980         * Makefile.in (lisp, shortlisp): Add language/utf-8-lang.el,
6981         language/georgian.el.
6983 2001-12-18  Eli Zaretskii  <eliz@is.elta.co.il>
6985         * Makefile.in (lisp, shortlisp): Synchronize with changes to
6986         lisp/Makefile.in:DONTCOMPILE.
6988 2001-12-18  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
6990         * xdisp.c (window_box_height): Do not return negative values.
6991         From Gerd Moellmann <gerd@gnu.org>.
6993         * keyboard.c (head_table): Add missing braces around initializer.
6995         * term.c (keys): Likewise.
6997         * xfns.c (x_frame_parms, visual_classes): Likewise.
6999 2001-12-17  Sam Steingold  <sds@gnu.org>
7001         * coding.c (DECODE_COMPOSITION_END): Fixed a typo in the last
7002         patch (COMPOSING_P, not COMPOSING).
7004 2001-12-17  Richard M. Stallman  <rms@gnu.org>
7006         * editfns.c (Fcompare_buffer_substrings): Add QUIT to main loop.
7008         * coding.c (code_convert_region): Update coding->cmp_data->char_offset
7009         before calling decode_coding.
7011         * charset.c (Fdefine_charset): Call Fupdate_coding_systems_internal.
7013         * coding.c (DECODE_COMPOSITION_END): Check for ! COMPOSING_P (coding)
7014         instead of only for COMPOSITION_DISABLED.
7016 2001-12-16  Richard M. Stallman  <rms@gnu.org>
7018         * alloc.c (pure_alloc): After overflow, allocate just a small block.
7020         * Makefile.in (xmenu.o, xterm.o, fontset.o): Depend on buffer.h.
7022         * buffer.h (struct buffer): New field `display_error_modiff'.
7023         * buffer.c (reset_buffer): Initialize `display_error_modiff'.
7025         * window.c (Frecenter): Clear display_error_modiff field.
7027         * xdisp.c (redisplay_window_0, redisplay_window_1): New functions.
7028         Call redisplay_window, but not if display_error_modiff field says no.
7029         (redisplay_window_error): New function.
7030         (displayed_buffer): New variable.
7031         (redisplay_internal, redisplay_windows): Call the new functions
7032         instead of redisplay_window directly.
7034 2001-12-15  Richard M. Stallman  <rms@gnu.org>
7036         * keyboard.c (syms_of_keyboard) <double-click-fuzz>: Doc fix.
7038 2001-12-14  Andrew Innes  <andrewi@gnu.org>
7040         * makefile.w32-in (EMACSLOADPATH): Define.
7041         ($(EMACS)): Run `list-load-path-shadows' after dumping emacs.
7042         (bootstrap-temacs): Remove dependency on bootstrap-clean.
7044 2001-12-13  Eli Zaretskii  <eliz@is.elta.co.il>
7046         * xfns.c (x_report_frame_params): Make the scroll-bar-width frame
7047         parameter have a numeric value all the time.
7049         * w32fns.c (x_report_frame_params): Likewise.
7051 2001-12-12  Richard M. Stallman  <rms@gnu.org>
7053         * fileio.c (Fwrite_region): Doc fix.
7055         * xdisp.c (CLEAR_FACE_CACHE_COUNT): Redefine as 500.
7056         (redisplay_internal): Call clear_image_cache only for window terminals.
7058 2001-12-12  Gerd Moellmann  <gerd@gnu.org>
7060         * xdisp.c (move_it_vertically_backward): Change heuristic
7061         for the case that we didn't move far enough initially.
7063         * window.c (Frecenter): Simplify computation in the case of window
7064         system frames and ARG < 0; use window_box_height.
7066 2001-12-11  Richard M. Stallman  <rms@gnu.org>
7068         * Makefile.in, mem-limits.h, dispnew.c, emacs.c, fileio.c:
7069         * process.c, sysdep.c, unexec.c: Test GNU_LINUX, not LINUX.
7071 2001-12-11  Andrew Innes  <andrewi@gnu.org>
7073         * insdel.c (make_gap) [DOUG_LEA_MALLOC]: Call make_gap_smaller if
7074         arg is negative.
7076 2001-12-11  Richard M. Stallman  <rms@gnu.org>
7078         * m/hp800.h: Split the __hpux conditional into the parts
7079         that are right for GNU/Linux too and the parts that are not.
7080         Use the former if GNU_LINUX.
7081         (HAVE_ALLOCA, LOAD_AVE_TYPE, LOAD_AVE_CVT): New defs for GNU/Linux.
7083         * s/gnu-linux.h (GNU_LINUX): Defined.
7085 2001-12-11  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
7087         * macros.c, msdos.c, w16select.c: Change doc-string comments to
7088         `new style' [w/`doc:' keyword].
7090 2001-12-10  Jason Rumney  <jasonr@gnu.org>
7092         * w32menu.c (w32_free_submenu_strings): Clear menu item struct
7093         before using.
7095 2001-12-09  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
7097         * dosfns.c: Change doc-string comments to `new style' [w/`doc:'
7098         keyword].
7100 2001-12-09  Eli Zaretskii  <eliz@is.elta.co.il>
7102         * dosfns.c (dos-display-scancodes, dos-decimal): Doc fix.
7104         * s/hpux10.h (srand48): Don't undefine.
7106 2001-12-09  Jason Rumney  <jasonr@gnu.org>
7108         * w32menu.c (_widget_value): Make `help' field a Lisp_Object.
7109         Add     comment to explain where the struct came from.
7110         (single_submenu, w32_menu_show): Set `help' field as Lisp_Object.
7111         (add_menu_item): Process pop-up menus first to avoid memory leak.
7112         (add_menu_item, w32_menu_display_help): Use `help' field as
7113         Lisp_Object.
7114         (w32_free_submenu_strings): Only free owner-drawn strings.
7116 2001-12-09  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
7118         * COPYING: Moved back.
7120         * charset.c (char_to_string_1, translate_char, Fdefine_charset):
7121         Add parentheses around && within ||.
7123         * indent.c (compute_motion): Likewise.
7125         * intervals.c (merge_properties_sticky): Likewise.
7127         * coding.c (setup_coding_system, shrink_encoding_region)
7128         (Fdecode_sjis_char): Likewise.
7130 2001-12-07  Andreas Schwab  <schwab@suse.de>
7132         * xdisp.c (display_mode_element): Don't read past end of string if
7133         it ends with '%'.
7135         * alloc.c (inhibit_garbage_collection): Don't exceed value an int
7136         can hold.
7138         * data.c (Vmost_positive_fixnum, Vmost_negative_fixnum):
7139         Rename from most_positive_fixnum and most_negative_fixnum, resp., and
7140         type changed to Lisp_Object.
7141         (syms_of_data): DEFVAR_LISP them.
7143 2001-12-07  Richard M. Stallman  <rms@gnu.org>
7145         * callproc.c (init_callproc): Set Vdata_directory based on the source
7146         location whenever Emacs was run uninstalled.
7148 2001-12-06  Paul Eggert  <eggert@twinsun.com>
7150         * config.in (HAVE_WORKING_VFORK): New #undefs.
7151         * process.c (create_process):
7152         Use HAVE_WORKING_VFORK, not HAVE_VFORK.
7153         * m/cnvrgnt.h (HAVE_VFORK): Remove #define.
7154         * m/ibm370aix.h (HAVE_VFORK): Remove #undef.
7155         * m/ibmps2-aix.h (HAVE_VFORK): Remove #define.
7156         * m/intel386.h (HAVE_VFORK): Likewise.
7157         * m/mips-siemens.h (HAVE_VFORK): Likewise.
7158         * m/mips.h (HAVE_VFORK): Likewise.
7159         * s/freebsd.h (vfork): Remove #define.
7160         * s/lynxos.h (HAVE_VFORK): Remove #undef.
7161         * s/usg5-4-2.h: Fix comment about vfork.
7163 2001-12-06  Richard M. Stallman  <rms@gnu.org>
7165         * s/hpux10.h (random): Add undef.
7166         (HAVE_RANDOM): Define it just once.
7168 2001-12-06  Stefan Monnier  <monnier@cs.yale.edu>
7170         * eval.c: Undo last change: the standard syntax is not wanted.
7172 2001-12-06  Eli Zaretskii  <eliz@is.elta.co.il>
7174         * xterm.c (x_free_frame_resources) [USE_X_TOOLKIT]: Remove all the
7175         scroll bars of the frame before deleting the frame itself.  If the
7176         frame has a widget, delete the frame with XtDestroyWidget, and do
7177         not call XDestroyWindow before that.
7179 2001-12-06  Kim F. Storm  <storm@cua.dk>
7181         * xfns.c (x_report_frame_params): Return actual fringe widths.
7183         * w32fns.c (x_report_frame_params): Return actual fringe widths.
7185 2001-12-05  Andrew Innes  <andrewi@gnu.org>
7187         * alloc.c (Fgarbage_collect): Shrink buffer gaps that are
7188         excessively large.
7190         * insdel.c (make_gap_larger): New function.
7191         (make_gap_smaller): New function.
7192         (make_gap) [USE_MMAP_FOR_BUFFERS || REL_ALLOC]:
7193         Call make_gap_smaller if arg is negative.
7195 2001-12-04  Stefan Monnier  <monnier@cs.yale.edu>
7197         * keyboard.c (kbd_buffer_store_event): Fix interrupt_signal prototype.
7198         Pass a dummy argument when calling interrupt_signal.
7199         (parse_menu_item): Mark disabled items before checking for empty def.
7200         (read_char_minibuf_menu_prompt): Make safety more visible.
7201         (read_key_sequence): Add a `first_unbound' variable.
7202         Use it to detect C-c ESC ESC ESC ESC ... cases and drop the
7203         unbound prefix as soon as we can detect it.
7205         * doc.c (Fsnarf_documentation): Add prototype.
7206         (get_doc_string): Handle negative arguments.
7207         (Fdocumentation): Use AREF and ASIZE.
7208         Move the calls to get_doc_string to a single place.
7209         Don't confuse an interactive-spec for a docstring reference.
7210         (Fdocumentation_property): Take advantage of the fact that
7211         get_doc_string now ignores the sign of the docstring position.
7213         * eval.c: Use standard syntax for usage in docstrings.
7215 2001-12-03  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
7217         * xdisp.c (syms_of_xdisp): Make `tool-bar-button-relief` an option.
7219 2001-12-02  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
7221         * xterm.c (x_draw_image_relief): Use predefined macro instead of
7222         constant when the value of `tool_bar_button_relief' is negative.
7224 2001-12-02  Richard M. Stallman  <rms@gnu.org>
7226         * xmenu.c (menu_highlight_callback): Use `help' field as Lisp_Object.
7227         (single_submenu, xmenu_show): Set `help' field as Lisp_Object.
7229         * fileio.c (read_non_regular): Delete Fsignal call.
7231 2001-12-01  Stefan Monnier  <monnier@cs.yale.edu>
7233         * lisp.h (run_hook_list_with_args): Undo last change.
7235 2001-12-01  Gerd Moellmann  <gerd@gnu.org>
7237         * xterm.c (x_draw_fringe_bitmap): Always undo clipping.
7239 2001-12-01  Jason Rumney  <jasonr@gnu.org>
7241         * window.c (Qleft_fringe, Qright_fringe): Remove. Now in frame.c.
7243         * w32term.h (WM_MOUSELEAVE, TME_LEAVE, TRACKMOUSEEVENT)
7244         [!WM_MOUSELEAVE]: Define.
7246         * w32menu.c (current_popup_menu, get_menu_item_info):
7247         (set_menu_item_info): New vars.
7248         (set_frame_menubar): Doc fix clarifying GC interaction with menus.
7249         (w32_menu_show): Set current_popup_menu.
7250         (add_menu_item): Allocate new strings for owner-drawn menu items
7251         and help strings.
7252         Use owner-draw for disabled menu items again.
7253         (w32_menu_display_help): Ignore owner-drawn items and popup menus.
7254         (w32_free_submenu_strings, w32_free_menu_strings): New functions.
7256         * w32fns.c (trackmouse_window, track_mouse_event_fn): New vars.
7257         (w32_wnd_proc) <WM_MOUSEMOVE>: Notice when mouse enters frame.
7258         <WM_EXITMENULOOP>: Free menu strings.
7259         <WM_MOUSELEAVE>: Stop tracking mouse.
7260         (x_create_tip_frame): Specify no minibuffer, modeline or fringes.
7262         * w32term.c (w32_read_socket) <WM_MOUSELEAVE>: Cancel help echo
7263         and mouse face.
7265 2001-12-01  Kim F. Storm  <storm@cua.dk>
7267         The following changes add left-fringe and right-fringe
7268         frame parameters to adjust fringe widths, or remove one or
7269         both fringes.
7271         * frame.h (struct frame): Remove trunc_area_pixel_width and
7272         trunc_area_cols fields.
7273         (Qleft_fringe, Qright_fringe): Declare.
7274         (FRAME_RIGHT_FRINGE_WIDTH): New macro.
7276         * frame.c (Qleft_fringe, Qright_fringe): New vars.
7277         (syms_of_frame): Initialize them.
7279         * window.c (coordinates_in_window): Handle separate left and right
7280         fringe widths.
7282         * xterm.h (struct x_output): Add left_fringe_width, right_fringe_width,
7283         and fringe_cols fields.
7284         (FRAME_FRINGE_BITMAP_WIDTH, FRAME_FRINGE_BITMAP_HEIGHT): Remove macros.
7285         (FRAME_X_FRINGE_COLS): Use fringe_cols field.
7286         (FRAME_X_FRINGE_WIDTH): Use fringes_extra field.
7287         (FRAME_X_LEFT_FRINGE_WIDTH): Use left_fringe_width field.
7288         (FRAME_X_RIGHT_FRINGE_WIDTH): Use right_fringe_width field.
7289         (x_compute_fringe_widths): Add prototype.
7291         * xterm.c (zv_height, zv_bits, zv_period): Changed zv bitmap to
7292         fill fringe evenly with small dashes.
7293         (x_draw_fringe_bitmap): Clear background if necessary. Align and
7294         clip the new ZV bitmap to avoid jitter between rows.
7295         (x_draw_row_fringe_bitmaps): Rely on x_draw_fringe_bitmap to clear
7296         background.  Don't draw fringe bitmaps if fringe width is zero.
7297         (x_compute_fringe_widths): New function.
7298         (x_new_font, x_set_window_size_1): Use it.
7300         * xfns.c (x_frame_parms): Add `left-fringe' and `right-fringe' parms.
7301         (x_set_frame_parameters): Process `font' parameter before other
7302         parameters as fringe widths depend on it.
7303         (x_set_fringe_width): New function.
7304         (x_figure_window_size): Use x_compute_fringe_widths.
7305         (Fx_create_frame): Process `left-fringe' and `right-fringe' frame
7306         parameters.
7308         * widget.c (set_frame_size): Use x_compute_fringe_widths.
7309         (EmacsFrameSetCharSize): Ditto.
7311         * w32term.h: Merged changes from xterm.h.
7312         * w32term.c: Merged changes from xterm.c.
7313         * w32fns.c: Merged changes from xfns.c.
7315 2001-11-29  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
7317         * COPYING: Removed.
7319 2001-11-29  Dave Love  <fx@gnu.org>
7321         * coding.c (syms_of_coding) <Qchar_coding_system>: Give it an
7322         extra extra slot.
7323         (detect_coding_mask): Fix call of detect_coding_iso2022.
7325 2001-11-29  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
7327         * fileio.c (file-name-coding-system)
7328         (default-file-name-coding-system): Doc fix (links to referenced
7329         variables added).
7331 2001-11-28  Stefan Monnier  <monnier@cs.yale.edu>
7333         * lisp.h (GCPRO1, GCPRO2, GCPRO3, GCPRO4, GCPRO5):
7334         Add dummy uses of gcproN variables.
7336         * category.c (describe_category, describe_category_1)
7337         (Fdescribe_categories): Remove.  (Moved to lisp/help-fns.el.)
7338         (syms_of_category): Don't defsubr Sdescribe_categories.
7340 2001-11-28  Richard M. Stallman  <rms@gnu.org>
7342         * fileio.c (Ffind_file_name_handler): Avoid initializer for `result'.
7344         * Makefile.in (lispdir): New variable, referring to build dir.
7345         (TAGS-LISP): Find Makefile in $(lispdir), not $(lispsource).
7347 2001-11-28  Andrew Innes  <andrewi@gnu.org>
7349         * w32menu.c (w32_menu_display_help): Actually add the new argument
7350         OWNER.
7352 2001-11-28  Jason Rumney  <jasonr@gnu.org>
7354         * w32menu.c (add_menu_item): Do not use owner-draw for disabled
7355         menu items.  From David Ponce <dponce@wanadoo.fr>.
7356         (w32_dialog_show) [HAVE_DIALOGS]: Compile whole function
7357         conditionally.
7358         (w32_menu_display_help): New argument OWNER. Rewritten to store a
7359         help event in the owner frame's keyboard buffer.
7361         * w32fns.c (w32_wnd_proc) <WM_MENUSELECT>: Display help directly.
7362         (Fx_show_tip): Don't subtract last width from row width.
7364         * w32term.c (w32_read_socket) <WM_MENUSELECT>: Remove.
7365         (w32_read_socket): Use EQ to compare frames.
7367 2001-11-28  Gerd Moellmann  <gerd@gnu.org>
7369         * xterm.c (x_draw_glyphs): Don't call notice_overwritten_cursor if
7370         OVERLAPS_P.
7372 2001-11-28  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
7374         * xdisp.c (message_dolog): Remove unused variables `gcpro2',
7375         `gcpro3' and `gcpro4'.
7377         * coding.c (decode_coding_string): Remove unused variable `gcpro1'.
7379 2001-11-28  Stefan Monnier  <monnier@cs.yale.edu>
7381         * ccl.c: Use AREF and ASIZE.
7383 2001-11-27  Stefan Monnier  <monnier@cs.yale.edu>
7385         * lisp.h (run_hook_list_with_args): Remove.
7386         (LIST_END_P): Fix call to wrong_type_argument.
7387         (make_fixnum_or_float): Use EMACS_INT rather than int.
7389 2001-11-26  Stefan Monnier  <monnier@cs.yale.edu>
7391         * syntax.c (syms_of_syntax): Remove defsubr of Sdescribe_syntax.
7392         (describe_syntax, describe_syntax_1, Fdescribe_syntax): Remove.
7394         * eval.c: Use AREF and ASIZE.
7395         (Ffetch_bytecode): Add the file name to the error message.
7397         * fileio.c (Ffind_file_name_handler): Give precedence to handlers
7398         which match the end of the file-name.
7399         (Fsubstitute_in_file_name): Don't signal an error if $ENVVAR
7400         is not a valid env var, but leave it as is instead.
7402         * keymap.c (access_keymap): Handle t bindings like nil bindings.
7403         Make nil bindings in char-tables transparent.
7404         (store_in_keymap): Turn a nil binding into a t binding for char-tables.
7406 2001-11-26  Richard M. Stallman  <rms@gnu.org>
7408         * textprop.c (set_text_properties_1): Allow START, END in either order.
7409         Do nothing if range is empty.
7411         * Makefile.in (mallocobj): Simplify logic using auxiliary vars.
7413         * Makefile.in (mostlyclean): Delete bootstrap-emacs here.
7414         (clean): Not here.
7416 2001-11-25  Stefan Monnier  <monnier@cs.yale.edu>
7418         * textprop.c (set_text_properties_1): Clearly mark that the
7419         interval should not be empty.
7421         * intervals.c (graft_intervals_into_buffer):
7422         Don't call set_text_properties_1 on an empty interval.
7424 2001-11-25  Richard M. Stallman  <rms@gnu.org>
7426         * unexelf.c (unexec): Index by n, not nn, when checking for ".sbss".
7428         * callproc.c (Fcall_process): When we make a bigger buffer for bufptr,
7429         don't lose the data in it.
7431 2001-11-25  Juanma Barranquero  <lektu@terra.es>
7433         * abbrev.c (Fexpand_abbrev): Use Frun_hooks instead of Vrun_hooks.
7435         * buffer.c (Fkill_buffer): Use Frun_hooks, not Vrun_hooks.
7437         * print.c (temp_output_buffer_setup): Use Frun_hooks, not Vrun_hooks.
7439 2001-11-25  Stefan Monnier  <monnier@cs.yale.edu>
7441         * xfaces.c (merge_face_heights): Coerce back to int explicitly.
7443 2001-11-25  Eli Zaretskii  <eliz@is.elta.co.il>
7445         * window.c (Fset_window_vscroll): Doc fix.  From Kalle Olavi
7446         Niemitalo <kon@iki.fi>.
7448 2001-11-25  Jason Rumney  <jasonr@gnu.org>
7450         * w32term.h (FRAME_X_FRINGE_COLS): No fringe on tip frames.
7452         * w32fns.c (x_create_tip_frame): Set frame's fringes_extra to 0.
7453         (Fx_show_tip): Block input during frame creation.
7454         (Fx_show_tip, Fx_hide_tip): Enable.
7456 2001-11-24  Richard M. Stallman  <rms@gnu.org>
7458         * lread.c (Fload): Detect recursive load error for more than 3
7459         nestings of the same file.
7460         (Vrecursive_load_depth_limit): Variable deleted.
7461         (syms_of_lread) <recursive-load-depth-limit>: Variable deleted.
7463 2001-11-24  Jason Rumney  <jasonr@gnu.org>
7465         * xfns.c (compute_tip_xy): Initialize root_x and root_y from
7466         mouse position if either left or top is not specified.
7468         * w32fns.c (w32_wnd_proc) <WM_MENUSELECT>: Revert last change.
7469         <WM_WINDOWPOSCHANGING>: Let tip frames resize without restriction.
7470         (my_create_tip_window, Fx_show_tip): Adjust size for external border.
7471         (my_create_tip_window): Assign tip_window.
7472         (x_create_tip_frame): Use same defaults as X.
7473         (compute_tip_xy): Remove unused variable.  Use full screen width.
7474         (Fx_show_tip): Do not double height. Call ShowWindow directly.
7476         * w32term.c (x_after_update_window_line): Doc fix.
7477         (w32_read_socket): Doc fix.  Avoid SET_FRAME_GARBAGED for tip
7478         frames.
7479         <WM_SHOWWINDOW>: Redo mouse highlight when hiding tip frame.
7481         * xdisp.c (prepare_menu_bars) [HAVE_WINDOW_SYSTEM]: Use tip_frame
7482         for all Windowed systems.
7484 2001-11-23  Eli Zaretskii  <eliz@is.elta.co.il>
7486         * msdos.c (IT_clear_screen): If the frame's faces are not yet
7487         realized, use the initial screen colors to clear the screen.
7489 2001-11-23  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
7491         * textprop.c (Fset_text_properties): Remove unused variables
7492         `unchanged', `prev_changed', `s' and `len'.
7494         * search.c (Freplace_match): Remove unused variable `inslen'.
7496         * keymap.c (access_keymap): Remove unused variables `c1' and `c2'.
7498 2001-11-22  Jason Rumney  <jasonr@gnu.org>
7500         * w32fns.c (x_window_to_frame): Remove irrelevant TODO comment.
7501         (w32_wnd_proc) <WM_MENUSELECT>: Show help echo directly.
7502         (my_create_tip_window): New function.
7503         (x_create_tip_frame, compute_tip_xy): Adapt for Windows.
7504         (Fx_show_tip, Fx_hide_tip) [TEST_TOOLTIPS]: Adapt for Windows.
7506 2001-11-20  Jason Rumney  <jasonr@gnu.org>
7508         * coding.h (Vw32_system_coding_system) [WINDOWSNT]: Remove.
7509         (ENCODE_SYSTEM, DECODE_SYSTEM) [WINDOWSNT]: Use Vlocale_coding_system.
7511         * w32fns.c (Vw32_system_coding_system): Remove.
7512         (w32_to_x_font, x_to_w32_font): Use Vlocale_coding_system.
7514 2001-11-19  Stefan Monnier  <monnier@cs.yale.edu>
7516         * fileio.c (Fwrite_region): Move choose_write_coding_system to
7517         after build_annotations.
7519         * syntax.c (describe_syntax): Add dummy arg.
7520         (describe_syntax_1): Update call to describe_vector.
7522         * category.c (describe_category): Add dummy arg.
7523         (describe_category_1): Update call to describe_vector.
7525         * keymap.c (Fdescribe_vector): Add `describer' parameter.
7526         (describe_command, describe_translation): Add dummy second param.
7527         (describe_map): Call elt_describer with two arguments.
7528         (describe_vector_princ): Add `fun' parameter.
7529         Call it instead of the hardcoded `princ'.
7530         (describe_vector): Add arg `args'.
7531         Pass it as a new second argument to elt_describer.
7533         * keymap.h (describe_vector): Update prototype.
7535         * frame.c: Don't include keymap.h any more.
7536         (keys_of_frame): Remove.
7538         * lisp.h (keys_of_frame): Remove declaration.
7540         * emacs.c (main): Don't call `keys_of_frame' any more.
7542 2001-11-14  Andreas Schwab  <schwab@suse.de>
7544         * unexelf.c [!defined MAP_ANON]: Define MAP_ANON to MAP_ANONYMOUS
7545         if defined, 0 otherwise.
7546         (MAP_FAILED): Define if not defined and use it to test mmap failure.
7547         (unexec) [!MAP_ANON]: Use /dev/zero as file to map.
7549 2001-11-19  Richard M. Stallman  <rms@gnu.org>
7551         * indent.c (current_column_1): Fix handling of scan_bytes for mb chars.
7553 2001-11-18  Jason Rumney  <jasonr@gnu.org>
7555         * w32term.c (note_mouse_highlight): Fix type of variable `ignore'.
7556         (x_draw_bar_cursor): If the background color of the glyph under
7557         the cursor equals the frame's cursor color, use the glyph's
7558         foreground color for drawing the bar cursor.
7559         (x_after_update_window_line): Clear internal border in different
7560         circumstances.
7561         (w32_set_vertical_scroll_bar): Check for width and height > 0.
7562         (w32_draw_relief_rect): Correct relief by 1 pixel.
7563         (x_set_glyph_string_background_width):
7564         Set extends_to_end_of_line_p if the row's fill_line_p is set and
7565         drawing the last glyph with DRAW_IMAGE_{RAISED,SUNKEN}.
7566         (x_display_and_set_cursor): If cursor_in_echo_area, use NO_CURSOR
7567         if cursor_in_non_selected_windows is false.
7568         (show_mouse_face): Clean up.  Recognize overwritten cursor differently.
7569         (x_draw_glyphs): Remove parameters REAL_START and REAL_END.
7570         Notice if cursor gets overwritten.
7571         (notice_overwritten_cursor): Renamed from
7572         note_overwritten_text_cursor.  Rewritten to take glyph widths
7573         into account, and to take X positions as parameters.
7574         (x_draw_phys_cursor_glyph): Save state of w->phys_cursor_on_p
7575         around call to x_draw_glyphs.
7576         (x_setup_relief_colors): Use `IMAGE_BACKGROUND' and
7577         `IMAGE_BACKGROUND_TRANSPARENT' to calculate the correct background
7578         color to use for image glyph reliefs.
7579         (x_draw_image_relief): Accept zero tool_bar_button_relief.
7580         (glyph_rect): Remove unused variable `area'.
7582         * w32fns.c (x_set_frame_parameters): Avoid infinite recursion for
7583         some items.
7584         (x_set_internal_border_width): Set frame garbaged when window
7585         doesn't exist yet.
7586         (Fx_create_frame): Accept zero tool_bar_button_relief.
7587         (x_clear_image_1, four_corners_best, image_background)
7588         (image_background_transparent): New functions.
7589         (xpm_format, png_format, jpeg_format, tiff_format, gif_format)
7590         (gs_format): Add `:background' entry.
7591         (lookup_image): Set IMG's background color if specified.
7592         (pbm_load, xbm_load_image, png_load): Set IMG's background field
7593         when appropriate.
7594         (x_clear_image_1): Reset `background_valid' and
7595         `background_transparent_valid' fields.
7596         (x_build_heuristic_mask): Use IMAGE_BACKGROUND instead of
7597         calculating it here.  Set IMG's background_transparent field.
7598         (enum xpm_keyword_index): Add XPM_BACKGROUND.
7599         (enum png_keyword_index): Add PNG_BACKGROUND.
7600         (enum jpeg_keyword_index): Add JPEG_BACKGROUND.
7601         (enum tiff_keyword_index): Add TIFF_BACKGROUND.
7602         (enum gif_keyword_index): Add GIF_BACKGROUND.
7603         (enum gs_keyword_index): Add GS_BACKGROUND.
7604         (pbm_load, png_load, jpeg_load, tiff_load, gif_load):
7605         Pre-calculate image background color where necessary.
7606         (x_create_x_image_and_pixmap, xbm_load, gs_load):
7607         Use display info's n_cbits entry for screen depth.
7608         (Fx_show_tip): Remove unused variables `buffer', `top',
7609         `left', `max_width' and `max_height'.
7611         * w32menu.c (w32_menu_show, push_menu_pane): Doc fixes.
7613 2001-11-18  Gerd Moellmann  <gerd@gnu.org>
7615         * puresize.h (BASE_PURESIZE): Increase to 750000.
7617 2001-11-18  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
7619         * frame.c (Fframe_live_p): Doc fix.
7621 2001-11-18  Richard M. Stallman  <rms@gnu.org>
7623         * xdisp.c (message_dolog_marker1, message_dolog_marker2)
7624         (message_dolog_marker3): New static variables hold three markers.
7625         (syms_of_xdisp): Initialize and staticpro them.
7626         (message_dolog): Use message_dolog_marker1..3 instead of
7627         allocating markers each time.  Unchain them when done.
7629 2001-11-17  Richard M. Stallman  <rms@gnu.org>
7631         * doc.c (Fsnarf_documentation): Doc fix.
7633 2001-11-17  Andreas Schwab  <schwab@suse.de>
7635         * xterm.c (note_mouse_highlight): Fix type of variable `ignore'.
7637 2001-11-17  Richard M. Stallman  <rms@gnu.org>
7639         * fileio.c (Fwrite_region): Avoid initializer for Lisp_Object.
7641 2001-11-17  Jason Rumney  <jasonr@gnu.org>
7643         * xterm.c (notice_overwritten_cursor): Take care of end < 0 case.
7645 2001-11-17  Gerd Moellmann  <gerd@gnu.org>
7647         * xdisp.c (tool_bar_item_info): Avoid calling Fget_text_property
7648         with invalid position.
7650 2001-11-16  Richard M. Stallman  <rms@gnu.org>
7652         * syswait.h: Delete conditionals for HPUX7, ISC 4.1, and convex.
7654         * s/isc4-1.h (HAVE_SYS_WAIT_H): Add #undef.
7655         * s/hpux.h (HAVE_SYS_WAIT_H): Add #undef.
7656         * s/hpux8.h (HAVE_SYS_WAIT_H): Define it.
7658         * m/convex.h (HAVE_SYS_WAIT_H): Add #undef.
7660 2001-11-16  Stefan Monnier  <monnier@cs.yale.edu>
7662         * fileio.c (build_annotations): Split off the tail.
7663         (build_annotations_2): New fun.  Extracted from build_annotations.
7664         (Fwrite_region): Split the call to build_annotations into two
7665         calls to build_annotations and build_annotations_2.
7667 2001-11-16  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
7669         * sysdep.c (wait_for_kbd_input) [VMS]: Do not call
7670         clear_waiting_for_input with argument.
7672         * xterm.h (x_update_cursor): Remove duplicated prototype.
7674         * keyboard.h (clear_waiting_for_input): Remove duplicated prototype.
7676         * xterm.c (waiting_for_input): Remove unnecessary declaration.
7678         * data.c (Ftimes, Fquo, Frem, Fmod): Doc fix.
7680 2001-11-16  Stefan Monnier  <monnier@cs.yale.edu>
7682         * fileio.c (choose_write_coding_system): New fun, extracted
7683         from Fwrite_region.
7684         (Fwrite_region): Use it.
7686         * eval.c (max_specpdl_size, max_lisp_eval_depth): Use EMACS_INT.
7687         (funcall_lambda, run_hook_with_args): Make static and add prototype.
7688         (ml_apply, find_handler_clause): Add prototype.
7690 2001-11-16  Eli Zaretskii  <eliz@gnu.org>
7692         * config.in: Add #undef HAVE_COFF_H.
7694         * unexec.c (coff.h): Don't include unless HAVE_COFF_H is defined.
7695         Required for ISC 4.1.
7697 2001-11-16  Eli Zaretskii  <eliz@is.elta.co.il>
7699         * syswait.h: (HAVE_SYS_WAIT_H): Undef for ISC 4.1.  Reported by
7700         Andrew Wiseman <a.wiseman@btclick.com>.
7702 2001-11-16  Kim F. Storm  <storm@cua.dk>
7704         The following changes are made to clean up the various internal
7705         references to the fringes to actually use the term `fringe' for
7706         them.  Previously, they were called `flags areas', `bitmap areas',
7707         `left/right side of windows', or implicitly as `flags' or
7708         `bitmaps':
7710         * dispextern.h (FRINGE_FACE_ID): Renamed from BITMAP_AREA_FACE_ID.
7711         Comments fixed. Use renamed symbols.
7713         * dispnew.c: Comment fix. Use renamed symbols.
7715         * frame.h (FRAME_FRINGE_COLS): Renamed from FRAME_FLAGS_AREA_COLS.
7716         (FRAME_FRINGE_WIDTH): Renamed from FRAME_FLAGS_AREA_WIDTH.
7717         (FRAME_LEFT_FRINGE_WIDTH): Renamed from FRAME_LEFT_FLAGS_AREA_WIDTH.
7719         * msdos.c: Comment fix.
7721         * w32fns.c: Use renamed symbols.
7723         * w32term.c: Comment fixes. Use renamed symbols.
7724         (fringe_bitmap_type): Renamed from bitmap_type.
7725         (NO_FRINGE_BITMAP): Renamed from NO_BITMAP.
7726         (w32_draw_fringe_bitmap): Renamed from w32_draw_bitmap.
7727         (x_draw_row_fringe_bitmaps): Renamed from x_draw_row_bitmaps.
7729         * w32term.h: Comment fixes. Use renamed symbols.
7730         (fringes_extra): Renamed from flags_areas_extra.
7731         (FRAME_FRINGE_BITMAP_WIDTH): Renamed from FRAME_FLAGS_BITMAP_WIDTH.
7732         (FRAME_FRINGE_BITMAP_HEIGHT): Renamed from FRAME_FLAGS_BITMAP_HEIGHT.
7733         (FRAME_X_FRINGE_COLS): Renamed from FRAME_X_FLAGS_AREA_COLS.
7734         (FRAME_X_FRINGE_WIDTH): Renamed from FRAME_X_FLAGS_AREA_WIDTH.
7735         (FRAME_X_LEFT_FRINGE_WIDTH):
7736         Renamed from FRAME_X_LEFT_FLAGS_AREA_WIDTH.
7737         (FRAME_X_RIGHT_FRINGE_WIDTH):
7738         Renamed from FRAME_X_RIGHT_FLAGS_AREA_WIDTH.
7740         * widget.c: Use renamed symbols.
7742         * window.c: Comment fixes. Use renamed symbols.
7743         (coordinates-in-window-p): Doc fix.
7745         * xdisp.c: Comment fixes. Use renamed symbols.
7747         * xfaces.c (realize_basic_faces): Use FRINGE_FACE_ID.
7749         * xfns.c: Use renamed symbols.
7751         * xterm.c: Comment fixes. Use renamed symbols.
7752         (fringe_bitmap_type): Renamed from bitmap_type.
7753         (NO_FRINGE_BITMAP): Renamed from NO_BITMAP.
7754         (x_draw_fringe_bitmap): Renamed from x_draw_bitmap.
7755         (x_draw_row_fringe_bitmaps): Renamed from x_draw_row_bitmaps.
7757         * xterm.h: Comment fixes. Use renamed symbols.
7758         (fringes_extra): Renamed from flags_areas_extra.
7759         (FRAME_FRINGE_BITMAP_WIDTH): Renamed from FRAME_FLAGS_BITMAP_WIDTH.
7760         (FRAME_FRINGE_BITMAP_HEIGHT): Renamed from FRAME_FLAGS_BITMAP_HEIGHT.
7761         (FRAME_X_FRINGE_COLS): Renamed from FRAME_X_FLAGS_AREA_COLS.
7762         (FRAME_X_FRINGE_WIDTH): Renamed from FRAME_X_FLAGS_AREA_WIDTH.
7763         (FRAME_X_LEFT_FRINGE_WIDTH):
7764         Renamed from FRAME_X_LEFT_FLAGS_AREA_WIDTH.
7765         (FRAME_X_RIGHT_FRINGE_WIDTH):
7766         Renamed from FRAME_X_RIGHT_FLAGS_AREA_WIDTH.
7768 2001-11-15  Jason Rumney  <jasonr@gnu.org>
7770         * w32menu.c (add-menu-item): Make help_echo and radio buttons
7771         work for most menu items.  From David Ponce
7772         <david.ponce@wanadoo.fr>.
7774 2001-11-15  Gerd Moellmann  <gerd@gnu.org>
7776         * xfns.c (x_set_frame_parameters): Revert change of 2001-11-07.
7777         Some x_set_* function expect to be called even if old and new
7778         value are equal.
7780         * xdisp.c (build_desired_tool_bar_string): Accept zero
7781         tool_bar_button_relief.
7783         * xfns.c (Fx_create_frame): Accept zero tool_bar_button_relief.
7785         * xterm.c (x_draw_image_relief): Accept zero tool_bar_button_relief.
7787         * xterm.c (x_draw_bar_cursor): If the background color of the
7788         glyph under the cursor equals the frame's cursor color, use
7789         the glyph's foreground color for drawing the bar cursor.
7791         * dispnew.c (direct_output_forward_char): Fix character/byte
7792         position comparison.
7794 2001-11-15  Miles Bader  <miles@gnu.org>
7796         * editfns.c (find_field): Add BEG_LIMIT and END_LIMIT parameters.
7797         (Fdelete_field, Ffield_string, Ffield_string_no_properties):
7798         Update arguments to find_field.
7799         (Ffield_beginning, Ffield_end): Add LIMIT param, pass to find_field.
7800         (Fconstrain_to_field): Use LIMIT arg to shorten search time.
7801         * lisp.h (Ffield_beginning, Ffield_end): Update EXFUN decl.
7802         * minibuf.c (Fminibuffer_prompt_end): Update args to Ffield_end.
7804 2001-11-14  Richard M. Stallman  <rms@gnu.org>
7806         * editfns.c (Fpropertize): Allow call with 1 arg.
7808         * dispextern.h (image_background, image_background_transparent):
7809         Conditionalize on HAVE_X_WINDOWS.
7811 2001-11-13  Richard M. Stallman  <rms@gnu.org>
7813         * print.c (Fprin1_to_string): Doc fix.
7815         * sunfns.c (Fsun_change_cursor_icon): Doc fix.
7817         * floatfns.c (Fceiling, Ffloor): Doc fixes.
7819         * filelock.c (Funlock_buffer, Ffile_locked_p): Doc fixes.
7821         * fileio.c (Ffile_accessible_directory_p): Doc fix.
7823         * eval.c (syms_of_eval): Doc fix.
7825         * coding.c (syms_of_coding): Doc fix.
7827         * doc.c (Fsnarf_documentation): Doc fix.
7829         * dispnew.c (syms_of_display): Doc fix.
7831         * category.c (Fget_unused_category): Doc fix.
7833         * buffer.c (syms_of_buffer): Doc fixes.
7835 2001-11-14  Eli Zaretskii  <eliz@is.elta.co.il>
7837         * print.c (prin1, print): Doc fix.
7839 2001-11-14  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
7841         * fontset.h: Remove declarations of variables
7842         `Vhighlight_wrong_size_font' and `Vclip_large_size_font'.
7844         * fontset.c: Remove variables `Vhighlight_wrong_size_font' and
7845         `Vclip_large_size_font'.
7847 2001-11-13  Jason Rumney  <jasonr@gnu.org>
7849         * w32fns.c: Doc fix.
7851 2001-11-13  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
7853         * xfaces.c (Fface_attributes_as_vector): Doc fix.
7855         * fns.c: Doc fix.
7857         * emacs.c: Doc fix.
7859         * coding.c: Doc fix.
7861         * cmds.c, composite.c, dired.c, doc.c, filelock.c, floatfns.c,
7862         * fontset.c, insdel.c, keymap.c: Change doc-string comments to
7863         `new style' [w/`doc:' keyword].
7865 2001-11-12  Richard M. Stallman  <rms@gnu.org>
7867         * xterm.c (XTread_socket): Don't update focus for EnterNotify or
7868         LeaveNotify events.  Only FocusIn and FocusOut do that now.
7869         (x_display_and_set_cursor): Do display hollow cursors in active
7870         minibuffer windows when they are not selected.
7872 2001-11-12  Jason Rumney  <jasonr@gnu.org>
7874         * w32console.c, w32fns.c, w32menu.c, w32proc.c, w32select.c,
7875         * w32term.c: Change doc-string comments to `new style'.
7876         [w/`doc:' keyword]. Doc fixes.
7878         * w32fns.c: Don't define max.
7879         (Fx_open_connection): Only execute once.
7881 2001-11-12  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
7883         * ccl.c: Change macros to use do-while block instead of if-else.
7884         Use braces to follow GNU Coding Standards.
7886 2001-11-11  Richard M. Stallman  <rms@gnu.org>
7888         * sysdep.c (child_setup_tty): Don't clear ICRNL or INLCR.
7890         * lread.c (read_escape): Use end_of_file_error for reporting eof.
7892         * insdel.c (replace_range): Use adjust_markers_for_replace
7893         instead of adjust_markers_for_delete and adjust_markers_for_insert.
7895         * intervals.h: Declare set_text_properties and set_text_properties_1.
7897         * textprop.c (set_text_properties_1): New subroutine
7898         broken out of set_text_properties.
7899         (set_text_properties): Use set_text_properties_1.
7901         * intervals.c (graft_intervals_into_buffer):
7902         Use set_text_properties_1 to clear out properties.
7904         * search.c (Freplace_match): Use replace_range to insert
7905         and delete.  Don't request property inheritance from
7906         surrounding text.
7908 2001-11-10  Jason Rumney  <jasonr@gnu.org>
7910         * w32fns.c (enum_font_cb2): Use leading @ on face name to detect
7911         vertical fonts. Allow them if face name is explicitly specified.
7912         Do not give up if we find a font that cannot be converted to an xlfd.
7914 2001-11-10  Gerd Moellmann  <gerd@gnu.org>
7916         * unexelf.c (unexec): Use mmap/munmap to allocate buffers
7917         instead of malloc/free.
7919 2001-11-09  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
7921         * xfaces.c (merge_face_vectors): Use braces to follow GNU
7922         Coding Standards.
7923         (Finternal_set_lisp_face_attribute): Likewise.
7925         * buffer.c (Fbury_buffer): Likewise.
7927         * indent.c (current_column_1): Remove unused variable `prev_col'.
7929         * coding.c (encode_coding): Use precomputed value of `src'.
7930         (encode_coding): Remove unused variable `src_end'.
7931         (code_convert_region): Remove unused variables `count'.
7933 2001-11-07  Jason Rumney  <jasonr@gnu.org>
7935         * w32term.c (x_display_and_set_cursor): Do not move system caret
7936         if cursor_glyph is NULL.
7938 2001-11-07  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
7940         * keymap.c (access_keymap): Fix compilation error.
7942 2001-11-07  Miles Bader  <miles@gnu.org>
7944         * xfns.c (x_set_frame_parameters): Avoid infinite recursion.
7946 2001-11-07  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
7948         * intervals.c (graft_intervals_into_buffer):
7949         Remove #ifdef'd-out code.
7950         (graft_intervals_into_buffer): Remove unused variable `middle'.
7952         * lread.c (Feval_region): Remove obsolete #ifdef'd-out
7953         code (eval-current-buffer).
7954         Change doc-string comments to `new style' [w/`doc:' keyword].
7956 2001-11-06  Richard M. Stallman  <rms@gnu.org>
7958         * keymap.c (access_keymap): Don't use initializers on Lisp_Object.
7960 2001-11-06  Stefan Monnier  <monnier@cs.yale.edu>
7962         * lread.c (read1): Fix behavior with nested backquoting.
7964         * keyboard.c (make_lispy_event): Check integerness and fix
7965         Lisp_Object/int mixup.
7967 2001-11-06  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
7969         * fns.c (copy_hash_table): Remove unused variable `v'.
7971         * fontset.c (fontset_font_pattern): Remove unused variable
7972         `family_registry'.
7974         * indent.c (current_column_1): Remove unused variable `prev_col'.
7976 2001-11-05  Richard M. Stallman  <rms@gnu.org>
7978         * m/news-risc.h (BROKEN_PROTOTYPES): Defined.
7980         * buffer.c (Fkill_buffer): Don't delete auto save file
7981         if buffer is modified.
7983 2001-11-05  Andrew Innes  <andrewi@gnu.org>
7985         * w32proc.c (Fw32_set_keyboard_layout): Use CHECK_NUMBER_CAR and
7986         CHECK_NUMBER_CDR.
7988 2001-11-05  Richard M. Stallman  <rms@gnu.org>
7990         * unexelf.c (unexec): Minor changes; clean up comments.
7992 2001-11-05  Sam Steingold  <sds@gnu.org>
7994         * w32term.c (x_display_and_set_cursor): Fix w32 compilation error.
7996 2001-11-05  Andreas Schwab  <schwab@suse.de>
7998         * sound.c (sound_perror): Save errno from being clobbered.
8000 2001-11-05  Dale Hagglund  <rdh@yottayotta.com>
8002         * unexelf.c (unexec): Don't use `mmap'.  Instead, read and write
8003         the program image directly.
8005 2001-11-05  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
8007         * buffer.h (Fbuffer_local_value): Add prototype.
8009 2001-11-04  Richard M. Stallman  <rms@gnu.org>
8011         * buffer.c (Fbuffer_local_value): Remove extra args from CHECK_SYMBOL
8012         and CHECK_BUFFER.
8014         * keyboard.c (read_char): Use Fcar and Fcdr, not Fnth.
8015         (record_char): Likewise.
8017         * keyboard.c (make_lispy_event): Don't insist a drag event must
8018         move to a different buffer position.  Instead, check for moving at
8019         least double_click_fuzz.
8021         * fns.c (Fmake_hash_table): Use XCAR and XCDR, not Fnth and Flength.
8023         * keyboard.c (echo-area-clear-hook): Undo Oct 29 change.
8025         * indent.c (current_column_1, Fmove_to_column): Separate the code
8026         for display-table glyphs from the code for buffer text, to fix
8027         bugs in the former.
8029 2001-11-04  Michael Welsh Duggan  <md5i@cs.cmu.edu>
8031         * buffer.c (Fbuffer_local_value): New function.
8032         (syms_of_buffer): Defsubr it.
8034         * xterm.c, w32term.c (x_display_and_set_cursor): Use buffer-local
8035         value of `cursor-in-non-selected-windows'.
8037         * lisp.h (Qcursor_in_non_selected_windows): New declaration.
8038         * xdisp.c (Qcursor_in_non_selected_windows): New variable.
8039         (syms_of_xdisp): Initialize it.
8041 2001-11-04  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
8043         * xfns.c (Fx_create_frame): Doc fix.
8045         * coding.c: Change doc-string comments to `new style' [w/`doc:'
8046         keyword].
8048         * eval.c (top_level_value, top_level_set): Remove commented and
8049         #ifdef'd-out code.
8050         (Fdefvar): Fix usage in doc-string.
8052 2001-11-03  Richard M. Stallman  <rms@gnu.org>
8054         * xfns.c: Include unistd.h, if it exists.
8056         * editfns.c: Move the include of ctype.h after unistd.h.
8058         * gmalloc.c: Test BROKEN_PROTOTYPES.
8060 2001-11-03  Ken Raeburn  <raeburn@gnu.org>
8062         * lisp.h (CHECK_STRING_CAR): New macro.
8063         * lread.c (Fload): Use XSETCARFASTINT, XSETCDRFASTINT instead of
8064         treating XCAR and XCDR as lvalues.
8065         (openp): Use CHECK_STRING_CAR.
8066         (read_list): Use XSETCDR instead of treating XCDR as lvalue.
8068 2001-11-03  Eli Zaretskii  <eliz@is.elta.co.il>
8070         * s/sco5.h (sigprocmask_set): Declare as extern SIGMASKTYPE.
8071         (SIGMASKTYPE): Define.
8073         * syssignal.h (sigunblock): Don't define if already defined.
8075 2001-11-02  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
8077         * eval.c (debugger_may_continue, Vdebug_ignored_errors)
8078         (call_debugger, Fcondition_case, skip_debugger, unbind_to):
8079         Fix typos in comments.
8081         * mocklisp.c (Fml_defun, Fml_while, Fml_substr): Remove commented
8082         and #ifdef'd-out code.
8083         Fix and reindent comments.
8085         * mocklisp.h: Remove comment which is a copy of comment in mocklisp.c.
8087         * category.h (CHECK_CATEGORY, CHECK_CATEGORY_SET): Remove unused
8088         argument `i' in macros.
8090         * frame.h (CHECK_FRAME, CHECK_LIVE_FRAME): Remove unused argument
8091         `i' in macros.
8093         * lisp.h (CHECK_STRING_OR_BUFFER, CHECK_HASH_TABLE, CHECK_LIST)
8094         (CHECK_STRING, CHECK_CONS, CHECK_SYMBOL, CHECK_CHAR_TABLE)
8095         (CHECK_VECTOR, CHECK_VECTOR_OR_CHAR_TABLE, CHECK_BUFFER)
8096         (CHECK_WINDOW, CHECK_LIVE_WINDOW, CHECK_PROCESS, CHECK_NUMBER)
8097         (CHECK_NATNUM, CHECK_MARKER, CHECK_NUMBER_COERCE_MARKER)
8098         (CHECK_FLOAT, CHECK_NUMBER_OR_FLOAT)
8099         (CHECK_NUMBER_OR_FLOAT_COERCE_MARKER, CHECK_OVERLAY)
8100         (CHECK_NUMBER_CAR, CHECK_NUMBER_CDR): Remove unused argument `i'
8101         in macros.
8103         * abbrev.c, alloc.c, buffer.c, bytecode.c, callint.c, callproc.c,
8104         * casefiddle.c, category.c, ccl.c, charset.c, cmds.c, coding.c,
8105         * composite.c, data.c, dired.c, dispnew.c, doc.c, dosfns.c, emacs.c,
8106         * eval.c, fileio.c, filelock.c, fns.c, fontset.c, frame.c, frame.h,
8107         * indent.c, keyboard.c, keymap.c, lread.c, macros.c, marker.c,
8108         * minibuf.c, mocklisp.c, msdos.c, print.c, process.c, search.c,
8109         * sunfns.c, syntax.c, textprop.c, undo.c, w16select.c, w32console.c,
8110         * w32fns.c, w32menu.c, w32proc.c, w32select.c, window.c, xdisp.c,
8111         * xfaces.c, xmenu.c, xselect.c: Update usage of CHECK_ macros
8112         (remove unused second argument).
8114 2001-11-02  Stefan Monnier  <monnier@cs.yale.edu>
8116         * syntax.c (describe_syntax): New wrapper.
8117         (Finternal_describe_syntax_value): Rename from describe_syntax.
8118         Don't insert space at front and \n at the end.
8119         (syms_of_syntax): Defsubr Sinternal_describe_syntax_value.
8121         * regex.c (re_wctype): Try to fix some warnings.
8122         (regcomp, regexec): Don't forget the __restrict.
8124 2001-11-02  Richard M. Stallman  <rms@gnu.org>
8126         * textprop.c (Fget_char_property): Doc fix.
8128 2001-11-02  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
8130         * process.c (Fstart_process): Add usage to doc-string.
8132         * data.c (Fsetq_default): Ditto.
8134         * callint.c (Finteractive): Ditto.
8136 2001-11-01  Stefan Monnier  <monnier@cs.yale.edu>
8138         * macros.c: Don't include keymap.h any more.
8140 2001-11-01  Richard M. Stallman  <rms@gnu.org>
8142         * data.c (Fmake_local_variable): Doc fix.
8144         * eval.c (Frun_hooks, Frun_hook_with_args_until_failure): Doc fix.
8145         (Frun_hook_with_args_until_success, Frun_hook_with_args): Doc fix.
8147         * keymap.c (Fdescribe_buffer_bindings): Print character property
8148         bindings along with or instead of the buffer local map.
8149         Make the overriding maps override what they should.
8151 2001-11-01  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
8153         * window.c (grow_mini_window): Fix typo in comment.
8155 2001-11-01  Gerd Moellmann  <gerd@gnu.org>
8157         * xterm.c (x_scroll_bar_create): Check for width and height > 0.
8158         (XTset_vertical_scroll_bar): Likewise.
8160         * xfns.c (x_build_heuristic_mask): Use four_corners_best
8161         instead of IMAGE_BACKGROUND.
8163         * xfns.c (four_corners_best): Reindent.
8165         * xfaces.c (Finternal_set_lisp_face_attribute_from_resource):
8166         Handle :box so that it is possible to specify sexprs.
8168 2001-10-31  Eli Zaretskii  <eliz@is.elta.co.il>
8170         * s/hpux11.h: New file.
8172 2001-10-31  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
8174         * emacs.c (USAGE1): Show command line option --no-window-system
8175         instead of --no-windows in usage.
8176         (standard_args): Rename --no-windows to --no-window-system.
8177         (bug_reporting_address): Follow Emacs coding conventions.
8179         * eval.c (Fcommandp): Doc fix.
8180         Change doc-string comments to `new style' [w/`doc:' keyword].
8182         * frame.c (Fframe_live_p): Doc fix.
8184         * buffer.c (selective-display-ellipses): Doc fix.
8186 2001-10-31  Gerd Moellmann  <gerd@gnu.org>
8188         * lread.c (to_multibyte): Fix computation of new read_buffer_size.
8190         * xfaces.c (realize_x_face): If C is not a single-byte character,
8191         set the face's colors_copied_bitwise_p instead of the defaulted_p
8192         members which have a different meaning.
8193         (free_face_colors): Do nothing for a face whose colors have been
8194         copied bitwise.
8196         * dispextern.h (struct face) <colors_copied_bitwise_p>: New member.
8198 2001-10-31  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
8200         * marker.c, mocklisp.c: Change doc-string comments to `new style'
8201         [w/`doc:' keyword].
8203 2001-10-31  Gerd Moellmann  <gerd@gnu.org>
8205         * fns.c (require_unwind): Return Lisp_Object.
8207 2001-10-31  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
8209         * keyboard.c (lucid-menu-bar-dirty-flag): Doc fix.
8210         (last-input-char): Revert doc-string to be the same as the
8211         doc-string of `last-input-event'.
8213         * xdisp.c: Fix typos in comments.
8215 2001-10-31  Gerd Moellmann  <gerd@gnu.org>
8217         * window.c (grow_mini_window): Handle case that the root
8218         window is already smaller than the nominal mininum height.
8220 2001-10-30  Stefan Monnier  <monnier@cs.yale.edu>
8222         * emacs.c (main): Don't call keys_of_macros any more.
8224         * lisp.h (keys_of_macros): Remove.
8226         * macros.c (keys_of_macros): Remove.
8228         * xfaces.c (Fface_attribute_relative_p): Declare args.
8230 2001-10-30  Jason Rumney  <jasonr@gnu.org>
8232         * w32fns.c (w32_to_x_charset): Increase size of XLFD charset buffer.
8233         (enum_font_cb2): Ignore fonts with vertical orientation.
8235 2001-10-30  Richard M. Stallman  <rms@gnu.org>
8237         * keyboard.c (Finput_pending_p): Doc fix.
8239 2001-10-30  Gerd Moellmann  <gerd@gnu.org>
8241         * xterm.c (x_after_update_window_line): Don't run the code
8242         clearing in borders for rows whose visible height is 0.
8244         * xdisp.c (clear_garbaged_frames): Redraw the frame only if its
8245         resized_p flag is set.  If not set, use the much less flickering
8246         method previously used.
8248         * dispnew.c (change_frame_size_1): Set frame's resized_p.
8250         * frame.h (struct frame) <resized_p>: New member.
8252         * lread.c (to_multibyte): Ensure read_buffer is at least twice
8253         as large as the number of bytes to convert.
8255         * lread.c (to_multibyte): New function.
8256         (read1): Use it.
8258 2001-10-30  Eli Zaretskii  <eliz@is.elta.co.il>
8260         * msdos.h (FRAME_LINE_HEIGHT): Define (it's used by xmenu.c).
8262 2001-10-30  Gerd Moellmann  <gerd@gnu.org>
8264         * xterm.c (x_draw_relief_rect): Correct bottom relief by 1 pixel.
8265         (x_set_glyph_string_background_width): Set extends_to_end_of_line_p
8266         if the row's fill_line_p is set and drawing the last glyph with
8267         DRAW_IMAGE_{RAISED,SUNKEN}.
8269         * xdisp.c (clear_garbaged_frames): Call Fredraw_frame.
8271 2001-10-29  Stefan Monnier  <monnier@cs.yale.edu>
8273         * xmenu.c: Include coding.h and charset.h.
8274         (Fx_popup_menu): Use FRAME_PTR and FRAME_FONT and FRAME_LINE_HEIGHT.
8275         (Fx_popup_dialog): Use FRAME_PTR and enum scroll_bar_part.
8276         (single_submenu, xmenu_show): Use ENCODE_SYSTEM.
8277         Explicitly set wv->help.  Use `TRUE' rather than `True'.
8278         (menu_help_callback): Use empty_string.
8280         * w32menu.c (Fx_popup_menu): Explicitly init f, xpos, and ypos.
8281         (Fx_popup_dialog): Explicitly init f.
8282         (w32_menu_display_help): Use empty_string.
8284 2001-10-29  Richard M. Stallman  <rms@gnu.org>
8286         * fns.c (Frequire): Detect recursive try to require the same
8287         feature 3 or more levels deep, and get error.
8288         (require_unwind): New subroutine.
8289         (require_nesting_list): New variable.
8290         (syms_of_fns): Init and staticpro it.
8292         * print.c (print_object): Clarify indication of insertion type.
8294 2001-10-29  Eli Zaretskii  <eliz@is.elta.co.il>
8296         * coding.c (syms_of_coding): Document that locale-coding-system is
8297         used for decoding input on X.
8299         * window.c (Fscroll_left, Fscroll_right): Doc fix.
8301 2001-10-29  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
8303         * keyboard.c (Finput_pending_p): Fix typo in doc-string.
8304         (echo-area-clear-hook): Properly DEFVAR_LISP and staticpro it.
8306 2001-10-29  Gerd Moellmann  <gerd@gnu.org>
8308         * xterm.c (x_display_and_set_cursor): If cursor_in_echo_area,
8309         use NO_CURSOR if cursor_in_non_selected_windows is false.
8311         * xfaces.c (Fface_font): Use UNSPECIFIEDP instead of NILP for
8312         the slant attribute if FRAME is t.
8314         * xfns.c (x_set_internal_border_width): Set frame garbaged
8315         when X window doesn't exist yet.
8317         * xterm.c (x_after_update_window_line): Clear internal border
8318         in different circumstances.
8320         * xterm.c (XTread_socket) <KeyPress>: Don't use
8321         STRING_CHAR_AND_LENGTH if nchars == nbytes.  From Kenichi Handa
8322         <handa@etl.go.jp>.
8324 2001-10-28  Eli Zaretskii  <eliz@is.elta.co.il>
8326         * m/ibms390.h: New file.  From Adam Thornton
8327         <athornton@sinenomine.net>.
8329 2001-10-28  Gerd Moellmann  <gerd@gnu.org>
8331         * xfns.c (x_build_heuristic_mask): Use x_alloc_image_color.
8333         * xfns.c (x_build_heuristic_mask): Fix a bug not incrementing
8334         a loop counter.
8336 2001-10-28  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
8338         * emacs.c: Use argv[0] instead of emacs when -t was specified.
8340         * keyboard.c: Change doc-string comments to `new style' [w/`doc:'
8341         keyword].
8342         Fix typos in comments.
8344         * emacs.c (bug_reporting_address): New function.
8345         Use it when displaying usage message.
8347         * minibuf.c (read_minibuf): Remove unused external declaration of
8348         variable `Qread_only'.
8350         * keymap.c (access_keymap): Remove unused variable `charset'.
8352 2001-10-28  Miles Bader  <miles@gnu.org>
8354         * xfaces.c (merge_face_heights): Handle TO being relative as well.
8355         Remove #ifdef'd-out code.
8356         (Fface_attribute_relative_p, Fmerge_face_attribute): New functions.
8357         (syms_of_xfaces): Initialize them.
8359 2001-10-27  Jason Rumney  <jasonr@gnu.org>
8361         * w32fns.c (w32_wnd_proc) <WM_KILLFOCUS>: Destroy the system caret.
8362         <WM_EMACS_DESTROY_CARET, WM_EMACS_TRACK_CARET>: Track cursor
8363         position using the system caret.
8365         * w32term.c (w32_system_caret_hwnd, w32_system_caret_width)
8366         (w32_system_caret_height, w32_system_caret_x)
8367         (w32_system_caret_y): New variables for tracking system caret.
8368         (w32_initialize): Initialize them.
8369         (x_display_and_set_cursor): Make system caret follow the active cursor.
8371         * w32term.h (WM_EMACS_TRACK_CARET, WM_EMACS_DESTROY_CARET):
8372         New messages types.
8374         * w32term.c (note_mouse_highlight): Clear old help_echo.
8376 2001-10-27  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
8378         * xterm.c: Fix typo in a comment.
8380         * emacs.c: Fix typos in comments.
8381         Remove unnecessary spaces.
8382         Change doc-string comments to `new style' [w/`doc:' keyword].
8383         (USAGE2): Fix typos in usage string.
8385         * xterm.c: Fix typo in a comment.
8387         * lisp.h: (gdb_lisp_params): Remove code in #if 0 which is now in
8388         emacs.c.
8390 2001-10-27  Gerd Moellmann  <gerd@gnu.org>
8392         * xdisp.c (move_it_vertically_backward): Use 2/3 line_height
8393         instead of 1/2 line_height in the heuristic for skipping
8394         farther backward when target_y was not reached.
8396         * sound.c (sound_perror): Unblock SIGIO, turn on atimers.
8397         Display errno only if non-zero.
8398         (sound_warning): New function.
8399         (vox_configure): Don't treat failing to set sample rate as error.
8400         (various places): Improve error messages.
8402 2001-10-26  Eli Zaretskii  <eliz@is.elta.co.il>
8404         * fileio.c (Faccess_file): Run the argument filename through
8405         Fexpand_file_name, before using it.
8407         * dispnew.c (syms_of_display) <visible-bell>: Add a reference to
8408         ring-bell-function.  Suggested by Alf-Ivar Holm <alfh@ifi.uio.no>
8410 2001-10-26  Gerd Moellmann  <gerd@gnu.org>
8412         * insdel.c (insert_1_both): Do nothing if NCHARS == 0.
8414         * xterm.c (XTset_vertical_scroll_bar) [!USE_TOOLKIT_SCROLL_BARS]:
8415         Fix clearing in the case of scroll bars on the right.
8417 2001-10-26  Juanma Barranquero  <lektu@terra.es>
8419         * w32gui.h (XImage): Add a dummy typedef.
8421 2001-10-26  Gerd Moellmann  <gerd@gnu.org>
8423         * xfns.c (XScreenNumberOfScreen): Fix struct to pointer comparison.
8425 2001-10-25  Eli Zaretskii  <eliz@is.elta.co.il>
8427         * frame.c (Fframe_parameter): Fix last change.
8429         * fileio.c: Revert last change (which removed old commented-out
8430         version of expand-file-name).  Add a comment that explains why
8431         this old version should not be removed.
8433 2001-10-25  Gerd Moellmann  <gerd@gnu.org>
8435         * frame.c (Fframe_parameter): Fix a bug whereby some
8436         ``artificial'' frame parameters, like `minibuffer' were not
8437         obtained by calling Fframe_parameters.
8439         * xterm.c (show_mouse_face): Clean up.  Recognize overwritten
8440         cursor differently.
8442         * xdisp.c (move_it_vertically_backward): Compute line height
8443         differently.  Add heuristic to try to be more compatible to 20.x.
8445 2001-10-25  Stefan Monnier  <monnier@cs.yale.edu>
8447         * lisp.h (make_fixnum_or_float): Coerce double to int explicitly.
8449         * editfns.c (text_property_stickiness): Fix Lisp_Object used as
8450         boolean.
8452 2001-10-25  Miles Bader  <miles@gnu.org>
8454         * xfns.c (png_load): Make sure SPECIFIED_BG is a string.
8455         BG is a pointer to a structure, not a structure.
8456         (gif_format, png_format): Add missing commas.
8458 2001-10-24  Richard M. Stallman  <rms@gnu.org>
8460         * xfaces.c (Fface_attributes_as_vector): New function.
8461         (syms_of_xfaces): Defsubr it.
8463 2001-10-24  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
8465         * dispnew.c (sync_window_with_frame_matrix_rows): Remove unused
8466         variable `area'.
8468 2001-10-25  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
8470         * search.c (scan_newline): Remove unused variable `selective_display'.
8472 2001-10-25  Miles Bader  <miles@gnu.org>
8474         * dispextern.h (struct image): Add `background',
8475         `background_valid', and `background_transparent' fields.
8476         (image_background, image_background_transparent): New declarations.
8477         (IMAGE_BACKGROUND, IMAGE_BACKGROUND_TRANSPARENT): New macros.
8478         * xfns.c (image_background, image_background_transparent)
8479         (four_corners_best): New functions.
8480         (xpm_format, png_format, jpeg_format, tiff_format, gif_format)
8481         (gs_format): Add `:background' entry.
8482         (lookup_image): Set IMG's background color if specified.
8483         (pbm_load, xbm_load_image, png_load): Set IMG's background field
8484         when appropriate.
8485         (x_clear_image_1): Reset `background_valid' and
8486         `background_transparent_valid' fields.
8487         (x_build_heuristic_mask): Use IMAGE_BACKGROUND instead of
8488         calculating it here.  Set IMG's background_transparent field.
8489         (enum xpm_keyword_index): Add XPM_BACKGROUND.
8490         (enum png_keyword_index): Add PNG_BACKGROUND.
8491         (enum jpeg_keyword_index): Add JPEG_BACKGROUND.
8492         (enum tiff_keyword_index): Add TIFF_BACKGROUND.
8493         (enum gif_keyword_index): Add GIF_BACKGROUND.
8494         (enum gs_keyword_index): Add GS_BACKGROUND.
8495         (pbm_load, png_load, jpeg_load, tiff_load, gif_load):
8496         Pre-calculate image background color where necessary.
8497         * xterm.c (x_setup_relief_colors): Use `IMAGE_BACKGROUND' and
8498         `IMAGE_BACKGROUND_TRANSPARENT' to calculate the correct background
8499         color to use for image glyph reliefs.
8501 2001-10-24  Gerd Moellmann  <gerd@gnu.org>
8503         * xterm.c (x_draw_glyphs): Don't check for cursor overwriting
8504         in full-width rows.
8506         * xterm.c (XTset_vertical_scroll_bar) [!USE_TOOLKIT_SCROLL_BARS]:
8507         Fix clearing of area not covered by scroll bar.
8509 2001-10-24  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
8511         * xterm.c: (x_insert_glyphs): Remove unused variables `real_end'
8512         and `real_start'.
8513         (x_draw_image_foreground): Remove unused variables `mask' and `xgcv'.
8514         (glyph_rect): Remove unused variable `area'.
8516 2001-10-24  Gerd Moellmann  <gerd@gnu.org>
8518         * xdisp.c: Change #ifdef GLYPH_DEBUG to #if.
8520         * xdisp.c (try_window_reusing_current_matrix): Use row_containing_pos.
8521         (row_containing_pos): Take additional argument DY.
8522         Treat rows ending in middle of char differently.
8523         (display_line): Handle tabs on window systems differently.
8525         * xterm.c, w32term.c (fast_find_position): Call row_containing_pos
8526         with additional argument.
8528         * dispextern.h (row_containing_pos): Adjust prototype.
8530         * xdisp.c (inhibit_try_window_id, inhibit_try_window_reusing)
8531         (inhibit_try_cursor_movement) [GLYPH_DEBUG]: New variables.
8532         (try_window_id, try_window_reusing_current_matrix)
8533         (try_cursor_movement) [GLYPH_DEBUG]: Don't run if inhibited.
8534         (syms_of_xdisp) [GLYPH_DEBUG]: DEFVAR_BOOL the variables.
8536 2001-10-24  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
8538         * xmenu.c: Spell the name of Emacs properly (GNU Emacs instead of
8539         gnuemacs).
8540         (HAVE_BOXES): Fix typo in comment.
8541         (push_menu_pane): Fix typo in comment.
8543         * xdisp.c: (display_prop_string_p): Remove unused local declaration
8544         of `Qwhen'.
8545         (single_display_prop_string_p): Remove unused local declarations
8546         of `Qwhen' and `Qmargin'.
8547         (string_buffer_position): Remove unused variable `around'.
8548         (store_frame_title): Remove unused variable `width'.
8550         * window.c: Don't define max.
8551         (coordinates_in_window): Remove unused variable `uy'.
8553         * widget.c: Don't define max.
8555         * process.c: Don't define max.
8556         (create_process): Remove unused variable `buffer'.
8558 2001-10-23  Gerd Moellmann  <gerd@gnu.org>
8560         * xfaces.c (Finternal_set_lisp_face_attribute): Fix compilation error.
8562 2001-10-23  Eli Zaretskii  <eliz@is.elta.co.il>
8564         * xfaces.c (Finternal_set_lisp_face_attribute)
8565         [HAVE_WINDOW_SYSTEM]: Don't do anything for QCfont unless the
8566         frame is on a windowed display.
8568 2001-10-23  Gerd Moellmann  <gerd@gnu.org>
8570         * dispnew.c (sync_window_with_frame_matrix_rows):
8571         Fix handling of windows which aren't full-width, fix handling
8572         of marginal areas.
8574         * lread.c (syms_of_lread) <recursive-load-depth-limit>: Raise to 50.
8576 2001-10-23  Andreas Schwab  <schwab@suse.de>
8578         * m/macppc.h [LINUX]: Undef LD_SWITCH_SYSTEM_TEMACS and override
8579         LD_SWITCH_MACHINE_TEMACS with "-Xlinker -znocombreloc".
8581 2001-10-23  Gerd Moellmann  <gerd@gnu.org>
8583         * xterm.c (x_draw_glyphs): Remove parameters READ_START and
8584         REAL_END.  Notice if cursor gets overwritten.
8585         (notice_overwritten_cursor): Take X positions as parameters.
8586         (x_draw_phys_cursor_glyph): Save state of w->phys_cursor_on_p
8587         around call to x_draw_glyphs.
8589 2001-10-23  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
8591         * syntax.c (modify-syntax-entry): Fix argument names (use CHAR
8592         instead of C) and usage.
8594         * editfns.c (char-to-string): Fix argument names (use CHAR instead
8595         of C) and usage.
8597         * xfns.c (Fx_show_tip): Remove unused variables `buffer', `top',
8598         `left', `max_width' and `max_height'.
8600 2001-10-23  Gerd Moellmann  <gerd@gnu.org>
8602         * xdisp.c (display_line): For a tab continued to the next line,
8603         set row's ends_in_middle_of_char_p.
8605 2001-10-22  Gerd Moellmann  <gerd@gnu.org>
8607         * xdisp.c (display_line): Fix computation of continuation lines
8608         width for TABs.
8610 2001-10-22  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
8612         * xdisp.c (build_desired_tool_bar_string): Remove unused variable
8613         `Qlaplace'.
8615         * fileio.c: Remove unused code.
8617 2001-10-22  Miles Bader  <miles@gnu.org>
8619         * lisp.h (DEFVAR_LISP, DEFVAR_LISP_NOPRO, DEFVAR_BOOL)
8620         (DEFVAR_INT, DEFVAR_PER_BUFFER, DEFVAR_KBOARD):
8621         Remove `DOC_STRINGS_IN_COMMENTS' cases.
8623 2001-10-21  Jason Rumney  <jasonr@gnu.org>
8625         * w32term.c (x_erase_phys_cursor): Remove inverse_p again.
8627 2001-10-21  Eli Zaretskii  <eliz@is.elta.co.il>
8629         * mocklisp.c (Fml_if, Fml_provide_prefix_argument)
8630         (Finsert_string): Avoid the multi-line string literals warning.
8632 2001-10-22  Miles Bader  <miles@gnu.org>
8634         * doc.c (Vhelp_manyarg_func_alist): Variable removed.
8635         (Fdocumentation): Don't use it.
8636         (syms_of_doc): Don't initialize it.
8638         * keyboard.c (Ftrack_mouse): Add usage: string to doc string.
8639         * print.c (Fwith_output_to_temp_buffer): Likewise.
8640         * window.c (Fsave_window_excursion): Likewise.
8641         * editfns.c (Fsave_excursion, Fsave_current_buffer)
8642         (Fsave_restriction): Likewise.
8643         * eval.c (Frun_hooks, Frun_hook_with_args)
8644         (Frun_hook_with_args_until_failure)
8645         (Frun_hook_with_args_until_success, Ffuncall, For, Fand, Fif)
8646         (Fcond, Fprogn, Fprog1, Fprog2, Fsetq, Fquote, Ffunction, Fdefun)
8647         (Fdefmacro, Fdefvar, Fdefconst, FletX, Flet, Fwhile, Fcatch)
8648         (Funwind_protect, Fcondition_case): Likewise.
8649         * coding.c (Ffind_operation_coding_system): Likewise.
8650         * keyboard.c (Ftrack_mouse): Likewise.
8652 2001-10-21  Miles Bader  <miles@gnu.org>
8654         * fns.c (Fappend, Fconcat, Fvconcat, Fnconc, Fwidget_apply)
8655         (Fmake_hash_table): Add usage: string to doc string.
8656         * editfns.c (Finsert, Finsert_and_inherit, Finsert_before_markers)
8657         (Fmessage, Fmessage_box, Fmessage_or_box, Fpropertize, Fformat)
8658         (Fencode_time, Finsert_and_inherit_before_markers): Likewise.
8659         * mocklisp.c (Finsert_string, Fml_if, Fml_provide_prefix_argument)
8660         (Fml_prefix_argument_loop): Likewise.
8662 2001-10-21  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
8664         * fileio.c (Finsert_file_contents): Remove unused variable `gap_size'.
8666         * sysdep.c (init_sys_modes): Change doc-string comments to `new
8667         style' [w/`doc:' keyword].
8669         * data.c, fileio.c, indent.c, print.c, search.c, sound.c,
8670         * sunfns.c, textprop.c, undo.c, xselect.c: Change doc-string
8671         comments to `new style' [w/`doc:' keyword].
8673 2001-10-21  Jason Rumney  <jasonr@gnu.org>
8675         * w32fns.c (Fx_file_dialog): Pass a filter to GetOpenFileName.
8677         * w32term.c (remember_mouse_glyph): New function.
8678         (w32_mouse_position): Use it.
8679         (note_mouse_movement): If the mouse moved off the glyph, remember
8680         its new position.
8682         * w32term.h (struct w32_output): Correct spelling of x_compatible.
8683         (w32_display_info): Add mouse_face_overlay.
8685         * w32term.c (notice_overwritten_cursor): Renamed from
8686         note_overwritten_text_cursor.  Rewritten to take glyph widths into
8687         account.
8688         (x_y_to_hpos_vpos): Add parameter BUFFER_ONLY_P.
8689         (fast_find_string_pos): New function.
8690         (fast_find_position): Return the correct vpos.  Add parameter
8691         STOP.  In the final row, stop before glyphs having STOP as object.
8692         Don't consider glyphs that are not from a buffer.
8693         (fast_find_position) [0]: Add a presumably more correct version
8694         for after 21.1.
8695         (expose_window_tree, expose_frame): Don't compute intersections here.
8696         (expose_window): Do it here instead.
8697         (expose_window_tree, expose_window, expose_line): Return 1 when
8698         overwriting mouse-face.
8699         (expose_window): If W is the window currently being updated, mark
8700         the frame garbaged.
8701         (expose_frame): If mouse-face was overwritten, redo it.
8702         (x_use_underline_position_properties): New variable.
8703         (syms_of_xterm): DEFVAR_BOOL it.
8704         (x_draw_glyph_string): Add comment to use it in future.
8705         (x_draw_glyph_string): Restore clipping after drawing box.
8706         Fix a computation of the underline position.
8707         (w32_get_glyph_string_clip_rect): Minor cleanup.
8708         (x_fill_stretch_glyph_string): Remove an assertion.
8709         (x_produce_glyphs): Don't convert multibyte characters
8710         to unibyte characters in unibyte buffers.
8711         (cursor_in_mouse_face_p): New function.
8712         (x_draw_stretch_glyph_string): Use it to choose a different GC
8713         when drawing a cursor within highlighted text.  Don't draw
8714         background again if it has already been drawn.
8715         (x_draw_glyph_string_box): Don't draw a full-width
8716         box just because the glyph row's full_width_p flag is set.
8717         (x_draw_glyphs): Fix computation of rightmost x for
8718         full-width rows.
8719         (x_dump_glyph_string): Put in #if GLYPH_DEBUG.
8720         (w32_draw_relief_rect): Extend left shadow to the bottom and left;
8721         change bottom shadow accordingly. Some cleanup.
8722         (x_update_window_end): Handle overwritten mouse face
8723         also for tool bar windows.
8724         (show_mouse_face): Set the glyph row's mouse_face_p flag also when
8725         DRAW is DRAW_IMAGE_RAISED.
8726         (clear_mouse_face): Return 1 if text with mouse face was
8727         actually redrawn.  Make the function static.
8728         Reset dpyinfo->mouse_face_overlay otherwise note_mouse_highlight might
8729         optimize away highlighting if we pass over that same overlay again.
8730         (note_mouse_highlight): Call mouse_face_overlay_overlaps
8731         to detect a case where we have to highlight a different region
8732         despite not having left the currently highlighted region.
8733         Set mouse_face_overlay in the x_display_info.  Avoid changing the
8734         mouse pointer shape when show_mouse_face has already done it, or
8735         there is no need.  Handle mouse-face and help-echo in strings.
8736         (glyph_rect): New function.
8737         (w32_mouse_position): Use it to raise the threshold for mouse
8738         movement event generation.
8739         (w32_initialize_display_info): Initialize the x_display_info's
8740         mouse_face_overlay.
8741         (w32_set_vertical_scroll_bar): Don't clear a zero height
8742         or width area.
8743         (w32_set_vertical_scroll_bar, x_scroll_bar_create): Don't configure
8744         a widget to zero height.
8746         * w32menu.c (single_submenu, w32_menu_show) [!HAVE_MULTILINGUAL_MENU]:
8747         Protect unibyte strings created by replacing their multibyte
8748         equivalents in menu_items.
8749         (w32_menu_show): Don't overwrite an item's name with its key
8750         description in case the description is a multibyte string.
8751         (single_submenu): Some cleanup.
8753         * w32fns.c (x_laplace_read_row, x_laplace_write_row): Removed.
8754         (postprocess_image): New function.
8755         (lookup_image): Call it for all image types except PostScript.
8756         (x_kill_gs_process): Call postprocess_image.
8757         (tiff_error_handler, tiff_warning_handler): New functions.
8758         (tiff_load): Install them as handlers.
8759         (x_kill_gs_process): Recognize if someone has cleared the image
8760         cache under us.
8761         (valid_image_p): Protect better against invalid image
8762         specifications.  Previous code could signal an error.
8763         (Fx_hide_tip, Fshow_tip): Doc fix.
8764         (Fv_max_tooltip_size): New variable.
8765         (syns_of_xfns): DEFVAR_LISP it.
8766         (Fx_show_tip): Add parameter TEXT.  Set the tip frame's root
8767         window buffer to *tip* right after creating the frame. Set frame's
8768         window_width.  Use a maximum tooltip size specified by
8769         Vx_max_tooltip_size, if that has valid contents.
8770         (compute_tip_xy): Add parameters WIDTH and HEIGHT.
8771         Make sure the tooltip is completely visible.
8772         (x_create_tip_frame): Set tooltip buffer's truncate-lines to nil.
8773         (Fx_create_frame): Adjust the frame's height for presence
8774         of the tool bar before calling x_figure_window_size.
8775         (x_set_tool_bar_lines): Clear the tool bar window's current matrix
8776         when the window gets smaller.
8777         (x_set_foreground_color): Set frame's cursor_pixel.
8778         (x_set_foreground_color, x_set_background_color): Cleaned up.
8779         (x_set_font): Handle case of x_new_fontset returning the same name
8780         as before, although there was a change in fontsets.
8782 2001-10-21  Miles Bader  <miles@gnu.org>
8784         * data.c (Fplus, Fminus, Fmax, Ftimes, Fquo, Flogand, Flogior)
8785         (Flogxor): Add usage: string to doc string.
8786         * charset.c (Fstring): Likewise.
8787         * callproc.c (Fcall_process_region, Fcall_process): Likewise.
8788         * alloc.c (Fmake_byte_code, Fvector, Flist): Likewise.
8790 2001-10-21  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
8792         * buffer.c: Reindent DEFUNs and DEFVARs with doc: keywords.
8794         * alloc.c: Reindent DEFUNs with doc: keywords.
8796         * abbrev.c (Finsert_abbrev_table_description): Reindent.
8798         * frame.c: Change doc-string comments to `new style' [w/`doc:'
8799         keyword].
8801 See ChangeLog.9 for earlier changes.
8803 ;; Local Variables:
8804 ;; coding: iso-2022-7bit
8805 ;; End:
8807     Copyright (C) 2001, 2002 Free Software Foundation, Inc.
8808   Copying and distribution of this file, with or without modification,
8809   are permitted provided the copyright notice and this notice are preserved.