(macro-declaration-function): Move to emacs-lisp/byte-run.el.
[emacs.git] / src / ChangeLog
blobc7df4018ccd10f41cfef7b9139e19fc0abe3413e
1 2005-03-12  Stefan Monnier  <monnier@iro.umontreal.ca>
3         * xmenu.c (ENCODE_MENU_STRING): Explicitly use string_make_unibyte.
4         (list_of_panes, list_of_items, Fx_popup_menu): Use XCAR/XCDR.
5         (digest_single_submenu, xmenu_show): Use ENCODE_MENU_STRING.
7         * xfns.c (xic_defaut_fontset): New constant.
8         (xic_create_fontsetname): New function.
9         Extracted from create_frame_xic.  Try to generate a slightly
10         better fontset.
11         (xic_create_xfontset): Use it.
12         (create_frame_xic): Simplify.
14 2005-03-11  Stefan Monnier  <monnier@iro.umontreal.ca>
16         * fileio.c (Fmake_symbolic_link): Fix last change.
18 2005-03-11  Richard M. Stallman  <rms@gnu.org>
20         * fileio.c (Frename_file, Fadd_name_to_file)
21         (Fmake_symbolic_link): If NEWNAME or LINKNAME is a directory,
22         expand the basename of FILE relative to it.
24 2005-03-11  Kenichi Handa  <handa@m17n.org>
26         * fileio.c (Finsert_file_contents): Call Fcheck_coding_system
27         before calling setup_coding_system so that autoloading of a coding
28         system work.
30 2005-03-10  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
32         * xfns.c (hourglass_started): New function.
34         * dispextern.h: Declare hourglass_started.
36         * keyboard.c (Fexecute_extended_command): Restart hourglass
37         after call to Fcompleting_read if already started.
39         * gtkutil.c (xg_update_scrollbar_pos): Call x_sync so that the
40         GTK main loop is entered in xterm.c, thus doing the redraw.
42 2005-03-10  Kim F. Storm  <storm@cua.dk>
44         * xdisp.c (pos_visible_p): Fix X value in last line of buffer.
46 2005-03-08  Kenichi Handa  <handa@m17n.org>
48         * frame.c (x_set_font): Call set_default_ascii_font if an
49         available font is found.
51         * fontset.c (set_default_ascii_font): New function.
52         (syms_of_fontset): Don't set FONTSET_ASCII (Vdefault_fontset) here.
54         * fontset.h (set_default_ascii_font): Extern it.
56 2005-03-07  Kim F. Storm  <storm@cua.dk>
58         * xdisp.c (CLEAR_IMAGE_CACHE_COUNT): New const.
59         (clear_image_cache_count): New var.
60         (redisplay_internal): Don't clear face and image caches in the
61         middle of redisplay; do it afterwards.
63         * blockinput.h (TOTALLY_UNBLOCK_INPUT): Avoid dangling else.
65         * xdisp.c (notice_overwritten_cursor): Check that phys_cursor.vpos
66         is valid.  If not, clear phys_cursor_on_p and return.
68 2005-03-07  Andreas Schwab  <schwab@suse.de>
70         * blockinput.h (UNBLOCK_INPUT_TO): Always call UNBLOCK_INPUT.
72 2005-03-06  Richard M. Stallman  <rms@gnu.org>
74         * keyboard.c (Ftop_level): Let Fthrow deal with UNBLOCK_INPUT.
76         * eval.c (unwind_to_catch): Use UNBLOCK_INPUT_TO.
77         (Feval, Ffuncall): Use CHECK_CONS_LIST.
79         * lisp.h (CHECK_CONS_LIST): New macro (two definitions).
81         * blockinput.h (UNBLOCK_INPUT_TO): New macro.
82         (TOTALLY_UNBLOCK_INPUT): Handle a pending signal if any.
84 2005-03-05  Juri Linkov  <juri@jurta.org>
86         * emacs.c (USAGE1): Replace Info node name "command arguments"
87         with "emacs invocation".
88         (USAGE3): Fix usage of `--color=MODE' which actually doesn't
89         allow arguments `--color' and `MODE' to be separated by space.
90         Add --no-blinking-cursor, -nbc.
91         (standard_args): Add -nbc, --no-blinking-cursor.
93 2005-03-04  Thien-Thi Nguyen  <ttn@gnu.org>
95         * s/vms.h: Define NO_HYPHENS_IN_FILENAMES.
96         * s/vms4-4.h, s/vms5-5.h: Undefine NO_HYPHENS_IN_FILENAMES.
97         * fileio.c (Fexpand_file_name) [VMS]:
98         Use NO_HYPHENS_IN_FILENAMES, not VMS4_4.
99         * doc.c (munge_doc_file_name) [VMS]: Likewise.
100         (Fsnarf_documentation): Call munge_doc_file_name.
102 2005-03-04  Thien-Thi Nguyen  <ttn@gnu.org>
104         * s/vms.h (FILE_SYSTEM_CASE): New macro.
105         * fileio.c (Fexpand_file_name) [VMS]: Don't upcase the name
106         "manually"; this is now handled generally via FILE_SYSTEM_CASE.
108 2005-03-04  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
110         * emacs.c (main): Change `#ifdef HAVE_CARBON' to `#if
111         defined (MAC_OSX) && defined (HAVE_CARBON)'.
113         * image.c [!MAC_OSX && TARGET_API_MAC_CARBON]: Include QuickTime.h.
115         * mac.c [!MAC_OSX && HAVE_CARBON]: Include Carbon.h.
116         [!MAC_OSX] (select) [TARGET_API_MAC_CARBON]: Use ReceiveNextEvent.
117         (posix_pathname_to_fsspec, fsspec_to_posix_pathname): New functions.
118         (mac_clear_font_name_table): Move extern to macterm.h.
120         * macfns.c (install_window_handler): Move extern to macterm.h.
121         (Fx_file_dialog): Check STRINGP (default_filename) to see it is
122         valid.  Don't check !NILP (dir) because it is already checked with
123         CHECK_STRING.
124         (Fx_file_dialog) [!MAC_OSX]: Use FSSpec instead of FSRef for
125         specifying the default location and obtaining the selected filename.
127         * macgui.h [!MAC_OSX && HAVE_CARBON]: Include Carbon.h.
129         * macmenu.c [TARGET_API_MAC_CARBON]: Don't include headers that
130         are included via Carbon.h.
132         * macterm.c [TARGET_API_MAC_CARBON && !MAC_OSX]:
133         Define USE_CARBON_EVENTS to 1.
134         (qd) [__MRC__ && TARGET_API_MAC_CARBON]: Don't declare.
135         (x_free_frame_resources): Call remove_window_handler for
136         non-tooltip windows.
137         [TARGET_API_MAC_CARBON]: Don't include headers that are included
138         via Carbon.h.
139         [TARGET_API_MAC_CARBON] (mac_do_track_dragUPP)
140         (mac_do_receive_dragUPP): New variables.
141         (mac_handle_service_event, init_service_handler): Put declarations
142         and definitions in #ifdef MAC_OSX.
143         (install_window_handler) [TARGET_API_MAC_CARBON]: Create UPPs for
144         drag-and-drop handler functions and register them.
145         (remove_window_handler): New function.
146         (do_ae_open_documents, mac_do_receive_drag) [!MAC_OSX]:
147         Use fsspec_to_posix_pathname.
148         (main): Change #if !TARGET_API_MAC_CARBON to #ifdef MAC_OS8.
149         (XTread_socket) [!MAC_OSX]: Don't pass keyboard events to TSM.
150         [MAC_OS8] (make_mac_terminal_frame) [TARGET_API_MAC_CARBON]:
151         Set default cursors.
152         (mac_initialize) [USE_CARBON_EVENTS && !MAC_OSX] : Don't call
153         init_service_handler or init_quit_char_handler.
154         (mac_initialize) [!MAC_OSX]: Don't call MakeMeTheFrontProcess.
156         * macterm.h (install_window_handler, remove_window_handler)
157         (posix_pathname_to_fsspec, fsspec_to_posix_pathname)
158         (mac_clear_font_name_table): New externs.
160 2005-03-03  Thien-Thi Nguyen  <ttn@gnu.org>
162         * fileio.c (FILE_SYSTEM_CASE): Define macro if not already defined.
163         (Ffile_name_directory): Use FILE_SYSTEM_CASE unconditionally.
164         (Fexpand_file_name): Likewise.
166 2005-03-03  Thien-Thi Nguyen  <ttn@gnu.org>
168         * emacs.c (Fkill_emacs): Use EXIT_SUCCESS;
169         no longer special-case VMS.  Add bogus return value.
171 2005-03-02  Kim F. Storm  <storm@cua.dk>
173         * dispextern.h (XASSERTS): Define to 0 if not already defined.
174         (xassert) [!XASSERTS]: Define dummy version.
176 2005-03-02  Kim F. Storm  <storm@cua.dk>
178         * xdisp.c (redisplay_window): YABX (yet another bogus xassert).
179         Reported by David Kastrup.
181 2005-03-01  Ehud Karni  <ehud@unix.mvs.co.il>
183         * xdisp.c (get_next_display_element): Fix control and escape
184         glyph from display vector.
186 2005-03-01  Stefan Monnier  <monnier@iro.umontreal.ca>
188         * keyboard.c (Fposn_at_x_y): Check integerness of X and Y.
190 2005-02-27  Richard M. Stallman  <rms@gnu.org>
192         * xdisp.c (fast_find_position): Rename END to BEG.
193         (syms_of_xdisp) <menu-bar-update-hook>: Doc fix.
195 2005-02-27  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
197         * gtkutil.c (xg_resize_outer_widget): Remove unneeded call to
198         gtk_window_resize and x_wm_set_size_hint.
200 2005-02-25  Kim F. Storm  <storm@cua.dk>
202         * dispextern.h (OVERLAY_STRING_CHUNK_SIZE): Increase from 3 to 16.
204         * xdisp.c (init_from_display_pos): Don't read past end of
205         it->overlay_strings array.
207 2005-02-25  Stephan Stahl <stahl@eos.franken.de>  (tiny change)
209         * buffer.c (syms_of_buffer): Fix typo.
211 2005-02-23  Lute Kamstra  <lute@gnu.org>
213         * buffer.c (Foverlay_buffer): Doc fix.
215 2005-02-22  Kim F. Storm  <storm@cua.dk>
217         * minibuf.c (Ftry_completion, Fall_completions): Allow both string
218         and symbol keys in alists and hash tables.
220         * xdisp.c (fast_find_position): Fix search for start of overlay.
222 2005-02-21  Kim F. Storm  <storm@cua.dk>
224         * window.c (window_scroll_pixel_based): When scrolling backwards,
225         handle partial visible line at end of window even when we hit PT.
227 2005-02-21  Stefan Monnier  <monnier@iro.umontreal.ca>
229         * keymap.h: Declare Fcurrent_active_maps, used in doc.c.
231 2005-02-21  Kim F. Storm  <storm@cua.dk>
233         * xdisp.c (move_it_vertically_backward): Eliminate two xasserts.
234         I think those asserts are bogus if buffer contains invisible text
235         or images.
237 2005-02-21  David Kastrup <dak@gnu.org>
239         * gtkutil.c (xg_create_frame_widgets): UNBLOCK_INPUT on error.
241 2005-02-20  Kim F. Storm  <storm@cua.dk>
243         * xdisp.c (pos_visible_p): Be sure to move to the specified
244         position.  Always get the full ascent / descent of the
245         corresponding row, to return reliable rtop and rbot values.
246         (back_to_previous_visible_line_start): Fix 2005-01-18 change.
247         Must look one character back, as back_to_previous_line_start
248         returns position after the newline.
249         (move_it_vertically_backward): Fix heuristic for when to move further
250         back in case line_height * 2/3 is larger than window height.
251         (cursor_row_fully_visible_p): Rename make_cursor_line_fully_visible_p
252         as it does not do anything anymore.  Add arg current_matrix_p to
253         use current matrix rather than desired matrix when set.
254         (try_cursor_movement): Don't scroll to make cursor row fully
255         visible if cursor didn't move.  This avoids unexpected recentering
256         in case of blinking cursor or accepting process output.
257         Use current matrix to check cursor row visibility.
258         (redisplay_window): Fix whether to recenter or move to top in case
259         cursor line is taller than window height.
260         (find_first_unchanged_at_end_row): Stop search if we reach a row
261         which not enabled (instead of abort).
263 2005-02-18  Kim F. Storm  <storm@cua.dk>
265         * xfaces.c (Finternal_set_lisp_face_attribute): Allow :color property
266         to be nil in a :box attribute value list; customize prints that
267         as lisp value when no box color is specified.
269         * .gdbinit (pitx, pit): Pretty print display iterator.
270         (prowx, prow): Pretty print glyph row.
271         (pcursorx, pcursor): Pretty print a window cursor.
272         (pwinx, pwin): Pretty print struct window.
274 2005-02-18  Stefan Monnier  <monnier@iro.umontreal.ca>
276         * alloc.c (BLOCK_BYTES): Harmless typo.
278 2005-02-17  Andreas Schwab  <schwab@suse.de>
280         * xfns.c (hack_wm_protocols): Use correct type for last parameter
281         of XGetWindowProperty to avoid aliasing issues.
282         (Fx_window_property): Likewise.
284         * xselect.c (Fx_disown_selection_internal): Use union of struct
285         input_event and struct selection_input_event to avoid aliasing issues.
287         * xterm.c (handle_one_xevent): Use union of struct input_event and
288         struct selection_input_event to avoid aliasing issues.
289         (SET_SAVED_MENU_EVENT): Adapt reference to inev.
291 2005-02-17  Kim F. Storm  <storm@cua.dk>
293         * dispextern.h (enum it_method): New enum.
294         (GET_FROM_*): Its members.
295         (struct it): Change member method from function pointer to enum.
297         * xdisp.c (check_it, init_from_display_pos, handle_stop)
298         (setup_for_ellipsis, handle_single_display_spec)
299         (handle_composition_prop, next_overlay_string)
300         (get_overlay_strings, reseat_1, reseat_to_string)
301         (next_element_from_ellipsis, BUFFER_POS_REACHED_P)
302         (in_display_vector_p, display_line, get_next_display_element):
303         Change it->method from function pointer to enum.
304         (get_next_element): New array to map it->method to function.
305         (get_next_display_element): Use it.
306         (set_iterator_to_next): Use switch instead of if/else chain.
308 2005-02-15  Benjamin Riefenstahl  <Benjamin.Riefenstahl@epost.de>
310         * w32select.c: Summary: Thorough rework to implement Unicode
311         clipboard operations and delayed rendering.
313         Drop last_clipboard_text and related code, keep track of
314         ownership via clipboard_owner instead.  Drop old #if0 sections.
316         (DEFAULT_LCID, ANSICP, OEMCP, QUNICODE, QANSICP, QOEMCP)
317         (clipboard_owner, modifying_clipboard, cfg_coding_system)
318         (cfg_codepage, cfg_lcid, cfg_clipboard_type, current_text)
319         (current_coding_system, current_requires_encoding)
320         (current_num_nls, current_clipboard_type, current_lcid):
321         New static variables.
323         (convert_to_handle_as_ascii, convert_to_handle_as_coded)
324         (render, render_all, run_protected, lisp_error_handler)
325         (owner_callback, create_owner, setup_config)
326         (enum_locale_callback, cp_from_locale, coding_from_cp):
327         New local functions.
329         (term_w32select, globals_of_w32select): New global functions.
331         (Fw32_set_clipboard_data): Ignore parameter FRAME, use
332         clipboard_owner instead.  Use delayed rendering and provide
333         all text formats.  Provide CF_LOCALE if necessary.
335         (Fw32_get_clipboard_data): Handle CF_UNICODETEXT and
336         CF_LOCALE.  Fall back to CF_TEXT, if CF_UNICODETEXT is not
337         available.  Force DOS line-ends for decoding.
339         (Fx_selection_exists_p): Handle CF_UNICODETEXT.
341         (syms_of_w32select): Init and register new variables.
343         * w32.h: Add prototypes for globals_of_w32select and
344         term_w32select.  Make the neighboring K&R declarations into
345         prototypes, too.
347         * emacs.c: Include w32.h to get function prototypes.
348         (main): Call globals_of_w32select.
350         * w32.c (term_ntproc): Call term_w32select.
352         * s/ms-w32.h: Guard MSC-specific #pragmas with an #ifdef.
354 2005-02-16  Kim F. Storm  <storm@cua.dk>
356         * xdisp.c (BUFFER_POS_REACHED_P): Return true if pos reached and
357         at end of display vector.
359 2005-02-15  Richard M. Stallman  <rms@gnu.org>
361         * xdisp.c (get_next_display_element): Fix escape-glyph criterion
362         for mode and header lines.
364         * lread.c (syms_of_lread) <user-init-file>: Doc fix.
366         * keymap.h (describe_map_tree): Change decl.
368         * keyboard.c (command_loop_1): Always use safe_run_hooks
369         to run Qdeferred_action_function.
371         * keymap.c (describe_map_tree): New arg MENTION_SHADOW.  Calls changed.
372         (describe_map, describe_vector): Likewise.  When it's 1,
373         don't omit shadowed bindings, instead mark them as shadowed.
375         * doc.c (Fsubstitute_command_keys): Compute list of shadowing maps
376         for describe_map_tree.  Pass 1 for MENTION_SHADOW.
378         * data.c (Fsetq_default): Allow no arg case.
380 2005-02-14  Kenichi Handa  <handa@m17n.org>
382         * coding.c (encode_coding_string): Always return a unibyte string.
383         If NOCOPY is nonzero and there's no need of encoding, make STR
384         unibyte directly.
386         * xselect.c (lisp_data_to_selection_data): If OBJ is a non-ASCII
387         multibyte string, signal an error instead of aborting.
389 2005-02-12  Dan Nicolaescu  <dann@ics.uci.edu>
391         * keyboard.c: If HAVE_FCNTL_H include fcntl.h.
393 2005-02-12  Kim F. Storm  <storm@cua.dk>
395         * xdisp.c (expose_window): Don't fix overlaps for mode lines.
397 2005-02-10  Kim F. Storm  <storm@cua.dk>
399         * xdisp.c (try_window_id): Set first_unchanged_at_end_row to NULL
400         if it moves outside window or it doesn't display text.
402 2005-02-09  Kim F. Storm  <storm@cua.dk>
404         * undo.c (Fprimitive_undo): Check that undo function does not
405         switch buffer.
407 2005-02-08  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
409         * xselect.c (selection_data_to_lisp_data): For the special case
410         type == XA_ATOM, data contains array of int, not array of Atom.
411         (x_property_data_to_lisp, selection_data_to_lisp_data): Comment
412         update: data must be array of int for format == 32.
414 2005-02-08  Stefan Monnier  <monnier@iro.umontreal.ca>
416         * undo.c (Fprimitive_undo): Check veracity of delta,start,end.
418 2005-02-07  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
420         * xfns.c (Fx_change_window_property): Use long array when format is 32.
421         (Fx_window_property): If format is 32 and long is bigger than 32 bits,
422         convert long array returned from XGetWindowProperty to an int array.
423         (x_set_tool_bar_lines): Check that width and height is greater than
424         zero before clearing area.
426         * xselect.c (x_reply_selection_request): Pass long array to
427         XChangeProperty so that 64 bit longs are handeled correctly.
428         (x_get_window_property): If format is 32 and long is bigger than 32
429         bits convert data from XGetWindowProperty from long array to int array.
430         (lisp_data_to_selection_data): When the input is a vector and the
431         format is 32, allocate a long array even if long is bigger than 32 bits.
432         (x_fill_property_data): Use char, short and long as the man page
433         for XChangeProperty specifies.  This way the data returned is OK for
434         both 32 and 64 bit machines.
435         (x_handle_dnd_message): Calculate size correctly even for 64 bit
436         machines.
437         (Fx_send_client_event): Undo change from 2005-02-05,
438         x_fill_property_data now handles that case.
440         * xfns.c (Fx_backspace_delete_keys_p): Add comment about the
441         reason for the approach in the code.
443 2005-02-07  Kim F. Storm  <storm@cua.dk>
445         * undo.c (Fprimitive_undo): Record max one dummmy apply element.
447 2005-02-06  Richard M. Stallman  <rms@gnu.org>
449         * eval.c (Frun_hook_with_args)
450         (Frun_hook_with_args_until_success)
451         (Frun_hook_with_args_until_failure): Doc fixes.
453 2005-02-05  Andreas Schwab  <schwab@suse.de>
455         * sysdep.c (sys_subshell): Properly terminate execlp argument list.
457 2005-02-05  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
459         * xselect.c (Fx_send_client_event, x_handle_dnd_message): Handle
460         the longs in a XClientMessageEvent correctly when long is 64 bits.
462 2005-02-05  Eli Zaretskii  <eliz@gnu.org>
464         * xfaces.c (face_color_supported_p): Use HAVE_WINDOW_SYSTEM
465         instead of HAVE_X_WINDOWS, for non-X windowed sessions.
467 2005-02-03  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
469         * xmenu.c (menubar_selection_callback): Force out GTK buffered
470         events so the menu event comes after them.  This is to prevent sit-for
471         from exiting on buffered events directly after a menu selection,
472         lisp code for Help => About Emacs uses sit-for.
474         * gtkutil.c (create_menus): Connect selection-done event instead of
475         the deactivate event to deactivate_cb.  This will make the last
476         leave event come before the call to deactivate_cb, so the leave
477         event does not make sit-for exit after a menu selection.
479 2005-02-03  Kim F. Storm  <storm@cua.dk>
481         * dispnew.c (build_frame_matrix_from_leaf_window)
482          [!GLYPH_DEBUG]: Fix xassert.
484         * xfaces.c (x_free_gc) [!GLYPH_DEBUG]: Fix xassert.
486         * xfns.c (unwind_create_frame) [!GLYPH_DEBUG]: Fix xassert.
488 2005-02-03  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
490         * mac.c: Use MAC_OS_X_VERSION_MAX_ALLOWED to conditionalize by
491         the compiling OS version.
493         * macfns.c (x_create_tip_frame): Likewise.
495         * macterm.c (mac_draw_string_common, x_make_frame_visible): Likewise.
497 2005-02-03  Richard M. Stallman  <rms@gnu.org>
499         * xterm.c (x_error_quitter): On GCC 3 and up, specify noinline.
501         * xdisp.c (echo_area_display): Clear echo_message_buffer.
503         * buffer.c (Fbury_buffer): Doc fix.
505 2005-02-02  Steven Tamm  <steventamm@mac.com>
507         * macfns.c (unwind_create_frame): Fixing compile error due to
508         xassert being uncondition, but predicate is.
509         * dispnew.c (update_window): Fixing compile error due to
510         xassert being uncondition, but predicate is.
512 2005-02-02  Miles Bader  <miles@gnu.org>
514         * dispextern.h (xassert): Enable unconditionally.
516 2005-02-02  Kim F. Storm  <storm@cua.dk>
518         * undo.c (Fprimitive_undo): Fix dummy apply undo entry.
520 2005-02-02  Kenichi Handa  <handa@m17n.org>
522         * casefiddle.c (casify_object): Enable changing characters of
523         different byte length.
524         (casify_region): Fix loop condition, args to replace_range_2, and
525         update opoint_byte.
527         * insdel.c (replace_range_2): Fix bugs in adjusting markers and point.
529 2005-02-01  Kim F. Storm  <storm@cua.dk>
531         * xdisp.c (back_to_previous_visible_line_start): Reset iterator
532         stack before calling handle_display_prop.
534 2005-01-31  Kim F. Storm  <storm@cua.dk>
536         * undo.c (Qapply): New lisp var.
537         (syms_of_undo): Intern and staticpro it.
538         (Fprimitive_undo): Support formats (apply FUNNAME . ARGS) and
539         (apply DELTA BEG END FUNNAME . ARGS) instead of (FUNNAME . ARGS).
541         * buffer.c (syms_of_buffer) <buffer-undo-list>: Doc fix.
543 2005-01-30  Jesper Harder  <harder@phys.au.dk>
545         * macterm.c (syms_of_macterm) <mac-reverse-ctrl-meta>
546         <mac-emulate-three-button-mouse>: Fix docstring indentation.
548 2005-01-29  Luc Teirlinck  <teirllm@auburn.edu>
550         * undo.c (syms_of_undo) <undo-outer-limit>: Doc update.
551         Increase value to 3 Meg.
553 2005-01-29  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
555         * xfns.c (show_hourglass): Use FRAME_X_WINDOW as parent for GTK,
556         button events are not received otherwise.
558 2005-01-29  Richard M. Stallman  <rms@gnu.org>
560         * buffer.c (syms_of_buffer) <buffer-undo-list>: Doc fix.
562         * undo.c (Fprimitive_undo): Handle (FUNNAME . ARGS) by calling FUNNAME.
564 2005-01-28  Stefan Monnier  <monnier@iro.umontreal.ca>
566         * keymap.c (access_keymap): YAILOM.
568 2005-01-27  Kim F. Storm  <storm@cua.dk>
570         * xdisp.c (get_phys_cursor_geometry): New function to calculate
571         phys cursor position and size for hollow cursor.  Position is
572         aligned with get_glyph_string_clip_rect and ensures that a hollow
573         cursor is shown, even when the actual glyph is not visible.
575         * dispextern.h (get_phys_cursor_geometry): Add prototype.
577         * xterm.c (x_clip_to_row): Ensure y >= 0.
578         (x_draw_hollow_cursor): Use get_phys_cursor_geometry.
580         * w32term.c (x_draw_hollow_cursor): Use get_phys_cursor_geometry.
582         * macterm.c (x_draw_hollow_cursor): Use get_phys_cursor_geometry.
584 2005-01-27  Stefan Monnier  <monnier@iro.umontreal.ca>
586         * xterm.c (x_error_quitter): Add a prototype.  Make it static again.
588 2005-01-27  Kim F. Storm  <storm@cua.dk>
590         * xdisp.c (get_glyph_string_clip_rect): Always show a cursor
591         glyph, even when row is only partially visible and actual cursor
592         position is not visible.
594 2005-01-24  Richard M. Stallman  <rms@gnu.org>
596         * xterm.c (x_error_quitter): No longer static, and moved after
597         x_error_handler.
599 2005-01-24  Kim F. Storm  <storm@cua.dk>
601         * xdisp.c (move_it_by_lines): If we move forward after going too
602         far back, cancel move if end position is same as start position.
604 2005-01-24  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
606         * dispextern.h (struct glyph_string): New members clip_head and
607         clip_tail.
609         * xdisp.c (get_glyph_string_clip_rect): Restrict horizontal clip
610         region to the area between clip_head and clip_tail.
611         (draw_glyphs): Record the area that need to be actually redrawn to
612         the new variables clip_head and clip_tail when there are
613         overhangs.  Set values of these variables to the corresponding
614         members in struct glyph_string.  Refine x coordinates for
615         notice_overwritten_cursor using clip_head and clip_tail.
617         * macgui.h (STORE_XCHARSETSTRUCT): New macro.
619         * macterm.c (mac_compute_glyph_string_overhangs): Implement with
620         QDTextBounds.
621         (x_draw_glyph_string): Don't fill the background of the successor
622         of a glyph with a right overhang if the successor will draw a cursor.
623         (XLoadQueryFont): Obtain font metrics using QDTextBounds.
624         (x_redisplay_interface): Add entry for compute_glyph_string_overhangs.
626 2005-01-24  Kim F. Storm  <storm@cua.dk>
628         * window.c (window_scroll_pixel_based): Fix scrolling in the wrong
629         direction if window height was smaller than next-screen-context-lines.
630         Now always scroll at least one line in the requested direction.
631         Ensure that we actually do scroll backwards when requested to do so.
633         * xdisp.c (redisplay_window): Only try to make cursor line fully
634         visible once (to avoid redisplay loop).
636 2005-01-23  Kim F. Storm  <storm@cua.dk>
638         * window.c (Fpos_visible_in_window_p): Simplify return value for
639         partially visible rows.
640         (window_scroll_pixel_based): Adapt to that change.
642         * window.c (window_scroll_pixel_based): Force moving to next line
643         if scrolling doesn't move start point, e.g. if looking at tall image.
645         * xdisp.c (pos_visible_p): Return 0 if non-interactive.
646         Clear last_height before calling line_bottom_y to get real height.
647         Fix calculation of y.
649 2005-01-22  Steven Tamm  <steventamm@mac.com>
651         * s/darwin.h: Removed PTY_ITERATION from here.
652         (DARWIN): Define.
653         * process.c (init_process): Default process-connection-type to
654         nil on darwin 6 or less, t if it is 7 or higher.  This way the
655         broken pty behavior is still allowed on darwin 6 for interactive
656         processes for people that know what they are doing.
658 2005-01-22  Kim F. Storm  <storm@cua.dk>
660         * window.c (auto_window_vscroll_p): New boolean.
661         (syms_of_window): DEFVAR_BOOL it.
662         (Fpos_visible_in_window_p): Extend return value to include RTOP
663         and RBOT values if FULLY is nil.
664         (window_scroll_pixel_based): Adjust vscroll for partially visible
665         rows if auto_window_vscroll_p is set.
666         (Fset_window_vscroll): Do nothing if vscroll is not modified.
668         * xdisp.c (pos_visible_p): Replace FULLY arg by RTOP and RBOT args
669         to return number of partially invisible pixels at top and bottom
670         of the dislay row at POS.
672         * lisp.h (pos_visible_p): Fix prototype.
674 2005-01-21  Richard M. Stallman  <rms@gnu.org>
676         * fileio.c (Fcopy_file): Doc fix.
678 2005-01-21  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
680         * gtkutil.c (xg_tool_bar_detach_callback): Remove unused variable bw.
681         (xg_get_file_name): Move declaration ofx_use_old_gtk_file_dialog to
682         start of function for older compilers.
684 2005-01-20  Richard M. Stallman  <rms@gnu.org>
686         * editfns.c (Fmessage): If arg is "", return "" (as before).
688         * keymap.c (access_keymap): Protect from bad value of meta_prefix_char.
690         * .gdbinit (xgetptr, xgetint, xgettype): Copy $arg0 into a temp
691         variable.
693 2005-01-20  Steven Tamm  <steventamm@mac.com>
695         * editfns.c (Voperating_system_release): Add.
696         (init_editfns): Assign new variable operating-system-release
697         based on call to uname if available.
698         (get_operating_system_release): Add function to
699         allow c-level access to operating system release.
701         * config.h: Regenerated.
703         * s/darwin.h (PTY_ITERATION): Don't allow PTYs on darwin 6 or less.
704         (MIN_PTY_KERNEL_VERSION): Define minimum kernel version for
705         using ptys as '7'.
707 2005-01-20  Kim F. Storm  <storm@cua.dk>
709         * alloc.c (STRING_MARKED_P, VECTOR_MARKED_P): Return boolean.
711         * xterm.c (x_draw_glyph_string_box): Fix last_x for full width rows.
712         Thanks to Chong Yidong <cyd@stupidchicken.com> for debugging this.
714         * macterm.c (x_draw_glyph_string_box): Likewise.
716         * w32term.c (x_draw_glyph_string_box): Likewise.
718         * indent.c (Fvertical_motion): Temporarily disable selective display.
720 2005-01-19  Kim F. Storm  <storm@cua.dk>
722         * xdisp.c (note_mode_line_or_margin_highlight): Fix :pointer
723         image property.
725         * fns.c (sweep_weak_table): Advance prev pointer when we keep a pair.
727 2005-01-18  Kim F. Storm  <storm@cua.dk>
729         * xdisp.c (fast_find_position): Backtrack to find first row if
730         charpos is inside a display overlay that spans multiple lines.
732 2005-01-18  Kenichi Handa  <handa@m17n.org>
734         * coding.c (decode_coding_iso2022): Translate invalid codes if
735         translation-table is specified.
737 2005-01-18  Kim F. Storm  <storm@cua.dk>
739         * xdisp.c (back_to_previous_visible_line_start): Undo 2004-12-28
740         change.  If handle_display_prop indicates newline is replaced by
741         image or text, move back to start of relevant overlay or interval
742         and continue scan from there.  Simplify.
744 2005-01-17  Kim F. Storm  <storm@cua.dk>
746         * dispnew.c (mode_line_string, marginal_area_string):
747         Fix off-by-one error in search for glyph.
749 2005-01-16  Kim F. Storm  <storm@cua.dk>
751         * macterm.c (syms_of_macterm) <mac-allow-anti-aliasing>: Doc fix.
753 2005-01-16  Steven Tamm  <steventamm@mac.com>
755         * macterm.c (mac_to_x_fontname): Remove spurious argument.
757 2005-01-16  Andreas Schwab  <schwab@suse.de>
759         * macterm.c (mac_draw_string_common): Fix compilation on OSX 10.1.
761 2005-01-16  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
763         * fringe.c (Fdefine_fringe_bitmap, init_fringe): When assigning
764         fringe_faces, cast result from xmalloc/xrealloc to Lisp_Object *.
766 2005-01-16  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
768         * keyboard.c (READABLE_EVENTS_DO_TIMERS_NOW)
769         (READABLE_EVENTS_FILTER_EVENTS, READABLE_EVENTS_IGNORE_SQUEEZABLES):
770         New flags for readable_events.
771         (get_filtered_input_pending, readable_filtered_events): Remove.
772         (tracking_off): Call readable_events and get_input_pending with
773         flag READABLE_EVENTS_DO_TIMERS_NOW.
774         (readable_events): Move code from old readable_filtered_events here,
775         but check new READABLE_EVENTS_* in argument flags instead of previous
776         two boolean arguments do_timers_now and filter_events.
777         If we are doing mouse tracking and the mouse moved, return only if
778         READABLE_EVENTS_IGNORE_SQUEEZABLES is not set in flags.
779         (swallow_events): Call get_input_pending with flag
780         READABLE_EVENTS_DO_TIMERS_NOW.
781         (get_input_pending): Move code from old get_filtered_input_pending
782         here.  Replace boolean arguments do_timers_now, filter_events with
783         flags, and pass flags to readable_events.  Document new
784         READABLE_EVENTS_* flags.
785         (detect_input_pending_ignore_squeezables): New function.
786         (detect_input_pending_run_timers): Call get_input_pending with flag
787         READABLE_EVENTS_DO_TIMERS_NOW.
788         (Finput_pending_p): Call get_input_pending with flags
789         READABLE_EVENTS_DO_TIMERS_NOW and READABLE_EVENTS_FILTER_EVENTS.
791         * dispnew.c (update_window, update_frame_1): Replace calls to
792         detect_input_pending with detect_input_pending_ignore_squeezables
793         so that redisplay is not paused if the event queue contains only
794         mouse movements.
796         * lisp.h: Declare detect_input_pending_ignore_squeezables.
798 2005-01-15  Steven Tamm  <steventamm@mac.com>
800         * macterm.c (Vmac_use_core_graphics): Declare variable for
801         mac-allow-anti-aliasing.
802         (syms_of_macterm): DEFVAR_LISP and initialize it.
803         (mac_draw_string_common): Use core graphics text rendering if
804         mac-allow-anti-aliasing is enabled.
806         * macfns.c (Fx_file_dialog): Save As dialog includes only the
807         file name in the text box.
809 2005-01-15  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
811         * macfns.c (x_set_foreground_color, x_set_background_color):
812         Sync with xfns.c.
813         (mac_window, x_create_tip_frame): Use XSetWindowBackground.
814         * macterm.c (XSetBackground, XSetWindowBackground): New functions.
815         * macterm.h (XSetBackground, XSetWindowBackground): Add externs.
817 2005-01-14  Kim F. Storm  <storm@cua.dk>
819         * keyboard.c (Fposn_at_x_y): Add optional arg WHOLE.
821 2005-01-13  Richard M. Stallman  <rms@gnu.org>
823         * keymap.c (Fcurrent_active_maps): Ignore Voverriding_local_map
824         if Voverriding_terminal_local_map is non-nil.
826         * keyboard.c (syms_of_keyboard): Doc fix.
828 2005-01-13  Kim F. Storm  <storm@cua.dk>
830         * xdisp.c (Fformat_mode_line): Fix last change.  Remove NO_PROPS arg
831         (specify 0 for FACE instead). Reorder arg list.  Doc fix.
833 2005-01-12  Richard M. Stallman  <rms@gnu.org>
835         * xdisp.c (Fformat_mode_line): New arg FACE specifies a default
836         face property for characters that don't specify one.
838         * fns.c (Frequire): Record in load-history unconditionally.
840 2005-01-10  Kim F. Storm  <storm@cua.dk>
842         * dispextern.h (merge_faces): Rename from merge_into_realized_face.
844         * xfaces.c (merge_faces): Rename from merge_into_realized_face.
845         Callers changed.
846         Add support to merge with lisp face id too (if face_name is t).
848         * xdisp.c (get_next_display_element, next_element_from_display_vector):
849         Don't lookup lface_id from display table glyphs here; instead use
850         merge_faces to merge the lisp face id into current face.
852 2005-01-09  Kim F. Storm  <storm@cua.dk>
854         * dispextern.h (struct it): New member dpvec_face_id.
855         (merge_into_realized_face): Add prototype.
857         * xfaces.c (merge_into_realized_face): New function.  Used to
858         merge escape-glyph face or face from display table into current face.
860         * xdisp.c (Vshow_nonbreak_escape): New lisp var.
861         (syms_of_xdisp): DEFVAR_LISP it.
862         (escape_glyph_face): Remove var.
863         (redisplay_window): Don't initialize it.
864         (setup_for_ellipsis, get_next_display_element):
865         Set it->dpvec_face_id to -1.
866         (get_next_display_element): Test Vshow_nonbreak_escape.
867         Do not setup escape_glyph_face.
868         Properly merge escape-glyph face or face from display table with
869         current face for escape and control characters.
870         Set it->dpvec_face_id to relevant face id instead of adding it to each
871         element of display vector.
872         (next_element_from_display_vector): If it->dpvec_face_id is set,
873         use that instead of lface_id from glyph itself.
875 2005-01-08  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
877         * xterm.h (struct x_output): New member, toolbar_detached.
879         * gtkutil.c (xg_create_frame_widgets): Set initial tool bar height to
880         38.
881         (xg_tool_bar_detach_callback): Set toolbar_detached to 1.
882         (xg_tool_bar_attach_callback): Set toolbar_detached to 0.
883         (xg_create_tool_bar): Initialize toolbar_detached.
884         (update_frame_tool_bar): Only set FRAME_TOOLBAR_HEIGHT (f) if
885         toolbar_detached is zero.
887 2005-01-07  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
889         * xmenu.c (create_and_show_popup_menu): Pass zero as button to
890         gtk_menu_popup if not for_click, so callbacks for the menu are called.
892         * gtkutil.c (xg_gtk_scroll_destroy, xg_create_scroll_bar)
893         (xg_tool_bar_callback, xg_tool_bar_help_callback)
894         (update_frame_tool_bar): Cast to EMACS_INT to avoid compiler warning.
896         * xselect.c (x_get_foreign_selection, x_fill_property_data)
897         (Fx_get_atom_name, Fx_send_client_event): Replace XFLOAT with
898         XFLOAT_DATA to get extract number from Lisp object.
900 2005-01-07  Kim F. Storm  <storm@cua.dk>
902         * xdisp.c (set_iterator_to_next): Fix 2004-12-13 change.
903         Set stop_charpos to current charpos instead of 0.
905 2005-01-06  Nick Roberts  <nickrob@snap.net.nz>
907         * xdisp.c (Fformat_mode_line): First arg now required.
909 2005-01-06  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
911         * macterm.c (XLoadQueryFont): Correctly handle 0 size
912         font widths that are returned from some Japanese fonts.
914 2005-01-06  Kim F. Storm  <storm@cua.dk>
916         * fringe.c (fringe_faces): Change to Lisp_Object pointer.
917         (draw_fringe_bitmap_1): Lookup user defined fringe faces here.
918         (destroy_fringe_bitmap): Set fringe_faces element to nil.
919         (Fdefine_fringe_bitmap, init_fringe): Change allocation of
920         fringe_faces array and init elements to nil.
921         (Fset_fringe_bitmap_face): Set fringe_faces to face name instead of
922         non-persistent face id.
923         (mark_fringe_data): New function for GC.
925         * alloc.c (mark_fringe_data): Declare extern.
926         (Fgarbage_collect): Call mark_fringe_data.
928         * alloc.c (overrun_check_free): Invalidate freed memory if
929         XMALLOC_CLEAR_FREE_MEMORY is defined.
931 2005-01-05  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
933         * macfns.c: Include sys/param.h.
934         [TARGET_API_MAC_CARBON] (mac_nav_event_callback): New declaration
935         and function.
936         [TARGET_API_MAC_CARBON] (Fx_file_dialog): Use MAXPATHLEN for size
937         of filename string.  Set event callback function when creating
938         dialog boxes.  Add code conversions for filenames.  Don't dispose
939         apple event descriptor record if failed to create it.
941         * macterm.c: Include sys/param.h.
942         [USE_CARBON_EVENTS] (mac_handle_window_event): Add handler for
943         kEventWindowUpdate.
944         (install_window_handler) [USE_CARBON_EVENTS]: Register it.
945         (do_ae_open_documents) [TARGET_API_MAC_CARBON]: Get FSRef instead
946         of FSSpec from apple event descriptor record.
947         (do_ae_open_documents) [TARGET_API_MAC_CARBON]: Use MAXPATHLEN for
948         size of filename string.
949         [TARGET_API_MAC_CARBON] (mac_do_receive_drag): Likewise.
950         [TARGET_API_MAC_CARBON] (mac_do_receive_drag): Return error when a
951         file dialog is in action.
952         [TARGET_API_MAC_CARBON] (mac_do_track_drag): Likewise.
953         Reject only when there are no filename items.  Set background color
954         before (un)highlighting the window below the dragged items.
955         (XTread_socket) [USE_CARBON_EVENTS]: Don't call do_window_update.
957 2005-01-05  Romain Francoise  <romain@orebokech.com>
959         * term.c (encode_terminal_code): Fix buffer size computation.
961 2005-01-04  Richard M. Stallman  <rms@gnu.org>
963         * xdisp.c (Fformat_mode_line): Doc fix.
965 2005-01-04  Stefan Monnier  <monnier@iro.umontreal.ca>
967         * alloc.c (refill_memory_reserve): Move.
968         (emacs_blocked_free, emacs_blocked_malloc, emacs_blocked_realloc)
969         (reset_malloc_hooks, uninterrupt_malloc) [SYNC_INPUT]: Don't define.
971 2005-01-03  Richard M. Stallman  <rms@gnu.org>
973         * window.c (window_scroll_pixel_based): Don't correct preserve_y
974         for CURRENT_HEADER_LINE_HEIGHT when moving backwards.
976 2005-01-03  Jason Rumney  <jasonr@gnu.org>
978         * w32bdf.c (w32_load_bdf_font): Set fontp->average_width and
979         fontp->space_width to FONT_WIDTH so they are valid.
981         * w32fns.c (w32_load_system_font): Set FONT_WIDTH to maximum, not
982         average width. Set fontp->average_width and fontp->space_width to
983         their appropriate values.
985         * w32term.c (x_new_font): Set FRAME_COLUMN_WIDTH to
986         fontp->average_width, not FONT_WIDTH.  Set FRAME_SPACE_WIDTH to
987         fontp->space_width.
989 2005-01-03  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
991         * macterm.c (x_new_font): Set FRAME_SPACE_WIDTH.
992         (x_font_min_bounds, XLoadQueryFont): Use the correct font width
993         metrics for max and min bounds.
994         (x_load_font): Correctly calculate average font width metrics.
996 2005-01-02  Richard M. Stallman  <rms@gnu.org>
998         * alloc.c (Fgarbage_collect): Don't truncate_undo_list on dead buffers.
1000 2004-12-31  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
1002         * xterm.c (handle_one_xevent): Clear area in expose event for GTK.
1004 2004-12-31  Richard M. Stallman  <rms@gnu.org>
1006         * xdisp.c (setup_for_ellipsis, get_next_display_element):
1007         Set it->ellipsis_p to 1 or 0.
1008         (display_line): Record whether row ends in mid-ellipsis.
1009         (set_cursor_from_row): If ends in ellipsis. find start of it.
1010         (cursor_row_p): If PT's at the end of the ellipsis the row
1011         ends within, don't display cursor on this row.
1013         * dispextern.h (struct it): New element ellipsis_p.
1014         (struct glyph_row): New element ends_in_ellipsis_p.
1016         * xdisp.c (BUFFER_POS_REACHED_P): We haven't reached the specified
1017         position if we're reading from something other than the buffer.
1019         * window.c (window_scroll_pixel_based): Only look at
1020         Vscroll_preserve_screen_position if the old PT can't be kept.
1021         (syms_of_window) <scroll-preserve-screen-position>: Doc fix.
1023 2004-12-30  Kim F. Storm  <storm@cua.dk>
1025         * xdisp.c (get_line_height_property): New function extracted from
1026         original calc_line_height_property.
1027         (calc_line_height_property): Rework.  Handle t and (nil . ratio).
1028         (x_produce_glyphs): Use them to handle line-height and
1029         line-spacing according to new height spec.
1030         (Qtotal): Remove.
1031         (syms_of_xdisp): Remove intern and staticpro for Qtotal.
1033 2004-12-30  Kenichi Handa  <handa@m17n.org>
1035         * fileio.c (Finsert_file_contents): Don't use
1036         current_buffer->buffer_file_coding_system even if REPLACE is
1037         non-nil.  Call Qafter_insert_file_set_coding with the second arg VISIT.
1039         * fontset.h (struct font_info): New members space_width and
1040         average_width.
1042         * frame.h (struct frame): New member space_width.
1043         (FRAME_SPACE_WIDTH): New macro.
1045         * xterm.h (struct x_display_info): New member Xatom_AVERAGE_WIDTH.
1047         * xterm.c (x_new_font): Set FRAME_COLUMN_WIDTH to
1048         fontp->average_width, not FONT_WIDTH.  Set FRAME_SPACE_WIDTH to
1049         fontp->space_width.
1050         (x_load_font): Calculate fontp->space_width and fontp->average_width.
1051         (x_term_init): Initialize dpyinfo->Xatom_AVERAGE_WIDTH.
1053         * xdisp.c (x_produce_glyphs): Calculate tab width by
1054         FRAME_SPACE_WIDTH, not FRAME_COLUMN_WIDTH.
1056 2004-12-29  Sanghyuk Suh  <han9kin@mac.com>
1058         * macterm.c (SelectionRange): Add Xcode position apple event struct.
1059         (do_ae_open_documents): Handle Xcode-style file position open events.
1061 2004-12-29  Luc Teirlinck  <teirllm@auburn.edu>
1063         * buffer.c (syms_of_buffer) <vertical-scroll-bar>: Correct typo.
1065 2004-12-29  Richard M. Stallman  <rms@gnu.org>
1067         * buffer.c (syms_of_buffer) <vertical-scroll-bar>: Doc fix.
1069 2004-12-29  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
1071         * macfns.c (install_window_handler): Modify extern to return OSErr
1072         value.
1073         (mac_window): Handle return value of install_window_handler.
1075         * macterm.c (reflect_byte): Remove function.
1076         (mac_create_bitmap_from_bitmap_data): Don't call reflect_byte.
1077         Lookup table instead.
1078         (mac_do_font_lists): Simplify calculation of the longest
1079         nonspecial string.
1080         (init_mac_drag_n_drop): Remove function and declaration.
1081         (mac_initialize) [TARGET_API_MAC_CARBON]: Don't call
1082         init_mac_drag_n_drop.
1083         (mac_do_track_drag): New function and declaration.
1084         (install_window_handler): Return OSErr value.
1085         (install_window_handler) [TARGET_API_MAC_CARBON]:
1086         Register handlers for tracking/receiving drag-and-drop items.
1087         (do_ae_open_documents): Generate unibyte strings for filenames.
1088         (mac_do_receive_drag) [TARGET_API_MAC_CARBON] : Likewise.
1089         Reject only non-filename items.  Set event modifiers, and return value.
1091 2004-12-28  Dan Nicolaescu  <dann@ics.uci.edu>
1093         * coding.c (decode_coding): Fix previous change.
1095 2004-12-28  Richard M. Stallman  <rms@gnu.org>
1097         * xdisp.c (back_to_previous_visible_line_start):
1098         Don't call handle_display_prop.
1100 2004-12-28  Dan Nicolaescu  <dann@ics.uci.edu>
1102         * coding.c (decode_coding_XXX, decode_composition_emacs_mule)
1103         (decode_coding_emacs_mule, encode_coding_emacs_mule)
1104         (decode_coding_iso2022, encode_designation_at_bol)
1105         (encode_coding_iso2022, decode_coding_sjis_big5, decode_eol)
1106         (decode_coding): Constify arguments and local vars.
1108 2004-12-27  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
1110         * xmenu.c (popup_get_selection): Only pop down dialogs
1111         on C-g and Escape.
1112         (popup_get_selection): Remove parameter down_on_keypress.
1113         (create_and_show_popup_menu, create_and_show_dialog):
1114         Remove parameter down_on_keypress to popup_get_selection.
1116 2004-12-27  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
1118         * dispextern.h: Change HAVE_CARBON to MAC_OS.
1119         (struct glyph_string): Likewise.
1121         * emacs.c (main) [MAC_OS8]: Call mac_term_init instead of
1122         mac_initialize.
1124         * fileio.c (Fnext_read_file_uses_dialog_p, Fread_file_name):
1125         Change TARGET_API_MAC_CARBON to HAVE_CARBON.
1127         * fns.c (vector): Change MAC_OSX to MAC_OS.
1129         * frame.c (x_set_frame_parameters, x_report_frame_params)
1130         (x_set_fullscreen): Remove #ifndef HAVE_CARBON.
1131         (x_set_border_width, Vdefault_frame_scroll_bars):
1132         Change HAVE_CARBON to MAC_OS.
1134         * image.c [MAC_OS]: Include sys/stat.h.
1135         [MAC_OS && !MAC_OSX]: Include sys/param.h, ImageCompression.h, and
1136         QuickTimeComponents.h.
1138         * mac.c [!MAC_OSX] (mac_wait_next_event): Add extern.
1139         [!MAC_OSX] (select): Use mac_wait_next_event.
1140         [!MAC_OSX] (run_mac_command): Change EXEC_SUFFIXES to Vexec_suffixes.
1141         [!MAC_OSX] (select, run_mac_command): Change `#ifdef
1142         TARGET_API_MAC_CARBON' to `#if TARGET_API_MAC_CARBON'.
1143         (mac_clear_font_name_table): Add extern.
1144         (Fmac_clear_font_name_table): New defun.
1145         (syms_of_mac): Defsubr it.
1146         [MAC_OSX] (SELECT_POLLING_PERIOD_USEC): New define.
1147         [MAC_OSX] (select_and_poll_event): New function.
1148         [MAC_OSX] (sys_select): Use it.
1149         [MAC_OSX && SELECT_USE_CFSOCKET] (socket_callback): New function.
1150         [MAC_OSX && SELECT_USE_CFSOCKET]
1151         (SELECT_TIMEOUT_THRESHOLD_RUNLOOP, EVENT_CLASS_SOCK): New defines.
1152         [MAC_OSX] (sys_select) [SELECT_USE_CFSOCKET]: Use CFSocket and
1153         RunLoop for simultaneously monitoring two kinds of inputs, window
1154         events and process outputs, without periodically polling.
1156         * macfns.c (mac_initialized): Remove extern.
1157         (stricmp): Put in #if 0.  All callers changed to use xstricmp in
1158         xfaces.c.
1159         (strnicmp): Decrement `n' at the end of each loop, not the beginning.
1160         (check_mac): Use the term "Mac native windows" instead of "Mac OS".
1161         (check_x_display_info, x_display_info_for_name): Sync with xfns.c.
1162         (mac_get_rdb_resource): New function (from w32reg.c).
1163         (x_get_string_resource): Use it.
1164         (install_window_handler): Add extern.
1165         (mac_window): New function.
1166         (Fx_create_frame): Use it instead of make_mac_frame.
1167         Set parameter for Qfullscreen.  Call x_wm_set_size_hint.
1168         (Fx_open_connection, Fx_close_connection): New defuns.
1169         (syms_of_macfns): Defsubr them.
1170         (x_create_tip_frame) [TARGET_API_MAC_CARBON]:
1171         Add kWindowNoUpdatesAttribute to the window attribute.
1172         (x_create_tip_frame) [!TARGET_API_MAC_CARBON]: Use NewCWindow.
1173         (x_create_tip_frame): Don't call ShowWindow.
1174         (Fx_show_tip): Call ShowWindow.
1175         (Fx_file_dialog): Change `#ifdef TARGET_API_MAC_CARBON' to `#if
1176         TARGET_API_MAC_CARBON'.
1177         (mac_frame_parm_handlers): Set handlers for Qfullscreen.
1178         (syms_of_macfns) [MAC_OSX]: Initialize mac_in_use to 0.
1180         * macgui.h [!MAC_OSX]: Don't include Controls.h.  Include Windows.h.
1181         (Window): Typedef to WindowPtr and move outside `#if
1182         TARGET_API_MAC_CARBON'.
1183         (XSizeHints): New struct.
1185         * macterm.c (x_update_begin, x_update_end)
1186         [TARGET_API_MAC_CARBON]: Disable screen updates during update of a
1187         frame.
1188         (x_draw_glyph_string_background, x_draw_glyph_string_foreground)
1189         [MAC_OS8]: Use XDrawImageString/XDrawImageString16.
1190         (construct_mouse_click): Put in #if 0.
1191         (x_check_fullscreen, x_check_fullscreen_move): Remove decls.
1192         (x_scroll_bar_create, x_scroll_bar_handle_click): Change `#ifdef
1193         TARGET_API_MAC_CARBON' to `#if TARGET_API_MAC_CARBON'.
1194         (activate_scroll_bars, deactivate_scroll_bars)
1195         [!TARGET_API_MAC_CARBON]: Use ActivateControl/DeactivateControl.
1196         (x_make_frame_visible) [TARGET_API_MAC_CARBON]: Reposition window
1197         if the position is neither user-specified nor program-specified.
1198         (x_free_frame_resources): Free size_hints.
1199         (x_wm_set_size_hint): Allocate size_hints if needed.  Set size_hints.
1200         (mac_clear_font_name_table): New function.
1201         (mac_do_list_fonts): Initialize font_name_table if needed.
1202         (x_list_fonts): Don't initialize font_name_table.  Add BLOCK_INPUT
1203         around mac_do_list_fonts.
1204         (mac_unload_font): New function.
1205         (x_load_font): Add BLOCK_INPUT around XLoadQueryFont.
1206         (init_mac_drag_n_drop, mac_do_receive_drag): Enclose declarations
1207         and definitions with #if TARGET_API_MAC_CARBON.
1208         [USE_CARBON_EVENTS] (mac_handle_window_event): Add decl.
1209         (install_window_handler): Add decl.
1210         (do_window_update): Add BeginUpdate/EndUpdate for the tooltip
1211         window.  Use UpdateControls.  Get the rectangle that should be
1212         updated and restrict the target of expose_frame to it.
1213         (do_grow_window): Set minimum height/width according to size_hints.
1214         (do_grow_window) [TARGET_API_MAC_CARBON]: Use ResizeWindow.
1215         (do_zoom_window): Don't use x_set_window_size.
1216         [USE_CARBON_EVENTS] (mac_handle_window_event): New function.
1217         (install_window_handler): New function.
1218         [!USE_CARBON_EVENTS] (mouse_region): New variable.
1219         [!USE_CARBON_EVENTS] (mac_wait_next_event): New function.
1220         (XTread_socket) [USE_CARBON_EVENTS]: Move call to
1221         GetEventDispatcherTarget inside BLOCK_INPUT.
1222         (XTread_socket) [!USE_CARBON_EVENTS]: Use mac_wait_next_event.
1223         Update mouse_region when mouse is moved.
1224         (make_mac_frame): Remove.
1225         (make_mac_terminal_frame): Put in #ifdef MAC_OS8.
1226         Initialize mouse pointer shapes.  Change values of f->left_pos and
1227         f->top_pos.  Don't use make_mac_frame.  Use NewCWindow.
1228         Don't call ShowWindow.
1229         (mac_initialize_display_info) [MAC_OSX]: Create mac_id_name from
1230         Vinvocation_name and Vsystem_name.
1231         (mac_make_rdb): New function (from w32term.c).
1232         (mac_term_init): Use it.  Add BLOCK_INPUT.  Error if display has
1233         already been opened.  Don't pass argument to
1234         mac_initialize_display_info.  Don't set dpyinfo->height/width.
1235         Add entries to x_display_list and x_display_name_list.
1236         (x_delete_display): New function.
1237         (mac_initialize): Don't call mac_initialize_display_info.
1238         (syms_of_macterm) [!MAC_OSX]: Don't call Fprovide.
1240         * macterm.h (check_mac): Add extern.
1241         (struct mac_output): New member size_hints.
1242         (FRAME_SIZE_HINTS): New macro.
1243         (mac_unload_font): Add extern.
1245         * xdisp.c (expose_window, expose_frame): Remove kludges for Mac.
1247         * xfaces.c (clear_font_table) [MAC_OS]: call mac_unload_font.
1249 2004-12-27  Richard M. Stallman  <rms@gnu.org>
1251         * buffer.c (Fbuffer_disable_undo): Delete (move to simple.el).
1252         (syms_of_buffer): Don't defsubr it.
1254         * process.c (list_processes_1): Set undo_list instead
1255         of calling Fbuffer_disable_undo.
1257         * xdisp.c (single_display_spec_string_p): Rename from
1258         single_display_prop_string_p.
1259         (single_display_spec_intangible_p): Rename from
1260         single_display_prop_intangible_p.
1261         (handle_single_display_spec): Rename from handle_single_display_prop.
1262         Rewritten to be easier to understand.
1264         Change in load-history format.  Functions now get (defun . NAME),
1265         and variables get just NAME.
1267         * data.c (Fdefalias): Use (defun . FN_NAME) in LOADHIST_ATTACH.
1269         * eval.c (Fdefun, Fdefmacro): Use (defun . FN_NAME) in LOADHIST_ATTACH.
1270         (Fdefvaralias, Fdefvar, Fdefconst): Use just SYM in LOADHIST_ATTACH.
1271         (Qdefvar): Var deleted.
1272         (syms_of_eval): Don't initialze it.
1274         * lread.c (syms_of_lread) <load-history>: Doc fix.
1276 2004-12-27  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
1278         * xmenu.c (popup_get_selection): Pop down on C-g.
1279         (set_frame_menubar): Install translations for Lucid/Motif/Lesstif that
1280         pops down menu on C-g.
1281         (xdialog_show): If dialog popped down and no button in the dialog was
1282         pushed, call Fsignal to quit.
1283         (xmenu_show): In no toolkit version, if menu returns NO_SELECT call
1284         Fsignal to quit.
1286         * xfns.c (Fx_file_dialog): Motif/Lesstif version:  Pop down on C-g.
1288         * gtkutil.c (xg_initialize): Install bindings for C-g so that
1289         dialogs and menus pop down.
1291 2004-12-27  Kenichi Handa  <handa@m17n.org>
1293         * coding.c (code_convert_region): Fix calculation of `ratio'.
1295 2004-12-25  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
1297         * gtkutil.c (update_frame_tool_bar): Make the value of
1298         tool-bar-button-margin control margins of images in tool bar.
1300         * alloc.c (check_depth): New variable.
1301         (overrun_check_malloc, overrun_check_realloc): Only add
1302         overhead and write check pattern if check_depth is 1 (to handle
1303         recursive calls).  Increase/decrease check_depth in entry/exit.
1304         (overrun_check_free): Only check for overhead if check_depth is 1.
1305         Increase/decrease check_depth in entry/exit.
1307 2004-12-23  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
1309         * keyboard.c (input_available_signal): Call SIGNAL_THREAD_CHECK
1310         before touching input_available_clear_time, to avoid accessing it
1311         from multiple threads.
1313 2004-12-23  Jason Rumney  <jasonr@gnu.org>
1315         * image.c (__WIN32__) [HAVE_NTGUI]: Define for correct behaviour
1316         of JPEG library.
1318 2004-12-22  Richard M. Stallman  <rms@gnu.org>
1320         * emacs.c (main): If batch mode, set Vundo_outer_limit to nil.
1322         * lisp.h (Vundo_outer_limit): Fix decl.
1324         * undo.c (Vundo_outer_limit): Replaces undo_outer_limit.
1325         Uses changed.
1326         (syms_of_undo): Initialize appropriately.
1327         (truncate_undo_list): If it's nil, there's no limit.
1329 2004-12-22  Kenichi Handa  <handa@m17n.org>
1331         * xselect.c (Fx_get_cut_buffer_internal): Return a unibyte string.
1333 2004-12-21  Richard M. Stallman  <rms@gnu.org>
1335         * eval.c (unwind_to_catch): Clear immediate_quit.
1337         * xdisp.c (get_next_display_element): Display codes 8a0 and 8ad
1338         specially as `\ ' and `\-'.
1340         * keyboard.c (kbd_buffer_store_event_hold):
1341         In the code for while-no-input, handle immediate_quit.
1343         * alloc.c (Fgarbage_collect): Update call to truncate_undo_list.
1344         Call that at the very start.
1345         (undo_limit, undo_strong_limit, undo_outer_limit): Move to undo.c.
1346         (syms_of_alloc): Don't define undo-limit,
1347         undo-strong-limit and undo-outer-limit here.
1349         * undo.c (truncate_undo_list): Return void.
1350         Take just one argument, the buffer.
1351         Make it current, and inhibit recursive GC.
1352         Access and update the undo list directly; return void.
1353         Refer to the undo...limit variables directly.
1354         Test undo_outer_limit only after counting the whole current command.
1355         When it's exceeded, call the function in undo-outer-limit-function.
1356         (undo_limit, undo_strong_limit, undo_outer_limit): From alloc.c.
1357         (Vundo_outer_limit_function): New variable.
1358         (syms_of_undo): Define undo-limit, undo-strong-limit
1359         and undo-outer-limit here, and undo-outer-limit-function.
1360         Doc fixes.
1362         * lisp.h (truncate_undo_list): Update decl.
1364 2004-12-21  Piet van Oostrum  <piet@cs.uu.nl>
1366         * fileio.c (Fread_file_name): Delete duplicates in
1367         file-name-history when history_delete_duplicates is true.
1369 2004-12-20  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
1371         * macterm.c (mac_do_list_fonts): Fix memory leak
1373 2004-12-20  Richard M. Stallman  <rms@gnu.org>
1375         * regex.c (re_match_2_internal) <symend, wordend>:
1376         Fix calls to UPDATE_SYNTAX_TABLE_FORWARD.
1378 2004-12-18  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
1380         * macterm.c (endif, x_font_name_to_mac_font_name):
1381         Use maccentraleurroman instead of maccentraleuropean
1382         (mac_c_string_match, mac_do_list_fonts): Speed up font search by
1383         quickly finding a specific font without needing regexps.
1385 2004-12-15  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
1387         * syssignal.h: Declare main_thread.
1388         (SIGNAL_THREAD_CHECK): New macro.
1390         * keyboard.c (input_available_signal): Move thread checking code
1391         to macro SIGNAL_THREAD_CHECK and call that macro.
1392         (interrupt_signal): Call SIGNAL_THREAD_CHECK.
1394         * alloc.c (uninterrupt_malloc): Move main_thread to emacs.c.
1396         * emacs.c: Define main_thread.
1397         (main): Initialize main_thread.
1398         (handle_USR1_signal, handle_USR2_signal, fatal_error_signal)
1399         (memory_warning_signal): Call SIGNAL_THREAD_CHECK.
1401         * floatfns.c (float_error): Call SIGNAL_THREAD_CHECK.
1403         * dispnew.c (window_change_signal): Call SIGNAL_THREAD_CHECK.
1405         * sysdep.c (select_alarm): Call SIGNAL_THREAD_CHECK.
1407         * process.c (send_process_trap, sigchld_handler):
1408         Call SIGNAL_THREAD_CHECK.
1410         * data.c (arith_error): Call SIGNAL_THREAD_CHECK.
1412         * atimer.c (alarm_signal_handler): Call SIGNAL_THREAD_CHECK.
1414         * xterm.c (xg_scroll_callback): Update XG_LAST_SB_DATA before
1415         returning when xg_ignore_gtk_scrollbar is true.
1417 2004-12-14  Kim F. Storm  <storm@cua.dk>
1419         * keyboard.c (read_char): Save and restore echo_string when
1420         handling input method.
1422 2004-12-13  Richard M. Stallman  <rms@gnu.org>
1424         * eval.c (syms_of_eval) <quit-flag>: Doc fix.
1426         * keyboard.c (Vthrow_on_input): New variable.
1427         (syms_of_keyboard): Defvar and initialize it.
1428         (kbd_buffer_store_event_hold): Handle Vthrow_on_input.
1430         * lisp.h (QUIT): Check for Vthrow_on_input.
1431         (Vthrow_on_input): Declare it.
1433 2004-12-13  Kim F. Storm  <storm@cua.dk>
1435         * xdisp.c (set_iterator_to_next): Reset stop_charpos after display
1436         vector.
1438 2004-12-12  Richard M. Stallman  <rms@gnu.org>
1440         * indent.c (Fvertical_motion): Call move_it_by_lines even if LINES = 0.
1442         * minibuf.c (Fall_completions): Add var `zero' and use it in loop.
1443         (Ftry_completion): Really use outer `zero'; eliminate inner one.
1445 2004-12-12  Kenichi Handa  <handa@m17n.org>
1447         * term.c (encode_terminal_code): Fix previous change.
1449 2004-12-11  Stefan Monnier  <monnier@iro.umontreal.ca>
1451         * keyboard.c (handle_async_input): Remove pthread mutex handling.
1452         (input_available_signal): Move pthread thingy to !SYNC_INPUT branch.
1454         * syntax.c (Fforward_word): Avoid non-idempotent side-effects
1455         in macro arguments.
1457         * minibuf.c (Ftry_completion, Fall_completions): Don't use
1458         XFASTINT blindly.
1460         * emacs.c (main, Fdump_emacs): Don't touch malloc hooks if SYNC_INPUT.
1462 2004-12-11  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
1464         * w32term.c (x_calc_absolute_position): Remove calculation of
1465         difference between inner and outer window.  Don't subtract difference
1466         for left and top calculations.
1468         * xterm.c (x_calc_absolute_position): Don't subtract outer_pixel_diff
1469         for left and top calculations.  Remove call to x_real_positions.
1470         [Bug report by Drew Adams in November]
1471         (x_check_expected_move): Do not set change_gravity to 1 when calling
1472         x_set_offset.
1474 2004-12-08  Richard M. Stallman  <rms@gnu.org>
1476         * xdisp.c (get_next_display_element): Use `escape-glyph' for
1477         control chars and escaped octal codes.
1478         (Qescape_glyph): New variable.
1479         (syms_of_xdisp): Initialize it.
1480         (escape_glyph_face): New variable.
1481         (redisplay_window): Initialize it.
1483 2004-12-07  Paul Eggert  <eggert@cs.ucla.edu>
1485         * image.c (our_fill_input_buffer, jpeg_load, CHECK_LIB_AVAILABLE)
1486         (init_image): Use 1 rather than TRUE.  TRUE's not always defined.
1488 2004-12-07  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
1490         * emacs.c (Fdump_emacs): Add ! defined (SYSTEM_MALLOC) around
1491         reset_malloc_hooks.
1493         * keyboard.c (handle_async_input, input_available_signal):
1494         Add ! defined (SYSTEM_MALLOC) around thread code.
1496         * alloc.c: Add comment about the reason for (UN)BLOCK_INPUT_ALLOC.
1498 2004-12-07  Stefan Monnier  <monnier@iro.umontreal.ca>
1500         * eval.c (init_eval_once): Increase max_specpdl_size to 1000.
1502         * config.in: Regenerate.
1504 2004-12-07  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
1506         * xmenu.c (Fx_popup_menu): Correct documentation about position.
1507         (xmenu_show): Do not call XTranslateCoordinates.  Adjust position
1508         if not given by a mouse click to correspond with x-popup-menu
1509         documentation.
1511         * config.in: Regenerate.
1513         * gtkutil.c: Include signal.h and syssignal.h.
1514         (xg_get_file_name): Block and unblock __SIGRTMIN if defined.
1516         * alloc.c: If HAVE_GTK_AND_PTHREAD, include pthread.h,
1517         new variables main_thread and alloc_mutex,
1518         define (UN)BLOCK_INPUT_ALLOC to use alloc_mutex to protect
1519         emacs_blocked_* calls and only do (UN)BLOCK_INPUT in the main thread.
1520         If not HAVE_GTK_AND_PTHREAD, (UN)BLOCK_INPUT_ALLOC is the same as
1521         (UN)BLOCK_INPUT.
1522         (emacs_blocked_free, emacs_blocked_malloc)
1523         (emacs_blocked_realloc): Use (UN)BLOCK_INPUT_ALLOC.
1524         (uninterrupt_malloc): Initialize main_thread and alloc_mutex.
1525         (reset_malloc_hooks): New function.
1527         * lisp.h: Declare reset_malloc_hooks.
1529         * emacs.c (Fdump_emacs): Call reset_malloc_hooks.
1531         * keyboard.c: Conditionally include pthread.h
1532         (handle_async_input, input_available_signalt): If not in the main
1533         thread, block signal, send signal to main thread and return.
1535         * gtkutil.c (xg_get_file_with_chooser): Handle local files only.
1536         Set current folder in file chooser if default_filename is a directory.
1538 2004-12-05  Stefan Monnier  <monnier@iro.umontreal.ca>
1540         * regex.c (GET_UNSIGNED_NUMBER): Signal an error when reaching the end.
1541         Remove redundant correctness checks.
1542         (regex_compile): Fix up error codes for \{..\} expressions.
1544 2004-12-05  Richard M. Stallman  <rms@gnu.org>
1546         * regex.c (regex_compile): Fix end-of-pattern case for space.
1548 2004-12-03  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
1550         * macterm.h (cfstring_create_with_utf8_cstring): Add prototype.
1551         * mac.c (cfstring_create_with_utf8_cstring): Add to prevent
1552         crashes with invalid characters.
1553         * macmenu.c (add_menu_item): Use it.
1554         * image.c (image_load_quartz2d): Likewise.
1555         * macfns.c (x_set_name, x_set_title): Likewise.
1556         (Fx_file_dialog): Likewise.  Use constant CFRefs instead of
1557         creating them each time for labels.
1559 2004-12-02  Richard M. Stallman  <rms@gnu.org>
1561         * config.in (RE_TRANSLATE_P): If make_number is not a macro,
1562         don't use it here.
1564         * eval.c (Fcalled_interactively_p): Don't check INTERACTIVE.
1565         (interactive_p): Skip Scalled_interactively_p frames
1566         like Sinteractive_p frames.
1567         (unwind_to_catch): Clear handling_signal.
1569         * data.c (Fmake_variable_buffer_local): Doc fix.
1570         (Fmake_local_variable): Doc fix.
1572         * insdel.c (insert_from_string_before_markers)
1573         (insert_from_string): Don't modify buffer on empty insertion.
1575         * window.c (Fget_lru_window, Fget_largest_window): Doc fixes.
1577 2004-12-01  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
1579         * macmenu.c (add_menu_item): Fallback on MacRoman if encoding
1580         menu text as UTF8 fails.
1582 2004-12-01  Kim F. Storm  <storm@cua.dk>
1584         * alloc.c: Add commentary for last change.
1585         (XMALLOC_PUT_SIZE, XMALLOC_GET_SIZE): New macros to handle
1586         sizeof(size_t) != 4.
1587         (overrun_check_malloc, overrun_check_realloc, overrun_check_free):
1588         Use them.  Also clear header and trailer of freed memory.
1589         (GC_STRING_OVERRUN_COOKIE_SIZE): Rename from GC_STRING_EXTRA.
1590         (string_overrun_cookie): Rename from string_overrun_pattern.
1591         (GC_STRING_EXTRA): Define from GC_STRING_OVERRUN_COOKIE_SIZE.
1593 2004-12-01  Andreas Schwab  <schwab@suse.de>
1595         * lisp.h: Declare string_to_multibyte.
1597 2004-12-01  Kenichi Handa  <handa@m17n.org>
1599         * w32console.c (w32con_write_glyphs): Decide coding here.
1600         Adjusted for the change of encode_terminal_code.
1602         * term.c (encode_terminal_code): Don't make it "static".
1604 2004-11-30  Kenichi Handa  <handa@m17n.org>
1606         * term.c (encode_terminal_buf, encode_terminal_bufsize): New variables.
1607         (encode_terminal_code): Argument changed.  Encode all
1608         characters at once, and return a pointer to the result of encoding.
1609         (write_glyphs): Decide coding here.  Adjusted for the above change.
1610         (insert_glyphs): Likewise.
1611         (term_init): Initialize encode_terminal_bufsize to 0.
1613         * coding.c (Vcode_conversion_workbuf_name): New variable.
1614         (syms_of_coding): Initialize and staticpro it.
1615         (set_conversion_work_buffer): New function.
1616         (run_pre_post_conversion_on_str): Use it.
1617         (run_pre_write_conversin_on_c_str): New function.
1619         * coding.h (run_pre_write_conversin_on_c_str): Extern it.
1621 2004-11-30  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
1623         * keyboard.c: Don't undef SIGIO
1624         * s/darwin.h (NO_SOCK_SIGIO): Define NO_SOCK_SIGIO on carbon
1625         * Makefile.in (mac.o): Depend on blockinput.h and atimer.h.
1626         (macfns.o): Don't depend on ccl.h.
1627         * macfns.c (mac_frame_parm_handlers): Set handlers for
1628         Qleft_fringe and Qright_fringe.
1629         * macterm.c (mac_fill_rectangle_to_pixmap)
1630         (mac_draw_rectangle_to_pixmap, mac_copy_area_to_pixmap)
1631         (mac_copy_area_with_mask_to_pixmap, x_draw_image_foreground_1):
1632         Put in #if 0.
1633         (mac_scroll_area) [TARGET_API_MAC_CARBON]: Use ScrollWindowRect.
1634         (x_flush) [TARGET_API_MAC_CARBON]: Don't traverse frames.
1635         (XFlush) [TARGET_API_MAC_CARBON]: Define to an empty replacement.
1636         (x_draw_glyph_string_background, x_draw_glyph_string_foreground)
1637         [!MAC_OS8]: Added ifdef'd out code for os8.  Don't use
1638         XDrawImageString.  Always draw background and foreground separately.
1639         (x_draw_image_foreground): Use clipping instead of computing the
1640         intersection rectangle.
1641         (x_draw_image_glyph_string): Don't draw an image with mask to a
1642         pixmap.
1643         (x_redisplay_interface): Set flush_display_optional member to 0.
1644         (XTread_socket): Correctly reset the TEConverter
1645         object.
1647 2004-11-30  Kim F. Storm  <storm@cua.dk>
1649         * lisp.h: New defines to enable buffer overrun checking.
1650         (GC_CHECK_STRING_OVERRUN, GC_CHECK_STRING_FREE_LIST)
1651         (XMALLOC_OVERRUN_CHECK, GC_CHECK_CONS_LIST): Add.
1653         * alloc.c: Add more checks for buffer overruns.
1654         (XMALLOC_OVERRUN_CHECK_SIZE, xmalloc_overrun_check_header)
1655         xmalloc_overrun_check_trailer, overrun_check_malloc)
1656         overrun_check_realloc, overrun_check_free): Add.
1657         (GC_STRING_EXTRA, string_overrun_pattern): Add.
1658         (check_sblock, allocate_string_data, compact_small_strings):
1659         Set and check string_overrun_pattern if GC_CHECK_STRING_OVERRUN.
1660         (check_cons_list): Condition on GC_CHECK_CONS_LIST.
1661         (check_string_free_list): Add.
1662         (allocate_string, sweep_strings): Call check_string_free_list.
1664         * emacs.c (malloc_initialize_hook): Don't free malloc_state_ptr if
1665         XMALLOC_OVERRUN_CHECK to avoid crash during load.
1667 2004-11-29  Kim F. Storm  <storm@cua.dk>
1669         * fns.c (concat): Use SAFE_ALLOCA.
1671 2004-11-29  Stefan Monnier  <monnier@iro.umontreal.ca>
1673         * sysdep.c (emacs_write): Don't use QUIT.
1675 2004-11-29  Kenichi Handa  <handa@m17n.org>
1677         * buffer.c (init_buffer): Set current_buffer->directory to a
1678         multibyte string made by string_to_multibyte.
1680         * emacs.c (init_cmdargs): Set unibyte strings in Vcommand_line_args.
1682 2004-11-27  Andreas Schwab  <schwab@suse.de>
1684         * alloc.c (mark_stack): Call GC_MARK_SECONDARY_STACK if defined.
1686         * s/gnu-linux.h: Enable no-op gcpros on ia64.
1687         (GC_MARK_SECONDARY_STACK) [__ia64__]: Define.
1689         * filelock.c (lock_file_1): Call get_boot_time early.
1690         Increase buffer size.
1692 2004-11-27  Eli Zaretskii  <eliz@gnu.org>
1694         * lisp.h (DECL_ALIGN): Define non-trivially only if NO_DECL_ALIGN
1695         is not defined.
1697 2004-11-27  Kim F. Storm  <storm@cua.dk>
1699         * search.c (syms_of_search) <search-spaces-regexp>: Move 'doc:'
1700         marker out of doc string.
1702 2004-11-26  Stefan Monnier  <monnier@iro.umontreal.ca>
1704         * s/darwin.h (POSIX_SIGNALS): Undo the removal of 2002-08-25,
1705         which was not mentioned in the log.
1707 2004-11-26  Kim F. Storm  <storm@cua.dk>
1709         * fringe.c (update_window_fringes): Prefer truncation bitmaps over
1710         angle bitmaps at top/bottom line.
1712         * xdisp.c: Undo recent changes for restoring saved_face_id. Instead,
1713         set it when it->method is set to next_element_from_display_vector.
1714         (setup_for_ellipsis): Add LEN argument.  Callers changed.
1715         Set it->saved_face_id.
1716         (get_next_display_element): Use loop instead of recursion.
1717         Set it->saved_face_id.  Combine duplicate code for ctr chars.
1718         (next_element_from_display_vector): Do not set it->saved_face_id.
1719         (next_element_from_ellipsis): Use setup_for_ellipsis.
1721 2004-11-26  Eli Zaretskii  <eliz@gnu.org>
1723         * eval.c (Fdefvar): Declare pdl from last change as `volatile' to
1724         prevent compiler warnings.
1726 2004-11-25  Stefan Monnier  <monnier@iro.umontreal.ca>
1728         * keyboard.c (command_loop_1): Print a message describing the key
1729         the user just pressed when this key has no binding.
1731         * sysdep.c (sys_signal): Don't use SA_RESTART if SYNC_INPUT is set.
1732         (emacs_open, emacs_read, emacs_write): Check QUIT when interrupted.
1734         * lread.c (readchar): Check QUIT when `getc' is interrupted.
1736 2004-11-24  Richard M. Stallman  <rms@gnu.org>
1738         * coding.c (run_pre_post_conversion_on_str): Bind Qinhibit_read_only.
1740         * buffer.c (syms_of_buffer) <indicate-buffer-boundaries>: Doc fix.
1742 2004-11-24  Kim F. Storm  <storm@cua.dk>
1744         * xdisp.c (move_it_in_display_line_to, display_line):
1745         Restore saved_face_id also when truncate-lines or hscrolled.
1747 2004-11-23  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
1749         * gtkutil.c (xg_get_file_name): Rename use-old-gtk-file-dialog to
1750         x-use-old-gtk-file-dialog.
1752         * xfns.c: Define x_use_old_gtk_file_dialog.
1753         (syms_of_xfns): Rename use-old-gtk-file-dialog to x-...  Move it
1754         outside ifdef USE_GTK.
1756 2004-11-23  Stefan Monnier  <monnier@iro.umontreal.ca>
1758         * coding.h (ENCODE_FILE, DECODE_FILE, ENCODE_SYSTEM, DECODE_SYSTEM):
1759         Don't use XFASTINT blindly.
1761         * config.in (RE_TRANSLATE_P): Don't use XFASTINT blindly.
1763         * indent.c (skip_invisible): Avoid non-idempotent side-effects
1764         in macro arguments.
1766         * keymap.c (Flookup_key): Check INTEGERP before XINT.
1768         * lread.c (oblookup): Don't use XFASTINT blindly.
1770         * window.c (Fset_window_scroll_bars): Don't use XINT if it isn't int.
1771         (decode_next_window_args, window_loop): Don't use XFASTINT blindly.
1773 2004-11-23  Kim F. Storm  <storm@cua.dk>
1775         * dispextern.h (MATRIX_ROW_ENDS_IN_MIDDLE_OF_CHAR_P)
1776         (MATRIX_ROW_STARTS_IN_MIDDLE_OF_CHAR_P): Not if dpvec_index is zero.
1778         * xfaces.c (lookup_named_face): Add signal_p arg.  Return -1 if
1779         signal_p is zero and face name is unknown.
1780         (Fx_list_fonts): Don't signal error in lookup_named_face.
1781         (Fface_font): Signal error in lookup_named_face.
1782         (ascii_face_of_lisp_face): Likewise.
1784         * dispextern.h (lookup_named_face): Fix prototype.
1786         * xdisp.c (handle_single_display_prop): Don't signal error in
1787         lookup_named_face for unknown fringe face name.
1788         (highlight_trailing_whitespace): Don't signal error in
1789         lookup_named_face if trailing-whitespace face unknown.
1790         (calc_line_height_property): Don't signal error in
1791         lookup_named_face if specified face name is unknown.
1793         * fringe.c (update_window_fringes): Show top row indicator if
1794         window has header-line.  Don't show arrow at bob and eob
1795         if the boundary indicators are not used.
1796         (Fset_fringe_bitmap_face): Signal error in lookup_named_face.
1798         * window.c (set_window_buffer): Clear display_error_modiff.
1800 2004-11-22  Kim F. Storm  <storm@cua.dk>
1802         * fringe.c (update_window_fringes): Provide sensible fall-back
1803         value for non-nil indicate-buffer-boundaries setting.
1805 2004-11-22  Markus Rost  <rost@ias.edu>
1807         * minibuf.c (Fminibuffer_complete_and_exit): Fix previous change.
1809 2004-11-22  Stefan Monnier  <monnier@iro.umontreal.ca>
1811         * eval.c (Fdefvar): Warn when var is let-bound but globally void.
1813 2004-11-21  Kim F. Storm  <storm@cua.dk>
1815         * xdisp.c (erase_phys_cursor): Clear hollow cursor inside TEXT_AREA.
1817         * xterm.c (x_clip_to_row): Add area arg.  Callers changed.
1818         (x_draw_hollow_cursor, x_draw_bar_cursor): Clip to TEXT_AREA.
1820         * w32term.c (w32_clip_to_row): Add area arg.  Callers changed.
1821         (x_draw_hollow_cursor, x_draw_bar_cursor): Clip to TEXT_AREA.
1823         * macterm.c (x_clip_to_row): Add area arg.  Callers changed.
1824         (x_draw_hollow_cursor, x_draw_bar_cursor): Clip to TEXT_AREA.
1826         * xdisp.c (move_it_in_display_line_to, display_line):
1827         Restore saved_face_id if overflow-newline-into-fringe is enabled and
1828         line is continued before or in middle of element from display vector.
1830         * indent.c (Fvertical_motion): Fix last change.  Use another
1831         method to detect if iterator moved too far ahead after reseat.
1833         * xdisp.c (IT_EXPAND_MATRIX_WIDTH): New macro.  Do not
1834         expand matrix width for overflow in zero-width area.
1835         (append_glyph, append_composite_glyph, produce_image_glyph)
1836         (append_stretch_glyph): Use it to avoid loop in redisplay.
1837         (note_mode_line_or_margin_highlight): Don't let help-echo from
1838         string override help-echo from image map.
1840 2004-11-20  Luc Teirlinck  <teirllm@auburn.edu>
1842         * fns.c (Fyes_or_no_p): Call Fread_from_minibuffer with extra argument.
1843         * callint.c (Fcall_interactively): Ditto.
1845 2004-11-20  Stefan Monnier  <monnier@iro.umontreal.ca>
1847         * minibuf.c (Fminibuffer_complete_and_exit):
1848         Fixup the case of the completed value, for case-indep completion.
1850 2004-11-20  Richard M. Stallman  <rms@gnu.org>
1852         * lisp.h (Fread_from_minibuffer): Add arg in decl.
1854         * minibuf.c (read_minibuf): New arg KEEP_ALL.  Callers changed.
1855         (Fread_from_minibuffer): New arg KEEP_ALL.  Callers changed.
1857         * search.c (Vsearch_spaces_regexp):
1858         Rename from Vsearch_whitespace_regexp.  All uses changed.
1860 2004-11-20  Thien-Thi Nguyen  <ttn@gnu.org>
1862         * eval.c (init_eval_once): Increase `max_specpdl_size' to 650.
1864 2004-11-19  Richard M. Stallman  <rms@gnu.org>
1866         * search.c (Vsearch_whitespace_regexp): New variable.
1867         (syms_of_search): Defvar it.
1868         (compile_pattern_1): Call re_set_whitespace_regexp with it.
1869         (search_buffer): No regexp is trivial if Vsearch_whitespace_regexp
1870         is non-nil.
1871         (struct regexp_cache): New element whitespace_regexp.
1872         (syms_of_search): Initialize whitespace_regexp elements.
1873         (compile_pattern): Compare whitespace_regexp elements.
1874         (compile_pattern_1): Set whitespace_regexp elements.
1876         * regex.c (regex_compile): Substitute whitespace_regexp
1877         for spaces, if it is nonzero.
1878         (whitespace_regexp): New variable.
1879         (re_set_whitespace_regexp): New function.
1881 2004-11-19  Kim F. Storm  <storm@cua.dk>
1883         * indent.c (Fvertical_motion): Fix last change.
1885 2004-11-18  Kim F. Storm  <storm@cua.dk>
1887         * indent.c (Fvertical_motion): Undo 2004-11-16 change.
1888         Instead, move back again if reseating moves too far ahead.
1890 2004-11-17  Luc Teirlinck  <teirllm@auburn.edu>
1892         * xdisp.c (message3): Call clear_message.
1894 2004-11-17  Kim F. Storm  <storm@cua.dk>
1896         * xdisp.c (erase_phys_cursor): Adjust cursor row visible height.
1898 2004-11-16  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
1900         * gtkutil.c (xg_get_file_name): Typo in HAVE_GTK_FILE_SELECTION_NEW.
1902         * xmenu.c (x_menu_in_use): Remove.
1903         (x_menu_set_in_use): Also set popup_activated_flag.
1905         * xfns.c (Fx_file_dialog): Call popup_activated instead of
1906         x_menu_in_use.  Call x_menu_set_in_use in Motif version also.
1908         * xterm.h: (x_menu_in_use): Remove.
1910 2004-11-16  Richard M. Stallman  <rms@gnu.org>
1912         * keymap.c (Fmap_keymap): New arg SORT-FIRST.
1913         Use map-keymap-internal to implement that.
1915         * indent.c (Fvertical_motion): In batch mode, use vmotion directly.
1917 2004-11-16  Stefan Monnier  <monnier@iro.umontreal.ca>
1919         * xdisp.c (get_glyph_string_clip_rect, init_glyph_string): Check it's
1920         a window before using XWINDOW.
1922         * window.c (make_window, Fselect_window, make_dummy_parent)
1923         (save_window_save):
1924         * frame.c (make_frame):
1925         * fns.c (concat): Avoid side-effects inside XSETFASTINT's arguments.
1927         * lisp.h (NILP): Use EQ rather than XFASTINT.
1929 2004-11-16  Kim F. Storm  <storm@cua.dk>
1931         * fringe.c (Fdefine_fringe_bitmap): Always set 'h'.  Simplify.
1933         * indent.c (Fvertical_motion): Fix last change.  Only reseat when
1934         moving backwards.
1936 2004-11-16  Luc Teirlinck  <teirllm@auburn.edu>
1938         * dispextern.h: Extern reseat_at_previous_visible_line_start.
1940 2004-11-16  Kenichi Handa  <handa@m17n.org>
1942         * xdisp.c (display_mode_element): Fix previous change (calculate
1943         end position of substring to display correctly).
1945 2004-11-16  Kim F. Storm  <storm@cua.dk>
1947         * keyboard.c (Fposn_at_point): Remove extra */ after doc string.
1948         Reported by Andrew M. Scott.
1950 2004-11-15  Kim F. Storm  <storm@cua.dk>
1952         * fns.c (Fsafe_plist_get): New defun.
1953         (syms_of_fns): Defsubr it.
1955         * lisp.h (Fsafe_plist_get): Add EXFUN.
1957         * xdisp.c (store_mode_line_string, produce_stretch_glyph):
1958         Use Fsafe_plist_get.
1959         (note_mode_line_or_margin_highlight, note_mouse_highlight):
1960         Fix image map element parsing.  Use Fsafe_plist_get.
1962 2004-11-15  Richard M. Stallman  <rms@gnu.org>
1964         * xdisp.c (get_next_display_element): Fix previous change.
1966 2004-11-14  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
1968         * window.c (shrink_windows): Handle special case of one window left
1969         when trying to shrink the final reminder.  Grow windows if
1970         total_removed is less than total_shrink.
1972         * xmenu.c (pop_down_menu): Remove global variable current_menu,
1973         extract pointer from arg with XSAVE_VALUE.
1974         (create_and_show_popup_menu, create_and_show_dialog, xmenu_show):
1975         Construct arg to record_unwind_protect with make_save_value.
1977 2004-11-13  Richard M. Stallman  <rms@gnu.org>
1979         * xdisp.c (reseat_at_previous_visible_line_start): No longer static.
1980         (get_next_display_element): Fix previous change to apply only to \n.
1982         * indent.c (Fvertical_motion): Scan to PT from start of line to
1983         make iterator consistent.
1985         * minibuf.c (syms_of_minibuf) <completion-ignore-case>: Doc fix.
1987 2004-11-14  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
1989         * gtkutil.c (pop_down_file_dialog): Add BLOCK_INPUT.
1991         * xfns.c (Fx_file_dialog): Call x_menu_in_use and x_menu_set_in_use.
1992         Record unwind with clean_up_file_dialog.
1994         * xterm.h (x_menu_in_use, x_menu_set_in_use, x_menu_wait_for_event):
1995         Declare.
1997         * xmenu.c (x_menu_in_use, x_menu_set_in_use): New functions.
1999 2004-11-13  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
2001         * gtkutil.c (xg_file_sel_ok, xg_file_sel_cancel)
2002         (xg_file_sel_destroy): Remove.
2003         (xg_file_response_cb, pop_down_file_dialog)
2004         (xg_get_file_name_from_chooser, xg_get_file_name_from_selector):
2005         New functions.
2006         (xg_get_file_with_chooser, xg_get_file_with_selection):
2007         Take new arg func, set it to xg_get_file_name_from_chooser/selector.
2008         Move common code to xg_get_file_name.  Return widget created.
2009         (xg_get_file_name): Set name, transient for, modal and destroy
2010         with parent here.  Connect response signal to xg_file_response_cb,
2011         connect delete-event to gtk_true.  Record pop_down_file_dialog
2012         for unwind.  Do event loop and call x_menu_wait_for_event in loop.
2013         (xg_create_widget): Make dialogs modal.
2015         * xmenu.c (unuse_menu_items, pop_down_menu): Arg is of type
2016         Lisp_Object.
2017         (popup_get_selection): Move unwind protect ...
2018         (create_and_show_popup_menu, create_and_show_dialog): ... to here.
2019         Move destroy of widget to pop_down_menu.
2020         (popup_widget_loop): Move unwind protect ...
2021         (create_and_show_popup_menu, create_and_show_dialog): ... to here.
2022         Move destroy of widget to pop_down_menu.
2023         (pop_down_menu): BLOCK_INPUT and destroy widget/window.
2024         (xmenu_show): Record unwind pop_down_menu.  Move XMenuDestroy,
2025         x_mouse_leave and grabbed = 0 to pop_down_menu.
2027 2004-11-13  Kim F. Storm  <storm@cua.dk>
2029         * xdisp.c (make_cursor_line_fully_visible_p): New variable.
2030         (syms_of_xdisp): DEFVAR_BOOL it.
2031         (make_cursor_line_fully_visible, try_cursor_movement)
2032         (try_window_id): Use it.
2034 2004-11-12  Kim F. Storm  <storm@cua.dk>
2036         * dispextern.h (struct glyph_row): New member extra_line_spacing.
2037         (struct it): New member max_extra_line_spacing.
2038         (MR_PARTIALLY_VISIBLE, MR_PARTIALLY_VISIBLE_AT_TOP)
2039         (MR_PARTIALLY_VISIBLE_AT_BOTTOM): New helper macros.
2040         (MATRIX_ROW_PARTIALLY_VISIBLE_P): Fix to return false if invisible
2041         part of last line is only extra line spacing (so the text on the
2042         line is fully visible). Use helper macros.
2043         Add W arg (to use them).  All callers changed.
2044         (MATRIX_ROW_PARTIALLY_VISIBLE_AT_TOP_P)
2045         (MATRIX_ROW_PARTIALLY_VISIBLE_AT_BOTTOM_P): Use helper macros.
2047         * window.c (window_scroll_pixel_based, Frecenter):
2048         Use move_it_vertically_backward directly.
2049         (Frecenter): Fix calculation of new start pos for negative arg.
2050         Before, the new start pos was sometimes chosen too far back, so
2051         the last line became only partially visible, and thus would be
2052         either only semi-visible or automatically scrolled to the middle
2053         of the window by redisplay.
2055         * xdisp.c (init_iterator): Clear it.max_extra_line_spacing.
2056         (move_it_vertically_backward): Don't recure to move further back.
2057         (move_it_vertically): Remove superfluous condition.
2058         (move_it_by_lines): Clear last_height when moved 0 lines.
2059         (resize_mini_window): Use it.max_extra_line_spacing.
2060         (display_tool_bar_line): Clear row->extra_line_spacing.
2061         (try_scrolling): Use move_it_vertically_backward directly.
2062         (redisplay_window): Likewise.
2063         (compute_line_metrics): Set row->extra_line_spacing.
2064         (display_line, display_string): Likewise.
2065         (x_produce_glyphs): Update it->max_extra_line_spacing.
2067         * xmenu.c (pop_down_menu): Return nil.
2069 2004-11-12  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
2071         * xmenu.c (x_menu_wait_for_event): New function.
2072         (popup_get_selection, popup_widget_loop):  Call x_menu_wait_for_event
2073         to handle timers.
2074         (popup_widget_loop): Add argument do_timers.
2075         (create_and_show_popup_menu, create_and_show_dialog): Pass 1 for
2076         do_timers to popup_widget_loop.
2077         (xmenu_show): Call XMenuActivateSetWaitFunction so that
2078         x_menu_wait_for_event is called by XMenuActivate.
2079         (create_and_show_popup_menu): Pass 1 for do_timers to
2080         popup_get_selection.
2081         (pop_down_menu): New function.
2082         (popup_get_selection, popup_widget_loop): Unwind protect to
2083         pop_down_menu.
2084         (popup_widget_loop): Add argument widget.
2085         (create_and_show_popup_menu, create_and_show_dialog): Pass new
2086         argument widget to popup_widget_loop.
2088 2004-11-10  Stefan Monnier  <monnier@iro.umontreal.ca>
2090         * keymap.c (Fkeymap_prompt): Accept symbol keymaps.
2092 2004-11-09  Kim F. Storm  <storm@cua.dk>
2094         * xselect.c: Include <sys/types.h> and <unistd.h> (for getpid).
2095         Fix various comments referring to XEvents instead of input events.
2096         (x_queue_event): Fix format strings.
2097         (x_stop_queuing_selection_requests): Likewise.
2099         * xdisp.c (produce_image_glyph): Remove unused variable 'face_ascent'.
2100         (pint2hrstr): Add extra braces to silence compiler.
2102         * print.c (print_object): Fix format string.
2104         * lread.c (read1): Fix next_char matching.
2106         * lisp.h (Fdelete): Add EXFUN.
2107         (replace_range_2): Add prototype.
2109         * keyboard.c (read_avail_input): Remove unused variable 'discard'.
2111         * intervals.h (NULL_INTERVAL_P): Add separate version when
2112         ENABLE_CHECKING is not defined to silence compiler.
2113         (compare_string_intervals): Add prototype.
2115         * fringe.c (destroy_fringe_bitmap): Fix return type.
2116         (Ffringe_bitmaps_at_pos): Remove unused var 'old_buffer'.
2118         * emacs.c (Fdump_emacs): Fix format string.
2120         * doc.c: Include <ctype.h>.
2121         (Fsubstitute_command_keys): Remove unused variable 'firstkey'.
2123         * data.c (store_symval_forwarding): Remove unused variables.
2125         * callint.c (Fcall_interactively): Remove unused variable 'funcar'.
2127 2004-11-09  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
2129         * Makefile.in (stamp-oldxmenu): If HAVE_GTK, don't add dependencies
2130         to ${OLDXMENU}.
2132 2004-11-09  Kim F. Storm  <storm@cua.dk>
2134         * process.c (Fmake_network_process): Remove kludge for interrupted
2135         connects on BSD.  If connect is interrupted, just close socket and
2136         start over rather than sleeping and retry with same socket.
2138 2004-11-09  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
2140         * .cvsignore: Add buildobj.lst.
2142         * doc.c: New variable Vbuild_files.
2143         (Fsnarf_documentation): If Vbuild_files is nil, populate it with
2144         file names from buildobh.lst.  Only attach docstrings from files
2145         that are in Vbuild_files.
2146         (syms_of_doc): Defvar Vbuild_files.
2148         * Makefile.in (SOME_MACHINE_OBJECTS): Add fringe.o, image.o
2149         and w32*.o.
2150         (temacs${EXEEXT}): Generate buildobj.lst when temacs is linked.
2151         (mostlyclean): Rm buildobj.lst
2153         * makefile.w32-in ($(TEMACS)): Generate buildobj.lst when temacs
2154         is linked.
2156 2004-11-09  Kim F. Storm  <storm@cua.dk>
2158         * fringe.c (update_window_fringes): Update fringe bitmaps if
2159         cur and row ends_at_zv_p differs.  If bitmaps of a row is updated,
2160         also update previous row to get rid of misc. artifacts.
2162 2004-11-08  Kim F. Storm  <storm@cua.dk>
2164         * xdisp.c (fast_find_position): Fix start pos if header line present.
2165         (note_mouse_highlight): Clear mouse face if we move out of text area.
2167 2004-11-08  Eli Zaretskii  <eliz@gnu.org>
2169         * editfns.c: Move #include "systime.h" before <sys/resource.h>.
2170         Don't include <sys/time.h> explicitly.
2171         Include <stdio.h> unconditionally, not just on MacOS.
2173 2004-11-08  Kenichi Handa  <handa@m17n.org>
2175         * fontset.c (fontset_pattern_regexp): Cancel my previous change;
2176         don't pay attention to '\' before '*'.
2177         (fontset_pattern_regexp): Change the meaning of the second arg.
2178         (Fnew_fontset): Call fs_query_fontset, not Fquery_fontset.
2179         (check_fontset_name): Try NAME as literal at first, and if it
2180         failes, try NAME as pattern.
2182 2004-11-07  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
2184         * emacs.c (Fdump_emacs): Only output warning on GNU/Linux.
2186 2004-11-07  Andreas Schwab  <schwab@suse.de>
2188         * lisp.h (Fmsdos_downcase_filename): Declare.
2189         * dired.c (Fmsdos_downcase_filename): Don't declare here.
2190         * fileio.c: Likewise.
2192 2004-11-07  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
2194         * dosfns.c (Fdos_memget, Fdos_memput): Use integer variable offs in
2195         comparisons with integers instead of Lisp_Object address.
2196         (Fmsdos_set_keyboard): Declare argument allkeys.
2198         * msdos.c (IT_set_frame_parameters): Use EQ, not ==, for Lisp_Object:s.
2200         * dired.c (Fmsdos_downcase_filename): Declare extern on MSDOS to avoid
2201         int/Lisp_Object mixup.
2203         * fileio.c: Ditto.
2205 2004-11-06  Steven Tamm  <steventamm@mac.com>
2207         * editfns.c: Need to include sys/time.h before resource.h on darwin.
2209 2004-11-06  Richard M. Stallman  <rms@gnu.org>
2211         * callint.c (Fcall_interactively): Avoid reusing EVENT for other data.
2213         * xfaces.c (merge_named_face): GCPRO the face_name in the
2214         named_merge_point struct that we make.
2215         (merge_face_heights): Eliminate GCPRO arg.  All callers changed.
2217         * keyboard.c (command_loop_1): Change Vtransient_mark_mode
2218         before deciding whether to inactivate mark.
2220 2004-11-06  Lars Brinkhoff  <lars@nocrew.org>
2222         * config.in: Regenerate (add HAVE_GETRUSAGE).
2223         * editfns.c (Fget_internal_run_time): New function.
2224         (syms_of_data): Defsubr it.
2225         * fns.c (sxhash): As far as possible, merge calculation of
2226         hash code for symbols and strings.
2228 2004-11-06  Eli Zaretskii  <eliz@gnu.org>
2230         * frame.c (syms_of_frame): Fix the example in the doc string.
2232 2004-11-06  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
2234         * eval.c (Feval): Remove check for INPUT_BLOCKED_P.
2236         * xmenu.c (popup_get_selection, create_and_show_popup_menu)
2237         (create_and_show_dialog): Revert change from 2004-10-31.
2239 2004-11-05  Luc Teirlinck  <teirllm@auburn.edu>
2241         * macros.c (syms_of_macros) <defining-kbd-macro>: Doc fix.
2243 2004-11-05  Kim F. Storm  <storm@cua.dk>
2245         * print.c (print_object): Print Lisp_Misc_Save_Value objects.
2247         * fileio.c (Ffile_modes): Doc fix.
2248         (auto_save_1): Check for Ffile_modes nil value.
2250 2004-11-05  Kim F. Storm  <storm@cua.dk>
2252         * xselect.c (struct selection_event_queue, selection_queue)
2253         (x_queue_selection_requests, x_queue_event)
2254         (x_start_queuing_selection_requests)
2255         (x_stop_queuing_selection_requests): Add new queue for selection
2256         input events to replace previous XEvent queue in xterm.c.
2257         (queue_selection_requests_unwind): Adapt to new queue.
2258         (x_reply_selection_request): Adapt to new queue.
2259         Unexpect wait_object in case of x errors (memory leak).
2260         (x_handle_selection_request, x_handle_selection_clear): Make static.
2261         (x_handle_selection_event): New function.  May queue selection events.
2262         (wait_for_property_change_unwind): Use save_value instead of cons.
2263         Clear property_change_reply_object.
2264         (wait_for_property_change): Abort if already waiting.
2265         Use save_value instead of cons for unwind data.
2266         (x_handle_property_notify): Skip events already arrived, but don't
2267         free them, as "arrived" field is checked by wait_for_property_change,
2268         and it will be freed by unwind or explicit unexpect_property_change.
2269         (x_get_foreign_selection): Add to new queue.
2270         (receive_incremental_selection): Don't unexpect wait_object when done
2271         as it has already been freed by previous wait_for_property_change.
2273         * xterm.h (x_start_queuing_selection_requests)
2274         (x_stop_queuing_selection_requests, x_handle_selection_request)
2275         (x_handle_selection_clear): Remove prototypes.
2276         (x_handle_selection_event): Add prototype.
2278         * xterm.c (handle_one_xevent): Don't queue X selection events
2279         here, it may be too late if we start queuing after we have already
2280         stored some selection events into the kbd buffer.
2281         (struct selection_event_queue, queue, x_queue_selection_requests)
2282         (x_queue_event, x_unqueue_events, x_start_queuing_selection_requests)
2283         (x_stop_queuing_selection_requests): Remove/move to xselect.c.
2284         (x_catch_errors_unwind): Block input around final XSync.
2286         * keyboard.h (kbd_buffer_unget_event): Add prototype.
2288         * keyboard.c (kbd_buffer_store_event_hold): Remove obsolete code.
2289         (kbd_buffer_unget_event): New function.
2290         (kbd_buffer_get_event, swallow_events): Combine SELECTION events
2291         and use x_handle_selection_event.
2292         (mark_kboards): Don't mark x and y of SELECTION_CLEAR_EVENT.
2294 2004-11-05  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
2296         * xselect.c (TRACE3): New debug macro.
2297         (x_reply_selection_request): Use it.
2298         (receive_incremental_selection): In call to TRACE0, the name of
2299         a symbol is in xname.
2301 2004-11-05  Kim F. Storm  <storm@cua.dk>
2303         * fontset.c (fontset_pattern_regexp): Use unsigned char.
2305 2004-11-04  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
2307         * fileio.c (Fnext_read_file_uses_dialog_p): New function.
2309         * gtkutil.h (use_old_gtk_file_dialog): Declare.
2311         * gtkutil.c: Make use_old_gtk_file_dialog non-static.
2312         (xg_initialize): Move DEFVAR_BOOL for use_old_gtk_file_dialog ...
2313         * xfns.c (syms_of_xfns): ... to here.
2315         * gtkutil.c (xg_get_file_with_chooser): Expand DEFAULT_FILENAME if
2316         it doesn't start with /.
2318 2004-11-04  Kenichi Handa  <handa@m17n.org>
2320         * fontset.c (fontset_pattern_regexp): If '*' is preceded by '\',
2321         treat it as a literal character.
2323 2004-11-03  Kim F. Storm  <storm@cua.dk>
2325         * .gdbinit (ppt): New function.
2327 2004-11-02  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
2329         * xterm.c (x_window_to_scroll_bar): Only call
2330         xg_get_scroll_id_for_window if toolkit scroll bars are used.
2332         * gtkutil.c (xg_get_file_with_chooser): Use GTK_STOCK_OK instead
2333         of save.
2335 2004-11-02  Andreas Schwab  <schwab@suse.de>
2337         * window.c (Fscroll_right): Fix last change.
2339 2004-11-02  Kim F. Storm  <storm@cua.dk>
2341         * Makefile.in (callproc.o): Depend on blockinput.h atimer.h systime.h.
2343 2004-11-02  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
2345         * callproc.c (Fcall_process): Block input around vfork.
2347 2004-11-02  Kim F. Storm  <storm@cua.dk>
2349         * eval.c (Fcalled_interactively_p): Rename from Fcall_interactive_p.
2350         (syms_of_eval): Defsubr it.
2352 2004-11-02  Richard M. Stallman  <rms@gnu.org>
2354         * insdel.c (replace_range_2): New function.
2356         * casefiddle.c (casify_region): Handle changes in byte-length
2357         using replace_range_2.
2359         * emacs.c (USAGE3): Delete --horizontal-scroll-bars, -hb.
2361         * xdisp.c (back_to_previous_visible_line_start):
2362         Subtract 1 from pos when checking previous newline for invisibility.
2364         * window.c (window_scroll_pixel_based): Update preserve_y
2365         for header line if any.
2366         (Fscroll_left, Fscroll_right): Don't call interactive_p;
2367         use a new second argument instead.
2369         * eval.c (Fcall_interactive_p): New function.
2370         (interactive_p): Don't test INTERACTIVE here.
2371         (Finteractive_p): Doc fix.
2373         * eval.c (Feval): Abort if INPUT_BLOCKED_P.
2375 2004-11-02  KOBAYASHI Yasuhiro  <kobayays@otsukakj.co.jp>
2377         * w32fns.c (w32_font_match): Use fast_string_match_ignore_case for
2378         comparing font names.
2380 2004-11-02  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
2382         * fileio.c (Fread_file_name): Pass Qt as fifth parameter to
2383         Fx_file_dialog if only directories should be read.
2385         * lisp.h: Fx_file_dialog takes 5 parameters.
2387         * xfns.c (Fx_file_dialog): Both Motif and GTK version:
2388         Add parameter only_dir_p.
2389         In Motif version, don't put DEFAULT_FILENAME in filter part of the
2390         dialog, just text field part.  Do not add DEFAULT_FILENAME
2391         to list of files if it isn't there.
2392         In GTK version, pass only_dir_p parameter to xg_get_file_name.
2394         * macfns.c (Fx_file_dialog): Add parameter only_dir_p.
2395         Check only_dir_p instead of comparing prompt to "Dired".  When using
2396         a save dialog, add option kNavDontConfirmReplacement, change title
2397         to "Enter name", change text for save button to "Ok".
2399         * w32fns.c (Fx_file_dialog): Add parameter only_dir_p.
2400         Check only_dir_p instead of comparing prompt to "Dired".
2402         * gtkutil.c (xg_get_file_with_chooser)
2403         (xg_get_file_with_selection): New functions, only defined ifdef
2404         HAVE_GTK_FILE_CHOOSER_DIALOG_NEW and HAVE_GTK_FILE_SELECTION_NEW
2405         respectively.
2406         (xg_get_file_name): Add parameter only_dir_p.
2407         Call xg_get_file_with_chooser or xg_get_file_with_selection
2408         depending on HAVE_GTK_FILE* and the value of use_old_gtk_file_dialog.
2409         (xg_initialize): New DEFVAR_BOOL use_old_gtk_file_dialog.
2411         * gtkutil.h (xg_get_file_name): Add parameter only_dir_p.
2413         * config.in: Rebuild (added HAVE_GTK_FILE_*).
2415 2004-11-01  Kim F. Storm  <storm@cua.dk>
2417         * process.c (connect_wait_mask, num_pending_connects):
2418         Only declare and use them if NON_BLOCKING_CONNECT is defined.
2419         (init_process): Initialize them if NON_BLOCKING_CONNECT defined.
2420         (IF_NON_BLOCKING_CONNECT): New helper macro.
2421         (wait_reading_process_output): Only declare and use local vars
2422         Connecting and check_connect when NON_BLOCKING_CONNECT is defined.
2424 2004-11-01  Andy Petrusenco  <Igrek@star-sw.com>  (tiny change)
2426         * w32term.c (x_scroll_run): Delete region objects after use.
2428 2004-10-31  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
2430         * xmenu.c: Add prototypes for forward function declarations.
2431         (popup_get_selection): Remove parameter do_timers, remove call to
2432         timer_check.
2433         (create_and_show_popup_menu, create_and_show_dialog):
2434         Remove parameter do_timers from call to popup_get_selection.
2436         * xdisp.c (update_tool_bar): Pass a copy of f->tool_bar_items to
2437         tool_bar_items and assign the result to f->tool_bar_items if
2438         not equal.  Move BLOCK/UNBLOCK_INPUT from around call to
2439         tool_bar_items to assignment of result.
2441         * atimer.c (alarm_signal_handler): Do not call set_alarm if
2442         pending_atmers is non-zero.
2444 2004-10-31  Kim F. Storm  <storm@cua.dk>
2446         * dispnew.c (margin_glyphs_to_reserve): Don't use ncols_scale_factor.
2448 2004-10-28  Will  <will@glozer.net>
2450         * macterm.c: allow user to assign key modifiers to the Mac Option
2451         key via a 'mac-option-modifier' variable.
2453 2004-10-28  Stefan Monnier  <monnier@iro.umontreal.ca>
2455         * xselect.c (Vx_lost_selection_functions, Vx_sent_selection_functions):
2456         Rename from Vx_lost_selection_hooks and Vx_sent_selection_hooks.
2457         (x_handle_selection_request, x_handle_selection_clear)
2458         (x_clear_frame_selections, syms_of_xselect): Adjust accordingly.
2460 2004-10-28  Richard M. Stallman  <rms@gnu.org>
2462         * w32fns.c (Fx_server_vendor, Fx_server_version): Doc fixes.
2464         * xfns.c (Fx_server_vendor, Fx_server_version): Doc fixes.
2466 2004-10-27  Stefan Monnier  <monnier@iro.umontreal.ca>
2468         * syntax.c (scan_sexps_forward): Give precedence to a 2-char
2469         comment-starter over a 1-char one.
2471 2004-10-27  Richard M. Stallman  <rms@gnu.org>
2473         * xdisp.c (get_next_display_element): In mode lines,
2474         treat newline and tab like other control characters.
2476         * editfns.c (Fmessage): Doc fix.
2478         * indent.c (vmotion): When moving up, check the newline before.
2479         Make prevline an int, not a Lisp_Object.
2481 2004-10-27  Kim F. Storm  <storm@cua.dk>
2483         * editfns.c (Fformat): Allocate discarded table with SAFE_ALLOCA.
2484         Only allocate info and discarded tables once.
2486         * lisp.h (USE_SAFE_ALLOCA): Add and init sa_must_free integer.
2487         (SAFE_ALLOCA, SAFE_ALLOCA_LISP): Increment it when malloc is used.
2488         (SAFE_FREE): Test it to determine if we need to unwind to free.
2489         Remove size arg.  All users changed.
2490         (SAFE_FREE_LISP) Remove.  All users changed to use SAFE_FREE.
2492 2004-10-26  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
2494         * gtkutil.c: Put empty line between comment and function body.
2495         (xg_destroy_widgets): Rename from remove_from_container.
2496         Just destroy all widgets in list.  Argument wcont removed.
2497         (xg_update_menubar, xg_update_submenu): Call xg_destroy_widgets
2498         instead of remove_from_container.
2499         (xg_display_close, xg_create_tool_bar, update_frame_tool_bar)
2500         (free_frame_tool_bar): Add comment.
2502         * xfns.c (xic_create_xfontset): Check that FRAME_XIC_BASE_FONTNAME
2503         is not NULL before strcmp.
2505 2004-10-26  Kim F. Storm  <storm@cua.dk>
2507         * callint.c (Fcall_interactively): Add 'U' code to get the
2508         up-event discarded by a previous 'k' or 'K' argument.
2510 2004-10-26  David Kastrup  <dak@gnu.org>
2512         * buffer.c (syms_of_buffer): Fix a few typos.
2514 2004-10-26  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
2516         * xsmfns.c: Put empty line between comment and function body.
2517         Use two spaces before comment end.
2519 2004-10-25  Kenichi Handa  <handa@m17n.org>
2521         * fontset.c (fontset_pattern_regexp): Optimize for the case that
2522         PATTERN is full XLFD.
2524 2004-10-24  Kenichi Handa  <handa@m17n.org>
2526         * regex.h (enum reg_errcode_t): New value REG_ERANGEX.
2528         * regex.c (re_error_msgid): Add an entry for REG_ERANGEX.
2529         (regex_compile): Return REG_ERANGEX if appropriate.
2531 2004-10-22  Kenichi Handa  <handa@m17n.org>
2533         * editfns.c (Ftranslate_region_internal): New function.
2534         (syms_of_editfns): Defsubr it.
2536 2004-10-22  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
2538         * xfns.c (xic_create_xfontset): Initialize missing_list to NULL.
2540 2004-10-21  K\e,Aa\e(Broly L\e$,1 q\e(Brentey  <lorentey@elte.hu>
2542         * xterm.h (x_output): New member `xic_base_fontname'.
2543         (FRAME_XIC_BASE_FONTNAME): New macro.
2544         (xic_free_xfontset): Declare.
2546         * xfns.c (xic_create_xfontset): Share fontsets between frames
2547         based on base_fontname.
2548         (xic_free_xfontset): New function.
2549         (free_frame_xic): Use it.
2550         (xic_set_xfontset): Ditto.
2552         * xterm.c (xim_destroy_callback): Ditto.
2555 2004-10-20  B. Anyos  <banyos@freemail.hu>  (tiny change)
2557         * w32term.c (x_draw_glyph_string): Use overline_color for overlines.
2559 2004-10-20  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
2561         * xterm.h (XSync): If USE_GTK, define XSync as process_all and then
2562         XSync.
2564         * emacs.c (my_heap_start, heap_bss_diff, MAX_HEAP_BSS_DIFF):
2565         New variables and constant.
2566         (main): Calculate heap_bss_diff.  If we are dumping and the
2567         heap_bss_diff is greater than MAX_HEAP_BSS_DIFF, set PER_LINUX32
2568         and exec ourself again.
2569         (Fdump_emacs): If heap_bss_diff is greater than MAX_HEAP_BSS_DIFF
2570         print a warning.
2572         * lastfile.c: Make my_endbss and my_endbss_static available on all
2573         platforms.
2575         * Makefile.in (RUN_TEMACS): Remove @SETARCH@.
2576         * config.in (HAVE_PERSONALITY_LINUX32): Regenerate.
2578 2004-10-19  Luc Teirlinck  <teirllm@auburn.edu>
2580         * data.c (Flocal_variable_if_set_p): Doc fix.
2582 2004-10-19  Jason Rumney  <jasonr@gnu.org>
2584         * w32.c (init_environment): Set emacs_dir correctly when running
2585         emacs from the build directory.
2587 2004-10-19  Richard M. Stallman  <rms@gnu.org>
2589         * editfns.c (Fdelete_and_extract_region):
2590         If region is empty, return null string.
2592 2004-10-19  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
2594         * gtkutil.h (xg_update_scrollbar_pos): Remove arguments real_left
2595         and canon_width.
2596         (xg_frame_cleared): Remove.
2598         * gtkutil.c (xg_frame_cleared, xg_fixed_handle_expose)
2599         (xg_find_top_left_in_fixed): Remove.
2600         (xg_create_scroll_bar): Put an event box widget between
2601         the scroll bar widget and the edit widget.
2602         (xg_show_scroll_bar): Show the parent widget (the event box).
2603         (xg_remove_scroll_bar): Destroy parent (the event box) also.
2604         (xg_update_scrollbar_pos): Remove arguments real_left and canon_width.
2605         Move the parent (the event box) widget inside the fixed widget.
2606         Move window clear to xterm.c.
2608         * gtkutil.h (xg_frame_cleared): Remove.
2610         * xterm.c (x_clear_frame): Remove call to xg_frame_cleared
2611         (x_scroll_bar_create, XTset_vertical_scroll_bar):
2612         Remove arguments left and width to xg_update_scrollbar_pos.
2613         (XTset_vertical_scroll_bar): Do x_clear_area for USE_GTK also.
2615 2004-10-19  Kenichi Handa  <handa@m17n.org>
2617         * xdisp.c (display_mode_element): Fix display of wide chars.
2619 2004-10-18  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
2621         * gtkutil.c (xg_update_scrollbar_pos): Change XClearWindow to
2622         gdk_window_clear and move gdk_window_process_all_updates after
2623         clear so events are sent to the X server in correct order.
2625 2004-10-18  Kenichi Handa  <handa@m17n.org>
2627         * fontset.c (fs_load_font): Use fast_string_match_ignore_case for
2628         comparing font names.
2629         (fs_query_fontset): Use fast_string_match for comparing fontset names.
2630         (list_fontsets): Likewise.
2632         * search.c (fast_string_match_ignore_case): New function.
2634         * lisp.h (fast_string_match_ignore_case): Extern it.
2636 2004-10-17  Kim F. Storm  <storm@cua.dk>
2638         * xdisp.c (overlay_arrow_at_row): Return overlay string rather
2639         than bitmap if there is not left fringe.
2640         (get_overlay_arrow_glyph_row): Also used on windows system.
2641         (display_line): Display overlay string if no left fringe.
2643 2004-10-16  Jason Rumney  <jasonr@gnu.org>
2645         * w32fns.c (w32_font_match): Encode font name being matched.
2647 2004-10-16  Richard M. Stallman  <rms@gnu.org>
2649         * window.c (Fspecial_display_p): Doc fix.
2651 2004-10-15  Stefan Monnier  <monnier@iro.umontreal.ca>
2653         * doc.c (Fsubstitute_command_keys): Fix remap-handling.
2654         Don't ignore menus, because where-is-internal already does it for us.
2656 2004-10-15  Kim F. Storm  <storm@cua.dk>
2658         * xdisp.c (redisplay_window): Only update fringes and vertical
2659         border on window frames.
2661 2004-10-14  Andreas Schwab  <schwab@suse.de>
2663         * m/ia64.h (DATA_SEG_BITS): Don't define.
2665 2004-10-14  Kim F. Storm  <storm@cua.dk>
2667         * xterm.h: Include Xutil.h after keysym.h to work around bug
2668         in some X versions.
2670 2004-10-13  Stefan Monnier  <monnier@iro.umontreal.ca>
2672         * fns.c (map_char_table): Add missing gcpros.
2674 2004-10-13  Stefan Monnier  <monnier@iro.umontreal.ca>
2676         * keymap.c (get_keymap): An autoload form is not a keymap.
2678         * textprop.c (syms_of_textprop): Make `syntax-table' nonsticky.
2680 2004-10-13  Kim F. Storm  <storm@cua.dk>
2682         * callproc.c (Fcall_process): Simplify handling of display arg.
2683         Resume `display_on_the_fly' once a coding system is determined.
2685         * xdisp.c (redisplay_preserve_echo_area): Fix last change.
2687 2004-10-12  Kim F. Storm  <storm@cua.dk>
2689         * xdisp.c (redisplay_preserve_echo_area): Flush display in case
2690         caller, such as call-process, is not going to poll for input.
2691         (calc_line_height_property): Handle case where it->object is nil.
2693         * xterm.c (x_redisplay_interface): Fix flush_display_optional.
2695 2004-10-12  Kenichi Handa  <handa@m17n.org>
2697         * xdisp.c (get_next_display_element):
2698         If unibyte_display_via_language_environment is zero, display 8-bit
2699         chars in octal in unibyte buffer.
2701 2004-10-12  Kim F. Storm  <storm@cua.dk>
2703         * doc.c (Fsubstitute_command_keys): Ignore remappings unless there
2704         are no ordinary bindings.
2706 2004-10-11  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
2708         * xfns.c (syms_of_xfns): Defsubr x-file-dialog for GTK also.
2710 2004-10-10  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
2712         * macterm.c (x_raise_frame): Add BLOCK_INPUT around SelectWindow.
2713         (x_lower_frame): Add BLOCK_INPUT around SendBehind.
2714         (make_mac_frame): Add BLOCK_INPUT around the making of a
2715         terminal frame.
2716         (mac_initialize): Add BLOCK_INPUT around carbon initialization.
2717         * macgui.h (mktime): Use emacs_mktime.
2718         * macfns.c (Fx_file_dialog): Add BLOCK_INPUT around more code.
2719         Make a cancel file-open dialog be like C-g.
2720         * mac.c (mktime): Use emacs_mktime.
2721         (Fdo_applescript): Add BLOCK_INPUT around do_applescript.
2722         (Fmac_paste_function): Add better error handling for carbon cut/paste.
2724 2004-10-10  Kim F. Storm  <storm@cua.dk>
2726         * keyboard.c (timer_resume_idle): New function to resume idle
2727         timer without resetting timers on the idle list.
2728         (read_char): Use timer_resume_idle. Remove local var last_idle_start.
2729         (timer_start_idle, timer_stop_idle): Declare static.
2730         (read_key_sequence): Use timer_resume_idle instead of timer_start_idle.
2732         * keyboard.h (timer_start_idle, timer_stop_idle): Remove prototypes.
2734 2004-10-08  Steven Tamm  <steventamm@mac.com>
2736         * config.in (HAVE_MALLOC_MALLOC_H): Regenerate.
2737         * macterm.c (mac_check_for_quit_char): Remove warning for using
2738         NULL where 0 should be used.
2739         * unexmacosx.c: Use malloc/malloc.h on Tiger instead of
2740         objc/malloc.h
2741         * mac.c: Include time.h for Tiger compatibility.
2743 2004-10-07  Kim F. Storm  <storm@cua.dk>
2745         * xdisp.c (redisplay_window): Fix flicker on vertical line between
2746         windows.  Update vertical line after drawing window fringes, but
2747         only if actually drawing any bitmaps--or there is no fringe.
2749         * xterm.c (x_update_window_end): Likewise.
2750         * macterm.c (x_update_window_end): Likewise.
2751         * w32term.c (x_update_window_end): Likewise.
2753         * fringe.c (draw_window_fringes): Return value now indicates if
2754         any fringe bitmaps were redrawn (or there are no fringes).
2756         * dispextern.h (draw_window_fringes): Update prototype.
2758 2004-10-06  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
2760         * macfns.c (mac_get_window_bounds): Add extern.
2761         (x_real_positions): Use mac_get_window_bounds.
2763         * macmenu.c (update_submenu_strings): Apply 2004-09-07 change for
2764         xmenu.c (YAILOM).
2766         * macterm.c [!MAC_OSX]: Include Windows.h.
2767         (front_emacs_window): Rename from mac_front_window.  All uses
2768         changed.  Return the frontmost non-tooltip emacs window.
2769         (mac_get_window_bounds): New function.
2770         (x_calc_absolute_position): Use the difference of width and height
2771         between the inner and outer window.
2772         (x_set_offset): Specify window position by the coordinae of the
2773         outer window.  Adjust the position if the title bar is completely
2774         outside the screen.
2775         (app_is_suspended, app_sleep_time): Remove unused variables.
2776         (do_app_resume, do_app_suspend): Remove their contents because
2777         window-activate/deactivate events will do the job.
2778         (do_zoom_window): Remove unused variables.  Make compliant to the
2779         standard way of zooming.  Set f->left_pos and f->top_pos.
2780         (XTread_socket): Don't use argument `expected'.  Don't use
2781         FrontWindow to determine the clicked window.  Exclude unprocessed
2782         mouseUp cases in the early stage.  Add parentheses to fix operator
2783         precedence.
2784         (XTread_socket) [TARGET_API_MAC_CARBON]: Don't specify drag area.
2786 2004-10-05  Jan Dj\e,Ad\e(Brv.  <jan.h.d@swipnet.se>
2788         * config.in: Regenerate.
2790         * Makefile.in (RUN_TEMACS): Check HAVE_RANDOM_HEAPSTART instead of
2791         HAVE_EXECSHIELD.
2793 2004-10-05  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
2795         * xterm.c (x_find_modifier_meanings): Ignore any Super or Hyper for
2796         a row if Alt or Meta has been found for that row.  Also stop scanning
2797         for Keysyms for that row.
2799 2004-10-04  Kim F. Storm  <storm@cua.dk>
2801         * fringe.c (Ffringe_bitmaps_at_pos): Change return value from cons
2802         to list.  Include overlay arrow bitmap in return value.
2804         * xterm.c (XTset_vertical_scroll_bar): Improve handling of scroll
2805         bars with fractional column width.  If scroll bar separates two
2806         windows, move it towards the window it belongs to.  Only update
2807         the padding area below the scroll bar widget when necessary,
2808         i.e. when scroll bar widget is created, moved, or resized.
2810         * xdisp.c (define_frame_cursor1): Do not change frame cursor
2811         while tracking/dragging mouse.
2812         (x_draw_vertical_border): Do not draw line if frame has scroll bars.
2814         * window.c (coordinates_in_window): Relax check for cursor
2815         on vertial border between mode lines.
2816         (Fset_window_fringes): Do not allow negative widths.
2817         (Fset_window_scroll_bars): Likewise.
2819         * .gdbinit (pp): Shorthand for p ARG + pr.
2820         (ff): New command: flush frame updates (X only).
2822 2004-10-03  Michael Albinus  <michael.albinus@gmx.de>
2824         * fileio.c (auto_save_1) Call Ffile_modes for remote files.
2826 2004-09-30  Kenichi Handa  <handa@m17n.org>
2828         * process.c (send_process): Free composition data.
2830         * fileio.c (Finsert_file_contents): Free composition data.
2832         * coding.c (code_convert_region): Don't skip ASCIIs if there are
2833         compositions to encode.
2834         (encode_coding_string): Likewise.  Free composition data.
2836 2004-09-30  Florian Weimer <fw@deneb.enyo.de>
2838         * coding.c (code_convert_region): Free composition data.
2840 2004-09-29  Kim F. Storm  <storm@cua.dk>
2842         * fringe.c: Remove limit on number of bitmaps.
2843         (fringe_bitmaps, fringe_faces): Change to pointers.
2844         (max_fringe_bitmaps): New var.
2845         (Fdefine_fringe_bitmap): Expand fringe_bitmaps and fringe_faces.
2846         (init_fringe): Allocate fringe_bitmaps and fringe_faces.
2848         * dispextern.h (FRINGE_ID_BITS): Increase to 16 bits (64K bitmaps).
2849         (struct glyph_row): Reorder fringe_bitmap related fields.
2850         (struct it): Likewise.
2852         * w32term.c (fringe_bmp): Change to pointer.
2853         (max_fringe_bmp): New var.
2854         (w32_define_fringe_bitmap): Expand fringe_bmp.
2855         (w32_draw_fringe_bitmap): Check max_fringe_bmp.
2856         (w32_destroy_fringe_bitmap): Likewise.
2858 2004-09-29  Kim F. Storm  <storm@cua.dk>
2860         * fringe.c: Simplify last change.
2861         (lookup_fringe_bitmap): New function.
2862         (valid_fringe_bitmap_p, resolve_fringe_bitmap): Remove.
2863         (Fdestroy_fringe_bitmap): Use lookup_fringe_bitmap.
2864         Keep standard bitmaps in Vfringe_bitmaps.
2865         (Fdefine_fringe_bitmap): Use lookup_fringe_bitmap.
2866         (Fset_fringe_bitmap_face): Likewise.
2868         * dispextern.h (lookup_fringe_bitmap): Add prototype.
2869         (valid_fringe_bitmap_p): Remove prototype.
2871         * xdisp.c (handle_single_display_prop): Use lookup_fringe_bitmap.
2873 2004-09-29  Kim F. Storm  <storm@cua.dk>
2875         * fringe.c (destroy_fringe_bitmap, init_fringe_bitmap)
2876         (w32_init_fringe, w32_reset_fringes): Fix bootstrap (NULL rif).
2878         * dispextern.h (valid_fringe_bitmap_p): Fix prototype.
2880         * fringe.c (Vfringe_bitmaps): New variable.
2881         (syms_of_fringe): DEFVAR_LISP it.
2882         (valid_fringe_bitmap_p): Rename from valid_fringe_bitmap_id_p.
2883         Change arg to Lisp_Object and fail if not an integer.
2884         (get_fringe_bitmap_name, resolve_fringe_bitmap)
2885         (destroy_fringe_bitmap): New functions.
2886         (Fdestroy_fringe_bitmap): Change arg to bitmap symbol.
2887         Use destroy_fringe_bitmap.  Remove symbol from Vfringe_bitmaps and
2888         clear its fringe property.
2889         (init_fringe_bitmap): Use destroy_fringe_bitmap instead of
2890         Fdestroy_fringe_bitmap.
2891         (Fdefine_fringe_bitmap): Add BITMAP arg specifying new or existing
2892         bitmap symbol; remove WHICH arg.  Add symbol to Vfringe_bitmaps
2893         and set fringe property.  Signal error if no free slots.
2894         (Fset_fringe_bitmap_face): Change arg to bitmap symbol.
2895         (Ffringe_bitmaps_at_pos): Return bitmap symbols instead of numbers.
2897         * xdisp.c (handle_single_display_prop): Fringe bitmaps are now
2898         symbols with a fringe property.
2900 2004-09-27  Kim F. Storm  <storm@cua.dk>
2902         * buffer.c (syms_of_buffer) <indicate-buffer-boundaries>:
2903         Doc fix.  Format may now be a symbol or alist, not a cons.
2905         * fringe.c (update_window_fringes): Handle new formats of
2906         indicate-buffer-boundaries (symbol or alist).  No longer
2907         allow a simple cons.
2908         (Ffringe_bitmaps_at_pos): Use nil value for no bitmap.
2910 2004-09-25  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
2912         * config.in: Rebuild.
2914 2004-09-24  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
2916         * config.in: Rebuild.
2918         * Makefile.in: Run setarch i386 ./temacs if exec-shield  is present.
2920 2004-09-18  Stefan Monnier  <monnier@iro.umontreal.ca>
2922         * xterm.c (x_term_init): Work around a bug in some X servers.
2924 2004-09-18  Richard M. Stallman  <rms@gnu.org>
2926         * buffer.c (syms_of_buffer) <default-major-mode>: Doc fix.
2928         * xdisp.c (try_window_reusing_current_matrix):
2929         Handle the case where we reach the old displayed text,
2930         out of sync with the old line boundary.
2932 2004-09-14  Stefan Monnier  <monnier@iro.umontreal.ca>
2934         * fileio.c (Finsert_file_contents): Fix case of replacement in a
2935         narrowed buffer.
2937 2004-09-14  Kim F. Storm  <storm@cua.dk>
2939         * puresize.h (PURESIZE_RATIO): Define based on BITS_PER_EMACS_INT.
2941         * xfaces.c (Qface_no_inherit): New var.
2942         (syms_of_xfaces): Intern and staticpro it.
2943         (Finternal_make_lisp_face, Finternal_set_lisp_face_attribute)
2944         (Finternal_copy_lisp_face, update_face_from_frame_parameter):
2945         Don't increment face_change_count when face has non-nil
2946         face-no-inherit property.
2948 2004-09-13  Stefan Monnier  <monnier@iro.umontreal.ca>
2950         * bytecode.c (BYTE_CODE_QUIT): Add missing AFTER_POTENTIAL_GC.
2951         (Fbyte_code): Remove dead code after `wrong_type_argument'.
2953         * alloc.c (Fgarbage_collect): Mark keyboards, gtk data, and specpdl
2954         before doing the mark_stack_check_gcpros since they're not on the stack.
2956 2004-09-12  Kim F. Storm  <storm@cua.dk>
2958         * editfns.c (Fformat): Handle format strings with multiple text
2959         properties.  Reverse text property list from the format string,
2960         so the positions are in increasing order.
2962 2004-09-10  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
2964         * xselect.c (x_reply_selection_request): XSync and UNBLOCK before
2965         x_uncatch_errors so that possible protocol errors are delivered.
2967 2004-09-10  Eli Zaretskii  <eliz@gnu.org>
2969         * Makefile.in (msdos.o): Depend on buffer.h, commands.h, and
2970         blockinput.h.
2971         (dosfns.o): Depend on blockinput.h, window.h, dispextern.h,
2972         charset.h, and coding.h
2973         (w16select.o): Depend on buffer.h, charset.h, coding.h, and composite.h.
2974         (term.o): Depend on window.h and keymap.h.
2975         (abbrev.o): Depend on syntax.h.
2976         (callint.o): Depend on keymap.h.
2977         (casefiddle.o): Depend on charset.h and keymap.h.
2978         (category.o): Depend on keymap.h.
2979         (coding.o): Depend on dispextern.h.
2980         (cmds.o): Depend on keyboard.h and keymap.h.
2981         (dispnew.o): Depend on indent.h and intervals.h.
2982         (doc.o): Depend on keymap.h.
2983         (editfns.o): Depend on frame.h.
2984         (emacs.o): Depend on dispextern.h.
2985         (fileio.o): Don't depend on ccl.h.
2986         (filelock.o): Depend on charset.h and coding.h.
2987         (frame.o): Depend on w32term.h and macterm.h.
2988         (insdel.o): Depend on region-cache.h.
2989         (keyboard.o): Depend on keymap.h, w32term.h, and macterm.h.
2990         (minibuf.o): Depend on $(INTERVALS_SRC) and keymap.h.
2991         (search.o): Depend on $(INTERVALS_SRC).
2992         (syntax.o): Depend on keymap.h, regex.h, and $(INTERVALS_SRC).
2993         (window.o): Depend on keymap.h, blockinput.h, $(INTERVALS_SRC),
2994         xterm.h, w32term.h, and macterm.h.
2995         (xdisp.o): Depend on keyboard.h, $(INTERVALS_SRC), xterm.h,
2996         w32term.h, and macterm.h.
2997         (xfaces.o): Depend on keyboard.h, $(INTERVALS_SRC),
2998         region-cache.h, xterm.h, w32term.h, and macterm.h.
2999         (bytecode.o): Depend on dispextern.h, frame.h, and xterm.h.
3000         (data.o): Depend on frame.h.
3001         (fns.o): Depend on keymap.h, xterm.h, and blockinput.h.
3002         (print.o): Depend on termchar.h and $(INTERVALS_SRC).
3003         (lread.o): Depend on $(INTERVALS_SRC), termhooks.h, and coding.h.
3004         (intervals.o): Depend on keymap.h.
3006         * msdos.c (msdos_set_cursor_shape, IT_display_cursor):
3007         Add debugging print-out to termscript.
3009 2004-09-09  Richard M. Stallman  <rms@gnu.org>
3011         * xdisp.c (decode_mode_spec): Use current buffer for most purposes.
3013 2004-09-08  Richard M. Stallman  <rms@gnu.org>
3015         * window.c (Fset_window_buffer): Doc fix.
3017         * xdisp.c (Fformat_mode_line): New arg BUFFER says which buffer to use.
3019 2004-09-08  Dan Nicolaescu  <dann@ics.uci.edu>
3021         * minibuf.c (history_delete_duplicates): New variable.
3022         (read_minibuf): Use it.
3023         (syms_of_minibuf): Create the corresponding lisp variable.
3025 2004-09-08  Kim F. Storm  <storm@cua.dk>
3027         * xdisp.c (set_cursor_from_row): Also look at 'cursor' property in
3028         overlay just before point.
3030 2004-09-07  Luc Teirlinck  <teirllm@auburn.edu>
3032         * buffer.h (struct buffer): Add auto_save_file_format field.
3033         * buffer.c (reset_buffer, init_buffer_once):
3034         Handle auto_save_file_format field.
3035         (syms_of_buffer): Add DEFVAR_PER_BUFFER for
3036         `buffer-auto-save-file-format'.
3037         * fileio.c: Delete declaration for removed Vauto_save_file_format.
3038         (build_annotations): Adapt to replacement of
3039         `auto-save-file-format' with the new buffer-local variable
3040         `buffer-auto-save-file-format'.
3041         (syms_of_fileio): Delete DEFVAR_LISP for auto-save-file-format.
3043 2004-09-07  Jason Rumney  <jasonr@gnu.org>
3045         * w32term.h (AppendMenuW_Proc): Move declaration from w32menu.c.
3047         * w32fns.c (w32_wnd_proc) [WM_MEASUREITEM, WM_DRAWITEM]:
3048         Handle Unicode menu titles.
3050 2004-09-07  Kim F. Storm  <storm@cua.dk>
3052         * xdisp.c (set_cursor_from_row): Fix last change.  Only use 'cursor'
3053         property from text property or overlay strings at point.
3055 2004-09-07  Stefan Monnier  <monnier@iro.umontreal.ca>
3057         * xmenu.c (update_submenu_strings): YAILOM.
3058         (set_frame_menubar): Make sure last_i is initialized.
3060 2004-09-03  Jason Rumney  <jasonr@gnu.org>
3062         * w32menu.c (_widget_value): Add lname and lkey.
3063         (digest_single_submenu): Set lname and lkey in widget_value
3064         instead of name and key.
3065         (update_submenu_strings): New function.
3066         (set_frame_menubar): Remove call to inhibit_garbage_collection,
3067         call update_submenu_strings.
3069         * w32menu.c (globals_of_w32menu): Check for Unicode API.
3070         (digest_single_submenu, w32_menu_show): Encode menu strings as
3071         UTF-8 if Unicode API is available.
3072         (utf8to16): New function.
3073         (add_menu_item): Use it when calling Unicode API.
3075 2004-09-03  Kim F. Storm  <storm@cua.dk>
3077         * xdisp.c (set_cursor_from_row): Look for non-nil `cursor' property
3078         in overlay or text-property strings; set cursor on corresponding
3079         glyph rather than at end of the string.
3081 2004-09-02  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
3083         * macfns.c (x_real_positions): Save the current window port and
3084         set a new one before obtaining the global coordinate.
3085         Use FRAME_MAC_WINDOW.
3086         (x_set_name, x_set_title): Encode title to UTF8.
3087         Use SetWindowTitleWithCFString.
3088         (Fx_server_version): Get correct OS version.
3090         * macmenu.c (add_menu_item): Remove unused variable `i'.
3091         Don't let separator items destroy refence constants of other menu items.
3093         * macterm.c (x_update_end): Move SetPortWindowPort to inside
3094         BLOCK_INPUT.
3095         (x_set_offset): Use FRAME_MAC_WINDOW.
3097         * xdisp.c (note_mouse_highlight): Set the mouse pointer shape to
3098         nontext_cursor if it is on a scroll bar.
3100         * s/darwin.h (LIBS_CARBON): New define to specify libraries for
3101         Carbon support.
3102         (LD_SWITCH_SYSTEM_TEMACS): Don't link with unused libstdc++.
3103         Use LIBS_CARBON.
3105 2004-09-02  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
3107         * xfns.c (x_set_name_internal): New function.  Check if we shall call
3108         xfree before ENCODE_UTF_8.
3109         (x_set_name, x_set_title): Call x_set_name_internal.
3111 2004-08-31  NAKAMURA Toshikazu  <nr-tkz@nifty.com>  (tiny change)
3113         * w32fns.c (w32_load_font): If a BDF font is already loaded, do not
3114         reload it.
3116 2004-08-30  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
3118         * macmenu.c (_widget_value): Add lname and lkey.
3119         (single_submenu): Set lname and lkey in widget_value
3120         instead of name and key.
3121         (update_submenu_strings): New function.
3122         (set_frame_menubar): Remove call to inhibit_garbage_collection,
3123         call update_submenu_strings.
3125         * xmenu.c (digest_single_submenu): Set lname and lkey in widget_value
3126         instead of name and key.
3127         (update_submenu_strings): New function.
3128         (set_frame_menubar): Remove call to inhibit_garbage_collection,
3129         call update_submenu_strings.
3131         * gtkutil.h (_widget_value): Added lname and lkey.
3133 2004-08-30  Steven Tamm  <steventamm@mac.com>
3135         * macmenu.c (mac_menu_show): Remove shadowing of menu variable
3136         by using different names for inner loop variables.
3138 2004-08-27  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
3140         * xmenu.c (set_frame_menubar): Reintroduce inhibit_garbage_collection
3141         from 2002-07-15T00:01:34Z!raeburn@raeburn.org so that strings from ENCODE_UTF_8 isn't GC:ed before used.
3143         * gtkutil.c (xg_create_frame_widgets): Compensate for tool bar when
3144         tool bar items is 0.
3146 2004-08-26  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
3148         * macmenu.c (ENCODE_MENU_STRING): Added to handle multibyte
3149         strings in menu items.
3150         (single_submenu): Use ENCODE_MENU_STRING
3151         (mac_menu_show): Use ENCODE_MENU_STRING.  Reset grabbed because
3152         button release isn't passed to event loop
3153         (add_menu_item): Use SetMenuItemWithCFString
3155 2004-08-26  Steven Tamm  <steventamm@mac.com>
3157         * fileio.c (Fread_file_name): Call x_file_dialog on carbon on
3158         tool-bar/menu click
3159         * macfns.c (Fx_file_dialog): Implemented using NavServices
3161 2004-08-24  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
3163         * xterm.c (x_catch_errors_unwind): Do not XSync if display has closed.
3165         * xfns.c (x_window_to_frame, x_any_window_to_frame)
3166         (x_non_menubar_window_to_frame, x_menubar_window_to_frame)
3167         (x_top_window_to_frame): Return 0 if wdesc is None.
3169 2004-08-22  Richard M. Stallman  <rms@gnu.org>
3171         * process.c (process_send_signal) [SIGNALS_VIA_CHARACTERS,
3172         HAVE_TERMIOS]: If there's no char for this signal, drop through
3173         and use system calls.
3175         * bytecode.c (Fbyte_code) <unwind-protect>: Cannot GC.
3177 2004-08-20  Kim F. Storm  <storm@cua.dk>
3179         * process.c (wait_reading_process_output): Rename from
3180         wait_reading_process_input.  All uses changed.
3181         (wait_reading_process_output_1): Rename from
3182         wait_reading_process_input_1.  All uses changed.
3184         * dispnew.c (Fsleep_for): Remove obsolete code.
3186 2004-08-20  Kenichi Handa  <handa@m17n.org>
3188         * syntax.c (skip_chars): Fix for unibyte case.
3190 2004-08-19  Stefan Monnier  <monnier@iro.umontreal.ca>
3192         * syntax.c (char_quoted): Mixup byte/char pos.
3193         (back_comment): Fixup globals in all cases.
3195 2004-08-19  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
3197         * xfns.c (x_set_name, x_set_title): Encode title to UTF8 before
3198         passing it to gtk_window_set_title.
3200 2004-08-19  Kim F. Storm  <storm@cua.dk>
3202         * process.c (wait_reading_process_input): Clean up.
3203         Add wait_for_cell, wait_proc, and just_wait_proc args
3204         to avoid overloading `read_kbd' and `do_display' args.
3205         Change read_kbd arg to int.  All callers changed.
3207         * process.c (process_send_signal): Use CDISABLE.
3209         * sysdep.c (child_setup_tty, init_sys_modes): Use CDISABLE.
3211 2004-08-18  Kim F. Storm  <storm@cua.dk>
3213         * process.c (Faccept_process_output): Add arg JUST-THIS-ONE;
3214         forward to wait_reading_process_input via DO_DISPLAY arg.
3215         (wait_reading_process_input): If DO_DISPLAY < 0 for a process
3216         object, only process output from that process; also inhibit
3217         running timers if DO_DISPLAY==-2.
3219 2004-08-17  Kim F. Storm  <storm@cua.dk>
3221         * process.c (process_send_signal): Fix last change--use
3222         _POSIX_VDISABLE instead of CVDISABLE when available.
3224 2004-08-16  Richard M. Stallman  <rms@gnu.org>
3226         * sysdep.c (child_setup_tty) [SIGNALS_VIA_CHARACTERS]:
3227         Set VQUIT and VINTR chars to the standard ones if they are unset.
3228         [AIX]: Don't do that here.  And don't force VINTR to standard
3229         when SIGNALS_VIA_CHARACTERS.
3231         * process.c (process_send_signal)
3232         [SIGNALS_VIA_CHARACTERS, HAVE_TERMIOS]: Clean up.
3233         Do nothing if the character is CVDISABLE.
3235         * xfaces.c (merge_face_ref): Specifying `unspecified' is a no-op.
3237         * intervals.c (move_if_not_intangible):
3238         Force POSITION to be between BEGV and ZV.
3240 2004-08-14  John Paul Wallington  <jpw@gnu.org>
3242         * buffer.c (Frestore_buffer_modified_p): Doc fix.
3244         * fileio.c (Fread_file_name): Doc fix.
3246         * minibuf.c (syms_of_minibuf) <completion-ignore-case>: Doc fix.
3248 2004-08-09  Luc Teirlinck  <teirllm@auburn.edu>
3250         * keymap.c (Fmake_keymap, Fmap_keymap, Fwhere_is_internal): Doc fixes.
3252 2004-08-08  Luc Teirlinck  <teirllm@auburn.edu>
3254         * keyboard.c: Declare Qdisabled_command_function instead of
3255         Qdisabled_command_hook.
3256         (Fcommand_execute): Use Qdisabled_command_function instead of
3257         Qdisabled_command_hook.
3258         (syms_of_keyboard): Ditto.
3260 2004-08-07  Luc Teirlinck  <teirllm@auburn.edu>
3262         * keymap.c (Flocal_key_binding, Fglobal_key_binding)
3263         (syms_of_keymap) <key-translation-map>: Doc fixes.
3265 2004-08-07  Stefan Monnier  <monnier@iro.umontreal.ca>
3267         * window.c (window_list_1): YAILOM.
3269         * fileio.c (make_temp_name): Handle multibyte prefixes.
3271 2004-08-06  Luc Teirlinck  <teirllm@auburn.edu>
3273         * keyboard.c (syms_of_keyboard) <overriding-terminal-local-map>:
3274         Doc fix.
3276 2004-08-03  Kenichi Handa  <handa@m17n.org>
3278         * coding.c (decode_coding_string): Adjust coding->consumed, and
3279         etc. with shrinked_bytes.
3281 2004-08-03  Kim F. Storm  <storm@cua.dk>
3283         * indent.c (compute_motion): Fix check for full width window
3284         in non-window case.  Do not count left truncation glyph on
3285         window systems.
3287 2004-08-02  Luc Teirlinck  <teirllm@auburn.edu>
3289         * data.c (Finteractive_form): Doc fix.
3291 2004-08-02  Kim F. Storm  <storm@cua.dk>
3293         * indent.c (compute_motion): Use actual window width if WIDTH is -1,
3294         properly accounting for continuation glyph on non-window systems.
3295         (Fcompute_motion): Use actual window width if WIDTH is nil, and
3296         actual window width/height if TOPOS is nil, properly accounting for
3297         continuation glyphs on non-window systems, and optional header lines.
3298         (vmotion): Let compute_motion calculate actual window width.
3300         * window.c (window_scroll_line_based): Let compute_motion
3301         calculate actual window width.
3303 2004-08-02  Kim F. Storm  <storm@cua.dk>
3305         * process.c (read_process_output): Use whole read buffer.
3306         Don't trigger adaptive read buffering on errors.
3308 2004-07-31  Luc Teirlinck  <teirllm@auburn.edu>
3310         * keymap.c (Fset_keymap_parent, Fdefine_prefix_command): Doc fixes.
3312         * keyboard.c (syms_of_keyboard) <disable-point-adjustment>:  Doc fix.
3314         * callint.c (Fcall_interactively): Doc fix.
3316 2004-07-30  Richard M. Stallman  <rms@gnu.org>
3318         * abbrev.c (Fexpand_abbrev): Undo previous change.
3320 2004-07-30  Kim F. Storm  <storm@cua.dk>
3322         * editfns.c (Fformat): Allocate extra (dummy) element in info.
3324 2004-07-28  Luc Teirlinck  <teirllm@auburn.edu>
3326         * eval.c (Fdefvar, Fdefconst): Doc fixes.
3328 2004-07-27  Kim F. Storm  <storm@cua.dk>
3330         * xdisp.c (move_it_in_display_line_to): Check BUFFER_POS_REACHED_P after
3331         we have ensured that the glyph fits on the current line (or returned
3332         MOVE_LINE_CONTINUED otherwise).
3334 2004-07-26  Kim F. Storm  <storm@cua.dk>
3336         * xdisp.c (move_it_in_display_line_to): If overflow-newline-into-fringe
3337         is enabled, return MOVE_LINE_CONTINUED rather than MOVE_POS_MATCH_OR_ZV
3338         if target position is at end of display line but char is not a newline.
3340 2004-07-25  Richard M. Stallman  <rms@gnu.org>
3342         * window.c (coordinates_in_window): Return ON_SCROLL_BAR
3343         instead of ON_VERTICAL_BORDER, when on scroll bar.
3344         (Fcoordinates_in_window_p): Handle ON_SCROLL_BAR--return nil.
3346         * dispextern.h (enum window_part): Add ON_SCROLL_BAR.
3348         * window.c (Fcoordinates_in_window_p):
3349         Take account of FRAME_INTERNAL_BORDER_WIDTH.
3351         * alloc.c (check_cons_list): New function (contents commented out).
3353 2004-07-24  Luc Teirlinck  <teirllm@auburn.edu>
3355         * xfaces.c (Fcolor_supported_p): Doc fix.
3357         * frame.c (Fselect_frame, Fset_frame_selected_window)
3358         (Fframe_visible_p, Fraise_frame): Doc fixes.
3360 2004-07-24  Richard M. Stallman  <rms@gnu.org>
3362         * keyboard.h (not_single_kboard_state): Declare.
3364         * fileio.c (Fwrite_region): Doc fix.
3366         * window.c (Fwindow_at): Take account of FRAME_INTERNAL_BORDER_WIDTH.
3368         * abbrev.c (Fexpand_abbrev): Run Qpre_abbrev_expand_hook
3369         only when a real abbrev is present.
3371         * xfns.c (x_icon_verify): New function.
3372         (Fx_create_frame): Use it.
3374 2004-07-22  Barry Fishman <barry_fishman@att.net>  (tiny change)
3376         * s/gnu-linux.h: Use GC_MARK_STACK if __amd64__ is defined.
3378 2004-07-21  Kim F. Storm  <storm@cua.dk>
3380         * window.h (struct glyph_matrix): New members nrows_scale_factor
3381         and ncols_scale_factor.
3383         * window.c (make_window): Initialize nrows_scale_factor and
3384         ncols_scale_factor members.
3386         * dispnew.c (margin_glyphs_to_reserve): Apply ncols_scale_factor.
3387         (allocate_matrices_for_frame_redisplay): Fix left/right margin mix-up.
3388         (required_matrix_height): Apply nrows_scale_factor.
3389         (required_matrix_width): Apply ncols_scale_factor.
3391         * xdisp.c (display_line): Increment nrows_scale_factor and set
3392         fonts_changed_p if past last allocated row.
3393         (append_glyph, append_composite_glyph, produce_image_glyph)
3394         (append_stretch_glyph): Increment ncols_scale_factor and set
3395         fonts_changed_p if current area is full.
3397 2004-07-21  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
3399         * widget.c (EmacsFrameDestroy): Don't abort if normal_gc is 0.
3401 2004-07-19  Luc Teirlinck  <teirllm@auburn.edu>
3403         * window.c (Fpos_visible_in_window_p, Fset_window_hscroll)
3404         (Fwindow_inside_pixel_edges, Fwindow_end, Fset_window_point)
3405         (Fset_window_start, Fscroll_up, Fscroll_down)
3406         (Fother_window_for_scrolling, Fscroll_other_window)
3407         (Fsave_window_excursion, Fset_window_vscroll)
3408         (syms_of_window) <window-size-fixed>: Doc fixes.
3410 2004-07-19  KOBAYASHI Yasuhiro  <kobayays@otsukakj.co.jp>
3412         * w32fns.c (Fx_file_dialog): Use ENCODE_FILE instead of
3413         ENCODE_SYSTEM for filenames.
3415 2004-07-18  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
3417         * mac.c (sys_select): Block input around call to
3418         ReceiveNextEvent to prevent breakage.  Correctly handle
3419         blocking on event queue only by calling ReceiveNextEvent
3420         instead of select (since GUI events aren't on an fd).
3421         (sys_read): Remove function
3422         * sysdep.c: Remove redefine of read to sys_read if HAVE_CARBON
3424 2004-07-18  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
3426         * mac.c (sys_select): Redo sys_select to use alarm-based
3427         polling instead of 1 sec timeouts (like solaris).
3429         * macterm.c (x_make_frame_visible): Comment in polling on
3430         frame creation.
3432         * keyboard.c: Undef SIGIO on Carbon
3434         * atimer.c (alarm_signal_handler): Call alarm handlers after
3435         scheduling.
3437         * eval.c (Feval): Remove quit_char test
3439         * process.c (wait_reading_process_input): Remove clearing
3440         stdin for select call on process input.
3442 2004-07-18  Luc Teirlinck  <teirllm@auburn.edu>
3444         * xdisp.c (syms_of_xdisp) <window-scroll-functions>: Correct
3445         capitalization error in docstring.
3447 2004-07-17  Juanma Barranquero  <lektu@terra.es>
3449         * keyboard.c (not_single_kboard_state): Do nothing unless
3450         MULTI_KBOARD is defined.
3452 2004-07-17  Richard M. Stallman  <rms@gnu.org>
3454         * window.c (coordinates_in_window): Inside the window but outside
3455         its box to the L or R, return ON_VERTICAL_BORDER.
3456         (window_list_1): Rotate the list to start with WINDOW.
3458         * print.c (print_preprocess): Test for print_depth at limit
3459         before entering in being_printed.
3461         * keyboard.c (not_single_kboard_state): New function.
3462         (stuff_buffered_input): Now no-op only if no SIGTSTP.
3464         * frame.c (Fdelete_frame): If we're in single_bboard_state on
3465         this kboard, and we delete its last frame, go to any_kboard_state.
3467         * buffer.c (syms_of_buffer) <transient-mark-mode>: Doc fix.
3469 2004-07-15  KOBAYASHI Yasuhiro  <kobayays@otsukakj.co.jp>
3471         * w32fns.c (Fx_file_dialog): Encode strings in system coding
3472         system before passing them to OS functions for display.
3474 2004-07-15  David Kastrup  <dak@gnu.org>
3476         * search.c (syms_of_search): Staticpro `saved_last_thing_searched'.
3477         Apparently fixes an abort condition.
3479 2004-07-14  Luc Teirlinck  <teirllm@auburn.edu>
3481         * fileio.c (Fvisited_file_modtime): Return a list of two integers,
3482         instead of a cons.
3484 2004-07-14  K\e,Ba\e(Broly L\e,Bu\e(Brentey  <lorentey@elte.hu>
3486         * keyboard.c (echo_dash): Do nothing if there already is a dash
3487         at the end of the echo string.
3489 2004-07-12  Kim F. Storm  <storm@cua.dk>
3491         * alloc.c (mark_object): Only look at Lisp_Misc_Save_Value
3492         if GC_MARK_STACK.
3494 2004-07-10  Luc Teirlinck  <teirllm@auburn.edu>
3496         * buffer.c (Fswitch_to_buffer, Fpop_to_buffer): Doc fixes.
3498         * window.c (Fwindow_buffer, Fother_window,  Fget_lru_window)
3499         (Fget_largest_window, Fget_buffer_window, Fdelete_windows_on)
3500         (Freplace_buffer_in_windows, Fset_window_buffer)
3501         (Fselect-window, Fdisplay-buffer, Fsplit_window): Doc fixes.
3502         (syms_of_window): Expand docstring of `display-buffer-function'.
3504 2004-07-09  Luc Teirlinck  <teirllm@auburn.edu>
3506         * editfns.c (Ffloat_time, Fformat_time_string, Fdecode_time)
3507         (Fcurrent_time_string, Fcurrent_time_zone): Mention in docstrings
3508         that time values of the type (HIGH . LOW) are considered obsolete.
3510 2004-07-06  Luc Teirlinck  <teirllm@auburn.edu>
3512         * keyboard.c (syms_of_keyboard): Fix `keyboard-translate-table'
3513         docstring.
3515         * fns.c (Fclear_string): Declare `len' before call to CHECK_STRING.
3517 2004-07-06  John Paul Wallington  <jpw@gnu.org>
3519         * eval.c (Fdefmacro): Signal an error if NAME is not a symbol.
3521         * fns.c (Fclear_string): Signal an error if STRING is not a string.
3523 2004-07-05  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
3525         * macterm.c (mac_initialize_display_info): Use CGGetActiveDisplayList
3526         instead of CGMainDisplayID (only in OSX 10.2 and later).
3528 2004-07-04  John Paul Wallington  <jpw@gnu.org>
3530         * fileio.c (read_file_name_completion_ignore_case): New variable.
3531         (syms_of_fileio): Declare and initialise it.
3532         (Fread_file_name): Bind `completion-ignore-case' to respect it.
3534 2004-07-03  Eli Zaretskii  <eliz@gnu.org>
3536         * msdos.c (dos_rawgetc): Use make_number to produce Lisp objects
3537         for event.x and event.y.
3539 2004-07-01  Kenichi Handa  <handa@m17n.org>
3541         * w32select.c (Fw32_set_clipboard_data): Update `nbytes' correctly
3542         after getting a new string by pre-write-conversion.
3544 2004-06-30  Stefan Monnier  <monnier@iro.umontreal.ca>
3546         * xterm.c (x_detect_focus_change): Remove unused var `nr_events'.
3547         (x_calc_absolute_position): Remove unused var `child'.
3549         * xfaces.c (x_supports_face_attributes_p)
3550         (Fdisplay_supports_face_attributes_p): YAILOM.
3551         (tty_supports_face_attributes_p): Remove unused var `i'.
3553         * syntax.c (skip_chars): Remove unused labels fwd_unibyte_ok and
3554         back_unibyte_ok.
3556         * search.c (match_limit, Fmatch_data, Fset_match_data): YAILOM.
3558         * fontset.c (Fset_fontset_font): Remove unused vars `family' and `registry'.
3560         * Makefile.in (${etc}DOC): Fix file name of make-docfile.
3562 2004-06-30  Andreas Schwab  <schwab@suse.de>
3564         * image.c (CHECK_LIB_AVAILABLE): Add third parameter LIBRARIES.
3565         (Finit_image_library): Pass LIBRARIES through to
3566         CHECK_LIB_AVAILABLE.  Declare parameters.  Doc fix.
3567         (lookup_image_type): Pass Qnil as second argument to
3568         Finit_image_library.
3570         * lisp.h (Finit_image_library): Declare.
3572 2004-06-29  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
3574         * macterm.c (do_window_activate, do_window_deactivate): Remove.
3575         (XTread_socket): Send mouse button events to the toolbox
3576         dispatcher even when the mouse is grabbed.  Don't process window
3577         activate events for non-Emacs windows.  Replace function calls to
3578         do_window_activate and do_window_deactivate with their contents.
3579         Reset mouse grabbing status when a window is deactivated.
3581 2004-06-29  Steven Tamm  <steventamm@mac.com>
3583         * macterm.c (mac_get_emulated_btn)
3584         (mac_event_to_emacs_modifiers): Fix emulated mouse button
3585         support to correctly mask out modifiers.
3587 2004-06-29  David Kastrup  <dak@gnu.org>
3589         * search.c (Fset_match_data): Allow buffer before end of list
3590         which can happen if set-match-data is using a pre-consed list.
3592 2004-06-28  Steven Tamm  <steventamm@mac.com>
3594         * macterm.c (XTread_socket): Correctly set the frame position
3595         after the window is moved.
3597 2004-06-28  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
3599         * gtkutil.c (xg_get_image_for_pixmap): Call g_object_unref on
3600         gpix and gmask just before return to avoid memory leak.
3601         (xg_get_image_for_pixmap): Add workaround for monochrome displays
3602         so insensitive and activated icons look ok.
3604 2004-06-27  Jason Rumney  <jasonr@gnu.org>
3606         * w32fns.c (file_dialog_callback): Disable edit control if set
3607         to directories only on CDN_INITDONE message.
3608         (Fx_file_dialog): Default to directories only when prompt starts
3609         with "Dired".
3611 2004-06-25  Kim F. Storm  <storm@cua.dk>
3613         * alloc.c (allocate_misc): Update total_free_markers.
3614         (free_misc): New function.
3615         (safe_alloca_unwind, free_marker): Use it.
3617         * lisp.h (free_misc): Add prototype.
3619         * fns.c (Fmapconcat, Fmapcar): Remove superfluous GCPROs.
3621 2004-06-24  Richard M. Stallman  <rms@gnu.org>
3623         * emacs.c (Vsignal_USR1_hook, Vsignal_USR2_hook): Definitions deleted.
3624         (syms_of_emacs): Lisp variables deleted.
3626 2004-06-23  David Kastrup  <dak@gnu.org>
3628         * search.c (Freplace_match): Adjust the match-data more thoroughly
3629         when replacing strings in the buffer.
3630         (Fmatch_data): When INTEGERS is non-nil and the last match was in
3631         a buffer, add the buffer as last element to the match data.
3632         (Fset_match_data): If an additional element of the match-data is a
3633         buffer, restore it to last_thing_searched.
3634         (save_search_regs): Save last_thing_searched as part of the match data.
3635         (restore_match_data): Restore it again.
3637 2004-06-23  Luc Teirlinck  <teirllm@auburn.edu>
3639         * keymap.c (Ftext_char_description): Doc fix.
3640         * doc.c (Fsnarf_documentation): Doc fix.
3642 2004-06-22  Kim F. Storm  <storm@cua.dk>
3644         * fns.c (Fmapcar, Fmapconcat): GCPRO the args array.
3646         * lisp.h (struct Lisp_Save_Value): New member dogc.
3647         (SAFE_ALLOCA_LISP): Change second arg to number of elements.
3648         Set dogc member in Lisp_Save_Value object so it will be GC'ed.
3649         (SAFE_FREE_LISP): New macro.
3651         * alloc.c (safe_alloca_unwind): Clear dogc and pointer members.
3652         (make_save_value): Init new dogc member.
3653         (mark_object): Mark Lisp_Save_Value pointer array if dogc is set.
3655         * fns.c (Fmapconcat, Fmapcar): Use new SAFE_ALLOCA_LISP and
3656         SAFE_FREE_LISP macros.
3658 2004-06-22  Kim F. Storm  <storm@cua.dk>
3660         * lisp.h (SAFE_ALLOCA_LISP): New macro to allocate Lisp_Objects.
3661         Temporarily inhibits GC if memory is xmalloc'ed, as the Lisp_Objects
3662         in that memory area are unknown to GC.  Add comments.
3664         * fns.c (Fmapconcat, Fmapcar): Use SAFE_ALLOCA_LISP.
3666 2004-06-21  Kim F. Storm  <storm@cua.dk>
3668         * lisp.h (MAX_ALLOCA): Define here.
3669         (safe_alloca_unwind): Add prototype.
3670         (USE_SAFE_ALLOCA, SAFE_ALLOCA, SAFE_FREE): New macros.
3672         * alloc.c (safe_alloca_unwind): New function.
3674         * casefiddle.c (casify_object): Use SAFE_ALLOCA.
3676         * charset.c (Fstring): Use SAFE_ALLOCA.
3678         * coding.c (MAX_ALLOCA): Remove define.
3680         * data.c (MAX_ALLOCA): Remove define.
3681         (Faset): Use SAFE_ALLOCA.
3683         * editfns.c (Fformat, Ftranspose_regions): Use SAFE_ALLOCA.
3685         * fns.c (string_make_multibyte, string_to_multibyte)
3686         (string_make_unibyte, Fmapconcat, Fmapcar): Use SAFE_ALLOCA.
3687         (MAX_ALLOCA): Remove define.
3688         (Fbase64_encode_region, Fbase64_encode_string)
3689         (Fbase64_decode_region, Fbase64_decode_string): Use SAFE_ALLOCA.
3690         (Fbase64_encode_region, Fbase64_encode_string): Fix potential
3691         memory leak if encoding fails.
3693         * xdisp.c (add_to_log): Use SAFE_ALLOCA.
3695 2004-06-21  Eli Zaretskii  <eliz@gnu.org>
3697         * print.c (Fwith_output_to_temp_buffer): Doc fix.
3699 2004-06-20  Richard M. Stallman  <rms@gnu.org>
3701         * xfaces.c (Finternal_copy_lisp_face): Small cleanup; doc fix.
3703         * search.c (match_limit): Cleaner err msg when no match data available.
3705         * window.c (syms_of_window): Doc fix.
3707         * keyboard.c (command_loop_1): Handle values `only' and `identity'
3708         for Vtransient_mark_mode.
3710         * buffer.c (syms_of_buffer): Doc fix.
3712 2004-06-21  David Kastrup  <dak@gnu.org>
3714         * minibuf.c (Ftry_completion, Fall_completions): Do lazy binding
3715         and unbinding of `case-fold-search' according to
3716         `completion-ignore-case' around calls of string-match and
3717         predicates, respectively.  Should give satisfactory performance
3718         in all relevant cases.
3720 2004-06-17  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
3722         * xterm.c (x_draw_image_foreground_1): Subtract slice.x/y from
3723         clip_x/y_origin.
3725         * fns.c (string_to_multibyte): Use xmalloc/xfree instead of alloca.
3727         * macfns.c (Fx_display_color_cells): Do not limit return value to 256.
3729         * macterm.c (mac_initialize_display_info): Initialize n_planes correctly
3730         on Mac OSX.
3732 2004-06-16  Luc Teirlinck  <teirllm@auburn.edu>
3734         * buffer.c (syms_of_buffer): Clarify `fill-column' docstring.
3736 2004-06-16  Kim F. Storm  <storm@cua.dk>
3738         * dispextern.h (Vimage_types): Remove extern.
3740 2004-06-16  Miles Bader  <miles@gnu.org>
3742         * image.c (lookup_image_type): Initialize image type if necessary.
3744 2004-06-15  Kim F. Storm  <storm@cua.dk>
3746         * xdisp.c (try_cursor_movement): Exclude header line from scroll
3747         margin at top of window.
3748         (try_window_reusing_current_matrix): Calculate proper cursor position
3749         after scrolling up with non-zero scroll margin, as the old cursor
3750         position corresponds to value of PT before executing this command.
3751         (try_window_id): Consider scroll margin at bottom of window too;
3752         otherwise we fail to scroll when hl-line-mode is enabled.
3754         * syntax.c (skip_chars): Only recognize [:class:] when it has the
3755         proper format and class is a lower-case word.
3757 2004-06-14  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
3759         * gtkutil.c (xg_get_image_for_pixmap): New function.
3760         (xg_get_gdk_pixmap_and_mask): Remove.
3761         (update_frame_tool_bar): Call xg_get_image_for_pixmap instead of
3762         xg_get_gdk_pixmap_and_mask.
3764         * xterm.h (struct x_display_info): Typo in comment fixed.
3766 2004-06-14  Juanma Barranquero  <lektu@terra.es>
3768         * dispextern.h (Vimage_types): Make it conditional on
3769         HAVE_WINDOW_SYSTEM.
3771         * image.c (Vimage_types): Move from xdisp.c.
3772         (Vimage_type_cache): New variable.
3773         (define_image_type): New argument indicating whether an image
3774         library was loaded; cache loaded status and return t on success,
3775         nil otherwise.
3776         (CACHE_IMAGE_TYPE, ADD_IMAGE_TYPE): New macros.
3777         (w32_delayed_load): New function to load an image library from a
3778         list of possible filenames.
3779         (init_xpm_functions, init_png_functions, init_jpeg_functions)
3780         (init_tiff_functions, init_gif_functions): Use `w32_delayed_load'.
3781         (CHECK_LIB_AVAILABLE): Call `define_image_library' with new argument.
3782         (Finit_image_library): New function, extracted from `init_image'.
3783         Try to initialize an image library on demand and cache whether we
3784         were successful or not.
3785         (syms_of_image): Initialize `Vimage_types' and
3786         `Vimage_type_cache'.  Add recognized image types to Vimage_types.
3787         Export `init-image-library'.
3788         (init_image): Remove initialization of all image types, except xbm
3789         and pbm.
3791         * xdisp.c (Vimage_types): Delete (moved to image.c).
3793 2004-06-14  Andreas Schwab  <schwab@suse.de>
3795         * minibuf.c (Ftry_completion, Fall_completions, Ftest_completion):
3796         Avoid calling specbind when completion-regexp-list is empty.
3798 2004-06-13  Richard M. Stallman  <rms@gnu.org>
3800         * regex.h (CHAR_CLASS_MAX_LENGTH, re_wctype_t, re_wchar_t)
3801         (re_wctype, re_iswctype, re_wctype_to_bit):
3802         Non-function definitions moved here from regex.c.
3804         * regex.c (re_wctype, re_iswctype): Function defs longer static.
3805         (CHAR_CLASS_MAX_LENGTH, re_wctype_t, re_wchar_t)
3806         (re_wctype, re_iswctype, re_wctype_to_bit):
3807         Non-function definitions moved to regex.h.
3809         * window.c (Fselect_window): Doc fix.
3811         * syntax.c: Include regex.h.
3812         (skip_chars): New arg HANDLE_ISO_CLASSES.  Callers changed.
3813         If requested, make a list of classes, then check the scanned
3814         chars for membership in them.
3815         (in_classes): New function.
3816         Doc fix.
3818         * keyboard.c (cmd_error): Don't call any_kboard_state
3819         if inside a recursive edit level.
3821 2004-06-13  Lorentey K\e,Aa\e(Broly  <lorentey@elte.hu>
3823         * keyboard.c (command_loop): Call any_kboard_state before
3824         command_loop_2 when at top level.
3826 2004-06-13  Andreas Schwab  <schwab@suse.de>
3828         * print.c (print_object): Always use %ld for printing EMACS_INT.
3830         * keyboard.c (cancel_hourglass_unwind): Return a value.
3831         (modify_event_symbol): Always use %ld for printing EMACS_INT.
3832         (Fexecute_extended_command): Likewise.
3834         * syntax.h (SYNTAX_ENTRY_FOLLOW_PARENT): Rename local variable to
3835         avoid clashes.
3836         (SYNTAX): Likewise.
3837         (SYNTAX_WITH_FLAGS): Likewise.
3838         (SYNTAX_MATCH): Likewise.
3840         * syntax.c (char_quoted): Avoid warning about undefined operation.
3841         (find_defun_start): Likewise.
3842         (scan_lists): Likewise.
3843         (INC_FROM): Likewise.
3844         (scan_sexps_forward): Likewise.
3846         * image.c: Include <ctype.h>.
3848         * xfaces.c (face_attr_equal_p): Declare parameters.
3850 2004-06-13  Kenichi Handa  <handa@m17n.org>
3852         * ccl.c (CCL_READ_CHAR): If hit EOF, set REG to -1.
3854 2004-06-12  Matthew Mundell  <matt@mundell.ukfsn.org>
3856         * eval.c (Fdefun): Signal an error if NAME is not a symbol.
3858 2004-06-12  Kenichi Handa  <handa@m17n.org>
3860         * ccl.c (CCL_CALL_FOR_MAP_INSTRUCTION): Save eof_ic in
3861         ccl_prog_stack_struct and update it.
3862         (CCL_INVALID_CMD): If CCL_DEBUG is defined, call ccl_debug_hook.
3863         (CCL_READ_CHAR): Get instruction counter from eof_ic, not from
3864         ccl->eof_ic on EOF.
3865         (ccl_debug_hook): New function.
3866         (struct ccl_prog_stack): New member eof_ic.
3867         (ccl_driver): Handle EOF in subrountine call correctly.
3869 2004-06-11  Kenichi Handa  <handa@m17n.org>
3871         * coding.c (decode_coding_string): Check CODING_FINISH_INTERRUPT.
3873 2004-06-11  Kim F. Storm  <storm@cua.dk>
3875         * emacs.c (shut_down_emacs): Inhibit redisplay during shutdown.
3877 2004-06-11  Juanma Barranquero  <lektu@terra.es>
3879         * keyboard.c (Fposn_at_point): Doc fix.
3881 2004-06-11  David Kastrup  <dak@gnu.org>
3883         * search.c (match_limit): Don't flag an error if match-data
3884         exceeding the allocated search_regs.num_regs gets requested, just
3885         return Qnil.
3887 2004-06-08  Miles Bader  <miles@gnu.org>
3889         * xfaces.c (push_named_merge_point): Return 0 when a cycle is detected.
3891 2004-06-07  Juanma Barranquero  <lektu@terra.es>
3893         * editfns.c (Fuser_login_name, Ffloat_time, Fencode_time)
3894         (Fcurrent_time_string, Fcurrent_time_zone)
3895         (Finsert_buffer_substring, Ftranspose_regions): Doc fixes.
3897 2004-06-07  Miles Bader  <miles@gnu.org>
3899         * xfaces.c (struct named_merge_point): New type.
3900         (push_named_merge_point): New function.
3901         (merge_named_face): New function.
3902         (merge_face_ref, face_at_buffer_position, face_at_string_position):
3903         Use `merge_named_face'.
3904         (merge_face_inheritance): Function removed.
3905         (merge_face_ref): Rename from `merge_face_vector_with_property'.
3906         Add new `err_msgs' and `named_merge_points' args.  Return error
3907         status.  Only print error messages if ERR_MSGS is true.  Don't try to
3908         do :inherit attribute validation.
3909         (merge_face_heights): Handle `unspecified' in both directions.
3910         (merge_face_vectors): Rename `cycle_check' arg to `named_merge_points'.
3911         Call `merge_face_ref' instead of `merge_face_inheritance'.
3912         (Fdisplay_supports_face_attributes_p, Fface_attributes_as_vector)
3913         (compute_char_face, face_at_buffer_position)
3914         (face_at_string_position): Call `merge_face_ref' instead of
3915         `merge_face_vector_with_property'.
3917 2004-06-07  Kenichi Handa  <handa@m17n.org>
3919         * coding.c (find_safe_codings): Check NILP (safe_codings) only at
3920         the necessary places.
3922 2004-06-07  Kim F. Storm  <storm@cua.dk>
3924         * process.c (Fdelete_process): Undo 2004-05-28 change.
3925         Instead, call status_notify also for network process.
3926         (status_message): Use process instead of status as arg.
3927         Give messages "deleted" or "connection broken by remote peer" for
3928         an exited network process.
3929         (status_notify): Change call to status_message.
3930         (read_process_output): Increase readmax to 4096.  Do not increase
3931         buffer size for datagram channels (default is now large enough).
3933 2004-06-06  Steven Tamm  <tamm@Steven-Tamms-Computer.local>
3935         * macfns.c (x_create_tip_frame): Fix Mac OS X 10.1 compilation
3936         problem due to newly defined variable.
3938 2004-06-06  Miles Bader  <miles@gnu.org>
3940         * xfaces.c (Fdisplay_supports_face_attributes_p): Give up
3941         immediately if non-interactive or not initialized.
3943 2004-06-05  Richard M. Stallman  <rms@gnu.org>
3945         * minibuf.c (Fcompleting_read): Doc fix.
3947 2004-06-05  Andreas Schwab  <schwab@suse.de>
3949         * macfns.c (x_create_tip_frame): Fix declaration after statement.
3951 2004-06-05  Juanma Barranquero  <lektu@terra.es>
3953         * keymap.c (Fdescribe_vector): Fix docstring.
3954         (Fkey_description, Fglobal_key_binding): Fix typo in docstring.
3956 2004-06-05  Miles Bader  <miles@gnu.org>
3958         * xfaces.c (tty_supports_face_attributes_p): Make sure the specified
3959         attributes have different values than the default face.
3961 2004-06-04  Eli Zaretskii  <eliz@gnu.org>
3963         * xfaces.c (x_supports_face_attributes_p): Make this function
3964         conditional on HAVE_WINDOW_SYSTEM.
3965         (Fdisplay_supports_face_attributes_p) [HAVE_WINDOW_SYSTEM]:
3966         Don't call x_supports_face_attributes_p if it was not compiled in.
3968 2004-06-04  Miles Bader  <miles@gnu.org>
3970         * xfaces.c (tty_supports_face_attributes_p): New function, mostly
3971         from Ftty_supports_face_attributes_p.
3972         (x_supports_face_attributes_p): New function.
3973         (Ftty_supports_face_attributes_p): Function deleted.
3974         (Fdisplay_supports_face_attributes_p): New function.
3975         (syms_of_xfaces): Initialize Sdisplay_supports_face_attributes_p.
3976         (face_attr_equal_p): New function.
3977         (lface_equal_p): Use it.
3979 2004-06-03  Juanma Barranquero  <lektu@terra.es>
3981         * w32fns.c (Fx_display_grayscale_p, Fw32_send_sys_command)
3982         (Vw32_color_map): Fix typo in docstring.
3983         (Fx_create_frame, Fw32_find_bdf_fonts, Fx_show_tip)
3984         (Fw32_unregister_hot_key, Fw32_reconstruct_hot_key):
3985         Make argument names match their use in docstring.
3987 2004-06-02  Juanma Barranquero  <lektu@terra.es>
3989         Work around bugs/problems with MinGW builds of graphics libraries
3990         called from MSVC builds of Emacs.
3992         * image.c (lookup_image): Make pointer to img static.
3993         (png_read_from_memory): Disable "global" optimization.
3995 2004-06-01  Stefan Monnier  <monnier@iro.umontreal.ca>
3997         * eval.c (Fcondition_case): Fix usage.  Simplify.
3999         * mem-limits.h (EXCEEDS_LISP_PTR) [USE_LSB_TAG]: Never true.
4001 2004-05-29  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
4003         * macfns.c: Don't include ccl.h.
4004         [MAC_OSX]: Don't include QuickTime/QuickTime.h.
4005         [!MAC_OSX]: Don't include alloca.h, Windows.h, Gestalt.h, or
4006         TextUtils.h.
4007         (Fx_create_frame): Sync with xfns.c.  Initialize cursor descriptors.
4008         (Fx_display_mm_height, Fx_display_mm_width): Calculate length from
4009         display height/width.
4010         (compute_tip_xy, Vx_max_tooltip_size): Declare.
4011         (unwind_create_tip_frame, compute_tip_xy): New functions.
4012         (x_create_tip_frame, Fx_show_tip, Fx_hide_tip): Sync with xfns.c.
4013         (syms_of_macfns): Initialize Qcancel_timer, Vx_max_tooltip_size,
4014         and last_show_tip_args.
4016         * macgui.h [!MAC_OSX]: Include Gestalt.h.
4017         (Cursor, No_Cursor): New defines.
4018         [!TARGET_API_MAC_CARBON] (SetPortWindowPort): New compatibility macro.
4019         [!TARGET_API_MAC_CARBON] (arrow_cursor): Declare.
4021         * macmenu.c (mac_menu_show, mac_dialog): Use SetPortWindowPort.
4023         * macterm.c: Don't include Gestalt.h.
4024         (enum mouse_tracking_type, mouse_tracking_in_progress): Remove.
4025         (XDrawLine, XClearArea, XClearWindow, mac_draw_bitmap)
4026         (mac_set_clip_rectangle, mac_reset_clipping, XCreatePixmap)
4027         (XFillRectangle, mac_draw_rectangle, mac_draw_string_common)
4028         (mac_copy_area, mac_copy_area_with_mask, x_update_end)
4029         (construct_mouse_click, XTmouse_position)
4030         (x_scroll_bar_report_motion, x_calc_absolute_position)
4031         (do_mouse_moved, do_zoom_window, mac_do_receive_drag)
4032         (XTread_socket, make_mac_frame): Use SetPortWindowPort.
4033         (note_mouse_movement): Clear the mouse face and reset the pointer
4034         shape when the pointer goes outside the frame without grabbing.
4035         (mac_front_window): New function.
4036         (mac_window_to_frame): New macro.
4037         (XTmouse_position, x_scroll_bar_report_motion, do_window_update)
4038         (do_window_activate, do_window_deactivate, do_app_resume)
4039         (do_app_suspend, do_mouse_moved, do_menu_choice, do_grow_window)
4040         (do_zoom_window, mac_do_receive_drag, XTread_socket)
4041         (mac_check_for_quit_char): Use mac_front_window and/or
4042         mac_window_to_frame.
4043         (x_scroll_bar_handle_click): Set `(PORTION . WHOLE)' part in a
4044         scroll-bar click event.
4045         (mac_define_frame_cursor): Change the pointer shape.
4046         (x_free_frame_resources): Reset tip_window to NULL when it is disposed.
4047         [!TARGET_API_MAC_CARBON] (arrow_cursor): New variable.
4048         [!TARGET_API_MAC_CARBON] (do_init_managers): Initialize arrow_cursor.
4049         (do_window_update): Don't do anything if the updated window is the
4050         tooltip window.
4051         (do_mouse_moved): Handle mouse movement events here (previously in
4052         XTread_socket).  Clear the mouse face if
4053         dpyinfo->mouse_face_hidden is set.
4054         (do_os_event, do_events): Remove (now in XTread_socket).
4055         (XTread_socket): Immediately return if interrupt_input_blocked.
4056         Loop until all the events in the queue are processed.
4057         Rearrange codes for mouse grabbing.  Add tooltip support.  Include the
4058         contents of do_os_event and do_events.  Remove mouse movement
4059         handling (now in do_mouse_moved).  Add the case where
4060         Vmouse_highlight has an integer value.
4061         (NewMacWindow): Remove.
4062         (make_mac_frame): Do what NewMacWindow previously did.  Don't do
4063         excess initializations.
4064         (make_mac_terminal_frame): Previous initializations in
4065         make_mac_frame are moved here.
4066         (mac_initialize_display_info):
4067         Initialize dpyinfo->mouse_face_overlay and dpyinfo->mouse_face_hidden.
4069         * xdisp.c [MAC_OS] (No_Cursor): Remove variable.
4070         (define_frame_cursor1): Don't treat HAVE_CARBON as a special case.
4072 2004-05-29  Richard M. Stallman  <rms@gnu.org>
4074         * lisp.h (truncate_undo_list): Update decl.
4076         * alloc.c (undo_outer_limit): New variable.
4077         (syms_of_alloc): Defvar it.
4078         (Fgarbage_collect): Pass undo_outer_limit to truncate_undo_list.
4080         * undo.c (truncate_undo_list): New arg LIMITSIZE.
4082         * alloc.c (lisp_align_malloc): Check for base == 0
4083         regardless of HAVE_POSIX_MEMALIGN.
4084         Clean up HAVE_POSIX_MEMALIGN handling of `err'.
4086 2004-05-28  Stefan Monnier  <monnier@iro.umontreal.ca>
4088         * alloc.c: Undo Kim's recent changes and fix the same bug differently.
4089         (marker_blocks_pending_free): Remove.
4090         (Fgarbage_collect): Sweep after cleaning up undo-lists.
4091         Mark the undo lists after claning them up.
4092         Don't free block in marker_blocks_pending_free.
4093         (mark_buffer): Don't mark undo_list.
4094         (gc_sweep): Sweep hash-tables and strings first.
4095         Do free marker blocks that are empty.
4097 2004-05-28  Jim Blandy  <jimb@redhat.com>
4099         * regex.c (print_partial_compiled_pattern): Add missing 'break'
4100         after 'case wordend'.  For symbeg and symend, print to stderr,
4101         like the other cases.
4103 2004-05-28  Noah Friedman  <friedman@splode.com>
4105         * process.c (Fdelete_process): Do not call remove_process.
4107 2004-05-28  Stefan Monnier  <monnier@iro.umontreal.ca>
4109         * alloc.c (struct backtrace): Remove.
4110         (Fgarbage_collect): Use the new mark_backtrace.
4112         * eval.c (mark_backtrace): New function.
4114         * minibuf.c (run_exit_minibuf_hook): New function.
4115         (read_minibuf_unwind): Don't run exit-minibuffer-hook any more.
4116         (read_minibuf): Use separate unwind handler to run exit-minibuf-hook.
4118 2004-05-27  Kim F. Storm  <storm@cua.dk>
4120         * xdisp.c (back_to_previous_visible_line_start): Skip backwards
4121         over display properties, e.g. images, that replace buffer text.
4123 2004-05-25  Kim F. Storm  <storm@cua.dk>
4125         * alloc.c (marker_blocks_pending_free): New var.
4126         (gc_sweep): Store free marker blocks on that list.
4127         (Fgarbage_collect): Free them after undo-list cleanup.
4129         * process.c (wait_reading_process_input): Check connect_wait_mask
4130         before actually accepting connection in case it has already been
4131         accepted due to recursion.
4133 2004-05-23  K\e,Ba\e(Broly L\e,Bu\e(Brentey  <lorentey@elte.hu>
4135         * coding.c (Fset_safe_terminal_coding_system_internal):
4136         Set suppress_error in safe_terminal_coding, not terminal_coding.
4138 2004-05-22  Richard M. Stallman  <rms@gnu.org>
4140         * alloc.c (Fmake_string): Doc fix.
4142         * buffer.c (clone_per_buffer_values): Copy the alist of local vars,
4143         and the alist pairs too.
4145         * casefiddle.c (casify_object): Return OBJ unchanged if not real char.
4147         * emacs.c (main): Update copyright year.
4149         * fileio.c (Fread_file_name): Expand DIR if not absolute.
4151         * insdel.c (del_range_2, replace_range): Don't write an anchor
4152         if the gap is empty.
4154         * xdisp.c (try_scrolling): If scroll-up-aggressively or
4155         scroll-down-aggressively is small but positive, put point
4156         near the screen edge.
4158 2004-05-22  Juanma Barranquero  <lektu@terra.es>
4160         * keymap.c (Fdefine_key): Doc fix.
4162 2004-05-22  Kim F. Storm  <storm@cua.dk>
4164         * alloc.c (struct backtrace): Add debug_on_exit member.
4165         (Fgarbage_collect): Clear out buffer undo_list markers after gc_sweep.
4166         Identify those markers as Lisp_Misc_Free objects.  Clear car and cdr of
4167         the removed cons cells.
4168         (mark_object): Undo previous change - disallow Lisp_Misc_Free objects.
4169         (gc_sweep): Clear cons_blocks before sweeping strings, so we don't have
4170         any cons cells pointing to unallocated stings.
4171         Do not lisp_free any marker blocks, as there may still be pointers
4172         to them from buffer undo lists at this stage of GC.
4174         * keyboard.c (struct backtrace): Add debug_on_exit member.
4175         (Fcommand_execute): Clear it.
4177 2004-05-20  Luc Teirlinck  <teirllm@auburn.edu>
4179         * intervals.c (lookup_char_property): Do not prematurely return nil.
4181 2004-05-19  Jim Blandy  <jimb@redhat.com>
4183         Add support for new '\_<' and '\_>' regexp operators, matching the
4184         beginning and end of symbols.
4186         * regex.c (enum syntaxcode): Add Ssymbol.
4187         (init_syntax_once): Set the syntax for '_' to Ssymbol, not Sword.
4188         (re_opcode_t): New opcodes `symbeg' and `symend'.
4189         (print_partial_compiled_pattern): Print the new opcodes properly.
4190         (regex_compile): Parse the new operators.
4191         (analyse_first): Skip sym(beg|end) (they match only the empty string).
4192         (mutually_exclusive_p): `symend' is mutually exclusive with \s_ and
4193         \sw; `symbeg' is mutually exclusive with \S_ and \Sw.
4194         (re_match_2_internal): Match symbeg and symend.
4196         * search.c (trivial_regexp_p): \_ is no longer a trivial regexp.
4198 2004-05-19  Kim F. Storm  <storm@cua.dk>
4200         * .gdbinit (xsymbol): Fix last change.
4202 2004-05-18  Stefan Monnier  <monnier@iro.umontreal.ca>
4204         * .gdbinit (xprintstr): New fun.
4205         (xstring, xprintsym): Use it.
4207         * w32proc.c (create_child): Use INTMASK.
4209         * alloc.c (Fgarbage_collect): Do all the marking before flushing
4210         unmarked elements of the undo list.
4212 2004-05-18  David Ponce  <david@dponce.com>
4214         * print.c (print): Reset print_depth before to call print_object.
4216 2004-05-18  Jason Rumney  <jasonr@gnu.org>
4218         * w32console.c: Prefix RIF functions with w32con_ to avoid
4219         namespace clash with functions in term.c and w32term.c.
4221         * w32menu.c (add_menu_item, w32_menu_display_help)
4222         [USE_LISP_UNION_TYPE]: Cast from Lisp_Object using i member.
4224         * w32term.h (display_x_get_resource, vga_stdcolor_name): Add prototype.
4226 2004-05-18  Eli Zaretskii  <eliz@gnu.org>
4228         * lisp.h (DECL_ALIGN): Remove restriction on MS-DOS systems.
4230         * msdos.c (syms_of_msdos): Initialize dos-unsupported-char-glyph
4231         with make_number.
4232         (IT_write_glyphs): Extract glyph from dos-unsupported-char-glyph
4233         with XINT.
4235 2004-05-18  Kim F. Storm  <storm@cua.dk>
4237         * blockinput.h (INPUT_BLOCKED_P): New macros.
4239         * keyboard.c (Frecursive_edit): Return immediately if input blocked.
4240         (Ftop_level): Unblock input if blocked.
4242         * buffer.h (GET_OVERLAYS_AT): New macro.
4243         * msdos.c (IT_note_mouse_highlight): Use it.
4244         * textprop.c (get_char_property_and_overlay): Use it.
4245         * xdisp.c (next_overlay_change, note_mouse_highlight): Use it.
4246         * xfaces.c (face_at_buffer_position): Use it.
4248         * print.c (print_object): Increase buf size.
4250 2004-05-17  Jason Rumney  <jasonr@gnu.org>
4252         * w32fns.c (Fw32_register_hot_key, Fw32_unregister_hot_key)
4253         (Fw32_toggle_lock_key) [USE_LISP_UNION_TYPE]: Cast from
4254         Lisp_Object using i member.
4255         (w32_quit_key): Rename from Vw32_quit_key, and make an int.
4256         (syms_of_w32fns, globals_of_w32fns): Use Lisp_Object and int
4257         consistently.
4259         * w32proc.c (create_child): Use make_number instead of masking pid.
4261         * w32fns.c (w32_color_map_lookup): Return a Lisp_Object.
4262         (x_to_w32_charset, w32_to_x_charset, w32_to_all_x_charsets):
4263         Use EQ to compare Lisp_Objects.
4264         (w32_parse_hot_key): Use int for lisp_modifiers consistently.
4266         * w32term.c (w32_num_mouse_buttons): Rename from
4267         Vw32_num_mouse_buttons and make it an int.
4269         * w32.c (init_environment): Use it.
4271         * w32fns.c (w32_wnd_proc): Likewise.
4273         * w32proc.c (w32_pipe_read_delay): Rename from
4274         Vw32_pipe_read_delay and make it an int.
4276         * w32.c (_sys_read_ahead): Use it.
4278         * lisp.h (egetenv) [USE_CRT_DLL]: Remove condition.
4280         * w32proc.c (create_child) [USE_LSB_TAG]: Don't try to mask pid.
4282         * w32inevt.c (w32_console_mouse_position, do_mouse_event)
4283         (key_event): Don't mix Lisp_Object and int.
4285         * w32heap.c (init_heap) [USE_LSB_TAG]: Don't check heap location.
4287         * keyboard.c (kbd_buffer_get_event): Don't use event->code and
4288         modifiers in language change event.
4290 2004-05-17  Kim F. Storm  <storm@cua.dk>
4292         * alloc.c (mark_object): Ignore Lisp_Misc_Free objects.
4293         Such objects may be freed markers which still exist on an undo list.
4295 2004-05-16  Juanma Barranquero  <lektu@terra.es>
4297         * data.c (Fset_default): Make argument names match their use in
4298         docstring.
4300 2004-05-15  Andreas Schwab  <schwab@suse.de>
4302         * emacs.c (gdb_array_mark_flag): Define.
4303         * .gdbinit: Mask off gdb_array_mark_flag from vector sizes.
4305 2004-05-15  Eli Zaretskii  <eliz@gnu.org>
4307         * lisp.h (DECL_ALIGN) [MSDOS]: Don't define DECL_ALIGN to use
4308         __attribute__((__aligned__)), so that USE_LSB_TAG would not become
4309         defined for the MS-DOS build.
4311 2004-05-14  Stefan Monnier  <monnier@iro.umontreal.ca>
4313         * w32fns.c (Fw32_define_rgb_color): Avoid XSET.
4315 2004-05-14  Kenichi Handa  <handa@m17n.org>
4317         * ccl.c (Fccl_execute_on_string): Fix setting elements of STATUS.
4319 2004-05-14  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
4321         * lisp.h (Vx_resource_name, Vx_resource_class): Move from xfns.c
4322         section to frame.c section.
4323         (Fxw_display_color_p, Fx_file_dialog): Declare if
4324         HAVE_WINDOW_SYSTEM defined.
4326         * macfns.c (Fx_create_frame): Fix int/Lisp_Object mixup.
4328         * macmenu.c (set_frame_menubar): Use NILP to test a lisp value.
4330         * macterm.c (mac_get_emulated_btn, mac_event_to_emacs_modifiers)
4331         (mac_get_mouse_btn): Use NILP and EQ to test/compare lisp values.
4332         (XTread_socket): Fix int/Lisp_Object mixup.
4333         (mac_check_for_quit_char): Fix pointer/Lisp_Object mixup.
4335         * macterm.h (struct frame, struct face, struct image)
4336         (display_x_get_resource, Fx_display_color_p)
4337         (Fx_display_grayscale_p, Fx_display_planes, x_free_gcs):
4338         Add prototypes.
4340 2004-05-14  Kim F. Storm  <storm@cua.dk>
4342         * process.c (wait_reading_process_input): Make reentrant.
4343         Make Available and Connecting non-static.  Save and restore value
4344         of waiting_for_user_input_p.
4346 2004-05-13  Kim F. Storm  <storm@cua.dk>
4348         * keyboard.c (mark_kboards): Don't mark x and y members
4349         that are overloaded in selection request events.
4351 2004-05-13  Stefan Monnier  <monnier@iro.umontreal.ca>
4353         * lisp.h (USE_LSB_TAG): Make it the default when it is known to work.
4355 2004-05-13  Glenn Morris  <gmorris@ast.cam.ac.uk>
4357         * window.c (Fdisplay_buffer, Fsplit_window)
4358         (split-height-threshold): Doc fix.
4360 2004-05-13  Juanma Barranquero  <lektu@terra.es>
4362         * xfaces.c (Ftty_supports_face_attributes_p)
4363         (Finternal_copy_lisp_face): Fix typo in docstring.
4364         (Finternal_get_lisp_face_attribute): Fix docstring.
4366 2004-05-12  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
4368         * xfns.c (syms_of_xfns): Provide x-toolkit also for GTK.
4370 2004-05-11  Steven Tamm  <steventamm@mac.com>
4372         * macfns.c (Fx_create_frame): Default to using tool-bar by
4373         setting tool-bar-lines to 1 in default-frame-alist.
4375 2004-05-11  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
4377         * image.c (xpm_scan, xpm_make_color_table_v, xpm_put_color_table_v)
4378         (xpm_get_color_table_v, xpm_make_color_table_h)
4379         (xpm_put_color_table_h, xpm_get_color_table_h)
4380         (xpm_str_to_color_key, xpm_load_image, xpm_load)
4381         (syms_of_image): Support XPM on Carbon Emacs.  Does not
4382         depend on libXpm, but only supports XPM version 3 without extensions.
4384 2004-05-11  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
4386         * macterm.c (x_flush, XTframe_up_to_date): Use FRAME_MAC_P
4387         instead of FRAME_X_P
4389 2004-05-11  Kim F. Storm  <storm@cua.dk>
4391         * process.c (read_process_output): Grow decoding_buf when needed;
4392         this could cause a crash in allocate_string and compact_small_strings.
4394 2004-04-29  Jim Blandy  <jimb@redhat.com>
4396         * regex.c (mutually_exclusive_p): In 'case wordbeg', compare op2
4397         against proper opcode.
4399 2004-05-10  Juanma Barranquero  <lektu@terra.es>
4401         * process.c (Fstart_process): Fix docstring.
4403         * charset.c (Fget_unused_iso_final_char): Fix typos in docstring.
4404         (Fchar_bytes, Fchar_width, Fstring_width, Fchar_direction)
4405         (Fsplit_char, Fchar_charset): Make argument names match their use
4406         in docstring.
4408 2004-05-10  Richard M. Stallman  <rms@gnu.org>
4410         * print.c (print_preprocess): Use being_printed, loop_count and
4411         halftail to detect overdeep nesting and cyclic cdr chains.
4413 2004-05-10  Andreas Schwab  <schwab@suse.de>
4415         * lisp.h (Fmake_symbolic_link): Declare.
4417         * fileio.c (Frename_file): Remove extra argument in call to
4418         Fmake_symbolic_link.
4420 2004-05-10  Kim F. Storm  <storm@cua.dk>
4422         * xdisp.c (calc_line_height_property): Use string position when
4423         object is a string.
4425 2004-05-10  Kenichi Handa  <handa@m17n.org>
4427         * print.c (temp_output_buffer_setup): Bind inhibit-read-only and
4428         inhibit-modification-hooks to t temporarily before calling
4429         Ferase_buffer.
4431         * xfns.c (x_create_tip_frame): Bind inhibit-read-only and
4432         inhibit-modification-hooks to t temporarily before calling
4433         Ferase_buffer.
4435         * w32fns.c (x_create_tip_frame): Bind inhibit-read-only and
4436         inhibit-modification-hooks to t temporarily before calling
4437         Ferase_buffer.
4439         * fns.c (count_combining): Delete it.
4440         (concat): Don't check combining bytes.
4442 2004-05-09  Jason Rumney  <jasonr@gnu.org>
4444         * w32fns.c (Vw32_ansi_code_page): New Lisp variable.
4445         (globals_of_w32fns): Set it.
4447 2004-05-09  Piet van Oostrum  <piet@cs.uu.nl>
4449         * data.c (Fquo): Simplify.
4451 2004-05-08  Peter Whaite  <emacs@whaite.ca>  (tiny change)
4453         * data.c (Fquo): If any argument is float, do the computation in
4454         floating point.
4456 2004-05-08  Juanma Barranquero  <lektu@terra.es>
4458         * process.c (Fwaiting_for_user_input_p, Fmake_network_process)
4459         (Fset_process_query_on_exit_flag, Vprocess_adaptive_read_buffering):
4460         Fix spelling of Emacs on docstring.
4461         (Fset_process_coding_system, Fprocess_coding_system)
4462         (Fset_process_filter_multibyte, Fprocess_filter_multibyte_p):
4463         Make argument names match their use in docstring.
4464         (Fprocess_id, Fprocess_query_on_exit_flag, Finterrupt_process):
4465         Fix docstring.
4467         * editfns.c (Finsert_buffer_substring): Make argument names match their
4468         use in docstring.
4470         * syntax.c (Fmodify_syntax_entry): Fix docstring.
4472 2004-05-07  Steven Tamm  <steventamm@mac.com>
4474         * macterm.c (mac_check_for_quit_char): Adding BLOCK_INPUT
4475         around call to ReceiveEvent to avoid certain crashes.
4477 2004-05-07  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
4479         * macterm.c (mac_draw_line_to_pixmap, XCreatePixmapFromBitmapData)
4480         (mac_fill_rectangle_to_pixmap, mac_draw_rectangle_to_pixmap)
4481         (mac_copy_area_to_pixmap, mac_copy_area_with_mask_to_pixmap):
4482         Save/restore the current graphics port and device handle when
4483         drawing into an offscreen graphics world.
4485         * image.c [MAC_OS] (XPutPixel, XGetPixel, image_load_qt_1)
4486         (gif_load): Likewise.
4488 2004-05-07  Juanma Barranquero  <lektu@terra.es>
4490         * window.c (Fset_window_buffer): Fix docstring.
4492 2004-05-06  Thien-Thi Nguyen  <ttn@gnu.org>
4494         * emacs.c (main) [VMS]: Fix var ref.
4496 2004-05-06  Romain Francoise  <romain@orebokech.com>
4498         * data.c (Fsetq_default): Fix docstring.
4500 2004-05-06  Jason Rumney  <jasonr@gnu.org>
4502         * image.c (Display) [HAVE_NTGUI]: Redefine while loading xpm.h
4503         to avoid name clash.
4505 2004-05-04  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
4507         * fileio.c (barf_or_query_if_file_exists): Use lstat.
4508         (Frename_file): Handle renaming of symlinks across file systems.
4509         (Frename_file): Put symlink handling inside #ifdef S_IFLNK.
4511 2004-05-04  Kim F. Storm  <storm@cua.dk>
4513         * xdisp.c (Qtotal): New var.
4514         (syms_of_xdisp): Intern and staticpro it.
4515         (calc_line_height_property): New arg total.  Set it if
4516         line-spacing property has format (total . VALUE).
4517         (x_produce_glyphs): Ignore line-spacing if line-height is 0.
4518         Handle total line-spacing property.
4520 2004-05-03  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
4522         * gtkutil.c (xg_update_scrollbar_pos): Call XClearWindow to clear
4523         "under" scroll bar when size/position changes.
4525 2004-05-03  Jason Rumney  <jasonr@gnu.org>
4527         * makefile.nt: Remove.
4529 2004-05-02  Eli Zaretskii  <eliz@gnu.org>
4531         * syntax.h (SET_RAW_SYNTAX_ENTRY, SYNTAX_ENTRY_INT):
4532         Avoid compiler warnings.
4534         * Makefile.in (region-cache.o): Depend on config.h.
4536 2004-05-02  Romain Francoise  <romain@orebokech.com>
4538         * indent.c (compute_motion): Save vpos in prev_vpos when dealing
4539         with continuation lines, too.
4541 2004-05-02  Thien-Thi Nguyen  <ttn@gnu.org>
4543         * syssignal.h (init_signals): Move decl outside `#ifdef POSIX_SIGNALS'.
4545 2004-05-01  Stefan Monnier  <monnier@iro.umontreal.ca>
4547         * xdisp.c (calc_line_height_property): YAILOM (yet another
4548         int/Lisp_Object mixup).
4550 2004-05-01  Eli Zaretskii  <eliz@gnu.org>
4552         * msdos.c (top-level): Add "#pragma pack(0)" after <dir.h>, to
4553         undo bad effect of pack(4) in some versions of system headers.
4555 2004-05-01  Jason Rumney  <jasonr@gnu.org>
4557         * w32term.c (x_draw_hollow_cursor): Sync with xterm.c
4559 2004-04-30  Kim F. Storm  <storm@cua.dk>
4561         * buffer.c (syms_of_buffer) <line-spacing>: Allow float value.
4562         (syms_of_buffer) <cursor-type>: Doc fix.
4564         * dispextern.h (struct it): Remove member use_default_face.
4565         Add members override_ascent, override_descent, override_boff.
4567         * xdisp.c (init_iterator): Handle line-spacing float value.
4568         Initialize override_ascent member.
4569         (append_space_for_newline): Reset override_ascent.
4570         Remove use_default_face.
4571         (calc_line_height_property): New function to calculate value of
4572         line-height and line-spacing properties.  Look at overlays, too.
4573         Set override_ascent, override_descent, override_boff members when
4574         using another face than the current face.  Float values are now
4575         relative to the frame default font, by default; accept a cons
4576         of ratio and face name to specify value relative to a specific face.
4577         (x_produce_glyphs): Use calc_line_height_property.
4578         Use override_ascent etc. when set to handle different face heights.
4579         A negative line-spacing property value is interpreted as a total
4580         line height, rather than inter-line spacing.
4581         (note_mouse_highlight): Allocate room for 40 overlays initially.
4583 2004-04-29  Stefan Monnier  <monnier@iro.umontreal.ca>
4585         * data.c (Fsubr_name): New fun.
4586         (syms_of_data): Defsubr it.
4588 2004-04-29  Kim F. Storm  <storm@cua.dk>
4590         * xdisp.c (null_glyph_slice): New var.
4591         (append_glyph, append_composite_glyph, append_stretch_glyph):
4592         Use it to initialize glyph slice.
4594 2004-04-27  Stefan Monnier  <monnier@iro.umontreal.ca>
4596         * xdisp.c (x_produce_glyphs): Fix the proverbial int/Lisp_Object mixup.
4597         (on_hot_spot_p): Make sure we always return a value.
4598         (Flookup_image_map): Remove unused var ix and iy.
4599         (note_mode_line_or_margin_highlight): Remove unused var `image'.
4601 2004-04-27  Eli Zaretskii  <eliz@gnu.org>
4603         * msdos.c (init_environment): If one of the TMP... environment
4604         variables is set to a drive letter without a trailing slash,
4605         append a slash.
4607 2004-04-27  Matthew Mundell  <matt@mundell.ukfsn.org>
4609         * editfns.c (lisp_time_argument): Provide externally.
4611         * fileio.c (Fset_file_times): New function.
4612         (syms_of_fileio): Intern and staticpro it.
4614 2004-04-27  Kim F. Storm  <storm@cua.dk>
4616         * xdisp.c (x_produce_glyphs): Fix last change; handle newline in
4617         header line strings.
4619         * dispextern.h (struct it): New member use_default_face.
4621         * xdisp.c (Qline_height): New variable.
4622         (syms_of_xdisp): Intern and staticpro it.
4623         (append_space_for_newline): Partially undo 2004-04-25 change;
4624         add default_face_p arg, and restore callers.
4625         Clear it->use_default_face after use.
4626         (x_produce_glyphs): Set default font for ascii char if
4627         it->use_default_font is set.  Change line-spacing property to set
4628         just extra line spacing.  Handle new line-height property.
4630 2004-04-26  Andreas Schwab  <schwab@suse.de>
4632         * print.c (print_object): Print non-ascii characters in bool
4633         vector representation as octal escapes.
4635         * lisp.h (BOOL_VECTOR_BITS_PER_CHAR): Define.
4636         * print.c (print_object): Use it instead of BITS_PER_CHAR for
4637         bool vectors.
4638         * lread.c (read1): Likewise.
4639         * alloc.c (Fmake_bool_vector): Likewise.
4640         * data.c (Faref, Faset): Likewise.
4641         * fns.c (Fcopy_sequence, concat, internal_equal, Ffillarray)
4642         (mapcar1): Likewise.
4644 2004-04-26  Steven Tamm  <tamm@Steven-Tamms-Computer.local>
4646         * lread.c (init_lread): Fixing typo HAVE_CARBON test logic
4648 2004-04-26  Miles Bader  <miles@gnu.org>
4650         * lisp.h (CYCLE_CHECK): Macro moved from xfaces.c.
4652 2004-04-26  Juanma Barranquero  <lektu@terra.es>
4654         * buffer.c (Fpop_to_buffer): Fix docstring.
4656 2004-04-26  Steven Tamm  <steventamm@mac.com>
4658         * lread.c (init_lread): Don't display missing lisp directory
4659         warnings with Carbon Emacs because self-contained bundled Emacs
4660         may be built without correct installation path.
4662 2004-04-25  Kim F. Storm  <storm@cua.dk>
4664         * macterm.c (x_draw_hollow_cursor): Fix height of box for narrow lines.
4666         * xterm.c (x_draw_hollow_cursor): Fix height of box for narrow lines.
4668         * xdisp.c (append_space_for_newline): Rename from append_space.
4669         Remove DEFAULT_FACE_P arg; always use current face.  Callers changed.
4670         (x_produce_glyphs): Handle line-spacing property on newline char.
4671         If value is t, adjust ascent and descent to fit current row height.
4672         If value is an integer or float, set extra_line_spacing to integer
4673         value, or to float value x current line height.
4675 2004-04-23  Kenichi Handa  <handa@m17n.org>
4677         * fontset.c (Finternal_char_font): If POSITION is nil, return
4678         font for displaying CH with the default face.
4680 2004-04-23  Juanma Barranquero  <lektu@terra.es>
4682         * makefile.w32-in: Add "-*- makefile -*-" mode tag.
4684 2004-04-21  Stefan Monnier  <monnier@iro.umontreal.ca>
4686         * lisp.h (XINT) [EXPLICIT_SIGN_EXTEND && !NO_UNION_TYPE]:
4687         Don't make assumptions about the relative place of i and val.
4688         (EQ) [!NO_UNION_TYPE]: Don't forget to check the type match as well.
4690 2004-04-21  Kim F. Storm  <storm@cua.dk>
4692         * dispextern.h (struct glyph_slice): New struct.
4693         (struct glyph): New member slice.
4694         (GLYPH_SLICE_EQUAL_P): New macro.
4695         (GLYPH_EQUAL_P): Use it.
4696         (struct glyph_string): New member slice.
4697         (struct it_slice): New struct.
4698         (struct it): New member slice, add member to stack too.
4699         New member constrain_row_ascent_descent_p.
4700         (image_ascent): Add prototype.
4702         * dispnew.c (buffer_posn_from_coords): Return full image width
4703         and height even for image slices (posn is relative to full image).
4704         (marginal_area_string): Adjust x0,y0 for image slice.
4706         * image.c (image_ascent): Add slice arg; calculate ascent for
4707         image slice (or full image).
4709         * keyboard.c (Fposn_at_x_y, Fposn_at_point): New defuns.
4710         (syms_of_keyboard): Defsubr them.
4712         * lisp.h (pos_visible_p): Fix prototype.
4714         * macterm.c (x_draw_relief_rect): Add top_p and bot_p args.
4715         (x_draw_glyph_string_box): Fix call to x_draw_relief_rect.
4716         (x_draw_image_foreground, x_draw_image_relief)
4717         (x_draw_image_foreground_1, x_draw_image_glyph_string):
4718         Draw sliced images.
4720         * w32term.c (w32_draw_relief_rect): Add top_p and bot_p args.
4721         (x_draw_glyph_string_box): Fix call to x_draw_relief_rect.
4722         (x_draw_image_foreground, x_draw_image_relief)
4723         (w32_draw_image_foreground_1, x_draw_image_glyph_string):
4724         Draw sliced images.
4726         * w32term.h (image_ascent): Remove prototype.
4728         * window.c (Fpos_visible_in_window_p): Return pixel position if
4729         PARTIALLY arg is non-nil.  Simplify.  Doc fix.
4730         (Fwindow_vscroll, Fset_window_vscroll): Add optional PIXEL_P arg
4731         to return/set vscroll in pixels.
4733         * window.h (Fwindow_vscroll, Fset_window_vscroll): Fix EXFUN.
4735         * xdisp.c (Qslice): New variable.
4736         (syms_of_xdisp): Intern and staticpro it.
4737         (pos_visible_p): Return pixel position in new x and y args.
4738         (init_iterator): Reset it->slice info.
4739         (handle_display_prop): Parse (slice ...) property.
4740         (push_it, pop_it): Save/restore slice info.
4741         (make_cursor_line_fully_visible): Fix 2004-04-14 change.  Do not
4742         force repositioning of tall row if window is vscrolled, as that
4743         would reset vscroll.
4744         (append_space): Set it->constrain_row_ascent_descent_p to avoid
4745         increasing row height if row is non-empty.
4746         (fill_image_glyph_string): Copy slice info.
4747         (take_vertical_position_into_account): Simplify.
4748         (produce_image_glyph): Handle iterator slice info, setup glyph
4749         slice info.  Do not force minimum line height.
4750         (x_produce_glyphs): If it->constrain_row_ascent_descent_p is set,
4751         do not increase height (ascent/descent) of non-empty row when
4752         adding normal character glyph; instead reduce glyph ascent/descent
4753         appropriately; if row is higher than current glyph, adjust glyph
4754         descent/ascent to reposition glyph within the existing row.
4755         Likewise, when char is newline, only set ascent/descent if row is
4756         currently empty.
4757         (note_mouse_highlight): Handle hotspots with sliced image.
4759         * xterm.c (x_draw_relief_rect): Add top_p and bot_p args.
4760         (x_draw_glyph_string_box): Fix call to x_draw_relief_rect.
4761         (x_draw_image_foreground, x_draw_image_relief)
4762         (x_draw_image_foreground_1, x_draw_image_glyph_string):
4763         Draw sliced images.
4765         * xterm.h (image_ascent): Remove prototype.
4767 2004-04-20  Stefan Monnier  <monnier@iro.umontreal.ca>
4769         * keymap.c (Fkey_description): Fix the usual int/Lisp_Object mixup.
4771 2004-04-20  John Paul Wallington  <jpw@gnu.org>
4773         * fns.c (Fassoc, Feql): Fix indentation.
4775         * fontset.c (regularize_fontname): Rename from regulalize_fontname.
4777 2004-04-19  John Paul Wallington  <jpw@gnu.org>
4779         * fns.c (Feql): New function.
4780         (syms_of_fns): Defsubr it.
4782 2004-04-18  Jason Rumney  <jasonr@gnu.org>
4784         * w32select.c (Fw32_set_clipboard_data): Get sequence number
4785         after closing the clipboard.
4787 2004-04-16  Luc Teirlinck  <teirllm@auburn.edu>
4789         * buffer.c (Fbuffer_base_buffer): Doc fix.
4791 2004-04-17  Kim F. Storm  <storm@cua.dk>
4793         * keymap.c (Fkey_description): Add optional PREFIX arg.
4794         Combine prefix with KEYS to make up the full key sequence to describe.
4795         Correlate meta_prefix_char and following (simple) key to describe
4796         as meta modifier.  All callers changed.
4797         (describe_map): Rename arg `keys' to `prefix'.  Remove local
4798         `elt_prefix' var.  Use Fkey_description with prefix instead of
4799         elt_prefix combined with Fsingle_key_description.
4800         (describe_vector): Declare static.  Replace arg `elt_prefix' with
4801         `prefix'.  Add KEYMAP_P arg.  Add local var `elt_prefix'; use it
4802         if !KEYMAP_P. Use Fkey_description with prefix instead of
4803         Fsingle_key_description.
4805         * keymap.h (Fkey_description): Fix prototype.
4806         (describe_vector): Remove prototype.
4808         * xdisp.c (update_overlay_arrows): Fix handling of up_to_date < 0.
4810         * image.c (PNG_BG_COLOR_SHIFT): Remove.
4811         (png_load): Fix calculation of transparent background color on X
4812         and W32 platforms.
4814 2004-04-16  Juanma Barranquero  <lektu@terra.es>
4816         * xdisp.c (try_scrolling): Make sure `scroll-conservatively' is
4817         not too large before computing how much to scroll.
4819 2004-04-15  Stefan Monnier  <monnier@iro.umontreal.ca>
4821         * dired.c (Ffile_attributes): Don't pass extra nil arg to file-handler.
4823 2004-04-14  Luc Teirlinck  <teirllm@auburn.edu>
4825         * fileio.c (Fverify_visited_file_modtime, Fvisited_file_modtime):
4826         Add hyperlink to Elisp manual to the docstring.
4828 2004-04-14  Stefan Monnier  <monnier@iro.umontreal.ca>
4830         * callint.c (fix_command): Use XDCR.
4832 2004-04-14  Nick Roberts  <nick@nick.uklinux.net>
4834         * window.c (Fget_lru_window): Doc fix.
4836 2004-04-14  Kim F. Storm  <storm@cua.dk>
4838         * editfns.c (Fformat): Fix allocation size of precision array.
4840         * dispnew.c (update_window): Only set changed_p if
4841         scrolling_window actually did scroll.
4842         (scrolling_window): Only return 1 if we actually did scroll.
4844         * xdisp.c (get_glyph_string_clip_rect): Fix reduction of cursor
4845         height to glyph height when cursor row is not fully visible.
4846         (make_cursor_line_fully_visible): Add FORCE_P arg to return
4847         failure in case row is higher than window.  Callers changed.
4848         (try_scrolling): Fix loop in scrolling if last_line_misfit (from Gerd).
4849         Try to scroll partially visible, higher-than-window cursor row.
4850         (redisplay_window): Always try to scroll partially visible,
4851         higher-than-window cursor row - both initially and again with
4852         centering_position = 0.
4853         Clear desired matrix before retrying with centering_position = 0.
4855 2004-04-13  Stefan Monnier  <monnier@iro.umontreal.ca>
4857         * syntax.c (scan_lists): Simplify backward string scan.
4858         Fix off-by-one boundary check for string and comment fences.
4860 2004-04-13  Joe Buehler  <jbuehler@hekimian.com>
4862         * sheap.c, unexcw.c: New files.
4864 2004-04-12  Luc Teirlinck  <teirllm@auburn.edu>
4866         * buffer.c (Fmake_indirect_buffer): Throw an error if the intended
4867         base buffer has been killed.  Correct the error message if the
4868         base buffer does not exist.
4870 2004-04-12  Joe Buehler  <jbuehler@hekimian.com>
4872         * s/cygwin.h: Changes for Cygwin unexec() support, changes in
4873         Cygwin itself.  Add support for Xaw3d scrollbars.
4875         * puresize.h: Set up PURE_P() for Cygwin unexec() support.
4877         * lastfile.c: Define my_endbss[] for Cygwin unexec() support.
4879         * gmalloc.c (__default_morecore): Use bss_sbrk(), not __sbrk(),
4880         before Cygwin unexec.
4882         * Makefile.in: Link changes for Cygwin unexec() support.
4884 2004-04-12  Andreas Schwab  <schwab@suse.de>
4886         * buffer.c (Fmake_indirect_buffer): Check that NAME is a string.
4888 2004-04-11  Luc Teirlinck  <teirllm@auburn.edu>
4890         * buffer.c (Fgenerate_new_buffer_name): Return NAME argument if
4891         IGNORE argument equals NAME.  Doc fix.
4893 2004-04-11  Masatake YAMATO  <jet@gyve.org>
4895         * buffer.c (fix_start_end_in_overlays): Make overlays
4896         empty if they are backwards.
4898 2004-04-09  Stefan Monnier  <monnier@iro.umontreal.ca>
4900         * xfaces.c (face_color_supported_p): Fix compilation without X11.
4902 2004-04-07  Stefan Monnier  <monnier@iro.umontreal.ca>
4904         * doc.c (Fsnarf_documentation): Ignore new file name entries.
4906 2004-04-06  Kim F. Storm  <storm@cua.dk>
4908         * msdos.c (clear_mouse_face): Only clear mouse highlight if not hidden.
4909         (dos_rawgetc): Set mouse_face_hidden after clearing highlight.
4911         * w32term.c (w32_read_socket): Set mouse_face_hidden after
4912         clearing highlight.
4914         * xdisp.c (clear_mouse_face): Only clear mouse highlight if not hidden.
4916         * xterm.c (handle_one_xevent): Set mouse_face_hidden after
4917         clearing highlight.
4919         * indent.c (vmotion): Do not reserve one column for continuation
4920         marks on window frames.
4922 2004-04-04  Eli Zaretskii  <eliz@gnu.org>
4924         * charset.h (SINGLE_BYTE_CHAR_P): Fix macro to avoid warnings
4925         from GCC.
4927 2004-04-03  Stefan Monnier  <monnier@iro.umontreal.ca>
4929         * .gdbinit-union: Remove.
4931         * .gdbinit: Make it work for USE_LSB_TAG and !NO_LISP_UNION.
4932         (xgetptr, xgetint, xgettype): New funs.  Use them everywhere.
4933         ($nonvalbits): Remove.
4934         ($valmask): Set it by calling xreload to avoid redundancy.
4936         * emacs.c (gdb_use_union, gdb_use_lsb): New vars.
4937         (gdb_emacs_intbits): Remove.
4939 2004-03-31  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
4941         * data.c (Fbyteorder): Make test work even if unsigned is not 4 bytes.
4943 2004-03-30  Kenichi Handa  <handa@m17n.org>
4945         * editfns.c (Fformat): Fix initialization of the array info.
4947 2004-03-30  Kim F. Storm  <storm@cua.dk>
4949         * xterm.c (x_mouse_click_focus_ignore_position): New var.
4950         (syms_of_xterm): DEFVAR_BOOL it.
4951         (ignore_next_mouse_click_timeout): New var.
4952         (handle_one_xevent): Clear it on KeyPress, set it on EnterNotify.
4953         Use it to filter mouse clicks following focus event.
4955 2004-03-29  David Ponce  <david@dponce.com>
4957         * callint.c (Fcall_interactively): Fix last change.
4959 2004-03-28  Stefan Monnier  <monnier@iro.umontreal.ca>
4961         * eval.c (Fcommandp): Simplify.
4963         * data.c (Finteractive_form): Rename from Fsubr_interactive_form.
4964         Extend to handle all kinds of functions.
4966         * lisp.h (Finteractive_form): Declare.
4968         * callint.c (Fcall_interactively): Use it.
4970 2004-03-26  Kim F. Storm  <storm@cua.dk>
4972         * xdisp.c (syms_of_xdisp): Include `void-variable' in list_of_error
4973         to catch errors in calc_pixel_width_or_height during redisplay.
4975 2004-03-26  Masatake YAMATO  <jet@gyve.org>
4977         * buffer.c (fix_start_end_in_overlays): Rename fix_overlays_in_range.
4979         * lisp.h (fix_start_end_in_overlays): Likewise.
4981         * insdel.c (adjust_markers_for_insert): Call fix_start_end_in_overlays.
4983         * editfns.c (Ftranspose_regions): Likewise.
4985 2004-03-20  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
4987         * xterm.c (handle_one_xevent): Do not pass key press events to GTK.
4989 2004-03-19  Richard M. Stallman  <rms@gnu.org>
4991         * s/sol2-6.h: Delete previous change.
4993 2004-03-19  Kim F. Storm  <storm@cua.dk>
4995         * xdisp.c (move_it_in_display_line_to): Fix MOVE_TO_POS case when
4996         to_charpos corresponds to newline in right fringe.  Use local
4997         BUFFER_POS_REACHED_P macro.
4999 2004-03-19  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
5001         * xdisp.c (calc_pixel_width_or_height): Add ifdef HAVE_WINDOW_SYSTEM
5002         to compile on non-window system.
5004 2004-03-19  Kim F. Storm  <storm@cua.dk>
5006         * dispextern.h (calc_pixel_width_or_height): Add prototype.
5008         * image.c (Qcenter): Move to xdisp.c.
5010         * xdisp.c (Qcenter): Declare here.
5011         (syms_of_xdisp): Intern and staticpro it.
5012         (handle_single_display_prop): Allow space display property on all
5013         platforms.
5014         (display_mode_line): Set mode_line_p before displaying line.
5015         (calc_pixel_width_or_height): Declare extern.  Add separate :align-to
5016         handling.  Remove complex cases for fringes and scroll-bars.
5017         Add left, right, and center alignment positions. Add text (area)
5018         width/height.  Return width or height for image specs.
5019         (produce_stretch_glyph): Improve handling of :align-to.  Is now
5020         relative to left of text area by default, but other base offsets
5021         can be specified -- also for text lines.
5023         * term.c (produce_glyphs): Handle IT_STRETCH.
5024         (produce_stretch_glyph): New function to handle space width and
5025         align-to display properties on non-window systems.
5027 2004-03-17  Stefan Monnier  <monnier@iro.umontreal.ca>
5029         * fileio.c (Fread_file_name): Set completion-ignore-case for
5030         case-insensitive systems.
5032 2004-03-14  Masatake YAMATO  <jet@gyve.org>
5034         * xdisp.c (note_mode_line_or_margin_highlight): Accept HEADER_LINE
5035         when keymap and cursor are setup.
5037 2004-03-14  Steven Tamm <steventamm@mac.com>
5039         * Makefile.in (XMENU_OBJ) [HAVE_CARBON]: Do not include xmenu.o.
5041 2004-03-14  Kim F. Storm  <storm@cua.dk>
5043         * dispextern.h (x_find_image_file): Add prototype.
5045         * image.c (x_find_image_file): Make extern.
5047         * xfns.c (x_find_image_file): Remove prototype.
5049 2004-03-13  Eli Zaretskii  <eliz@gnu.org>
5051         * Makefile.in (XMENU_OBJ): Include xmenu.o if HAVE_MENUS is defined.
5053         * emacs.c (main): Call syms_of_xmenu only if HAVE_MENUS is defined.
5055 2004-03-12  Richard M. Stallman  <rms@gnu.org>
5057         * fns.c (internal_equal): New arg PROPS controls comparing
5058         text properties.  All callers changed.
5059         (Fequal_including_properties): New function.
5060         (syms_of_fns): defsubr it.
5062 2004-03-12  Kim F. Storm  <storm@cua.dk>
5064         Fix image support on MAC.  From YAMAMOTO Mitsuharu.
5066         * dispextern.h (XImagePtr, XImagePtr_or_DC): Add typedefs.
5067         (image_background, image_background_transparent): Fix prototypes.
5069         * image.c (XImagePtr, XImagePtr_or_DC): Move typedefs to dispextern.h.
5071         * macfns.c (x_list_fonts, x_get_font_info, x_load_font)
5072         (x_query_font, x_find_ccl_program, x_set_window_size)
5073         (x_make_frame_visible, mac_initialize, XCreatePixmap)
5074         (XCreatePixmapFromBitmapData, XFreePixmap, XSetForeground)
5075         (mac_draw_line_to_pixmap): Move prototypes to macterm.h.
5077         * macterm.h (x_list_fonts, x_get_font_info, x_load_font)
5078         (x_query_font, x_find_ccl_program, x_set_window_size)
5079         (x_make_frame_visible, mac_initialize, XCreatePixmap)
5080         (XCreatePixmapFromBitmapData, XFreePixmap, XSetForeground)
5081         (mac_draw_line_to_pixmap): Add prototypes.
5083 2004-03-12  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
5085         * macterm.c (XTread_socket): Fix mouse click on tool bar.
5087 2004-03-11  Kim F. Storm  <storm@cua.dk>
5089         * dispextern.h: Move image related prototypes from xfns.c section
5090         to image.c.  Condition them by HAVE_WINDOW_SYSTEM rather than
5091         HAVE_X_WINDOWS.
5093         * Makefile.in (XOBJ): Consolidate into one list.  Add image.o.
5094         Move gtkutil.o to new GTK_OBJ list.
5095         (XMENU_OBJ) [HAVE_MENUS]: Move declaration to proper place.
5096         (GTK_OBJ) [USE_GTK]: New declaration.
5097         (obj): Add $(GTK_OBJ) to list.
5099 2004-03-11  Steven Tamm <steventamm@mac.com>
5101         * image.c [MAC_OSX]: Include sys/stat.h
5103         * macfns.c (syms_of_macfns): Remove definitions of things now
5104         defined in image.c
5106 2004-03-11  Kim F. Storm  <storm@cua.dk>
5108         The following changes consolidates the identical/similar image
5109         support code previously found in xfns.c, w32fns.c, and macfns.c
5110         into a new file image.c.
5112         * makefile.w32-in (OBJ1): Add image.o.
5113         ($(BLD)/image.$(O)): Add dependencies.
5115         * Makefile.in (XOBJ, MAC_OBJ): Add image.o.
5116         (image.o): Add dependencies.
5118         * image.c: New file with consolidated image support code.
5119         (COLOR_TABLE_SUPPORT): New define to control whether
5120         color table support is available (X only).
5121         (Bitmap_Record): Common name for x_bitmap_record,
5122         w32_bitmap_record, and mac_bitmap_record.
5123         (XImagePtr): Common name for pointer to XImage or equivalent.
5124         (XImagePtr_or_DC): New type to simplify code sharing; equivalent
5125         to XImagePtr on X+MAC, and to HDC on W32.
5126         (GET_PIXEL): Wrapper for XGetPixel or equivalent.
5127         (NO_PIXMAP): Common name for "None" or equivalent.
5128         (PNG_BG_COLOR_SHIFT): Bits to shift PNG background colors.
5129         (RGB_PIXEL_COLOR): Common type for an integer "pixel color" value.
5130         (PIX_MASK_RETAIN, PIX_MASK_DRAW): Portability macros (from macfns.c).
5131         (FRAME_X_VISUAL, x_defined_color, DefaultDepthOfScreen):
5132         Define with suitable equivalents on W32 and MAC for code sharing.
5133         (XDrawLine): Define on MAC for code sharing.
5134         (Destroy_Image, Free_Pixmap): Wrappers for code sharing.
5135         (IF_LIB_AVAILABLE): Macro to simplify code sharing.
5136         (Vx_bitmap_file_path, Vimage_cache_eviction_delay)
5137         (x_bitmap_height, x_bitmap_width, x_bitmap_pixmap)
5138         (x_reference_bitmap, x_create_bitmap_from_data)
5139         (x_create_bitmap_from_file, x_destroy_bitmap)
5140         (x_destroy_all_bitmaps, x_create_bitmap_mask)
5141         (XGetImage, XPutPixel, XGetPixel, XDestroyImage)
5142         (QCascent, QCmargin, QCrelief, QCconversion, QCcolor_symbols)
5143         (QCheuristic_mask, QCindex, QCmatrix, QCcolor_adjustment, QCmask)
5144         (Qlaplace, Qemboss, Qedge_detection, Qheuristic, Qcenter)
5145         (define_image_type, lookup_image_type, valid_image_p)
5146         (image_error, enum image_value_type, struct image_keyword)
5147         (parse_image_spec, image_spec_value, Fimage_size, Fimage_mask_p)
5148         (make_image, free_image, prepare_image_for_display, image_ascent)
5149         (four_corners_best, image_background, image_background_transparent)
5150         (x_clear_image_1,  x_clear_image, x_alloc_image_color)
5151         (make_image_cache, free_image_cache, clear_image_cache)
5152         (Fclear_image_cache, postprocess_image, lookup_image, cache_image)
5153         (forall_images_in_image_cache, x_create_x_image_and_pixmap)
5154         (x_destroy_x_image, x_put_x_image, x_find_image_file, slurp_file)
5155         (find_image_fsspec, image_load_qt_1, image_load_quicktime)
5156         (init_image_func_pointer, image_load_quartz2d)
5157         (struct ct_color, init_color_table, free_color_table)
5158         (lookup_rgb_color, lookup_pixel_color, colors_in_color_table)
5159         (cross_disabled_images, x_to_xcolors, x_from_xcolors)
5160         (x_detect_edges, x_emboss, x_laplace, x_edge_detection)
5161         (x_disable_image, x_build_heuristic_mask)
5162         (XBM support, XPM support, PBM support, PNG support, JPEG support)
5163         (TIFF support, GIF support, Ghostscript support): Consolidate image
5164         code from xfns.c, w32fns.c, and macfns.c.
5165         (syms_of_image): Consolidate image related symbol setup here.
5166         (init_image): Consolidate image related initializations here.
5168         * emacs.c (main) [HAVE_WINDOW_SYSTEM]: Add calls to syms_of_image
5169         and init_image.  Remove call to init_xfns.
5171         * macterm.h (struct mac_bitmap_record): Add file member.
5172         Not currently used, but simplifies code sharing.
5174         * macfns.c (Vx_bitmap_file_path, Vimage_cache_eviction_delay)
5175         (x_bitmap_height, x_bitmap_width, x_bitmap_pixmap)
5176         (x_reference_bitmap, x_create_bitmap_from_data)
5177         (x_create_bitmap_from_file, x_destroy_bitmap)
5178         (x_destroy_all_bitmaps, x_create_bitmap_mask)
5179         (XGetImage, XPutPixel, XGetPixel, XDestroyImage)
5180         (QCascent, QCmargin, QCrelief, QCconversion, QCcolor_symbols)
5181         (QCheuristic_mask, QCindex, QCmatrix, QCcolor_adjustment, QCmask)
5182         (Qlaplace, Qemboss, Qedge_detection, Qheuristic, Qcenter)
5183         (define_image_type, lookup_image_type, valid_image_p)
5184         (image_error, enum image_value_type, struct image_keyword)
5185         (parse_image_spec, image_spec_value, Fimage_size, Fimage_mask_p)
5186         (make_image, free_image, prepare_image_for_display, image_ascent)
5187         (four_corners_best, image_background, image_background_transparent)
5188         (x_clear_image_1,  x_clear_image, x_alloc_image_color)
5189         (make_image_cache, free_image_cache, clear_image_cache)
5190         (Fclear_image_cache, postprocess_image, lookup_image, cache_image)
5191         (forall_images_in_image_cache, x_create_x_image_and_pixmap)
5192         (x_destroy_x_image, x_put_x_image, x_find_image_file, slurp_file)
5193         (find_image_fsspec, image_load_qt_1, image_load_quicktime)
5194         (init_image_func_pointer, image_load_quartz2d)
5195         (struct ct_color, init_color_table, free_color_table)
5196         (lookup_rgb_color, lookup_pixel_color, colors_in_color_table)
5197         (cross_disabled_images, x_to_xcolors, x_from_xcolors)
5198         (x_detect_edges, x_emboss, x_laplace, x_edge_detection)
5199         (x_disable_image, x_build_heuristic_mask)
5200         (XBM support, XPM support, PBM support, PNG support, JPEG support)
5201         (TIFF support, GIF support, Ghostscript support): Merge with image
5202         code from xfns.c and macfns.c into image.c.
5203         (syms_of_xfns): Move image related symbols to image.c.
5204         (init_external_image_libraries, init_xfns): Remove; initialization
5205         moved to init_image in image.c.
5207         * w32fns.c (Vx_bitmap_file_path, Vimage_cache_eviction_delay)
5208         (x_bitmap_height, x_bitmap_width, x_bitmap_pixmap)
5209         (x_reference_bitmap, x_create_bitmap_from_data)
5210         (x_create_bitmap_from_file, x_destroy_bitmap)
5211         (x_destroy_all_bitmaps, x_create_bitmap_mask)
5212         (QCascent, QCmargin, QCrelief, QCconversion, QCcolor_symbols)
5213         (QCheuristic_mask, QCindex, QCmatrix, QCcolor_adjustment, QCmask)
5214         (Qlaplace, Qemboss, Qedge_detection, Qheuristic, Qcenter)
5215         (define_image_type, lookup_image_type, valid_image_p)
5216         (image_error, enum image_value_type, struct image_keyword)
5217         (parse_image_spec, image_spec_value, Fimage_size, Fimage_mask_p)
5218         (make_image, free_image, prepare_image_for_display, image_ascent)
5219         (four_corners_best, image_background, image_background_transparent)
5220         (x_clear_image_1,  x_clear_image, x_alloc_image_color)
5221         (make_image_cache, free_image_cache, clear_image_cache)
5222         (Fclear_image_cache, postprocess_image, lookup_image, cache_image)
5223         (forall_images_in_image_cache, x_create_x_image_and_pixmap)
5224         (x_destroy_x_image, x_put_x_image, x_find_image_file, slurp_file)
5225         (struct ct_color, init_color_table, free_color_table)
5226         (lookup_rgb_color, lookup_pixel_color, colors_in_color_table)
5227         (cross_disabled_images, x_to_xcolors, x_from_xcolors)
5228         (x_detect_edges, x_emboss, x_laplace, x_edge_detection)
5229         (x_disable_image, x_build_heuristic_mask)
5230         (XBM support, XPM support, PBM support, PNG support, JPEG support)
5231         (TIFF support, GIF support, Ghostscript support): Merge with image
5232         code from xfns.c and macfns.c into image.c.
5233         (syms_of_xfns): Move image related symbols to image.c.
5234         (init_external_image_libraries, init_xfns): Remove; initialization
5235         moved to init_image in image.c.
5237         * xfns.c (Vx_bitmap_file_path, Vimage_cache_eviction_delay)
5238         (x_bitmap_height, x_bitmap_width, x_bitmap_pixmap)
5239         (x_reference_bitmap, x_create_bitmap_from_data)
5240         (x_create_bitmap_from_file, x_destroy_bitmap)
5241         (x_destroy_all_bitmaps, x_create_bitmap_mask)
5242         (QCascent, QCmargin, QCrelief, QCconversion, QCcolor_symbols)
5243         (QCheuristic_mask, QCindex, QCmatrix, QCcolor_adjustment, QCmask)
5244         (Qlaplace, Qemboss, Qedge_detection, Qheuristic, Qcenter)
5245         (define_image_type, lookup_image_type, valid_image_p)
5246         (image_error, enum image_value_type, struct image_keyword)
5247         (parse_image_spec, image_spec_value, Fimage_size, Fimage_mask_p)
5248         (make_image, free_image, prepare_image_for_display, image_ascent)
5249         (four_corners_best, image_background, image_background_transparent)
5250         (x_clear_image_1,  x_clear_image, x_alloc_image_color)
5251         (make_image_cache, free_image_cache, clear_image_cache)
5252         (Fclear_image_cache, postprocess_image, lookup_image, cache_image)
5253         (forall_images_in_image_cache, x_create_x_image_and_pixmap)
5254         (x_destroy_x_image, x_put_x_image, x_find_image_file, slurp_file)
5255         (struct ct_color, init_color_table, free_color_table)
5256         (lookup_rgb_color, lookup_pixel_color, colors_in_color_table)
5257         (cross_disabled_images, x_to_xcolors, x_from_xcolors)
5258         (x_detect_edges, x_emboss, x_laplace, x_edge_detection)
5259         (x_disable_image, x_build_heuristic_mask)
5260         (XBM support, XPM support, PBM support, PNG support, JPEG support)
5261         (TIFF support, GIF support, Ghostscript support): Merge with
5262         w32fns.c and macfns.c image code into image.c.
5263         (syms_of_xfns): Move image related symbols to image.c.
5264         (init_xfns): Remove; initialization moved to init_image in image.c.
5266         * lisp.h (syms_of_image, init_image): Add protoypes.
5267         (init_xfns): Remove prototype.
5269         * dispextern.h (x_bitmap_height, x_bitmap_width, x_bitmap_pixmap)
5270         (x_reference_bitmap, x_create_bitmap_from_data)
5271         (x_create_bitmap_from_file, x_destroy_bitmap)
5272         (x_create_bitmap_mask): Move prototypes from dispextern.h.
5273         (gamma_correct) [MAC_OS]: Add prototype.
5275         * xterm.h (x_bitmap_height, x_bitmap_width, x_bitmap_pixmap)
5276         (x_reference_bitmap, x_create_bitmap_from_data)
5277         (x_create_bitmap_from_file, x_destroy_bitmap)
5278         (x_create_bitmap_mask): Move prototypes to dispextern.h.
5280 2004-03-09  Kenichi Handa  <handa@etlken2>
5282         * coding.c (decode_coding_emacs_mule): Handle insufficent source
5283         correctly.
5285 2004-03-04  Richard M. Stallman  <rms@gnu.org>
5287         * s/sol2-6.h (LD_SWITCH_SYSTEM_TEMACS): New definition.
5289         * window.c (Fdisplay_buffer): Doc fix.
5291         * buffer.c (Fpop_to_buffer): Doc fix.
5293 2004-03-03  Kim F. Storm  <storm@cua.dk>
5295         * xdisp.c (display_line): Fix call to get_overlay_arrow_glyph_row.
5297 2004-03-02  Stefan Monnier  <monnier@iro.umontreal.ca>
5299         * editfns.c (Ftranslate_region): Lisp_Object/int mixup.
5301 2004-03-02  Richard M. Stallman  <rms@gnu.org>
5303         * indent.c (compute_motion): Save vpos in prev_vpos, like hpos etc.
5305 2004-03-02  Kenichi Handa  <handa@m17n.org>
5307         * doc.c (Fsubstitute_command_keys): Fix counding bytes.
5309 2004-03-02  Kim F. Storm  <storm@cua.dk>
5311         * window.h (struct window): New member overlay_arrow_bitmap.
5313         * window.c (make_window): Initialize overlay_arrow_bitmap.
5315         * xdisp.c (Voverlay_arrow_variable_list): New variable to properly
5316         implement and integrate multiple overlay arrows with redisplay.
5317         (syms_of_xdisp): DEFVAR_LISP and initialize it.
5318         (last_arrow_position, last_arrow_string): Replace by properties.
5319         (Qlast_arrow_position, Qlast_arrow_string)
5320         (Qoverlay_arrow_string, Qoverlay_arrow_bitmap): New variables.
5321         (syms_of_xdisp): Intern and staticpro them.
5322         (overlay_arrow_string_or_property, update_overlay_arrows)
5323         (overlay_arrow_in_current_buffer_p, overlay_arrows_changed_p)
5324         (overlay_arrow_at_row): New functions for multiple overlay arrows.
5325         (redisplay_internal): Use them instead of directly accessing
5326         Voverlay_arrow_position etc. for multiple overlay arrows.
5327         (mark_window_display_accurate): Use update_overlay_arrows.
5328         (try_cursor_movement): Use overlay_arrow_in_current_buffer_p.
5329         (try_window_id): Use overlay_arrows_changed_p.
5330         (get_overlay_arrow_glyph_row): Add overlay_arrow_string arg.
5331         (display_line): Use overlay_arrow_at_row to check multiple
5332         overlay arrows, and get relevant overlay-arrow-string and
5333         overlay-arrow-bitmap.  Set w->overlay_arrow_bitmap accordingly.
5334         (produce_image_glyph): Set pixel_width = 0 for fringe bitmap.
5335         (syms_of_xdisp): Remove last_arrow_position and last_arrow_string.
5337         * fringe.c (draw_fringe_bitmap): Use w->overlay_arrow_bitmap if set.
5338         (update_window_fringes): Remove unused code.
5340 2004-03-01  Jason Rumney  <jasonr@gnu.org>
5342         * w32term.c (w32_read_socket): Fix last change to ButtonPress handling.
5344 2004-03-01  Juanma Barranquero  <lektu@terra.es>
5346         * fringe.c (Fdefine_fringe_bitmap): Fix typo in docstring.
5348         * makefile.w32-in ($(BLD)/fringe.$(O)): Add dependencies.
5350 2004-03-01  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
5352         * xfns.c (Fx_display_color_cells): Use number of planes to calculate
5353         how many colors can be displayed.
5355 2004-03-01  Kenichi Handa  <handa@m17n.org>
5357         * editfns.c (Ftranslate_region): Handle multibyte chars in TABLE
5358         correctly.
5360 2004-02-28  Kim F. Storm  <storm@cua.dk>
5362         * dispnew.c (update_window): Update header line also if there are
5363         no other changes in window (move code after set_cursor label).
5365         * lisp.h (mark_window_display_accurate): Remove prototype.
5367         * window.c (window_loop, Fforce_window_update): Force mode line
5368         updates by setting prevent_redisplay_optimizations_p and
5369         update_mode_lines.
5371 2004-02-28  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
5373         * xfns.c (x_window): Fix indentation.
5375         * xterm.c (x_calc_absolute_position): Call x_real_positions
5376         to get WM window sizes and use those to calculate position.
5377         (x_set_offset): Remove code commented out.
5379 2004-02-28  Miles Bader  <miles@gnu.org>
5381         * keyboard.c (adjust_point_for_property): #ifdef-out dodgy xassert.
5383 2004-02-28  Kim F. Storm  <storm@cua.dk>
5385         * keyboard.c (kbd_buffer_store_event_hold): New function to store
5386         an event into kbd fifo, but with special handling of quit event;
5387         a quit event is saved for later, and further events are discarded
5388         until the saved quit event has been processed.
5389         (kbd_buffer_store_event): Use kbd_buffer_store_event_hold.
5390         (gen_help_event): Store help event in kbd fifo.
5391         (NREAD_INPUT_EVENTS): Remove.
5392         (read_avail_input): Adapt to new read_socket_hook interface.
5393         Remove allocation and initialization of local input_event buffer,
5394         as read_socket_hook stores events directly in fifo.  Allocate and
5395         initialize local hold_quit event to handle postponed quit event
5396         (and store it if set by kbd_buffer_store_event_hold).
5398         * keyboard.h (kbd_buffer_store_event_hold): Add prototype.
5399         (gen_help_event): Fix prototype.
5401         * macterm.c (XTread_socket): Remove bufp_r and
5402         numcharsp args.  Add hold_quit arg.
5403         Rework to use just one, local, inev input_event.  Store inev
5404         directly in fifo using kbd_buffer_store_event_hold.
5406         * sysdep.c (BUFFER_SIZE_FACTOR): Remove.
5407         (read_input_waiting): Adapt to new read_socket_hook interface.
5408         Remove allocation and initialization of local input_event buffer,
5409         as read_socket_hook stores events directly in fifo.  Allocate and
5410         initialize local hold_quit event to handle postponed quit event
5411         (and store it if set by kbd_buffer_store_event_hold).
5413         * term.c (read_socket_hook): Fix arg list.
5415         * termhooks.h (read_socket_hook): Fix prototype.
5417         * w32inevt.c (w32_console_read_socket): Remove bufp_r and
5418         numcharsp args.  Add hold_quit arg.
5419         Rework to use just one, local, inev input_event.  Store inev
5420         directly in fifo using kbd_buffer_store_event_hold.
5422         * w32inevt.h (w32_console_mouse_position): Fix prototype.
5424         * w32term.c (w32_read_socket): Remove bufp_r and numcharsp args.
5425         Add hold_quit arg.  Rework to use just one, local, inev
5426         input_event.  Store inev directly in fifo using
5427         kbd_buffer_store_event_hold.  Update count in one place.
5428         Postpone call to gen_help_event until inev is stored; use new
5429         local do_help for this.
5430         Remove local emacs_event in handing of ButtonPress event; just use
5431         inev instead (so no reason to copy it later).
5433         * xsmfns.c (x_session_check_input): Remove numchars arg.
5435         * xterm.c (x_focus_changed, x_detect_focus_change):
5436         Remove numchars arg.  Always store event into bufp arg.
5437         Return nothing.  Callers changed accordingly.
5438         (glyph_rect): Simplify.
5439         (STORE_KEYSYM_FOR_DEBUG): New macro.
5440         (SET_SAVED_MENU_EVENT): Use inev instead of bufp, etc.
5441         (current_bufp, current_numcharsp) [USE_GTK]: Remove.
5442         (current_hold_quit) [USE_GTK]: Add.
5443         (event_handler_gdk): Adapt to new handle_one_xevent.
5444         (handle_one_xevent): Remove bufp_r and numcharsp args.
5445         Add hold_quit arg.  Rework to use just one, local, inev
5446         input_event.  Store inev directly in fifo using
5447         kbd_buffer_store_event_hold.  Update count in one place.
5448         Postpone call to gen_help_event until inev is stored; use new
5449         local do_help for this.
5450         Simplify handling of keysyms (consolidate common code).  Fix bug
5451         where count was updated with nchars instead of nbytes.
5452         Remove local emacs_event in handing of ButtonPress event; just use
5453         inev instead (so no reason to copy it later).
5454         Remove `out' label.  Rename label `ret' to `done'; add various
5455         `goto done' to clarify code flow in deeply nested blocks.
5456         (x_dispatch_event): Simplify as handle_one_xevent now calls
5457         kbd_buffer_store_event itself.
5458         (XTread_socket): Remove bufp_r and numcharsp args.  Add hold_quit
5459         arg.  Call handle_one_xevent with new arglist.  Store event from
5460         x_session_check_input in fifo.
5461         [USE_GTK]: Setup current_hold_quit.
5462         Decrement handling_signal before unblocking input.
5463         (x_initialize) [USE_GTK]: Initialize current_count.
5465         * xterm.h (x_session_check_input): Fix prototype.
5467 2004-02-26  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
5469         * s/darwin.h (LD_SWITCH_SYSTEM_TEMACS): Add `-framework QuickTime'.
5471         * dispextern.h [MAC_OSX]: Do not include Carbon/Carbon.h (now in
5472         macgui.h).
5474         * emacs.c (main) [HAVE_CARBON]: Call init_xfns.
5476         * macgui.h [MAC_OSX]: Include Carbon/Carbon.h.
5477         (mktime, DEBUG, Z, free, malloc, realloc, max, min)
5478         (init_process) [MAC_OSX] : Avoid conflicts with Carbon/Carbon.h.
5479         [!MAC_OSX]: Include QDOffscreen.h and Controls.h.
5480         (INFINITY) [MAC_OSX]: Avoid conflict with definition in math.h.
5481         (Bitmap): Remove typedef.
5482         (Pixmap): Change int to GWorldPtr.
5484         * macmenu.c [MAC_OSX]: Don't include Carbon/Carbon.h (now in macgui.h).
5486         * macterm.h [MAC_OSX]: Don't include Carbon/Carbon.h (now in macgui.h).
5487         (RED16_FROM_ULONG, GREEN16_FROM_ULONG, BLUE16_FROM_ULONG):
5488         New #define to extract 16-bit depth color components from unsigned
5489         long representation.
5490         (PIX_MASK_DRAW, PIX_MASK_RETAIN): New #define to represent pixel
5491         colors used for masks.
5492         (struct mac_display_info): Add color_p.  Remove n_cbits.
5494         * macfns.c: Include sys/types.h and sys/stat.h.
5495         [MAC_OSX]: Do not include Carbon/Carbon.h (now in macgui.h).
5496         Include QuickTime/QuickTime.h.
5497         (XCreatePixmap, XCreatePixmapFromBitmapData, XFreePixmap)
5498         (XSetForeground, mac_draw_line_to_pixmap): Add externs for
5499         functions defined in macterm.c.
5500         (XImagePtr): New typedef.  Corresponds to XImage * in xfns.c.
5501         (ZPixmap): New #define for compatibility with xfns.c.
5502         (XGetImage, XPutPixel, XGetPixel, XDestroyImage)
5503         (x_create_x_image_and_pixmap, x_destroy_x_image, x_put_x_image)
5504         (find_image_fsspec, image_load_qt_1, image_load_quicktime):
5505         New functions.
5506         (four_corners_best, x_create_x_image_and_pixmap)
5507         (x_destroy_x_image, unwind_create_frame, x_disable_image)
5508         (x_edge_detection, init_color_table, colors_in_color_table)
5509         (lookup_rgb_color, lookup_pixel_color, postprocess_image)
5510         (x_put_x_image, slurp_file, xbm_scan, xbm_load, xbm_load_image)
5511         (xbm_image_p, xbm_read_bitmap_data, xbm_file_p, x_to_xcolors)
5512         (x_from_xcolors, x_detect_edges): New declarations (from xfns.c).
5513         (mac_color_map_lookup, x_to_mac_color): Fix Lisp_Object/unsigned
5514         long mixup.
5515         (mac_defined_color, x_to_x_colors): Use RED16_FROM_ULONG etc.
5516         (x_decode_color): Don't use n_cbits (in struct mac_display_info).
5517         (x_set_foreground_color, x_set_cursor_color): Sync with w32fns.c.
5518         (x_set_cursor_type, Fxw_color_values, valid_image_p)
5519         (image_value_type, parse_image_spec, image_ascent, x_clear_image)
5520         (x_alloc_image_color, clear_image_cache, lookup_image)
5521         (x_find_image_file, xbm_read_bitmap_file_data)
5522         (enum xbm_keyword_index, xbm_format, xbm_image_p, xbm_scan)
5523         (xbm_read_bitmap_data, xbm_load, pbm_image_p, pbm_scan_number)
5524         (enum pbm_keyword_index, pbm_format, enum png_keyword_index)
5525         (png_format, png_image_p, enum jpeg_keyword_index, jpeg_format)
5526         (jpeg_image_p, enum tiff_keyword_index, tiff_format, tiff_image_p)
5527         (enum gif_keyword_index, gif_format, gif_image_p): Sync with xfns.c.
5528         (x_make_gc): Sync with xfns.c.  Enclose unused `border_tile' with
5529         #if 0.
5530         (x_free_gcs): Sync with xfns.c.  Enclose unused `border_tile' with
5531         #if 0.  Free white_relief.gc and black_relief.gc.
5532         (unwind_create_frame, x_emboss, x_laplace, x_edge_detection):
5533         New functions (from xfns.c).
5534         (Fx_create_frame): Record unwind_create_frame.
5535         (Fxw_display_color_p): Use dpyinfo->color_p.
5536         (Fx_display_grayscale_p, Fx_display_planes): Don't use
5537         dpyinfo->n_cbits.
5538         (Fx_display_color_cells): Use dpyinfo->n_planes;
5539         (QCmatrix, QCcolor_adjustment, QCmask, Qemboss, Qedge_detection)
5540         (Qheuristic, cross_disabled_images, emboss_matrix)
5541         (laplace_matrix): New variables (from xfns.c).
5542         (Fimage_size, Fimage_mask_p, four_corners_best, image_background)
5543         (x_clear_image_1, postprocess_image, slurp_file, xbm_load_image)
5544         (xbm_file_p, x_to_xcolors, x_from_xcolors, x_detect_edges)
5545         (image_background_transparent): New function (from xfns.c).
5546         Use PIX_MASK_DRAW/PIX_MASK_RETAIN.
5547         (image_load_quicktime): Add declaration.
5548         [MAC_OSX] (image_load_quartz2d): Likewise.
5549         [MAC_OSX] (CGImageCreateWithPNGDataProviderProcType): New typedef.
5550         [MAC_OSX] (MyCGImageCreateWithPNGDataProvider): New variable.
5551         [MAC_OSX] (init_image_func_pointer, image_load_quartz2d): New funs.
5552         (xbm_load_image_from_file, x_laplace_read_row)
5553         (x_laplace_write_row, pbm_read_file): Remove functions.
5554         [HAVE_XPM] (enum xpm_keyword_index, xpm_format, xpm_image_p)
5555         (xpm_load): Sync with xfns.c (although XPM is not supported yet).
5556         (colors_in_color_table): Sync with xfns.c (although not used).
5557         (lookup_rgb_color): Don't lookup color table.  Just do gamma
5558         correction.
5559         (COLOR_INTENSITY): New #define (from xfns.c).
5560         (x_disable_image): New function (from xfns.c).
5561         Use PIX_MASK_DRAW/PIX_MASK_RETAIN.
5562         (x_build_heuristic_mask): Sync with xfns.c.
5563         Use PIX_MASK_DRAW/PIX_MASK_RETAIN.
5564         (HAVE_PBM): Remove #ifdef.
5565         (pbm_load): Sync with xfns.c.  Set img->width and img->height
5566         before IMAGE_BACKGROUND.
5567         (png_image_p, png_load): Don't enclose declarations with #if HAVE_PNG.
5568         (Qpng, enum png_keyword_index, png_format, png_type, png_image_p):
5569         Don't enclose with #if HAVE_PNG.
5570         [!HAVE_PNG] (png_load) [MAC_OSX]: Use image_load_quartz2d if a
5571         symbol _CGImageCreateWithPNGDataProvider is defined.
5572         Otherwise use image_load_quicktime.
5573         [!HAVE_PNG] (png_load) [!MAC_OSX]: Use image_load_quicktime.
5574         [HAVE_PNG] (png_load): Sync with xfns.c.
5575         Use PIX_MASK_DRAW/PIX_MASK_RETAIN.
5576         (jpeg_image_p, jpeg_load): Don't enclose declarations with #if
5577         HAVE_JPEG.
5578         (Qjpeg, enum jpeg_keyword_index, jpeg_format, jpeg_type)
5579         (jpeg_image_p): Don't enclose with #if HAVE_JPEG.
5580         [!HAVE_JPEG] (jpeg_load) [MAC_OSX]: Use image_load_quartz2d.
5581         [!HAVE_JPEG] (jpeg_load) [!MAC_OSX]: Use image_load_quicktime.
5582         [HAVE_JPEG] (jpeg_load): Sync with xfns.c.
5583         (tiff_image_p, tiff_load): Don't enclose declarations with #if
5584         HAVE_TIFF.
5585         (Qtiff, enum tiff_keyword_index, tiff_format, tiff_type)
5586         (tiff_image_p): Don't enclose with #if HAVE_TIFF.
5587         [!HAVE_TIFF] (tiff_load): Use image_load_quicktime.
5588         [HAVE_TIFF] (tiff_error_handler, tiff_warning_handler):
5589         New functions (from xfns.c).
5590         [HAVE_TIFF] (tiff_load): Sync with xfns.c.
5591         (gif_image_p, gif_load): Don't enclose declarations with #if HAVE_GIF.
5592         (Qgif, enum gif_keyword_index, gif_format, gif_type, gif_image_p):
5593         Don't enclose with #if HAVE_GIF.
5594         [!HAVE_GIF] (gif_load): Use Quicktime Movie Toolbox if it is
5595         animated gif.  Otherwise use image_load_quicktime.
5596         [HAVE_GIF] (gif_lib.h): Temporarily define DrawText as
5597         gif_DrawText to avoid conflict with QuickdrawText.h.
5598         [HAVE_GIF] (gif_load): Sync with xfns.c.
5599         (enum gs_keyword_index, gs_format, gs_image_p, gs_load)
5600         [HAVE_GHOSTSCRIPT] (x_kill_gs_process): Sync with xfns.c (although
5601         Ghostscript is not supported yet).
5602         (syms_of_macfns): Initialize Qemboss, Qedge_detection, Qheuristic,
5603         QCmatrix, QCcolor_adjustment, and QCmask.  Add DEFVAR_BOOL
5604         cross_disabled_images (from xfns.c).  Remove #if 0 for supported
5605         image types.  Remove #if HAVE_JPEG, HAVE_TIFF, HAVE_GIF, and
5606         HAVE_PNG.  Add defsubr for Simage_size and Simage_mask_p.
5607         (init_xfns): Remove #if HAVE_JPEG, HAVE_TIFF, HAVE_GIF, and
5608         HAVE_PNG.  Call EnterMovies to support animated gifs.
5609         Call init_image_func_pointer to bind a symbol
5610         _CGImageCreateWithPNGDataProvider if it is defined.
5612         * macterm.c [MAC_OSX]: Don't include Carbon/Carbon.h (now in macgui.h).
5613         (x_draw_bar_cursor): Sync declaration with xterm.c.
5614         (XFreePixmap, mac_draw_rectangle_to_pixmap, mac_copy_area)
5615         (mac_copy_area_to_pixmap): Implementation with GWorld (offscreen
5616         graphics).
5617         (mac_set_forecolor, mac_set_backcolor): Use RED16_FROM_ULONG etc.
5618         (mac_draw_line_to_pixmap, XCreatePixmap)
5619         (XCreatePixmapFromBitmapData, mac_fill_rectangle_to_pixmap)
5620         (mac_copy_area_with_mask, mac_copy_area_with_mask_to_pixmap):
5621         New functions.
5622         (mac_draw_bitmap) [TARGET_API_MAC_CARBON]:
5623         Use GetPortBitMapForCopyBits instead of the cast to Bitmap *.
5624         Cast bits to char *.
5625         (reflect_byte): New function (from w32fns.c).
5626         (mac_create_bitmap_from_bitmap_data): Use it and don't stuff bits
5627         due to byte alignment.
5628         (mac_scroll_area) [TARGET_API_MAC_CARBON]:
5629         Use GetPortBitMapForCopyBits instead of the cast to Bitmap *.
5630         (XSetForeground): Remove static (now used in macfns.c).
5631         (HIGHLIGHT_COLOR_DARK_BOOST_LIMIT): New #define (from w32term.c).
5632         (mac_alloc_lighter_color, x_destroy_window): Sync with w32term.c.
5633         (x_setup_relief_color, x_setup_relief_colors, x_draw_box_rect)
5634         (x_draw_glyph_string_box, x_draw_image_foreground)
5635         (x_draw_image_foreground_1, x_draw_image_glyph_string)
5636         (x_draw_stretch_glyph_string, x_draw_glyph_string)
5637         (x_draw_hollow_cursor, x_draw_bar_cursor, mac_draw_window_cursor):
5638         Sync with xterm.c.
5639         (x_draw_relief_rect): Sync with xterm.c.  Make 1 pixel shorter
5640         than the xterm.c version when a strictly horizontal or vertical
5641         line is drawn.
5642         (XTset_terminal_window): Add static.
5643         (x_make_frame_visible): Add UNBLOCK_INPUT.
5644         (x_free_frame_resources): New funcion (from xterm.c).
5645         (XTread_socket): Call handle_tool_bar_click if mouse up/down event
5646         occurs in tool bar area.
5647         (mac_initialize_display_info): Remove dpyinfo->n_cbits.
5648         Set dpyinfo->color_p.  Determine dpyinfo->n_planes using HasDepth.
5649         Initialize image cache.
5650         (stricmp, wildstrieq, mac_font_pattern_match, mac_font_match):
5651         Enclose unused functions with #if 0.
5652         (Qbig5, Qcn_gb, Qsjis, Qeuc_kr): New variables.
5653         (decode_mac_font_name): New function to apply code conversions
5654         from a mac font name to an XLFD font name according to its script code.
5655         (x_font_name_to_mac_font_name): Apply code conversion from an XLFD
5656         font name to a mac font name according to REGISTRY and ENCODING fields.
5657         (init_font_name_table) [TARGET_API_MAC_CARBON]: Don't use a font
5658         whose name starts with `.'.
5659         (init_font_name_table): Use decode_mac_font_name.  Add both
5660         jisx0208.1983-sjis and jisx0201.1976-0 entries if the script code
5661         of a font is smJapanese.
5662         (mac_do_list_fonts): New function to list fonts that match a given
5663         pattern.
5664         (x_list_fonts, XLoadQueryFont): Use it.
5665         (XLoadQueryFont): Set rbearing field for each variable width
5666         character to avoid needless redraw.
5667         (syms_of_macterm): Initialize Qbig5, Qcn_gb, Qsjis, and Qeuc_kr.
5669 2004-02-26  Kim F. Storm  <storm@cua.dk>
5671         * keyboard.c (NREAD_INPUT_EVENTS): Temporarily increase to 512
5672         as read_socket_hook handler on X aborts if buffer is too small
5673         and W32 handler doesn't always check buffer limit.
5675         * xdisp.c (handle_single_display_prop): Handle left-fringe and
5676         right-fringe similar to a display margin image.  Specifically,
5677         the characters having the fringe prop are no longer shown, and
5678         we use IT_IMAGE/next_element_from_image with image_id = -1 to
5679         do this.  Set fringe bitmap face_id in it->face_id.
5680         (produce_image_glyph): Handle image_id < 0 as "no image" case, but
5681         still realize it->face (i.e. the fringe bitmap face).
5683 2004-02-25  Miles Bader  <miles@gnu.org>
5685         * xdisp.c (check_it): Check string/string_pos consistency.
5686         (init_iterator): Initialize string-related fields properly.
5688 2004-02-11  Miles Bader  <miles@gnu.org>
5690         * xdisp.c (produce_image_glyph): Force negative descents to zero.
5692 2004-02-10  Miles Bader  <miles@gnu.org>
5694         * xfns.c (lookup_image): Remove xassert(!interrupt_input_blocked);
5695         BLOCK_INPUT can be nested, so it doesn't make much sense.
5697 2004-02-24  Michael Mauger  <mmaug@yahoo.com>
5699         * w32fns.c (slurp_file, xbm_scan, xbm_load_image)
5700         (xbm_read_bitmap_data): Use unsigned char for image data.
5702 2004-02-23  Luc Teirlinck  <teirllm@auburn.edu>
5704         * abbrev.c (Finsert_abbrev_table_description): Doc fix.
5706 2004-02-22  Jason Rumney  <jasonr@gnu.org>
5708         * w32term.c (w32_draw_fringe_bitmap): Draw overlaid bitmaps
5709         correctly over other bitmaps.
5711 2004-02-21  Eli Zaretskii  <eliz@gnu.org>
5713         * emacs.c (USAGE1): Split into two halves.
5714         (USAGE2): Second half of the old USAGE1.
5715         (USAGE3): Rename from USAGE2.
5716         (USAGE4): Rename from USAGE3.
5718 2004-02-21  Juri Linkov  <juri@jurta.org>
5720         * emacs.c (USAGE1): Add --no-desktop.  Move --display from USAGE2.
5721         Fix --multibyte.  Move --help, --version to USAGE2.  Add alias
5722         --file.  Fix -f, -l.  Sort options.  Untabify.
5723         (USAGE2): Add -hb.  Fix --name, --title.  Sort options.  Untabify.
5725 2004-02-19  Luc Teirlinck  <teirllm@auburn.edu>
5727         * category.c (Fdefine_category, Fcategory_docstring)
5728         (Fget_unused_category, Fset_category_table)
5729         (Fcategory_set_mnemonics): Doc fixes.
5731 2004-02-20  Kim F. Storm  <storm@cua.dk>
5733         * keyboard.c: Undo 2004-02-16 and 2004-02-17 changes.
5734         The following changes are relative to the 2004-01-21 revision.
5735         (NREAD_INPUT_EVENTS): Define as max number of input events to read
5736         in one call to read_socket_hook.  Value is 8.
5737         (read_avail_input): Separate and rework handling of read_socket_hook
5738         and non-read_socket_hook cases.  Use smaller input_event buffer
5739         in read_socket_hook case, and repeat if full buffer is read.
5740         Use new local variable 'discard' to skip input after C-g.
5741         In non-read_socket_hook case, just use a single input_event, and
5742         call kbd_buffer_store_event on the fly for each character.
5744 2004-02-19  Stefan Monnier  <monnier@iro.umontreal.ca>
5746         * lisp.h (union Lisp_Object): Give a more precise type for `type'.
5747         Remove unused `gu' alternative.
5749 2004-02-19  Andreas Schwab  <schwab@suse.de>
5751         * fringe.c (Fdefine_fringe_bitmap): Use && instead of & to avoid
5752         warning.
5754 2004-02-18  Kim F. Storm  <storm@cua.dk>
5756         * xdisp.c (get_window_cursor_type, display_and_set_cursor):
5757         Fix last change.
5759 2004-02-17  Kim F. Storm  <storm@cua.dk>
5761         * xdisp.c (fast_find_position): Fix return value of new version;
5762         it was inverted compared to the 21.1 version.
5763         (get_window_cursor_type): Don't look at glyph if NULL.
5764         (display_and_set_cursor): Set glyph to NULL if cursor in fringe.
5766         * keyboard.c: Rework previous change; it didn't consider that the
5767         buf array was allocated on the stack.
5768         (prev_read): Remove variable.
5769         (read_avail_input_buf): New static event buffer array.
5770         (in_read_avail_input): New static variable to handle re-entrancy.
5771         (read_avail_input): Change buf to pinter to read_avail_input_buf.
5772         Use in_read_avail_input to handle re-entrance; when re-entered,
5773         fully initialize and use tmp_buf array instead of read_avail_input_buf.
5774         Do not initialize read_avail_input_buf in full here; instead assume it
5775         is always cleared on entry.  To ensure that, we clear (just) the
5776         entries that were used before we return.
5777         (init_keyboard): Initialize read_avail_input_buf here.
5779 2004-02-16  Jesper Harder  <harder@ifa.au.dk>
5781         * cmds.c (Fend_of_line): Doc fix.
5783 2004-02-16  Dmitry Antipov  <dmitry.antipov@mail.ru>  (tiny change)
5785         * keyboard.c (prev_read): New static variable.
5786         (read_avail_input): Use it to zero out only those slots in buf[]
5787         that were used last time we were called.
5789 2004-02-16  Eli Zaretskii  <eliz@gnu.org>
5791         * Makefile.in (obj): Move fringe.o from here...
5792         (XOBJ, MAC_OBJ): ...to here.
5794 2004-02-16  Stephen Eglen  <stephen@gnu.org>
5796         * fringe.c (init_fringe_bitmap): Define j in MAC_OS code.
5798 2004-02-15  Stefan Monnier  <monnier@iro.umontreal.ca>
5800         * data.c (Fbyteorder):
5801         * fringe.c (Fdefine_fringe_bitmap):
5802         * xdisp.c (handle_single_display_prop):
5803         * xselect.c (x_handle_dnd_message): Lisp_Object/int mixup.
5805 2004-02-16  Jason Rumney  <jasonr@gnu.org>
5807         * w32term.c (w32_draw_fringe_bitmap): Handle overlay fringe bitmaps.
5809 2004-02-15  Steven Tamm  <steventamm@mac.com>
5811         * macterm.c (Vmac_emulate_three_button_mouse): New variable for
5812         controlling emulation of a three button mouse with option and
5813         command keys.
5814         (Qreverse, mac_get_enumlated_btn): Handle the emulation
5815         (mac_event_to_emacs_modifiers, XTread_socket): Ditto.
5817 2004-02-15  Kim F. Storm  <storm@cua.dk>
5819         * buffer.c (syms_of_buffer): Doc fix for indicate-buffer-boundaries.
5821         * fringe.c (init_fringe_bitmap) [MAC_OS, WORDS_BIG_ENDIAN]:
5822         Perform byte-swapping.
5824 2004-02-14  Kim F. Storm  <storm@cua.dk>
5826         * dispextern.h (struct draw_fringe_bitmap_params): Change member
5827         bits from char to short to facilitate wider bitmaps.
5828         (struct redisplay_interface): Fix prototype of define_fringe_bitmap
5829         member.
5831         * fringe.c (struct fringe_bitmap): Change member bits from char to
5832         short to facilitate 16 bits wide bitmaps.  Modify all standard
5833         bitmaps accordingly.
5834         (BYTES_PER_BITMAP_ROW, STANDARD_BITMAP_HEIGHT): New macros.
5835         (FRBITS): Use STANDARD_BITMAP_HEIGHT instead of just sizeof.
5836         (draw_fringe_bitmap): Ditto.
5837         (init_fringe_bitmap) [MAC_OS]: Don't bitswap.
5838         (init_fringe_bitmap) [HAVE_X_WINDOWS]: Enhance bitswapping to
5839         handle up to 16 bits wide bitmaps.
5840         (Fdefine_fringe_bitmap): Doc fix.  Handle wider bitmaps.
5841         (Ffringe_bitmaps_at_pos): Add missing arg declarations.
5843         * macterm.c (mac_draw_bitmap): Handle 16 bits wide bitmaps directly.
5844         (x_draw_fringe_bitmap): Use enhanced mac_draw_bitmap, so we no longer
5845         need to call mac_create_bitmap_from_bitmap_data and mac_free_bitmap.
5847         * w32term.c (w32_define_fringe_bitmap): Bitmaps are now 16 bits wide,
5848         so it is no longer necessary to expand them here.
5850         * xterm.c (x_draw_fringe_bitmap): Handle wider bitmaps (max 16 bits).
5852 2004-02-12  Kim F. Storm  <storm@cua.dk>
5854         * window.c (Fwindow_fringes): Doc fix.
5856 2004-02-10  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
5858         * xselect.c (x_get_foreign_selection): Add new optional parameter
5859         time_stamp.
5860         (Fx_get_selection_internal): Ditto, pass time_stamp to
5861         x_get_foreign_selection.
5863         * data.c (Fbyteorder): New function.
5865 2004-02-09  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
5867         * atimer.c: Move include stdio.h to same place as in other files.
5869         * region-cache.c: Ditto.
5871         * sysdep.c: Ditto.
5873         * xfaces.c: Ditto.
5875 2004-02-09  Sam Steingold  <sds@gnu.org>
5877         * w32term.c (w32_draw_fringe_bitmap): Fix a typo in the last patch.
5879 2004-02-09  Kim F. Storm  <storm@cua.dk>
5881         * fringe.c: New file.  Move original fringe related declarations
5882         and code from dispextern.h and xdisp.c here.
5883         Rework code to support user defined fringe bitmaps, redefining
5884         standard bitmaps, ability to overlay user defined bitmap with
5885         overlay arrow bitmap, and add faces to bitmaps.
5886         (Voverflow_newline_into_fringe): Declare here.
5887         (enum fringe_bitmap_align): New enum.
5888         (..._bits): All bitmaps are now defined without bitswapping; that
5889         is now done in init_fringe_once (if necessary).
5890         (standard_bitmaps): New array with specifications for the
5891         standard fringe bitmaps.
5892         (fringe_faces): New array.
5893         (valid_fringe_bitmap_id_p): New function.
5894         (draw_fringe_bitmap_1): Rename from draw_fringe_bitmap.
5895         (draw_fringe_bitmap): New function which draws fringe bitmap,
5896         possibly overlaying bitmap with cursor in right fringe or the
5897         overlay arrow in the left fringe.
5898         (update_window_fringes): Do not handle overlay arrow here.
5899         Compare and copy fringe bitmap faces.
5900         (init_fringe_bitmap): New function.
5901         (Fdefine_fringe_bitmap, Fdestroy_fringe_bitmap): New DEFUNs to
5902         define and destroy user defined fringe bitmaps.
5903         (Fset_fringe_bitmap_face): New DEFUN to set face for a fringe bitmap.
5904         (Ffringe_bitmaps_at_pos): New DEFUN to read current fringe bitmaps.
5905         (syms_of_fringe): New function.  Defsubr new DEFUNs.
5906         DEFVAR_LISP Voverflow_newline_into_fringe.
5907         (init_fringe_once, init_fringe): New functions.
5908         (w32_init_fringe, w32_reset_fringes) [WINDOWS_NT]: New functions.
5910         * Makefile.in (obj): Add fringe.o.
5911         (fringe.o): New dependencies.
5913         * dispextern.h (FRINGE_ID_BITS): New definition for number of
5914         bits allocated to hold a fringe number.  Increase number of bits
5915         from 4 to 8 to allow user defined fringe bitmaps.
5916         (struct glyph_row, struct it): New members left_user_fringe_bitmap,
5917         left_user_fringe_face_id, right_user_fringe_bitmap,
5918         right_user_fringe_face_id.
5919         (enum fringe_bitmap_type, struct fringe_bitmap, fringe_bitmaps):
5920         Move to new file fringe.c.
5921         (MAX_FRINGE_BITMAPS): Define here.
5922         (struct draw_fringe_bitmap_params): New members bits, cursor_p,
5923         and overlay_p.  Change member which to int.
5924         (struct redisplay_interface): New members define_fringe_bitmap
5925         and destroy_fringe_bitmap.
5926         (valid_fringe_bitmap_id_p): Add prototype.
5927         (w32_init_fringe, w32_reset_fringes) [WINDOWS_NT]: Add prototypes.
5929         * dispnew.c (row_equal_p): Compare fringe bitmap faces and overlay
5930         arrows.
5931         (update_frame): Do flush_display if force_flush_display_p to
5932         ensure display (specifically fringes) are updated in a timely
5933         manner when resizing the frame by dragging the mouse.
5934         (update_window_line): Update row if overlay arrow changed.
5935         (scrolling_window): Redraw fringe bitmaps if fringe bitmap faces
5936         or overlay arrow changed.
5938         * emacs.c (main) [HAVE_WINDOW_SYSTEM]: Call init_fringe_once,
5939         syms_of_fringe, and init_fringe.
5941         * frame.h (struct frame): New member force_flush_display_p.
5943         * lisp.h (syms_of_fringe, init_fringe, init_fringe_once):
5944         Add prototypes.
5946         * macterm.c (mac_draw_bitmap): Add overlay_p arg.
5947         (x_draw_fringe_bitmap): Handle overlayed fringe bitmaps;
5948         thanks to YAMAMOTO Mitsuharu for advice on how to do this.
5949         Use cursor color for displaying cursor in fringe.
5950         (x_redisplay_interface): Add null handlers for
5951         define_fringe_bitmap and destroy_fringe_bitmap functions.
5953         * w32term.c (w32_draw_fringe_bitmap): Copy unadapted code from
5954         xterm.c to handle overlayed fringe bitmaps and to use cursor color
5955         for displaying cursor in fringe.
5956         (w32_define_fringe_bitmap, w32_destroy_fringe_bitmap): New W32
5957         specific functions to define and destroy fringe bitmaps in fringe_bmp.
5958         (w32_redisplay_interface): Add them to redisplay_interface.
5959         (w32_term_init): Call w32_init_fringe instead of explicitly
5960         defining fringe bitmaps in fringe_bmp array.
5961         (x_delete_display): Call w32_reset_fringes instead of explicitly
5962         destroying fringe bitmaps in fringe_bmp array.
5964         * xdisp.c (Voverflow_newline_into_fringe, syms_of_xdisp)
5965         (left_bits, right_bits, up_arrow_bits, down_arrow_bits)
5966         (continued_bits, continuation_bits, ov_bits, first_line_bits)
5967         (last_line_bits, filled_box_cursor_bits, hollow_box_cursor_bits)
5968         (bar_cursor_bits, hbar_cursor_bits, zv_bits, hollow_square_bits)
5969         (fringe_bitmaps, draw_fringe_bitmap, draw_row_fringe_bitmaps)
5970         (draw_window_fringes, compute_fringe_widths, update_window_fringes):
5971         Move fringe handling vars and code to new file fringe.c.
5972         (handle_display_prop): Handle left-fringe and right-fringe
5973         display properties; store user fringe bitmaps in iterator.
5974         (move_it_in_display_line_to): Handle cursor in fringe at eob.
5975         (clear_garbaged_frames): Set force_flush_display_p if resized.
5976         (redisplay_window): Redraw fringe bitmaps if not just_this_one_p.
5977         (display_line): Handle cursor in fringe at eob.
5978         (display_line): Set row user fringe bitmaps from iterator.
5980         * xterm.c (x_draw_fringe_bitmap): Handle overlayed fringe bitmaps.
5981         Use cursor color for displaying cursor in fringe.
5982         (x_redisplay_interface): Add null handlers for
5983         define_fringe_bitmap and destroy_fringe_bitmap functions.
5985 2004-02-07  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
5987         * macfns.c (Fx_change_window_property): Make doc string and
5988         parameters same as for X version.
5990         * w32fns.c (Fx_change_window_property): Ditto.
5992 2004-02-07  Kim F. Storm  <storm@cua.dk>
5994         * xdisp.c (hscroll_window_tree): Position cursor near to right
5995         margin in hscrolled window when jumping to end of line (rather
5996         than centering cursor).
5998         * process.c (wait_reading_process_input): Don't do adaptive read
5999         buffering if waiting for a specific process.
6001 2004-02-05  Luc Teirlinck  <teirllm@auburn.edu>
6003         * minibuf.c (Fminibufferp, Fread_from_minibuffer)
6004         (Fread_minibuffer, Feval_minibuffer)
6005         (Fread_string, Fread_no_blanks_input)
6006         (Fcompleting_read): Doc fixes.
6007         (syms_of_minibuf): Doc fixes for minibuffer-completion-table and
6008         completion-regexp-list.  Define Qcase_fold_search and staticpro it.
6009         (read_minibuf): Fix initial comment.
6010         (Ftry_completion, Fall_completions, Ftest_completion): Bind
6011         case-fold-search to the value of completion-ignore-case when
6012         checking completion-regexp-list.
6013         (Fdisplay_completion_list): Make it handle arguments that are
6014         symbols.  Doc fix.
6016 2004-02-05  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
6018         * xterm.h: Add declaration of free_frame_menubar.
6020         * xfns.c (x_create_bitmap_mask): Removed unused variable depth.
6021         (x_set_menu_bar_lines): Added ! defined USE_GTK for olines.
6022         (Fx_change_window_property): Add declaration of parameters type and
6023         format.  Remove unused variable cons.
6025         * xselect.c: Include stdio,h.
6027 2004-02-05  Kenichi Handa  <handa@m17n.org>
6029         * fns.c (Fset_char_table_range): Fix previous change.
6031         * buffer.c (Fset_buffer_multibyte): Fix docstring.
6033 2004-02-04  Luc Teirlinck  <teirllm@auburn.edu>
6035         * editfns.c (Fchar_after, Fchar_before): Doc fixes.
6037 2004-02-04  Stefan Monnier  <monnier@iro.umontreal.ca>
6039         * keymap.c (Vmouse_events): Rename from Vmenu_events.
6040         (syms_of_keymap): Add mouse-[45], header-line, and mode-line to it.
6042 2004-02-04  Kenichi Handa  <handa@m17n.org>
6044         * fns.c (Fset_char_table_range): Handle charsets ascii,
6045         eight-bit-control, and eight-bit-graphic correctly.
6047 2004-02-03  Jason Rumney  <jasonr@gnu.org>
6049         * w32select.c (Fw32_set_clipboard_data): Make coding iso2022 safe.
6051         * w32fns.c (x_to_w32_font): Likewise.
6053 2004-02-03  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
6055         * xterm.h: Add x_handle_dnd_message, x_check_property_data,
6056         x_fill_property_data, x_property_data_to_lisp and check_x_display_info.
6058         * xterm.c (handle_one_xevent): Call x_handle_dnd_message for
6059         ClientMessages.
6061         * xselect.c: Include termhooks.h and X11/Xproto.h
6062         (x_check_property_data, x_fill_property_data)
6063         (x_property_data_to_lisp, mouse_position_for_drop)
6064         (Fx_get_atom_name, x_handle_dnd_message): New functions for DND support.
6065         (Fx_send_client_event): Move here from xfns.c.
6066         (syms_of_xselect): Add Sx_get_atom_name and Sx_send_client_message.
6068         * xfns.c (x-send-client-message): Move to xselect.c
6069         (Fx_change_window_property): Add optional arguments TYPE, FORMAT and
6070         OUTER_P.
6071         (Fx_window_property): Add optional arguments TYPE, SOURCE, DELETE_P,
6072         VECTOR_RET_P.  Handle AnyPropertyType.  Call x_property_data_to_lisp
6073         if vector_ret_p is true.
6074         (syms_of_xfns): Sx_send_client_message moved to xselect.c.
6076 2004-02-02  Eli Zaretskii  <eliz@gnu.org>
6078         * fileio.c (Fcopy_file): If NEWNAME is a directory, expand the
6079         basename of FILE relative to it, not FILE itself.
6081 2004-02-02  Kenichi Handa  <handa@m17n.org>
6083         * coding.c (coding_restore_composition): Check invalid
6084         composition data more rigidly.
6086 2004-01-30  Luc Teirlinck  <teirllm@auburn.edu>
6088         * fileio.c (Fread_file_name_internal): Correctly handle the case
6089         where insert-default-directory is nil.
6090         (Fread_file_name): Always return an empty string if the user exits
6091         with an empty minibuffer.  Adapt the docstring accordingly.
6092         (syms_of_fileio): Adapt the docstring of insert-default-directory
6093         to the change in Fread_file_name.
6095 2004-01-29  Eli Zaretskii  <eliz@gnu.org>
6097         * alloca.c [!alloca]: Fix the prototype for xfree.
6099 2004-01-29  Kenichi Handa  <handa@m17n.org>
6101         * fns.c (string_char_to_byte): Optimize for ASCII only string.
6102         (string_byte_to_char): Likewise.
6104 2004-01-28  Peter Runestig  <peter@runestig.com>
6106         * makefile.w32-in, w32fns.c: Add `default-printer-name' function.
6108 2004-01-27  Steven Tamm  <steventamm@mac.com>
6110         * unexmacosx.c (unexec_copy): Do not copy more than was
6111         requested to prevent overwriting during unexec.
6113 2004-01-27  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
6115         * process.c (sigchld_handler): Add comment about not calling malloc.
6117         * process.h: Add extern to synch_process_termsig.
6119 2004-01-27  Steven Tamm  <steventamm@mac.com>
6121         * macterm.c (make_mac_frame, make_mac_terminal_frame):
6122         Move setting of scroll bars from make_mac_frame to
6123         make_mac_terminal_frame to prevent clobbering of scroll-bar-mode.
6125 2004-01-26  Richard M. Stallman  <rms@gnu.org>
6127         * search.c (Freplace_match): Handle nonexistent
6128         back-references properly.
6130 2004-01-03  Richard M. Stallman  <rms@gnu.org>
6132         * window.c (decode_any_window): New function.
6133         (Fwindow_height, Fwindow_width, Fwindow_edges)
6134         (Fwindow_pixel_edges, Fwindow_inside_edges)
6135         (Fwindow_inside_pixel_edges): Use decode_any_window.
6137 2004-01-27  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
6139         * process.h: synch_process_termsig new variable.
6141         * callproc.c: Define synch_process_termsig.
6142         (Fcall_process): Initiate synch_process_termsig to zero and
6143         check if non-zero and get signal name after subprocess has ended.
6145         * process.c (sigchld_handler): Set synch_process_termsig
6146         if terminated by a signal.  synch_process_death setting removed.
6148         * sysdep.c (mkdir, rmdir): Also check synch_process_termsig.
6150 2004-01-26  Andreas Schwab  <schwab@suse.de>
6152         * print.c (print_preprocess): Declare size as EMACS_INT to not
6153         lose bits.
6154         (print_object): Likewise.
6155         * alloc.c (Fpurecopy): Likewise.
6157 2004-01-25  Luc Teirlinck  <teirllm@auburn.edu>
6159         * window.c (Fwindow_minibuffer_p): Doc fix.
6161 2004-01-24  Jonathan Yavner  <jyavner@member.fsf.org>
6163         * editfns.c (Fformat): Make both passes accept the same set of flags.
6165 2004-01-23  Kenichi Handa  <handa@m17n.org>
6167         * fns.c (Fmd5): If OBJECT is a buffer different from the current
6168         one, set buffer to OBJECT temporarily.
6170 2004-01-21  Stefan Monnier  <monnier@iro.umontreal.ca>
6172         * keyboard.c (kbd_buffer_gcpro): Remove.
6173         (kbd_buffer_store_event, clear_event, Fdiscard_input)
6174         (stuff_buffered_input, init_keyboard, syms_of_keyboard):
6175         Don't initialize and/or maintain the variable any more.  It was made
6176         redundant by my commit of 2003-06-15.
6178         * lisp.h [USE_LSB_TAG && !DECL_ALIGN]: Signal an error.
6180 2004-01-21  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
6182         * lisp.h: Add undef DECL_ALIGN.
6184 2004-01-21  Stefan Monnier  <monnier@iro.umontreal.ca>
6186         * process.c (wait_reading_process_input) [SYNC_INPUT]:
6187         Check interrupt_input_pending explicitly.
6189         * lisp.h (QUIT) [SYNC_INPUT]: Check interrupt_input_pending as well.
6191         * keyboard.c (handle_async_input): New fun,
6192         extracted from input_available_signal.
6193         (input_available_signal, reinvoke_input_signal): Use it.
6195 2004-01-20  Stefan Monnier  <monnier@iro.umontreal.ca>
6197         * buffer.c (buffer_defaults, buffer_local_symbols): Use DECL_ALIGN.
6199         * lisp.h [USE_LSB_TAG]: Add definitions for Lisp_Object value
6200         manipulation macros for when tags are in the lower bits.
6201         (struct Lisp_Free) [USE_LSB_TAG]: Add padding.
6202         (DECL_ALIGN): New macro.
6203         (DEFUN): Use it.
6205         * lisp.h [ENABLE_CHECKING]: Don't force union type.
6207         * s/darwin.h (__attribute__): Remove outdated workaround.
6209         * macterm.c (main) [USE_LSB_TAG]: Don't range check the ram.
6211         * alloc.c (lisp_malloc, lisp_align_malloc) [USE_LSB_TAG]:
6212         Don't check range of malloc address.
6213         (pure_alloc) [USE_LSB_TAG]: Enforce alignment.
6215         * process.c (wait_reading_process_input): Lisp_Object/int mixup.
6217         * dired.c (Ffile_attributes): Lisp_Object/int mixup.
6219 2004-01-19  Kenichi Handa  <handa@m17n.org>
6221         * fontset.c (fontset_font_pattern): Fix previous change.
6223 2004-01-16  Miles Bader  <miles@gnu.ai.mit.edu>
6225         * xdisp.c (Voverflow_newline_into_fringe)
6226         (move_it_in_display_line_to, redisplay_internal)
6227         (update_window_fringes, redisplay_window, display_line, window):
6228         Add `#ifdef HAVE_WINDOW_SYSTEM' around fringe-drawing stuff, so
6229         that it compiles without a window-system.
6230         * dispnew.c (direct_output_for_insert, update_window): Likewise.
6232 2004-01-16  Kim F. Storm  <storm@cua.dk>
6234         * buffer.h (struct buffer): New member indicate_buffer_boundaries.
6236         * buffer.c (init_buffer_once): Set buffer_defaults and
6237         buffer_local_flags for indicate_buffer_boundaries.
6238         (syms_of_buffer): Defvar_per_buffer it, and defvar_lisp_nopro
6239         default- variable for it.
6241         * dispextern.h (struct glyph_row): New members left_fringe_bitmap,
6242         right_fringe_bitmap, redraw_fringe_bitmaps_p for new fringe handling.
6243         New members exact_window_width_line_p and cursor_in_fringe_p for
6244         overflowing newlines into right fringe.
6245         New members indicate_bob_p, indicate_top_line_p, indicate_eob_p,
6246         and indicate_bottom_line_p for buffer boundaries and scrolling.
6247         (enum fringe_bitmap_type): Add UP_ARROW_BITMAP, DOWN_ARROW_BITMAP,
6248         FIRST_LINE_BITMAP, LAST_LINE_BITMAP, FILLED_BOX_CURSOR_BITMAP,
6249         HOLLOW_BOX_CURSOR_BITMAP, BAR_CURSOR_BITMAP, HBAR_CURSOR_BITMAP,
6250         and HOLLOW_SQUARE_BITMAP.
6251         (draw_fringe_bitmap, draw_window_fringes, update_window_fringes):
6252         Add prototypes.
6254         * dispnew.c (row_equal_p, update_window_line): Compare fringe bitmaps
6255         instead of related indicator fields.
6256         Compare exact_window_width_line_p and cursor_in_mouse_face_p indicators.
6257         (direct_output_for_insert): Handle exact width lines like
6258         contined lines.  Call update_window_fringes.
6259         (update_window): Call update_window_fringes.
6260         (scrolling_window): Don't skip desired rows with changed bitmaps.
6261         Check if fringe bitmaps changes when assigning scrolled rows.
6263         * xdisp.c (Voverflow_newline_into_fringe): New variable.
6264         (IT_OVERFLOW_NEWLINE_INTO_FRINGE): New macro.
6265         (move_it_in_display_line_to): Overflow newline into fringe for
6266         rows that are exactly as wide as the window.
6267         (up_arrow_bits, down_arrow_bits, first_line_bits, last_line_bits)
6268         (filled_box_cursor_bits, hollow_box_cursor_bits, bar_cursor_bits)
6269         (hbar_cursor_bits, hollow_square_bits): New fringe bitmaps.
6270         (fringe_bitmaps): Add new bitmaps.
6271         (draw_fringe_bitmap): Make extern.  Remove WHICH arg.
6272         Select proper bitmap for cursor in fringe when appropriate.
6273         Handle alignment of bitmap to top or bottom of row.
6274         (draw_row_fringe_bitmaps): Don't select bitmaps here; that is now
6275         done by update_window_fringes.
6276         (update_window_fringes, draw_window_fringes): New functions.
6277         (redisplay_internal): Call update_window_fringes in case only
6278         cursor row is updated.
6279         (redisplay_window): Call update_window_fringes.
6280         Explicitly call draw_window_fringes if redisplay was done using
6281         the current matrix or the overlay arrow is in the window.
6282         (try_window_reusing_current_matrix): Mark scrolled rows for
6283         fringe update (to update buffer-boundaries / scrolling icons).
6284         (find_last_unchanged_at_beg_row): Handle exact width lines line
6285         continued lines.
6286         (display_line): Overflow newline into fringe for rows that are
6287         exactly as wide as the window.  Don't append space for newline
6288         in this case.
6289         (notice_overwritten_cursor): Explicitly clear cursor bitmap
6290         in fringe as if it had been overwritten.
6291         (erase_phys_cursor): Erase cursor bitmap in fringe.
6292         (syms_of_xdisp): Mark show-trailing-whitespace and
6293         void-text-area-pointer as user options.
6294         DEFVAR_LISP Voverflow_newline_into_fringe.  Enable by default.
6296         * xterm.c (x_update_window_end): Call draw_window_fringes.
6297         (x_after_update_window_line): Just set redraw_fringe_bitmaps_p
6298         in row instead of actually drawing fringe bitmaps.
6299         (x_draw_fringe_bitmap): Handle bottom aligned bitmaps.
6300         (x_draw_window_cursor): Draw cursor in fringe.
6302         * w32term.c (x_update_window_end): Call draw_window_fringes.
6303         (x_after_update_window_line): Just set redraw_fringe_bitmaps_p
6304         in row instead of actually drawing fringe bitmaps.
6305         (w32_draw_fringe_bitmap): Handle bottom aligned bitmaps.
6306         (w32_draw_window_cursor): Draw cursor in fringe.
6308         * macterm.c (x_update_window_end): Call draw_window_fringes.
6309         (x_after_update_window_line): Just set redraw_fringe_bitmaps_p
6310         in row instead of actually drawing fringe bitmaps.
6311         (x_draw_fringe_bitmap): Handle bottom aligned bitmaps.
6312         (mac_draw_window_cursor): Draw cursor in fringe.
6314 2004-01-16  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
6316         * xterm.c (handle_one_xevent): Don't handle characters that are part
6317         of an old style (XLookupString) compose sequence.
6319 2004-01-15  Kenichi Handa  <handa@m17n.org>
6321         * search.c (Freplace_match): Use make_multibyte_string or
6322         make_unibyte_string according to the buffer multibyteness.
6324 2004-01-14  Stefan Monnier  <monnier@iro.umontreal.ca>
6326         * alloc.c (struct interval_block, struct string_block)
6327         (struct symbol_block, struct marker_block, live_string_p)
6328         (live_cons_p, live_symbol_p, live_float_p, live_misc_p):
6329         Better preserve alignment for objects in blocks.
6330         (FLOAT_BLOCK_SIZE): Adjust for possible alignment padding.
6332         * lread.c (defvar_per_buffer): Remove dead declaration.
6334         * macterm.c (do_check_ram_size): Don't hardcode the lisp address
6335         space size.
6337 2004-01-12  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
6339         * xmenu.c (popup_get_selection): Check new parameter down_on_keypress
6340         if a key press should pop down.  Only pop down if a key is pressed
6341         outside the menu/dialog.
6342         (create_and_show_popup_menu): Pass 0 for down_on_keypress to
6343         popup_get_selection.
6344         (create_and_show_dialog): Pass 1 for down_on_keypress to
6345         popup_get_selection.
6347 2004-01-11  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
6349         * alloc.c (allocate_vectorlike): Surround calls to mallopt with
6350         BLOCK/UNBLOCK_INPUT.
6352 2004-01-08  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
6354         * xmenu.c (Fx_popup_dialog): Add an Ok button if no buttons are
6355         specified.
6357 2004-01-08  Kenichi Handa  <handa@m17n.org>
6359         * editfns.c (Fformat): Fix '&' to '&&'.
6361 2004-01-08  Andreas Schwab  <schwab@suse.de>
6363         * print.c (print_preprocess) <case Lisp_Vectorlike>: Only mask
6364         size if PSEUDOVECTOR_FLAG is set.
6366 2004-01-07  Kenichi Handa  <handa@m17n.org>
6368         * charset.c (Fdeclare_equiv_charset): Fix docstring.
6370         * fontset.c (fontset_ref_via_base): Fix previous change.
6372 2004-01-07  Kim F. Storm  <storm@cua.dk>
6374         * process.c (read_process_output): Only activate adaptive
6375         buffering if we read less than 256 bytes at a time.
6377 2004-01-06  Kim F. Storm  <storm@cua.dk>
6379         * dispnew.c (buffer_posn_from_coords): Return both buffer/string
6380         object and image object.  Return glyph width and height.
6381         (mode_line_string, marginal_area_string): Ditto.
6383         * dispextern.h (buffer_posn_from_coords, mode_line_string)
6384         (marginal_area_string): Fix prototypes.
6386         * keyboard.h (POSN_POSN, POSN_SET_POSN): Rename macros from
6387         POSN_BUFFER_POSN and POSN_SET_BUFFER_POSN.  All uses changed.
6388         (POSN_INBUFFER_P, POSN_BUFFER_POSN): New macros.
6390         * keyboard.c (make_lispy_position): Use modified mode_line_string,
6391         buffer_posn_from_coords, and marginal_area_string functions to
6392         include both string object and image object in the lispy position.
6393         Also add actual glyph width and height to position.
6394         (read_key_sequence): Use real buffer position from mouse
6395         event to find keymap property even when click is in marginal area.
6397         * xdisp.c (note_mode_line_or_margin_highlight): Use modified
6398         mode_line_string and marginal_area_string functions to handle
6399         both string object and image object properties.
6401 2004-01-06  Andreas Schwab  <schwab@suse.de>
6403         * syntax.c (skip_chars): Treat '-' at end of string as ordinary
6404         character.
6406 2004-01-02  Andreas Schwab  <schwab@suse.de>
6408         * macterm.c (emacs_options, x_initialized, same_x_server):
6409         Remove unused (and duplicated) definitions.
6411 2004-01-02  Kim F. Storm  <storm@cua.dk>
6413         * process.h (struct Lisp_Process): New members for adaptive read
6414         buffering: adaptive_read_buffering, read_output_delay, and
6415         read_output_skip.
6417         * process.c (ADAPTIVE_READ_BUFFERING): New conditional.
6418         (READ_OUTPUT_DELAY_INCREMENT, READ_OUTPUT_DELAY_MAX)
6419         (READ_OUTPUT_DELAY_MAX_MAX): New constants.
6420         (process_output_delay_count, process_output_skip): New vars.
6421         (Vprocess_adaptive_read_buffering): New variable.
6422         (make_process): Initialize adaptive read buffering members.
6423         (Fstart_process): Set adaptive_read_buffering member.
6424         (deactivate_process): Cleanup adaptive read buffering.
6425         (wait_reading_process_input): Temporarily omit delayed
6426         subprocesses from the set of file descriptors to read from;
6427         adjust the select timeout if we skipped any subprocesses.
6428         (read_process_output): Increase adaptive read buffering delay if
6429         we read less than a full buffer; reduce delay when we read a
6430         full buffer.
6431         (send_process): Simplify using local Lisp_Process var.
6432         Reset adaptive read buffering delay after write.
6433         (init_process): Initialize process_output_delay_count and
6434         process_output_skip.
6435         (syms_of_process): DEFVAR_LISP Vprocess_adaptive_read_buffering.
6437 2004-01-01  Jason Rumney  <jasonr@gnu.org>
6439         * w32term.c (w32_text_out): Use s->font, for consistency with callers.
6441 2003-12-30  Luc Teirlinck  <teirllm@auburn.edu>
6443         * print.c (Ferror_message_string): Add hyperlink in the docstring
6444         to the definition of `signal' in the Elisp manual.
6445         * eval.c (Fsignal): Ditto.
6447 2003-12-29  James Clark  <jjc@jclark.com>
6449         * fns.c (internal_equal): Return t for two NaN arguments.
6451 2003-12-29  Richard M. Stallman  <rms@gnu.org>
6453         * data.c (store_symval_forwarding): Handle setting
6454         default-fill-column, etc., by changing the value in
6455         buffers that use the default.
6457         * minibuf.c (Fset_minibuffer_window): Doc fix.
6459         * fileio.c (choose_write_coding_system): Ignore auto_saving
6460         if using the visited file for auto saves.
6461         (Fwrite_region): Don't update SAVE_MODIFF
6462         if auto-saving in visited file.
6464 2003-12-29  Kenichi Handa  <handa@m17n.org>
6466         * dispextern.h (face_font_available_p): Extern it.
6468         * fontset.c (Voverriding_fontspec_alist): New variable.
6469         (lookup_overriding_fontspec): New function.
6470         (fontset_ref_via_base): Call lookup_overriding_fontspec if necessary.
6471         (fontset_font_pattern): Likewise.
6472         (regulalize_fontname): New function.
6473         (Fset_fontset_font): Call regulalize_fontname.
6474         (Fset_overriding_fontspec_internal): New function.
6475         (syms_of_fontset): Initialize and staticpro Voverriding_fontspec_alist.
6476         Defsubr Sset_overriding_fontspec_internal.
6478         * xfaces.c (face_font_available_p): New function.
6480 2003-12-28  Richard M. Stallman  <rms@gnu.org>
6482         * buffer.c (Fother_buffer): Don't crash if BUF is nil
6483         or if its name is nil.
6485         * buffer.c (Fkill_buffer): Don't delete auto-save file
6486         if it's the same as the visited file.
6488 2003-12-28  Luc Teirlinck  <teirllm@auburn.edu>
6490         * coding.c (Fcheck_coding_system): Doc fix.
6492 2003-12-28  Kim F. Storm  <storm@cua.dk>
6494         * Makefile.in (eval.o): Depend on dispextern.h.
6496         * dispnew.c (buffer_posn_from_coords): Fix calculation of dy for
6497         image glyph using image's ascent.
6498         (mode_line_string): Return image glyph as object clicked on.
6499         Adjust y0 for image glyph using image's ascent.
6501         * dispextern.h (FACE_ID_BITS, MAX_FACE_ID): New defines.
6502         (struct glyph): New members, ascent and descent.  Used to save
6503         this glyph's ascent and descent, instead of having.
6504         (struct glyph): Declare member face_id using FACE_ID_BITS.
6505         (find_hot_spot): Add prototype.
6507         * keyboard.c (Qimage): Remove extern (now in lisp.h).
6508         (QCmap): Declare extern.
6509         (make_lispy_position): When position is inside image hot-spot,
6510         use hot-spot element's id as posn element.
6512         * lisp.h (IMAGEP): New macro to test for image object type.
6513         (Qimage): Declare extern.
6515         * macfns.c (Qimage): Remove extern (now in lisp.h).
6516         (valid_image_p, parse_image_spec): Use IMAGEP macro.
6518         * macterm.c (Qface, Qmouse_face): Remove unused externs.
6520         * w32fns.c (Qimage): Remove extern (now in lisp.h).
6521         (valid_image_p, parse_image_spec): Use IMAGEP macro.
6523         * w32menu.c (Qmouse_click, Qevent_kind): Remove unused externs.
6525         * w32term.c (Qface, Qmouse_face): Remove unused externs.
6527         * xdisp.c (Qarrow, Qhand, Qtext, Qpointer): New variables for
6528         pointer types.
6529         (Qrelative_width, Qalign_to): Remove unused variables.
6530         (Vvoid_text_area_pointer): Replace Vshow_text_cursor_in_void.
6531         (QCmap, QCpointer, Qrect, Qcircle, Qpoly): New variables for
6532         image maps.
6533         (x_y_to_hpos_vpos): Return glyph relative coordinates through
6534         new dx and dy args.
6535         Remove buffer_only_p arg (always 0).  Simplify code accordingly.
6536         (get_glyph_string_clip_rect): Draw cursor using glyph's rather
6537         than row's ascent and height, to get sensible height on tall rows.
6538         (build_desired_tool_bar_string): Remove Qimage extern.
6539         (get_tool_bar_item): Fix call to x_y_to_hpos_vpos.
6540         (produce_image_glyph): Adjust it.ascent to minimum row ascent if
6541         image glyph is alone on the last line.
6542         (append_glyph, append_composite_glyph, produce_image_glyph)
6543         (append_stretch_glyph): Set glyph's ascent and descent.
6544         (on_hot_spot_p): New function to check if position is inside an
6545         rectangular, circular, or polygon-shaped image hot-spot,
6546         (find_hot_spot): New function to search for image hot-spot.
6547         (Flookup_image_map): New defun to search for image hot-spot.
6548         (define_frame_cursor1): New aux function to determine frame pointer.
6549         (note_mode_line_or_margin_highlight, note_mouse_highlight):
6550         Handle `pointer' text property and :pointer image property to
6551         control frame pointer shape.  Detect image hot-spots for pointer
6552         and help_echo properties.  Use define_frame_cursor1.
6553         (note_mouse_highlight): Use Vvoid_text_area_pointer.
6554         (syms_of_xdisp): Defsubr new defun.  Intern and staticpro new variables.
6555         DEFVAR_LISP Vvoid_text_area_pointer instead of Vshow_text_cursor_in_void.
6557         * xfaces.c (cache_face): Abort if c->size exceeds MAX_FACE_ID.
6559         * xfns.c (x_set_mouse_color): Remove bogus x_check_errors call.
6560         (Qimage): Remove extern (now in lisp.h).
6561         (valid_image_p, parse_image_spec): Use IMAGEP macro.
6563         * xmenu.c (show_help_event): Remove unused code.
6565         * xterm.c (Qface, Qmouse_face): Remove unused externs.
6566         (x_draw_hollow_cursor): Draw cursor using glyph's rather than
6567         row's ascent and descent, to get a sensible height on tall rows.
6569 2003-12-25  Luc Teirlinck  <teirllm@auburn.edu>
6571         * minibuf.c (Fcompleting_read): Undo previous change.
6573 2003-12-25  Lars Hansen  <larsh@math.ku.dk>
6575         * dired.c (Fdirectory_files, Fdirectory_files_and_attributes):
6576         Arguments GCPRO'ed in call to file name handler.
6578 2003-12-25  Thien-Thi Nguyen  <ttn@gnu.org>
6580         * termcap.c (tgetst1): Scan for "%pN"; if all
6581         N are continuous in [1,9], remove all "%pN".
6583 2003-12-24  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
6585         * gtkutil.c (xg_frame_set_char_size): Call x_wm_set_size_hint.
6587         * xfaces.c (lface_fully_specified_p): Take into account that
6588         MAC OS always have unspecified stipple.
6590 2003-12-24  Thien-Thi Nguyen  <ttn@gnu.org>
6592         * tparam.c (tparam1): Add handling for `%pN', which
6593         means use param N for the next substitution.
6595 2003-12-24  Thien-Thi Nguyen  <ttn@gnu.org>
6597         * xfaces.c (Fcolor_gray_p): Fix omission bug:
6598         In case `frame' is nil, consult the selected frame.
6599         (Fcolor_supported_p): Likewise.
6601 2003-12-23  Luc Teirlinck  <teirllm@auburn.edu>
6603         * fns.c (Frandom, Fstring_make_multibyte, Fset_char_table_range):
6604         Doc fixes.
6606         * minibuf.c (read_minibuf): Allow INITIAL to be a cons of a string
6607         and an integer.  Adapt the introductory comment accordingly.
6608         (Fread_from_minibuffer): Delete code moved into read_minibuf.
6609         Doc fix.
6610         (Fread_minibuffer, Fread_no_blanks_input): Adapt to changes in
6611         read_minibuf.
6612         (Fcompleting_read): Delete code moved into read_minibuf.
6613         (Ftest_completion): Make it handle obarrays and hash tables correctly.
6615 2003-12-03  Kenichi Handa  <handa@m17n.org>
6617         * coding.c (decode_coding_iso2022): Fix for preserving UTF-8
6618         encoding sequence.
6620 2003-12-01  Kenichi Handa  <handa@m17n.org>
6622         * composite.c (syms_of_composite): Don't make the compostion hash
6623         table week.
6625 2003-11-30  Luc Teirlinck  <teirllm@auburn.edu>
6627         * intervals.h: Add EXFUN for Fget_char_property_and_overlay.
6628         * textprop.c (Fget_char_property_and_overlay): New function.
6629         (syms_of_textprop): Defsubr it.
6631 2003-11-29  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
6633         * dispnew.c (buffer_posn_from_coords): Add ifdef HAVE_WINDOW_SYSTEM
6634         to compile on terminal configuration.
6636         * fileio.c (Fread_file_name): Check use_file_dialog also before
6637         calling Fx_file_dialog.
6639         * fns.c: use_file_dialog: New variable.
6640         (syms_of_fns): DEFVAR_BOOL use-file-dialog.
6642 2003-11-29  Kim F. Storm  <storm@cua.dk>
6644         * msdos.c (Qcursor_type, Qbar, Qhbar): Declare extern.
6645         (syms_of_msdos): Don't intern and staticpro them.
6647 2003-11-27  Kim F. Storm  <storm@cua.dk>
6649         * dispnew.c (buffer_posn_from_coords): Calculate and return pixel
6650         coordinates relative to glyph at posn.  If glyph is an image,
6651         return that as object at posn.  Callers changed.
6652         (mode_line_string, marginal_area_string): Calculate and return
6653         pixel coordinates relative to glyph.  Callers changed.
6655         * dispextern.h (buffer_posn_from_coords, mode_line_string)
6656         (marginal_area_string): Fix prototypes.
6657         (window_box_left_offset, window_box_right_offset): Add prototypes.
6659         * frame.h (get_specified_cursor_type, get_window_cursor_type):
6660         Remove prototypes.
6662         * keyboard.h (EVENT_CLICK_COUNT, POSN_SCROLLBAR_PART): Fix defines.
6664         * keyboard.c (make_lispy_position): Add x and y coordinates
6665         relative to the current glyph as 7th element of position.
6666         If glyph is an image, return it in the object element.
6667         (read_key_sequence): Skip checks for keymap property in cases
6668         where POSN_STRING is not a string (e.g. an image).
6670         * xdisp.c (Vdisplay_pixels_per_inch): New variable.
6671         (Vshow_text_cursor_in_void): New variable.
6672         (glyph_to_pixel_coords): Don't use negative hpos.
6673         (x_y_to_hpos_vpos): Fix for partially visible first glyph.
6674         (append_stretch_glyph): Change ascent arg to be actual value
6675         in pixels rather than ratio to height.  Callers changed.
6676         (calc_pixel_width_or_height): New aux function, implementing
6677         pixel based artihmetic for glyph widths and heights.
6678         (produce_stretch_glyph): Use calc_pixel_width_or_height for
6679         :width, :height, :align-to, and :ascent, thus allowing these to
6680         be specified in pixels as well as multiples of characters.
6681         Don't produce stretch glyphs with zero width or height.
6682         (get_specified_cursor_type): Declare static.
6683         (get_window_cursor_type): Declare static.  Add glyph arg to be
6684         able to know when cursor is on an image; always substitute
6685         hollow-box cursor for filled-box cursor on images, to avoid
6686         negative images and flicker when blinking the cursor.
6687         (display_and_set_cursor): Pass glyph to get_window_cursor_type.
6688         (note_mode_line_or_margin_highlight): Use non-text cursor rather
6689         than vertical scroll-bar cursor in display margins.
6690         (note_mouse_highlight): Use non-text cursor rather than text
6691         cursor in fringes and over images in the text area.
6692         Use non-text cursor when mouse pointer is outside editable text,
6693         i.e. in the void after end-of-line or end-of-buffer; this was
6694         already done for W32, but is now standard for all systems --
6695         user can toggle show-text-cursor-in-void to get old behaviour.
6696         (syms_of_xdisp): DEFVAR_LISP Vshow_text_cursor_in_void and
6697         Vdisplay_pixels_per_inch.
6699 2003-11-25  Andreas Schwab  <schwab@suse.de>
6701         * fns.c (internal_equal) <case Lisp_Vectorlike>: Declare size as
6702         EMACS_INT to not lose bits.
6703         (Ffillarray): Don't set bits beyond the size of a bool vector.
6705 2003-11-25  Kim F. Storm  <storm@cua.dk>
6707         * print.c (Fredirect_debugging_output) [!GNU_LINUX]: Do not
6708         define this defun on systems that cannot use stderr as lvalue.
6710 2003-11-24  Gerd Moellmann  <gerd@gnu.org>
6712         * s/freebsd.h (LD_SWITCH_SYSTEM_TEMACS)
6713         [__FreeBSD_version >= 500042]: Define as -znocombreloc because
6714         ld's default is incompatible with unexec.
6716 2003-11-23  Kim F. Storm  <storm@cua.dk>
6718         * window.c (enum window_loop): Add REDISPLAY_BUFFER_WINDOWS.
6719         (window_loop): Handle REDISPLAY_BUFFER_WINDOWS.
6720         (Fforce_window_update): New defun.
6721         (syms_of_window): Defsubr it.
6722         (Fset_window_margins, Fset_window_fringes): Doc fix.
6724         * print.c (Fredirect_debugging_output): New defun.
6725         (syms_of_print): Defsubr it.
6727 2003-11-22  Luc Teirlinck  <teirllm@auburn.edu>
6729         * fns.c (Fset_char_table_parent): Doc fix.
6731 2003-11-22  Kim F. Storm  <storm@cua.dk>
6733         * dispnew.c (buffer_posn_from_coords): Return actual row/column
6734         for glyph clicked on, rather than (unused) pixel positions.
6735         (mode_line_string, marginal_area_string): Change X and Y args to
6736         pointers for returning actual row/column for glyph clicked on.
6737         Simplify and optimize loops.
6739         * dispextern.h (mode_line_string, marginal_area_string):
6740         Update prototypes.
6742         * keyboard.c (make_lispy_position): New function for generating
6743         mouse click positions from frame and pixel coordinates.
6744         Enhanced to return buffer position and actual row/column for
6745         events outside the text area using updated mode_line_string and
6746         marginal_area_string functions.
6747         Return left-fringe and right-fringe clicks as such, rather than
6748         clicks in text area.
6749         (make_lispy_event) [USE_X_TOOLKIT, USE_GTK]: Don't call
6750         pixel_to_glyph_coords, as we never use the results.
6751         (make_lispy_event): Use make_lispy_position for MOUSE_CLICK_EVENT,
6752         WHEEL_EVENT, and DRAG_N_DROP_EVENT to replace redundant code.
6753         Eliminate unused code in WHEEL_EVENT handling.
6754         (make_lispy_movement): Use make_lispy_position.
6756         * window.c (coordinates_in_window): Remove redundant tests.
6757         Fix returned X pixel value for left-margin.
6759         * xdisp.c (note_mode_line_or_margin_highlight): Adapt to new
6760         mode_line_string and marginal_area_string parameters.
6762 2003-11-22  Lars Hansen  <larsh@math.ku.dk>
6764         * w32.c (struct the_group, getgrgid): Add.
6765         * mac.c (struct my_group, getgrgid): Add.
6767 2003-11-21  Luc Teirlinck  <teirllm@auburn.edu>
6769         * fns.c (Fassq, Fassoc, Frassq, Frassoc): Doc fixes.
6771 2003-11-21  Lars Hansen  <larsh@math.ku.dk>
6773         * dired.c (Ffile_attributes): Add parameter ID-FORMAT and
6774         include in call to file name handler.  Optionally translate numeric
6775         UID and GID to strings.  Update docstring.
6776         (directory_files_internal): Add parameter ID-FORMAT.
6777         (Fdirectory_files_and_attributes): Add parameter ID-FORMAT and
6778         include in call to file name handler and call to
6779         directory_files_internal.  Update Docstring.
6780         (Fdirectory_files): Add dummy parameter in call to
6781         directory_files_internal.
6782         * lisp.h (Qinteger): Add.
6783         (Qinteger_or_floatp, Qinteger_or_float_or_marker_p): Remove.
6784         (Ffile_attributes): Add parameter.
6785         * data.c (Qinteger): Export.
6787 2003-11-21  Luc Teirlinck  <teirllm@auburn.edu>
6789         * fns.c (Freverse, Fnreverse): Doc fixes.
6791 2003-11-19  Kim F. Storm  <storm@cua.dk>
6793         * xdisp.c (init_iterator): Initialize it->start to position
6794         before reseating (in case start position is invisible).
6795         (init_to_row_start): Set it->start to row-start.
6796         (redisplay_window): Accept optional_new_start if start position
6797         is invisible (in which case IT_CHARPOS overshoots PT).
6798         (display_line): Setup row->start from it->start (rather than
6799         it->current which is wrong if first char on line is invisible).
6800         When done, reseat it->start to it->current (= start of next row).
6801         (expose_area): Fix exposure of text area when first char (e.g. TAB)
6802         is only partially visible.
6804         * dispextern.h (struct it): New member start.
6806 2003-11-17  Stefan Monnier  <monnier@iro.umontreal.ca>
6808         * alloc.c (make_float, Fcons): Clear the markbit at init time.
6809         (make_float, Fcons, Fmake_symbol, allocate_misc): Move the increment
6810         of block_index outside of the macro call.
6811         (Fgarbage_collect): Remove null code.
6813         * m/amdx86-64.h: Don't redefine XPNTR.
6815         * keyboard.c (parse_modifiers, apply_modifiers): Use INTMASK instead
6816         of VALMASK.
6818         * fns.c (hashfn_eq, hashfn_eql, hashfn_equal, hash_put)
6819         (sxhash_string, sxhash): Use INTMASK instead of VALMASK.
6820         (maybe_resize_hash_table): Use MOST_POSITIVE_FIXNUM.
6822         * lisp.h (VALMASK): Only define for non-union type.
6823         (MARKBIT): Remove.
6824         (ARRAY_MARK_FLAG): Use previous value of MARKBIT.
6825         (XTYPE): Define unconditionally.
6826         (XSETTYPE): Remove one more remnant.
6827         (EQ): Define differently for the union and non-union cases.
6828         (INTMASK): New bit mask.
6829         (struct Lisp_Marker): Move down to prepare for upcoming patch.
6830         (GC_EQ): Delegate to EQ.
6832         * coding.c (coding_restore_composition): Lisp_Object/int mixup.
6834 2003-11-17  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
6836         * xterm.c (x_window_to_scroll_bar): Move check of display to
6837         where window_id is compared.
6839 2003-11-17  Kim F. Storm  <storm@cua.dk>
6841         * dispextern.h (struct it): New member first_vpos.
6843         * xdisp.c (start_display): Set it->first_vpos.
6844         (try_window_id): Use first_vpos to start display in first _text_
6845         line if no reusable lines at start of window with header line.
6847 2003-11-16  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
6849         * w32fns.c (XPutPixel):
6850         * w32bdf.c (w32_init_bdf_font):
6851         * sunfns.c (sel_read):
6852         * process.c (Fmake_network_process):
6853         * frame.c (store_frame_param):
6854         * fontset.c (Fset_fontset_font):
6855         * emacs.c (shut_down_emacs):
6856         * ccl.c (ccl_driver): Remove period at end of error message.
6858         * config.in: Regenerate.
6860         * xfns.c (x_window_to_frame, x_any_window_to_frame)
6861         (x_non_menubar_window_to_frame, x_menubar_window_to_frame)
6862         (x_top_window_to_frame): Add Display* argument to xg_win_to_widget.
6863         (x_create_bitmap_mask, xg_set_icon, create_frame_xic)
6864         (xic_set_statusarea, x_window, gif_load): Formatting adjustments.
6866         * xterm.h (struct x_display_info): New field xg_cursor for GTK.
6868         * xterm.c: Add Display * to x_window_to_scroll_bar declaration.
6869         (XTmouse_position, handle_one_xevent): Pass Display* to
6870         x_window_to_scroll_bar.
6871         (x_window_to_scroll_bar): Take a Display* argument.
6872         Check that display for frame is equal to Display* argument.
6873         (event_handler_gdk): Remove current_dpyinfo.  Get dpyinfo from
6874         x_display_info_for_display instead.  Use Display in xev instead
6875         of GDK_DISPLAY.
6876         (x_dispatch_event): Call x_display_info_for_display.
6877         (XTread_socket): Move GTK part out of loop.  current_dpyinfo removed.
6878         (x_connection_closed): Call xg_display_close for GTK.
6879         (x_term_init): Call xg_display_open for additional displays.
6880         Initiate dpyinfo->xg_cursor with call to xg_create_default_cursor
6881         for GTK.
6883         * xmenu.c (single_menu_item, mouse_position_for_popup)
6884         (x_activate_menubar): Formatting adjustments.
6886         * xdisp.c (update_tool_bar, redisplay_tool_bar): Formatting
6887         adjustments.
6889         * gtkutil.c (xg_get_gdk_display, xg_set_screen, xg_display_open)
6890         (xg_display_close, xg_create_default_cursor)
6891         (xg_get_gdk_pixmap_and_mask): New functions for multiple display
6892         handling.
6893         (xg_left_ptr_cursor): Remove.
6894         (xg_set_cursor): Change cursor to GdkCursor*.  Do not create
6895         cursor here.
6896         (xg_win_to_widget): Take Display* argument, call
6897         gdk_xid_table_lookup_for_display.
6898         (xg_create_frame_widgets, xg_get_file_name, create_menus)
6899         (xg_create_widget, xg_modify_menubar_widgets): Call xg_set_screen.
6900         (xg_create_widget, xg_create_scroll_bar): Use xg_cursor
6901         in FRAME_X_DISPLAY_INFO.
6902         (xg_get_scroll_id_for_window): Take Display* argument.
6903         (update_frame_tool_bar): Call xg_get_gdk_pixmap_and_mask.
6904         (xg_initialize): Remove xg_left_ptr_cursor.
6906         * gtkutil.h (xg_get_scroll_id_for_window, xg_win_to_widget): Add
6907         Display* argument.
6908         (xg_display_open, xg_display_close, xg_create_default_cursor): Declare.
6910 2003-11-14  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
6912         * xterm.c (x_detect_focus_change): Do not change focus frame for
6913         Enter/LeaveNotify if the current focus frame has explicit focus.
6915 2003-11-14  Kim F. Storm  <storm@cua.dk>
6917         * dispnew.c (update_text_area): Fix redisplay error when hscroll
6918         is active and first glyph is only partially visible.
6920 2003-11-13  Kenichi Handa  <handa@m17n.org>
6922         * xdisp.c (select_frame_for_redisplay): New function.
6923         (redisplay_internal): Record also selected_frame for
6924         unwind_redisplay.  Call select_frame_for_redisplay before
6925         redrawing each frame.
6926         (unwind_redisplay): Argument changed to a cons.
6928 2003-11-12  Luc Teirlinck  <teirllm@auburn.edu>
6930         * fns.c (Fstring_to_multibyte): Doc fix.
6932 2003-11-11  Kenichi Handa  <handa@m17n.org>
6934         * xterm.c (x_list_fonts): Fix excluding of auto-scaled fonts.
6936 2003-11-09  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
6938         * xfns.c (x_window): Set XtNx and XtNy in shell widget for
6939         program specified positions.
6941 2003-11-08  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
6943         * xterm.c (XAW_ARROW_SCROLLBARS): Define it for Xaw 1.5E.
6945 2003-11-08  Kenichi Handa  <handa@m17n.org>
6947         * Makefile.in (lisp): Add kannada.el.
6948         (shortlisp): Likewise.
6950 2003-11-07  Kenichi Handa  <handa@m17n.org>
6952         * coding.c (coding_allocate_composition_data):
6953         Reset coding->composing to COMPOSITION_NO.
6954         (coding_restore_composition): Detect invalid composition data.
6955         Give Fstring and Fvector a Lispy integer, not C int.
6957 2003-11-05  Stefan Monnier  <monnier@iro.umontreal.ca>
6959         * floatfns.c (Flogb): Don't use VALMASK.
6961         * m/amdx86-64.h (VALBITS, XINT, XUINT): Remove.
6962         * m/ia64.h (VALBITS, XINT, XUINT): Remove.
6964         * lisp.h (XINT): Move the cast to clarify what is going on.
6965         (GCTYPEMASK, XSETTYPE): Remove.
6966         (XGCTYPE): Make it an alias of XTYPE.
6968 2003-11-03  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
6970         * xterm.c (x_term_init): Fix formatting.
6972 2003-11-02  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
6974         * gtkutil.h (xg_have_tear_offs): Declare.
6975         (xg_keep_popup, xg_did_tearoff): Remove.
6977         * gtkutil.c: Remove variable xg_did_tearoff.
6978         (xg_have_tear_offs): New function.
6979         (tearoff_remove): Just decrease xg_detached_menus.
6980         (tearoff_activate): Increase xg_detached_menus and call
6981         tearoff_remove when tearoff is removed.
6982         (xg_keep_popup): Remove function.
6983         (create_menus): Give add_tearoff_p as argument to recursive
6984         call to create_menus.
6985         (xg_create_widget): Use variables instead of multiple
6986         strcmp.  Tell create_menus to create tear off only for
6987         menu bar menus.
6988         (xg_update_menubar): Change title for a detached menu also.
6989         (xg_modify_menubar_widgets): Always call xg_update_menubar, regardless
6990         of deep_p.
6991         (xg_initialize): Initialize xg_detached_menus, remove
6992         initialization of xg_did_tearoff.
6994         * xmenu.c (set_frame_menubar): For GTK, set deep_p if
6995         xg_have_tear_offs returns non-zero.
6996         (create_and_show_popup_menu): Remove setting of xg_did_tearoff and
6997         call to xg_keep_popup.
6999 2003-11-01  Andrew Choi  <akochoi@shaw.ca>
7001         * macterm.c (XTread_socket): Handle menubar selection and grow
7002         window only for mouseDown events.
7004 2003-10-31  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
7006         * xterm.c (x_term_init): For GTK part, increase x_initialized
7007         to check for more than one display.  Use error instead of return 0.
7009 2003-10-31  Andrew Choi  <akochoi@shaw.ca>
7011         * unexmacosx.c (unrelocate): New function (contributed by Nozomu Ando).
7012         (copy_dysymtab): Call it.
7014 2003-10-31  Luc Teirlinck  <teirllm@auburn.edu>
7016         * eval.c (Fdefvaralias): Doc fix.
7018 2003-10-26  Luc Teirlinck  <teirllm@auburn.edu>
7020         * data.c (Fsetplist): Doc fix.
7022 2003-10-14  Lute Kamstra  <lute@gnu.org>
7024         * window.c (Fset_window_fringes): Clarify docstring.
7026 2003-10-14  Kim F. Storm  <storm@cua.dk>
7028         * window.c (Fset_window_margins): Simplify arg checking.
7030 2003-10-13  Richard M. Stallman  <rms@gnu.org>
7032         * regex.c (MAX_BUF_SIZE): Reduce to 2**15.
7033         (print_partial_compiled_pattern): Replace assert with a printout.
7034         (skip_noops, mutually_exclusive_p): Change args, values to re_char *.
7036         * alloc.c (lisp_align_malloc): If BASE is 0, call memory_full.
7038         * window.c (Fset_window_margins): Allow only integers as args.
7039         (syms_of_window) <special-display-buffer-names, special-display-regexps>:
7040         Doc fixes.
7042 2003-10-13  Lute Kamstra  <lute@gnu.org>
7044         * window.c (Fset_window_fringes): Elaborate docstring.
7046 2003-10-12  Andrew Choi  <akochoi@shaw.ca>
7048         * macterm.c (XTread_socket): Call DragWindow only for mouseDown events.
7050         * s/darwin.h (GC_MARK_STACK): Define.
7052 2003-10-12  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
7054         * window.c (shrink_windows): New function.
7055         (size_window): Call shrink_windows to calculate window sizes when
7056         shrinking frame with more than one window.
7058 2003-10-12  Kim F. Storm  <storm@cua.dk>
7060         * xdisp.c (compute_fringe_widths): Doc fix.
7062 2003-10-08  Kenichi Handa  <handa@m17n.org>
7064         * coding.c (Fcoding_system_p): Return t for auto-loading coding system.
7066 2003-10-07  Kenichi Handa  <handa@m17n.org>
7068         * coding.c (Qcoding_system_define_form): New variable.
7069         (syms_of_coding): Intern and staticpro it.
7070         (Fcheck_coding_system): Try to autoload the definition of
7071         CODING-SYSTEM.
7073 2003-10-05  Luc Teirlinck  <teirllm@auburn.edu>
7075         * fns.c (Frequire): Doc fix.
7077 2003-10-05  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
7079         * xfns.c (Fx_send_client_event): New function as a base for
7080         manipulating extended window manager hints.
7081         (Fx_send_client_event): Remove unused variable s.
7083         * w32term.c (w32_read_socket): Remove call to x_check_fullscreen_move,
7084         that function is removed.
7086         * xterm.c (x_set_offset): Use move_offset_left/top instead of
7087         x/y_pixels_outer_diff.
7088         (x_check_expected_move): Calculate move_offset_left/top.
7090         * xterm.h (struct x_output): New members: move_offset_top/left.
7092         * frame.c (x_set_frame_parameters): Remove x_fullscreen_move,
7093         call x_set_offset directly.
7095         * frame.h (enum): FULLSCREEN_MOVE_WAIT removed.
7097         * frame.c (Fdelete_frame): Free decode_mode_spec_buffer.
7099         * xterm.c (x_delete_display): Free font names and font_encoder
7100         in dpyinfo->font_table.
7102         * xfns.c (Fx_close_connection): Only call XFreeFont here.
7103         Move xfree of font names to x_delete_display.
7105         * xterm.h (struct x_display_info): New member, wm_type.
7106         (struct x_output): New members, expected_top/left and
7107         check_expected_move.
7109         * xterm.c (handle_one_xevent): Reset wm_type when ReparentNotify
7110         is received.
7111         (handle_one_xevent): Rename x_check_expected_move from
7112         x_check_fullscreen_move.
7113         (x_set_offset): Only add WM decoration sizes to modified_top/left
7114         for X_WMTYPE_A.  Set check_expected_move when WM type is unknown.
7115         (x_check_expected_move): Rename from x_check_fullscreen_move.
7116         Removed fullscreen specific code.  Use check_expected_move,
7117         expected_left/top instead.  Also, set wm_type.
7118         (x_term_init): Initialize wm_type to unknown.
7120         * frame.c (x_fullscreen_move): Remove addition of WM decoration
7121         sizes to move_x/y.
7123 2003-10-03  Kenichi Handa  <handa@m17n.org>
7125         * macterm.c (x_load_font): Clear all members of FONTP before start
7126         filling them.
7128 2003-10-02  Kenichi Handa  <handa@m17n.org>
7130         * fontset.c (fs_load_font): Don't set fontp->font_encoder to NULL
7131         before calling find_ccl_program_func.  Call find_ccl_program_func
7132         only when fontp->font_encoder is not NULL.
7134         * xterm.c (x_load_font): Clear all members of FONTP before start
7135         filling them.
7137 2003-10-03  John Paul Wallington  <jpw@gnu.org>
7139         * keymap.c (map_keymap): Don't abort when binding is a vector.
7141 2003-10-02  Jason Rumney  <jasonr@gnu.org>
7143         * makefile.w32-in (emacs.o, coding.o, bytecode.o):
7144         Sync dependencies with Makefile.in.
7145         (alloca.o): Remove.
7147         * w32fns.c (w32_load_system_font): Clear all members of FONTP before
7148         filling them.
7150         * w32bdf.c (w32_load_bdf_font): Likewise.
7152 2003-09-30  Richard M. Stallman  <rms@gnu.org>
7154         * term.c (set_tty_color_mode): Calculate current_mode_spec
7155         regardless of value of VAL.
7157         * intervals.c (graft_intervals_into_buffer):
7158         Set BUF_INTERVALS (buffer)->up_obj when appropriate.
7159         Handle over_used when splitting UNDER.
7161 2003-09-30  YAMAMOTO  Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
7163         * regex.c (regex_compile): Free the stack when returning from function.
7165 2003-09-28  Kenichi Handa  <handa@m17n.org>
7167         * fontset.c (Finternal_char_font): Change return value to
7168         cons (FONT-NAME . GLYPH-CODE).
7170 2003-09-28  Eli Zaretskii  <eliz@gnu.org>
7172         * term.c (tty_setup_colors): Treat any negative argument as -1.
7174 2003-09-27  Gaute B Strokkenes  <biggaute@uwc.net>  (tiny change)
7176         * process.c (send_process): Delete unused temp_buf.
7178 2003-09-26  Dave Love  <fx@gnu.org>
7180         * xterm.c (x_bitmap_mask): Declare.
7182 2003-09-25  Dave Love  <fx@gnu.org>
7184         * Makefile.in (fns.o): Depend on md5.h.
7186 2003-09-25  Kim F. Storm  <storm@cua.dk>
7188         * window.c (set_window_buffer): Fix redisplay problems when
7189         switching between buffers with different display margin widths.
7191 2003-09-23  Kim F. Storm  <storm@cua.dk>
7193         * process.c (set_socket_option): Fix :bindtodevice option.
7194         (Fset_network_process_option): Update process contact list when
7195         setting option succeeds.
7196         (Fmake_network_process): Doc fix.
7198 2003-09-23  Dave Love  <fx@gnu.org>
7200         * process.c (Fnetwork_interface_info): Use HAVE_STRUCT_IFREQ... macros.
7202 2003-09-22  Eli Zaretskii  <eliz@gnu.org>
7204         * term.c (set_tty_color_mode): Use INTEGERP to test whether a
7205         color mode is an integer number (it could be -1).
7207 2003-09-22  Richard M. Stallman  <rms@gnu.org>
7209         * intervals.c (graft_intervals_into_buffer): Correct the main loop
7210         in the case where OVER is longer than UNDER.
7212 2003-09-22  Masatake YAMATO  <jet@gyve.org>
7214         * window.c (Fset_window_scroll_bars): Validate the value of
7215         `vertical_type'.
7217 2003-09-21  Kim F. Storm  <storm@cua.dk>
7219         * frame.c (Vdefault_frame_scroll_bars): New variable.
7220         (x_set_vertical_scroll_bars): Use it instead of hardcoded values.
7221         (syms_of_frame): DEFVAR_LISP it, and initialize according to
7222         window-system default scroll bar position.
7224         * window.c (Fwindow_scroll_bars): Doc fix.
7226 2003-09-19  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
7228         * xterm.c (x_set_offset): Take window manager decorations into account.
7230 2003-09-19  Richard M. Stallman  <rms@gnu.org>
7232         * atimer.h: Don't include lisp.h.
7233         (P_): Define it here (as well as elsewhere).
7235         * print.c (Fprin1_to_string): Move the PRINTPREPARE
7236         later, so that PRINTFINISH won't unbind Qinhibit_modification_hooks.
7238         * data.c (Fvariable_binding_locus): New function.
7239         (syms_of_data): defsubr it.
7240         (Flocal_variable_p): Delete duplicate call to indirect_variable.
7242 2003-09-18  Dave Love  <fx@gnu.org>
7244         * alloc.c (GC_MALLOC_CHECK): Move conditional undef after lisp.h.
7246         * process.c (Fnetwork_interface_info): Fix type error.
7247         (Fnetwork_interface_list): Doc fix.
7248         (read_process_output, read_process_output): Delete unused var.
7250 2003-09-17  Kim F. Storm  <storm@cua.dk>
7252         * process.c (Fnetwork_interface_list, Fnetwork_interface_info):
7253         Require HAVE_NET_IF_H and HAVE_SYS_IOCTL_H to include these fns.
7254         (Fnetwork_interface_info): Check that ifreq struct has required
7255         fields before accessing them; this requires that those fields are
7256         defined as macros, which may be too restrictive on some platforms,
7257         but it is better than failing on other platforms.
7258         (syms_of_process): Only defsubr above fns when included.
7260 2003-09-17  Dave Love  <fx@gnu.org>
7262         * unexalpha.c: Don't include varargs.h.
7264 2003-09-17  Kim F. Storm  <storm@cua.dk>
7266         * process.c (Fset_process_sentinel): Add sentinel to childp plist
7267         for network process.
7268         (socket_options): Add `:' prefix to option names.  Add optbit field.
7269         (set_socket_option): Remove no_error arg and special handling of s < 0.
7270         Return 1<<optbit for known option, 0 for unknown.
7271         Do not interpret 0 as false for boolean option (only nil).
7272         Pass failed option and value to report_file_error.
7273         (Fset_network_process_options): Replace by Fset_network_process_option.
7274         (Fset_network_process_option): New function to set just one option.
7275         (Fmake_network_process): Allow :coding arg to be a cons.
7276         Allow :server arg to be an integer specifying backlog size.
7277         Remove :options arg, and allow options to be specified directly
7278         as :KEY, VALUE pairs.  Parse these options before binding socket.
7279         As before, :reuseaddr t is default for a server process, but this
7280         can now be disabled by specifying :reuseaddr nil.
7281         (Fnetwork_interface_info): Rename from Fget_network_interface_info.
7282         (init_process): Availability of network options is now checked with
7283         simpler syntax (featurep 'make-network-process :OPTION); use loop to
7284         setup features.
7285         (syms_of_process): Fix defsubr's for the replaced functions.
7287 2003-09-16  Dave Love  <fx@gnu.org>
7289         * Makefile.in: Depend on coding.h.
7291 2003-09-14  Kim F. Storm  <storm@cua.dk>
7293         * process.c [HAVE_SOCKETS]: Include sys/ioctl.h and net/if.h.
7294         (Fnetwork_interface_list, Fget_network_interface_info): New defuns.
7295         (syms_of_process): Defsubr them.
7297         * config.in: Regenerate.
7299 2003-09-12  Stefan Monnier  <monnier@iro.umontreal.ca>
7301         * m/sr2k.h (XMARKBIT, XUNMARK): Remove.
7302         * m/news-r6.h (XUNMARK): Remove.
7303         * m/mips.h (XUNMARK): Remove.
7304         * m/mips-siemens.h (XUNMARK): Remove.
7305         * m/iris4d.h (XUNMARK): Remove.
7306         * m/hp800.h (XMARKBIT, XUNMARK): Remove.
7308 2003-09-11  Stefan Monnier  <monnier@iro.umontreal.ca>
7310         * lisp.h (VALBITS): Don't remove 1 for the markbit.
7311         (union Lisp_Object): Use unsigned int for types.  Remove markbit.
7312         (MARKBIT): Remove 1 from VALBITS so we still use same old val.
7313         (XTYPE): Use unsigned right-shift.
7314         (XMARKBIT, XMARK, XUNMARK): Remove.
7316         * alloc.c (init_intervals, init_symbol, init_marker):
7317         Don't preallocate anything.
7318         (Fgarbage_collect, mark_object): Ignore the markbit.
7320         * bytecode.c (mark_byte_stack, unmark_byte_stack): Ignore the markbit.
7322 2003-09-08  Lute Kamstra  <lute@gnu.org>
7324         * xdisp.c (pint2hrstr): New function.
7325         (decode_mode_spec): Add `%i' and `%I' specs.
7326         * buffer.c (syms_of_buffer): Document `%i' and `%I' constructs
7327         for `mode-line-format'.
7329 2003-09-07  Andreas Schwab  <schwab@suse.de>
7331         * alloc.c: Use long instead of int when casting ABLOCKS_BUSY to
7332         avoid warning.
7334 2003-09-07  Eli Zaretskii  <eliz@gnu.org>
7336         * editfns.c (region_limit): Support any non-zero value of BEGINNINGP.
7338 2003-09-03  Kim F. Storm  <storm@cua.dk>
7340         * xdisp.c (get_window_cursor_type): Partially undo 2002-03-01
7341         change (superseded by 2002-08-30 change); the default blink-off
7342         cursor is now again "no cursor".
7344 2003-09-01  Jason Rumney  <jasonr@gnu.org>
7346         * makefile.w32-in (alloca.o): Remove.
7347         (coding.o): Depend on intervals.h
7348         (emacs.o, bytecode.o): Depend on window.h
7350 2003-09-01  Dave Love  <fx@gnu.org>
7352         * Makefile.in (alloca.o): Remove commands.
7353         (coding.o): Depend on intervals.h composite.h window.h.
7354         (emacs.o): Depend on window.h keyboard.h keymap.h.
7355         (gtkutil.o): Depend on keyboard.h charset.h coding.h.
7356         (bytecode.o): Depend on window.h.
7358 2003-08-31  Jason Rumney  <jasonr@gnu.org>
7360         * w32term.c (w32_per_char_metric): Allow cached metrics to be
7361         returned even when font_type is unknown.
7363         * xdisp.c (init_iterator): Remove old WINDOWSNT conditional.
7365 2003-08-30  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
7367         * xterm.c (x_term_init): Initialize new fields in x_display_info.
7369         * xterm.h (struct x_display_info): Add red/green/blue_bits and
7370         *_offset.
7372         * xfns.c (lookup_rgb_color): Use new fields in x_display_info to
7373         calculate pixel value.
7375 2003-08-29  Gerd Moellmann  <gerd.moellmann@t-online.de>
7377         * xdisp.c (redisplay_internal): Fix change of 2003-04-30.
7378         Don't tell redisplay display is accurate when it's actually been
7379         paused for pending input.
7381 2003-08-29  Richard M. Stallman  <rms@gnu.org>
7383         * dispnew.c (adjust_glyph_matrix): Call window_box
7384         whenever W is nonzero.
7386         * data.c (Fmake_variable_buffer_local, Fmake_local_variable)
7387         (Fkill_local_variable, Fmake_variable_frame_local)
7388         (Flocal_variable_p, Flocal_variable_if_set_p):
7389         Use indirect_variable to trace thru variable aliases.
7391         * config.in: Updated.
7393         * callint.c (Fcall_interactively): Save and restore
7394         Vthis_command, Vthis_original_command, real_this_command,
7395         and current_kboard->Vlast_command.
7397         * abbrev.c (Fexpand_abbrev): Insert before deleting.
7399 2003-08-29  Gerd Moellmann  <gerd@gnu.org>
7401         * xfns.c (lookup_rgb_color): Handle TrueColor visuals specially.
7403 2003-08-28  David Abrahams  <dave@boost-consulting.com>  (tiny change)
7405         * coding.c (decode_coding_iso2022): Initialize local variable c2.
7406         (decode_coding_sjis_big5): Likewise.
7408 2003-08-27  Jason Rumney  <jasonr@gnu.org>
7410         * w32.c (sys_pipe): Protect against file descriptor overflow.
7412         * w32fns.c (syms_of_w32fns): Remove non-existent functions.
7414         * w32term.c (w32_read_socket): Fix WM_MOUSEWHEEL assignment.
7416 2003-08-26  Terje Rosten  <terjeros@phys.ntnu.no>
7418         * xfns.c (Vgtk_version_string): New variable.
7419         (syms_of_xfns): DEFVAR_LISP it.  Provide gtk.
7421 2003-08-24  Eli Zaretskii  <eliz@gnu.org>
7423         * term.c (term_init): Remove `const' from buffer_size's declaration.
7425         * Makefile.in (msdos.o): Depend on intervals.h.
7427         * msdos.c: Include intervals.h, since STRING_INTERVALS requires that.
7429 2003-08-21  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
7431         * xterm.h (struct x_display_info): New fields: client_leader_window
7432         and Xatom_wm_client_leader.
7434         * xterm.c (x_initialize): Move call to x_session_initialize to ...
7435         (x_term_init): ... here.  Initialize client_leader fields in dpyinfo.
7437         * xsmfns.c (create_client_leader_window): New function.
7438         (x_session_initialize): Call create_client_leader_window, take
7439         dpyinfo as argument.
7441         * xfns.c (Fx_create_frame): Set property WM_CLIENT_LEADER.
7443         * Makefile.in (xsmfns.o): Add more depenedencies.
7445 2003-08-21  Dave Love  <fx@gnu.org>
7447         * m/iris4d.h: Use _MIPS_SZLONG, not _LP64.
7449 2003-08-21  Kenichi Handa  <handa@m17n.org>
7451         * term.c (term_init): Fix previous change; don't rely on the
7452         length of `buffer' if TERMINFO is defined.
7454 2003-08-20  Dave Love  <fx@gnu.org>
7456         * atimer.h: Include lisp.h.
7458         * lisp.h (EMACS_LISP_H): New.
7459         (popup_activated_flag): Don't declare.
7461         * alloca.c: Some merging with gnulib.  Change logic and doc
7462         concerning (x)malloc/(x)free -- no longer Emacs-specific.
7463         [DO_BLOCK_INPUT]: Don't include lisp.h.
7464         (xmalloc, xfree): Declare.
7465         (malloc): Don't declare.
7467         * Makefile.in (LWLIB_OPTIONS): Remove (unused).
7468         (alloca.o): Remove obsolete stuff concerning alloca.s.  Depend on
7469         atimer.h, blockinput.h.
7471         * alloc.c (lisp_align_malloc): Change type of `aligned'.
7473         * alloca.s: Remove.
7475 2003-08-19  Gerd Moellmann  <gerd@gnu.org>
7477         * s/freebsd.h [__FreeBSD_version >= 400000]: Define TERMINFO,
7478         use -lncurses.
7480         * term.c (term_init): Use a buffer of size 4096 for tgetent since
7481         FreeBSD returns something longer than 2044.  Abort if the end of
7482         the buffer is overwritten.
7484 2003-08-19  Miles Bader  <miles@gnu.org>
7486         * xterm.c (x_term_init): Correctly use result of Ffile_readable_p.
7488 2003-08-19  Gerd Moellmann  <gerd@gnu.org>
7490         * alloc.c (lisp_align_malloc): Check for memory full when
7491         allocating ablocks, which also avoids freeing a pointer into an
7492         ablocks structure.
7494         * puresize.h (BASE_PURESIZE): Increase to 1100000.
7496         * buffer.c (Fmove_overlay): Set overlay's next pointer unconditionally.
7498 2003-08-16  Richard M. Stallman  <rms@gnu.org>
7500         * editfns.c (Fencode_time): Doc fix.
7502 2003-08-16  David Ponce  <david@dponce.com>
7504         * fileio.c (Fwrite_region): Fix conditional expression to issue
7505         the right message.
7507 2003-08-16  Juri Linkov  <juri@jurta.org>
7509         * syntax.c (Fforward_word): Argument changed to optional.
7510         Set default value to 1.
7512 2003-08-15  Kenichi Handa  <handa@m17n.org>
7514         * xfaces.c (better_font_p): Prefer a real scalable font; i.e. not
7515         what autoscaled.
7516         (best_matching_font): Once we find a better scalable font, set
7517         non_scalable_has_exact_height_p to 1.
7518         (try_font_list): Call try_alternative_families to try any family
7519         with the given registry.
7521 2003-08-09  Andreas Schwab  <schwab@suse.de>
7523         * alloc.c (mark_object): Handle Lisp_Misc_Save_Value.
7525         * print.c (print_string): Fix printing of multibyte string with
7526         nontrivial printcharfun.
7528 2003-07-31  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
7530         * xfns.c (xg_set_icon): Rewrite to compile with GTK 2.0 and 2.2.
7532         * xterm.c (x_bitmap_icon): Return if xg_set_icon succeeds.
7534 2003-07-31  Kenichi Handa  <handa@m17n.org>
7536         * process.c (read_process_output): Return the actually read bytes
7537         instead of the result of decoding.
7539 2003-07-31  Kenichi Handa  <handa@m17n.org>
7541         * xterm.h (struct x_bitmap_record): New member have_mask.
7543         * xfns.c (x_create_bitmap_from_data): Initialize have_mask member
7544         to 0.
7545         (x_create_bitmap_from_file): Likewise.
7546         (x_destroy_bitmap): Check have_mask member before freeing a mask.
7547         (x_destroy_all_bitmaps): Likewise.
7548         (x_create_bitmap_mask): Set have_mask member to 1.
7550 2003-07-30  Richard M. Stallman  <rms@gnu.org>
7552         * Makefile.in (CFLAGS) [!OPTIMIZE]: Undo previous change.
7554 2003-07-29  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
7556         * gtkutil.c (xg_mark_data): Update calls to mark_object.
7558 2003-07-29  Richard M. Stallman  <rms@gnu.org>
7560         * xterm.c (xim_open_dpy, xim_initialize, xim_close_dpy):
7561         Conditionalize XIM code on HAVE_XIM.
7563         * fns.c (Fclear_string): New function.
7564         (syms_of_fns): defsubr it.
7566 2003-07-28  KOBAYASHI Yasuhiro  <kobayays@otsukakj.co.jp>
7568         * xfns.c (xic_set_preeditarea): Add the left fringe width to spot.x.
7570 2003-07-22  Stefan Monnier  <monnier@cs.yale.edu>
7572         * xfns.c: Don't check HAVE_PNG_H: autoconf doesn't seem to find it.
7574         * buffer.c (delete_all_overlays): New function.
7575         * buffer.h (delete_all_overlays): Declare.
7576         * coding.c (run_pre_post_conversion_on_str):
7577         * print.c (temp_output_buffer_setup):
7578         * fileio.c (Finsert_file_contents):
7579         * minibuf.c (get_minibuffer): Use it.
7581 2003-07-22  Andrew Choi  <akochoi@shaw.ca>
7583         * unexmacosx.c (unexec_regions_sort_compare):
7584         (unexec_regions_merge): New functions.  Sort and merge unexec
7585         regions before dumping them.
7587 2003-07-22  Dave Love  <fx@gnu.org>
7589         * xfns.c [HAVE_PNG]: Consider both png.h and libpng/png.h.
7591 2003-07-21  Stefan Monnier  <monnier@cs.yale.edu>
7593         * alloc.c (MARK_STRING, UNMARK_STRING, STRING_MARKED_P)
7594         (GC_STRING_CHARS, string_bytes): Use ARRAY_MARK_FLAG rather than
7595         MARKBIT as the gcmarkbit for strings.
7597 2003-07-21  Richard M. Stallman  <rms@gnu.org>
7599         * s/openbsd.h (LD_SWITCH_SYSTEM_TEMACS): Add undef.
7601         * fns.c (Flocale_info): Rename from Flanginfo.  Doc fixes.
7602         (syms_of_fns): Corresponding change.
7604         * alloc.c (syms_of_alloc): Doc fixes.
7606 2003-07-20  Han Boetes  <han@mijncomputer.nl>  (tiny change)
7608         * s/netbsd.h: Use -Wl syntax.
7610 2003-07-17  Richard M. Stallman  <rms@gnu.org>
7612         * xterm.c (xim_initialize): Redo 6/24 change.
7614 2003-07-15  Stefan Monnier  <monnier@cs.yale.edu>
7616         * buffer.c (copy_overlays): Use EMACS_INT for positions.
7617         (Fswitch_to_buffer): Don't signal an error when switching to the same
7618         buffer in a dedicated window.
7620         * alloc.c: Use bitmaps for cons, as was done for floats.
7621         (init_float, init_cons): Let the normal code allocate the first block.
7622         (CONS_BLOCK_SIZE): Redefine based on BLOCK_BYTES and bitmap size.
7623         (CONS_BLOCK, CONS_INDEX, CONS_MARKED_P, CONS_MARK, CONS_UNMARK):
7624         New macros.
7625         (struct cons_block): Move conses to the beginning.  Add gcmarkbits.
7626         (Fcons): Use lisp_align_malloc and CONS_UNMARK.
7627         (live_cons_p): Check the pointer is not past the `conses' array.
7628         (mark_maybe_object, mark_maybe_pointer): Use CONS_MARKED_P.
7629         (mark_object, mark_buffer): Use CONS_MARKED_P and CONS_MARK.
7630         (survives_gc_p): Use CONS_MARKED_P and simplify.
7631         (gc_sweep): Use CONS_MARKED_P, CONS_UNMARK, and lisp_align_free.
7633 2003-07-13  Paul Eggert  <eggert@twinsun.com>
7635         GCC 3.3 (sparc) no longer puts "int foo = 0;" into data; it
7636         puts it into BSS instead, at least on Solaris 8 and 9.
7637         This is a valid optimization, and it may occur on other platforms,
7638         so Emacs should not assume that initializing a static variable to
7639         zero puts it into data.
7640         * alloc.c (pure, staticvec):
7641         Initialize these arrays to nonzero, so that they're not
7642         put into BSS by that optimization.
7644 2003-07-13  Stefan Monnier  <monnier@cs.yale.edu>
7646         * alloc.c (BLOCK_PADDING): Rename from ABLOCKS_PADDING.  Update users.
7647         (lisp_align_malloc): Use posix_memalign is available.
7648         (ABLOCKS_BASE): Use HAVE_POSIX_MEMALIGN as an optimization.
7649         (STRING_BLOCK_SIZE): Rename from STRINGS_IN_STRING_BLOCK
7650         for consistency.  Update users.
7652 2003-07-13  Richard M. Stallman  <rms@gnu.org>
7654         * s/netbsd.h (START_FILES_1, END_FILES_1): Always define them.
7656 2003-07-13  Terje Rosten  <terjeros@phys.ntnu.no>
7658         * xterm.c (x_bitmap_icon,x_wm_set_icon_pixmap): Modify to add mask,
7659         and use the Gtk+ function gtk_window_icon_from_file if available.
7661         * xfns.c (x_bitmap_mask, x_create_bitmap_mask): New functions to
7662         handle mask of bitmaps.
7663         (x_allocate_bitmap_record, x_destroy_bitmap): Modify to handle the
7664         mask property.
7665         (xg_set_icon): New function, wrapper for gtk_window_icon_from_file.
7667         * xterm.h (xg_set_icon): New function.
7669 2003-07-12  Paul Eggert  <eggert@twinsun.com>
7671         * unexelf.c (unexec): Consider a section to precede the .bss
7672         section if its addresses overlap that of .bss.
7674 2003-07-12  Richard M. Stallman  <rms@gnu.org>
7676         * Makefile.in (CFLAGS) [!OPTIMIZE]: Set CFLAGS to -g.
7678         * config.in (HAVE_CRTIN): Add #undef.
7679         (INLINE): Really inline only if OPTIMIZE is defined.
7681         * s/netbsd.h (START_FILES, LIB_STANDARD): Use START_FILES_1,
7682         END_FILES_1.
7683         (START_FILES_1, END_FILES_1): New macros (conditional).
7684         (LD_SWITCH_SYSTEM_TEMACS): Define.
7686         * s/openbsd.h: Don't include bsd4-3.h.
7687         (TERMINFO): Define.
7688         (LIBS_TERMCAP): Define.
7689         (LD_SWITCH_SYSTEM): Define (two definitions).
7691         * xfns.c: Include libpng/png.h instead of png.h.
7693 2003-07-11  Andreas Schwab  <schwab@suse.de>
7695         * buffer.c (modify_overlay): Update prototype.
7696         * lisp.h (adjust_overlays_for_insert, adjust_overlays_for_delete):
7697         Likewise.
7699 2003-07-09  Stefan Monnier  <monnier@cs.yale.edu>
7701         * lisp.h (VALBITS): Define in terms of GCTYPEBITS.
7702         (struct interval): Move to intervals.h.
7703         (struct Lisp_Marker): Use EMACS_INT for position info.
7704         (forward_point): Remove prototype of defunct function.
7705         (Qmodification_hooks, Qrear_nonsticky, Fnext_property_change)
7706         (Fget_text_property, Fset_text_properties, Ftext_propertes_not_all)
7707         (syms_of_textprop, set_text_properties): Remove prototypes that are
7708         already in intervals.h.
7710         * intervals.h (struct interval): Move from lisp.h.
7711         Use EMACS_INT for position and size info.
7713         * coding.c: Include intervals.h for Fset_text_properties.
7715         * buffer.h (struct buffer_text, struct buffer): Use EMACS_INT for
7716         position and length information.
7718 2003-07-09  Stefan Monnier  <monnier@cs.yale.edu>
7720         * buffer.h (struct buffer_text, struct buffer): Use EMACS_INT for
7721         position and length information.
7723 2003-07-09  Stefan Monnier  <monnier@cs.yale.edu>
7725         Change overlays_after and overlays_before so the overlays themselves
7726         are linked into lists, rather than using cons cells.  After all each
7727         Lisp_Misc already occupies 5 words, so we can add a `next' field to
7728         Lisp_Overlay for free and save up one cons cell per overlay (not
7729         to mention one indirection when traversing the list of overlay).
7731         * lisp.h (struct Lisp_Overlay): New field `next'.
7733         * buffer.h (struct buffer): Change overlays_before and overlays_after
7734         from Lisp lists of overlays to pointers to overlays.
7736         * buffer.c (overlay_strings, recenter_overlay_lists):
7737         Fix typo in eassert in last commit.
7738         (unchain_overlay): New function.
7739         (add_overlay_mod_hooklist): Use AREF.
7740         (copy_overlays, reset_buffer, overlays_at, overlays_in)
7741         (overlay_touches_p, overlay_strings, recenter_overlay_lists)
7742         (fix_overlays_in_range, fix_overlays_before, Fmake_overlay)
7743         (Fmove_overlay, Fdelete_overlay, Foverlay_lists)
7744         (report_overlay_modification, evaporate_overlays, init_buffer_once):
7745         Adjust to new type of overlays_(before|after).
7747         * alloc.c (mark_object): Mark the new `next' field of overlays.
7748         (mark_buffer): Manually mark the overlays_(after|before) fields.
7750         * coding.c (run_pre_post_conversion_on_str):
7751         * editfns.c (overlays_around):
7752         * xdisp.c (load_overlay_strings):
7753         * fileio.c (Finsert_file_contents):
7754         * indent.c (current_column):
7755         * insdel.c (signal_before_change, signal_after_change):
7756         * intervals.c (set_point_both):
7757         * print.c (temp_output_buffer_setup): Use new type for
7758         overlays_(before|after).
7760 2003-07-08  Stefan Monnier  <monnier@cs.yale.edu>
7762         * buffer.c (report_overlay_modification): Don't run hooks while
7763         traversing the list of overlays.
7765         * buffer.h (struct buffer): Use an int for overlay_center.
7766         (overlays_at, evaporate_overlays, recenter_overlay_lists)
7767         (overlay_strings, fix_overlays_before): Use EMACS_INT for positions.
7769         * buffer.c (reset_buffer, recenter_overlay_lists)
7770         (adjust_overlays_for_insert, adjust_overlays_for_delete)
7771         (fix_overlays_in_range, Fmake_overlay, Fmove_overlay)
7772         (evaporate_overlays, init_buffer_once): Update use of overlay_center.
7773         (overlays_at, evaporate_overlays, recenter_overlay_lists)
7774         (overlay_strings, fix_overlays_before): Use EMACS_INT for positions.
7776         * xdisp.c (fast_find_position): Remove unused var.
7778         * cmds.c (Qexpand_abbrev): New sym.
7779         (syms_of_cmds): Initialize it.
7780         (internal_self_insert): Use it to call expand-abbrev.
7782 2003-07-09  Kim F. Storm  <storm@cua.dk>
7784         * xterm.c (use_xim) [!USE_XIM]: Default to disable XIM if Emacs
7785         was configured with --without-xim.
7786         (x_term_init) [!USE_XIM]: Use `useXIM' resource to turn on XIM.
7788 2003-07-07  Richard M. Stallman  <rms@gnu.org>
7790         * xdisp.c (reseat_1): Set it->area to TEXT_AREA.
7792         * alloc.c (Fgarbage_collect): Doc fix.
7794 2003-07-07  Nozomu Ando  <nand@mac.com>
7796         * buffer.c (Fkill_buffer): Clear charpos cache if necessary.
7798 2003-07-06  Stefan Monnier  <monnier@cs.yale.edu>
7800         * minibuf.c (read_minibuf): UNGCPRO before returning.
7801         (Ftry_completion, Fall_completions): Doc fix.
7803         * alloc.c (live_float_p): Check that p is not past the `floats' array,
7804         now that `floats' is not the last element of the struct any more.
7806 2003-07-06  Jason Rumney  <jasonr@gnu.org>
7808         * w32term.h (ClipboardSequence_Proc): New type.
7810         * w32fns.c (clipboard_sequence_fn): New variable.
7811         (globals_of_w32fns): Initialize it.
7813         * w32select.c (last_clipboard_sequence_number): New variable.
7814         (Fw32_set_clipboard_data, Fw32_get_clipboard_data): Use sequence
7815         number if possible.
7817 2003-07-06  Stefan Monnier  <monnier@cs.yale.edu>
7819         * m/amdx86-64.h (MARKBIT):
7820         * m/ia64.h (MARKBIT): Remove definition since lisp.h does not compare
7821         MARKBIT and ARRAY_MARK_FLAG any more.
7823         * m/hp800.h (XSETMARKBIT):
7824         * m/sr2k.h (XSETMARKBIT):
7825         * lisp.h (XSETMARKBIT): Remove unused macro.
7827         * lisp.h (mark_object): Change prototype.
7829         * alloc.c (mark_object): Change arg *Lisp_Object -> Lisp_Object.
7830         (last_marked): Change accordingly.
7831         (mark_interval, mark_maybe_object, mark_maybe_pointer)
7832         (Fgarbage_collect, mark_glyph_matrix, mark_face_cache, mark_image)
7833         (mark_buffer): Update calls to mark_object.
7835         * bytecode.c (mark_byte_stack):
7836         * fns.c (sweep_weak_table):
7837         * keyboard.c (mark_kboards): Update calls to mark_object.
7839 2003-07-06  Jason Rumney  <jasonr@gnu.org>
7841         * alloc.c (struct ablock): Only include padding when there is some.
7843 2003-07-04  Stefan Monnier  <monnier@cs.yale.edu>
7845         * alloc.c (ALIGN): Add casts to simplify usage.
7846         (BLOCK_ALIGN, BLOCK_BYTES, ABLOCKS_PADDING, ABLOCKS_SIZE)
7847         (ABLOCKS_BYTES, ABLOCK_ABASE, ABLOCKS_BUSY, ABLOCKS_BASE): New macros.
7848         (struct ablock, struct ablocks): New types.
7849         (free_ablock): New global var.
7850         (lisp_align_malloc, lisp_align_free): New functions.
7851         (FLOAT_BLOCK_SIZE): Redefine in terms of BLOCK_BYTES.
7852         (struct float_block): Reorder and add gcmarkbits.
7853         (GETMARKBIT, SETMARKBIT, UNSETMARKBIT, FLOAT_BLOCK, FLOAT_INDEX)
7854         (FLOAT_MARKED_P, FLOAT_MARK, FLOAT_UNMARK): New macros.
7855         (init_float, make_float): Use lisp_align_malloc.
7856         (free_float, live_float_p): Don't use `type' any more.
7857         (make_float): Use FLOAT_UNMARK to access to mark bit.
7858         (mark_maybe_object, mark_maybe_pointer, survives_gc_p):
7859         Use FLOAT_MARKED_P to access the mark bit.
7860         (pure_alloc): Simplify use of ALIGN.
7861         (mark_object): Use FLOAT_MARK to access the mark bit.
7862         (gc_sweep): Use new macros to access the float's mark bit.
7863         (init_alloc_once): Init free_ablock.
7865         * lisp.h (struct Lisp_Float): Remove unused field `type'.
7867 2003-06-27  Stefan Monnier  <monnier@cs.yale.edu>
7869         * alloc.c (VECTOR_MARK, VECTOR_UNMARK, VECTOR_MARKED_P): New macros.
7870         (GC_STRING_BYTES): Don't mask markbit (it's only used on `size').
7871         (allocate_buffer): Move.
7872         (string_bytes): Don't mask markbit of `size_byte'.
7873         (mark_maybe_object, mark_maybe_pointer, Fgarbage_collect)
7874         (mark_object, mark_buffer, survives_gc_p, gc_sweep):
7875         Use the `size' field of buffers (rather than the `name' field) for
7876         the mark bit, as is done for all other vectorlike objects.
7877         Use the new macros to access the mark bit of vectorlike objects.
7879 2003-06-26  Richard M. Stallman  <rms@gnu.org>
7881         * puresize.h (BASE_PURESIZE): Increment base size.
7883         * xdisp.c (fast_find_position): Enable Gerd's new definition.
7885         * xterm.c (xim_initialize): Undo previous change.
7887 2003-06-26  Stefan Monnier  <monnier@cs.yale.edu>
7889         * alloc.c (survives_gc_p): Simplify.
7891         * buffer.c (set_buffer_internal_1): Test CONSP for lists.
7893         * window.c (Fset_window_dedicated_p): Simplify.
7894         (display_buffer_1): Don't raise the win from which minibuf was entered.
7895         (temp_output_buffer_show): Don't assume BEG == 1.  Simplify.
7896         (Fminibuffer_selected_window): Simplify.
7898         * buffer.h (struct buffer_text): Lisp_Object `markers' => Lisp_Marker.
7900         * lisp.h (unchain_marker): Lisp_Object arg => Lisp_Marker.
7901         (struct Lisp_Marker): Lisp_Object `chain' => Lisp_Marker `next'.
7903         * insdel.c (check_markers, adjust_markers_for_delete)
7904         (adjust_markers_for_insert, adjust_markers_for_replace)
7905         (prepare_to_modify_buffer, RESTORE_VALUE):
7906         * marker.c (buf_charpos_to_bytepos, buf_bytepos_to_charpos)
7907         (Fset_marker, set_marker_restricted, set_marker_both, unchain_marker)
7908         (set_marker_restricted_both, Fbuffer_has_markers_at, count_markers):
7909         * alloc.c (Fmake_marker, free_marker, gc_sweep):
7910         * buffer.c (Fget_buffer_create, Fkill_buffer, Fset_buffer_multibyte):
7911         * editfns.c (save_excursion_restore, transpose_markers):
7912         * window.c (delete_window):
7913         * xdisp.c (message_dolog): Update for new types.
7915 2003-06-26  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
7917         * xfaces.c (set_font_frame_param): Set default_face_done_p to zero.
7918         (realize_default_face): Use default_face_done_p for the force_p
7919         argument to set_lface_from_font_name.  Set default_face_done_p to one.
7921         * frame.c (make_frame): Initialize default_face_done_p.
7923         * frame.h (struct frame): Add default_face_done_p.
7925         * config.in: Add XRegisterIMInstantiateCallback_arg6 so it
7926         will be defined.
7928 2003-06-25  Stefan Monnier  <monnier@cs.yale.edu>
7930         * alloc.c (make_interval, Fmake_symbol, allocate_misc):
7931         Initialize the new field `gcmarkbit'.
7932         (mark_interval, MARK_INTERVAL_TREE): Use the new `gcmarkbit' field.
7933         (mark_interval_tree): Don't mark the tree separately from the nodes.
7934         (UNMARK_BALANCE_INTERVALS): Don't unmark the tree.
7935         (mark_maybe_object, mark_maybe_pointer, Fgarbage_collect)
7936         (mark_object, survives_gc_p, gc_sweep): Use new `gcmarkbit' fields.
7938         * lisp.h (struct interval, struct Lisp_Symbol, struct Lisp_Free)
7939         (struct Lisp_Marker, struct Lisp_Intfwd, struct Lisp_Boolfwd)
7940         (struct Lisp_Kboard_Objfwd, struct Lisp_Save_Value)
7941         (struct Lisp_Buffer_Local_Value, struct Lisp_Overlay)
7942         (struct Lisp_Objfwd, struct Lisp_Buffer_Objfwd): Add `gcmarkbit' field.
7944 2003-06-24  Dave Love  <fx@gnu.org>
7946         * xterm.c (xim_initialize): Use XRegisterIMInstantiateCallback_arg6.
7948         * strftime.c: Test HAVE_SYS__MBSTATE_H, not __hpux.  Merge changes
7949         from gnulib.
7951 2003-06-21  Richard M. Stallman  <rms@gnu.org>
7953         * fileio.c (Fwrite_region): Alternate messages
7954         for append and partial write.
7956         * keyboard.c (read_key_sequence): When converting upcase fn key to
7957         downcase, update fkey and keytran so `backspace' gets translated.
7959         * keyboard.c (read_avail_input): Don't signal SIGHUP in batch mode.
7961         * process.c (wait_reading_process_input): Don't signal SIGIO
7962         in batch mode.
7964 2003-06-17  Kenichi Handa  <handa@m17n.org>
7966         * Makefile.in (xselect.o): Don't depend on charset.h, coding.h,
7967         composite.h.
7969         * xselect.c: Don't include charset.h, coding.h, composite.h.
7970         (Qforeign_selection): New variable.
7971         (syms_of_xselect): Intern and static it.
7972         (selection_data_to_lisp_data): Return a unibyte string made from
7973         data with `foreign-selection' text property.
7975 2003-06-15  Stefan Monnier  <monnier@cs.yale.edu>
7977         * termhooks.h (EVENT_INIT): New macro.
7979         * keyboard.c (mark_kboards): Move from alloc.c.  Mark kbd_buffer.
7981         * alloc.c (mark_kboards): Move to keyboard.c.
7983         * keyboard.c (record_asynch_buffer_change, read_avail_input):
7984         * xterm.c (x_dispatch_event):
7985         * xmenu.c (find_and_call_menu_selection):
7986         * xdisp.c (handle_tool_bar_click):
7987         * w32menu.c (menubar_selection_callback):
7988         * sysdep.c (kbd_input_ast, read_input_waiting):
7989         * msdos.c (dos_rawgetc):
7990         * macterm.c (mac_check_for_quit_char):
7991         * macmenu.c (menubar_selection_callback):
7992         * gtkutil.c (xg_tool_bar_callback): Don't pass uninitialized
7993         data to kbd_buffer_store_event.
7995 2003-06-15  Kim F. Storm  <storm@cua.dk>
7997         * xdisp.c (x_fix_overlapping_area): Always use area relative X
7998         to fix redisplay problem with tall characters (such as \e,AC\e(B).
8000 2003-06-13  Kai Gro\e,A_\e(Bjohann  <kai.grossjohann@gmx.net>
8002         * fileio.c (Fcopy_file): Doc fix: copies file modes, too.
8004 2003-06-12  Kenichi Handa  <handa@m17n.org>
8006         * fileio.c (Fwrite_region): Save and restore restriction.
8008 2003-06-12  Dave Love  <fx@gnu.org>
8010         * alloca.c (alloca): Declare arg as size_t.
8012         * sysdep.c: Remove redundant include of unistd.h, stdlib.h.
8013         Use HAVE_DECL_SYS_SIGLIST, not SYS_SIGLIST_DECLARED.
8015 2003-06-11  Dave Love  <fx@gnu.org>
8017         * search.c (shrink_regexp_cache): Use xrealloc.
8018         (syms_of_search): Use xmalloc.
8020 2003-06-10  Kim F. Storm  <storm@cua.dk>
8022         * xdisp.c (phys_cursor_in_rect_p): Fix 2003-05-24 change.
8023         Adjust phys_cursor.x to be relative to window box, rather than
8024         text area before checking -- to ensure cursor is redrawn when
8025         exposing window.
8026         Note: This also fixes a similar (older) bug if display margins
8027         are present.
8029 2003-06-06  Kenichi Handa  <handa@m17n.org>
8031         * coding.c (encoding_buffer_size): If coding->type is
8032         coding_type_ccl, double magnification on CRLF encoding.
8034 2003-06-06  Jason Rumney  <jasonr@gnu.org>
8036         * w32reg.c (SYSTEM_DEFAULT_RESOURCES): New constant.
8037         (w32_get_string_resource): Try SYSTEM_DEFAULT_RESOURCES last.
8039         * xfaces.c (Finternal_face_x_get_resource): Do it on Windows and
8040         Mac too.
8042 2003-06-05  Dave Love  <fx@gnu.org>
8044         * strftime.c: Merge changes from gnulib.
8046         * mktime.c (__mktime_internal): Merge changes from gnulib
8047         involving year 69 and dst2.
8049         Changes to merge with gnulib version and be consistent with the
8050         autoconf test:
8052         * getloadavg.c: Set NLIST_STRUCT from HAVE_NLIST_H.
8053         Use HAVE_STRUCT_NLIST_N_UN_N_NAME, not NLIST_NAME_UNION.
8054         [HAVE_LOCALE_H]: Include locale.h.
8055         (getloadavg) [HAVE_SETLOCALE]: Run sscanf in C locale.
8057 2003-06-05  Kim F. Storm  <storm@cua.dk>
8059         * window.c (coordinates_in_window): Convert X and Y to window
8060         relative coordinates inside mode-line and header-line parts.
8061         Convert X and Y to margin area relative coordinates inside left
8062         and right display margin parts.
8064 2003-06-05  Jason Rumney  <jasonr@gnu.org>
8066         * w32fns.c (add_system_logical_colors_to_map): New function.
8067         (Fx_open_connection): Use it.
8069 2003-06-04  Stefan Monnier  <monnier@cs.yale.edu>
8071         * process.c (allocate_pty): Revert part of the previous patch.
8072         (Faccept_process_output): Simplify.
8074 2003-06-04  Jason Rumney  <jasonr@gnu.org>
8076         * termhooks.h (enum event_kind): Remove MOUSE_WHEEL_EVENT.
8078         * keyboard.c (Qmouse_wheel, mouse_wheel_syms)
8079         (lispy_mouse_wheel_names): Remove.
8080         (syms_of_keyboard): Remove Qmouse_wheel and mouse_wheel_syms.
8081         Always define drag_and_drop_syms.
8083         * macterm.c (XTread_socket): Map mouse wheel events to Emacs
8084         WHEEL_EVENT events.
8086 2003-06-03  Stefan Monnier  <monnier@cs.yale.edu>
8088         * xdisp.c (update_tool_bar): Add missing UNGCPRO.
8090         * buffer.c (init_buffer_once): Make kill-buffer-hook permanent-local.
8092 2003-06-03  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
8094         * gtkutil.c (make_menu_item): Make sure we don't crash on a NULL
8095         menu item label.
8097 2003-06-03  Richard M. Stallman  <rms@gnu.org>
8099         * window.c (Fwindow_edges): Doc fix.
8100         (Fwindow_pixel_edges, Fwindow_inside_edges)
8101         (Fwindow_inside_pixel_edges): New functions.
8102         (syms_of_window): defsubr them.
8104         * window.h (WINDOW_LEFT_FRINGE_COLS, WINDOW_RIGHT_FRINGE_COLS)
8105         (WINDOW_MODE_LINE_LINES, WINDOW_HEADER_LINE_LINES): New macros.
8107 2003-06-02  Stefan Monnier  <monnier@cs.yale.edu>
8109         * dispnew.c (Fsit_for): Don't lie about the number of args.
8111 2003-06-02  Dave Love  <fx@gnu.org>
8113         * callproc.c: Use HAVE_FCNTL_H, not USG5.
8114         (syms_of_callproc) <process-environment>: Doc fix.
8116         * doc.c: Use HAVE_FCNTL_H, not USG5.
8118         * xfaces.c (font_rescale_ratio): Fix for K&R.
8120         * termcap.c: Use HAVE_FCNTL_H, not _POSIX_VERSION.
8122         * mem-limits.h: Use HAVE_SYS_RESOURCE_H, HAVE_SYS_VLIMIT_H.
8124         * lread.c [HAVE_FCNTL_H]: Include fcntl.h.
8126         * gtkutil.c: Include keyboard.h, charset.h, coding.h.
8127         (xg_create_frame_widgets): Use ENCODE_UTF_8.
8129         * xterm.c (Qutf_8): Move to coding.c
8131         * xmenu.c (ENCODE_MENU_STRING): New.
8132         (list_of_panes, list_of_items, digest_single_submenu, xmenu_show):
8133         Use it.
8135         * coding.h (ENCODE_UTF_8): New.
8136         (Qutf_8): Declare.
8138         * coding.c (Qutf_8): New.
8139         (syms_of_coding): Intern it.
8141         * fns.c: Doc fixes.
8143 2003-06-02  Kenichi Handa  <handa@m17n.org>
8145         * buffer.c (Fset_buffer_multibyte): Fix previous change.
8147 2003-06-01  Stefan Monnier  <monnier@cs.yale.edu>
8149         * lread.c (openp): Make sure STR is a string.
8151 2003-06-01  David Ponce  <david@dponce.com>
8153         * termhooks.h (enum event_kind): Add new WHEEL_EVENT event.
8154         Declare MOUSE_WHEEL_EVENT only if MAC_OSX defined.
8156         * keyboard.c (Qmouse_wheel): Declare only if MAC_OSX defined.
8157         (mouse_wheel_syms, lispy_mouse_wheel_names): Likewise.
8158         (discard_mouse_events): Discard WHEEL_EVENT events too.
8159         (lispy_wheel_names, wheel_syms): New.
8160         (syms_of_keyboard): Init and staticpro `wheel_syms'.  Init and
8161         staticpro `Qmouse_wheel' and `mouse_wheel_syms' only if MAC_OSX defined.
8162         (make_lispy_event): Add WHEEL_EVENT handler.
8164         * w32term.c (construct_mouse_wheel): Construct WHEEL_EVENT.
8165         (w32_read_socket): Map w32 WM_MOUSEWHEEL events to Emacs
8166         WHEEL_EVENT events.
8168 2003-05-31  John Paul Wallington  <jpw@gnu.org>
8170         * Makefile.in (lisp, shortlisp): byte-run, float-sup, map-ynp, and
8171         timer are in lisp/emacs-lisp.
8173 2003-05-31  Kenichi Handa  <handa@m17n.org>
8175         * buffer.c (Fset_buffer_multibyte): Correctly recover a narrowed
8176         region when a buffer is changed to unibyte.
8178         * charset.h (VALID_LEADING_CODE_P): New macro.
8179         (UNIBYTE_STR_AS_MULTIBYTE_P): Check more rigidly.
8181         * coding.c (DECODE_EMACS_MULE_COMPOSITION_CHAR): If coding->flags
8182         is nonzero, accept multibyte form of eight-bit-control chars.
8183         (decode_composition_emacs_mule): Likewise.
8184         (decode_coding_emacs_mule): Likewise.
8185         (encode_coding_emacs_mule): If coding->flags is nonzero, produce
8186         multibyte form of eight-bit-control chars.
8188         * fileio.c (Qauto_save_coding, auto_save_coding): New variables.
8189         (Finsert_file_contents): If coding-system-for-read is bound to
8190         Qauto_save_coding, use the coding system emacs-mule with special
8191         setting for recovering a file.
8192         (choose_write_coding_system): On auto saving, use the coding
8193         system emacs-mule with special setting for auto saving.
8194         (syms_of_fileio) <Qauto_save_coding>: Intern and staticpro it.
8196 2003-05-30  Kenichi Handa  <handa@m17n.org>
8198         * coding.c (ccl_coding_driver): Set ccl->eight_bit_control
8199         properly before calling ccl_driver.
8201         * ccl.h (struct ccl_program) <eight_bit_control>: Comment fixed.
8203         * ccl.c (CCL_WRITE_CHAR): Increment extra_bytes only when it is nonzero.
8204         (ccl_driver): Initialize extra_bytes to ccl->eight_bit_control.
8205         (setup_ccl_program): Initialize ccl->eight_bit_control to zero.
8207 2003-05-29  Glenn Morris  <gmorris@ast.cam.ac.uk>
8209         * xfaces.c (realize_default_face): Do not abort if lface is
8210         non-existent - reverts change from 2003-05-19.
8212 2003-05-29  Kenichi Handa  <handa@m17n.org>
8214         * coding.c (decode_coding_iso2022): Pay attention to the byte
8215         sequence of CTEXT extended segment, and retain those bytes as is.
8217 2003-05-28  Kenichi Handa  <handa@m17n.org>
8219         * coding.c (ENCODE_UNSAFE_CHARACTER): Adjust for the name change
8220         of CODING_REPLACEMENT_CHARACTER.
8221         (decode_coding_iso2022): If CODING_FLAG_ISO_SAFE, set
8222         CODING_MODE_INHIBIT_UNENCODABLE_CHAR flag in coding->mode, and
8223         check this flag on encoding.
8224         (encode_coding_sjis_big5):
8225         Check CODING_MODE_INHIBIT_UNENCODABLE_CHAR flag of coding->mode.
8226         (Fset_terminal_coding_system_internal):
8227         Set CODING_MODE_INHIBIT_UNENCODABLE_CHAR flag in terminal_coding.mode
8228         instead of setting CODING_FLAG_ISO_SAFE flag in terminal_coding.flags.
8230         * coding.h (CODING_REPLACEMENT_CHARACTER): Rename from
8231         CODING_INHIBIT_CHARACTER_SUBSTITUTION.
8232         (CODING_MODE_INHIBIT_UNENCODABLE_CHAR): New macro.
8234 2003-05-28  Richard M. Stallman  <rms@gnu.org>
8236         * print.c (syms_of_print) <print-escape-nonascii>: Doc fix.
8238         * eval.c (unbind_to): Move init of this_binding to separate statement.
8240 2003-05-28  Kim F. Storm  <storm@cua.dk>
8242         * xdisp.c (expose_window): Fix error in calculation of
8243         window relative coordinates of area to redisplay.
8245 2003-05-27  Jason Rumney  <jasonr@gnu.org>
8247         * w32term.c (GET_WHEEL_DELTA_WPARAM): New macro.
8249 2003-05-27  David Ponce  <david@dponce.com>
8251         Handle W32 mouse wheel events as mouse click events, like in X.
8253         * keyboard.c (make_lispy_event) [WINDOWSNT]: Don't handle
8254         MOUSE_WHEEL_EVENT anymore.
8256         * w32term.c (construct_mouse_wheel): Result is a MOUSE_CLICK_EVENT.
8257         Scrolling down/up the mouse wheel is respectively mapped to mouse
8258         button 4 and 5.
8259         (w32_read_socket): Map w32 WM_MOUSEWHEEL events to Emacs
8260         MOUSE_CLICK_EVENT events.  Forward w32 MSH_MOUSEWHEEL events as
8261         WM_MOUSEWHEEL events.
8263 2003-05-27  Andreas Schwab  <schwab@suse.de>
8265         * buffer.c (syms_of_buffer) <default-direction-reversed>: Doc fix.
8267         * xdisp.c (try_window_id): Avoid aborting if PT is inside a
8268         partially visible line.
8270         * alloc.c (Fgarbage_collect): Fix last change.
8272 2003-05-26  John Paul Wallington  <jpw@gnu.org>
8274         * xfns.c (Fx_create_frame): Don't call Qface_set_after_frame_default.
8276 2003-05-25  Stefan Monnier  <monnier@cs.yale.edu>
8278         * window.c (Fset_window_buffer): Add type of `keep_margins'.
8279         (Fset_window_fringes, Fset_window_scroll_bars): Declare before use.
8281         * window.h (window_box_text_cols): Declare.
8283         * xdisp.c (window_text_bottom_y, draw_row_fringe_bitmaps)
8284         (x_draw_vertical_border): Remove unused var `f'.
8286         * xfaces.c (build_scalable_font_name): Remove `unused var
8287         pixel_size' warning.
8289         * xfns.c (png_load): Remove `unused vars intent, image_gamma' warning.
8291         * unexelf.c (unexec): Remove `unused var n' warning.
8293         * strftime.c (my_strftime_localtime_r): Remove `defined but
8294         unused' warning.
8296         * process.c (allocate_pty): Remove `unused var stb' and
8297         `cp might be used uninitialized' warnings.
8299         * dispnew.c (mode_line_string): Remove unused var `f'.
8301         * coding.c (find_safe_codings): Remove unused var `i'.
8303         * bytecode.c (Fbyte_code): Remove `unused val' warning.
8305         * buffer.c (Fkill_buffer): Remove unused var `list'.
8307         * alloc.c (Fgarbage_collect): Remove `unused var tail' warning.
8309 2003-05-25  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
8311         * frame.c (make_frame): Condition want_fullscreen with
8312         HAVE_WINDOW_SYSTEM.
8314 2003-05-25  Juanma Barranquero  <lektu@terra.es>
8316         * window.c (Fset_window_scroll_bars): Fix typo in argument name.
8317         (Fwindow_scroll_bars): Fix typo in docstring.
8319 2003-05-24  Kim F. Storm  <storm@cua.dk>
8321         The following changes serve several purposes:
8323         1) Swap the position of fringes and display margins in windows, i.e.
8324         the fringes are now displayed between the margins and the text area
8325         (by default).
8327         2) Allow fringe and scroll bar parameters to be set per-buffer and
8328         per-window (like display margins).  Such settings are now stored
8329         in window configurations, preserved when frames are resized, and
8330         copied when windows are split vertically or horizontally.
8331         Several bugs related to display margins have been fixed.
8333         3) Consistently use FRAME_FONT and FRAME_FONTSET macros.
8335         4) Use FRAME_COLUMN_WIDTH (f) consistently throughout the code
8336         rather than FRAME_WIDTH (FRAME_FONT (f)).
8338         5) Introduce a consistent naming of variables, members and macros
8339         depending on whether their value is measured in pixels or in
8340         canonical columns/lines.  Pixel dimensions are named *_width and
8341         *_height, while canonical columns/lines are named *_cols and
8342         *_lines.  Pixel positions are named *_x and *_y, while column/line
8343         positions are named *_col and *_line.
8345         6) Consolidate more of the X, W32, and MAC gui code by moving
8346         common data into struct frame, and generalize it for the non-gui
8347         case by using suitable defaults.
8349         7) Cleanup and consolidate the macros controlling frame and window
8350         layout into frame.h and window.h, and generalize the use of the
8351         various window_box_* functions (enhanced to handle the new fringe
8352         position and the per-window fringe and scroll bar settings).
8354         * frame.h (struct frame): Rename members height to text_lines,
8355         width to text_cols, window_height to total_lines, window_width to
8356         total_cols, new_height to new_text_lines, new_width to
8357         new_text_cols.  All uses changed.
8358         (struct frame): New members which consolidate common members of
8359         x_output, w32_output, and mac_output structures: left_pos,
8360         top_pos, pixel_height, pixel_width, x_pixels_diff, y_pixels_diff,
8361         win_gravity, size_hint_flags, border_width, internal_border_width,
8362         line_height, fringe_cols, left_fringe_width, right_fringe_width,
8363         want_fullscreen.  All uses changed.
8364         (struct frame): New member column_width contaning the canonical
8365         column width, analogue to line_height.  All uses changed.
8366         (struct frame): Rename members scroll_bar_pixel_width to
8367         config_scroll_bar_width, and scroll_bar_cols to
8368         config_scroll_bar_cols.  All uses changed.
8369         (struct frame): New member scroll_bar_actual_width which
8370         consolidates and renames the vertical_scroll_bar_extra member of
8371         x_output, w32_output, and mac_output structures.  All uses changed.
8372         (FRAME_PIXEL_HEIGHT): Rename from PIXEL_HEIGHT and moved
8373         from x/w32/macterm.h files.  All uses changed.  Also change code
8374         which referred to f->output_data...->pixel_height.
8375         (FRAME_PIXEL_WIDTH): Rename from PIXEL_WIDTH and moved
8376         from x/w32/macterm.h files.  All uses changed.  Also change code
8377         which referred to f->output_data...->pixel_width.
8378         (FRAME_LINES): Rename from FRAME_HEIGHT.  All uses changed.
8379         Also change code which referred to f->height.
8380         (FRAME_COLS): Rename from FRAME_WIDTH.  All uses changed.
8381         Also change code which referred to f->width.
8382         (FRAME_NEW_HEIGHT, FRAME_NEW_WIDTH): Remove macros; change uses
8383         to update new_text_lines and new_text_cols members directly.
8384         (FRAME_CONFIG_SCROLL_BAR_WIDTH): Rename from
8385         FRAME_SCROLL_BAR_PIXEL_WIDTH.  All uses changed.
8386         (FRAME_CONFIG_SCROLL_BAR_COLS): Rename from
8387         FRAME_SCROLL_BAR_COLS.  All uses changed.
8388         (FRAME_LEFT_SCROLL_BAR_COLS, FRAME_RIGHT_SCROLL_BAR_COLS):
8389         Rename from FRAME_LEFT_SCROLL_BAR_WIDTH and
8390         FRAME_RIGHT_SCROLL_BAR_WIDTH, resp.  All uses changed.
8391         (FRAME_SCROLL_BAR_AREA_WIDTH, FRAME_LEFT_SCROLL_BAR_AREA_WIDTH)
8392         (FRAME_RIGHT_SCROLL_BAR_AREA_WIDTH): New macros.
8393         (FRAME_TOTAL_COLS): Rename from FRAME_WINDOW_WIDTH.
8394         (SET_FRAME_COLS): Rename from SET_FRAME_WIDTH.
8395         (FRAME_TOTAL_COLS_ARG): Rename from FRAME_WINDOW_WIDTH_ARG.
8396         (WINDOW_VERTICAL_SCROLL_BAR_COLUMN): Remove unused macro.
8397         (WINDOW_VERTICAL_SCROLL_BAR_HEIGHT): Remove unused macro.
8398         (FRAME_LINE_HEIGHT): Rename from CANON_Y_UNIT.
8399         Unconditionally return line_height member (it now has proper value
8400         also for non-window frames).
8401         (FRAME_COLUMN_WIDTH): Rename from CANON_X_UNIT.  Unconditionally
8402         return new column_width member (rather than the default font width).
8403         (FRAME_FRINGE_COLS, FRAME_LEFT_FRINGE_WIDTH)
8404         (FRAME_RIGHT_FRINGE_WIDTH): Rename from FRAME_X_... and moved
8405         from x/w32/macterm.h files.  Unconditionally return corresponding
8406         member of frame structure (they now have proper values also for
8407         non-window frames).
8408         (FRAME_TOTAL_FRINGE_WIDTH): Rename from FRAME_FRINGE_WIDTH.
8409         Calculate return value from left and right widths.
8410         (FRAME_INTERNAL_BORDER_WIDTH): Unconditionally return
8411         internal_border_width member (has proper value for non-window frame).
8412         (FRAME_PIXEL_X_FROM_CANON_X): Rename from PIXEL_X_FROM_CANON_X.
8413         (FRAME_PIXEL_Y_FROM_CANON_Y): Rename from PIXEL_Y_FROM_CANON_Y.
8414         (FRAME_CANON_X_FROM_PIXEL_X): Rename from CANON_X_FROM_PIXEL_X.
8415         (FRAME_CANON_Y_FROM_PIXEL_Y): Rename from CANON_Y_FROM_PIXEL_Y.
8416         (FRAME_LINE_TO_PIXEL_Y): Rename from CHAR_TO_PIXEL_ROW,
8417         consolidated from xterm.h, macterm.h, and w32term.h.
8418         (FRAME_COL_TO_PIXEL_X): Rename from CHAR_TO_PIXEL_COL,
8419         consolidated from xterm.h, macterm.h, and w32term.h.
8420         (FRAME_TEXT_COLS_TO_PIXEL_WIDTH): Rename from
8421         CHAR_TO_PIXEL_WIDTH consolidated from x/mac/w32term.h.
8422         (FRAME_TEXT_LINES_TO_PIXEL_HEIGHT): Rename from
8423         CHAR_TO_PIXEL_HEIGHT consolidated from x/mac/w32term.h.
8424         (FRAME_PIXEL_Y_TO_LINE): Rename from PIXEL_TO_CHAR_ROW
8425         consolidated from x/mac/w32term.h.
8426         (FRAME_PIXEL_X_TO_COL): Rename from PIXEL_TO_CHAR_COL
8427         consolidated from x/mac/w32term.h.
8428         (FRAME_PIXEL_WIDTH_TO_TEXT_COLS): Rename from
8429         PIXEL_TO_CHAR_WIDTH consolidated from x/mac/w32term.h.
8430         (FRAME_PIXEL_HEIGHT_TO_TEXT_LINES): Rename from
8431         PIXEL_TO_CHAR_HEIGHT consolidated from x/mac/w32term.h.
8433         * window.h (struct window): Rename members left to left_col,
8434         top to top_line, height to total_lines, width to total_cols,
8435         left_margin_width to left_margin_cols, right_margin_width to
8436         right_margin_cols, orig_height to orig_total_lines, orig_top to
8437         orig_top_line.  All uses changed.
8438         (struct window): New members left_fringe_width, right_fringe_width,
8439         fringes_outside_margins, scroll_bar_width, vertical_scroll_bar_type.
8440         (WINDOW_XFRAME, WINDOW_FRAME_COLUMN_WIDTH, WINDOW_FRAME_LINE_HEIGHT):
8441         New macros primarily used to simplify other macros.
8442         (WINDOW_TOTAL_COLS): New macro.  Change relevant code that
8443         referred to XINT (w->width).
8444         (WINDOW_TOTAL_LINES): New macro.  Change relevant code that
8445         referred to XINT (w->height).
8446         (WINDOW_TOTAL_WIDTH): New macro.  Change relevant code that
8447         referred to XINT (w->width) * canon_x_unit.
8448         (WINDOW_TOTAL_HEIGHT): New macro.  Change relevant code that
8449         referred to XINT (w->height) * canon_y_unit.
8450         (WINDOW_LEFT_EDGE_COL): New macro.  Change relevant code that
8451         referred to XINT (w->left).
8452         (WINDOW_RIGHT_EDGE_COL): Rename from WINDOW_RIGHT_EDGE.  Change
8453         all uses and code that referred to XINT (w->left) + XINT (w->width).
8454         (WINDOW_TOP_EDGE_LINE): New macro.  Change relevant code that
8455         referred to XINT (w->top).
8456         (WINDOW_BOTTOM_EDGE_LINE): New macro.  Change relevant code that
8457         referred to XINT (w->top) + XINT (w->height).
8458         (WINDOW_LEFT_EDGE_X): New macro.  Change relevant code that
8459         referred to XINT (w->left) * canon_x_unit.
8460         (WINDOW_RIGHT_EDGE_X): New macro.  Change relevant code that
8461         referred to (XINT (w->left) + XINT (w->width)) * canon_x_unit.
8462         (WINDOW_TOP_EDGE_Y): New macro.  Change relevant code that
8463         referred to XINT (w->top) * canon_y_unit.
8464         (WINDOW_BOTTOM_EDGE_Y): New macro.  Change relevant code that
8465         referred to (XINT (w->top) + XINT (w->height)) * canon_y_unit.
8466         (WINDOW_LEFTMOST_P): New macro.
8467         (WINDOW_BOX_LEFT_EDGE_COL): Rename from WINDOW_LEFT_MARGIN.
8468         All uses changed.
8469         (WINDOW_BOX_RIGHT_EDGE_COL): Rename from WINDOW_RIGHT_MARGIN.
8470         All uses changed.
8471         (WINDOW_BOX_LEFT_EDGE_X): Rename from
8472         WINDOW_DISPLAY_LEFT_EDGE_PIXEL_X, moved from dispextern.h.
8473         Do not exclude left fringe width.
8474         (WINDOW_BOX_RIGHT_EDGE_X): Rename from
8475         WINDOW_DISPLAY_RIGHT_EDGE_PIXEL_X, moved from dispextern.h.
8476         Do not exclude fringe widths.
8477         (WINDOW_LEFT_FRINGE_WIDTH, WINDOW_RIGHT_FRINGE_WIDTH)
8478         (WINDOW_FRINGE_COLS, WINDOW_TOTAL_FRINGE_WIDTH): New macros.
8479         Change relevant code that referred to FRAME_LEFT_FRINGE_WIDTH,
8480         FRAME_RIGHT_FRINGE_WIDTH, FRAME_FRINGE_COLS, and
8481         FRAME_TOTAL_FRINGE_WIDTH to allow per-window fringe settings.
8482         (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS): New macro.
8483         (WINDOW_VERTICAL_SCROLL_BAR_TYPE, WINDOW_HAS_VERTICAL_SCROLL_BAR)
8484         (WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_LEFT)
8485         (WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_RIGHT)
8486         (WINDOW_CONFIG_SCROLL_BAR_WIDTH, WINDOW_CONFIG_SCROLL_BAR_COLS):
8487         New macros.  Change code which referenced corresponding
8488         FRAME_VERTICAL_SCROLL_BAR_TYPE, FRAME_HAS_VERTICAL_SCROLL_BARS,
8489         FRAME_HAS_VERTICAL_SCROLL_BARS_ON_LEFT,
8490         FRAME_HAS_VERTICAL_SCROLL_BARS_ON_RIGHT,
8491         FRAME_SCROLL_BAR_PIXEL_WIDTH, and FRAME_SCROLL_BAR_COLS macros to
8492         allow per-window scroll-bar settings.
8493         (WINDOW_LEFT_SCROLL_BAR_COLS, WINDOW_RIGHT_SCROLL_BAR_COLS): New macros.
8494         (WINDOW_LEFT_SCROLL_BAR_AREA_WIDTH): New macro.  Change code that
8495         referred to FRAME_LEFT_SCROLL_BAR_WIDTH.
8496         (WINDOW_RIGHT_SCROLL_BAR_AREA_WIDTH): New macro.  Change code
8497         that referred to FRAME_HAS_VERTICAL_SCROLL_BARS_ON_RIGHT and
8498         FRAME_SCROLL_BAR_WIDTH.
8499         (WINDOW_SCROLL_BAR_COLS, WINDOW_SCROLL_BAR_AREA_WIDTH)
8500         (WINDOW_SCROLL_BAR_AREA_X): New macros.
8501         (WINDOW_HEADER_LINE_HEIGHT): Rename from
8502         WINDOW_DISPLAY_HEADER_LINE_HEIGHT, moved from dispextern.h.
8503         (WINDOW_BOX_HEIGHT_NO_MODE_LINE): Rename from
8504         WINDOW_DISPLAY_HEIGHT_NO_MODE_LINE, moved from dispextern.h.
8505         (WINDOW_BOX_TEXT_HEIGHT): Rename from
8506         WINDOW_DISPLAY_PIXEL_WIDTH, moved from dispextern.h.
8507         (WINDOW_TO_FRAME_PIXEL_X, WINDOW_TO_FRAME_PIXEL_Y)
8508         (FRAME_TO_WINDOW_PIXEL_X, FRAME_TO_WINDOW_PIXEL_Y)
8509         (WINDOW_TEXT_TO_FRAME_PIXEL_X): Move here from dispextern.h.
8510         (WINDOW_LEFT_MARGIN_WIDTH): Rename from
8511         WINDOW_DISPLAY_LEFT_AREA_PIXEL_WIDTH, moved from dispextern.h.
8512         (WINDOW_RIGHT_MARGIN_WIDTH): Rename from
8513         WINDOW_DISPLAY_RIGHT_AREA_PIXEL_WIDTH, moved from dispextern.h.
8514         (window_from_coordinates): Update prototype.
8515         (Fset_window_buffer): Update EXFUN.
8516         (set_window_buffer): Update prototype.
8518         * dispextern.h (struct glyph_matrix): Rename members window_left_x
8519         to window_left_col, window_top_y to window_top_line.  All uses
8520         changed.
8521         (FRAME_INTERNAL_BORDER_WIDTH_SAFE): Remove macro; can now safely
8522         use FRAME_INTERNAL_BORDER_WIDTH macro instead as
8523         internal_border_width is now set to 0 for non-window frames.
8524         (WINDOW_DISPLAY_PIXEL_WIDTH, WINDOW_DISPLAY_PIXEL_HEIGHT)
8525         (WINDOW_DISPLAY_MODE_LINE_HEIGHT, WINDOW_DISPLAY_HEADER_LINE_HEIGHT)
8526         (WINDOW_DISPLAY_HEIGHT_NO_MODE_LINE, WINDOW_DISPLAY_TEXT_HEIGHT)
8527         (WINDOW_DISPLAY_LEFT_EDGE_PIXEL_X, WINDOW_DISPLAY_RIGHT_EDGE_PIXEL_X)
8528         (WINDOW_DISPLAY_TOP_EDGE_PIXEL_Y, WINDOW_DISPLAY_BOTTOM_EDGE_PIXEL_Y)
8529         (WINDOW_TO_FRAME_PIXEL_X, WINDOW_TO_FRAME_PIXEL_Y)
8530         (FRAME_TO_WINDOW_PIXEL_X, FRAME_TO_WINDOW_PIXEL_Y)
8531         (WINDOW_DISPLAY_LEFT_AREA_PIXEL_WIDTH)
8532         (WINDOW_DISPLAY_RIGHT_AREA_PIXEL_WIDTH, WINDOW_WANTS_MODELINE_P):
8533         Move to window.h and renamed [see window.h changes].
8534         (WINDOW_AREA_TO_FRAME_PIXEL_X, WINDOW_AREA_PIXEL_WIDTH)
8535         (WINDOW_DISPLAY_TEXT_AREA_PIXEL_WIDTH): Remove macros.
8536         (WINDOW_WANTS_MODELINE_P, WINDOW_WANTS_HEADER_LINE_P):
8537         Use WINDOW_TOTAL_LINES.
8538         (frame_update_line_height): Remove prototype.
8540         * buffer.h (struct buffer): Rename members measured in columns:
8541         left_margin_width to left_margin_cols, right_margin_width to
8542         right_margin_cols.  All uses changed.
8543         New members left_fringe_width, right_fringe_width,
8544         fringes_outside_margins for per-buffer fringe settings.
8545         New members scroll_bar_width and vertical_scroll_bar_type for
8546         per-buffer scroll bar settings.
8548         * buffer.c (init_buffer_once): Set buffer_defaults and
8549         buffer_local_flags for new buffer-local variables
8550         left_fringe_width, right_fringe_width, fringes_outside_margins,
8551         scroll_bar_width, and vertical_scroll_bar_type.
8552         (syms_of_buffer): Defvar_per_buffer them, and defvar_lisp_nopro
8553         default-* variables for them.
8555         * dispnew.c: Make (many) trivial substitutions for renamed and
8556         new macros in dispextern.h, frame.h and window.h.
8557         (mode_line_string): No need to adjust width for mode lines, as it
8558         is already adjusted by the caller.
8559         (marginal_area_string): Handle fringes inside/outside margins.
8561         * frame.c: Make (many) trivial substitutions for renamed and
8562         new macros in dispextern.h, frame.h and window.h.
8563         (make_frame): Initialize left_fringe_width, right_fringe_width,
8564         fringe_cols, scroll_bar_actual_width, border_width,
8565         internal_border_width, column_width, line_height, x_pixels_diff,
8566         y_pixels_diff, want_fullscreen, size_hint_flags, and win_gravity
8567         members with values suitable for a non-window frames.
8569         * gtkutil.c: Make (many) trivial substitutions for renamed and
8570         new macros in dispextern.h, frame.h and window.h.
8572         * indent.c: Make (few) trivial substitutions for renamed and
8573         new macros in dispextern.h, frame.h and window.h.
8575         * keyboard.c: Make (many) trivial substitutions for renamed and
8576         new macros in dispextern.h, frame.h and window.h.
8577         (make_lispy_event): Use window positions returned from
8578         window_from_coordinates when constructing the lisp event for
8579         MOUSE_CLICK_EVENT and DRAG_N_DROP_EVENT, rather than calculating
8580         (incorrect) values locally.
8581         (make_lispy_movement): Use window positions returned from
8582         window_from_coordinates when constructing the lisp event, rather
8583         than calculating (incorrect) values locally.
8585         * scroll.c: Make (some) trivial substitutions for renamed and
8586         new macros in dispextern.h, frame.h and window.h.
8588         * sunfns.c (Fsun_menu_internal): Adapt to per-window fringes and
8589         scroll-bars.
8591         * sysdep.c: Make (few) trivial substitutions for renamed and
8592         new macros in dispextern.h, frame.h and window.h.
8594         * term.c: Make (some) trivial substitutions for renamed and
8595         new macros in dispextern.h, frame.h and window.h.
8597         * widget.c: Make (few) trivial substitutions for renamed and
8598         new macros in dispextern.h, frame.h and window.h.
8600         * window.c: Make (many) trivial substitutions for renamed and
8601         new macros in dispextern.h, frame.h and window.h.
8602         (make_window): Initialize new members
8603         left_margin_cols, right_margin_cols, left_fringe_width,
8604         right_fringe_width, fringes_outside_margins, scroll_bar_width,
8605         and vertical_scroll_bar_type.
8606         (coordinates_in_window): Adapt to new fringe/margin positions
8607         and per-window fringes and scroll-bars.
8608         Fix bug related to incorrectly adjusting coordinates by
8609         frame's internal_border_width (the effect normally negible since
8610         the internal_border_width is typically 0 or 1 pixel, but very
8611         noticeable for an internal_border_width of e.g. 25 pixels).
8612         Upon successful return (other than ON_NOTHING), the coordinates
8613         are now always properly converted to window relative for the
8614         given display element.
8615         (window_from_coordinates): Add new parameters wx and wy to
8616         return the window relative x and y position in the returned
8617         window and part.  A null arg means, don't return the position.
8618         All callers changed.
8619         (adjust_window_margins): New function which may reduce the width
8620         of the display margins if a window's text area is too small after
8621         resizing or splitting windows.
8622         (size_window): Fix bug that did not account for display margin
8623         widths when checking the minimum width of a window; use
8624         adjust_window_margins.
8625         (set_window_buffer): Call Fset_window_fringes and
8626         Fset_window_scroll_bars to setup per-window elements.
8627         Add new arg KEEP_MARGINS_P.  Non-nil means to keep window's
8628         existing display margin, fringe widths, and scroll bar settings
8629         (e.g. after splitting a window or resizing the frame).
8630         All callers changed.
8631         (Fset_window_buffer): New arg KEEP_MARGINS.  All callers changed.
8632         (Fsplit_window): Duplicate original window's display margin,
8633         fringe, and scroll-bar settings; then call Fset_window_buffer with
8634         KEEP_MARGINS non-nil.  This fixes a bug which caused a split
8635         window to only preserve the display margins in one of the windows.
8636         When splitting horizontally, call adjust_window_margins on both
8637         windows to ensure that the text area of the new windows is non too
8638         narrow.  This fixes a bug which could cause Emacs to trap if the
8639         width of the split window was less than the width of the display
8640         margins.
8641         (window_box_text_cols): Rename from window_internal_width.
8642         All uses changed.  Adapt to per-window fringes and scroll bars.
8643         Fix bug that caused vertical separator to be subtracted also on
8644         window frames.  Fix another bug that did not reduce the returned
8645         value by the columns used for display margins.
8646         (window_scroll_line_based): Fix bug related to scrolling too much
8647         when display margins are present (implicitly fixed by the fix to
8648         window_box_text_cols).
8649         (scroll_left, scroll_right): Fix bug related to scrolling too far
8650         by default when display margins are present (implicitly fixed by
8651         the fix to window_box_text_cols).
8652         (struct saved_window): Rename members left to left_col, top to
8653         top_line, width to total_cols, height to total_lines, orig_top to
8654         orig_top_line, orig_height to orig_total_lines.  All uses changed.
8655         New members left_margin_cols, right_margin_cols,
8656         left_fringe_width, right_fringe_width, fringes_outside_margins,
8657         scroll_bar_width, and vertical_scroll_bar_type for saving
8658         per-window display elements.
8659         (Fset_window_configuration): Restore display margins, fringes,
8660         and scroll bar settings.  This fixes a bug which caused display
8661         margins to be discarded when saving and restoring a window
8662         configuration.
8663         (save_window_save): Save display margins, fringes, and scroll bar
8664         settings.  This fixes a bug which caused display margins to be
8665         discarded when saving and restoring a window configuration.
8666         (Fset_window_margins): Do nothing if display margins are not
8667         really changed.  Otherwise, call adjust_window_margins to ensure
8668         the text area doesn't get too narrow.  This fixes a bug which
8669         could cause Emacs to trap if setting display margins wider than
8670         the width of the window.
8671         (Fset_window_fringes): New defun to allow user to specifically set
8672         this window's fringe widths and position vs. display margins.
8673         (Fwindow_fringes): New defun to return window's actual fringe settings.
8674         (Fset_window_scroll_bars): New defun to allow user to specifically
8675         set this window's scroll bar width and position.
8676         (Fwindow_scroll_bars): New defun to return window's actual scroll
8677         bar settings.
8678         (compare_window_configurations): Also compare display margins,
8679         fringes, and scroll bar settings.
8680         (syms_of_window): Defsubr new defuns for fringe and scroll bars.
8682         * xdisp.c: Make (many) trivial substitutions for renamed and
8683         new macros in dispextern.h, frame.h and window.h.
8684         (window_box_width): Adapt to per-window fringes and scroll bars,
8685         and new fringe vs. display margin position.  Note that returned
8686         value is no longer guaranteed to be a whole multiple of the frame
8687         column width, since per-window fringes may now be any width.
8688         (window_box_left_offset): New function like window_box_left, but
8689         value is relative to left border of window (rather than frame).
8690         (window_box_right_offset): New function like window_box_right,
8691         but value is relative to left border of window.
8692         (window_box_left): Adapt to per-window fringes and scroll bars,
8693         and new fringe vs. display margin position.  Simplify by using
8694         WINDOW_LEFT_EDGE_X and window_box_left_offset.
8695         (window_box): Allow null args for unnecessary return values;
8696         change/simplify relevant callers.
8697         (x_y_to_hpos_vpos): Adapt to per-window fringes and scroll bars,
8698         and new fringe vs. display margin position.
8699         Use window_box_left_offset and window_box_right_offset
8700         (get_glyph_string_clip_rect): Adapt to per-window fringes and
8701         scroll bars, and new fringe vs. display margin position.
8702         Use WINDOW_LEFT_EDGE_X and WINDOW_TOTAL_WIDTH.
8703         (draw_fringe_bitmap): Rework to handle per-window fringes and new
8704         fringe vs. display margin position.
8705         (hscroll_window_tree): Use window_box_width instead of window_box.
8706         (redisplay_window): Adapt to per-window scroll bars.
8707         (draw_glyphs): Rework to handle per-window fringes and scroll
8708         bars, and new fringe vs. display margin position.
8709         Use WINDOW_LEFT_EDGE_X, WINDOW_TOTAL_WIDTH, and window_box_left.
8710         (x_clear_end_of_line): Adapt to per-window fringes and scroll
8711         bars, and new fringe vs. display margin position.  Fix bug which
8712         increased total width of full_width rows by width of scroll bars
8713         although window's total width already includes that.
8714         (x_fix_overlapping_area): Simplify using window_box_left_offset.
8715         (expose_area): Simplify using window_box_left_offset.
8716         (x_draw_vertical_border): Handle per-window scroll bar settings,
8717         mixing windows with left, right and no scroll bars.
8719         * xfaces.c [WINDOWSNT]: Move redefinition of FONT_WIDTH macro to
8720         where it's used in x_list_fonts (for clarity).
8721         (frame_update_line_height): Remove unused function; functionality
8722         is now done directly when setting the default font in x_set_font.
8724         * xfns.c: Make (many) trivial substitutions for renamed and
8725         new macros in dispextern.h, frame.h and window.h.
8727         * xmenu.c: Make (some) trivial substitutions for renamed and
8728         new macros in dispextern.h, frame.h and window.h.
8730         * xterm.h (struct x_output): Move members left_pos, top_pos,
8731         border_width, pixel_height, pixel_width, line_height,
8732         internal_border_width, vertical_scroll_bar_extra,
8733         left_fringe_width, right_fringe_width, fringe_cols,
8734         fringes_extra, win_gravity, size_hint_flags, want_fullscreen,
8735         x_pixels_diff, and y_pixels_diff to struct frame (frame.h).
8736         (FRAME_INTERNAL_BORDER_WIDTH, FRAME_LINE_HEIGHT): Move to frame.h.
8737         (FRAME_DEFAULT_FONT_WIDTH): Remove macro.
8738         (PIXEL_WIDTH, PIXEL_HEIGHT)
8739         (FRAME_X_FRINGE_COLS, FRAME_X_FRINGE_WIDTH)
8740         (FRAME_X_LEFT_FRINGE_WIDTH, FRAME_X_RIGHT_FRINGE_WIDTH): Move to
8741         frame.h and renamed [see frame.h changes].
8742         (CHAR_TO_PIXEL_ROW, CHAR_TO_PIXEL_COL, CHAR_TO_PIXEL_WIDTH)
8743         (CHAR_TO_PIXEL_HEIGHT, PIXEL_TO_CHAR_ROW, PIXEL_TO_CHAR_COL)
8744         (PIXEL_TO_CHAR_WIDTH, PIXEL_TO_CHAR_HEIGHT): Move to frame.h
8745         and renamed [see frame.h changes].
8747         * xterm.c: Make (several) trivial substitutions for renamed and
8748         new macros in dispextern.h, frame.h and window.h.
8749         (x_draw_glyph_string_box): Adapt to per-window fringes and scroll-bars.
8750         (scroll_run): Adapt to new fringe position.
8751         (glyph_rect): Use window coordinates returned from
8752         window_from_coordinates rather than frame_to_window_pixel_xy.
8753         (XTset_vertical_scroll_bar): Adapt to per-window fringes and
8754         scroll-bars.
8755         (handle_one_xevent): Simplify a USE_GTK conditional.
8756         (x_clip_to_row): Remove superfluous whole_line_p arg and code
8757         (fringes are now inside margins, i.e. always in the clipping area).
8758         All callers changed.
8759         (x_new_font): Set FRAME_COLUMN_WIDTH and FRAME_LINE_HEIGHT
8760         directly, then call compute_fringe_widths.  Don't call
8761         frame_update_line_height.
8763         * w32term.h (struct w32_output): Move members left_pos, top_pos,
8764         border_width, pixel_height, pixel_width, line_height,
8765         internal_border_width, vertical_scroll_bar_extra,
8766         left_fringe_width, right_fringe_width, fringe_cols,
8767         fringes_extra, win_gravity, size_hint_flags, want_fullscreen,
8768         x_pixels_diff, and y_pixels_diff to struct frame (frame.h).
8769         (FRAME_INTERNAL_BORDER_WIDTH, FRAME_LINE_HEIGHT): Move to frame.h.
8770         (FRAME_DEFAULT_FONT_WIDTH): Remove macro.
8771         (PIXEL_WIDTH, PIXEL_HEIGHT)
8772         (FRAME_X_FRINGE_COLS, FRAME_X_FRINGE_WIDTH)
8773         (FRAME_X_LEFT_FRINGE_WIDTH, FRAME_X_RIGHT_FRINGE_WIDTH): Move to
8774         frame.h and renamed [see frame.h changes].
8775         (CHAR_TO_PIXEL_ROW, CHAR_TO_PIXEL_COL, CHAR_TO_PIXEL_WIDTH)
8776         (CHAR_TO_PIXEL_HEIGHT, PIXEL_TO_CHAR_ROW, PIXEL_TO_CHAR_COL)
8777         (PIXEL_TO_CHAR_WIDTH, PIXEL_TO_CHAR_HEIGHT): Move to frame.h
8778         and renamed [see frame.h changes].
8780         * w32term.c: Make (several) trivial substitutions for renamed and
8781         new macros in dispextern.h, frame.h and window.h.
8782         (x_draw_glyph_string_box): Adapt to per-window fringes and scroll-bars.
8783         (glyph_rect): Use window coordinates returned from
8784         window_from_coordinates rather than frame_to_window_pixel_xy.
8785         (XTset_vertical_scroll_bar): Adapt to per-window fringes and
8786         scroll-bars.
8787         (w32_clip_to_row): Remove superfluous whole_line_p arg and code
8788         (fringes are now inside margins, i.e. always in the clipping area).
8789         All callers changed.
8790         (x_new_font): Set FRAME_COLUMN_WIDTH and FRAME_LINE_HEIGHT
8791         directly, then call compute_fringe_widths.  Don't call
8792         frame_update_line_height.
8794         * w32console.c: Make (few) trivial substitutions for renamed and
8795         new macros in dispextern.h, frame.h and window.h.
8797         * w32fns.c: Make (many) trivial substitutions for renamed and
8798         new macros in dispextern.h, frame.h and window.h.
8800         * w32menu.c: Make (few) trivial substitutions for renamed and
8801         new macros in dispextern.h, frame.h and window.h.
8803         * macterm.h (struct mac_output): Move members left_pos, top_pos,
8804         border_width, pixel_height, pixel_width, line_height,
8805         internal_border_width, vertical_scroll_bar_extra,
8806         left_fringe_width, right_fringe_width, fringe_cols,
8807         fringes_extra, win_gravity, size_hint_flags, want_fullscreen,
8808         x_pixels_diff, y_pixels_diff to struct frame (frame.h).
8809         (FRAME_INTERNAL_BORDER_WIDTH, FRAME_LINE_HEIGHT): Move to frame.h.
8810         (FRAME_DEFAULT_FONT_WIDTH): Remove macro.
8811         (PIXEL_WIDTH, PIXEL_HEIGHT)
8812         (FRAME_X_FRINGE_COLS, FRAME_X_FRINGE_WIDTH)
8813         (FRAME_X_LEFT_FRINGE_WIDTH, FRAME_X_RIGHT_FRINGE_WIDTH): Move to
8814         frame.h and renamed [see frame.h changes].
8815         (CHAR_TO_PIXEL_ROW, CHAR_TO_PIXEL_COL, CHAR_TO_PIXEL_WIDTH)
8816         (CHAR_TO_PIXEL_HEIGHT, PIXEL_TO_CHAR_ROW, PIXEL_TO_CHAR_COL)
8817         (PIXEL_TO_CHAR_WIDTH, PIXEL_TO_CHAR_HEIGHT): Move to frame.h
8818         and renamed [see frame.h changes].
8820         * macterm.c: Make (several) trivial substitutions for renamed and
8821         new macros in dispextern.h, frame.h and window.h.
8822         (x_draw_glyph_string_box): Adapt to per-window fringes and scroll-bars.
8823         (glyph_rect): Use window coordinates returned from
8824         window_from_coordinates rather than frame_to_window_pixel_xy.
8825         (XTset_vertical_scroll_bar): Adapt to per-window fringes and
8826         scroll-bars.
8827         (x_clip_to_row): Remove superfluous whole_line_p arg and code
8828         (fringes are now inside margins, i.e. always in the clipping area).
8829         All callers changed.
8830         (x_new_font): Set FRAME_COLUMN_WIDTH and FRAME_LINE_HEIGHT
8831         directly, then call compute_fringe_widths.  Don't call
8832         frame_update_line_height.
8834         * macfns.c: Make (several) trivial substitutions for renamed and
8835         new macros in dispextern.h, frame.h and window.h.
8836         (x_real_positions): Set f->x_pixels_diff and f->y_pixels_diff to 0.
8838         * macmenu.c: Make (few) trivial substitutions for renamed and
8839         new macros in dispextern.h, frame.h and window.h.
8841         * msdos.h (struct x_output): Remove members left_pos, top_pos,
8842         and line_height, and use corresponding new members in struct
8843         frame.  All uses changed.
8844         (FRAME_LINE_HEIGHT, FRAME_INTERNAL_BORDER_WIDTH): Remove macros;
8845         superseeded by corresponding macros in frame.h.
8847         * msdos.c: Make (several) trivial substitutions for renamed and
8848         new macros in dispextern.h, frame.h and window.h.
8849         (IT_note_mouse_highlight): Use updated window coordinates returned
8850         by window_from_coordinates, rather than adjusting them locally.
8851         (internal_terminal_init): No need to initialize line_height here;
8852         it now defaults to 1.
8854 2003-05-24  Stefan Monnier  <monnier@cs.yale.edu>
8856         * keyboard.c (read_key_sequence): Adjust fkey and keytran when
8857         dropping `down' events.
8859 2003-05-24  Andreas Schwab  <schwab@suse.de>
8861         * coding.c (find_safe_codings): Fix last change.
8863 2003-05-24  Istvan Marko  <mi@imarko.dhs.org>  (tiny change)
8865         * xfns.c (x_window): Fix typo from 2003-05-21 change.
8867 2003-05-23  Stefan Monnier  <monnier@cs.yale.edu>
8869         * xdisp.c (display_mode_element): Increase max depth.
8870         Simplify the error handling code.  Use a different error string
8871         for the case where we hit the depth limit.
8873         * lisp.h (Vfundamental_mode_abbrev_table): Don't declare.
8875         * buffer.c (reset_buffer_local_variables): Remove redundant setting.
8877 2003-05-21  Stefan Monnier  <monnier@cs.yale.edu>
8879         * intervals.c (get_local_map): Don't get char-property of previous
8880         point any more: get_pos_property already does it and better.
8882 2003-05-21  Dave Love  <fx@gnu.org>
8884         [Merged from unicode branch.]
8886         * xfns.c (x_window, x_window): Use use_xim.
8888         * xterm.c (use_xim): Initialize.
8889         (xim_open_dpy, xim_initialize, xim_close_dpy): Use use_xim.
8890         (x_term_init): Maybe set use_xim.
8892         * xterm.h (use_xim) [HAVE_X_I18N]: Declare.
8894 2003-05-21  Jason Rumney  <jasonr@gnu.org>
8896         * unexw32.c (_start): Remove _fmode initialization.
8898         * emacs.c (main) [WINDOWSNT]: Move it here.
8900 2003-05-20  Dave Love  <fx@gnu.org>
8902         * s/gnu-linux.h (MAIL_USE_FLOCK): Make it conditional.
8904 2003-05-19  Richard M. Stallman  <rms@gnu.org>
8906         * xfaces.c (Finternal_set_lisp_face_attribute): Handle Qunspecified
8907         as value for QCfont attribute.
8908         (realize_default_face): lface should already exist; crash if not.
8909         Specify 0 for FORCE_P when calling set_lface_from_font_name.
8911         * frame.c (Fignore_event): Doc fix.
8913 2003-05-19  Kenichi Handa  <handa@m17n.org>
8915         * coding.c (decode_coding_string): Handle post-read-conversion
8916         even if the coding doesn't require decoding.
8918 2003-05-18  Richard M. Stallman  <rms@gnu.org>
8920         * callproc.c (Fcall_process_region): Doc fix.
8922 2003-05-17  Stefan Monnier  <monnier@cs.yale.edu>
8924         * lread.c (Fload): Print a message if package is obsolete.
8926         * window.c (Fselect_window): Add optional `norecord' arg.
8927         (select_window_1): Fold into Fselect_window.
8928         (select_window_norecord): New function.
8929         (temp_output_buffer_show): Use it.  Preserve current buffer.
8931         * window.h (Fselect_window): Update declaration.
8933         * window.c (delete_window, Fother_window, Fset_window_configuration):
8934         * minibuf.c (read_minibuf):
8935         * macterm.c (x_new_focus_frame):
8936         * frame.c (do_switch_frame, Fset_frame_selected_window, Fdelete_frame):
8937         * callint.c (Fcall_interactively):
8938         * xterm.c (x_new_focus_frame): Pass nil as new arg to Fselect_window.
8940         * buffer.c (Fpop_to_buffer): Pass norecord to Fselect_window.
8942 2003-05-17  David Kastrup  <dak@gnu.org>
8944         * process.c (read_process_output): Back out change from 2003-03-09.
8946 2003-05-17  Stefan Monnier  <monnier@cs.yale.edu>
8948         * editfns.c (get_pos_property): Don't assume that `object' = nil.
8950         * textprop.c (text_property_stickiness): New arg `buffer'.
8952         * intervals.h (text_property_stickiness): New arg `buffer'.
8953         (get_pos_property): Declare.
8955         * intervals.c (get_local_map): Use get_pos_property, to obey
8956         stickiness and empty overlays.
8957         (create_root_interval, graft_intervals_into_buffer): Use BEG.
8958         (merge_properties, intervals_equal, merge_properties_sticky):
8959         Use XCAR, XCDR.
8960         (adjust_for_invis_intang): Pass new arg to text_property_stickiness.
8962 2003-05-17  Richard M. Stallman  <rms@gnu.org>
8964         * minibuf.c (read_minibuf): If buffer is empty, record the default
8965         in the history.
8966         (Fminibuffer_complete_word): When deleting the overlap, take account
8967         of its real position.
8969         * fns.c (map_char_table): Fix previous change.
8971         * syntax.c (find_defun_start):
8972         When open_paren_in_column_0_is_defun_start,
8973         return beginning of buffer.
8975         * lisp.h (map_char_table): Declare added arg.
8977         * fns.c (map_char_table): New arg TABLE gets the master table.
8978         All calls changed.
8979         Process default and inheritance, resorting to Faref if necessary.
8981         * keymap.c (Fset_keymap_parent, map_keymap, Fcopy_keymap)
8982         (Faccessible_keymaps): Pass new arg to map_char_table.
8984         * fontset.c (Ffontset_info): Pass new arg to map_char_table.
8986         * casetab.c (set_case_table): Pass new arg to map_char_table.
8988         * data.c (let_shadows_buffer_binding_p): Make target of p volatile.
8990         * lisp.h (specbinding_func): New typedef.
8991         (struct specbinding): Use specbinding_func, to put the `volatile'
8992         in the right place.
8994         * alloc.c (Fgarbage_collect): Cast pointers into specpdl
8995         to avoid GCC warning.
8997 2003-05-16  Ralph Schleicher  <rs@nunatak.allgaeu.org>
8999         * fileio.c (Fdelete_file): Handle symlinks pointing to directories.
9001 2003-05-15  Stefan Monnier  <monnier@cs.yale.edu>
9003         * keyboard.c (apply_modifiers): Don't fill the other cache.
9005 2003-05-14  Stefan Monnier  <monnier@cs.yale.edu>
9007         * .gdbinit-union: New file, for USE_LISP_UNION_TYPE users.
9009         * window.h (Qwindowp, Qwindow_live_p, Vwindow_list)
9010         (Fwindow_end, Fselected_window, Fdelete_window, Fwindow_buffer)
9011         (Fget_buffer_window, Fsave_window_excursion, Fsplit_window)
9012         (Fset_window_configuration, Fcurrent_window_configuration)
9013         (compare_window_configurations, Fcoordinates_in_window_p, Fwindow_at)
9014         (Fpos_visible_in_window_p, mark_window_cursors_off)
9015         (window_internal_height, window_internal_width, Frecenter)
9016         (Fscroll_other_window, Fset_window_start, temp_output_buffer_show)
9017         (replace_buffer_in_all_windows, init_window_once, init_window)
9018         (syms_of_window, keys_of_window): Move from lisp.h.
9019         * lisp.h: Move window.c declarations to window.h.
9021         * bytecode.c: Include window.h.
9022         * emacs.c: Include window.h.
9024         * keyboard.c (make_lispy_event): Apply modifiers to multibyte-char key.
9025         (keyremap): Add `parent' field.
9026         (keyremap_step): Use it.  Remove `parent' argument.
9027         (read_key_sequence): Setup and use the new `parent' field.
9029 2003-05-11  Stefan Monnier  <monnier@cs.yale.edu>
9031         * keyboard.c (adjust_point_for_property): Ensure termination.
9033 2003-05-10  Stefan Monnier  <monnier@cs.yale.edu>
9035         * keyboard.c (follow_key): Remove dead variable `did_meta'.
9036         (access_keymap_keyremap, keyremap_step): New funs, extracted from the
9037         duplicated handling of function-key-map and key-translation-map
9038         in read_key_sequence.
9039         (read_key_sequence): Use them.
9041         * keyboard.c (adjust_point_for_property): Try harder to move point
9042         to the non-sticky end of an invisible property.
9044         * xdisp.c (single_display_prop_intangible_p): Make `space' display
9045         property intangible as well.
9047 2003-05-10  Andreas Schwab  <schwab@suse.de>
9049         * xmenu.c (single_menu_item): Change last parameter to void* to
9050         avoid warning.
9052 2003-05-09  Richard M. Stallman  <rms@gnu.org>
9054         * print.c (Fprin1_to_string): Instead of gcpro, set abort_on_gc.
9055         Bind Qinhibit_modification_hooks to t so there will be no GC.
9056         Rename local `tem' to `save_deactivate_mark'.
9058         * eval.c (specpdl_ptr): Declare volatile.
9059         (unbind_to): Copy the whole binding and decrement specpdl_ptr
9060         before doing the work of unbinding it.
9062         * lisp.h (struct specbinding): Declare elements volatile.
9063         (specpdl_ptr): Declare volatile.
9065         * Makefile.in (alloca.o): Specify -DDO_BLOCK_INPUT in compiling.
9067         * alloca.c: Test DO_BLOCK_INPUT rather than `emacs'
9068         for use of BLOCK_INPUT and inclusion of lisp.h and blockinput.h.
9070 2003-05-08  Dave Love  <fx@gnu.org>
9072         * coding.c (Vlast_coding_system_used): Doc fix.
9074 2003-05-07  Jason Rumney  <jasonr@gnu.org>
9076         * fileio.c (Ffile_symlink_p): Let handlers handle symlinks even
9077         when system does not support them.
9079 2003-05-05  Stefan Monnier  <monnier@cs.yale.edu>
9081         * fileio.c (Qwrite_region_annotate_functions): New var.
9082         (build_annotations): Use it to process the global part of the hook.
9083         (syms_of_fileio): Init and staticpro it.
9085         * keyboard.c (safe_run_hooks_error): Display a message instead of
9086         silently ignoring the error.
9088 2003-05-03  Stefan Monnier  <monnier@cs.yale.edu>
9090         * keyboard.c (input_available_signal): Mark static.
9091         (menu_bar_items): Use map_keymap.
9092         (menu_bar_one_keymap): Remove.
9093         (menu_bar_item): Adjust arglist (for use in map_keymap).
9094         Properly hide a second binding when not both are keymaps.
9096         * xmenu.c (struct skp): New struct, to pass args through map_keymap.
9097         (single_keymap_panes): Use it and map_keymap.
9098         (single_menu_item): Use skp as well.
9100         * keymap.h (map_keymap_function_t): New type.
9101         (map_keymap): Declare.
9103         * keymap.c (map_keymap_item, map_keymap_char_table_item, map_keymap)
9104         (map_keymap_call, Fmap_keymap): New functions.
9105         (syms_of_keymap): Defsubr map-keymap.
9107 2003-05-02  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
9109         * gtkutil.c (create_dialog, make_widget_for_menu_item)
9110         (make_menu_item, create_menus, xg_update_menu_item): Don't call
9111         ..._with_mnemonic functions for menu items.
9113 2003-05-01  Kenichi Handa  <handa@m17n.org>
9115         * coding.c (coding_system_accept_latin_extra_p): Delete this
9116         function.
9117         (find_safe_codings): Pay attention to
9118         the property tranlsation-table-for-encode of each codings.
9119         (syms_of_coding): Give Qtranslation_table the extra slot number 2.
9121 2003-05-01  Stefan Monnier  <monnier@cs.yale.edu>
9123         * eval.c (Funwind_protect): Use func=Fprogn rather than symbol=Qnil.
9125 2003-04-30  Stefan Monnier  <monnier@cs.yale.edu>
9127         * eval.c (unbind_to): Don't handle symbol = Qnil any more.
9129         * lisp.h (CHECK): Wrap args in parenthesis.
9130         (specbind): Fix doc: symbol = Qnil is not supported any more.
9132         * bytecode.c (Fbyte_code) <unwind-protect>:
9133         Use Fprogn rather than 0 and Qnil.
9135         * keyboard.c (parse_modifiers_uncached): Parse `down', `drag',
9136         `double', and `triple' modifiers as well.
9138 2003-04-30  Richard M. Stallman  <rms@gnu.org>
9140         * keyboard.c (echo_char): Don't clear out a dash that follows a space.
9142         * alloc.c (abort_on_gc): New variable.
9143         (Fgarbage_collect): Abort if abort_on_gc is set.
9145         * lisp.h (abort_on_gc): Add decl.
9147         * eval.c (Fsignal): Clear abort_on_gc.
9149         * editfns.c (Fformat): Set abort_on_gc during first scan of format.
9150         Reinit FORMAT_START and END before second scan.
9152         * xdisp.c (move_it_vertically_backward): Do the final big else
9153         even if nlines is 0.
9155         * xdisp.c (redisplay_internal): Finish the per-frame loop
9156         even if redisplay is suspended by input.
9158 2003-04-24  Andrew Choi  <akochoi@shaw.ca>
9160         * macterm.c (x_list_fonts): Return all fonts that match if
9161         maxnames = -1.
9163 2003-04-25  Kenichi Handa  <handa@m17n.org>
9165         * syntax.c (skip_chars): Fix previous change.
9167 2003-04-24  Kenichi Handa  <handa@m17n.org>
9169         * syntax.c (skip_chars): Make the code faster by using the common
9170         technique of *p, *stop, and *endp.
9172 2003-04-23  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
9174         * xdisp.c (update_tool_bar): BLOCK_INPUT before calling
9175         tool_bar_items so GTK tool bar expose callback does not access items
9176         being updated.
9178 2003-04-19  Stefan Monnier  <monnier@cs.yale.edu>
9180         * eval.c (Fapply): Undo last change and add a comment about why.
9182 2003-04-18  Miles Bader  <miles@gnu.org>
9184         * data.c (Faset): Calculate nbytes earlier, to satisfy the now
9185         pickier PARSE_MULTIBYTE_SEQ.
9187 2003-04-17  Stefan Monnier  <monnier@cs.yale.edu>
9189         * eval.c (For, Fand, Fprogn, un_autoload, do_autoload):
9190         Use XCDR, XCAR, CONSP.
9191         (Fdefmacro): Fix docstring.  Use XCAR, XCDR.
9192         (Fapply): Remove unnecessary GCPRO.
9194         * doc.c (Fsubstitute_command_keys): Remove spurious casts.
9196         * charset.h (PARSE_MULTIBYTE_SEQ): Pretend `length' is used.
9198         * buffer.h: Don't hardcode BEG==1.
9200         * abbrev.c (Fdefine_abbrev_table): Use XCAR, XCDR.
9202 2003-04-16  Richard M. Stallman  <rms@gnu.org>
9204         * xdisp.c (try_window, try_window_reusing_current_matrix):
9205         When at end of window, set window_end_pos to Z-ZV.
9207         * buffer.c (Foverlay_recenter): Doc fix.
9209 2003-04-14  Stefan Monnier  <monnier@cs.yale.edu>
9211         * dispnew.c (Fsit_For): Support XEmacs-style arg list.
9213 2003-04-14  Andrew Choi  <akochoi@shaw.ca>
9215         * macterm.c (mac_check_for_quit_char): Don't check more often than
9216         once a second.
9218 2003-04-11  Stefan Monnier  <monnier@cs.yale.edu>
9220         * keyboard.c (kbd_buffer_get_event): Don't handle SELECT_WINDOW_EVENT
9221         specially, so that they can't hide an implicit switch-frame event.
9222         (make_lispy_event): Handle SELECT_WINDOW_EVENT.
9223         (head_table): Use switch-frame as event_kind for select-window.
9224         (keys_of_keyboard): Don't bind [select-window] in special-event-map.
9226         * editfns.c (Fformat): Lisp_Object/int mixup.
9227         (format2): Remove unused var numargs.
9229 2003-04-11  Kenichi Handa  <handa@m17n.org>
9231         * fileio.c (Vafter_insert_file_adjust_coding_function): Delete.
9232         (Qafter_insert_file_set_coding): New variable.
9233         (syms_of_fileio): Initialize and staticpro it.  Delete declaration
9234         for after-insert-file-adjust-coding-function.
9235         (Finsert_file_contents): Call Qafter_insert_file_set_coding
9236         instead of Vafter_insert_file_adjust_coding_function.
9238 2003-04-11  Kenichi Handa  <handa@m17n.org>
9240         * lisp.h (temp_echo_area_glyphs): Adjust prototype.
9242         * minibuf.c (temp_echo_area_glyphs): Change the arg to Lisp
9243         string.  Callers changed.
9245 2003-04-10  Kenichi Handa  <handa@m17n.org>
9247         * fileio.c (Vafter_insert_file_adjust_coding_function): New variable.
9248         (syms_of_fileio): Declare it as a lisp variable.
9249         (Finsert_file_contents):
9250         Call Vafter_insert_file_adjust_coding_function before calling
9251         decode-format.
9253 2003-04-09  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
9255         * xterm.c (xg_scroll_callback): Call gtk_range_get_adjustment to
9256         get GtkAdjustment as widget now is a GtkRange.
9258         * gtkutil.c (xg_create_scroll_bar): Connect to value-changed on
9259         GtkRange to avoid memory leak.
9261 2003-04-09  Kenichi Handa  <handa@m17n.org>
9263         * xfaces.c (Vface_font_rescale_alist): New variable.
9264         (struct font_name): New member rescale_ratio.
9265         (font_rescale_ratio): New function.
9266         (split_font_name): If NUMERIC_P is nonzero, set font->rescale_ratio.
9267         (better_font_p): On comparing point sized, pay attention to
9268         recale_ratio member of fonts.
9269         (build_scalable_font_name): Reflect font->rescale_ratio in the
9270         font name.
9271         (syms_of_xfaces): Declare Vface_font_rescale_alist as a Lisp variable.
9273         * lread.c (read1): Before calling index, check if the 2nd
9274         arguemnt is in ASCII range.
9276 2003-04-08  Richard M. Stallman  <rms@gnu.org>
9278         * fileio.c (Ffile_symlink_p): Doc fix.
9280         * editfns.c (Fformat): Translate positions of text properties
9281         in the format string to apply them to the result.
9283         * fileio.c (Finsert_file_contents): Doc fix.
9284         (syms_of_fileio) <after-insert-file-functions>: Doc fix.
9286 2003-04-08  Ivan Zakharyaschev  <imz@altlinux.org>  (tiny change)
9288         * lread.c (openp): Get the Qfile_exists_p handler for STRING, not FN.
9290 2003-04-08  Steven Tamm  <steventamm@mac.com>
9292         * mac.c (init_mac_osx_environment): Switch libexec and bin so
9293         that self-contained application finds libexec files.
9295 2003-04-08  Kenichi Handa  <handa@m17n.org>
9297         * coding.c (code_convert_region_unwind):
9298         Set Vlast_coding_system_used to the argument.
9299         (code_convert_region): If post-read-conversion function changed
9300         the value of last-coding-sytem, keep the new value in
9301         coding->symbol so that it won't be overridden.
9302         (run_pre_post_conversion_on_str): Likewise.
9303         (coding_system_accept_latin_extra_p): New function.
9304         (find_safe_codings): Pay attention to characters registered in
9305         latin-extra-code-table.
9307 2003-04-07  Thien-Thi Nguyen  <ttn@gnu.org>
9309         * Makefile.in (md5.o): Add missing dependency info.
9311 2003-04-06  Richard M. Stallman  <rms@gnu.org>
9313         * xselect.c (x_handle_selection_request): Move UNGCPRO to very end.
9315         * marker.c (verify_bytepos): New function.
9317         * intervals.c (set_intervals_multibyte_1): When becoming
9318         multibyte, adjust right and left child sizes to a whole set of
9319         characters.  If an interval gets zero total-length, delete it.
9320         If an interval consists of just its children, delete one of them.
9322         * intervals.h (CHECK_TOTAL_LENGTH): New macro.
9323         * intervals.c: Add many calls to CHECK_TOTAL_LENGTH.
9325         * alloc.c: (VALIDATE_LISP_STORAGE): Macro deleted.
9326         All calls deleted.
9327         (lisp_malloc): Do the work here directly.
9329 2003-04-06  Gareth Jones  <emacs@referential.org.uk>  (tiny change)
9331         * fns.c (Flength): Return SUB_CHAR_TABLE_ORDINARY_SLOTS for sub
9332         char tables.
9334 2003-04-04  Kenichi Handa  <handa@m17n.org>
9336         * editfns.c (Fformat): Use a copy of FORMAT string so that we can
9337         destructively change "%S" to "%s".
9339 2003-04-03  Miles Bader  <miles@gnu.org>
9341         * xfaces.c (choose_face_font): Make sure *NEEDS_OVERSTRIKE is
9342         always set.
9344 2003-04-01  Dave Love  <fx@gnu.org>
9346         * xfns.c (xpm_lookup_color): Grok "opaque".
9348 2003-03-31  Andrew Choi  <akochoi@shaw.ca>
9350         * frame.c (x_report_frame_params) [HAVE_CARBON]: Do not report
9351         parent window ID.
9353         * macfns.c (syms_of_macfns): Remove call to init_x_parm_symbols.
9355         * macterm.h (struct mac_output): Define x_pixels_diff and
9356         y_pixels_diff.
9358 2003-03-31  Juanma Barranquero  <lektu@terra.es>
9360         * makefile.w32-in ($(BLD)/frame.$(O)): Add dependency on
9361         blockinput.h and files included from it.
9363 2003-03-31  Kim F. Storm  <storm@cua.dk>
9365         The following changes consolidates the common code related to
9366         frame-parameter handling from the xfns.c, w32fns.c, and macfns.c
9367         files into frame.c.
9369         * frame.c: Include blockinput.h.
9370         (Vx_resource_name, Vx_resource_class, Qx_frame_parameter)
9371         (Qx_resource_name, Qface_set_after_frame_default): Define vars here.
9372         (Qauto_raise, Qauto_lower, ...): Define all frame parameter
9373         related vars here.
9374         (struct frame_parm_table, frame_parms): New table for describing
9375         frame parameters and their associated Q-variable.
9376         The order of the parameters corresponds to the sequence of the
9377         frame_parm_handlers table in redisplay_interface.
9378         (x_fullscreen_move, x_set_frame_parameters)
9379         (x_report_frame_params, x_set_fullscreen, x_set_line_spacing)
9380         (x_set_screen_gamma, x_set_font, x_set_fringe_width)
9381         (x_set_border_width, x_set_internal_border_width, x_set_visibility)
9382         (x_set_autoraise, x_set_autolower, x_set_unsplittable)
9383         (x_set_vertical_scroll_bars, x_set_scroll_bar_width, x_icon_type):
9384         Generic functions for processing of frame parameters.
9385         (validate_x_resource_name, xrdb_get_resource, Fx_get_resource)
9386         (display_x_get_resource, x_get_resource_string): Functions for
9387         generic access to X resources.
9388         (x_get_arg, x_frame_get_arg, x_frame_get_and_record_arg)
9389         (x_default_parameter, Fx_parse_geometry): Functions for generic
9390         access to frame parameters.
9391         (x_figure_window_size): Generic calculation of frame size.
9392         Fixed to add space needed for tool bar.  Also setup size_hint_flags.
9393         (syms_of_frame): Intern and staticpro frame parameter variables.
9394         Defvar_lisp Vx_resource_class and Vx_resource_name here.
9395         Defsubr Sx_get_resource and Sx_parse_geometry.
9397         * frame.h (Qauto_raise, Qauto_lower, ...): Declare extern all frame
9398         parameter related vars defined in frame.c.
9399         (EMACS_CLASS): Define here.
9400         (enum FULLSCREEN_*): Define here.
9401         (x_set_scroll_bar_default_width, x_wm_set_icon_position)
9402         (x_set_offset, x_new_font, x_new_fontset): Add prototypes.
9403         (x_fullscreen_adjust, x_set_frame_parameters, x_report_frame_params)
9404         (x_set_fullscreen, x_set_line_spacing, x_set_screen_gamma, x_set_font)
9405         (x_set_fringe_width, x_set_border_width, x_set_internal_border_width)
9406         (x_set_visibility, x_set_autoraise, x_set_autolower)
9407         (x_set_unsplittable, x_set_vertical_scroll_bars)
9408         (x_set_scroll_bar_width, x_icon_type, validate_x_resource_name)
9409         (x_figure_window_size): Add prototypes.
9411         * dispextern.h (frame_parm_handler): New typedef.
9412         (struct redisplay_interface): New member frame_parm_handlers.
9413         (enum resource_types): Move declaration here.
9414         (x_get_arg, x_frame_get_arg, x_frame_get_and_record_arg)
9415         (x_default_parameter): Add prototypes.
9417         * window.c: Remove extern decl for frame parameter vars.
9418         (change_window_heights): New generic function;
9419         replaces x_change_window_heights.  All users changed.
9421         * window.h (change_window_heights): Add prototype.
9423         * xfaces.c: Remove extern decl for frame parameter vars.
9425         * xterm.h (EMACS_CLASS): Remove.  Use generic define.
9426         (struct w32_display_info): Fix type of xrdb member.
9427         (enum FULLSCREEN_*): Remove.
9428         Remove prototypes for generic functions (in frame.h).
9430         * xfns.c (Qauto_raise, Qauto_lower, ...): Remove vars for frame
9431         parameters now defined in frame.h and frame.c.
9432         (Vx_resource_name): Remove.  Use generic var.
9433         (enum x_frame_parms): Remove (bogus, unused enum).
9434         (check_x_display_info): Make non-static (for frame.c).
9435         (struct x_frame_parm_table, x_frame_parms): Remove.
9436         (init_x_parm_symbols, x_set_frame_parameters, x_report_frame_params)
9437         (x_set_line_spacing, x_set_screen_gamma, x_icon_type, x_set_font)
9438         (x_set_border_width, x_set_internal_border_width, x_set_visibility)
9439         (x_change_window_heights, x_set_autoraise, x_set_autolower)
9440         (x_set_vertical_scroll_bars, x_set_scroll_bar_width)
9441         (validate_x_resource_name, Fx_get_resource, x_get_resource_string)
9442         (x_default_parameter, Fx_parse_geometry, x_figure_window_size):
9443         Remove.  Use generic functions instead.
9444         (enum resource_types): Remove.
9445         (x_set_scroll_bar_default_width): New global function (for frame.c).
9446         (Fx_create_frame): Depend on x_figure_window_size to add space for
9447         toolbar and setup size_hint_flags.
9448         (x_frame_parm_handlers): New table for redisplay_interface.
9449         (syms_of_xfns): Don't intern/staticpro removed vars.
9451         * xterm.c: Remove unnecessary extern declarations.
9452         (x_fullscreen_adjust): Remove.  Use generic instead.
9453         (x_redisplay_interface): Add x_frame_parm_handlers member.
9455         * w32gui.h (XrmDatabase): New (dummy) typedef.
9457         * w32term.h (EMACS_CLASS): Remove.  Use generic define.
9458         (struct w32_display_info): Fix type of xrdb member.
9459         (enum FULLSCREEN_*): Remove.
9460         (x_fullscreen_adjust): Remove prototype.
9462         * w32fns.c (Qauto_raise, Qauto_lower, ...): Remove vars for frame
9463         parameters now defined in frame.h and frame.c.
9464         (Vx_resource_name): Remove.  Use generic var.
9465         (enum x_frame_parms): Remove (bogus, unused enum).
9466         (check_x_display_info): Make non-static (for frame.c).
9467         (struct x_frame_parm_table, x_frame_parms): Remove.
9468         (init_x_parm_symbols, x_set_frame_parameters, x_report_frame_params)
9469         (x_set_line_spacing, x_set_screen_gamma, x_icon_type, x_set_font)
9470         (x_set_border_width, x_set_internal_border_width, x_set_visibility)
9471         (x_change_window_heights, x_set_autoraise, x_set_autolower)
9472         (x_set_vertical_scroll_bars, x_set_scroll_bar_width)
9473         (validate_x_resource_name, Fx_get_resource, x_get_resource_string)
9474         (x_default_parameter, Fx_parse_geometry, x_figure_window_size):
9475         Remove.  Use generic functions instead.
9476         (enum resource_types): Remove.
9477         (x_set_scroll_bar_default_width): New global function (for frame.c).
9478         (Fx_create_frame): Depend on x_figure_window_size to add space for
9479         toolbar and setup size_hint_flags.
9480         (w32_frame_parm_handlers): New table for redisplay_interface.
9481         (syms_of_w32fns): Don't intern/staticpro removed vars.
9483         * w32term.c: Remove unnecessary extern declarations.
9484         (x_fullscreen_adjust): Remove. Use generic instead.
9485         (x_redisplay_interface): Add w32_frame_parm_handlers member.
9487         * w32reg.c (x_get_string_resource): Use XrmDatabase.
9489         * macgui.h (XrmDatabase): New (dummy) typedef.
9491         * macterm.h (EMACS_CLASS): Remove.
9492         (struct mac_display_info): Add xrdb member.
9493         (struct mac_output): Add want_fullscreen member.
9495         * macfns.c (Qauto_raise, Qauto_lower, ...): Remove vars for frame
9496         parameters now defined in frame.h and frame.c.
9497         (Vx_resource_name): Remove.  Use generic var.
9498         (check_x_display_info): Make non-static (for frame.c).
9499         (struct x_frame_parm_table, x_frame_parms): Remove.
9500         (init_x_parm_symbols, x_set_frame_parameters, x_report_frame_params)
9501         (x_set_line_spacing, x_set_screen_gamma, x_icon_type, x_set_font)
9502         (x_set_border_width, x_set_internal_border_width, x_set_visibility)
9503         (x_change_window_heights, x_set_autoraise, x_set_autolower)
9504         (x_set_vertical_scroll_bars, x_set_scroll_bar_width)
9505         (validate_x_resource_name, Fx_get_resource, x_get_resource_string)
9506         (x_default_parameter, Fx_parse_geometry, x_figure_window_size):
9507         Remove.  Use generic functions instead.
9508         (enum resource_types): Remove.
9509         (x_set_scroll_bar_default_width): New global function (for frame.c).
9510         (mac_frame_parm_handlers): New table for redisplay_interface.
9511         (syms_of_macfns): Don't intern/staticpro removed vars.
9513         * macterm.c: Remove unnecessary extern declarations.
9514         (x_redisplay_interface): Add mac_frame_parm_handlers member.
9516         * Makefile.in (frame.o): Add dependency on blockinput.h and files
9517         included from it (atimer.h and systime.h).
9519 2003-03-30  Andreas Schwab  <schwab@suse.de>
9521         * xdisp.c (x_insert_glyphs): Fix swapped width and height
9522         parameters for shift_glyphs_for_insert.
9524         * macterm.c (x_redisplay_interface): Add missing entry for
9525         draw_vertical_window_border.
9527 2003-03-29  Kai Gro\e,A_\e(Bjohann  <kai.grossjohann@gmx.net>
9529         * fileio.c (Fexpand_file_name): In the no-handler case, after
9530         expanding, look again for a handler and invoke it.  This is needed
9531         for filenames like "/foo/../user@host:/bar/../baz" -- the first
9532         expansion produces "/user@host:/bar/../baz" which needs to be
9533         expanded again for the finame result "/user@host:/baz".
9535 2003-03-28  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
9537         * gtkutil.c (xg_tool_bar_item_expose_callback): Reduce size
9538         of area to be redrawn for better performance.
9540 2003-03-28  Stefan Monnier  <monnier@cs.yale.edu>
9542         * xterm.c (take_vertical_position_into_account): Remove.
9543         (xt_action_hook): Call set_vertical_scroll_bar if needed.
9544         (XM_SB_MIN, XM_SB_RANGE): Remove (min is now set to 0).
9545         (xm_scroll_callback, x_create_toolkit_scroll_bar)
9546         (x_set_toolkit_scroll_bar_thumb): Simplify.
9547         (x_scroll_bar_expose): Only compile if !USE_TOOLKIT_SCROLL_BARS.
9548         (XTread_socket): Remove unused var.
9549         (x_make_frame_invisible): Replace goto with else.
9551         * xdisp.c (set_vertical_scroll_bar): New fun.
9552         (redisplay_window): Use it.
9554 2003-03-26  Richard M. Stallman  <rms@gnu.org>
9556         * xdisp.c (update_tool_bar): Recompute tool bar if
9557         update_mode_lines is set.  Set w->update_mode_line
9558         only if the tool bar contents actually change.
9559         (update_menu_bar): Undo previous change.
9561 2003-03-26  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
9563         * gtkutil.c (xg_resize_widgets): Don't call xg_frame_cleared.
9564         (xg_frame_set_char_size): Calculate scroll bar width before frame
9565         width.  Call SET_FRAME_GARBAGED and cancel_mouse_face.
9566         (xg_separator_p): Check for all documented separator types.
9567         (xg_update_scrollbar_pos): Variable gheight not needed, use height.
9568         (update_frame_tool_bar): Don't call gdk_window_process_all_updates.
9570         * xdisp.c (update_menu_bar): Set w->update_mode_line to Qt
9571         so tool bar gets updated.
9573 2003-03-26  Stefan Monnier  <monnier@cs.yale.edu>
9575         * data.c (store_symval_forwarding): Re-instate part of the code
9576         that was deleted with too much enthusiasm.
9578 2003-03-25  Stefan Monnier  <monnier@cs.yale.edu>
9580         * data.c (store_symval_forwarding): Delete special read-only
9581         hack for type == -1, since we now use ->constant instead.
9582         (Fkill_local_variable): Don't use XBUFFER if it can be nil.
9584         * buffer.c (overlays_in): Declare static.
9585         (syms_of_buffer) <enable-multibyte-characters>: Use the symbol's
9586         `constant' field rather than the variable's `type' field.
9588 2003-03-24  Andrew Choi  <akochoi@shaw.ca>
9590         * config.in [MAC_OSX]: Do not redefine bcopy, bzero, and bcmp.
9592         * dispextern.h [HAVE_CARBON]: Include Carbon.h.
9594         * fns.c [MAC_OSX]: Do not redefine vector.
9596         * keyboard.c [MAC_OSX]: Handle SIGINT with interrupt_signal.
9598         * macgui.h: Remove definition of No_Cursor.
9600         * macterm.h: Include Carbon.h.  Replace (struct Cursor *) by Cursor.
9602         * xdisp.c: Define No_Cursor.
9603         (x_write_glyphs, notice_overwritten_cursor)
9604         (draw_phys_cursor_glyph, note_mode_line_or_margin_highlight)
9605         (note_mouse_highlight): Remove Mac-specific code.
9606         (note_mouse_highlight): Use bcmp instead of == to compare Cursors.
9608 2003-03-24  John Paul Wallington  <jpw@gnu.org>
9610         * xdisp.c (redisplay_window): If mini window's buffer is not
9611         empty, then redisplay it like other windows.
9613 2003-03-23  Kim F. Storm  <storm@cua.dk>
9615         * w32term.c (w32_draw_window_cursor): Fix last change.
9617 2003-03-23  Kenichi Handa  <handa@m17n.org>
9619         * alloc.c (make_string_from_bytes, make_specified_string):
9620         Add `const' for the arg CONTENTS.
9622         * lisp.h (make_string_from_bytes, make_specified_string):
9623         Prototypes adjusted.
9625 2003-03-23  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
9627         * xdisp.c (get_glyph_string_clip_rect): Remove ; at end of #endif
9629         * gtkutil.h: Take two more arguments to xg_update_scrollbar_pos.
9630         (XG_SB_RANGE): New define.
9632         * gtkutil.c (xg_fixed_handle_expose): New function.
9633         (xg_create_frame_widgets): Call xg_fixed_handle_expose for
9634         expose events.
9635         (xg_update_scrollbar_pos): Take two more arguments, left and width
9636         of scroll bar including borders.
9637         Clear left and right part outside scroll bar separately as some
9638         themes have bars that are not an even number of pixels.
9639         Don't set reallocate_redraws, don't call
9640         gdk_window_process_all_updates.
9641         (xg_set_toolkit_scroll_bar_thumb): Upper value is fixed,
9642         so no need to change it.  Calculate size and value with XG_SB_RANGE.
9644         * xterm.c (x_scroll_bar_create, XTset_vertical_scroll_bar):
9645         Pass left and width of scroll bar including borders to
9646         xg_update_scrollbar_pos.
9648 2003-03-22  Thien-Thi Nguyen  <ttn@gnu.org>
9650         * Makefile.in: Make sure space precedes end-of-line backslashes.
9652 2003-03-22  Kim F. Storm  <storm@cua.dk>
9654         * xdisp.c (pixel_to_glyph_coords, glyph_to_pixel_coords):
9655         Add generic versions here.  Remove system specific versions
9656         defined elsewhere.
9658         * dispextern.h (pixel_to_glyph_coords, glyph_to_pixel_coords):
9659         Add prototypes.
9661         * xterm.h (STORE_NATIVE_RECT): New macro.
9663 2003-03-21  Kim F. Storm  <storm@cua.dk>
9665         * xdisp.c (get_glyph_string_clip_rect):
9666         Use FRAME_INTERNAL_BORDER_WIDTH.
9668         * dispextern.h (struct redisplay_interface): Add active_p
9669         argument to draw_window_cursor member.  All uses changed.
9671 2003-03-21  Kim F. Storm  <storm@cua.dk>
9673         The following changes consolidate code related to writing and
9674         inserting glyphs, exposing frame, the tool bar, the mouse face,
9675         the output cursor, and help echo from xterm.c, w32term.c and
9676         macterm.c into xdisp.c.  It also generalizes the use of the
9677         window_part enum instead of using numeric values throughout.
9679         * xdisp.c: Consolidate gui-independent code here.
9680         Include keymap.h.
9681         (Qhelp_echo): Import.
9682         (mouse_autoselect_window, x_stretch_cursor_p): Declare here.
9683         (help_echo_string, help_echo_window, help_echo_object)
9684         (previous_help_echo_string, help_echo_pos): Declare here.
9685         (output_cursor, last_mouse_frame, last_tool_bar_item): Declare here.
9686         (estimate_mode_line_height): Define here.  Handle windowing
9687         systems directly (without using estimate_mode_line_height_hook).
9688         (x_y_to_hpos_vpos, get_tool_bar_item, note_tool_bar_highlight):
9689         (update_window_cursor, update_cursor_in_window_tree)
9690         (fast_find_position, fast_find_string_pos)
9691         (note_mode_line_highlight, note_mode_line_or_margin_highlight)
9692         (expose_area, expose_line, expose_overlaps, expose_window)
9693         (expose_window_tree, phys_cursor_in_rect_p): New generic versions;
9694         declared static as they are only used locally in xdisp.c.
9695         (draw_glyphs): Rename from x_draw_glyphs and make static.
9696         (tool_bar_item_info, notice_overwritten_cursor): Make static.
9697         (frame_to_window_pixel_xy, get_glyph_string_clip_rect)
9698         (set_output_cursor, x_cursor_to, handle_tool_bar_click)
9699         (x_write_glyphs, x_insert_glyphs, x_clear_end_of_line):
9700         (x_fix_overlapping_area, draw_phys_cursor_glyph, erase_phys_cursor)
9701         (display_and_set_cursor, x_update_cursor, x_clear_cursor)
9702         (show_mouse_face, clear_mouse_face, cursor_in_mouse_face_p)
9703         (note_mouse_highlight, x_clear_window_mouse_face)
9704         (cancel_mouse_face, x_draw_vertical_border, expose_frame)
9705         (x_intersect_rectangles): New generic functions for use by xdisp.c
9706         and GUI front-ends.
9707         (syms_of_xdisp): Initialize and staticpro help_echo* variables.
9708         Defvar_bool "x-streach-cursor" and "mouse-autoselect-window" here.
9710         * dispextern.h (Display_Info): Generic typedef for *_display_info.
9711         (NativeRectangle): Generic typedef for rectangle type.
9712         (enum window_part): Move here from window.c.
9713         (struct redisplay_interface): New members flush_display_optional,
9714         define_frame_cursor, clear_frame_area, draw_window_cursor,
9715         draw_vertical_window_border, shift_glyphs_for_insert.
9716         Rename member clear_mouse_face to clear_window_mouse_face.
9717         (estimate_mode_line_height_hook): Remove hook.
9718         (auto_raise_tool_bar_buttons_p): Don't declare extern.
9719         (tool_bar_item_info): Remove prototype.
9720         (help_echo_string, help_echo_window, help_echo_object)
9721         (previous_help_echo_string, help_echo_pos)
9722         (last_mouse_frame, last_tool_bar_item, mouse_autoselect_window):
9723         (x_stretch_cursor_p, output_cursor): Declare extern.
9724         (x_draw_glyphs, notice_overwritten_cursor): Remove prototypes.
9725         (x_write_glyphs), x_insert_glyphs, x_clear_end_of_line)
9726         (x_fix_overlapping_area, draw_phys_cursor_glyph, erase_phys_cursor)
9727         (display_and_set_cursor, set_output_cursor, x_cursor_to)
9728         (x_update_cursor, x_clear_cursor, x_draw_vertical_border)
9729         (frame_to_window_pixel_xy, get_glyph_string_clip_rect)
9730         (note_mouse_highlight, x_clear_window_mouse_face, cancel_mouse_face)
9731         (handle_tool_bar_click, clear_mouse_face, show_mouse_face)
9732         (cursor_in_mouse_face_p, expose_frame, x_intersect_rectangles):
9733         Add prototypes.
9734         (mode_line_string, marginal_area_string): Fix prototypes.
9736         * window.c (enum window_part): Move to dispextern.h.
9737         (coordinates_in_window): Use enum window_part member names
9738         instead of numbers to describe return value.
9739         (struct check_window_data): Change part member to window_part.
9740         (check_window_containing): Return window_part unaltered.
9741         (window_from_coordinates): Change part arg from int to enum
9742         window_part.  Allow part arg to be null.  All users changed.
9744         * window.h (window_from_coordinates): Fix prototype.
9746         * term.c (estimate_mode_line_height): Move to xdisp.c.
9748         * keyboard.c (make_lispy_event): Use enum window_part.
9750         * dispnew.c (mode_line_string, marginal_area_string): Use enum
9751         window_part instead of int in arg list.  Users changed.
9753         * xterm.h (No_Cursor): Declare as None for X.
9754         (struct mac_output): Replace member cross_cursor by hand_cursor.
9756         * xterm.c: Remove consolidated defines and code.
9757         (BETWEEN): Remove unused macro.
9758         (x_draw_vertical_window_border, x_shift_glyphs_for_insert)
9759         (x_define_frame_cursor, x_clear_frame_area)
9760         (x_draw_window_cursor): New X-specific functions for RIF.
9761         (x_redisplay_interface): Add new members.
9763         * xfns.c: Setup and use hand_cursor instead of cross_cursor.
9765         * w32term.h (struct w32_output): Remove cross_cursor member.
9767         * w32term.c: Remove consolidated defines and code.
9768         (BETWEEN): Remove unused macro.
9769         (w32_draw_vertical_window_border, w32_shift_glyphs_for_insert)
9770         (w32_define_frame_cursor, w32_clear_frame_area)
9771         (w32_draw_window_cursor): New W32-specific functions for RIF.
9772         (w32_redisplay_interface): Add new members.
9774         * w32gui.h (No_Cursor): Define as 0 for W32.
9775         (XRectangle): Add X compatible rectangle type.
9776         (NativeRectangle): Declare as RECT for W32.
9777         (CONVERT_TO_XRECT, CONVERT_FROM_XRECT, STORE_NATIVE_RECT): New macros.
9779         * w32fns.c: Remove setup of cross_cursor (already has hand_cursor).
9781         * w32console.c: Remove consolidated defines and code.
9783         * msdos.h (Display_Info): Add generic typedef.
9785         * msdos.c: Remove consolidated defines and code.
9786         (IT_note_mouse_highlight, dos_rawgetc): Use enum window_part.
9788         * macterm.h (struct mac_output): Replace member cross_cursor by
9789         hand_cursor.
9790         (activate_scroll_bars, deactivate_scroll_bars): Add prototypes.
9792         * macterm.c: Remove consolidated defines and code.
9793         (BETWEEN): Remove unused macro.
9794         (mac_draw_vertical_window_border, mac_shift_glyphs_for_insert)
9795         (mac_define_frame_cursor, mac_clear_frame_area)
9796         (mac_draw_window_cursor): New Mac-specific functions for RIF.
9797         (x_redisplay_interface): Add new members.
9799         * macgui.h (No_Cursor): Define as 0 for Mac.
9800         (XRectangle): Add X compatible rectangle type.
9801         (NativeRectangle): Declare as Rect for Mac.
9802         (CONVERT_TO_XRECT, CONVERT_FROM_XRECT, STORE_NATIVE_RECT): New macros.
9804         * macfns.c (x_set_mouse_color): Setup hand_cursor.
9805         (x_set_cursor_color): Use x_display_and_set_cursor.
9807         * Makefile.in (xdisp.o): Add dependency on blockinput.h and files
9808         included from it.  Add dependency on keymap.h.
9810         * makefile.w32-in (xdisp.o): Add dependency on keymap.h.
9812 2003-03-21  Kenichi Handa  <handa@m17n.org>
9814         * fileio.c (Fexpand_file_name): Fix previous change.
9816 2003-03-19  Kenichi Handa  <handa@m17n.org>
9818         * fileio.c (Ffile_name_directory): Reconstruct file name by
9819         make_specified_string.
9820         (Ffile_name_nondirectory, Ffile_name_as_directory)
9821         (Fdirectory_file_name, Fexpand_file_name)
9822         (Fsubstitute_in_file_name): Likewise.
9823         (Fread_file_name): Compare decoded homedir with DIR and
9824         DEFAULT_FILENAME.
9826         * alloc.c (make_specified_string): If NCHARS is negative, count
9827         the number of characters.
9829 2003-03-18  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
9831         * gtkutil.c (xg_frame_cleared): Call gtk_widget_queue_draw for
9832         all widgets.
9834         * gtkutil.h: Removed xg_ignore_next_thumb.
9836 2003-03-18  Kenichi Handa  <handa@m17n.org>
9838         * coding.c (Vchar_coding_system_table): Remove this variable.
9839         (Vcoding_system_safe_chars): New variable.
9840         (intersection): Remove this function.
9841         (find_safe_codings): Don't use Vchar_coding_system_table, but try
9842         all codings in SAFE_CODINGS.
9843         (Ffind_coding_systems_region_internal): Adjust for the change of
9844         find_safe_codings.  Get generic coding systems from
9845         Vcoding_system_safe_chars.
9846         (Fdefine_coding_system_internal): New function.
9847         (syms_of_coding): Defsubr Sdefine_coding_system_internal.
9848         Initialize and staticpro Vcoding_system_safe_chars.
9850 2003-03-18  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
9852         * gtkutil.c (xg_set_toolkit_scroll_bar_thumb): Check if new values
9853         equal old values before updating.
9855         * xterm.c (xg_scroll_callback): Remove xg_ignore_next_thumb.
9857         * gtkutil.c (xg_initialize): Remove xg_ignore_next_thumb.
9859 2003-03-17  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
9861         * gtkutil.c: Removed handle_fixed_child, struct xg_last_sb_pos.
9862         (xg_resize_widgets): Don't call foreach(handle_fixed_child).
9863         (xg_gtk_scroll_destroy): Remove free of struct xg_last_sb_pos.
9864         (scroll_bar_button_cb): Set bar->dragging to NIL on button release.
9865         (xg_create_scroll_bar): Pass bar to button event callback.
9866         (xg_find_top_left_in_fixed): New function.
9867         (xg_update_scrollbar_pos): Don't call gdk_window_clear on
9868         whole scroll bar area.  Get old position with
9869         xg_find_top_left_in_fixed, calculate and only clear needed areas.
9870         (xg_set_toolkit_scroll_bar_thumb): Do not adjust scroll bar if
9871         dragging is in progress.  Calculate whole as for Motif.
9872         Remove code that saved last values.  Call gtk_range functions to
9873         set scroll bar sizes.
9875         * gtkutil.h: Removed xg_ignore_next_thumb.
9877 2003-03-17  Juanma Barranquero  <lektu@terra.es>
9879         * makefile.w32-in ($(BLD)/xdisp.$(O)): Add dependency on blockinput.h
9880         and files included from it.
9882 2003-03-18  Stefan Monnier  <monnier@cs.yale.edu>
9884         * keymap.c (accessible_keymaps_1): Break cycles but without preventing
9885         multiple occurrences of the same keymap under different prefixes.
9886         (Faccessible_keymaps): Remove code redundant since 1994-08-03T07:39:00Z!rms@gnu.org.
9888 2003-03-16  Jason Rumney  <jasonr@gnu.org>
9890         * w32gui.h: Use HDC for Display.
9892         * w32term.c (w32_encode_char): Prevent double-byte chars from
9893         crashing Emacs.
9895         * w32fns.c (jpeg_load, png_load, slurp_file): Read image files
9896         as binary.
9898 2003-03-16  Juanma Barranquero  <lektu@terra.es>
9900         * xdisp.c (x_produce_glyphs): Use FRAME_BASELINE_OFFSET.
9902 2003-03-16  Kim F. Storm  <storm@cua.dk>
9904         The following changes consolidate some of the gui-independent
9905         parts of the processing and drawing of "glyph strings" from
9906         xterm.c, w32term.c, and macterm.c into xdisp.c.
9908         * dispextern.h (struct glyph): Reduce face_id member from 22 to
9909         21 bits (this reduces number of faces from 4M to 2M).
9910         Replace W32 specific w32_font_type member (2 bits) by generic
9911         font_type member (3 bits) for portability.
9912         (FONT_TYPE_UNKNOWN): New define, default for font_type member.
9913         (enum draw_glyphs_face): Define here.
9914         (struct glyph_string): Define here.  Merge W32 and X versions.
9915         (struct redisplay_interface): New members per_char_metric,
9916         encode_char, compute_glyph_string_overhangs, draw_glyph_string.
9917         (VCENTER_BASELINE_OFFSET): Define here.
9918         (dump_glyph_string, x_get_glyph_overhangs, x_produce_glyphs)
9919         (x_draw_glyphs, notice_overwritten_cursor): Declare prototypes here.
9921         * xdisp.c: Consolidate gui-independent "glyph string" code here.
9922         (dump_glyph_string): Moved here.
9923         (init_glyph_string, append_glyph_string_lists, append_glyph_string)
9924         (prepend_glyph_string_lists, get_glyph_face_and_encoding)
9925         (fill_composite_glyph_string, fill_glyph_string)
9926         (fill_image_glyph_string, fill_stretch_glyph_string)
9927         (left_overwritten, left_overwriting, right_overwritten)
9928         (right_overwriting, get_char_face_and_encoding)
9929         (set_glyph_string_background_width, compute_overhangs_and_x)
9930         (append_glyph, append_composite_glyph, produce_image_glyph)
9931         (take_vertical_position_into_account, append_stretch_glyph)
9932         (produce_stretch_glyph): New generic functions (based on X version).
9933         Call platform specific functions through rif.
9934         (INIT_GLYPH_STRING): New macro, hides W32 details.
9935         (BUILD_STRETCH_GLYPH_STRING, BUILD_IMAGE_GLYPH_STRING)
9936         (BUILD_CHAR_GLYPH_STRINGS, BUILD_COMPOSITE_GLYPH_STRING)
9937         (BUILD_GLYPH_STRINGS): Generic macros (based on X version).
9938         (x_draw_glyphs, x_get_glyph_overhangs, x_produce_glyphs)
9939         (notice_overwritten_cursor):
9940         Generic functions exported to platform modules.  Users changed.
9942         * xterm.h (FONT_DESCENT, FRAME_X_OUTPUT, FRAME_BASELINE_OFFSET)
9943         (FONT_TYPE_FOR_UNIBYTE, FONT_TYPE_FOR_MULTIBYTE)
9944         (STORE_XCHAR2B, XCHAR2B_BYTE1, XCHAR2B_BYTE2):
9945         New macros for consolidated code.
9947         * xterm.c: Remove consolidated defines and code.
9948         (x_per_char_metric, x_encode_char)
9949         (x_compute_glyph_string_overhangs): Adapt to RIF requirements.
9950         (x_redisplay_interface): Add new members.
9952         * w32gui.h (Display): Add dummy typedef for consolidation.
9953         (XChar2b): Define alias for wchar_t for consolidation.
9954         (STORE_XCHAR2B, XCHAR2B_BYTE1, XCHAR2B_BYTE2): New macros.
9956         * w32term.h (FRAME_X_OUTPUT, FRAME_X_WINDOW, FRAME_X_DISPLAY)
9957         (FONT_TYPE_FOR_UNIBYTE, FONT_TYPE_FOR_MULTIBYTE):
9958         New macros for consolidation.
9960         * w32term.c: Remove consolidated defines and code.
9961         (BUILD_WCHAR_T, BYTE1, BYTE2): Macros removed; callers changed
9962         to use STORE_XCHAR2B, XCHAR2B_BYTE1, XCHAR2B_BYTE2 instead.
9963         (w32_per_char_metric): Change font_type arg to int for RIF.
9964         (w32_encode_char): Return int according to RIF requirements.
9965         (w32_compute_glyph_string_overhangs): Adapt to RIF.
9966         (w32_get_glyph_overhangs): New function for RIF.  Uses generic
9967         x_get_glyph_overhangs.
9968         (w32_redisplay_interface): Add new members.
9970         * macgui.h (XChar2b): Move typedef here for consolidation.
9971         (STORE_XCHAR2B, XCHAR2B_BYTE1, XCHAR2B_BYTE2): New macros.
9973         * macterm.h (FRAME_X_OUTPUT, FRAME_X_WINDOW, FRAME_X_DISPLAY):
9974         (FONT_TYPE_FOR_UNIBYTE, FONT_TYPE_FOR_MULTIBYTE): New macros for
9975         consolidation.
9977         * macterm.c: Remove consolidated defines and code.
9978         (mac_per_char_metric): New function for RIF.
9979         (mac_encode_char): Adapt to new RIF requirements.
9980         (mac_compute_glyph_string_overhangs): Adapt for RIF.
9981         (x_redisplay_interface): Add new members.
9983 2003-03-15  Stefan Monnier  <monnier@cs.yale.edu>
9985         * keymap.c (Vmenu_events): New var.
9986         (syms_of_keymap): Initialize it.
9987         (where_is_internal): Check more carefully what is a menu event.
9989 2003-03-14  Richard M. Stallman  <rms@gnu.org>
9991         * lread.c (read1): After #!, exit loop on eof.
9993 2003-03-14  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
9995         * gtkutil.h: Add declaration for xg_frame_cleared.
9997         * xterm.c (x_clear_frame): Call xg_frame_cleared for GTK.
9999         * gtkutil.c (struct xg_last_sb_pos): New structure.
10000         (handle_fixed_child): New function.
10001         (xg_resize_widgets): Call handle_fixed_child on all scroll bar widgets
10002         and force a redraw on them.
10003         (xg_gtk_scroll_destroy): Free struct xg_last_sb_pos also.
10004         (xg_create_scroll_bar): Add struct xg_last_sb_pos to scroll bar
10005         so we can avoid unneeded redraws.
10006         (xg_update_scrollbar_pos): Invalidate data in xg_last_sb_pos
10007         and force a redraw on the scroll bar.
10008         (xg_set_toolkit_scroll_bar_thumb): Do not change/redraw scroll bar
10009         if xg_last_sb_pos shows the positions are up to date.
10010         (xg_frame_cleared): New function.
10012 2003-03-13  Kenichi Handa  <handa@m17n.org>
10014         * coding.c (Fdetect_coding_region): Fix docstring.
10015         (Fdetect_coding_string): Fix docstring.
10017 2003-03-13  Andreas Schwab  <schwab@suse.de>
10019         * gtkutil.c: Add prototype for create_menus.
10021         * data.c (long_to_cons): Fix type of top.
10023         * xselect.c (selection_data_to_lisp_data): Use int instead of
10024         long for an integer of size 4.
10026         * gtkutil.c (xg_update_frame_menubar): Add missing return value.
10027         (xg_tool_bar_help_callback): Likewise.
10029 2003-03-12  Andreas Schwab  <schwab@suse.de>
10031         * xterm.c (x_term_init) [USE_GTK]: Fix typo.
10033 2003-03-12  Kim F. Storm  <storm@cua.dk>
10035         The following changes consolidate the fringe handling from
10036         xterm.c, w32term.c, and macterm.c into xdisp.c.
10038         * xdisp.c: Consolidate fringe handling code here.
10039         (left_bits, right_bits, continued_bits, continuation_bits)
10040         (ov_bits, zv_bits): Define fringe bitmaps.
10041         (fringe_bitmaps): New array holding fringe bitmaps.
10042         (draw_fringe_bitmap): Draw a specific bitmap; call display
10043         specific drawing routine via rif->draw_fringe_bitmap.
10044         (draw_row_fringe_bitmaps): Generic replacement for
10045         x_draw_row_fringe_bitmaps; all callers changed.
10046         (compute_fringe_widths): Generic replacement for
10047         x_compute_fringe_widths; all callers changed.
10049         * dispextern.h (enum fringe_bitmap_type): Define here.
10050         (struct fringe_bitmap, struct draw_fringe_bitmap_params): New.
10051         (fringe_bitmaps): Declare extern.
10052         (struct redisplay_interface): New member draw_fringe_bitmap.
10053         (draw_row_fringe_bitmaps, compute_fringe_widths): Declare extern.
10055         * xterm.c: Remove generic fringe code.
10056         (x_draw_fringe_bitmap): Only perform actual fringe drawing.
10057         (x_redisplay_interface): Add x_draw_fringe_bitmap member.
10059         * w32term.c: Remove generic fringe code.
10060         (w32_draw_fringe_bitmap): Only perform actual fringe drawing.
10061         (w32_redisplay_interface): Add w32_draw_fringe_bitmap member.
10063         * macterm.c: Remove generic fringe code.
10064         (x_draw_fringe_bitmap): Only perform actual fringe drawing.
10065         (x_redisplay_interface): Add x_draw_fringe_bitmap member.
10067 2003-03-11  Stefan Monnier  <monnier@cs.yale.edu>
10069         * print.c (Fprin1_to_string): Return unibyte string if possible.
10071 2003-03-09  David Kastrup  <dak@gnu.org>
10073         * process.c (read_process_output): We have allocated enough space
10074         for readmax and carryover, so actually use the alloted space.
10076 2003-03-09  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
10078         * keyboard.c (make_lispy_event): Extend mouse_syms if needed for
10079         toolkit scrollbar click.
10081         * xterm.c (x_window_to_scroll_bar): Call xg_get_scroll_id_for_window
10082         for USE_GTK.
10083         (x_scroll_bar_handle_click): Use this function for toolkit scrollbars
10084         also.
10085         (handle_one_xevent): ButtonPress/Release:  If event is for a toolkit
10086         scrollbar and control is pressed, call x_scroll_bar_handle_click.
10088         * gtkutil.h (xg_get_scroll_id_for_window): Declare.
10090         * gtkutil.c (xg_get_scroll_id_for_window): New function.
10091         (xg_tool_bar_item_expose_callback): New function.
10092         (xg_tool_bar_expose_callback): Call update_frame_tool_bar.
10093         (xg_create_tool_bar): Connect xg_tool_bar_expose_callback to expose
10094         on the tool bar widget.
10095         (update_frame_tool_bar): Connect xg_tool_bar_item_expose_callback
10096         to expose on the tool bar item widgets.
10098 2003-03-08  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
10100         * gtkutil.c (update_frame_tool_bar): Compare pixmap ID instead of
10101         struct image* when deciding to update (struct image* may have been
10102         deleted from the image cache).
10104         * xterm.c (handle_one_xevent): Pass ReparentNotify to Xt even if
10105         the event isn't for a frame (i.e. for dialogs).
10107 2003-03-07  Kenichi Handa  <handa@m17n.org>
10109         * coding.c (CODING_ADD_COMPOSITION_COMPONENT): If the number of
10110         composition components reaches the limit, terminate composing.
10111         (COMPOSITION_OK): New macro.
10112         (detect_coding_iso2022): Use it if an escape sequence for
10113         composition is found.
10114         (coding_restore_composition): Adjust the number of composition
10115         components if it is not sane.
10117 2003-03-06  Juanma Barranquero  <lektu@terra.es>
10119         * w32term.h (struct w32_display_info): Add xrdb member to support
10120         passing resources via -xrm on Windows.
10122         * w32term.c (w32_make_rdb): New function.
10123         (w32_term_init): Use it to initialize xrdb member of w32_display_info
10124         struct.  Delete leftover code.
10126         * w32fns.c (Fx_get_resource, x_get_resource_string): Pass xrdb to check
10127         for resources passed on the command line.
10129         * w32reg.c (w32_get_rdb_resource): New function.
10130         (x_get_string_resource): Use it, so resources passed with -xrm
10131         supercede the ones in the registry.
10133 2003-03-04  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
10135         * xterm.c (x_detect_focus_change): Call x_any_window_to_frame
10136         instead of x_top_window_to_frame.
10138 2003-03-03  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
10140         * xsmfns.c (smc_save_yourself_CB): Add --no-splash to options
10141         when restarting Emacs.
10143 2003-03-03  Richard M. Stallman  <rms@gnu.org>
10145         * buffer.c (Fkill_buffer): Use Frun_hook_with_args_until_failure
10146         to run kill-buffer-query-functions.
10147         (Qkill_buffer_query_functions): New var.
10148         (syms_of_buffer): Init and staticpro it.
10150 2003-03-02  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
10152         * xterm.h (XSync): Define as gdk_window_process_all_updates for GTK.
10154 2003-02-25  Kim F. Storm  <storm@cua.dk>
10156         * xdisp.c (redisplay_window): Fix infinite loop in redisplay.
10157         If centering point failed to make whole line visible and vscroll
10158         is non-zero, disable vscroll and try centering point again.
10160         * lread.c (read1): Accept `single space' syntax like (? x).
10162 2003-02-25  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
10164         * keyboard.c (cancel_hourglass_unwind): Surround with
10165         #ifdef HAVE_X_WINDOWS
10167 2003-02-25  Kenichi Handa  <handa@m17n.org>
10169         * buffer.c (Fset_buffer_multibyte): Pay attention to the buffer
10170         process only when "subprocesses" is defined.
10172 2003-02-24  Stefan Monnier  <monnier@cs.yale.edu>
10174         * syntax.c (back_comment): Only check nestedness of 2nd char if needed.
10176 2003-02-24  Juanma Barranquero  <lektu@terra.es>
10178         * callint.c (fix_command): Declare as static void and move before
10179         Fcall_interactively.
10181         * xdisp.c (Qwhen): Declare external; it's now defined in callint.c.
10182         (syms_of_xdisp): Don't initialize Qwhen.
10184 2003-02-23  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
10186         * keyboard.c (cancel_hourglass_unwind): New function.
10187         (command_loop_1): Cancel hourglass with unwind-protect.
10189 2003-02-23  Richard M. Stallman  <rms@gnu.org>
10191         * callint.c (fix_command): New subroutine, from Fcall_interactively.
10192         Detect (when ... (region-beginning)) etc.
10193         (Fcall_interactively): Call fix_command.
10194         (Qif, Qwhen): New variables.
10195         (syms_of_callint): Init and staticpro them.
10197         * regex.c (print_partial_compiled_pattern): Output to stderr.
10199 2003-02-23  Kai Gro\e,A_\e(Bjohann  <kai.grossjohann@uni-duisburg.de>
10201         * dired.c (directory_files_internal): Don't expand directory.
10202         (Fdirectory_files, Fdirectory_files_and_attributes): Do it here
10203         instead.  From Lars Hansen <larsh@math.ku.dk>.
10205 2003-02-22  Stefan Monnier  <monnier@cs.yale.edu>
10207         * fns.c (string_to_multibyte): Remove unused var i.
10208         (Flanginfo): Fix int/Lisp_Object mixup.
10209         (void_call2): New fun.
10210         (Fmap_char_table): Use it in place of call2.
10212         * xfaces.c (x_face_list_fonts): Fix int/Lisp_Object mixup.
10214         * macros.c (Fstart_kbd_macro): Remove redundant assignment.
10216         * keymap.c (copy_keymap_1): Make it static.
10218         * alloc.c (Fgarbage_collect): Don't use XSETFLOAT.
10220 2003-02-22  David Ponce  <david@dponce.com>
10222         * lread.c (Fload): Don't check STRING_MULTIBYTE.
10224 2003-02-21  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
10226         * process.h: Removed subtty field from struct Lisp_Process.
10228         * process.c (create_process): Remove setting of subtty.
10229         (emacs_get_tty_pgrp): New function.
10230         (Fprocess_running_child_p, process_send_signal):
10231         Call emacs_get_tty_pgrp instead of ioctl.
10232         (process_send_signal): Call EMACS_KILLPG if ioctl TIOCSIGSEND fails.
10234 2003-02-21  Kai Gro\e,A_\e(Bjohann  <kai.grossjohann@uni-duisburg.de>
10236         * keymap.c (Fdefine_key): Doc fix.
10238 2003-02-21  Juanma Barranquero  <lektu@terra.es>
10240         Port of patch for RC by Klaus Zeitler <kzeitler@lucent.com>.
10242         * s/hpux10.h: Define POLL_INTERRUPTED_SYS_CALL, not
10243         POLLING_PROBLEM_IN_SELECT.
10245         * s/hpux11.h: Include hpux10-20.h instead of hpux10.h.
10246         Delete #undef of POLLING_PROBLEM_IN_SELECT.
10248         * s/hpux10-20.h: New file.
10250         * process.c (wait_reading_process_input):
10251         Use POLL_INTERRUPTED_SYS_CALL, not POLLING_PROBLEM_IN_SELECT.
10253 2003-02-20  Kenichi Handa  <handa@m17n.org>
10255         * fontset.c (check_fontset_name): If NAME is nil, return the
10256         default fontset.
10257         (override_font_info): New function.
10258         (Fset_fontset_font): Document that NAME nil means the default fontset.
10259         (Ffontset_info): If FONTSET is not the default fontset, merge
10260         FONTSET onto the copy of the default fontset, and work on that
10261         copy.  Document that NAME nil means the default fontset.
10262         (Ffontset_font): Document that NAME nil means the default fontset.
10264         * process.c (setup_process_coding_systems): If the process's
10265         in/out descriptor is -1, do nothing.
10267 2003-02-19  Andreas Schwab  <schwab@suse.de>
10269         * lisp.h (Fcancel_kbd_macro_events, Fstring_to_multibyte):
10270         Add prototypes.
10272 2003-02-19  Kenichi Handa  <handa@m17n.org>
10274         * xfaces.c (try_alternative_families): Try all scalable fonts if
10275         Vscalable_fonts_allowed is not Qt.
10277 2003-02-19  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
10279         * xfaces.c (x_face_list_fonts): Set *pfonts to 0 if no fonts found.
10281 2003-02-18  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
10283         * xterm.c (x_list_fonts): If maxnames is less than 0, get all font
10284         names.
10286         * xfaces.c (x_face_list_fonts): Allocate struct font_name here.
10287         (sorted_font_list): Move allocation of struct font_name to
10288         x_face_list_fonts.
10289         (Fx_font_family_list): Set font-list-limit to -1 to get all font names.
10290         (Fx_list_fonts): Set maxnames to -1 to get all font names.
10292 2003-02-18  Kim F. Storm  <storm@cua.dk>
10294         * lread.c (read1): Fix last change.
10295         "`" is not always special.  Allow "?" after a character constant.
10297 2003-02-18  Andrew Choi  <akochoi@shaw.ca>
10299         * unexmacosx.c (copy_data_segment): Also copy __cfstring section.
10301 2003-02-18  Andreas Schwab  <schwab@suse.de>
10303         * window.c (window_scroll_pixel_based): Move outside a
10304         multi-glyph character before setting new window start.
10306         * xdisp.c (in_display_vector_p): New function.
10307         * dispextern.h (in_display_vector_p): Declare.
10309 2003-02-18  Kim F. Storm  <storm@cua.dk>
10311         * lread.c (read1): Fix and relax read syntax.
10312         Recognize "[", ";", "#", and "?" after a dotted-pair dot.
10313         Only recognize "," after dotted-pair dot if inside backquote.
10314         Never include "`" or "," (inside backquote) in a symbol.
10315         Allow dotted-pair dot after a character constant.
10316         Allow "`" and "," (inside backquote) after a character constant.
10318 2003-02-17  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
10320         * gtkutil.c (xg_tool_bar_expose_callback): New function.
10321         (xg_create_tool_bar): Force style of tool bar to be horizontal with
10322         icons.  Set name of tool bar to emacs-toolbar.
10323         (update_frame_tool_bar): Connect expose event to
10324         xg_tool_bar_expose_callback.
10326 2003-02-17  Richard M. Stallman  <rms@gnu.org>
10328         * keyboard.c (this_command_key_count_reset): New variable.
10329         Initiatize to 0 where this_command_key_count is set.
10330         (read_char): Save and restore this_command_key_count_reset
10331         around input method code.
10332         (read_char): If this_command_key_count_reset, echo reread commands.
10333         (Freset_this_command_lengths): Set this_command_key_count_reset to 1.
10335 2003-02-17  Kenichi Handa  <handa@m17n.org>
10337         * fns.c (string_to_multibyte): Always return a multibyte string.
10339 2003-02-16  Jason Rumney  <jasonr@gnu.org>
10341         * w32fns.c (w32_list_bdf_fonts, w32_list_fonts):
10342         Negative max_fonts parameter means list all.
10344 2003-02-14  Dave Love  <fx@gnu.org>
10346         * fns.c (Flanginfo): Doc fix.
10348 2003-02-13  Kim F. Storm  <storm@cua.dk>
10350         * lread.c (read_escape): Interpret \s as a SPACE character, except
10351         for \s-X in a character constant which still is the super modifier.
10352         (read1): Signal an `invalid read syntax' error if a character
10353         constant is immediately followed by a digit or symbol character.
10355         * search.c (Fmatch_data): Doc fix.  Explicitly state that
10356         match-data is undefined if last search failed.
10358         * keymap.c (Fcommand_remapping): Rename from Fremap_command.
10359         All uses changed.
10361 2003-02-12  Juanma Barranquero  <lektu@terra.es>
10363         * eval.c (Fdefmacro): Fix typo.
10365 2003-02-12  Kim F. Storm  <storm@cua.dk>
10367         * macros.c (Fstart_kbd_macro): If appending, and last keyboard
10368         macro is a string, convert meta modifiers in string when copying
10369         the string into a vector.
10371 2003-02-11  Kim F. Storm  <storm@cua.dk>
10373         * keymap.c (Fremap_command): Return nil if arg is not a symbol.
10375 2003-02-11  Kenichi Handa  <handa@m17n.org>
10377         * Makefile.in (lisp, shortlisp): Add malayalam.el and tamil.el.
10379 2003-02-10  Kim F. Storm  <storm@cua.dk>
10381         * process.c: Doc fixes.
10382         (syms_of_process): Add `:' prefix to QCfilter_multibyte.
10384 2003-02-10  Kenichi Handa  <handa@m17n.org>
10386         * fns.c (Fstring_to_multibyte): Fix typo in the docstring.
10388         * process.c (QCfilter_multibyte): New variable.
10389         (setup_process_coding_systems): New function.
10390         (Fset_process_buffer, Fset_process_filter):
10391         Call setup_process_coding_systems.
10392         (Fstart_process): Initialize the member `filter_multibyte' of
10393         struct Lisp_Process.
10394         (create_process): Call setup_process_coding_systems.
10395         (Fmake_network_process): New keyward `:filter-multibyte'.
10396         Initialize the member `filter_multibyte' of struct Lisp_Process.
10397         Call setup_process_coding_systems.
10398         (server_accept_connection): Call setup_process_coding_systems.
10399         (read_process_output): If the process has a filter, decide the
10400         multibyteness of a string to given to the filter by
10401         `filter_multibyte' member of the process.  If the process doesn't
10402         have a filter and the result of conversion is unibyte, use
10403         Fstring_to_multibyte (not Fstring_make_multibyte) to get the
10404         multibyte form.
10405         (Fset_process_coding_system): Call setup_process_coding_systems.
10406         (Fset_process_filter_multibyte): New function.
10407         (Fprocess_filter_multibyte_p): New function.
10408         (syms_of_process): Intern and staticpro QCfilter_multibyte.
10409         Defsubr Sset_process_filter_multibyte and
10410         Sprocess_filter_multibyte_p.
10412         * process.h (struct Lisp_Process): New member filter_multibyte.
10414         * lisp.h (setup_process_coding_systems): Add prototype.
10416         * buffer.c (Fset_buffer_multibyte): If the current buffer has a
10417         process, update coding systems for the process.
10419 2003-02-09  Kenichi Handa  <handa@m17n.org>
10421         * fns.c (string_to_multibyte): New function.
10422         (Fstring_to_multibyte): New function.
10423         (syms_of_fns): Defsubr it.
10425 2003-02-08  Andreas Schwab  <schwab@suse.de>
10427         * Makefile.in (EXEEXT): Define to @EXEEXT@ and use this variable
10428         instead of the substitution.
10430 2003-02-08  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
10432         * xterm.c (x_make_frame_visible): Call gtk_window_deiconify.
10434         * xmenu.c (menu_position_func): Adjust menu popup position so that
10435         the menu is fully visible.
10437 2003-02-07  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
10439         * xterm.c (x_text_icon, x_raise_frame, x_lower_frame)
10440         (x_make_frame_invisible, x_wm_set_icon_position):
10441         Use FRAME_OUTER_WINDOW instead of ifdef X_TOOLKIT/else/endif.
10443         * xfns.c (x_set_name, x_set_title): Ditto.
10445 2003-02-04  Richard M. Stallman  <rms@gnu.org>
10447         * keyboard.c (echo_now): Update before_command_echo_length.
10448         (Freset_this_command_lengths): Reset this_command_key_count etc.
10449         immediately rather than arranging to do it later.
10450         (before_command_key_count_1, before_command_echo_length_1)
10451         (before_command_restore_flag): Vars deleted.
10452         (add_command_key): Don't handle before_command_restore_flag.
10453         (read_char, record_menu_key): Don't update before_command_key_count or
10454         before_command_echo_length.
10455         (read_char): Don't handle before_command_restore_flag.
10457         * keyboard.c (command_loop_1): Don't call adjust_point_for_property
10458         in direct-output clauses if it wouldn't be called in the ordinary case.
10460 2003-02-04  Kim F. Storm  <storm@cua.dk>
10462         * keyboard.c (syms_of_keyboard) <this-original-command>: Doc fix.
10464 2003-02-02  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
10466         * gtkutil.c (remove_from_container): Copying list is not needed.
10467         (xg_update_menubar, xg_update_menu_item, xg_update_submenu)
10468         (xg_modify_menubar_widgets, update_frame_tool_bar): Call g_list_free
10469         on list returned from gtk_container_get_children to avoid memory leak.
10471 2003-02-01  Jason Rumney  <jasonr@gnu.org>
10473         * w32fns.c (w32_create_pixmap_from_bitmap_data): Use alloca for
10474         local malloc.
10475         [HAVE_XPM]: Avoid clashes with XColor, XImage and Pixel
10476         definitions in xpm.h.
10477         (init_xpm_functions): New function.
10478         (xpm_load): Sync with xfns.c.  Adapt for Windows version of libXpm.
10479         (init_external_image_libraries): Try to load libXpm.dll.
10481         * fileio.c (Fcopy_file) [WINDOWSNT]: Reverse logic for setting
10482         timestamp.
10484 2003-01-31  Dave Love  <fx@gnu.org>
10486         * syntax.c (Fskip_chars_forward)
10487         (open-paren-in-column-0-is-defun-start): Doc fix.
10489 2003-01-31  Joe Buehler  <jhpb@draco.hekimian.com>
10491         * fileio.c: Support // at start of name for Cygwin (just added proper
10492         preprocessor tests).
10494         * keyboard.c: Port to Cygwin (just added proper preprocessor tests).
10496         * Makefile.in: Use @EXEEXT@ for Cygwin.
10498         * mem-limits.h: Added ifdef to define BSD4_2 for Cygwin.
10500         * s/cygwin.h: Added for Cygwin port.
10502 2003-01-31  Juanma Barranquero  <lektu@terra.es>
10504         * w32fns.c (DrawText): Kludge to avoid a redefinition on Windows
10505         when including gif_lib.h.
10506         (init_gif_functions, init_tiff_functions): New functions.
10507         (gif_load, tiff_load): Sync with xfns.c version.  Adjust colors for
10508         Windows.  Disable color table lookups.  Call library functions
10509         through pointers determined at runtime.
10510         (init_external_image_libraries): Try to load libungif.dll and
10511         libtiff.dll.
10513 2003-01-31  Kenichi Handa  <handa@m17n.org>
10515         * xdisp.c (SKIP_GLYPHS): New macro.
10516         (set_cursor_from_row): Skip all glyphs that comes from overlay string.
10518 2003-01-30  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
10520         * gtkutil.c (free_frame_tool_bar): Remove debug printf.
10522 2003-01-30  Dave Love  <fx@gnu.org>
10524         * alloc.c (Vgc_elapsed, gcs_done): New variables.
10525         (Fgarbage_collect): Use them.
10526         (init_alloc, syms_of_alloc): Set them up.
10528 2003-01-30  Juanma Barranquero  <lektu@terra.es>
10530         * w32fns.c (init_external_image_libraries): Add missing operator.
10532 2003-01-29  Jason Rumney  <jasonr@gnu.org>
10534         * w32fns.c (init_external_image_libraries): Allow jpeg-62.dll as
10535         an alternative name for jpeg.dll.
10537 2003-01-29  Kenichi Handa  <handa@m17n.org>
10539         * xdisp.c (set_cursor_from_row): Pay attention to string display
10540         properties.
10542 2003-01-28  Benjamin Riefenstahl  <Benjamin.Riefenstahl@epost.de>
10544         * macterm.c (keycode_to_xkeysym_table): Add <tab>, <backspace>,
10545         <escape>.
10546         (keycode_to_xkeysym_table): Reformat and add more comments.
10547         (XTread_socket): Drop special case for backspace.
10549 2003-01-28  Andrew Choi  <akochoi@shaw.ca>
10551         * macfns.c (x_to_mac_color): Correct the order for parsing the RGB
10552         values in old-style RGB specs.
10554 2003-01-27  Juanma Barranquero  <lektu@terra.es>
10556         * w32fns.c (init_external_image_libraries): Try alternate names for the
10557         jpeg dll.
10559 2003-01-27  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
10561         * gtkutil.c (create_dialog, xg_separator_p)
10562         (xg_item_label_same_p, xg_update_menu_item): Check for NULL string
10563         before calling strcmp or strlen.
10565 2003-01-26  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
10567         * gtkutil.c (update_frame_tool_bar): Call prepare_image_for_display
10568         and handle image load failure.
10570 2003-01-26  Jason Rumney  <jasonr@gnu.org>
10572         * w32fns.c (init_jpeg_functions, jpeg_resync_to_restart_wrapper):
10573         New functions.
10574         (jpeg_load): Sync with xfns.c version.  Adjust colors for Windows.
10575         Disable color table lookups.  Call jpeg library functions
10576         through pointers determined at runtime.
10577         (init_external_image_libraries): Try to load jpeg.dll.
10579 2003-01-25  Richard M. Stallman  <rms@gnu.org>
10581         * lisp.h: Declare format2 instead of format1.
10583         * fileio.c (barf_or_query_if_file_exists):
10584         Call format2 instead of format1.
10586         * editfns.c (format2): New function, replaces format1
10587         but takes exactly two Lisp Objects as format args.
10589         * buffer.c (Fkill_buffer): Call format2 instead of format1.
10591 2003-01-25  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
10593         * xterm.h: Change to return value of x_dispatch_event to int.
10595         * xterm.c (x_filter_event): New function.
10596         (event_handler_gdk, XTread_socket): Call x_filter_event.
10597         (x_dispatch_event): Change to return value of finish.
10598         (event_handler_gdk): Use return value from x_dispatch_event.
10600         * xfns.c (x_window): Call create_frame_xic for GTK version to
10601         initialize input methods.
10603         * gtkutil.h: Add (void) prototypes.
10605         * gtkutil.c (create_menus): Remove code that puts the help menu to
10606         the right.
10608 2003-01-25  Jason Rumney  <jasonr@gnu.org>
10610         * w32fns.c (XPutPixel): Handle monochrome images; used for masks.
10611         [HAVE_PNG]: Sync with xfns.c version.
10612         (png_load): Adjust colors for Windows.  Use Windows
10613         bitmaps.  Disable color table lookups.
10614         (DEF_IMGLIB_FN, LOAD_IMGLIB_FN): New macros.
10615         (init_png_functions): New function.
10616         (png_read_from_memory, png_load): Call png library functions
10617         through pointers determined at runtime.
10618         (QCloader, QCbounding_box, QCpt_width, QCpt_height): Declare.
10619         (init_external_image_libraries): New function.
10620         (init_xfns): Call it.
10622 2003-01-24  Andreas Schwab  <schwab@suse.de>
10624         * minibuf.c (Fminibuffer_message): Verify type of parameter.
10626 2003-01-24  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
10628         * gtkutil.c (xg_initialize): Initialize id_to_widget here instead
10629         of static initializer.
10631 2003-01-24  Dave Love  <fx@gnu.org>
10633         * s/gnu-linux.h (GC_SETJMP_WORKS, GC_MARK_STACK): Define for more
10634         architectures.
10636         * alloc.c (mark_stack) [!GC_LISP_OBJECT_ALIGNMENT && __GNUC__]:
10637         Use __alignof__.
10639 2003-01-24  Kenichi Handa  <handa@m17n.org>
10641         * keyboard.c (adjust_point_for_property): New second arg MODIFIED.
10642         It it is nonzero, don't pretend that an invisible area doesn't exist.
10643         (command_loop_1): Call adjust_point_for_property with proper
10644         second arg.
10646 2003-01-22  Jason Rumney  <jasonr@gnu.org>
10648         Sync changes with xterm.c and xfns.c.
10650         * w32term.c (x_draw_glyph_string_foreground)
10651         (x_draw_composite_glyph_string_foreground): Implement overstriking.
10653         * w32term.c (x_write_glyphs): Clear phys_cursor_on_p if current
10654         phys_cursor's hpos is overwritten.  This is still not completely
10655         correct, as it doesn't really make sense to use hpos at all to
10656         get the cursor glyph (as that is relative to the width of the
10657         characters on the line, which may have changed during the update).
10659         * w32term.c (notice_overwritten_cursor): Handle the special case
10660         of the cursor being in the first blank non-text line at the
10661         end of a window.
10663         * w32term.c (x_draw_hollow_cursor, x_draw_bar_cursor)
10664         (x_draw_phys_cursor_glyph): Set phys_cursor_width here.
10665         Compute from the x position returned by x_draw_glyphs.
10667         (x_display_and_set_cursor): Don't set phys_cursor_width here,
10668         except for NO_CURSOR and system caret, to make phys_cursor_width
10669         contain what its name suggests.
10670         (notice_overwritten_cursor): Consider the cursor image erased if
10671         the output area intersects the cursor image in y-direction.
10673         * w32term.c (note_mode_line_or_margin_highlight): Rename from
10674         note_mode_line_highlight and extend.
10676         * w32term.c (last_window): New variable.
10677         (w32_read_socket) <WM_MOUSEMOVE>: Generate SELECT_WINDOW_EVENTs.
10678         (note_mouse_movement): Remove reimplemented code in #if 0.
10680         * w32fns.c (x_set_cursor_type): Set cursor_type_changed,
10681         not update_mode_lines, and always set it to 1.
10683 2003-01-21  Jason Rumney  <jasonr@gnu.org>
10685         * w32fns.c (IDC_HAND): Define it if system headers don't.
10687 2003-01-21  KOBAYASHI Yasuhiro  <kobayays@otsukakj.co.jp>
10689         * w32term.h (struct w32_output): New member hand_cursor.
10690         (WM_EMACS_SETCURSOR): New message definition.
10692         * w32term.c (note_mode_line_highlight): Delete #if 0 to enable
10693         function w32_define_cursor.
10694         (note_mouse_highlight): Initialize, setup cursor accoding to mouse
10695         position, change member name output_data.x to output_data.w32 and
10696         add function w32_define_cursor.
10697         (show_mouse_face): Delete #if 0 to enable function w32_define_cursor
10698         and change member name output_data.x to output_data.w32.
10699         (w32_initialize_display_info):
10700         Setup dpyinfo->vertical_scroll_bar_cursor.
10702         * w32fns.c (Vx_hand_shape): New variable.
10703         (w32_wnd_proc): Add message entries for WM_SETCURSOR and
10704         WM_EMACS_SETCURSOR.
10705         (x-create-frame): Setup Cursor types.
10707 2003-01-21  David Ponce  <david@dponce.com>
10709         * w32term.c (w32_encode_char): For DIM=1 charset, set
10710         ccl->reg[2] to -1 before calling ccl_driver.  (Sync. with xterm.c
10711         x_encode_char change by Kenichi Handa <handa@m17n.org> on
10712         2002-09-30.)
10713         (w32_draw_relief_rect): Declare all args.
10714         (w32_define_cursor): New.
10716         * w32fns.c (w32_load_cursor): New function.
10717         (w32_init_class): Use it.
10718         (x_put_x_image): Declare all args.
10720 2003-01-21  Richard Dawe  <rich@phekda.freeserve.co.uk>
10722         * Makefile.in (ALL_CFLAGS): Include MYCPPFLAGS, not MYCPPFLAG.
10724 2003-01-21  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
10726         * gtkutil.c: Must include stdio.h before termhooks.h
10728 2003-01-21  Dave Love  <fx@gnu.org>
10730         * alloc.c (Fgc_status): Print zombie list.
10731         (mark_maybe_object) [GC_MARK_STACK==GC_USE_GCPROS_CHECK_ZOMBIES]:
10732         Fix assignment of zombies.
10733         (Fgarbage_collect) [GC_MARK_STACK==GC_USE_GCPROS_CHECK_ZOMBIES]:
10734         Don't take car of non-cons.
10736         * s/sol2-5.h (GC_SETJMP_WORKS, GC_MARK_STACK): Define.
10738         * s/sunos4-0.h (GC_SETJMP_WORKS, GC_MARK_STACK): Define.
10740 2003-01-20  David Ponce  <david@dponce.com>
10742         * w32menu.c (digest_single_submenu): Declare all args.
10744         Sync with 2002-12-23  Richard M. Stallman  <rms@gnu.org>
10745         changes in xmenu.c:
10747         (parse_single_submenu): Use individual keymap's prompt
10748         string as pane name, if there is one.
10749         (set_frame_menubar): Save menu_items_n_panes from each call to
10750         parse_single_submenu and use it when calling digest_single_submenu.
10752 2003-01-20  Steven Tamm  <steventamm@mac.com>
10754         * macterm.c (XTread_socket): Checks for valid, visible window
10755         before sending a scroll-wheel event.
10757 2003-01-20  Richard M. Stallman  <rms@gnu.org>
10759         * xdisp.c (redisplay_window): If mini window's buffer is not
10760         a minibuffer, then redisplay it like other windows.
10762 2003-01-20  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
10764         * gtkutil.c (xg_create_frame_widgets): Check if there is an
10765         external tool bar before setting tool bar height.
10767 2003-01-19  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
10769         * xterm.c (handle_one_xevent): Surround popup_activated
10770         with #ifdef:s for non-toolkit version.
10772         * Makefile.in (XOBJ): Add gtkutil.o if USE_GTK
10773         (gtkutil.o): New file.
10774         (TOOLKIT_DEFINES): Set to -DUSE_GTK if HAVE_GTK.
10775         (LIBW): Set to @GTK_LIBS@ if USE_GTK.
10777         * gtkutil.c: New file for GTK version.
10779         * gtkutil.h: New file for GTK version.
10781         * xterm.h: Add xt_or_gtk_widget.
10782         Include gtk files for USE_GTK.
10783         (struct x_output): Add toolbar_height.
10784         (struct x_output): Add GTK widgets and Gdk size_hints.
10785         (GTK_WIDGET_TO_X_WIN, FRAME_GTK_OUTER_WIDGET, FRAME_GTK_WIDGET)
10786         (FRAME_OUTER_WINDOW): New macros for USE_GTK.
10787         (FRAME_OUTER_TO_INNER_DIFF_Y): Add FRAME_TOOLBAR_HEIGHT to calculation.
10789         * xterm.c: Include gtkutil.h for USE_GTK.
10790         (free_frame_menubar): Declare extern void for USE_GTK.
10791         (note_mouse_highlight): Check popup_activated for USE_GTK.
10792         (xt_action_hook): Don't compile if USE_GTK.
10793         (x_scroll_bar_to_input_event): Use CurrentTime for USE_GTK.
10794         (xg_scroll_callback): New function.
10795         (x_create_toolkit_scroll_bar): Call xg_create_scroll_bar for USE_GTK.
10796         (x_set_toolkit_scroll_bar_thumb): Call xg_set_toolkit_scroll_bar_thumb
10797         for USE_GTK.
10798         (x_scroll_bar_create): Call xg_update_scrollbar_pos and
10799         xg_show_scroll_bar for USE_GTK.
10800         (x_scroll_bar_remove): Call xg_remove_scroll_bar for USE_GTK.
10801         (XTset_vertical_scroll_bar): Call xg_update_scrollbar_pos for USE_GTK.
10802         (event_handler_gdk): New function for USE_GTK.
10803         (handle_one_xevent): Call xg_resize_widgets for USE_GTK.
10804         (handle_one_xevent): Make sure widget is mapped before
10805         calling x_real_positions for USE_GTK.
10806         (XTread_socket): Add GTK event loop for USE_GTK.
10807         (x_set_window_size): Call xg_frame_set_char_size for USE_GTK.
10808         (x_make_frame_visible): Call gtk_widget_show_all for USE_GTK.
10809         (x_make_frame_invisible): Call gtk_widget_hide for USE_GTK.
10810         (x_iconify_frame): Add code for USE_GTK.
10811         (x_free_frame_resources): Call gtk_widget_destroy for USE_GTK.
10812         (x_wm_set_size_hint): Only compile if not USE_GTK.  GTK version
10813         is in gtkutil.c.
10814         (x_term_init): Add initialization for GTK.
10815         (syms_of_xterm): Set Vx_toolkit_scroll_bars for USE_GTK.
10817         * xmenu.c: Include gtkutil.h for USE_GTK.
10818         (Fx_popup_menu): Use current position if x and y is NIL.
10819         (single_menu_item, single_menu_item, Fx_popup_dialog):
10820         Check for USE_GTK.
10821         (popup_widget_loop): New function for USE_GTK.
10822         (x_activate_menubar): Add code for USE_GTK.
10823         (popup_activate_callback, popup_deactivate_callback)
10824         (menu_highlight_callback, menubar_selection_callback):
10825         Add USE_GTK versions.
10826         (update_frame_menubar): Call xg_update_frame_menubar for USE_GTK.
10827         (set_frame_menubar): Call xg_modify_menubar_widgets for USE_GTK.
10828         (free_frame_menubar): Only compile if not USE_GTK.  GTK version
10829         is in gtkutil.c.
10830         (popup_selection_callback): New version for USE_GTK.
10831         (create_and_show_popup_menu): New fuction, one USE_GTK version and
10832         one USE_X_TOOLKIT version.
10833         (xmenu_show): Call create_and_show_popup_menu.
10834         (dialog_selection_callback): New version for USE_GTK.
10835         (create_and_show_dialog): New fuction, one USE_GTK version and
10836         one USE_X_TOOLKIT version.
10837         (xdialog_show): Call create_and_show_dialog.
10839         * xfns.c: Include gtkutil for USE_GTK.
10840         (x_window_to_frame, x_any_window_to_frame)
10841         (x_non_menubar_window_to_frame, x_menubar_window_to_frame)
10842         (x_top_window_to_frame): Add code for USE_GTK.
10843         (x_set_background_color): Call xg_set_background_color for GTK.
10844         (x_set_menu_bar_lines): Check for USE_GTK.
10845         (x_set_tool_bar_lines): Call update_frame_tool_bar for USE_GTK.
10846         (x_set_name, x_set_title): Call gtk_window_set_title for USE_GTK.
10847         (x_window): Call xg_create_frame_widgets for USE_GTK.
10848         (Fx_create_frame): Check for USE_GTK
10849         (Fx_file_dialog): New implementation for USE_GTK.
10851         * xdisp.c: Add check for USE_GTK for extern void set_frame_menubar.
10852         (update_menu_bar): Add check for USE_GTK.
10853         (update_tool_bar): Add check for USE_GTK and external tool bar.
10854         (redisplay_tool_bar): Add check for USE_GTK and external tool bar.
10855         (redisplay_internal): Add check for USE_GTK and popup_activated.
10856         (redisplay_window): Add check for USE_GTK and FRAME_EXTERNAL_MENU_BAR.
10857         (redisplay_window): Add check for USE_GTK and FRAME_EXTERNAL_TOOL_BAR.
10858         (display_menu_bar): Add check for USE_GTK
10860         * lisp.h (Vx_resource_name): Declare extern.
10862         * keyboard.c (kbd_buffer_get_event): Check MENU_BAR_ACTIVATE_EVENT
10863         for USE_GTK.
10864         (make_lispy_event): Check MENU_BAR_EVENT for USE_GTK.
10866         * frame.h (struct frame): Add external_tool_bar.  Check for USE_GTK.
10867         (FRAME_EXTERNAL_TOOL_BAR): New macro.
10868         (FRAME_EXTERNAL_MENU_BAR): Check for USE_GTK.
10870         * fileio.c (Fread_file_name): Add check for USE_GTK.
10872         * dispnew.c (adjust_frame_glyphs_for_window_redisplay):
10873         Add check for USE_GTK.
10875         * config.in: Added HAVE_GTK
10877         * alloc.c (Fgarbage_collect): Call xg_mark_data for GTK.
10879 2003-01-18  Stefan Monnier  <monnier@cs.yale.edu>
10881         * charset.h (Funibyte_char_to_multibyte): Export.
10883 2003-01-18  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
10885         * xmenu.c (mouse_position_for_popup): New function.
10886         (Fx_popup_menu): Call mouse_position_for_popup for X and
10887         mouse_position_hook for others.
10889 2003-01-17  Kim F. Storm  <storm@cua.dk>
10891         * editfns.c (Finsert): Mention `string-make-multibyte' and
10892         `string-as-multibyte' in doc string.
10894 2003-01-17  Kenichi Handa  <handa@m17n.org>
10896         * fontset.c (syms_of_fontset): Setup Vfont_encoding_alist here.
10898         * editfns.c (Fformat): Convert an unibyte char argument that is
10899         formatted by "%c" to multibyte if the total result must be a
10900         multibyte string.
10902 2003-01-16  Kim F. Storm  <storm@cua.dk>
10904         * process.c (set-process-filter): Document unibyte/multibyte-ness
10905         of string argument.
10907 2003-01-16  Kenichi Handa  <handa@m17n.org>
10909         * charset.h (NEXT_CHAR_BOUNDARY, PREV_CHAR_BOUNDARY): New macros.
10911         * regex.c (GET_CHAR_BEFORE_2): Use PREV_CHAR_BOUNDARY.
10912         (re_search_2): Likewise.
10914 2003-01-15  Kenichi Handa  <handa@m17n.org>
10916         * xdisp.c (message_dolog): Fix bug of the case that *Message*
10917         buffer is unibyte.
10919 2003-01-15  Francesco Potort\e,Al\e(B  <pot@gnu.org>
10921         * fns.c (Fsubstring): Clarify doc string.
10923         * textprop.c (Ftext_properties_at, Fnext_char_property_change)
10924         (Fprevious_char_property_change)
10925         (Fnext_single_char_property_change)
10926         (Fprevious_single_char_property_change, Fnext_property_change)
10927         (Fnext_single_property_change, Fprevious_property_change)
10928         (Fprevious_single_property_change, Fadd_text_properties)
10929         (Fput_text_property, Fset_text_properties)
10930         (Fremove_text_properties, Fremove_list_of_text_properties)
10931         (Ftext_property_any, Ftext_property_not_all): Clarify doc strings.
10933 2003-01-14  Kim F. Storm  <storm@cua.dk>
10935         * process.h (struct Lisp_Process): New member plist replaces old
10936         member private_vars.  All uses changed.
10938         * process.c: Reworked 2003-01-12 change -- call a plist a plist!
10939         (QCplist): Rename from QCvars.  Change all uses.
10940         (Fprocess_plist): Replaces Fprocess_variable.  Simplified.
10941         (Fset_process_plist): Replaces Fset_process_variable.  Simplify.
10942         (syms_of_process): Intern, staticpro, defsubr these.
10943         (Fmake_network_process): Describe :plist arg.  Remove :vars arg.
10945 2003-01-14  Francesco Potort\e,Al\e(B  <pot@gnu.org>
10947         * m/delta.h: Remove (obsolete).
10949 2003-01-13  Francesco Potort\e,Al\e(B  <pot@gnu.org>
10951         * fileio.c (Fdelete_directory, Fdelete_file): Document the
10952         behaviour in front of symlinks.
10953         (Fdelete_file): Raise an error on directories.
10955 2003-01-13  Dave Love  <fx@gnu.org>
10957         * fns.c (Freverse): Use QUIT.
10959 2003-01-13  Richard M. Stallman  <rms@gnu.org>
10961         * minibuf.c (minibuffer_completion_contents):
10962         Error if point is inside prompt.
10964         * keyboard.c (command_loop_1): Don't redisplay directly
10965         if there's a post-command-hook.
10967         * fileio.c (syms_of_fileio) <directory-sep-char>: Doc fix.
10968         (Fdo_auto_save): Add gcpros around Ffile_name_directory.
10970 2003-01-12  Kim F. Storm  <storm@cua.dk>
10972         * process.h (struct Lisp_Process): New member private_vars.
10974         * process.c (QCvars): New variable.
10975         (syms_of_process): Intern and staticpro it.
10976         (Fset_process_contact): Removed function.
10977         (Fprocess_variable, Fset_process_variable): New functions.
10978         (syms_of_process): Defsubr them.
10979         (Fstart_process): Initialize private_vars plist to nil.
10980         (Fmake_network_process): New arg :vars to setup the private
10981         variables for new network process.
10982         (server_accept_connection): Copy server's private variables to
10983         client process.
10985         * alloc.c (pure_alloc): Fixed 2003-01-10 changed (caused spurious
10986         crashes).  Code rewritten and simplified.  Now directly aligns the
10987         pointer and recalculates pure_bytes_used, rather than aligning the
10988         size and adjusting the pointer.
10990 2003-01-11  Kim F. Storm  <storm@cua.dk>
10992         * process.c (Fset_process_contact): New function.
10993         (syms_of_process): defsubr it.
10994         (make-network-process): Update doc.
10996 2003-01-10  Andreas Schwab  <schwab@suse.de>
10998         * alloc.c (pure_alloc): Correct alignment for Lisp_Floats.
10999         Reported by Berthold Gunreben <b.gunreben@web.de>.
11001 2003-01-10  Dave Love  <fx@gnu.org>
11003         * composite.c (syms_of_composite): Make composition_hash_table weak.
11005 2003-01-09  Kim F. Storm  <storm@cua.dk>
11007         * process.c (Fmake_network_process): Convert new port number
11008         to host byte order for `:service t' case.  From Mario Lang.
11010 2003-01-08  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
11012         * xfns.c (Fx_file_dialog): Call XtAppNextEvent and x_dispatch_event
11013         instead of XtAppProcessEvent.
11015         * xterm.c (handle_one_xevent): New function.
11016         (x_dispatch_event): New function.
11017         (XTread_socket): Call handle_one_xevent.
11019         * xterm.h (FRAME_OUTER_TO_INNER_DIFF_X/Y): New.
11021         * xmenu.c (Fx_popup_menu): If popping up at mouse position,
11022         call XQueryPointer to get coordinates.
11023         (popup_get_selection): Do not set popup_activated_flag to zero,
11024         let popup_deactivate_callback do that.  Needed for Motif.
11025         Call x_dispatch_event instead of XtDispatchEvent.
11026         (xmenu_show): Calculate root coordinate from frame top/left position.
11028 2003-01-08  Kim F. Storm  <storm@cua.dk>
11030         * process.c (server_accept_connection): Fix recording of new
11031         connection's local address in :local property of contact info.
11032         (Fmake_network_process): Record local network address for new
11033         client processes in :local property of contact info.
11034         (format-network-address): Add arg OMIT-PORT.  Change callers.
11036 2003-01-07  Dave Love  <fx@gnu.org>
11038         * Makefile.in (fns.o): Depend on coding.h.
11040 2003-01-07  Markus Rost  <rost@math.ohio-state.edu>
11042         * minibuf.c (Fread_variable): Doc fix.
11044         * eval.c (Fuser_variable_p): Doc change.  For custom variables,
11045         use the same test as for custom-variable-p.
11047 2003-01-05  Richard M. Stallman  <rms@gnu.org>
11049         * xdisp.c (try_scrolling): New arg LAST_LINE_MISFIT.
11050         Count LAST_LINE_MISFIT in scroll margin for end of window.
11051         Move label too_near_end before setting SCROLL_MARGIN_POS.
11052         Set LAST_LINE_MISFIT before jumping there.
11054         * xdisp.c (try_scrolling): Calculate amount_to_scroll better in
11055         scroll_conservatively case.  If scrolling that much doesn't change
11056         STARTP, move it down one line.
11058         * xdisp.c (redisplay_window): Pass last_line_misfit arg to
11059         try_scrolling.  Make it 1 after make_cursor_line_fully_visible fails.
11061         * xdisp.c (setup_echo_area_for_printing): Kill Emacs if no
11062         selected frame.
11064         * keymap.c (apropos_predicate, apropos_accumulate): Make them static.
11065         (syms_of_keymap): Staticpro them.
11066         (Fapropos_internal): Initialize them and clear them out.
11067         Don't GCPRO them.
11069         * buffer.c (syms_of_buffer) <scroll-up-aggressively, scroll-down-aggressively>:
11070         Doc fixes.
11072         * lisp.h: New misc type Lisp_Save_Value.
11073         (enum Lisp_Misc_Type): Add Lisp_Misc_Save_Value.
11074         (XSAVE_VALUE): New macro.
11075         (struct Lisp_Save_Value): New data type.
11076         (union Lisp_Misc): Add u_save_value alternative.
11077         (make_save_value): Declare.
11079         * alloc.c (make_save_value): New function.
11081         * xterm.c (x_catch_errors): Save dpy using make_save_value.
11082         (x_catch_errors_unwind): Call XSync.
11084 2003-01-01  Richard M. Stallman  <rms@gnu.org>
11086         * window.c (window_scroll_pixel_based): Partially undo last change.
11088         * keyboard.c (command_loop_1): Call adjust_point_for_property
11089         in direct action cases for Qforward_char and Qbackward_char.
11090         Set already_adjusted so it won't be done twice.
11092 2002-12-30  Richard Dawe  <rich@phekda.freeserve.co.uk>
11094         * src/config.in (!HAVE_SIZE_T): Fix order of arguments in
11095         type definition of size_t.
11097 2003-01-02  Steven Tamm  <steventamm@mac.com>
11099         * macterm.c (syms_of_macterm): Provide the feature "mac-carbon" to
11100         distinguish Carbon GUI builds from X11 builds on darwin.
11102 2002-12-30  Steven Tamm  <steventamm@mac.com>
11104         * macterm.c (syms_of_macterm): Set mac-wheel-button-is-mouse-2
11105         to default to t.
11107 2002-12-29  Francesco Potort\e,Al\e(B  <pot@gnu.org>
11109         * data.c (Fstring_to_number, Fminus): Better English in doc strings.
11111 2002-12-28  Steven Tamm  <steventamm@mac.com>
11113         * Makefile.in (macosx-bundle): Fixes to Mac OS X/Carbon port to
11114         allow building in a different directory than source.  Uses some
11115         GNU Make extensions, but there is no other make on Mac OS X.
11117 2002-12-26  Francesco Potort\e,Al\e(B  <pot@gnu.org>
11119         * data.c (Fmakunbound, Ffmakunbound, Fmake_variable_buffer_local)
11120         (Fsetq_default, Fmake_local_variable, Fkill_local_variable)
11121         (Fmake_variable_frame_local, Faset, Fnumber_to_string, Fminus)
11122         (Fstring_to_number): Mention the returned value in the doc strings.
11124 2002-12-23  Richard M. Stallman  <rms@gnu.org>
11126         * buffer.c (syms_of_buffer) <scroll-up-aggressively>
11127         <scroll-down-aggressively>: Doc fix.
11129         * xmenu.c (parse_single_submenu): Use individual keymap's prompt
11130         string as pane name, if there is one.
11131         (set_frame_menubar): Save menu_items_n_panes from each call to
11132         parse_single_submenu and use it when calling digest_single_submenu.
11134         * window.c (window_scroll_pixel_based): Fix check for reaching BEGV.
11135         Don't try to make last line fully visible if it is past end of window.
11137 2002-12-22  Steven Tamm  <steventamm@mac.com>
11139         * macmenu.c (MIN_POPUP_SUBMENU_ID): Add.
11140         (mac_menu_show): Add support for hierarchical popup menus.
11141         (add_menu_item): Remove indentation support.
11142         (fill_submenu, fill_menu): Create hierarchical menus
11143         instead of using indentation.
11145 2002-12-22  Richard M. Stallman  <rms@gnu.org>
11147         * xdisp.c (try_cursor_movement): Don't call try_window here.
11148         (redisplay_window): Never redisplay minibuffer when inactive.
11150         * window.c (select_window_1): Undo 9/21 change.
11152 2002-12-22  Steven Tamm  <steventamm@mac.com>
11154         * macterm.c (XTread_socket): Call KeyTranslate for control and
11155         meta to deal correctly shifted non-alpha characters, like C-S-5
11156         being treated like C-%.  Does not look for shift key to deal
11157         with masking off control-key with mac-reverse-ctrl-meta.
11159 2002-12-21  Richard M. Stallman  <rms@gnu.org>
11161         * xmenu.c (popup_get_selection): Now static.  New arg DO_TIMERS.
11162         If it is non-nil, run timers.  Use an unwind-protect to requeue
11163         the events that were read ahead.
11164         (popup_get_selection_unwind): New subroutine.
11165         (popup_get_selection_queue): File-scope variable now holds that queue.
11166         (xmenu_show): Pass 0 for DO_TIMERS to popup_get_selection.
11167         (xdialog_show): Pass 1 for DO_TIMERS to popup_get_selection.
11168         Use an unwind-protect to pop down the dialog box.
11169         (xdialog_show_unwind): New subroutine implements that.
11171         * xdisp.c (row_containing_pos): Change exit test using last_y.
11172         (try_window_id): Abort if row_containing_pos returns null.
11174         * lread.c (load_error_handler): New function.
11175         (Fload): Handle errors in Fsubstitute_in_file_name.
11176         Don't expect Fsignal to return.
11178         * eval.c: Errors and throws work right with interrupt blocking.
11179         (struct catchtag): New elt interrupt_input_blocked.
11180         (unwind_to_catch): Restore interrupt_input_blocked from saved value.
11181         (internal_catch, Fcondition_case, internal_condition_case)
11182         (internal_condition_case_1, internal_condition_case_2): Save it.
11183         (Fsignal): Don't do TOTALLY_UNBLOCK_INPUT.
11185         * editfns.c (Fformat): Add parens.
11187         * dired.c (file_name_completion): Fix that change.
11188         Delete special quit-handling code; just use QUIT.
11190 2002-12-21  Tak Ota  <Takaaki.Ota@am.sony.com>
11192         * dired.c (file_name_completion): Close directory on error
11193         just as in directory_files_internal.
11195 2002-12-19  David Kastrup  <David.Kastrup@t-online.de>
11197         * window.c (Fset_window_configuration): Set old_point to correct
11198         value when new_current_buffer == current_buffer.
11200 2002-12-17  Ben Key  <bkey1@tampabay.rr.com>
11202         Revisited my earlier fix for the following entry in etc/PROBLEMS:
11203         "Emacs built on Windows 9x/ME crashes at startup on Windows XP,
11204         or Emacs builtpart of on XP crashes at startup on Windows 9x/ME."
11206         These changes were in part based upon suggestions made by Peter
11207         'Luna' Runestig [peter@runestig.com].
11209         * w32.c (g_b_init_is_windows_9x, g_b_init_open_process_token)
11210         (g_b_init_get_token_information, g_b_init_lookup_account_sid)
11211         (g_b_init_get_sid_identifier_authority ): Add several static
11212         global variables.
11214         * w32.c (globals_of_w32): New function.  Used to initialize those
11215         global variables that must always be initialized on startup even
11216         when the global variable initialized is non zero.  Its primary
11217         purpose at this time is to set the global variables
11218         g_b_init_is_windows_9x, g_b_init_open_process_token,
11219         g_b_init_get_token_information, g_b_init_lookup_account_sid, and
11220         g_b_init_get_sid_identifier_authority to 0 on startup.
11221         Called from main.
11223         * w32.c (is_windows_9x): Perform initialization only if
11224         g_b_init_is_windows_9x is equal to 0.  On initialization set
11225         g_b_init_is_windows_9x equal to 1.
11227         * w32.c (open_process_token): Perform initialization only if
11228         g_b_init_open_process_token is equal to 0.  On initialization set
11229         g_b_init_open_process_token equal to 1.
11231         * w32.c (get_token_information): Perform initialization only if
11232         g_b_init_get_token_information is equal to 0.  On initialization
11233         set g_b_init_get_token_information equal to 1.
11235         * w32.c (lookup_account_sid): Perform initialization only if
11236         g_b_init_lookup_account_sid is equal to 0.  On initialization
11237         set g_b_init_lookup_account_sid equal to 1.
11239         * w32.c (get_sid_identifier_authority): Perform initialization
11240         only if g_b_init_get_sid_identifier_authority is equal to 0.
11241         On initialization set g_b_init_get_sid_identifier_authority equal to 1.
11243         * w32fns.c (globals_of_w32fns): New function.  Used to initialize
11244         those global variables that must always be initialized on startup
11245         even when the global variable initialized is non zero.
11246         Its primary purpose at this time is to initialize the global variable
11247         track_mouse_event_fn.
11249         * w32fns.c (w32_wnd_proc): Remove initialization of
11250         track_mouse_event_fn from the handler for the WM_SETFOCUS message.
11252         * w32fns.c (syms_of_w32fns): Call globals_of_w32fns.
11254         * w32menu.c (globals_of_w32menu): New function.  Used to
11255         initialize those global variables that must always be initialized
11256         on startup even when the global variable initialized is non zero.
11257         Its primary purpose at this time is to initialize the global
11258         variables get_menu_item_info and set_menu_item_info.
11260         * w32menu.c (initialize_frame_menubar): Remove initialization of
11261         get_menu_item_info and set_menu_item_info.
11263         * w32menu.c (syms_of_w32menu): Call globals_of_w32menu.
11265         * w32.h (globals_of_w32, globals_of_w32fns, globals_of_w32menu):
11266         Declare them.
11268         * emacs.c (main): Call globals_of_w32 prior to calling
11269         init_environment if WINDOWSNT is defined.  Call globals_of_w32fns
11270         and globals_of_w32menu if initialized is non zero and HAVE_NTGUI
11271         is defined.
11273         * w32term.c (x_update_window_begin): Fix Windows API error
11274         detected by BoundsChecker.  Test to determine if
11275         w32_system_caret_hwnd is NULL prior to attempting to use
11276         SendMessage to send the WM_EMACS_HIDE_CARET message to it.
11278         * w32term.c (x_update_window_end): Fix Windows API error
11279         detected by BoundsChecker.  Test to determine if
11280         w32_system_caret_hwnd is NULL prior to attempting to use
11281         SendMessage to send the WM_EMACS_SHOW_CARET message to it.
11283 2002-12-17  Kenichi Handa  <handa@m17n.org>
11285         * coding.c (coding_system_require_warning): New variable.
11286         (syms_of_coding): DEFVAR it.
11288         * coding.h (coding_system_require_warning): Extern it.
11290         * fileio.c (choose_write_coding_system): Even if
11291         Vcoding_system_for_write is non-nil, if
11292         coding_system_require_warning is nonzero, call
11293         Vselect_safe_coding_system_function.
11295 2002-12-17  Markus Rost  <rost@math.ohio-state.edu>
11297         * Makefile.in (lisp, shortlisp): Add cus-face and timer.
11298         (lisp): Add font-core.
11300 2002-12-13  Stefan Monnier  <monnier@cs.yale.edu>
11302         * textprop.c (text_read_only): New arg `propval'.
11303         (get_char_property_and_overlay): Remove unused var `next_overlay'.
11304         (verify_interval_modification): Use text_read_only's new arg.
11306 2002-12-13  Kenichi Handa  <handa@m17n.org>
11308         * coding.c (Funencodable_char_position): Set pend correctly.
11310 2002-12-12  Jason Rumney  <jasonr@gnu.org>
11312         * w32term.c (last_mousemove_x, last_mousemove_y): New variables.
11313         (w32_read_socket) <WM_MOUSEMOVE>: Use them to detect non-movement.
11314         Be more careful about when help_events are generated.
11316 2002-12-12  Steven Tamm  <steventamm@mac.com>
11318         * macterm.c (mac_check_for_quit_char): Correctly set the
11319         modifiers of the event to 0.
11320         * mac.c (sys_select): Duplicate rfds before calling select to
11321         ensure that rfds survive the while loop.
11323 2002-12-11  Kim F. Storm  <storm@cua.dk>
11325         * xdisp.c (try_window_id): Don't call set_cursor_from_row if
11326         row_containing_pos returned NULL.
11328 2002-12-10  Steven Tamm  <steventamm@mac.com>
11330         * mac.c (sys_read): Fix sys_read to not call select if IO is
11331         non-blocking.
11332         (sys_select): Fix sys_select to not use a timeout larger than
11333         the one given.
11335 2002-12-10  Juanma Barranquero  <lektu@terra.es>
11337         * editfns.c (Fformat): Use alloca, not _alloca.
11339 2002-12-09  Richard M. Stallman  <rms@gnu.org>
11341         * buffer.c (Fget_buffer_create): Call Qucs_set_table_for_input
11342         as the last thing.
11344 2002-12-09  Dave Love  <fx@gnu.org>
11346         * s/sol2-8.h: Removed.  (Not necessary.)
11348 2002-12-09  Matthew Swift  <swift@alum.mit.edu>
11350         * editfns.c (Fformat): Handle precision in string conversion
11351         specifiers like libc functions do (ie, print at most that many
11352         characters).
11354 2002-12-08  Richard M. Stallman  <rms@gnu.org>
11356         * xdisp.c (row_containing_pos): Check more carefully
11357         whether charpos is really in the row before returning it.
11359 2002-12-07  Steven Tamm  <steventamm@mac.com>
11361         * sysdep.c (emacs_read) [HAVE_CARBON]: Have emacs_read use sys_read.
11363         * eval.c (Feval) [HAVE_CARBON]: Calls mac_check_for_quit_char at
11364         each stack frame.  This may change as it could be time consuming.
11366         * macterm.c (mac_check_for_quit_char, quit_char_comp)
11367         (init_quit_char_handler, mac_determine_quit_char_modifiers)
11368         (mac_initialize): Add code to check for pressing of quit_char
11369         in the OS event queue.
11371         * mac.c (sys_select): Call mac_check_for_quit_char every second
11372         while blocking on select.
11374         * mac.c (sys_read): Use sys_select to test for input first
11375         before calling read, to allow C-g to break.
11377 2002-12-07  Richard M. Stallman  <rms@gnu.org>
11379         * minibuf.c (Fcompleting_read): Doc fix.
11381         * lread.c (syms_of_lread) <load-history>: Doc fix.
11383         * fileio.c (Fcopy_file): Set immediate_quit around emacs_open call.
11385         * eval.c (Fdefun, Fdefmacro): Record in load-history redefining an
11386         autoload.
11388         * data.c (Fdefalias): Record in load-history redefining an autoload.
11390         * alloca.c: Undo ifdef change accidentally made on 12-04.
11392 2002-12-06  Francesco Potorti`  <pot@gnu.org>
11394         * xfns.c (png_load): Avoid double gamma correction for PNG images.
11396 2002-12-04  Richard M. Stallman  <rms@gnu.org>
11398         * sysdep.c (fcntl.h): Test only HAVE_FCNTL_H.
11400         * fileio.c (fcntl.h): Test only HAVE_FCNTL_H.
11402         * alloca.c: Don't use #error.
11404 2002-12-03  Dave Love  <fx@gnu.org>
11406         * buffer.c (Qucs_set_table_for_input): New.
11407         (Fget_buffer_create): Use it.
11408         (Qset_buffer_major_mode_hook): Deleted.
11409         (Fset_buffer_major_mode): Revert previous change.
11410         (init_buffer_once): Intern ucs-set-table-for-input.
11411         (syms_of_buffer): Delete Qset_buffer_major_mode_hook.
11412         Add &Qucs_set_table_for_input.
11414 2002-12-03  Andreas Schwab  <schwab@suse.de>
11416         * callint.c (Fcall_interactively): Use next_event only if less
11417         than key_count.
11419 2002-12-02  Andrew Choi  <akochoi@shaw.ca>
11421         * macmenu.c (add_menu_item, fill_menubar): Truncate menu item
11422         names to 255 characters.
11424         * macterm.c (XTread_socket): If all frames have been collapsed,
11425         expand the first one before handling drag-and-drop events.
11427         * s/darwin.h (GETPGRP_NO_ARG): Delete.  Replaced by GETPGRP_VOID,
11428         which is detected by autoconf.
11430 2002-12-01  Steven Tamm  <steventamm@mac.com>
11432         * unexmacosx.c (copy_twolevelhints, dump_it): Now corrects the
11433         offset in two hints table to allow prebinding to be redone and
11434         allow the executable to be stripped.
11436 2002-11-29  Dave Love  <fx@gnu.org>
11438         * fns.c (Frequire): Don't call LOADHIST_ATTACH if feature was
11439         already provided.
11441 2002-11-29  Richard M. Stallman  <rms@gnu.org>
11443         * xdisp.c (start_display): Check more intelligently for
11444         whether the line is continued.
11445         (move_it_vertically_backward): Clear it->continuation_lines_width.
11447 2002-11-28  Dave Love  <fx@gnu.org>
11449         * s/amdahl.h, s/unipl5-0.h, m/sgi3000.h, s/3700.h, s/alliant-2800.h:
11450         * s/alliant.h, s/altos.h: Deleted.  (Unused/empty.)
11452 2002-11-27  Steven Tamm  <steventamm@mac.com>
11454         * fns.c (Frequire): Change nesting allowance from 2 to 3 to cause
11455         more descriptive error output from lread.c:Fload upon most require
11456         cycles during boostrapping.
11458 2002-11-27  Jason Rumney  <jasonr@gnu.org>
11460         * fileio.c (Finsert_file_contents): Give a more appropriate error
11461         for files bigger than 2Gb when off_t is 32 bit.
11463         * dired.c (Ffile_attributes): Don't return negative file sizes for
11464         files bigger than 2Gb when off_t is 32 bit.
11466 2002-11-27  Dave Love  <fx@gnu.org>
11468         * s/irix6-0.h (GC_SETJMP_WORKS, GC_MARK_STACK): Define.
11470         * systty.h: Don't conditionally define GETPGRP_NO_ARG.
11471         Test GETPGRP_VOID instead.
11472         [BSD_TERMIOS]: Remove definitions (never used).
11474         * s/osf5-0.h (WAIT_USE_INT, SYS_SIGLIST_DECLARED, sys_siglist):
11475         Don't define.
11476         (GC_SETJMP_WORKS, GC_MARK_STACK): Define.
11478         * m/mips.h (WORDS_BIG_ENDIAN): Define conditionally.
11480 2002-11-25  Jason Rumney  <jasonr@gnu.org>
11482         * w32.c (sys_write): Avoid non-blocking mode, which is not fully
11483         supported.
11485 2002-11-25  Dave Love  <fx@gnu.org>
11487         * unexalpha.c (update_dynamic_symbols): Cast arg of fatal_unexec.
11489         * Makefile.in (TEMACS_LDFLAGS): Update last change.
11491 2002-11-25  Andreas Schwab  <schwab@suse.de>
11493         * m/ia64.h: Restore `#ifndef NOT_C_CODE' deleted by last change.
11495 2002-11-24  Steven Tamm  <steventamm@mac.com>
11497         * unexmacosx.c (unexec_realloc): Use malloc_default_zone to
11498         determine the size of pointers alloced in unexed space instead
11499         of using possibly invalid emacs_zone pointers.  This fixes the
11500         binary incompatibility problems caused by updates to libSystem.B.
11502 2002-11-24  Richard M. Stallman  <rms@gnu.org>
11504         * search.c (Fstring_match): Doc fix.
11506         * callint.c (Fcall_interactively): If a command fails because
11507         `*' detects a read-only buffer, but RECORD_FLAG is set,
11508         record it anyway if the args don't actually do tty input.
11510 2002-11-22  Dave Love  <fx@gnu.org>
11512         * sysdep.c (stuff_char) [PROTOTYPES]: Provide ISO C arglist.
11514         * keyboard.c (interrupt_signal): Provide forward declaration.
11515         (kbd_buffer_store_event): Don't declare interrupt_signal.
11517         * xdisp.c (store_frame_title_char) [PROTOTYPES]: Provide ISO C arglist.
11519 2002-11-21  Richard M. Stallman  <rms@gnu.org>
11521         * eval.c (interactive_p): Skip any number of bytecode
11522         and special form frames, in any order.
11524 2002-11-20  Jason Rumney  <jasonr@gnu.org>
11526         * w32fns.c (convert_mono_to_color_image): New function.
11527         (xbm_load, xbm_load_image): Use it when foreground or background
11528         is explicitly set.
11530 2002-11-19  Dave Love  <fx@gnu.org>
11532         * s/usg5-4.h, sco4.h (bcopy, bzero, bcmp): Don't define.
11534 2002-11-18  Jason Rumney  <jasonr@gnu.org>
11536         * w32fns.c (x_build_heuristic_mask): Filter palette info from color.
11537         (XPutPixel): Swap blue and red.
11538         (xpm_format, pbm_format, png_format, jpeg_format, tiff_format)
11539         (gif_format, gs_format): Use IMAGE_ASCENT_VALUE.
11540         (xpm_image_p, pbm_image_p, png_image_p, jpeg_image_p)
11541         (tiff_image_p, gif_image_p, gs_image_p): Don't check ascent.
11543 2002-11-18  Dave Love  <fx@gnu.org>
11545         * m/orion105.h (HAVE_ALLOCA): Don't define.
11547         * m/m68k.h, m/arm.h, mtekxd88.h, m/tower32v3.h: Don't define alloca.
11549         * m/intel386.h: Don't include alloca.h or define alloca.
11551         * m/ia64.h: Don't include alloca.h, stdlib.h.  Don't declare
11552         malloc, realloc, calloc.
11554         * m/hp800.h, m/sr2k.h, m/ns16000.h, m/wicat.h (bcopy, bzero)
11555         (bcmp): Don't define.
11557         * m/delta.h (bcopy, bzero, bcmp, alloca): Don't define.
11559         * m/amdahl.h: Don't define LIB_STANDARD.
11561         * m/alpha.h: Move OSF1 stuff from here to s/osf1.h.
11563         * s/osf1.h: Move OSF1 stuff from m/alpha.h to here.
11565         * s/irix4-0.h, s/irix5-0.h, m/powerpcle.h, m/sparc.h:
11566         Don't include alloca.h.
11568         * s/aix3-2.h (HAVE_FSYNC): Don't define.
11570         * regex.c (_GNU_SOURCE): Don't define.
11572         * process.c (_GNU_SOURCE): Don't define.
11574         * fileio.c (_GNU_SOURCE, HAVE_FSYNC): Don't define.
11576 2002-11-18  Markus Rost  <rost@math.ohio-state.edu>
11578         * s/sol2-8.h: Include sol2-6.h.
11580 2002-11-18  Miles Bader  <miles@gnu.org>
11582         * dispextern.h (struct face): Add `overstrike' field.
11583         * xterm.c (x_draw_glyph_string_foreground)
11584         (x_draw_composite_glyph_string_foreground): Implement overstriking.
11585         * xfaces.c (load_face_font): Set `face->overstrike' based on
11586         result from choose_face_font.
11587         (best_matching_font, choose_face_font): Add `needs_overstrike'
11588         argument, and use it to return whether overstriking is desirable
11589         for this face/font combo.
11590         (set_font_frame_param: Pass new argument to choose_face_font.
11592 2002-11-17  Ben Key  <BKey1@tampabay.rr.com>
11594         This change is my fix for the following entry in etc/PROBLEMS:
11595         "Emacs built on Windows 9x/ME crashes at startup on Windows XP,
11596         or Emacs builtpart of on XP crashes at startup on Windows 9x/ME."
11598         * w32.c: Added wrapper functions around the win32 API functions
11599         OpenProcessToken, GetTokenInformation, LookupAccountSid, and
11600         GetSidIdentifierAuthority.  These wrapper functions serve two
11601         purposes:
11602         1.  They ensure that the wrapped function can never be called
11603         when Emacs is running on an operating system on which they are
11604         not supported (Microsoft Windows 95 / 98 / ME).
11605         2.  They call the wrapped functions via function pointers rather
11606         than calling them directly.  This avoids taking advantage of the
11607         undocumented fact that although these functions are not supported
11608         in the 9x branch of Microsoft Windows, the functions do exist in
11609         the version of advapi32.dll that is found in the 9x branch of
11610         Microsoft Windows.
11612         * w32.c (init_user_info): Replace the calls to the win32 API
11613         functions OpenProcessToken, GetTokenInformation, LookupAccountSid,
11614         and GetSidIdentifierAuthority with calls to the newly added
11615         wrapper functions.
11617         * w32.h: Added extern declarations for the following functions:
11618         syms_of_w32term, syms_of_w32fns, syms_of_w32select,
11619         syms_of_w32menu, and void syms_of_fontset.
11621         * w32fns.c (w32_wnd_proc): Add code to reinitialize the
11622         function pointer track_mouse_event_fn in the handler for the
11623         WM_SETFOCUS message.
11625         * w32menu.c (initialize_frame_menubar): Add code to
11626         reinitialize the function pointers set_menu_item_info and
11627         get_menu_item_info.
11629 2002-11-17  Ben Key  <BKey1@tampabay.rr.com>
11631         * sound.c: Added a partial implementation of play-sound-internal
11632         for Microsoft Windows.  Added various #ifdef / #else / #endif
11633         code blocks to separate the code that will compile under
11634         Microsoft Windows from the code that is specific to Gnu/Linux.
11635         Moved several blocks of code around to make this separation of code
11636         into Windows compatible and Gnu/Linux compatible code blocks easier.
11638         * makefile.w32-in: Include sound.c and link with WinMM.lib.
11640         * s/ms-w32.h: Defined the symbol HAVE_SOUND so that the newly
11641         added support for play-sound-internal under Windows would be
11642         included in the build of Emacs.
11644 2002-11-16  Jason Rumney  <jasonr@gnu.org>
11646         * w32fns.c (w32_load_system_font): Don't disable Cleartype.
11648         * w32term.c (w32_get_glyph_string_clip_rect): Clip cursor tightly.
11650 2002-11-15  Stefan Monnier  <monnier@cs.yale.edu>
11652         * keyboard.c (command_loop_1): Fix int/Lisp_Object mixup.
11653         (adjust_point_for_property): Move out of display and invisible even if
11654         we were already inside before (in case a property was added while
11655         we weren't looking).  Be more careful when handling invisible props.
11656         Skip invisible text as if it really wasn't there at all.
11658 2002-11-15  Jason Rumney  <jasonr@gnu.org>
11660         * w32term.c (x_draw_image_foreground)
11661         (w32_draw_image_foreground_1): Use standard copy and invert
11662         operations to draw images.
11664         * w32fns.c (x_create_x_image_and_pixmap): Fill in palette for
11665         depth of 1.
11666         (xbm_read_bitmap_data): Invert bits as xbm is read in.
11667         (XPutPixel): Don't invert bits here.
11669 2002-11-15  Jason Rumney  <jasonr@gnu.org>
11671         * w32term.c (x_draw_image_foreground, x_draw_image_glyph_string)
11672         (w32_draw_image_foreground_1): Handle image masks.
11673         (x_draw_image_glyph_string): Don't BitBlt transparently.
11675         * w32fns.c (w32_defined_color): Adjust RGB values for Emacs.
11676         (x_from_xcolors): Adjust RGB values for W32.
11677         (image_background, image_background_transparent)
11678         (postprocess_image, x_to_xcolors, x_disable_image)
11679         (x_build_heuristic_mask): Adapt for W32 and enable.
11680         (x_create_x_image_and_pixmap): Mark images with palettes as such.
11681         (xbm_load): Remove unused variable.
11683 2002-11-14  Richard M. Stallman  <rms@gnu.org>
11685         * buffer.c (syms_of_buffer): Doc fix.
11687 2002-11-14  Dave Love  <fx@gnu.org>
11689         * alloc.c (SETJMP_WILL_NOT_WORK): Add note.
11691         * xterm.c (x_draw_relief_rect, x_draw_box_rect, x_update_cursor):
11692         * xmenu.c (unuse_menu_items, digest_single_submenu):
11693         * xfns.c (x_put_x_image):
11694         * xdisp.c (message2_nolog, set_message):
11695         * undo.c (record_point):
11696         * terminfo.c (tparam):
11697         * syntax.c (scan_sexps_forward):
11698         * scroll.c (calculate_scrolling, calculate_direct_scrolling):
11699         * composite.c (update_compositions):
11700         * cm.c (calccost, cmgoto):
11701         * charset.c (c_string_width): Declare all args (per C99).
11703         * frame.h (get_specified_cursor_type, get_window_cursor_type): Declare.
11705         * lisp.h (get_specified_cursor_type, get_window_cursor_type):
11706         Don't declare.
11708         * emacs.c (main) [!VMS]: Avoid third arg.
11710         * fns.c (Fcopy_sequence): Doc fix.
11711         (Fmap_char_table): Cast `call2'.
11713 2002-11-14  Francesco Potorti`  <pot@gnu.org>
11715         * s/sol2-8.h: New file.
11717 2002-11-14  Kim F. Storm  <storm@cua.dk>
11719         * buffer.c (syms_of_buffer) <mode-line-format>: Document symbol
11720         dependency on `risky-local-variable' and the :propertize form.
11722 2002-11-12  Stefan Monnier  <monnier@cs.yale.edu>
11724         * fns.c (Fmap_char_table): Don't use map_char_table's function arg.
11726         * syntax.c (scan_sexps_forward): Undo last patch.
11727         Use a more obvious fix: check eob before updating the syntax table.
11729 2002-11-09  Stefan Monnier  <monnier@cs.yale.edu>
11731         * syntax.c (scan_sexps_forward): Update syntax table before reading
11732         a char rather than after so we don't update the table past eob.
11734 2002-11-09  Dave Love  <fx@gnu.org>
11736         * buffer.c (Fset_buffer_major_mode): Fix last change.
11738         * regex.c (regexec): Fix pmatch declaration.
11740         * cmds.c (Fself_insert_command): Apply Vtranslation_table_for_input.
11742         * keyboard.c (command_loop_1): Apply Vtranslation_table_for_input
11743         to self-inserting characters.
11744         (syms_of_keyboard) <keyboard-translate-table>: Doc fix.
11746         * coding.c (Vtranslation_table_for_input): New.
11747         (syms_of_coding): DEFVAR it.
11749 2002-11-08  Juanma Barranquero  <lektu@terra.es>
11751         * w32term.c (w32_draw_fringe_bitmap): Remove unused local variable
11752         window.
11754 2002-11-08  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
11756         * process.c (Fformat_network_address): Remove unused locals p,
11757         cp, and i.
11759 2002-11-06  Dave Love  <fx@gnu.org>
11761         * buffer.c (Qset_buffer_major_mode_hook): New.
11762         (Fset_buffer_major_mode): Use it.
11764 2002-11-06  Richard M. Stallman  <rms@gnu.org>
11766         * xterm.c (x_term_init): Use turn_on_atimers, not start_polling
11767         and stop_polling.
11769         * process.c (wait_reading_process_input):
11770         Test POLLING_PROBLEM_IN_SELECT, not hpux.
11771         Avoid initialization for auto Lisp_Object var.
11773         * s/hpux11.h (POLLING_PROBLEM_IN_SELECT): Add #undef.
11775         * s/hpux10.h (POLLING_PROBLEM_IN_SELECT): Defined.
11777 2002-11-05  Richard M. Stallman  <rms@gnu.org>
11779         * s/sol2-5.h (BROKEN_SIGIO): Turn off the #undef.
11781         * callint.c (Fcall_interactively): New local filter_specs.
11782         (Fcall_interactively): Check for progn as well as let.
11783         Add a gcpro.
11784         (Qprogn): New variable.
11785         (syms_of_callint): Staticpro and init Qprogn.
11787 2002-11-04  John Paul Wallington  <jpw@shootybangbang.com>
11789         * lread.c (Feval_buffer): Doc fix.
11791 2002-11-04  Dave Love  <fx@gnu.org>
11793         * keyboard.c (read_char): Always translate iff
11794         Vkeyboard_translate_table is a char table and c is valid.
11796         * xterm.c (XTread_socket): Check Lisp types for Vx_keysym_table
11797         and fix C types.
11799 2002-11-03  Stefan Monnier  <monnier@cs.yale.edu>
11801         * xdisp.c (single_display_prop_intangible_p): Strings are intangible.
11803         * editfns.c (get_pos_property): Don't hardcode Qfield.
11805         * keyboard.c (adjust_point_for_property): Handle `display' prop on
11806         overlays.  Also handle `invisible' prop.
11808 2002-11-02  Stefan Monnier  <monnier@cs.yale.edu>
11810         * coding.c (decode_coding_emacs_mule, decode_coding_iso2022)
11811         (decode_coding_sjis_big5, decode_eol): Allow lone \r in DOS EOL.
11813 2002-11-01  Andreas Schwab  <schwab@suse.de>
11815         * editfns.c (Fmessage): Revert last change to properly handle %%.
11817 2002-11-01  Stefan Monnier  <monnier@cs.yale.edu>
11819         * xmenu.c (unuse_menu_items): New fun.
11820         (menu_items_inuse): New var.
11821         (syms_of_xmenu): Initialize it.
11822         (init_menu_items): Use it to detect re-entrance.
11823         (Fx_popup_menu, Fx_popup_dialog, set_frame_menubar): Reset when done.
11824         (Fx_popup_menu): Remove spurious XSETFRAME.
11826         * editfns.c (find_field): Make an exception for nil fields.
11828 2002-11-01  Dave Love  <fx@gnu.org>
11830         * m/gec63.h: Deleted.
11832 2002-10-31  Dave Love  <fx@gnu.org>
11834         * xterm.c (XTread_socket): Fix last change.
11835         (xaw_scroll_callback): Cast call_data to long to avoid warning.
11837 2002-10-31  Stefan Monnier  <monnier@cs.yale.edu>
11839         * process.c (Fformat_network_address): Fix int/Lisp_Object mixup.
11841 2002-10-30  Stefan Monnier  <monnier@cs.yale.edu>
11843         * editfns.c (overlays_around, get_pos_property): New funs.
11844         (find_field): Use them.
11845         Also be careful not to modify POS before its last use.
11846         (Fmessage): Don't Fformat if there's nothing to format.
11848 2002-10-30  Dave Love  <fx@gnu.org>
11850         * process.c [HAVE_SYS_WAIT]: Include sys/wait.h.
11851         [HAVE_PTY_H]; Include pty.h.
11853         * lread.c (Fload) <!load_dangerous_libraries>: Close fd.
11855         * xterm.c (Qeql): Declare.
11856         (Vx_keysym_table): New.
11857         (syms_of_xterm): Initialize it.
11858         (XTread_socket): Use it.  Deal with ASCII keysyms.
11859         (XSetIMValues) [HAVE_X11R6]: Prototype.
11861         * keyboard.c (lispy_accent_codes, lispy_accent_keys): Extended.
11862         (lispy_kana_keys): Comment out.
11863         (make_lispy_event) [XK_kana_A]: Comment out.
11864         (modify_event_symbol) <sizeof (long) == sizeof (EMACS_INT)>:
11865         Fix sprintf call.
11867         * s/osf5-0.h (C_SWITCH_SYSTEM): Revert last change (fixed by
11868         regexp.h change).
11869         (TERMINFO, LIBS_TERMCAP): Define.
11871         * s/usg5-4.h (bcopy, bzero): Define conditional on HAVE_BCOPY.
11872         (bcmp): Define conditional on HAVE_BCMP.
11873         (NO_SIOCTL_H): Don't define.
11874         (TIOCSIGSEND): Don't make conditional on IRIX6.
11876         * s/sol2-5.h: Don't include strings.h.
11877         (bcopy, bzero, bcmp) [HAVE_BCOPY]: Don't undef.
11879         * s/irix6-0.h (IRIX6): Don't define.
11880         (bcopy, bcmp, bzero): Don't undef.
11882         * s/irix6-5.h: Don't include strings.h.
11883         (IRIX6): Don't define.
11884         (bcopy, bcmp, bzero): Don't undef.
11886         * syntax.c (Fforward_comment): Doc fix.
11888 2002-10-29  Kim F. Storm  <storm@cua.dk>
11890         * process.c (Fsignal_process): Allow PROCESS to be specified by
11891         name in addition to pid (as integer or string).
11893 2002-10-28  Harald Maier  <Harald.Maier.BW@t-online.de>  (tiny change)
11895         * w32heap.c: Don't redefine _heap_init and _heap_term on MSVC 7 build
11896         environments.
11898 2002-10-27  Kim F. Storm  <storm@cua.dk>
11900         * xterm.c (note_mouse_highlight): Don't use mouse-face if hidden.
11902         * w32term.c (note_mouse_highlight): Don't use mouse-face if hidden.
11904         * msdos.c (IT_note_mouse_highlight): Don't use mouse-face if hidden.
11906         * macterm.c (note_mouse_highlight): Don't use mouse-face if hidden.
11908 2002-10-26  Richard M. Stallman  <rms@gnu.org>
11910         * editfns.c (Fformat): Detect invalid format letters for floats.
11912 2002-10-25  Kenichi Handa  <handa@m17n.org>
11914         * xfns.c (x_set_name): Encode by Qcompound_text unconditionally.
11915         (x_set_title): Likewise.
11917 2002-10-25  Juanma Barranquero  <lektu@terra.es>
11919         * macgui.h:
11920         * w32gui.h: Remove definition of XColor.
11922         * dispextern.h [!HAVE_X_WINDOWS]: Define XColor.
11924 2002-10-24  Kim F. Storm  <storm@cua.dk>
11926         * xdisp.c (get_window_cursor_type): New arg ACTIVE_CURSOR.
11927         Callers changed (supply dummy arg).
11929         * lisp.h (get_window_cursor_type): Update prototype.
11931         * w32term.c (x_display_and_set_cursor): Get active_cursor from
11932         get_window_cursor_type to track system caret.
11934 2002-10-24  Kim F. Storm  <storm@cua.dk>
11936         * process.c (Fformat_network_address): New function.
11937         (syms_of_process): Defsubr it.
11938         (list_processes_1): Use it to format :local/:remote address if
11939         service/host is not set; before Emacs would crash in that case.
11940         (Fmake_network_process): Don't use Ffind_operation_coding_system
11941         to setup coding system if host or service is not set.
11943 2002-10-23  Juanma Barranquero  <lektu@terra.es>
11945         Patch suggested by Jay Finger <jay_finger@hotmail.com>.
11947         * w32term.c (w32_term_init): Pass XColor to w32_define_color, not
11948         COLORREF.
11950         * macgui.h:
11951         * w32gui.h: Add definition of XColor.
11953         * macfns.c:
11954         * w32fns.c:
11955         * xfaces.c: Remove definition of XColor.
11957 2002-10-22  Stefan Monnier  <monnier@cs.yale.edu>
11959         * xfns.c (x_set_name, x_set_title): `icon.value' has unsigned char.
11961         * window.c (window_loop): For GET_LRU_WINDOW and GET_LARGEST_WINDOW>,
11962         Only ignore truly dedicated windows.  For UNSHOW_BUFFER, delete the
11963         window if it is dedicated.
11964         (Fshrink_window): Add preserve_before as was done for enlarge_window.
11965         (Vspecial_display_function): Update docstring.
11967         * buffer.c (assoc_ignore_text_properties, Fother_buffer, Fkill_buffer)
11968         (call_overlay_mod_hooks): Use CONSP and XCAR/XCDR.
11969         (Fget_buffer_create, advance_to_char_boundary): Use BEG and BEG_BYTE;
11971 2002-10-21  Stefan Monnier  <monnier@cs.yale.edu>
11973         * casefiddle.c (casify_region): Don't treat a prefix char as part
11974         of a word when at the beginning.
11976 2002-10-17  Juanma Barranquero  <lektu@terra.es>
11978         * lread.c (syms_of_lread): Fix typos.
11980 2002-10-17  Dave Love  <fx@gnu.org>
11982         * Makefile.in (TEMACS_LDFLAGS): Add trailing comment.
11984 2002-10-16  Richard M. Stallman  <rms@gnu.org>
11986         * fileio.c (Fcopy_file): Fix backward test of KEEP_TIME.
11988 2002-10-14  Juanma Barranquero  <lektu@terra.es>
11990         * w16select.c (syms_of_win16select): Fix docstring for
11991         `selection-coding-system'.
11993         * w32select.c (syms_of_w32select): Likewise.
11995 2002-10-14  Stefan Monnier  <monnier@cs.yale.edu>
11997         * syntax.c (scan_lists): Don't get fooled by a symbol ending with
11998         a backslash-quoted char.
11999         (scan_lists, scan_sexps_forward): Pacify the compiler.
12001 2002-10-13  Richard M. Stallman  <rms@gnu.org>
12003         * window.c (window_scroll): Set immediate_quit.
12005         * print.c (print): When backquote form is the car of a list,
12006         output in old style.  Use old_backquote_output to output all
12007         comma forms inside it in old style too.
12009         * buffer.h (struct buffer): Move `undo_list' down below `name'.
12011 2002-10-11  Markus Rost  <rost@math.ohio-state.edu>
12013         * emacs.c (syms_of_emacs) <kill-emacs-hook>: Doc fix (not run in
12014         batch mode).
12016         * lread.c (Fload): Doc fix (load-suffixes).
12018 2002-10-10  Steven Tamm  <steventamm@mac.com>
12020         * macterm.c (syms_of_macterm, mac_get_mouse_btn):
12021         Reverse functionality of mac-wheel-button-is-mouse-2 to be correct.
12022         Also switch the default to Qnil from Qt.
12024 2002-10-08  Kenichi Handa  <handa@m17n.org>
12026         * coding.c (code_convert_region): When we need more GAP for
12027         conversion, pay attention to the case that coding->produced is not
12028         greater than coding->consumed.
12030 2002-10-07  Richard M. Stallman  <rms@gnu.org>
12032         * unexelf.c (unexec): Redo 9/16 change, but only if IRIX6_5.
12034 2002-10-06  Andrew Choi  <akochoi@shaw.ca>
12036         * macmenu.c (mac_menu_show): Add j to count menu items; match
12037         menu_item_selection to it to find selected item.
12039 2002-10-06  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
12041         * xterm.c (XTread_socket): Fix from 2002-10-03 didn't cover all
12042         cases.  The correct fix is to pass ReparentNotify to Xt.
12043         The shell widget interprets ConfigureNotify differently depending
12044         on if it has been reparented or not.
12046 2002-10-05  Markus Rost  <rost@math.ohio-state.edu>
12048         * editfns.c (Fformat_time_string): Doc fix.
12050 2002-10-05  John Paul Wallington  <jpw@shootybangbang.com>
12052         * fns.c (Flength): Doc fix.
12054 2002-10-04  Stefan Monnier  <monnier@cs.yale.edu>
12056         * keyboard.c (keyremap): New struct.
12057         (read_key_sequence): Use it: globally replace keytran_foo with
12058         keytran.foo and fkey_foo with fkey.foo.  Rename temp vars
12059         keytran_next and fkey_next to just `next'.
12061 2002-10-04  Steven Tamm  <steventamm@mac.com>
12063         * macterm.c (keycode_to_xkeysym_table): Change return to be
12064         treated like an X keysym.
12066 2002-10-03  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
12068         * xterm.c (XTread_socket): For ConfigureNotify, with x and y == 0,
12069         and USE_MOTIF, call XTranslateCoordinates to get the real x and y.
12070         This is to also handle x/y changes that occur because of a resize.
12072 2002-10-02  John Paul Wallington  <jpw@shootybangbang.com>
12074         * frame.c (Vdelete_frame_functions): New variable.
12075         (syms_of_frame): Initialize and defvar it.
12076         (Fdelete_frame): Use it instead of delete-frame-hook.  Don't run
12077         it when frame's `tooltip' parameter is non-nil.
12079         * xfns.c (x_create_tip_frame): Set `tooltip' frame parameter to t.
12081         * w32fns.c (x_create_tip_frame): Likewise.
12083         * macfns.c (x_create_tip_frame): Likewise.
12085 2002-09-30  Kenichi Handa  <handa@m17n.org>
12087         * xterm.c (x_encode_char): For DIM=1 charset, set ccl->reg[2] to
12088         -1 before calling ccl_driver.
12090         * coding.c (decode_coding_emacs_mule): Check coding->cmp_data.
12091         Only when it is non-nil, handle composition sequence.
12092         (setup_coding_system) <0>: Don't force composition handling.
12094         * Makefile.in (lisp, shortlisp): Add utf-16.elc
12096 2002-09-29  Richard M. Stallman  <rms@gnu.org>
12098         * search.c (Freplace_match): Adjust match data for the substitution
12099         just made in the buffer.
12101         * xdisp.c (STOP_POLLING, RESUME_POLLING): New macros.
12102         (redisplay_internal): Use them.  Do RESUME_POLLING at end of function.
12104 2002-09-27  Richard M. Stallman  <rms@gnu.org>
12106         * keyboard.c (STOP_POLLING, RESUME_POLLING): New macros.
12107         (read_char): Use them.  Do all exits thru the end of the function.
12109 2002-09-27  Kenichi Handa  <handa@etl.go.jp>
12111         * xfaces.c (try_font_list): Pay attention to the case that FAMILY
12112         is nil.
12114 2002-09-26  Richard M. Stallman  <rms@gnu.org>
12116         * regex.h (__restrict_arr): Don't define if already defined.
12118         * coding.c (run_pre_post_conversion_on_str):
12119         Save and restore Vdeactivate_mark.
12121 2002-09-26  John Paul Wallington  <jpw@shootybangbang.com>
12123         * minibuf.c (Fminibufferp): Add an optional `buffer' argument.
12125 2002-09-26  Kenichi Handa  <handa@etl.go.jp>
12127         * xfaces.c (try_font_list): New arg PREFER_FACE_FAMILY.  If it is
12128         nonzero, try face's family at first.  Otherwise try FAMILY at first.
12129         (choose_face_font): If C is a single byte char or latin-1, call
12130         try_font_list with PREFER_FACE_FAMILY 1.
12132 2002-09-21  Richard M. Stallman  <rms@gnu.org>
12134         * window.c (select_window_1): Don't select frame.
12135         Set frame's selected window only when frame itself is selected.
12136         (Fselect_window): Doc fix.
12138 2002-09-18  Kim F. Storm  <storm@cua.dk>
12140         * process.c (make-network-process): Doc fix (there is no
12141         network-server-log-function hook).
12143 2002-09-18  Richard M. Stallman  <rms@gnu.org>
12145         * print.c (print): Clear out the unused parts of Vprint_number_table.
12146         (syms_of_print): Doc fix for `print-number-table'.
12148         * unexelf.c (unexec): Undo previous change.
12150 2002-09-17  Andreas Schwab  <schwab@suse.de>
12152         * m/alpha.h [LINUX]: Don't define DATA_START.
12154 2002-09-16  Dave Love  <fx@gnu.org>
12156         * unexelf.c (unexec): Deal with .got, reinstating change from
12157         25-08-1999.
12159 2002-09-13  Richard M. Stallman  <rms@gnu.org>
12161         * s/sol2-6.h (UNEXEC): Comment out definition.
12163         * unexsol.c (unexec): Don't downcase first letter of error msg.
12165         * xfaces.c (Fcolor_supported_p): Just one arg is required.
12167 2002-09-12  Markus Rost  <rost@math.ohio-state.edu>
12169         * unexsol.c: Include buffer.h, charset.h, coding.h.
12171 2002-09-11  Richard M. Stallman  <rms@gnu.org>
12173         * unexsol.c: Don't use report_file_error; do it by hand
12174         using dlerror.
12176         * process.c (wait_reading_process_input, both versions):
12177         Before calling turn_on_atimers, call stop_polling.
12179         * emacs.c (syms_of_emacs) <command-line-args>: Doc fix.
12181         * xdisp.c (try_scrolling): If after make_cursor_line_fully_visible
12182         we go to too_near_end, call clear_glyph_matrix.
12183         (redisplay_window): After make_cursor_line_fully_visible,
12184         call clear_glyph_matrix and bypass `goto done'.
12186         * xfns.c (x_report_frame_params): If FRAME_SCROLL_BAR_PIXEL_WIDTH is 0
12187         and we have non-toolkit scroll bars, return nil for scroll-bar-width.
12189 2002-09-10  Richard M. Stallman  <rms@gnu.org>
12191         * fileio.c (Fdo_auto_save): Catch error making directory.
12192         Only call push_message if we need to.
12193         At the same time, make an unwind-protect to pop it.
12194         Rename local message_p to old_message_p.
12195         (do_auto_save_make_dir, do_auto_save_eh): New functions.
12196         (do_auto_save_unwind): Don't call pop_message.
12198         * lisp.h (pop_message_unwind): Renamed from push_message_unwind.
12200         * keyboard.c (Fexecute_extended_command): Use pop_message_unwind.
12202         * alloc.c (Fgarbage_collect): Use pop_message_unwind.
12204         * xdisp.c (pop_message_unwind): Renamed from push_message_unwind.
12206 2002-09-10  Stefan Monnier  <monnier@cs.yale.edu>
12208         * regex.c (DISCARD_FAILURE_REG_OR_COUNT): Delete.
12209         (CHECK_INFINITE_LOOP): Don't pop anything: just set `cycle' to 1.
12210         (re_match_2_internal): Be more careful with infinite loops.
12212 2002-09-10  Kim F. Storm  <storm@cua.dk>
12214         * macros.c (end_kbd_macro): New function.
12215         (Fend_kbd_macro): Use it.
12217         * macros.h (end_kbd_macro): Declare extern.
12219         * keyboard.c (Fdiscard_input): If defining keyboard macro,
12220         end and save it instead of discarding it.
12222 2002-09-09  Markus Rost  <rost@math.ohio-state.edu>
12224         * s/sol2-6.h: Fix typo.  Add comment.
12226 2002-09-09  Richard M. Stallman  <rms@gnu.org>
12228         * regex.c (regnum_t): Use signed int, not unsigned int.
12230         * s/sol2-6.h: New file.
12232         * s/sol2-5.h (UNEXEC): Definition deleted.
12234 2002-09-08  Kim F. Storm  <storm@cua.dk>
12236         * macros.c (executing_macro_index): Change type to EMACS_INT.
12237         (syms_of_macros): DEFVAR_INT it  (needed by kmacro).
12239         * macros.h (executing_macro_index): Change type to EMACS_INT.
12241 2002-09-06  Richard M. Stallman  <rms@gnu.org>
12243         * casetab.c (set_case_table): Make canon table point to eqv table.
12245 2002-09-06  Juanma Barranquero  <lektu@terra.es>
12247         * coding.c (syms_of_coding): Fix spacing.
12249         * composite.c (Fcompose_region_internal)
12250         (Fcompose_string_internal): Likewise.
12252         * data.c (Flsh): Likewise.
12254         * fontset.c (Fset_fontset_font): Likewise.
12256         * macfns.c (Fx_server_max_request_size): Likewise.
12258         * w16select.c (syms_of_win16select): Likewise.
12260         * w32select.c (syms_of_w32select): Likewise.
12262         * xselect.c (syms_of_xselect): Likewise.
12264 2002-09-05  Richard M. Stallman  <rms@gnu.org>
12266         * regex.c (set_image_of_range_1): In no-TRANSLATE case,
12267         call EXTEND_RANGE_TABLE and return a proper value.
12268         (set_image_of_range): Don't call set_image_of_range_1
12269         if no TRANSLATE or if range includes all of Latin-1.
12270         Only call it for the Latin-1 part of the range.
12271         For other cases, make two separate ranges,
12272         one for the original specified characters and one for
12273         their case-conversions.
12275 2002-09-04  Richard M. Stallman  <rms@gnu.org>
12277         * s/sol2-5.h (UNEXEC): Use unexsol.o.
12279         * window.c (displayed_window_lines): Correct for one-off bug
12280         in HEIGHT on non-window displays.
12282         * regex.c (set_image_of_range_1): New function.
12283         (set_image_of_range): Use set_image_of_range_1 for Latin-1.
12284         Return a value to indicate running out of memory.
12285         (SET_RANGE_TABLE_WORK_AREA): Check value from set_image_of_range.
12286         (extend_range_table_work_area): New subroutine.
12287         (EXTEND_RANGE_TABLE): Replaces EXTEND_RANGE_TABLE_WORK_AREA.
12288         Different calling conventions, and used from set_image_of_range{,_1}.
12289         (IMMEDIATE_QUIT_CHECK): Definitions moved.
12291 2002-09-04  Juanma Barranquero  <lektu@terra.es>
12293         * makefile.w32-in: All dependencies updated.
12295 2002-09-01  Richard M. Stallman  <rms@gnu.org>
12297         * unexsol.c: New file.
12299         * xfns.c (Qbox): Declare external, don't define.
12301         * xdisp.c (redisplay_window) <force-start case>:
12302         If point is on semi-visible last line, reposition
12303         it at previous line.
12305         * alloc.c (display_malloc_warning): Use display-warning.
12306         (malloc_warning_1): Function deleted.
12308         * alloc.c [ALLOC_DEBUG]: #undef INLINE.
12310         * lread.c (read1): Handle #! by skipping the line.
12312 2002-08-31  Richard M. Stallman  <rms@gnu.org>
12314         * Makefile.in (TEMACS_LDFLAGS): Renamed from ALL_LDFLAGS.
12315         Don't include LDFLAGS.
12316         (temacs): Pass LDFLAGS separately, and not via YMF_PASS_LDFLAGS.
12318 2002-08-31  Eli Zaretskii  <eliz@is.elta.co.il>
12320         * xdisp.c (get_window_cursor_type): Don't use x_highlight_frame
12321         member of x_display_info unless we compile for some window system.
12323 2002-08-31  Kim F. Storm  <storm@cua.dk>
12325         * xdisp.c (Valternate_cursor_type, Qalternate_cursor_type): Removed.
12326         (get_window_cursor_type): Don't use them.
12327         (syms_of_xdisp): Remove intern, staticpro, and defvar for them.
12329 2002-08-30  Kenichi Handa  <handa@etl.go.jp>
12331         * xdisp.c (get_next_display_element): Fix previous change.
12333 2002-08-30  Andrew Choi  <akochoi@shaw.ca>
12335         * macterm.c (expose_overlaps): New function (merge code from xterm.c).
12336         (expose_window): Use it to fix the display of overlapping
12337         rows (merge code from xterm.c).
12339         * macfns.c (Qbox): Add extern declaration.
12341 2002-08-30  Juanma Barranquero  <lektu@terra.es>
12343         * w32fns.c (Qbox): Make extern.
12344         (syms_of_w32fns): Remove initialization of Qbox.
12346 2002-08-30  Rune Kleveland  <runekl@viewpoint.no>  (tiny change)
12348         * xfns.c (Fx_open_connection): Fix error message.
12350 2002-08-30  Kim F. Storm  <storm@cua.dk>
12352         The following changes consolidates the handling of the cursor
12353         type in xdisp.c, moving duplicate code and functionality from
12354         xfns.c, xterm.c, w32fns.c, w32term.c, macfns.c, and macterm.c.
12356         * frame.h (enum text_cursor_kinds): Consolidated here.
12357         Added DEFAULT_CURSOR value.
12358         (struct frame) <desired_cursor, cursor_width>
12359         <blink_off_cursor, blink_off_cursor_width>: New fields.
12360         Consolidated from output_x, output_w32 and output_mac structs.
12361         (FRAME_DESIRED_CURSOR, FRAME_CURSOR_WIDTH, FRAME_BLINK_OFF_CURSOR)
12362         (FRAME_BLINK_OFF_CURSOR_WIDTH): Macros consolidated here.
12364         * xdisp.c (Qbar, Qhbar, Qbox, Qhollow, Vblink_cursor_alist):
12365         Variables consolidated here.
12366         (Valternate_cursor_type, Qalternate_cursor_type): New variables.
12367         (Vcursor_in_non_selected_windows): Renamed from
12368         cursor_in_non_selected_windows and changed to Lisp_Object.
12369         (syms_of_xdisp): Define and staticpro new and moved variables.
12370         (get_specified_cursor_type): Renamed from x_specified_cursor_type;
12371         consolidated here.  Recognize Qhollow setting.
12372         (set_frame_cursor_types): New function to set frame cursor types
12373         based on the frame parameters.
12374         (get_window_cursor_type): New function to calculate new cursor
12375         type and width for the specified window.  Based on duplicated
12376         code consolidated here.
12377         Enhancements: cursor-in-non-selected-windows may be a cursor type,
12378         check buffer-local alternate-cursor-type and blink-cursor-alist
12379         before using built-in blink off methods.
12381         * dispextern.h (cursor_in_non_selected_windows): Extern removed.
12383         * lisp.h (Qcursor_in_non_selected_windows): Extern removed.
12384         (get_specified_cursor_type, get_window_cursor_type)
12385         (set_frame_cursor_types): Added prototypes.
12387         * macfns.c (x_specified_cursor_type): Removed.
12388         (x_set_cursor_type): Use set_frame_cursor_types.
12389         (Qbar, Qbox): Removed.
12390         (syms_of_macfns): Don't intern or staticpro them.
12392         * macterm.c (x_specified_cursor_type): Remove prototype.
12393         (x_draw_bar_cursor): Use FRAME_CURSOR_WIDTH.
12394         (x_display_and_set_cursor): Use get_window_cursor_type.
12395         Remove unused local variables cursor_non_selected, active_cursor.
12396         Redraw cursor if hbar cursor width changes.
12397         (make_mac_frame): Set FRAME_DESIRED_CURSOR.
12399         * macterm.h (enum text_cursor_kinds): Removed.
12400         (struct output_mac) <current_cursor, desired_cursor, cursor_width>
12401         <blink_off_cursor, blink_off_cursor_width>: Members removed.
12402         (FRAME_DESIRED_CURSOR): Macro removed.
12404         * w32fns.c (Vblink_cursor_alist): Removed.
12405         (Qbar, Qhbar, Qbox, Qhollow): Removed.
12406         (syms_of_w32fns): Don't intern, staticpro, or define them.
12407         (x_specified_cursor_type): Removed.
12408         (x_set_cursor_type): Use set_frame_cursor_types.
12410         * w32term.c (x_specified_cursor_type): Remove prototype.
12411         (x_draw_bar_cursor): Use FRAME_CURSOR_WIDTH.
12412         (x_display_and_set_cursor): Use get_window_cursor_type.
12413         Remove unused local variables cursor_off_state.
12414         Redraw cursor if hbar cursor width changes.
12415         Changed all occurrences of w32_highlight_frame to x_highlight_frame.
12417         * w32term.h (enum text_cursor_kinds): Removed.
12418         (struct output_w32) <current_cursor, desired_cursor, cursor_width>
12419         <blink_off_cursor, blink_off_cursor_width>: Members removed.
12420         (FRAME_DESIRED_CURSOR, FRAME_CURSOR_WIDTH, FRAME_BLINK_OFF_CURSOR)
12421         (FRAME_BLINK_OFF_CURSOR_WIDTH): Macros removed.
12422         (struct w32_display_info) <x_highlight_frame>: Renamed member from
12423         w32_highlight_frame.
12425         * xfns.c (Vblink_cursor_alist): Removed.
12426         (Qbar, Qhbar, Qbox, Qhollow): Removed.
12427         (syms_of_xfns): Don't intern, staticpro, or define them.
12428         (x_specified_cursor_type): Removed.
12429         (x_set_cursor_type): Use set_frame_cursor_types.
12431         * xterm.c (x_specified_cursor_type): Remove prototype.
12432         (x_draw_bar_cursor): Use FRAME_CURSOR_WIDTH.
12433         (x_display_and_set_cursor): Use get_window_cursor_type.
12434         Remove unused local variables cursor_off_state.
12435         Redraw cursor if hbar cursor width changes.
12437         * xterm.h (enum text_cursor_kinds): Removed.
12438         (struct output_x) <current_cursor, desired_cursor, cursor_width>
12439         <blink_off_cursor, blink_off_cursor_width>: Members removed.
12440         (FRAME_DESIRED_CURSOR, FRAME_CURSOR_WIDTH, FRAME_BLINK_OFF_CURSOR)
12441         (FRAME_BLINK_OFF_CURSOR_WIDTH): Macros removed.
12442         (x_specified_cursor_type): Remove prototype.
12444 2002-08-28  Richard M. Stallman  <rms@gnu.org>
12446         * w32fns.c (x_set_cursor_type): Set FRAME_BLINK_OFF_CURSOR and
12447         FRAME_BLINK_OFF_CURSOR_WIDTH using defaults and Vblink_cursor_alist.
12448         (Vblink_cursor_alist): New variable.
12449         (syms_of_w32fns): Initialize and defvar it.
12450         (x_specified_cursor_type): Recognize Qbox for filled box.
12451         Exceptions are hollow boxes.
12452         (Qbox, Qhollow): New variables.
12453         (syms_of_w32fns): Initialize and staticpro them.
12455         * w32term.h (FRAME_BLINK_OFF_CURSOR, FRAME_BLINK_OFF_CURSOR_WIDTH):
12456         New macros.
12457         (struct w32_output): New fields blink_off_cursor,
12458         blink_off_cursor_width.
12459         (FRAME_CURSOR_WIDTH): New macro.
12461         * w32term.c (x_display_and_set_cursor): Use FRAME_BLINK_OFF_CURSOR
12462         and FRAME_BLINK_OFF_CURSOR_WIDTH for blinking cursor off.
12464         * w32term.c (x_display_and_set_cursor): Check FRAME_CURSOR_WIDTH
12465         for bar cursor.
12467         * w32term.c (expose_overlaps): New function.
12468         (expose_window): Use it to fix the display of overlapping rows.
12470 2002-08-28  Simon Josefsson  <jas@extundo.com>
12472         * xfns.c (Fx_open_connection): Improve help when X connection
12473         fails, xhost is insecure and xauth is better.
12475 2002-08-28  Juanma Barranquero  <lektu@terra.es>
12477         * makefile.w32-in: Add missing dependencies on w32term.h and
12478         composite.h.
12480         * emacs.c (USAGE1): Add missing newline.
12482 2002-08-27  Andrew Choi  <akochoi@shaw.ca>
12484         * s/darwin.h [HAVE_LIBNCURSES]: Define HAVE_TERMINFO.
12486 2002-08-27  Richard M. Stallman  <rms@gnu.org>
12488         * xfns.c (x_set_cursor_type): Set FRAME_BLINK_OFF_CURSOR and
12489         FRAME_BLINK_OFF_CURSOR_WIDTH using defaults and Vblink_cursor_alist.
12490         (Vblink_cursor_alist): New variable.
12491         (syms_of_xfns): Initialize and defvar it.
12492         (x_specified_cursor_type): Recognize Qbox for filled box.
12493         Exceptions are hollow boxes.
12494         (Qbox, Qhollow): New variables.
12495         (syms_of_xfns): Initialize and staticpro them.
12497         * xterm.h (FRAME_BLINK_OFF_CURSOR, FRAME_BLINK_OFF_CURSOR_WIDTH):
12498         New macros.
12499         (struct x_output): New fields blink_off_cursor, blink_off_cursor_width.
12501         * xterm.c (x_display_and_set_cursor): Use FRAME_BLINK_OFF_CURSOR
12502         and FRAME_BLINK_OFF_CURSOR_WIDTH for blinking cursor off.
12504         * emacs.c (main): Handle --script.
12505         (USAGE1): Mention --script.
12506         (standard_args): Define sort order for --script.
12508 2002-08-27  Gerd Moellmann  <gerd.moellmann@t-online.de>
12510         * xdisp.c (redisplay_updating_p): Variable removed.
12511         (inhibit_free_realized_faces, Qinhibit_free_realized_faces):
12512         New variables.
12513         (init_iterator): Don't free realized faces if
12514         inhibit_free_realized_faces is set.
12515         (redisplay_internal): Bind Qinhibit_free_realized_faces to nil.
12516         (syms_of_xdisp): DEFVAR_BOOL inhibit-free-realized-faces,
12517         initialize Qinhibit_free_realized_faces.
12519         * dispextern.h (PRODUCE_GLYPHS): Set inhibit_free_realized_faces
12520         when iterator is adding glyphs to a glyph matrix.
12522 2002-08-27  Kenichi Handa  <handa@etl.go.jp>
12524         * xdisp.c (get_next_display_element): In unibyte case, don't use
12525         octal form for such eight-bit characters that can be converted to
12526         multibyte char.
12528 2002-08-26  Kim F. Storm  <storm@cua.dk>
12530         * frame.c (make_terminal_frame) [CANNOT_DUMP]: Initialize
12531         foreground and background colors.  From Joe Buehler.
12533 2002-08-26  Miles Bader  <miles@gnu.org>
12535         * bytecode.c (Fbyte_code): Fsub1 can GC, so protect it.
12537 2002-08-25  Andrew Choi  <akochoi@shaw.ca>
12539         * emacs.c (main): Call init_mac_osx_environment if HAVE_CARBON is
12540         defined instead of MAC_OSX.
12542         * s/darwin.h (select): Define select to sys_select only if
12543         HAVE_CARBON is defined.
12544         (HAVE_WORKING_VFORK): #undef it.  Define vfork to fork.
12545         (DONT_REOPEN_PTY): #def it.
12547         * macterm.c (XTread_socket): Remove code to call
12548         SendEventToEventTarget for keys with command modifiers when
12549         mac_command_key_is_meta is nil.
12551 2002-08-24  Andreas Schwab  <schwab@suse.de>
12553         * eval.c (Fdefvar): Fix last change.
12555 2002-08-23  Richard M. Stallman  <rms@gnu.org>
12557         * eval.c (Fdefvar, Fdefconst, Fdefvaralias):
12558         Record variables in load history as (defvar . VAR).
12559         (Fdefvar): Don't record in load history if no initial value.
12560         (Qdefvar): New variable.
12561         (syms_of_eval): Init and staticpro it.
12563         * lread.c (syms_of_lread): Doc fix.
12564         (build_load_history): Use Fmember to see if a definition
12565         is already in the Vload_history element.
12567         * process.c (Fstart_process): Remove /: from program name.
12569         * emacs.c (decode_env_path): Don't add /: if file name handler
12570         has a `safe-magic' property.
12572         * callproc.c (Fcall_process): Remove /: from program name.
12574 2002-08-23  Stefan Monnier  <monnier@cs.yale.edu>
12576         * regex.c (PATFETCH): Remove the translating fetch.
12577         (PATFETCH_RAW): Rename to PATFETCH.
12578         (set_image_of_range): New fun.
12579         (SET_RANGE_TABLE_WORK_AREA): Use it.
12580         (regex_compile): Don't translate the pattern chars so eagerly.
12581         Only do it when inserting an `exactn' bytecode or when handling
12582         a char-range.
12583         (mutually_exclusive_p): Avoid empty statement.
12585 2002-08-22  Kim F. Storm  <storm@cua.dk>
12587         * xdisp.c (redisplay_window): Do not `goto try_to_scroll' when we
12588         end up on a partially visible line; this reverts a specific part
12589         of the 2002-07-07 change by Richard M. Stallman to "fix" a nasty
12590         display error which has been reported several times now.
12591         However it introduces the problem that changes was supposed to fix.
12592         See my comments in the source if you want to debug this further.
12594 2002-08-20  Kenichi Handa  <handa@etl.go.jp>
12596         * abbrev.c (Fexpand_abbrev): Fix for the multibyte case.
12598 2002-08-19  Eli Zaretskii  <eliz@is.elta.co.il>
12600         * msdos.c (croak): Add `void' to definition.
12602         * sysdep.c (request_sigio, unrequest_sigio) [MSDOS]:
12603         Don't define them, they are defined in msdos.c.
12605         * mem-limits.h [MSDOS]: Declare etext.
12607         * fileio.c (Ffile_name_directory) [DOS_NT]: Don't declare `beg'
12608         `const' since CORRECT_DIR_SEPS modifies its target.
12610 2002-08-19  Kim F. Storm  <storm@cua.dk>
12612         * keyboard.c (Fclear_this_command_keys): Add optional arg
12613         KEEP-RECORD to avoid clearing lossage when we just want to clear
12614         the current key sequence (kmacro needs this).
12616 2002-08-19  Kenichi Handa  <handa@localhost>
12618         * composite.c (run_composition_function): Call FUNC if it is fboundp.
12620         * composite.h (COMPOSITION_MODIFICATION_FUNC): If PROP is not a
12621         cons, return Qnil.
12623 2002-08-17  Richard M. Stallman  <rms@gnu.org>
12625         * s/sol2-5.h (BROKEN_SIGIO): Add #undef.
12627         * sysdep.c [!VMS]: Include sys/files.h.
12629         * editfns.c (save_restriction_restore): Defend from unchained marker.
12631         * buffer.c (overlays_at): Handle extending vec uniformly.
12632         (overlays_in): Handle extending vec from length 0 as in overlays_at.
12634 2002-08-15  Andrew Choi  <akochoi@shaw.ca>
12636         * mac.c (init_mac_osx_environment): New function.
12638         * emacs.c (main) [MAC_OSX]: Call init_mac_osx_environment.
12640 2002-08-14  Kim F. Storm  <storm@cua.dk>
12642         * macros.c (Fstart_kbd_macro): Added NO-EXEC argument to inhibit
12643         executing macro before appending to it (when used from Lisp).
12644         (Fexecute_kbd_macro): Added LOOPFUNC argument to supply function
12645         which is called prior to each iteration of macro (for kmacro.el).
12646         (Fend_kbd_macro, Fcall_last_kbd_macro): Likewise.
12648         * lisp.h (Fexecute_kbd_macro): Update prototype.
12650         * keyboard.c (Fcommand_execute): Update call to Fexecute_kbd_macro.
12652 2002-08-14  Kenichi Handa  <handa@etl.go.jp>
12654         * xselect.c (QUTF8_STRING): New variable.
12655         (symbol_to_x_atom): Pay attention to QUTF8_STRING.
12656         (x_atom_to_symbol): Likewise.
12657         (x_get_local_selection): New argument local_request.  If it is
12658         nonzero, call handler_fn with the second arg nil.
12659         (x_handle_selection_request): Call x_get_local_selection with
12660         local_request 0.
12661         (lisp_data_to_selection_data): Don't encode the string here.
12662         (Fx_get_selection_internal): Call x_get_local_selection with
12663         local_request 1.
12664         (syms_of_xselect): Intern and staticpro QUTF8_STRING.
12666         * xterm.c (x_term_init): Initialize dpyinfo->Xatom_UTF8_STRING.
12668         * xterm.h (struct x_display_info): New member Xatom_UTF8_STRING.
12670 2002-08-13  Richard M. Stallman  <rms@gnu.org>
12672         * minibuf.c (Fminibufferp): New function.
12673         (syms_of_minibuf): Defsubr it.
12674         (Fminibuffer_prompt_end): Handle non-minibuffers specially.
12676 2002-08-13  Gerd Moellmann  <gerd.moellmann@t-online.de>
12678         * coding.c (Funencodable_char_position): Lisp_Object/int mixup.
12680 2002-08-12  Richard M. Stallman  <rms@gnu.org>
12682         * syswait.h: Only the include of sys/wait.h tests HAVE_SYS_WAIT_H.
12683         [!VMS] (WCOREDUMP, WEXITSTATUS, WIFEXITED, WIFSTOPPED, WIFSIGNALED)
12684         (WSTOPSIG, WTERMSIG): Define each one independently if not defined
12685         already.
12687         * buffer.c (syms_of_buffer) <fill-column>: Doc fix.
12689 2002-08-11  Andrew Choi  <akochoi@shaw.ca>
12691         * macterm.c (XTmouse_position): Check wp with is_emacs_window.
12692         (Vmac_pass_command_to_system): New variable.
12693         (Vmac_pass_control_to_system): New variable.
12694         (do_mouse_moved): Check wp with is_emacs_window.
12695         (XTread_socket): Check window_ptr with is_emacs_window.
12696         Call FrontNonFloatingWindow instead of FrontWindow.  Send keydown
12697         events back to Mac Toolbox for processing, depending on values of
12698         Vmac_pass_command_to_system and Vmac_pass_control_to_system.
12699         (syms_of_macterm): DEFVAR_LISP Vmac_pass_command_to_system and
12700         Vmac_pass_control_to_system.
12702 2002-08-10  Kenichi Handa  <handa@etl.go.jp>
12704         * coding.c (unencodable_char_position): New function.
12705         (Funencodable_char_position): New function.
12706         (syms_of_coding): Defsubr Funencodable_char_position.
12708 2002-08-10  Andrew Choi  <akochoi@shaw.ca>
12710         * mac.c (sys_select) [MAC_OSX]: New function.
12712         * macterm.c (MakeMeTheFrontProcess): New function.
12713         (mac_initialize): Call MakeMeTheFrontProcess.
12715         * s/darwin.h: Define select to sys_select.
12717 2002-08-09  Richard M. Stallman  <rms@gnu.org>
12719         * keyboard.c (make_lispy_event): Test WINDOWSNT, not WINDOWS_NT.
12721 2002-08-09  Gerd Moellmann  <gerd.moellmann@t-online.de>
12723         * xdisp.c (forward_to_next_line_start): Return 0 when reaching the
12724         end of the buffer.
12726 2002-08-08  Ken Raeburn  <raeburn@mit.edu>
12728         * coding.c (Ffind_operation_coding_system): Fix Lisp_Object/int mixup.
12730         * puresize.h (BASE_PURESIZE): Increase to 910000.
12732 2002-08-08  Kenichi Handa  <handa@etl.go.jp>
12734         * coding.c (Ffind_operation_coding_system): For write-region, if
12735         VISIT is a filename, make it the target.
12737 2002-08-07  Richard M. Stallman  <rms@gnu.org>
12739         * alloc.c (mark_object): Detect long lists for debugging.
12740         (mark_object_loop_halt): New variable.
12742         * s/hpux10.h (C_SWITCH_SYSTEM): #undef it.
12744         * data.c (Fmake_variable_frame_local): Doc fix.
12746 2002-08-01  David Ponce  <david@dponce.com>
12748         * w32menu.c (local_heap, local_alloc, local_free): New macros.
12749         (malloc_widget_value, free_widget_value)
12750         (w32_free_submenu_strings): Use them.
12752         (push_submenu_start, push_submenu_end, push_left_right_boundary)
12753         (push_menu_pane, push_menu_item, single_keymap_panes)
12754         (single_menu_item, Fx_popup_menu, menubar_selection_callback)
12755         (single_submenu, set_frame_menubar)
12756         (w32_menu_show, w32_dialog_show): Use AREF, ASET, ASIZE.
12758         (Fx_popup_menu): Don't show pop up menu until preceding one is
12759         actually cleaned up.  Moved UNGCPRO outside #ifdef HAVE_MENUS block.
12761         * w32menu.c: Changes adapted from xmenu.c
12762         (set_frame_menubar): First parse all submenus,
12763         then make widget_value trees from them.
12764         Don't allocate any widget_value objects
12765         until we are done with the parsing.
12766         (parse_single_submenu): New function.
12767         (digest_single_submenu): New function.
12768         (single_submenu): Function deleted, replaced by those two.
12770 2002-08-04  Andrew Choi  <akochoi@shaw.ca>
12772         * macterm.c (XTread_socket): Check that FrontNonFloatingWindow
12773         returns a valid window pointer before proceeding for keyDown and
12774         autoKey events.
12776 2002-08-03  Andrew Choi  <akochoi@shaw.ca>
12778         * macterm.c (USE_CARBON_EVENTS): New macro.
12779         (macCtrlKey, macShiftKey, macMetaKey, macAltKey): New macros.
12780         (x_iconify_frame): Call CollapseWindow.
12781         (Vmac_reverse_ctrl_meta): New variable.
12782         (Vmac_wheel_button_is_mouse_2): New variable.
12783         (init_mac_drag_n_drop): New function.
12784         (mac_do_receive_drag): New function.
12785         (mac_handle_service_event): New function.
12786         (init_service_handler): New function.
12787         (mac_to_emacs_modifiers): New function.
12788         (mac_event_to_emacs_modifiers): New function.
12789         (mac_get_mouse_btn): New function.
12790         (mac_convert_event_ref): New function.
12791         (XTread_socket) [USE_CARBON_EVENTS]: Call ReceiveNextEvent,
12792         SendEventToEventTarget, mac_event_to_emacs_modifiers, and
12793         mac_get_mouse_btn.
12794         (mac_initialize): Call init_mac_drag_n_drop and init_service_handler.
12796         * keyboard.c: Define Qmouse_wheel, mouse_wheel_syms, and
12797         lispy_mouse_wheel_names for MAC_OSX as well as for WINDOWS_NT.
12798         (kbd_buffer_get_event): Set used_mouse_menu for MENU_BAR_EVENT and
12799         TOOL_BAR_EVENT for MAC_OS as well.
12800         (make_lispy_event): Handle MOUSE_WHEEL_EVENT for MAC_OSX as well
12801         as for WINDOWS_NT.
12802         (syms_of_keyboard): Initialize Qmouse_wheel for MAC_OSX.
12804         * termhooks.h (event_kind): Define MOUSE_WHEEL_EVENT also for MAC_OSX.
12806 2002-08-03  Gerd Moellmann  <gerd.moellmann@t-online.de>
12808         * xdisp.c (forward_to_next_line_start): Fix a condition that
12809         lead to a newline being skipped.
12811 2002-08-02  Andrew Choi  <akochoi@shaw.ca>
12813         * mac.c (syms_of_mac): Defsubr Sx_selection_exists_p.
12815 2002-08-01  Richard M. Stallman  <rms@gnu.org>
12817         * Makefile.in (SOME_MACHINE_OBJECTS): Add fontset.o.
12819 2002-07-31  Andrew Choi  <akochoi@shaw.ca>
12821         * macfns.c: #undef init_process before #define-ing it.
12823         * s/darwin.h: Define MAC_OS, SYMS_SYSTEM, and OTHER_FILES only if
12824         HAVE_CARBON is defined.
12826 2002-07-31  Richard M. Stallman  <rms@gnu.org>
12828         * xmenu.c (set_frame_menubar): First parse all submenus,
12829         then make widget_value trees from them.
12830         Don't allocate any widget_value objects
12831         until we are done with the parsing.
12832         (parse_single_submenu): New function.
12833         (digest_single_submenu): New function.
12834         (single_submenu): Function deleted, replaced by those two.
12836 2002-07-30  Juanma Barranquero  <lektu@terra.es>
12838         * w32proc.c (syms_of_ntproc): Fix docstring of
12839         `w32-get-true-file-attributes'.
12841 2002-07-28  Richard M. Stallman  <rms@gnu.org>
12843         * s/hpux8.h (HPUX8): Define this before including hpux.h.
12844         (HAVE_SYS_WAIT_H): #define deleted; we let Autoconf decide.
12846         * s/hpux.h (HAVE_SYS_WAIT_H): The #undef is conditional on HPUX8.
12848         * keyboard.c (make_lispy_event):
12849         Use #ifdef to test USE_TOOLKIT_SCROLL_BARS.
12850         Explicitly clear up_modifier in event->modifiers.
12852 2002-07-27  Richard M. Stallman  <rms@gnu.org>
12854         * xterm.h (FRAME_CURSOR_WIDTH): New macro.
12856         * xterm.c (x_display_and_set_cursor): Check FRAME_CURSOR_WIDTH
12857         for bar cursor.
12859 2002-07-26  Kenichi Handa  <handa@etl.go.jp>
12861         * coding.c (detect_coding_iso2022): While checking a byte sequence
12862         for CODING_CATEGORY_MASK_ISO_8_2, if we read one extra byte, check
12863         it in the normal loop.
12865 2002-07-24  Gerd Moellmann  <gerd.moellmann@t-online.de>
12867         * xterm.c (expose_overlaps): New function.
12868         (expose_window): Use it to fix the display of overlapping rows.
12870         * xdisp.c (unwind_redisplay): Clear redisplay_updating_p.
12872 2002-07-23  Ken Raeburn  <raeburn@gnu.org>
12874         * lisp.h (XPNTR): Use NO_UNION_TYPE version for union as well,
12875         since it only depends on XUINT.
12877         * m/alpha.h (BITS_PER_LONG, BITS_PER_EMACS_INT, EMACS_INT,
12878         EMACS_UINT, SPECIAL_EMACS_INT, DATA_SEG_BITS,
12879         PNTR_COMPARISON_TYPE, VALBITS, MARKBIT, XINT, XUINT, XPNTR):
12880         Macros deleted.
12882         * mem-limits.h (start_of_data): If DATA_START is defined, prefer
12883         its value over other approaches.
12884         * sysdep.c (start_of_data): Don't define the function if a macro
12885         form has been defined.
12887 2002-07-23  Gerd Moellmann  <gerd.moellmann@t-online.de>
12889         * xdisp.c (redisplay_updating_p): New variable.
12890         (init_iterator): Don't free realized faces when
12891         redisplay_updating_p is set.
12892         (redisplay_internal): Set redisplay_updating_p while updating
12893         the display.
12895 2002-07-23  Richard M. Stallman  <rms@gnu.org>
12897         * editfns.c (Fmessage): Treat "" like nil.
12899 2002-07-23  Kenichi Handa  <handa@etl.go.jp>
12901         * xdisp.c (face_before_or_after_it_pos):
12902         Call FETCH_MULTIBYTE_CHAR with byte postion, not char position.
12904 2002-07-22  Juanma Barranquero  <lektu@terra.es>
12906         * callproc.c (init_callproc) [DOS_NT]:
12907         Initialize Vshared_game_score_directory to nil.
12908         (syms_of_callproc) [DOS_NT]: Likewise.
12910 2002-07-22  Gerd Moellmann  <gerd.moellmann@t-online.de>
12912         * xdisp.c (display_line): Replace an abort with xassert.
12914 2002-07-21  Richard M. Stallman  <rms@gnu.org>
12916         * xdisp.c (redisplay_window): Don't test BEG_UNCHANGED
12917         and END_UNCHANGED when setting buffer_unchanged_p.
12918         Use current_matrix_up_to_date_p to decide whether to use
12919         try_cursor_movement.
12921         * config.in (HAVE_SHARED_GAME_DIR): Undef deleted.
12923         * epaths.in (PATH_GAME): New macro, edited by ../Makefile.in.
12925         * callproc.c (init_callproc): Set up Vshared_game_score_directory.
12926         Set to nil if dir does not exist.
12927         (syms_of_callproc): Init unconditionally and simply.
12929         * buffer.c (Fbuffer_list): Doc fix.
12931 2002-07-21  Ken Raeburn  <raeburn@gnu.org>
12933         * sysdep.c (end_of_text, end_of_data): Unused functions deleted.
12935         * buffer.c (mmap_realloc): When shrinking, make sure number of
12936         pages to unmap is rounded towards zero.
12938         * m/mips-siemens.h (XSETUINT, XSETPNTR): Unused macros deleted.
12939         (XSETINT): Deleted.
12941         * m/att3b.h (XINT): Don't define.
12942         (VALBITS, VALMASK, XTYPE): Deleted.
12943         (DATA_SEG_BITS): Define.
12944         * m/gec63.h (VALBITS, VALAMASK, XTYPE, XSETTYPE, XPNTR, XSET,
12945         ARRAY_MARK_FLAG): Deleted.
12946         (DATA_SEG_BITS): Define.
12947         * m/pfa50.h (VALBITS, VALMASK, XTYPE): Deleted.
12948         (DATA_SEG_BITS): Define.
12950 2002-07-20  Richard M. Stallman  <rms@gnu.org>
12952         * print.c (print_error_message): New args CONTEXT and CALLER.
12953         Calls changed.
12955         * lisp.h (print_error_message): Declare new args.
12957         * keyboard.c (cmd_error_internal): Pass Vsignaling_function
12958         and CONTEXT to print_error_message, don't print them here.
12959         For a Quit, don't use Vsignaling_function.
12960         Call message_log_maybe_newline.
12962         * Makefile.in (xsmfns.o): Don't depend on lisp.h.
12964 2002-07-20  Kim F. Storm  <storm@cua.dk>
12966         * xdisp.c (redisplay_window): Test MODIFF to set buffer_unchanged_p.
12968 2002-07-19  Ken Raeburn  <raeburn@gnu.org>
12970         * bytecode.c (struct byte_stack): Pointers into byte string now
12971         point to const.
12972         * callproc.c (Fcall_process): Make NEW_ARGV array hold pointer to
12973         const.
12974         * charset.h (BCOPY_SHORT): Source pointer now points to const.
12975         * coding.c (encode_eol, detect_coding, detect_eol):
12976         (decode_coding, encode_coding, detect_coding_system):
12977         Source strings now treated as const.
12978         (decode_coding_string, encode_coding_string): Use STRING_COPYIN to
12979         modify Lisp string contents.
12980         * coding.h (decode_coding, encode_coding, detect_coding,
12981         detect_eol): Declarations updated.
12982         * composite.c (compose_chars_in_text): Treat Lisp string contents
12983         as const.
12984         * dispnew.c (safe_bcopy): Source pointer now points to const.
12985         * lisp.h (STRING_COPYIN): New macro.
12986         (detect_coding_system, safe_bcopy, temp_output_buffer_setup):
12987         (internal_with_output_to_temp_buffer): Declarations updated.
12988         * print.c (temp_output_buffer_setup):
12989         (internal_with_output_to_temp_buffer): Buffer name argument is now
12990         pointer to const.
12991         * sound.c (struct sound_device): Function pointer field "write"
12992         buffer argument now points to const.
12993         (vox_write): Buffer argument points to const.
12994         * syntax.c (Fstring_to_syntax, skip_chars): Treat Lisp string
12995         contents as const.
12996         * sysdep.c (emacs_write): Buffer pointer now const.
12997         * term.c (encode_terminal_code): Buffer pointer now const.
12998         * xfaces.c (may_use_scalable_font_p): Argument now points to const.
12999         (x_face_list_fonts, x_update_menu_appearance):
13000         (hash_string_case_insensitive): Treat Lisp string contents as const.
13002 2002-07-19  Juanma Barranquero  <lektu@terra.es>
13004         * xdisp.c (syms_of_xdisp): Remove redundant deprecation info.
13006         * fileio.c (syms_of_fileio): Likewise.
13007         (Ffile_name_as_directory): Fix argument name in docstring.
13008         (file_name_as_directory): Use literal '/' instead of DIRECTORY_SEP.
13010 2002-07-18  Richard M. Stallman  <rms@gnu.org>
13012         * data.c (Fdefalias): Doc fix.
13014 2002-07-17  Dave Love  <fx@gnu.org>
13016         * intervals.h (text_property_stickiness): Use P_.
13018         * ccl.c: Remove `emacs' conditionals.
13019         (ccl_backtrace_table): Fix size spec.
13020         (ccl_driver): Fix type errors.
13022 2002-07-16  Ken Raeburn  <raeburn@gnu.org>
13024         * alloc.c (xstrdup, make_string, make_unibyte_string)
13025         (make_multibyte_string, build_string): String pointer args now
13026         point to const.
13027         * charset.c (find_charset_in_text, c_string_width):
13028         (chars_in_text, multibyte_chars_in_text, parse_str_as_multibyte):
13029         * fileio.c (report_file_error):
13030         * insdel.c (copy_text, count_size_as_multibyte, insert_1):
13031         (count_combining_before, count_combining_after, insert_1_both):
13032         (insert, insert_and_inherit, insert_string):
13033         (insert_before_markers, insert_before_markers_and_inherit):
13034         * lread.c (intern, oblookup, hash_string):
13035         * minibuf.c (temp_echo_area_glyphs):
13036         * search.c (fast_c_string_match_ignore_case):
13037         * sysdep.c (emacs_open, set_file_times):
13038         * xfaces.c (xstricmp):
13039         * xdisp.c (store_frame_title, string_char_and_length):
13040         (message_dolog, message2, message2_nolog, set_message): Likewise.
13041         (set_message_1): Cast message string argument to const pointer.
13042         * editfns.c (general_insert_function): Insertion function now
13043         takes pointer to const for input data.
13044         * charset.h (find_charset_in_text, c_string_width):
13045         (parse_str_as_multibyte): Declarations updated.
13046         * dispextern.h (xstricmp): Declaration updated.
13047         * lisp.h (chars_in_text, multibyte_chars_in_text, copy_text):
13048         (count_size_as_multibyte, count_combining_before):
13049         (count_combining_after, insert_1, insert_1_both, message_dolog):
13050         (insert, insert_and_inherit, insert_before_markers)
13051         (insert_before_markers_and_inherit, set_message, message2):
13052         (message2_dolog, build_string, make_string, make_unibyte_string):
13053         (make_multibyte_string, intern, oblookup, report_file_error):
13054         (fast_c_string_match_ignore_case, temp_echo_area_glyphs):
13055         (emacs_open, xstrdup): Declarations updated.
13056         * systime.h (set_file_times): Declaration updated.
13058         * charset.c (find_charset_in_text, lisp_string_width): Use const
13059         for pointer to lisp string data.
13060         * charset.h (FETCH_STRING_CHAR_ADVANCE):
13061         (FETCH_STRING_CHAR_ADVANCE_NO_CHECK):
13062         * coding.c (Ffind_coding_systems_region_interval):
13063         * fileio.c (Ffile_name_directory, Ffile_name_nondirectory):
13064         (Fmake_directory_internal, Fdelete_directory):
13065         (Ffile_name_absolute_p, Fwrite_region, double_dollars):
13066         * fontset.c (font_family_registry, fs_query_fontset):
13067         (list_fontsets):
13068         * frame.c (Fframe_parameter):
13069         * keyboard.c (cmd_error_internal):
13070         * keymap.c (Fdescribe_buffer_bindings):
13071         * lread.c (complete_filename_p, openp):
13072         * minibuf.c (Fminibuffer_complete_word):
13073         * xdisp.c (string_pos_nchars_ahead, init_from_display_pos):
13074         (face_before_or_after_it_pos, next_element_from_string):
13075         (get_overlay_arrow_glyph_row, display_mode_element):
13076         (decode_mode_spec_coding):
13077         * xterm.c (same_x_server): Likewise.
13079         * buffer.c (reset_buffer_local_variables): Delete "#if 0"
13080         settings of non-existent fields.
13082         * editfns.c (Fstring_to_char): Don't use XSTRING/XSETSTRING to
13083         copy a lisp value.
13085         * lread.c (Fintern_soft): Use string macros instead of
13086         Lisp_String fields.
13087         * keyboard.c (echo_char, parse_modifiers_uncached):
13088         (parse_solitary_modifier, Fexecute_extended_command): Likewise.
13089         * textprop.c (validate_interval_range, interval_of): Likewise.
13091         * fontset.c (Fset_fontset_font): Use SDATA instead of XSTRING()->data.
13093         * charset.h (FETCH_STRING_CHAR_ADVANCE)
13094         (FETCH_STRING_CHAR_ADVANCE_NO_CHECK): Use SBYTES instead of
13095         XSTRING()->size_byte.
13097         * lisp.h (SDATA, SREF): Produce rvalue.
13098         (SSET): New macro.
13099         * alloc.c (make_event_array): Use SSET for storing into a string.
13100         * buffer.c (Fother_buffer): Use SREF when retrieving a byte from
13101         a string.
13102         * casefiddle.c (casify_object): Use SSET.
13103         * charset.h (FETCH_STRING_CHAR_ADVANCE)
13104         (FETCH_STRING_CHAR_ADVANCE_NO_CHECK): Use SDATA when getting
13105         address of string contents.
13106         * data.c (Faref): Use SDATA.
13107         (Faset): Use SDATA, SSET.
13108         * dired.c (directory_files_internal): Use SSET.
13109         * fileio.c (Fmake_symbolic_link, Fexpand_file_name): Use SSET.
13110         (Fread_file_name): Use SREF, SSET.
13111         * fns.c (concat): Use SSET.
13112         (concat, Fdelete): Use SDATA.
13113         * insdel.c (insert_from_string_1): Use SDATA.
13114         * keyboard.c (Fevent_convert_list): Use SREF.
13115         * lread.c (Fload): Use SDATA, SSET.
13116         * macfns.c (validate_x_resource_name): Use SSET.
13117         * process.c (status_message): Use SSET.
13118         * search.c (wordify): Use SDATA.
13119         (Freplace_match): Use SREF.
13120         * w32fns.c (validate_x_resource_name): Use SSET.
13121         * xfns.c (validate_x_resource_name): Use SSET.
13122         * xterm.c (x_catch_errors, x_clear_errors): Use SSET.
13124 2002-07-16  Richard M. Stallman  <rms@gnu.org>
13126         * s/hpux11.h (USG_SUBTTY_WORKS): Defined.
13128         * xdisp.c (reconsider_clip_changes):
13129         Don't test prevent_redisplay_optimizations_p.
13130         (redisplay_internal): Test prevent_redisplay_optimizations_p
13131         along with clip_changed in some cases.
13132         (try_window_id): Likewise.
13133         (redisplay_window): New local var buffer_unchanged_p.
13135         * keyboard.c (cmd_error) [HAVE_X_WINDOWS]: Maybe call cancel_houglass.
13137         * process.c (create_process): Test USG_SUBTTY_WORKS.
13138         (process_send_signal): Clean up handling of GID.
13139         Detect errors in ioctls meant to set GID.
13141         * window.c (temp_output_buffer_show):
13142         Don't set prevent_redisplay_optimizations_p.
13144 2002-07-15  Juanma Barranquero  <lektu@terra.es>
13146         * eval.c (Fdefvaralias): Add docstring argument.
13148 2002-07-15  Ken Raeburn  <raeburn@gnu.org>
13150         * lisp.h (STRING_INTERVALS): Produce rvalue.
13151         (STRING_SET_INTERVALS): New macro.
13152         * buffer.c (Fget_buffer_create, Fmake_indirect_buffer): Use it.
13153         * fns.c (Fstring_as_multibyte): Likewise.
13154         * intervals.c (balance_possible_root_interval, delete_interval)
13155         (create_root_interval, copy_intervals_to_string): Likewise.
13156         * textprop.c (set_text_properties): Likewise.  Use NULL_INTERVAL
13157         instead of 0.
13159 2002-07-14  Ken Raeburn  <raeburn@gnu.org>
13161         * lisp.h (STRING_SET_CHARS): New macro.
13162         (SCHARS, SBYTES): Produce rvalues.
13163         * dired.c (directory_files_internal): Use STRING_SET_CHARS.
13164         * fns.c (concat): Likewise.
13165         * lread.c (read_vector): Likewise.
13167         * lisp.h (SMBP): Delete.  All uses changed to STRING_MULTIBYTE.
13168         (STRING_SET_UNIBYTE): New macro.
13169         (SET_STRING_BYTES): Delete.  Callers (all of which supplied a
13170         length of -1) changed to use STRING_SET_UNIBYTE.
13171         * abbrev.c, alloc.c, buffer.c, bytecode.c, callint.c, callproc.c,
13172         casefiddle.c, category.c, ccl.c, charset.c, charset.h, coding.c,
13173         composite.c, data.c, dired.c, dispnew.c, disptab.h, doc.c,
13174         dosfns.c, editfns.c, emacs.c, eval.c, fileio.c, filelock.c, fn.c,
13175         fontset.c, frame.c, indent.c, insdel.c, intervals.c, keyboard.c,
13176         keymap.c, lread.c, mac.c, macfns.c, macmenu.c, macterm.c,
13177         minibuf.c, msdos.c, print.c, process.c, search.c, sound.c,
13178         sunfns.c, syntax.c, syntax.h, sysdep.c, textprop.c, undo.c,
13179         w16select.c, w32.c, w32fns.c, w32menu.c, w32proc.c, w32select.c,
13180         w32term.c, window.c, xdisp.c, xfaces.c, xfns.c, xmenu.c,
13181         xselect.c, xsmfns.c, xterm.c: Most uses of XSTRING combined with
13182         STRING_BYTES or indirection changed to SCHARS, SBYTES,
13183         STRING_INTERVALS, SREF, SDATA; explicit size_byte references left
13184         unchanged for now.
13186 2002-07-13  Kim F. Storm  <storm@cua.dk>
13188         * keyboard.c (command_loop_1): Invert check on Vmemory_full.
13190 2002-07-12  Richard M. Stallman  <rms@gnu.org>
13192         * fileio.c (Fwrite_region): Doc fix.
13194         * print.c (print_error_message): Don't handle Vsignaling_function here.
13196         * keyboard.c (cmd_error_internal): Handle Vsignaling_function here.
13197         (command_loop_1): Avoid certain actions after memory-full error.
13199         * eval.c (Fsignal): Don't call cancel_hourglass.
13200         For a memory-full error, don't call Vsignal_hook_function
13201         and don't set Vsignaling_function.
13203         * process.c (process_send_signal): Add abort call.
13205 2002-07-11  Markus Rost  <rost@math.ohio-state.edu>
13207         * keymap.c (Fkey_binding): Fix typo.
13209 2002-07-11  Richard M. Stallman  <rms@gnu.org>
13211         * alloc.c (Vmemory_full): New variable.
13212         (Vmemory_signal_data): Rename from memory_signal_data.
13213         Uses changed.
13214         (syms_of_alloc): Defvar them.
13215         (memory_full, buffer_memory_full): Set Vmemory_full.
13217         * lisp.h (Vmemory_full): Add declaration.
13218         (current_column, indented_beyond_p): Change declaration.
13220         * indent.c (last_known_column): Declare as double, not float.
13221         (current_column, current_column_1, string_display_width)
13222         (position_indentation): Return `double'.
13223         (indented_beyond_p): Arg `column' is `double'.  Callers changed.
13225         * xdisp.c (message_dolog): Do nothing if Vmemory_full is non-nil.
13226         (back_to_previous_visible_line_start)
13227         (reseat_at_next_visible_line_start, next_element_from_buffer):
13228         Use `double', not `float', when calling indented_beyond_p.
13230         * s/hpux11.h (BROKEN_SA_RESTART): Define.
13232         * sysdep.c (sys_signal): Test BROKEN_SA_RESTART.
13234 2002-07-11  Juanma Barranquero  <lektu@terra.es>
13236         * alloc.c, buffer.c, bytecode.c, callint.c, callproc.c, coding.c,
13237         * composite.c, dired.c, dispnew.c, editfns.c, emacs.c, eval.c,
13238         * fileio.c, fns.c, insdel.c, keyboard.c, keymap.c, lread.c, macfns.c,
13239         * macmenu.c, macros.c, minibuf.c, print.c, process.c, sound.c,
13240         * textprop.c, w32fns.c, w32menu.c, window.c, xfaces.c, xfns.c,
13241         * xmenu.c, xselect.c, xterm.c: Use SPECPDL_INDEX wherever makes sense.
13243 2002-07-10  Juanma Barranquero  <lektu@terra.es>
13245         * lisp.h (SPECPDL_INDEX): Rename from BINDING_STACK_SIZE.
13246         All callers changed.
13248 2002-07-09  Stefan Monnier  <monnier@cs.yale.edu>
13250         * data.c (Fdefalias): Add an optional `docstring' argument.
13251         (set_internal, Fsetq_default): Use XCAR/XCDR.
13253         * composite.c (HASH_VALUE, HASH_KEY):
13254         * ccl.c (HASH_VALUE): Remove (it's in lisp.h now).
13256 2002-07-09  Kenichi Handa  <handa@etl.go.jp>
13258         * callproc.c (Fcall_process): Fix previous change.
13260 2002-07-07  Stefan Monnier  <monnier@cs.yale.edu>
13262         * minibuf.c (Ftry_completion, Fall_completions, Ftest_completion):
13263         Add support for hash-tables.
13264         (Ftry_completion): Return t even if the string appears multiple times.
13266         * fns.c (Fnconc): Use XCDR.
13267         (Fprovide): Use CONSP and XCDR.
13268         (HASH_KEY, HASH_VALUE, HASH_NEXT, HASH_HASH, HASH_INDEX)
13269         (HASH_TABLE_SIZE): Delete: moved to lisp.h.
13270         (Fmake_hash_table): Accept `:size nil'.
13271         (Fmakehash): Delete: moved to subr.el.
13272         (syms_of_fns): Don't defsubr makehash.
13274         * lisp.h (HASH_KEY, HASH_VALUE, HASH_NEXT, HASH_HASH, HASH_INDEX)
13275         (HASH_TABLE_SIZE): Move from fns.c.
13277 2002-07-07  Richard M. Stallman  <rms@gnu.org>
13279         * xdisp.c (make_cursor_line_fully_visible): Don't try short scrolls.
13280         Instead just return 0 when there is something to be done.
13281         (try_scrolling): If make_cursor_line_fully_visible returns 0,
13282         retry scrolling as if cursor were off the bottom.
13283         (try_cursor_movement): If make_cursor_line_fully_visible returns 0,
13284         return CURSOR_MOVEMENT_MUST_SCROLL.
13285         (redisplay_window): If make_cursor_line_fully_visible returns 0,
13286         go to try_to_scroll.
13288         * buffer.c (Fbuffer_local_value): Store current value into its binding
13289         so we get the up-to-date value for the binding that is loaded.
13291         * eval.c (Fdefmacro): Doc fix.
13293 2002-07-05  Dave Love  <fx@gnu.org>
13295         * keyboard.c (read_key_sequence): Set initial_idleness_start_time
13296         correctly.
13298         * ccl.c (Vtranslation_hash_table_vector, GET_HASH_TABLE)
13299         (HASH_VALUE, CCL_LookupIntConstTbl, CCL_LookupCharConstTbl): New.
13300         (ccl_driver): Add cases for CCL_LookupIntConstTbl,
13301         CCL_LookupCharConstTbl.
13302         (syms_of_ccl): Defvar translation-hash-table-vector.
13304 2002-07-05  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
13306         * xdisp.c: Remove unused variable `face'.
13308 2002-07-04  Juanma Barranquero  <lektu@terra.es>
13310         * keyboard.c (post_command_idle_hook): Remove redundant (and inexact)
13311         obsolescence information.
13313 2002-07-03  Andrew Choi  <akochoi@shaw.ca>
13315         * macterm.c (x_list_fonts): Fix comment.  Cache fonts matching
13316         pattern.  Search cache first.
13317         (init_font_name_table): Also add entry for jisx0201.1976-0 coding
13318         for Japanese font.
13319         (XLoadQueryFont): Use it.
13321 2002-07-02  Richard M. Stallman  <rms@gnu.org>
13323         * keymap.c (Fdefine_key): Doc fix.
13325         * xterm.c (x_term_init): Turn off polling around XtOpenDisplay.
13327 2002-07-02  Juanma Barranquero  <lektu@terra.es>
13329         * keymap.c (syms_of_keymap): Fix typo.
13331 2002-07-01  Andrew Choi  <akochoi@shaw.ca>
13333         * s/darwin.h: Define POSIX_SIGNALS.
13335         * macterm.c (do_ae_open_documents) [MAC_OSX]: Call FSpMakeFSRef
13336         and FSRefMakePath to convert FSSpec returned with Apple Event to
13337         Posix pathname.
13338         (mac_initialize) [TARGET_API_MAC_CARBON]:
13339         Call init_required_apple_events and disable the `Quit' menu item
13340         provided automatically by the Carbon Toolbox.
13342 2002-07-01  Dave Love  <fx@gnu.org>
13344         * keyboard.c (kbd_buffer_store_event): Fix interrupt_signal decl
13345         for K&R.
13347         * xterm.c: Fix prototype for K&R.
13349         * term.c (costs_set): Declare static, non-initialized for pcc.
13351 2002-07-01  Richard M. Stallman  <rms@gnu.org>
13353         * keyboard.c (timer_last_idleness_start_time): New variable.
13354         (timer_start_idle): Set that.
13355         (read_key_sequence): Use that to reset timer_idleness_start_time
13356         to previous value.
13358         * window.c (Frecenter): With arg, set optional_new_start.
13360         * xdisp.c (redisplay_internal): Make optional_new_start really work.
13362         * minibuf.c (Fminibuffer_complete_and_exit): Move to end of
13363         buffer for completion.
13365 2002-06-29  Ken Raeburn  <raeburn@gnu.org>
13367         * xdisp.c (store_mode_line_string): Lisp_Object/int mixup.
13369 2002-06-28  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
13371         * keyboard.c (readable_filtered_events): New function that filters
13372         FOCUS_IN_EVENT depending on parameter.
13373         (readable_events): Calls readable_filtered_events, not filtering
13374         FOCUS_IN_EVENT.
13375         (get_filtered_input_pending): New function, filtering parameter passed
13376         to readable_filtered_events.
13377         (get_input_pending): Calls get_filtered_input_pending, not filtering
13378         FOCUS_IN_EVENT.
13379         (Finput_pending_p): Calls get_filtered_input_pending, DO filter
13380         FOCUS_IN_EVENT.
13382         * xterm.h (struct x_output): Add focus_state.
13384         * xterm.c (x_focus_changed): New function.
13385         (x_detect_focus_change): New function.
13386         (XTread_socket): Call x_detect_focus_change for FocusIn/FocusOut
13387         EnterNotify and LeaveNotify to track X focus changes.
13389 2002-06-28  Andreas Schwab  <schwab@suse.de>
13391         * lisp.h: Remove duplicate declaration of code_convert_string_norecord.
13393 2002-06-27  Kim F. Storm  <storm@cua.dk>
13395         * xdisp.c: (mode_line_string_list, mode_line_string_face)
13396         (mode_line_string_face_prop): New variables.
13397         (store_mode_line_string): New function.
13398         (display_mode_element): Use store_mode_line_string to
13399         add mode-line string elements to mode_line_string_list
13400         when mode_line_string_list is non-nil.
13401         (Fformat_mode_line): Now returns propertized string by
13402         default.  New arg NO-PROPS to ignore properties.
13403         (decode_mode_spec): Only add two dashes for %- in propertized
13404         mode-line string.
13405         (syms_of_xdisp): Init and staticpro mode_line_string_list.
13407 2002-06-27  Stefan Monnier  <monnier@cs.yale.edu>
13409         * minibuf.c (minibuffer_completion_contents): Add return type.
13411 2002-06-27  Juanma Barranquero  <lektu@terra.es>
13413         * charset.c (Fchar_bytes): Remove obsolescence info from docstring.
13415 2002-06-26  Juanma Barranquero  <lektu@terra.es>
13417         * fileio.c (read_file_name_cleanup): Add missing return.
13419 2002-06-26  Richard M. Stallman  <rms@gnu.org>
13421         * window.c (Frecenter): Don't set force_start flag.
13423         * minibuf.c (do_completion, Fminibuffer_complete_word)
13424         (Fminibuffer_completion_help): Complete just the text before point.
13425         (minibuffer_completion_contents): New function.
13427         * buffer.c (Fbury_buffer): Use frames_discard_buffer.
13429         * frame.c (frames_bury_buffer): Function deleted.
13431 2002-06-25  Miles Bader  <miles@gnu.org>
13433         * callint.c (Fcall_interactively): When checking to see if doprnt hit
13434         the end of callint_message, allow for a terminating '\0'.
13436 2002-06-24  Juanma Barranquero  <lektu@terra.es>
13438         * w32select.c: Include composite.h
13440         * w16select.c: Likewise.
13442 2002-06-24  Kenichi Handa  <handa@etl.go.jp>
13444         * callproc.c (Fcall_process): If code detection is necessary,
13445         call detect_coding directly here.
13447         * coding.c (detect_eol): Preserve coding->cmp_data.
13449         * w16select.c (Fw16_get_clipboard_data):
13450         * w32fns.c (w32_to_x_font):
13451         * w32select.c (Fw32_get_clipboard_data):
13452         * xselect.c (selection_data_to_lisp_data):
13453         * xterm.c (XTread_socket): Disable composition handling.
13455 2002-06-24  Stefan Monnier  <monnier@cs.yale.edu>
13457         * print.c (temp_output_buffer_setup): Kill all local variables.
13459 2002-06-22  Stefan Monnier  <monnier@cs.yale.edu>
13461         * lread.c (Fread): Remove redundant and imprecise declaration.
13463         * xfns.c (check_x_display_info): Use check_x_frame.
13465         * .gdbinit (xprintsym): Use the new `xname' field.
13466         (xsymbol): Use it.
13468 2002-06-22  Jason Rumney  <jasonr@gnu.org>
13470         * w32fns.c (file_dialog_callback): New function.
13471         (Fx_file_dialog): Allow selecting directories as well as files.
13473 2002-06-21  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
13475         * m/pmax.h (START_FILES): Define START_FILES for NetBSD and
13476         OpenBSD.  Add support for mipseb-*-netbsd* machines.
13478 2002-06-17  Andrew Choi  <akochoi@shaw.ca>
13480         * macterm.c (mac_scroll_area): Set foreground and backcolor to
13481         black and white before scrolling.  Restore frame background and
13482         foreground color after scrolling.
13483         (do_window_update): Call XClearWindow before calling expose_frame.
13484         (make_mac_frame): Don't set FRAME_BACKGROUND_PIXEL and
13485         FRAME_FOREGROUND_PIXEL of frame.
13487         * macterm.c (XTread_socket): If Vmac_command_key_is_meta is nil,
13488         test Mac command key as <ALT> key.
13490 2002-06-17  Stefan Monnier  <monnier@cs.yale.edu>
13492         * window.c (Fset_window_configuration): Lisp_Object/int mixup.
13494         * keyboard.c (read_key_sequence): Be more careful with first_unbound.
13495         Lookup keys in function-key-map immediately so that key-translation-map
13496         can be applied earlier.
13497         Remove function_key_possible and key_translation_possible, replaced
13498         by checking `keytran_start < t'.
13500         * .gdbinit (xsymbol): Use the new `xname' field.
13502 2002-06-17  Andrew Choi  <akochoi@shaw.ca>
13504         * macterm.c (XTread_socket): If Vmac_command_key_is_meta is nil,
13505         test Mac command key as <ALT> key.
13507         * mac.c (do_applescript): Call initialize_applescript if necessary
13508         when first called.  Dispose of result_desc only when there is no error.
13509         (Fdo_applescript): Use %d format specifier instead of %ld.
13511 2002-06-16  Andrew Choi  <akochoi@shaw.ca>
13513         * macterm.c (XTread_socket): Call FrontNonFloatingWindow instead
13514         of FrontWindow for cases keyDown and autoKey.
13516         * fontset.c (syms_of_fontset) [MAC_OS]: Set ASCII font of
13517         Vdefault_fontset to Monaco with mac-roman coding.
13519         * mac.c, macfns.c, macmenu.c, macterm.c: Undefine and redefine
13520         init_process before and after inclusion of Carbon/Carbon.h, resp.
13522         * macterm.c (x_new_font): Set font for normal_gc, reverse_gc, and
13523         cursor_gc.
13524         (add_font_name_table_entry): New function.
13525         (init_font_name_table): Use add_font_name_table_entry; add italic,
13526         bold, and bold-italic entries for truetype fonts.
13528         * xfaces.c (init_frame_faces) [MAC_OS]: Call realize_basic_faces
13529         for Mac too.
13530         (try_font_list) [MAC_OS]: If no font matches given registry, try
13531         fonts with any registry matching face_family.
13532         (realize_x_face) [MAC_OS]: Remove old ad-hoc fix to load font here.
13534         * s/darwin.h: If autoconf detects the Ncurses library, define
13535         LIBS_TERMCAP to -lncurses to use it.
13537 2002-06-16  Eli Zaretskii  <eliz@is.elta.co.il>
13539         * strftime.c [__hpux]: Include sys/_mbstate_t.h.
13541 2002-06-15  Richard M. Stallman  <rms@gnu.org>
13543         * window.c (Fset_window_configuration): Explicitly preserve
13544         the point value that new_current_buffer had at the start.
13546 2002-06-14  Juanma Barranquero  <lektu@terra.es>
13548         * composite.c (Fcompose_region_internal, Fcompose_string_internal):
13549         Fix typos.
13551 2002-06-14  Kim F. Storm  <storm@cua.dk>
13553         * insdel.c (insert_1_both, insert_from_string_1)
13554         (insert_from_buffer_1): Recalculate END_UNCHANGED in case the
13555         insert happened in the end_unchanged region.  Otherwise, the
13556         redisplay may be confused and duplicate the last line in the
13557         buffer [seen after save-buffer when require-final-newline==t].
13559 2002-06-13  Jason Rumney  <jasonr@gnu.org>
13561         * w32.c (init_environment): Remove EMACSLOCKDIR.
13562         (stat): Swap _S_IFDIR and _S_IFREG.
13564 2002-06-13  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
13566         * keyboard.c, macterm.c, macmenu.c, msdos.c, sysdep.c
13567         * termhooks.h, xmenu.c, xsmfns.c, xterm.h, xterm.c, w32term.c,
13568         * w32menu.c, w32inevt.c: Rename enum event_kind as follows:
13569         ascii_keystroke to ASCII_KEYSTROKE_EVENT, multibyte_char_keystroke
13570         to MULTIBYTE_CHAR_KEYSTROKE_EVENT, non_ascii_keystroke to
13571         NON_ASCII_KEYSTROKE_EVENT, timer_event to TIMER_EVENT, mouse_click
13572         to MOUSE_CLICK_EVENT, mouse_wheel to MOUSE_WHEEL_EVENT,
13573         language_change_event to LANGUAGE_CHANGE_EVENT, scroll_bar_click
13574         to SCROLL_BAR_CLICK_EVENT, w32_scroll_bar_click to
13575         W32_SCROLL_BAR_CLICK_EVENT, selection_request_event to
13576         SELECTION_REQUEST_EVENT, selection_clear_event to
13577         SELECTION_CLEAR_EVENT, buffer_switch_event to BUFFER_SWITCH_EVENT,
13578         delete_window_event to DELETE_WINDOW_EVENT, iconify_event to
13579         ICONIFY_EVENT, deiconify_event to DEICONIFY_EVENT,
13580         menu_bar_activate_event to MENU_BAR_ACTIVATE_EVENT, drag_n_drop to
13581         DRAG_N_DROP_EVENT, save_session_event to SAVE_SESSION_EVENT and
13582         no_event to NO_EVENT.
13584 2002-06-12  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
13586         * macmenu.c: Remove declaration of Qmouse_click and Qevent_kind.
13588 2002-06-12  Stefan Monnier  <monnier@cs.yale.edu>
13590         * intervals.c (textget): Don't forget to `return'.
13591         (lookup_char_property): Use XCAR/XCDR.
13593 2002-06-12  Juanma Barranquero  <lektu@terra.es>
13595         * xdisp.c (Fformat_mode_line): Fix typo.
13597 2002-06-12  Kim F. Storm  <storm@cua.dk>
13599         * xdisp.c (Fformat_mode_line): New function.
13600         (frame_title_buf, frame_title_buf_end, frame_title_ptr)
13601         (store_frame_title_char, store_frame_title): Use unconditionally.
13602         (init_xdisp): Defsubr Fformat_mode_line.
13603         Initialize frame_title_buf etc. unconditionally.
13605 2002-06-11  Stefan Monnier  <monnier@cs.yale.edu>
13607         * keyboard.c (read_key_sequence):
13608         Remove prev_(fkey|keytran}_(map|start|end) since we don't want to pass
13609         things through those maps after downcasing events.
13610         Enforce that keytran_end <= fkey_start, i.e. that key-translation-map
13611         applies after function-key-map.
13612         Make sure that keytran can be done in the middle in the sequence.
13613         Be careful not to throw away events past the one we downcase.
13615         * lread.c (read_integer): Remove unused var `tem'.
13616         (read1): Fix int/Lisp_Object mixup.
13618         * xfaces.c (tty_lookup_color): Type bool/Lisp_Object mismatch fixed.
13620 2002-06-11  Richard M. Stallman  <rms@gnu.org>
13622         * keyboard.c (readable_events): Ignore any number of
13623         FOCUS_IN_EVENT events and return 0 if nothing else in buffer.
13625 2002-06-09  Miles Bader  <miles@gnu.org>
13627         * xfaces.c (Ftty_supports_face_attributes_p): New function.
13628         (parse_rgb_list, tty_lookup_color): New functions.
13629         (tty_defined_color): Use `tty_lookup_color' to do all the work.
13630         (color_distance, Fcolor_distance): New functions.
13631         (TTY_SAME_COLOR_THRESHOLD): New macro.
13632         (Qtty_color_standard_values): New variable.
13633         (syms_of_xfaces): Initialize new vars & functions.
13635 2002-06-08  Colin Walters  <walters@verbum.org>
13637         * textprop.c (Vchar_property_alias_alist): New variable.
13638         (syms_of_textprop) <Vchar_property_alias_alist>: DEFVAR_LISP.
13640         * intervals.c (lookup_char_property): New function for looking up
13641         overlay and text properties, created from textget.
13642         (textget): Use it.
13644         * intervals.h (lookup_char_property): Declare.
13645         (Vchar_property_alias_alist): Declare.
13647         * buffer.c (Foverlay_get): Use lookup_char_property.
13649 2002-06-07  Sam Steingold  <sds@gnu.org>
13651         * xselect.c (lisp_data_to_selection_data): Fix last change:
13652         *data_ret is not a Lisp string, while unibyte_string is.
13654 2002-06-07  Eli Zaretskii  <eliz@is.elta.co.il>
13656         * xselect.c (lisp_data_to_selection_data): Fix last change:
13657         set size_ret.
13659 2002-06-07  Andreas Schwab  <schwab@suse.de>
13661         * m/amdx86-64.h: New file.
13663 2002-06-05  Eli Zaretskii  <eliz@is.elta.co.il>
13665         * fns.c (Fstring_make_unibyte): Doc fix.
13667         * xselect.c (lisp_data_to_selection_data): If the requested type
13668          is STRING, call string_make_unibyte to encode the selected text
13669          as a string.
13671         * window.c (Fset_window_hscroll): Doc fix.
13673 2002-06-05  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
13675         * fileio.c (choose_write_coding_system):
13676         Call select-safe-coding-system properly.
13678 2002-06-03  Richard M. Stallman  <rms@gnu.org>
13680         * xdisp.c (message_with_string): Error if STRING is not a string.
13682         * fns.c (md5): Pass FILE arg to Vselect_safe_coding_system_function.
13684         * fileio.c (choose_write_coding_system): Pass FILE arg to
13685         Vselect_safe_coding_system_function.
13687 2002-06-03  Ken Raeburn  <raeburn@gnu.org>
13689         * buffer.c (fix_overlays_before): Fix list-walking bug in 05-19 change.
13691 2002-06-02  Thien-Thi Nguyen  <ttn@gnu.org>
13693         * bytecode.c (Fbyte_code): Cast `current_column' return value to int.
13694         * cmds.c (Fdelete_backward_char, internal_self_insert): Likewise.
13695         * keymap.c (describe_command): Likewise.
13696         * minibuf.c (read_minibuf): Likewise.
13698         * xdisp.c (redisplay_internal, redisplay_window, decode_mode_spec):
13699         Cast `current_column' return value to int.
13700         (back_to_previous_visible_line_start)
13701         (reseat_at_next_visible_line_start, next_element_from_buffer):
13702         Cast `indented_beyond_p' 3rd arg to float.
13704         * indent.c (last_known_column): Now a float.
13705         (current_column_1, position_indentation, current_column)
13706         (string_display_width): Return float.
13707         (Fcurrent_column): Cast `current_column' return value to int.
13708         (Fcurrent_indentation): Cast `position_indentation' retval to int.
13709         (indented_beyond_p): Third arg now a float.
13710         (compute_motion, vmotion): Cast `indented_beyond_p' 3rd arg to float.
13712         * lisp.h (current_column): Now returns float.
13713         (indented_beyond_p): 3rd arg now a float.
13715 2002-05-31  Eli Zaretskii  <eliz@is.elta.co.il>
13717         * xfns.c (x_encode_text): Return stringp non-NULL if coding_system
13718         is Qcompound_text_with_extensions.
13720         * xselect.c (lisp_data_to_selection_data): Always set selection
13721         type as string if x_encode_text returns streingp non-NULL.
13723         * s/netbsd.h: Include /usr/pkg in the run time shared library path.
13725 2002-05-30  Richard M. Stallman  <rms@gnu.org>
13727         * window.c (Fset_window_configuration): Correct the handling
13728         of point in current buffer, to work with multiple windows.
13730 2002-05-29  Colin Walters  <walters@verbum.org>
13732         * lread.c (Fread_from_string): Don't depend on order of evaluation
13733         for C function parameters.
13735 2002-05-28  Richard M. Stallman  <rms@gnu.org>
13737         * xterm.c (x_display_and_set_cursor): Change the cursor in the same
13738         way for blinked-off state and for a nonselected window.
13740         * window.c (window_scroll_pixel_based): Don't call Fbolp;
13741         instead, see if the new start pos is at beginning of line.
13743         * fileio.c (Fwrite_region): If START is a string, don't
13744         make any annotations.
13746         * eval.c (syms_of_eval): Doc fix.
13748 2002-05-28  Colin Walters  <walters@debian.org>
13750         * emacs.c (USAGE1): Add --no-splash.
13751         (standard_args): Ditto.
13753 2002-05-28  Colin Walters  <walters@gnu.org>
13755         * lread.c (readchar_count): New variable.
13756         (readchar): Increment it.
13757         (unreadchar): Decrement it.
13758         (read_multibyte): Decrement it.
13759         (Vread_with_symbol_positions): New variable.
13760         (Vread_symbol_positions_list): New variable.
13761         (read_internal_start): New function, created from Fread and
13762         Fread_from_string.  Handle Vread_symbol_positions_list and
13763         Vread_with_symbol_positions.
13764         (readevalloop, Fread, Fread_from_string): Use it.
13765         (read1): Use readchar_count to add symbol positions to
13766         Vread_symbol_positions_list if Vread_with_symbol_positions is non-nil.
13767         (syms_of_lread): DEFVAR_LISP and initialize them.
13769         * lread.c (read0, read1, read_list, read_vector, read_multibyte)
13770         (substitute_object_recurse, substitute_object_in_subtree)
13771         (substitute_in_interval): Prototype.
13772         (read_multibyte): Return c if it's less than zero.
13774 2002-05-28  Kim F. Storm  <storm@cua.dk>
13776         * fileio.c (Fread_file_name_internal): Added brute-force
13777         speed up for using predicate file-directory-p.
13779 2002-05-28  Kim F. Storm  <storm@cua.dk>
13781         * fileio.c (Vread_file_name_function, Vread_file_name_predicate):
13782         New variables.
13783         (syms_of_fileio): DEFVAR_LISP them.
13784         (read_file_name_cleanup): New unwind function.
13785         (Fread_file_name_internal): Only return completions satifying
13786         Vread_file_name_predicate.  Temporarily unwind protect and rebind
13787         default-directory while checking completions against the predicate.
13788         (Fread_file_name): Added PREDICATE argument.  Specbind it to
13789         Vread_file_name_predicate during completion.
13790         Call Vread_file_name_function to read the file name if non-nil.
13792         * lisp.h (Fread_file_name): Now has 6 args.
13794         * callint.c (Fcall_interactively) <"D">: Supply Qfile_directory_p
13795         predicate for Fread_file_name when reading directory name.
13796         Supply Qnil for predicate in other calls to Fread_file_name.
13798 2002-05-26  Miles Bader  <miles@gnu.org>
13800         * term.c (tty_capable_p): New function.
13801         * dispextern.h (tty_capable_p): New function declaration.
13802         (TTY_CAP_INVERSE, TTY_CAP_UNDERLINE, TTY_CAP_BOLD, TTY_CAP_DIM)
13803         (TTY_CAP_BLINK, TTY_CAP_ALT_CHARSET): New macros.
13805 2002-05-23  Stefan Monnier  <monnier@cs.yale.edu>
13807         * fileio.c (read_non_regular, Finsert_file_contents): Use BEG_BYTE.
13808         (Finsert_file_contents, build_annotations): Use XCAR, XCDR.
13809         (Vwrite_region_annotate_functions): Docstring fix.
13811 2002-05-23  Kim F. Storm  <storm@cua.dk>
13813         * xterm.c (x_write_glyphs): Clear phys_cursor_on_p if current
13814         phys_cursor's hpos is overwritten.  This is still not completely
13815         correct, as it doesn't really make sense to use hpos at all to
13816         get the cursor glyph (as that is relative to the width of the
13817         characters on the line, which may have changed during the update).
13819 2002-05-22  Jason Rumney  <jasonr@gnu.org>
13821         * w32fns.c (enumfont_t): Remove tail, make pattern a normal
13822         Lisp_Object.
13823         (enum_font_cb2, enum_font_maybe_add_to_list, w32_list_fonts):
13824         Use modified enumfont_t struct.
13826         * w32term.h (text_cursor_kinds): New enumeration member HBAR_CURSOR.
13828         * w32term.c (x_draw_bar_cursor): New argument KIND; callers changed.
13829         Handle the `hbar' cursor type.
13830         (x_display_and_set_cursor): Handle the HBAR_CURSOR case.
13832         * w32fns.c (Qhbar): New variable.
13833         (x_specified_cursor_type): Use it.
13835 2002-05-21  Ken Raeburn  <raeburn@gnu.org>
13837         * w32fns.c (enum_font_maybe_add_to_list): Use XCDR_AS_LVALUE for
13838         now, when the address is needed.
13840 2002-05-21  Colin Walters  <walters@gnu.org>
13842         * Makefile.in (shortlisp): Add font-core.el.
13844 2002-05-20  Richard M. Stallman  <rms@gnu.org>
13846         * buffer.c (syms_of_buffer) <cursor-type>: Doc fix.
13848         * keyboard.c (read_char_minibuf_menu_prompt): Don't list
13849         equivalent key bindings here.
13851 2002-05-20  Ken Raeburn  <raeburn@gnu.org>
13853         Change symbol structure to contain a lisp object for the symbol
13854         name:
13855         * lisp.h (struct Lisp_Symbol): Replace field "name" with a lisp
13856         object field named "xname".
13857         (SYMBOL_NAME): New macro.
13858         * abbrev.c (write_abbrev): Use SYMBOL_NAME instead of XSYMBOL and
13859         name field.
13860         * alloc.c (Fmake_symbol): Set symbol xname field instead of name.
13861         (mark_object, gc_sweep): Use symbol xname field and XSTRING
13862         instead of name field.
13863         * buffer.c (buffer_slot_type_mismatch): Use XSTRING and
13864         SYMBOL_NAME instead of XSYMBOL and name field.
13865         * callint.c (Fcall_interactively): Use XSTRING and SYMBOL_NAME
13866         instead of XSYMBOL and name field.
13867         * charset.c (Fdefine_charset, Fdeclare_equiv_charset): Use XSTRING
13868         and SYMBOL_NAME instead of XSYMBOL and name field.
13869         * coding.c (Fread_coding_system, code_convert_region1)
13870         (code_convert_string1, code_convert_string_norecord)
13871         (Ffind_operation_coding_system): Use SYMBOL_NAME instead of
13872         XSYMBOL and name field.
13873         * data.c (Fkeywordp, Fsymbol_name, store_symval_forwarding)
13874         (Fmake_variable_buffer_local, Fmake_local_variable)
13875         (Fmake_variable_frame_local): Use SYMBOL_NAME and XSTRING instead
13876         of XSYMBOL and name field.
13877         * editfns.c (Fformat): Use SYMBOL_NAME and XSTRING instead of
13878         XSYMBOL and name field.
13879         * emacs.c (shut_down_emacs) [#if 0]: Use SYMBOL_NAME and XSTRING
13880         instead of XSYMBOL and name field.
13881         * eval.c (do_autoload): Use SYMBOL_NAME and XSTRING instead of
13882         XSYMBOL and name field.
13883         * fns.c (Fstring_equal, Fstring_lessp, Frequire, sxhash):
13884         Use SYMBOL_NAME and XSTRING instead of XSYMBOL and name field.
13885         * fontset.c (Fset_fontset_font): Use SYMBOL_NAME and XSTRING
13886         instead of XSYMBOL and name field.
13887         * keyboard.c (echo_char, record_char, parse_modifiers_uncached)
13888         (parse_modifiers, apply_modifiers, Fevent_convert_list)
13889         (parse_solitary_modifier, Fexecute_extended_command):
13890         Use SYMBOL_NAME and XSTRING instead of XSYMBOL and name field.
13891         * keymap.c (silly_event_symbol_error, Fsingle_key_description)
13892         (Fdescribe_buffer_bindings): Use SYMBOL_NAME and XSTRING instead
13893         of XSYMBOL and name field.
13894         (describe_command, describe_translation): Use SYMBOL_NAME and
13895         assignment instead of XSYMBOL and name field and XSETSTRING.
13896         * lread.c (Fintern_soft, oblookup): Use SYMBOL_NAME and XSTRING
13897         instead of XSYMBOL and name field.
13898         (Funintern): Use SYMBOL_NAME and assignment instead of XSYMBOL and
13899         name field and XSETSTRING.
13900         * macfns.c (parse_image_spec): Use SYMBOL_NAME and XSTRING instead
13901         of XSYMBOL and name field.
13902         * minibuf.c (Fread_command, Fread_variable): Use SYMBOL_NAME and
13903         assignment instead of XSYMBOL and name field and XSETSTRING.
13904         * print.c (print_error_message, print_object): Use SYMBOL_NAME and
13905         XSTRING instead of XSYMBOL and name field.
13906         * process.c (set_socket_options, Fsignal_process): Use SYMBOL_NAME
13907         and XSTRING instead of XSYMBOL and name field.
13908         * w32fns.c (parse_image_spec, w32_parse_hot_key): Use SYMBOL_NAME
13909         and XSTRING instead of XSYMBOL and name field.
13910         * xfaces.c (merge_face_vector_with_property): Use SYMBOL_NAME and
13911         XSTRING instead of XSYMBOL and name field.
13912         * xfns.c (parse_image_spec): Use SYMBOL_NAME and XSTRING instead
13913         of XSYMBOL and name field.
13914         * xselect.c (symbol_to_x_atom, x_get_foreign_selection):
13915         Use SYMBOL_NAME and XSTRING instead of XSYMBOL and name field.
13917 2002-05-19  Ken Raeburn  <raeburn@gnu.org>
13919         * lisp.h (LISP_MAKE_RVALUE): Delete disabled version, making XCAR
13920         and XCDR real rvalues in most configurations.
13922         * buffer.c (fix_overlays_in_range, fix_overlays_before):
13923         Don't take the address of the cdr part of a cons cell; instead, track
13924         the parent cell and call XSETCDR, or set the variable for the head
13925         of the list if we haven't started down the list yet.
13927 2002-05-19  Richard M. Stallman  <rms@gnu.org>
13929         * doc.c (reread_doc_file): Don't ask for confirmation.
13931 2002-05-18  Jason Rumney  <jasonr@gnu.org>
13933         * w32fns.c (w32_create_pixmap_from_bitmap_data): New function.
13934         (xbm_load_image): Use it.
13935         (xbm_load): Ditto.
13936         (xbm_read_bitmap_data): Reverted to xfns.c version.
13937         From David Ponce <david@dponce.com>.
13939 2002-05-17  Eli Zaretskii  <eliz@is.elta.co.il>
13941         * msdos.c (sig_suspender, sigprocmask): Don't define for DJGPP
13942         2.02 and later.
13944 2002-05-16  Juanma Barranquero  <lektu@terra.es>
13946         * keyboard.c (Fthis_command_keys, Fthis_command_keys_vector): Fix typo.
13948 2002-05-15  Stefan Monnier  <monnier@cs.yale.edu>
13950         * keyboard.c (read_char_x_menu_prompt): Use an equivalent but more
13951         meaningful test.
13952         (read_char_minibuf_menu_prompt): Fix typo.
13954 2002-05-15  Eli Zaretskii  <eliz@is.elta.co.il>
13956         * eval.c (Fcommandp): Doc fix.
13958 2002-05-13  Stefan Monnier  <monnier@cs.yale.edu>
13960         * keymap.c (keymap_parent): New fun, extracted from Fkeymap_parent.
13961         (Fkeymap_parent, keymap_memberp, fix_submap_inheritance): Use it.
13962         (Fset_keymap_parent): Gcpro a bit more.
13963         (access_keymap): Gcpro around meta_map call and around the main loop.
13964         (get_keyelt): Gcpro when following indirect references.
13965         (copy_keymap_item): New fun, extracted from Fcopy_keymap.
13966         (copy_keymap_1, Fcopy_keymap): Use it.  Don't copy the parent map.
13967         (Fdefine_key, Flookup_key): Gcpro before calling get_keymap.
13968         Remove useless ad-hoc remap code.
13970 2002-05-13  Richard M. Stallman  <rms@gnu.org>
13972         * search.c (search_buffer): Give up boyer moore search if inverse
13973         translation change charset_base.
13975 2002-05-12  Eli Zaretskii  <eliz@is.elta.co.il>
13977         * coding.c (decode_coding) <coding_type_ccl>: If a lone CR
13978         characters is carried over from the previous block of text, adjust
13979         coding->produced to account for the extra character.
13981 2002-05-11  Andreas Schwab  <schwab@suse.de>
13983         * coding.c (intersection): Keep the elements of the returned list
13984         in the same order as in the first list.
13986 2002-05-11  Kim F. Storm  <storm@cua.dk>
13988         * keymap.c (current_minor_maps): Fix resizing of cmm_maps;
13989         only update cmm_size if realloc actually succeeds.
13990         Testing with initial size of 2 elements revealed that using
13991         realloc on GNU/Linux would cause a random trap in xmalloc
13992         later on, so I rewrote the code to use malloc/bcopy/free instead
13993         of realloc.
13995 2002-05-10  Jason Rumney  <jasonr@gnu.org>
13997         * w32fns.c (enum_font_cb2): Avoid DBCS raster fonts.
13999 2002-05-10  Eli Zaretskii  <eliz@is.elta.co.il>
14001         * coding.c (encode_coding_sjis_big5): Enclose bitwise AND in
14002         parens, to ensure correct evaluation order.
14004 2002-05-10  Kim F. Storm  <storm@cua.dk>
14006         * keymap.c (Vemulation_mode_map_alists): New variable.
14007         (syms_of_keymap): DEFVAR_LISP it.
14008         (current_minor_maps): Process keymap alists in that list before
14009         minor-mode-overriding-map-alist and minor-mode-map-alist.
14011 2002-05-09  Richard M. Stallman  <rms@gnu.org>
14013         * search.c (Freplace_match): Doc fix.
14015 2002-05-09  Kim F. Storm  <storm@cua.dk>
14017         * macterm.c (x_draw_image_foreground, x_draw_image_foreground_1):
14018         Enlarge cursor rectangle drawn around image with non-zero relief.
14020         * w32term.c (x_draw_image_foreground, w32_draw_image_foreground_1):
14021         Enlarge cursor rectangle drawn around image with non-zero relief.
14023         * xterm.c (x_draw_image_foreground, x_draw_image_foreground_1):
14024         Enlarge cursor rectangle drawn around image with non-zero relief.
14026 2002-05-07  Eli Zaretskii  <eliz@is.elta.co.il>
14028         * xselect.c (lisp_data_to_selection_data): Don't set selection
14029         type if comes from the Lisp object's car.  If the selection
14030         contains a pure ASCII text, always return QSTRING as its type.
14032 2002-05-06  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
14034         * mac.c (mac-cut-function): Doc fix.
14036 2002-05-05  Richard M. Stallman  <rms@gnu.org>
14038         * s/gnu.h [DOUG_LEA_MALLOC] (REL_ALLOC): Undefine it.
14040 2002-05-04  Jason Rumney  <jasonr@gnu.org>
14042         * keyboard.c (make_lispy_event) <mouse-wheel>: Set count to 1
14043         for event-click-count.
14045         * process.c (init_process): Only add server subfeature if we can
14046         use non-blocking I/O.
14048 2002-05-04  Andrew Choi  <akochoi@shaw.ca>
14050         * macterm.c (XTread_socket): Call WaitNextEvent once instead of
14051         repeatedly.
14053 2002-05-03  Jason Rumney  <jasonr@gnu.org>
14055         * process.c (Fmake_network_process): Only support server sockets
14056         when we can make them non-blocking.
14058         * s/ms-w32.h (HAVE_SELECT): Define.
14060         * w32.h (FILE_NDELAY): New flag.
14062         * w32.c (sys_getpeername, fcntl): New functions.
14063         (_sys_read_ahead): Temporarily block on non-blocking sockets.
14065         * w32proc.c: include sys/file.h.
14067 2002-05-03  Colin Walters  <walters@verbum.org>
14069         * callproc.c (Vgame_score_directory): Renamed to
14070         Vshared_game_score_directory.
14072 2002-04-30  Richard M. Stallman  <rms@gnu.org>
14074         * s/gnu.h [emacs]: Include stdio.h.
14075         (GNU_LIBRARY_PENDING_OUTPUT_COUNT): New definition, conditional.
14077         * eval.c (do_autoload): Error if called while preparing to dump.
14079         * fns.c (Frequire): Error if need to load while preparing to dump.
14081 2002-04-28  Colin Walters  <walters@verbum.org>
14083         * callproc.c (Vgame_score_directory) [!HAVE_SHARED_GAME_DIR]:
14084         Default to "~/.emacs.d/games".
14086 2002-04-29  Stefan Monnier  <monnier@cs.yale.edu>
14088         * lread.c (openp): Change arg exec_only to predicate.
14089         (build_load_history): Use XCAR/XCDR.
14090         (Flocate_file_internal): New fun.
14091         (syms_of_lread): Defsubr it.
14092         (Fload): Update call to openp.
14094         * lisp.h (openp): Update prototype.
14096         * xfns.c (x_create_bitmap_from_file, x_find_image_file):
14097         * w32proc.c (sys_spawnve):
14098         * w32fns.c (x_create_bitmap_from_file, x_find_image_file):
14099         * w32.c (check_windows_init_file):
14100         * sound.c (Fplay_sound_internal):
14101         * process.c (Fstart_process):
14102         * macfns.c (x_create_bitmap_from_file, x_find_image_file):
14103         * mac.c (run_mac_command):
14104         * emacs.c (init_cmdargs):
14105         * callproc.c (Fcall_process): Update call to openp.
14107         * textprop.c (remove_properties): Don't use XCAR without CONSP.
14109         * xterm.c (XTread_socket): Disable the Xutf8LookupString code.
14111 2002-04-29  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
14113         * dispextern.h (DEFAULT_TOOL_BAR_BUTTON_MARGIN)
14114         (DEFAULT_TOOL_BAR_BUTTON_RELIEF): Change default values.
14116 2002-04-28  Richard M. Stallman  <rms@gnu.org>
14118         * minibuf.c (Fall_completions, Ftry_completion): New arg to Fcommandp.
14120         * eval.c (Fcommandp): New arg for_call_interactively.
14121         * lisp.h (Fcommandp): Declare new arg.
14123 2002-04-28  Jason Rumney  <jasonr@gnu.org>
14125         * w32proc.c (syms_of_w32proc): Get true file attributes by default.
14127         * w32.c (stat, fstat): Use file index information to generate
14128         inodes for directories where available.
14130 2002-04-26  Andrew Choi  <akochoi@shaw.ca>
14132         * Makefile.in (C_SWITCH_SYSTEM_TEMACS): Add.
14133         [HAVE_CARBON]: Include Mac object files.
14135         * alloc.c, callproc.c, dispextern.h, dispnew.c, emacs.c,
14136         fontset.c, frame.c, frame.h, keyboard.c, sysdep.c, term.c,
14137         termcap.c, window.c, xdisp.c, xfaces.c: Use macros MAC_OS8,
14138         MAC_OSX, and MAC_OS instead of macintosh.
14140         * editfns.c [MAC_OS8]: Include stdio.h.
14142         * emacs.c [MAC_OS8]: Call mac_initialize instead of x_term_init.
14144         * fontset.c [MAC_OS]: Set Vdefault_fontset to ETL Fixed instead of
14145         Apple Monaco.
14147         * process.c (QCfamily, QCfilte): Declare extern.
14148         (wait_reading_process_input) [MAC_OSX]: Clear bit for stdin before
14149         calling select.
14151         * termcap.c [MAC_OSX]: Don't define tgetnum, PC, tputs, and tgetent.
14153         * tparam.c [MAC_OSX]: Don't define BC and UP.
14155         * config.in [HAVE_CARBON]: Add.
14157         * mac.c, macgui.h, macfns.c, macmenu.c, macterm.c, macterm.h:
14158         Move here from mac/src and mac/inc.
14160         * s/darwin.h, m/powermac.h, unexmacosx.c: New files.
14162 2002-04-26  Gerd Moellmann  <gerd@gnu.org>
14164         * xterm.c (x_draw_phys_cursor_glyph): Undo last change.
14165         Compute phys_cursor_width from the x position returned
14166         by x_draw_glyhs, which is cheaper.
14167         (x_display_and_set_cursor): Compute the buffer-local value
14168         of `cursor-in-non-selected-windows' only when needed.
14170 2002-04-25  Gerd Moellmann  <gerd@gnu.org>
14172         * xterm.c (x_draw_phys_cursor_glyph): Take into account that a box
14173         cursor on a stretch glyph has a width that depends on
14174         x_stretch_cursor_p.
14176 2002-04-25  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
14178         * abbrev.c (abbrev-start-location): Doc fix.
14180         * indent.c (Fvertical_motion): Fix last change.
14182 2002-04-25  Gerd Moellmann  <gerd@gnu.org>
14184         * indent.c (Fvertical_motion): Move to the start of the line
14185         containing PT before moving up or down.
14187 2002-04-24  Gerd Moellmann  <gerd@gnu.org>
14189         * dispnew.c (update_text_area): Set phys_cursor_on_p to 0 in the
14190         case of writing a whole row, more or less analogous to the case of
14191         writing only parts of a row.
14193         * xterm.c (x_display_and_set_cursor): Set phys_cursor_width to
14194         0 for NO_CURSOR.
14196         * xterm.c (notice_overwritten_cursor): Fix an off by 1 error.
14198 2002-04-23  Colin Walters  <walters@verbum.org>
14200         * buffer.c (syms_of_buffer): Doc fix.
14202 2002-04-23  Gerd Moellmann  <gerd@gnu.org>
14204         * xterm.c (notice_overwritten_cursor): Handle the special case
14205         of the cursor being in the first blank non-text line at the
14206         end of a window.
14208         * xterm.c (x_draw_hollow_cursor, x_draw_bar_cursor)
14209         (x_draw_phys_cursor_glyph): Set phys_cursor_width here.
14210         (x_display_and_set_cursor): Don't set phys_cursor_width here, for
14211         bar cursors only, to make phys_cursor_width contain what its name
14212         suggests.
14213         (notice_overwritten_cursor): Consider the cursor image erased if
14214         the output area intersects the cursor image in y-direction.
14216 2002-04-23  Simon Marshall  <simon@gnu.org>
14218         * xfns.c (x_set_mouse_color): Change default for cross_cursor
14219         to XC_hand2.
14221 2002-04-23  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
14223         * xdisp.c: Remove unused global variable `minibuf_prompt_pixel_width'.
14225 2002-04-22  Kim F. Storm  <storm@cua.dk>
14227         * textprop.c (remove_properties): Fixed trap for malformed plist.
14229 2002-04-22  Richard M. Stallman  <rms@gnu.org>
14231         * cmds.c (Fend_of_line): Handle intangible text in mid line.
14233         * window.c (make_window): Initialize height_fixed_p,
14234         last_cursor_off_p, and p->cursor_off_p slots.
14236 2002-04-20  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
14238         * fns.c (use-dialog-box): Doc fix.
14240 2002-04-19  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
14242         * xterm.c (note_mode_line_or_margin_highlight): Remove unused
14243         variables `row', `i' and `area'.
14244         (XTread_socket) <KeyPress>: Pass KeyPress events when in menu to
14245         toolkit library.
14247 2002-04-19  Stefan Monnier  <monnier@cs.yale.edu>
14249         * xfaces.c (clear_font_table): Don't free the default font of
14250         a frame even if it's on another display.
14251         (Finternal_set_lisp_face_attribute): Don't use XFRAME on something
14252         that could be Qt.
14254 2002-04-19  Juanma Barranquero  <lektu@terra.es>
14256         * indent.c (Fmove_to_column): Remove unused local variable
14257         `next_boundary_byte'.
14258         (current_column_1): Likewise.
14260 2002-04-19  Eli Zaretskii  <eliz@is.elta.co.il>
14262         * msdos.c (Qhbar): New variable.
14263         (syms_of_msdos): Intern and staticpro it.
14264         (IT_set_cursor_type, IT_set_frame_parameters): Handle the `hbar'
14265         cursor type.
14267 2002-04-19  Dave Lambert  <dlambert@acm.org>
14269         Theses change implement an underscore-like (`hbar') cursor.
14271         * xterm.h (text_cursor_kinds): New enumeration member HBAR_CURSOR.
14273         * xterm.c (x_draw_bar_cursor): New argument KIND; callers changed.
14274         Handle the `hbar' cursor type.
14275         (x_display_and_set_cursor): Handle the HBAR_CURSOR case.
14277         * xfns.c (Qhbar): New variable.
14278         (syms_of_xfns): Intern and staticpro it.
14279         (x_specified_cursor_type): Handle `hbar' cursor.
14281         * s/sol2-5.h (bcopy, bzero, bcmp): Define only if HAVE_BCOPY is
14282         not defined.
14284 2002-04-18  Richard M. Stallman  <rms@gnu.org>
14286         * textprop.c (remove_properties): New arg LIST allows scanning
14287         either a list or a plist.
14288         (interval_has_some_properties_list): New function, like
14289         interval_has_some_properties using list instead of plist.
14290         All callers changed.
14291         (Fremove_list_of_text_properties): New function.
14292         (syms_of_textprop): Defsubr it.
14294 2002-04-17  Eli Zaretskii  <eliz@is.elta.co.il>
14296         * s/sol2.h (HAVE_LIBKSTAT): Define only if not already defined.
14298 2002-04-17  Juanma Barranquero  <lektu@terra.es>
14300         * indent.c (Fmove_to_column): Remove unused local variable `end_byte'.
14302 2002-04-17  Eli Zaretskii  <eliz@is.elta.co.il>
14304         * window.c (coordinates_in_window): Don't report on margin area
14305         if its width is zero.
14307 2002-04-16  Jason Rumney  <jasonr@gnu.org>
14309         * w32fns.c (Fx_file_dialog): Decode file name before using.
14311         * w32term.c (construct_drag_n_drop): Likewise.
14313 2002-04-16  Eli Zaretskii  <eliz@is.elta.co.il>
14315         * puresize.h (BASE_PURESIZE): Increase to 830000, since we now
14316         store load-history in pure space.
14318         * s/msdos.h (SYSTEM_PURESIZE_EXTRA): Reduce to 50000.
14320 2002-04-16  Stefan Monnier  <monnier@cs.yale.edu>
14322         * xterm.c (Qlatin_1, Qutf_8): New vars.
14323         (syms_of_xterm): Initialize them.
14324         (XTread_socket): Eliminate incorrect optimization that tried to avoid
14325         decoding the output of X*LookupString.
14326         Always use latin-1 to decode the output of XLookupString.
14327         Try Xutf8LookupString if XmbLookupString failed.
14329         * region-cache.c (new_region_cache): Use BEG.
14331 2002-04-16  Gerd Moellmann  <gerd@gnu.org>
14333         * buffer.c (MMAP_ALLOCATED_P): New macro to be set from system
14334         configuration files.
14335         (mmap_enlarge): Enlarge mapped regions only if MMAP_ALLOCATED_P
14336         returns 0.
14338 2002-04-15  Andreas Schwab  <schwab@suse.de>
14340         * config.in: Regenerated using autoheader.
14342         * m/7300.h, m/acorn.h, m/alliant-2800.h, m/alliant.h, m/alpha.h,
14343         m/altos.h, m/amdahl.h, m/apollo.h, m/arm.h, m/att3b.h, m/aviion.h,
14344         m/celerity.h, m/clipper.h, m/cnvrgnt.h, m/convex.h, m/cydra5.h,
14345         m/delta.h, m/delta88k.h, m/dpx2.h, m/elxsi.h, m/gec63.h,
14346         m/gould.h, m/hp800.h, m/hp9000s300.h, m/i860.h, m/ia64.h,
14347         m/ibmps2-aix.h, m/ibmrs6000.h, m/ibmrt-aix.h, m/ibmrt.h,
14348         m/ibms390.h, m/intel386.h, m/iris4d.h, m/irist.h, m/isi-ov.h,
14349         m/m68k.h, m/macppc.h, m/masscomp.h, m/mg1.h, m/mips-siemens.h,
14350         m/mips.h, m/news-r6.h, m/news.h, m/next.h, m/nh3000.h, m/nh4000.h
14351         m/ns32000.h, m/orion.h, m/pfa50.h, m/plexus.h, m/pmax.h,
14352         m/powerpcle.h, m/pyrmips.h, m/sequent-ptx.h, m/sequent.h,
14353         m/sparc.h, m/sr2k.h, m/symmetry.h, m/tad68k.h, m/tahoe.h,
14354         m/targon31.h, m/tek4300.h, m/tekxd88.h, m/template.h, m/tower32.h,
14355         m/tower32v3.h, m/ustation.h, m/vax.h, m/wicat.h, m/windowsnt.h,
14356         m/xps100.h, s/aix3-2.h, s/aix4-2.h, s/irix4-0.h, s/irix5-0.h,
14357         s/sco5.h, s/unixware.h: Don't set HAVE_ALLOCA, C_ALLOCA and
14358         STACK_DIRECTION, now set by autoconf.
14360 2002-04-14  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
14362         * dispnew.c (marginal_area_string): Sort arguments.
14364         * dispextern.h (marginal_area_string): Add prototype.
14366 2002-04-13  Richard M. Stallman  <rms@gnu.org>
14368         * fileio.c (Finsert_file_contents):
14369         Don't call temp_output_buffer_setup--do just part, by hand.
14371         * coding.c (run_pre_post_conversion_on_str):
14372         Don't call temp_output_buffer_setup--do just part, by hand.
14374         * keyboard.c (command_loop_1): Don't call start_hourglass
14375         or cancel_hourglass when executing a macro.
14377         * marker.c (count_markers): New function.
14379         * xdisp.c (display_mode_element): Don't let mode_line_proptrans_alist
14380         grow without limit.  Move recently used elements to the front.
14382 2002-04-13  Eli Zaretskii  <eliz@is.elta.co.il>
14384         * unexelf.c (unexec) [__sgi]: Undo the change from 2002-01-20.
14386 2002-04-12  Gerd Moellmann  <gerd@gnu.org>
14388         * xdisp.c (sync_frame_with_window_matrix_rows): Don't give frame
14389         rows marginal areas.
14390         (Fdump_frame_glyph_matrix) [GLYPH_DEBUG]: New function.
14391         (syms_of_xdisp) [GLYPH_DEBUG]: Defsubr it.
14393         * dispnew.c (marginal_area_string): Check that glyph row is enabled.
14395 2002-04-12  Dave Love  <fx@gnu.org>
14397         * dispnew.c (marginal_area_string): New.
14399         * window.c (window_part): Add ON_LEFT_MARGIN, ON_RIGHT_MARGIN.
14400         (Qleft_margin, Qright_margin): Declare.
14401         (coordinates_in_window, (Fcoordinates_in_window_p): Deal with margins.
14403         * xterm.c (note_mode_line_or_margin_highlight): Renamed from
14404         note_mode_line_highlight and extended.
14406         * keyboard.c (Qleft_margin, Qright_margin): Declare.
14407         (make_lispy_event): Deal with mouse events in margins.
14409 2002-04-12  Stefan Monnier  <monnier@cs.yale.edu>
14411         * msdos.c (dos_rawgetc): Use a single event for HELP_EVENT.
14413         * keyboard.c (command_loop_1): Turn off transient-mark-mode rather
14414         than deactivating the mark if tmm is set to `lambda'.
14415         (gen_help_event, kbd_buffer_store_help_event, kbd_buffer_get_event):
14416         Use a single event for HELP_EVENT.
14417         (Fexecute_extended_command): Save last_point_position.
14419 2002-04-12  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
14421         * lisp.h (Fpropertize): Add prototype.
14423         * fns.c (Fy_or_n_p): Use `minibuffer-prompt' face for prompt.
14425 2002-04-10  Colin Walters  <walters@verbum.org>
14427         * config.in: Add HAVE_SHARED_GAME_DIR.
14429         * callproc.c: (Vgame_score_directory): New variable.
14430         (syms_of_callproc) <Vgame_score_directory>: DEFVAR_LISP.
14432 2002-04-10  Richard M. Stallman  <rms@gnu.org>
14434         * puresize.h (BASE_PURESIZE): Reduce again to avoid big excess.
14436 2002-04-09  Stefan Monnier  <monnier@cs.yale.edu>
14438         * minibuf.c (read_minibuf): Use empty_string.
14439         (Ftry_completion): Allow lambda forms and lists of strings for `alist'.
14440         Short-circuit the search as soon as it "failed".
14441         (Fall_completions): Allow lambda forms and lists of strings for alist.
14442         (Fcompleting_read): Set Qminibuffer_completion_confirm to nil
14443         when require_match is nil.
14444         (Ftest_completion): Rename from `test_completion' and export to elisp.
14445         Call the predicate also when alist is a list.
14446         Obey Vcompletion_regexp_list.
14447         (do_completion, Fminibuffer_complete_and_exit): Use it.
14448         (Fassoc_string): Rename from `assoc_for_completion'.
14449         Allow list of strings as well and export to elisp.
14451 2002-04-08  Stefan Monnier  <monnier@cs.yale.edu>
14453         * puresize.h (BASE_PURESIZE): Increase to 900KB.
14455 2002-04-08  Juanma Barranquero  <lektu@terra.es>
14457         * w32.c (sys_accept): Don't hide variable `s'.
14459 2002-04-05  Gerd Moellmann  <gerd@gnu.org>
14461         * callint.c (Fcall_interactively): Use INTEGERP instead of
14462         NUMBERP for checking Vhistory_length.
14464 2002-04-05  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
14466         * sound.c (Fplay_sound_internal): Renamed from Fplay_sound.
14467         Doc fix to reflect it.
14469 2002-04-04  Richard M. Stallman  <rms@gnu.org>
14471         * xdisp.c (display_mode_element): New arg RISKY.
14472         Disregard text props found or specified within a variable
14473         that isn't marked risky-local-variable.
14474         (Qrisky_local_variable): New variable.
14475         (syms_of_xdisp): Init and staticpro it.
14477 2002-04-04  Stefan Monnier  <monnier@cs.yale.edu>
14479         * undo.c (record_point): New fun.
14480         (record_delete, record_insert): Use it.
14482 2002-04-03  Juanma Barranquero  <lektu@terra.es>
14484         * doc.c (Fdocumentation): Add missing parentheses.
14485         (Fdocumentation_property): Likewise.
14487 2002-04-03  Stefan Monnier  <monnier@cs.yale.edu>
14489         * doc.c (Fdocumentation, Fdocumentation_property): When the doc
14490         data is 0, just return nil.
14492 2002-04-03  Eli Zaretskii  <eliz@is.elta.co.il>
14494         * msdos.c (syms_of_msdos): Fix last change with
14495         mouse_autoselect_window.
14497 2002-04-03  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
14499         * w32term.c, xterm.c, msdos.c: Rename autoselect_window_p to
14500         mouse_autoselect_window.
14502 2002-04-02  Stefan Monnier  <monnier@cs.yale.edu>
14504         * keyboard.c (make_lispy_event): Handle unknown keysyms together
14505         with system-specific keysyms.  Use it also for unknown function keys.
14507         * doc.c (reread_doc_file): Return whether reload was attempted.
14508         (Fdocumentation, Fdocumentation_property): Don't try to reload
14509         if the doc is 0 and only ask once.
14511         * Makefile.in (lisp, shortlisp): Add ucs-tables.elc.
14513 2002-04-02  Eli Zaretskii  <eliz@is.elta.co.il>
14515         * keyboard.c (read_char): If the event was Qselect_window,
14516         restore timer_idleness_start_time to its previous value.
14518         * msdos.c (dos_rawgetc): Generate SELECT_WINDOW_EVENTs when required.
14520 2002-04-01  Stefan Monnier  <monnier@cs.yale.edu>
14522         * region-cache.c (new_region_cache): Use BEG.
14524         * marker.c (buf_charpos_to_bytepos, buf_bytepos_to_charpos):
14525         Use BEG and BEG_BYTE.
14527         * doc.c (get_doc_string): Return nil if the location is wrong.
14528         (reread_doc_file): New fun.
14529         (Fdocumentation, Fdocumentation_property):
14530         Call it if get_doc_string fails.
14531         (Fsnarf_documentation): Make it work for a dumped Emacs.
14533         * charset.h (DEC_POS, BUF_DEC_POS): Use BEG_BYTE.
14534         Bound the search with MAX_MULTIBYTE_LENGTH to avoid pathological case.
14536         * charset.c (Fstring): Allow 0 arguments.
14538         * xterm.c (XTread_socket): Fix int/Lisp_Object confusion.
14540         * process.c (DATAGRAM_CONN_P, list_processes_1)
14541         (Fprocess_datagram_address, Fset_process_datagram_address)
14542         (Fset_network_process_options, server_accept_connection):
14543         Fix some int/Lisp_Object confusions (thank you union types).
14545 2002-04-01  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
14547         * msdos.c: Rename x_autoselect_window_p to autoselect_window_p.
14549         * w32term.c: Likewise.
14550         (note_mouse_movement): Put code for x_autoselect_window_p in #if 0.
14552         * keyboard.c (Qselect_window): New symbol.
14553         (head_table): Use it.
14554         (keys_of_keyboard): Bound select-window event to handle-select-window.
14555         (kbd_buffer_get_event): Make a Lisp event from SELECT_WINDOW_EVENT.
14557         * xterm.c: Rename x_autoselect_window_p to autoselect_window_p.
14558         (last_window): New variable.
14559         (XTread_socket): Generate SELECT_WINDOW_EVENTs.
14560         (note_mouse_movement): Remove reimplemented code in #if 0.
14561         (XTread_socket): Generate SELECT_WINDOW_EVENTs only for
14562         Emacs windows.
14564         * termhooks.h (enum event_kind): New event type `SELECT_WINDOW_EVENT'.
14566 2002-03-31  Gerd Moellmann  <gerd@gnu.org>
14568         * xterm.c (x_get_char_face_and_encoding): Add parameter DISPLAY_P.
14569         Callers changed.
14571 2002-03-30  Richard M. Stallman  <rms@gnu.org>
14573         * window.c (window_scroll_pixel_based): Exit the move_it_by_lines
14574         loop whenever it stops making progress.
14576         * widget.c (set_frame_size): Don't call change_frame_size.
14578 2002-03-30  Gerd Moellmann  <gerd@gnu.org>
14580         * dispnew.c (direct_output_for_insert):
14581         Call mark_window_display_accurate.
14583 2002-03-29  Jason Rumney  <jasonr@gnu.org>
14585         * w32term.c (w32_draw_relief_rect): Fix calculations of line lengths.
14587 2002-03-29  Eli Zaretskii  <eliz@is.elta.co.il>
14589         * Makefile.in (lread.o): Depend on coding.h.
14591         * lread.c (openp, Fload): Encode the file name before passing it
14592         to `stat', `access', and `emacs_open'.
14593         (openp): GCPRO the encoded file name.  Don't recompute Lisp
14594         strings unnecessarily.
14596 2002-03-29  Kim F. Storm  <storm@cua.dk>
14598         * fns.c (Flax_plist_put): Doc fix.
14600 2002-03-28  Miles Bader  <miles@gnu.org>
14602         * process.c (DATAGRAM_CONN_P): Make sure PROC is really a process.
14604 2002-03-27  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
14606         * process.c (set-network-process-options): Add usage.
14607         (make-network-process): Doc fix.
14609 2002-03-26  Eli Zaretskii  <eliz@is.elta.co.il>
14611         * emacs.c (Fdump_emacs): Fix a typo in "command-line-processed".
14613 2002-03-26  Richard M. Stallman  <rms@gnu.org>
14615         * fns.c (Fsubstring_no_properties): New function.
14616         (Flax_plist_get, Flax_plist_put): New functions.
14617         (syms_of_fns): defsubr them.
14619         * xdisp.c (update_menu_bar): Test only update_mode_lines;
14620         don't test or alter w->update_mode_line.
14622         * window.c (Fdisplay_buffer): Doc fix.
14624 2002-03-24  Richard M. Stallman  <rms@gnu.org>
14626         * regex.c (GET_UNSIGNED_NUMBER): Give proper error for spaces.
14628 2002-03-24  Gerd Moellmann  <gerd@gnu.org>
14630         * eval.c (Qdeclare, Vmacro_declaration_function): New variables.
14631         (Fdefmacro): Handle `(declare ...)'.
14632         (syms_of_eval) <Qdeclare>: Initialize and staticpro.
14633         (syms_of_eval) <Vmacro_declaration_function>: DEFVAR_LISP.
14635 2002-03-24  Jason Rumney  <jasonr@gnu.org>
14637         * w32fns.c (xbm_scan, xbm_load_image, xbm_read_bitmap_data)
14638         (xbm_file_p): Add prototypes.
14639         (xbm_format, xbm_image_p): Sync with xfns.c.
14640         (reflect_byte): New function.
14641         (xbm_read_bitmap_data): Sync with xfns.c, adapt for Windows.
14642         (xbm_load_image): Create bitmaps with a depth of 1.
14643         (init_xfns): Enable XBM images.
14645 2002-03-23  Jason Rumney  <jasonr@gnu.org>
14647         * w32term.c (w32_handle_tool_bar_click): Detect up and down events
14648         correctly.  Do not pass up_modifier to keyboard buffer.
14650         * w32fns.c [HAVE_IMAGES, HAVE_PBM]: Remove conditionals.
14652 2002-03-22  Stefan Monnier  <monnier@cs.yale.edu>
14654         * Makefile.in (bootstrapclean): New target.
14655         (bootstrap-temacs, bootstrap-doc): Remove.
14656         (bootstrap-emacs): Use a bog-standard `temacs'.
14657         Don't bother to build a DOC file.
14659         * sysdep.c (wait_for_termination): Use sigsuspend rather than sigpause.
14661         * emacs.c (main): Handle --unibyte, --multibyte, and --no-loadup
14662         in temacs even if !CANNOT_DUMP.
14663         (standard_args): Keep --no-loadup even if !CANNOT_DUMP.
14665         * alloc.c (check_pure_size): Only output a warning.
14667 2002-03-22  Jason Rumney  <jasonr@gnu.org>
14669         * w32fns.c (Fx_create_frame): Enable tool-bar when images are
14670         supported.
14672         * w32term.c (zv_bits): Declare as short, for word alignment.
14673         (w32_read_socket) <WM_XBUTTONUP>: Fix last change.
14674         (syms_of_w32term): Define x-use-underline-position-properties.
14676         * w32fns.c (x_set_cursor_color): Set cursor_gc as well.
14677         (clear_image_cache): Block input, fix logic, clear matrices in
14678         all frames that share this cache.
14680 2002-03-22  Eli Zaretskii  <eliz@is.elta.co.il>
14682         * emacs.c (main): Update the Copyright year in the blurb printed
14683         by "emacs --version".
14685         * xdisp.c (message_with_string): Fix syntax of a call to GCPRO2.
14687         * xterm.c (XTread_socket): If XK_ISO_Lock and
14688         XK_ISO_Last_Group_Lock are defined, handle keysyms between
14689         XK_ISO_Lock and XK_ISO_Last_Group_Lock similarly to Mode_switch.
14691 2002-03-21  Kim F. Storm  <storm@cua.dk>
14693         * keyboard.c (menu_bar_items): Mostly undo 2002-02-20 patch, so
14694         menu-bar bindings in keymap and local-map properties _are_ used.
14695         But try keymap property first in accordance with 2002-01-03 patch.
14696         Added comment describing why this is not always reliable.
14697         (tool_bar_items): Ditto for tool-bar.
14699 2002-03-21  Jason Rumney  <jasonr@gnu.org>
14701         * w32fns.c (x_clear_image_1): Disable color table code.
14703 2002-03-21  Kim F. Storm  <storm@cua.dk>
14705         * lisp.h (DEFUN) [USE_NONANSI_DEFUN]: The 2001-10-17 patch
14706         removed the wrong version of the DEFUN macro; fixed it.
14708         * fns.c (Ffeaturep): Allow subfeature to be a list (test using
14709         Fmember rather than Fmemq).
14710         (Fprovide): Check that subfeatures is a list.
14712         * process.c (QCfeature, QCdatagram): Removed variables.
14713         (QCtype, Qdatagram): New variables.
14714         (network_process_featurep): Removed function.
14715         (Fmake_network_process): Removed :feature check.
14716         Use :type 'datagram instead of :datagram t to create a datagram
14717         socket.  This allows us to add other connection types (e.g. raw
14718         sockets) later in a consistent manner.
14719         (init_process) [subprocess, HAVE_SOCKETS]: Provide list of
14720         supported subfeatures for feature make-network-process.
14721         (syms_of_process) [subprocess]: Remove QCfeature and QCdatagram.
14722         Intern and staticpro QCtype and Qdatagram.
14723         (syms_of_process) [!subprocess]: Intern and staticpro QCtype.
14725         * xfns.c: (QCtype): Remove duplicate declaration and
14726         initialization (is now declared in process.c).
14728         * w32fns.c: (QCtype): Remove duplicate declaration and
14729         initialization (is now declared in process.c).
14731 2002-03-21  Richard M. Stallman  <rms@gnu.org>
14733         * regex.c (DISCARD_FAILURE_REG_OR_COUNT): New macro.
14734         (CHECK_INFINITE_LOOP): Use DISCARD_FAILURE_REG_OR_COUNT
14735         when jumping to `fail' to avoid undoing reg changes in the
14736         last iteration of the loop.
14737         (GET_UNSIGNED_NUMBER): Skip spaces around the number.
14739         * Makefile.in (dispnew.o, sysdep.o, xdisp.o, xselect.o, alloc.o):
14740         Depend on process.h.
14742 2002-03-20  Jason Rumney  <jasonr@gnu.org>
14744         Most of the following changes are still conditional on HAVE_IMAGES
14745         which is not set by default on Windows.
14747         * emacs.c (main) [WINDOWSNT]: Call init_xfns.
14749         * w32fns.c (x_set_cursor_color): Set foreground of cursor, not frame.
14750         (Fimage_size, Fimage_mask_p, XPutPixel): New functions.
14751         (four_corners_best, x_clear_image_1, x_clear_image)
14752         (x_alloc_image_color, postprocess_image)
14753         (x_create_x_image_and_pixmap, x_destroy_x_image, xbm_load_image)
14754         (x_from_x_colors, x_disable_image, pbm_load): Adapt for Windows.
14755         (init_xfns, syms_of_w32fns): Initialize image functions and constants.
14757         * w32gui.h (struct XImage): Define.
14759         * w32term.c (w32_read_socket) <WM_XBUTTONUP>: Use XFASTINT to
14760         extract mouse co-ordinates.
14762 2002-03-20  Jason Rumney  <jasonr@gnu.org>
14764         * w32.c (init_winsock): Dynamically load new server and UDP
14765         socket functions.
14766         (socket_to_fd): New function.
14767         (sys_socket): Use it.
14768         (sys_setsockopt, sys_listen, sys_getsockname, sys_accept)
14769         (sys_recvfrom, sys_sendto): New wrapper functions.
14771         * process.c (QCfamily, QCfilter): Remove duplicate declaration
14772         and initialization.
14774         * makefile.w32-in (LIBS): Remove $(WSOCK32).
14776 2002-03-20  Eli Zaretskii  <eliz@is.elta.co.il>
14778         * process.c (conv_sockaddr_to_lisp, conv_lisp_to_sockaddr):
14779         Don't use "sun" as a variable, it's a predefined constant on Sun
14780         machines.
14782 2002-03-20  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
14784         * bytecode.c (Fbyte_code): Revert last change.
14786 2002-03-19  Kim F. Storm  <storm@cua.dk>
14788         * makefile.w32-in (LIBS): Add $(WSOCK32).
14789         From David Ponce <dponce@voila.fr>.
14791 2002-03-18  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
14793         * process.c (wait_reading_process_input): Move variables `pname'
14794         and `pnamelen' down where they are used.
14796         * bytecode.c (Fbyte_code): Discard unused computed value to
14797         prevent gcc warning.
14799         * lisp.h (Fplist_member): Add prototype.
14801 2002-03-18  Kim F. Storm  <storm@cua.dk>
14803         * config.in: Add HAVE_SENDTO, HAVE_RECVFROM, HAVE_SETSOCKOPT,
14804         HAVE_GETSOCKOPT, HAVE_GETPEERNAME, HAVE_GETSOCKNAME, and HAVE_SYS_UN_H.
14806         * process.c: Define HAVE_LOCAL_SOCKETS based on HAVE_SYS_UN_H.
14807         Remove explicit GNU_LINUX settings for datagram support.
14809 2002-03-18  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
14811         * process.c (Fmake_network_process): Remove unused variable `sa'.
14812         Doc fix.  Add usage:.
14813         (set_socket_options): Remove unused variables `optnum' and `opttype'.
14815 2002-03-17  Richard M. Stallman  <rms@gnu.org>
14817         * xdisp.c (cursor_type_changed): New variable.
14818         (redisplay_internal): Redisplay all windows if cursor_type_changed.
14819         Clear it when clearing windows_or_buffers_changed.
14820         (try_cursor_movement, redisplay_window, try_window_id)
14821         (try_window_reusing_current_matrix): Test cursor_type_changed
14822         along with windows_or_buffers_changed.
14824         * window.h (cursor_type_changed): New variable.
14826         * xfns.c (x_set_cursor_type): Set cursor_type_changed,
14827         not update_mode_lines, and always set it to 1.
14829         * xdisp.c (clear_garbaged_frames): Don't set windows_or_buffers_changed
14830         if no frames needed redrawing.
14832 2002-03-17  Kim F. Storm  <storm@cua.dk>
14834         The following changes add support for network server processes,
14835         datagram connections, and local (unix) sockets.
14837         * process.h (struct Lisp_Process): New member log.
14838         Doc fix: Member command used to indicate stopped network process.
14839         Doc fix: Member childp contains plist for network process.
14840         Doc fix: Member kill_without_query is inverse of query-on-exit flag.
14842         * process.c (Qlocal, QCname, QCbuffer, QChost, QCservice, QCfamily)
14843         (QClocal, QCremote, QCserver, QCdatagram, QCnowait, QCnoquery,QCstop)
14844         (QCcoding, QCoptions, QCfilter, QCsentinel, QClog, QCfeature):
14845         New variables.
14846         (NETCONN1_P): New macro.
14847         (DATAGRAM_SOCKETS): New conditional symbol.
14848         (datagram_address): New array.
14849         (DATAGRAM_CONN_P, DATAGRAM_CHAN_P): New macros.
14850         (status_message): Use concat3.
14851         (Fprocess_status): Add `listen' status to doc string.  Return `stop'
14852         for a stopped network process.
14853         (Fset_process_buffer): Update contact plist for network process.
14854         (Fset_process_filter): Ditto.  Don't enable input for stopped
14855         network processes.  Server must listen, even if filter is t.
14856         (Fset_process_query_on_exit_flag, Fprocess_query_on_exit_flag):
14857         New functions.
14858         (Fprocess_kill_without_query): Removed.  Now defined in simple.el.
14859         (Fprocess_contact): Added KEY argument.  Handle datagrams.
14860         (list_processes_1): Optionally show only processes with the query
14861         on exit flag set.  Dynamically adjust column widths.  Omit tty
14862         column if not needed.  Report stopped network processes.
14863         Identify server and datagram network processes.
14864         (Flist_processes): New optional arg `query-only'.
14865         (conv_sockaddr_to_lisp, get_lisp_to_sockaddr_size)
14866         (conv_lisp_to_sockaddr, set_socket_options)
14867         (network_process_featurep, unwind_request_sigio): New helper functions.
14868         (Fprocess_datagram_address, Fset_process_datagram_address):
14869         (Fset_network_process_options): New lisp functions.
14870         (Fopen_network_stream): Removed.  Now defined in simple.el.
14871         (Fmake_network_process): New lisp function.  Code is based on previous
14872         Fopen_network_stream, but heavily reworked with new property list based
14873         argument list, support for datagrams, server processes, and local
14874         sockets in addition to old client-only functionality.
14875         (server_accept_connection): New function.
14876         (wait_reading_process_input): Use it to handle incoming connects.
14877         Do not enable input on a new connection if process is stopped.
14878         (read_process_output): Handle datagram sockets.  Use 2k buffer for them.
14879         (send_process): Handle datagram sockets.
14880         (Fstop_process, Fcontinue_process): Apply to network processes.  A stopped
14881         network process is indicated by setting command field to t .
14882         (Fprocess_send_eof): No-op if datagram connection.
14883         (Fstatus_notify): Don't read input for a stream server socket or a
14884         stopped network process.
14885         (init_process): Initialize datagram_address array.
14886         (syms_of_process): Intern and staticpro new variables, defsubr new
14887         functions.
14889 2002-03-16  Jason Rumney  <jasonr@gnu.org>
14891         * w32fns.c (w32_to_all_x_charsets): Return correct type in
14892         startup case.
14894 2002-03-16  Richard M. Stallman  <rms@gnu.org>
14896         * xdisp.c (redisplay_internal, redisplay_windows):
14897         Use list_of_error to call internal_condition_case_1.
14898         (safe_eval, safe_call): Pass Qt to internal_condition_case_{1,2}
14899         so as to catch all errors with no possibility of debugger redisplay.
14900         (list_of_error): New variable.
14901         (syms_of_xdisp): Init and staticpro it.
14903         * print.c (print_object): Delete `\ ' from printed rep of frame.
14905 2002-03-15  Eli Zaretskii  <eliz@is.elta.co.il>
14907         * msdos.c (dos_rawgetc): Disable the x-autoselect-window feature,
14908         until its implementation is fixed.
14910 2002-03-14  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
14912         * xfns.c (png_load): Remove unused variable `gamma_str'.
14914 2002-03-14  Richard M. Stallman  <rms@gnu.org>
14916         * xfns.c (x_real_positions): Handle failure in XQueryTree.
14918 2002-03-14  Miles Bader  <miles@gnu.org>
14920         * intervals.c (adjust_for_invis_intang): New function.
14921         (set_point_both): Use `adjust_for_invis_intang' to do most of the
14922         work for dealing with invisible+intangible regions.  Do so before
14923         and after both forward and backward movements, to handle both
14924         front-sticky and rear-sticky cases.
14925         * textprop.c (text_property_stickiness): Function moved here from
14926         `editfns.c'.
14927         * intervals.h (text_property_stickiness): New declaration.
14928         * editfns.c (char_property_eq): Function removed.
14929         (text_property_stickiness): Function moved to `textprop.c'.
14931 2002-03-13  Jason Rumney  <jasonr@gnu.org>
14933         * config.in: Add STRFTIME_NO_POSIX2.
14935         * strftime.c (my_strftime) [STRFTIME_NO_POSIX2]: Handle %h, %EX
14936         and %OX when underlying strftime does not.
14938 2002-03-13  Stefan Monnier  <monnier@cs.yale.edu>
14940         * xterm.c (x_set_toolkit_scroll_bar_thumb) <USE_MOTIF>:
14941         Use a fixed-size thumb (based on an ad-hoc estimate of 30 chars per
14942         line) to avoid annoying flicker.
14943         (xm_scroll_callback): Get rid of the now unnecessary kludge.
14944         (XTread_socket): Mark it static.
14946         * xdisp.c (display_mode_element): Fix int/Lisp_Object mixup.
14948 2002-03-13  Kim F. Storm  <storm@cua.dk>
14950         * puresize.h (BASE_PURESIZE): Increase to 775000.
14952 2002-03-12  Juanma Barranquero  <lektu@terra.es>
14954         * editfns.c (syms_of_editfns): Fix typo.
14956 2002-03-12  Gerd Moellmann  <gerd@gnu.org>
14958         * xsmfns.c: Include stdio.h because termhooks.h needs it.
14959         Include termopt.h for interrupt_input.
14961 2002-03-11  Andreas Schwab  <schwab@suse.de>
14963         * coding.c (syms_of_coding) <file-coding-system-alist>: Doc fix.
14965 2002-03-11  Gerd Moellmann  <gerd@gnu.org>
14967         * xterm.c (note_mouse_movement): Put code for
14968         x_autoselect_window_p in #if 0.
14970         * lread.c (Fload): Don't assume that message_with_string uses the
14971         string it is given like a C string.
14973 2002-03-10  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
14975         * xterm.h (x_session_check_input, x_session_initialize): Declare.
14977         * xterm.c: (XTread_socket): Add call to x_session_check_input and
14978         x_session_have_connection.
14979         (x_initialize): Add call to x_session_initialize.
14981         * termhooks.h (enum event_kind): Add save_session_event.
14983         * keyboard.c: Add Emacs event save_session_event.
14985         * emacs.c (main): Add call to syms_of_xsmfns.
14987         * lisp.h (syms_of_xsmfns): Declare extern.
14989         * config.in: Add HAVE_X_SM.
14991         * Makefile.in (LIBXT): Add -lSM -lICE
14992         if HAVE_X_SM and not USE_X_TOOLKIT.
14993         (XOBJ): New file xsmfns.c added.
14995         * xsmfns.c: New file for X session management.
14997 2002-03-09  Jason Rumney  <jasonr@gnu.org>
14999         * fileio.c (Fcopy_file) [WINDOWS_NT]: Ensure file is not
15000         read-only when setting modified time.
15002 2002-03-08  Gerd Moellmann  <gerd@gnu.org>
15004         * xdisp.c (move_it_vertically_backward): At the end of the function,
15005         when moving forward by lines, treat terminal frames specially.
15007         * keyboard.c (echo_char): Make sure to add a separator between
15008         keys even if echo_dash hasn't been called.
15010         * xdisp.c: Use new string macros.
15011         (update_echo_area): Pass number of bytes to message3 instead of
15012         number of chars.
15013         (set_message_1): Don't access a string's size_byte directly.
15014         (decode_mode_spec_coding): Use number of bytes of eoltype string
15015         instead number of chars.
15017         * lisp.h (SREF, SDATA, SCHARS, SBYTES, SMBP): New macros.
15019 2002-03-08  Juanma Barranquero  <lektu@terra.es>
15021         * w32fns.c (Fx_display_color_cells): Force 24+ bit color depths to
15022         24-bit.
15024 2002-03-06  Jason Rumney  <jasonr@gnu.org>
15026         * w32term.c (x_draw_hollow_cursor): Draw same size as block cursor.
15028 2002-03-06  Gerd Moellmann  <gerd@gnu.org>
15030         * keyboard.c (echo_prompt, echo_char, echo_dash, echo_now)
15031         (cancel_echoing, echo_length, echo_truncate): Changed to
15032         work with new kboard definition.
15033         (echo_now): Use message3_nolog instead of message2_nolog.
15035         * alloc.c (mark_kboards): Mark echo_string.
15037         * keyboard.h (ECHOBUFSIZE): Removed.
15038         (struct kboard): Member echoptr removed, member echobuf renamed
15039         to echo_string.
15041         * xdisp.c (message_with_string): Use Fformat instead of doprnt and
15042         message3 instead of message2 to display the message using STRING's
15043         text properties.
15045 2002-03-05  Andreas Schwab  <schwab@suse.de>
15047         * xdisp.c (hscroll_margin): Change to EMACS_INT.
15049 2002-03-05  Per Abrahamsen  <abraham@dina.kvl.dk>
15051         * frame.c (default-frame-alist): Explain that setting it doesn't
15052         affect existing frames.
15054 2002-03-05  Stefan Monnier  <monnier@cs.yale.edu>
15056         * indent.c (skip_invisible): Fix my brain fart.
15058         * dispnew.c (sit_for): Don't wait if executing a kbd macro.
15060 2002-03-04  Stefan Monnier  <monnier@cs.yale.edu>
15062         * dosfns.c, dosfns.h, dispnew.c, dispextern.h, commands.h, charset.c,
15063         * alloc.c, abbrev.c, emacs.c, eval.c, keyboard.c, keyboard.h,
15064         * lisp.h, lread.c, sysdep.c, termcap.c, termchar.h, w32term.c,
15065         * window.c, xdisp.c, xselect.c, xterm.c: Change defvar_int definition
15066         and variables to use EMACS_INT instead of just int.
15068         * buffer.c (syms_of_buffer): Allow non-string `mode-name'.
15070 2002-03-04  Eli Zaretskii  <eliz@is.elta.co.il>
15072         * sysdep.c (sys_subshell) [MSDOS]: If PWD is set in the
15073         environment, pass it down with corrected value.
15075 2002-03-04  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
15077         * lread.c (read_filtered_event): Do not call start_hourglass
15078         before returning.
15080 2002-03-04  Juanma Barranquero  <lektu@terra.es>
15082         * w32term.c (x_display_and_set_cursor): Fix typo.
15084 2002-03-03  Richard M. Stallman  <rms@gnu.org>
15086         * fileio.c (Fmake_temp_name): Doc fix.
15088 2002-03-03  Gary Wong  <gtw@gnu.org>
15090         * termcap.c [!emacs]: Replace ospeed for building standalone
15091         libtermcap, for binary compatibility.
15093         * tparam.c [!emacs]: Move #define of bcopy to after string.h.
15095 2002-03-03  Richard M. Stallman  <rms@gnu.org>
15097         * xrdb.c (file_p): Rename arg `path' to `filename'.
15099         * abbrev.c (Fexpand_abbrev): Increment plist as use count
15100         only if it is an integer.
15102         * xfns.c (png_load): Set screen_gamma based on f->gamma.
15103         If png_get_sRGB gives an answer, call png_set_gamma
15104         using the default image gamma value.
15106         * lread.c (read1): When reading from a file, default string to
15107         multibyte only if it has some multibyte characters.
15109         * print.c (print_object): Output multibyte chars 128...255
15110         using \x even if ! print_escape_multibyte.
15112         * xdisp.c (display_mode_element): Move the places where
15113         bytepos, charpos, this, and lisp_string are set.
15114         Use lisp_string to set bytepos.
15116         * xdisp.c (redisplay_internal):
15117         Call clear_image_cache only if HAVE_WINDOW_SYSTEM.
15119         * xdisp.c (display_mode_element): Merge properties specified with
15120         :propertize onto those that come with the string.
15122 2002-03-03  Eli Zaretskii  <eliz@is.elta.co.il>
15124         * xdisp.c (syms_of_xdisp) <auto-hscroll-mode>: Renamed from
15125         automatic-hscrolling.  Users changed.
15126         <hscroll-margin>: Renamed from automatic-hscroll-margin.
15127         Users changed.
15128         <hscroll-step>: Renamed from automatic-hscroll-step.  Users changed.
15130 2002-03-02  Eli Zaretskii  <eliz@is.elta.co.il>
15132         * buffer.c (syms_of_buffer) <buffer-file-coding-system>: Doc fix.
15134 2002-03-02  Kim F. Storm  <storm@cua.dk>
15136         * window.c (Fminibuffer_selected_window): New function.
15137         (syms_of_window): Defsubr it.
15139 2002-03-01  Kim F. Storm  <storm@cua.dk>
15141         * window.h (struct window): New member phys_cursor_width.
15143         * window.c (make_window, replace_window): Init phys_cursor_width.
15145         * xterm.c (x_display_and_set_cursor): Blink box cursor using
15146         hollow box cursor.  Blink bar cursor using 1 pixel wide bar.
15148         * w32term.c (x_display_and_set_cursor): Blink box cursor using
15149         hollow box cursor.  Blink bar cursor using 1 pixel wide bar.
15151         * lisp.h (GCPRO6): New macro.
15153         * process.c (Fopen_network_stream): Use GCPRO6.
15155 2002-03-01  Kim F. Storm  <storm@cua.dk>
15157         * process.c (Qconnect, Qfailed): New variables.
15158         (syms_of_process): Intern and staticpro them.
15159         (Fprocess_status): Document connect and failed return values.
15160         [NON_BLOCKING_CONNECT]: New conditional.
15161         (connect_wait_mask, num_pending_connects): New variables.
15162         (status_message): Convert Qfailed status.
15163         (Fopen_network_stream): Added support for non-blocking connect.
15164         New optional args: filter, sentinel, non_blocking.  Doc updated.
15165         [HAVE_GETADDRINFO, !HAVE_GETADDRINFO]: Merged common code.
15166         (deactivate_process): Handle pending non-blocking connect.
15167         (wait_reading_process_input): Poll for status of non-blocking
15168         connects.  Exec sentinel directly when connect succeeds.
15169         (status_notify): Don't read process output if not yet connected.
15171 2002-02-28  Kim F. Storm  <storm@cua.dk>
15173         * window.c: (minibuf_selected_window): Renamed from
15174         Vminibuf_selected_window.  Users changed.
15175         (syms_of_window): Staticpro it.
15177 2002-02-26  Kim F. Storm  <storm@cua.dk>
15179         The following changes add a new Vminibuf_selected_window variable
15180         which is similar to Vminibuf_scroll_window, but which is only set
15181         on entry to the minibuffer (from a non-minibuffer window):
15183         * window.c: (Vminibuf_selected_window): New variable.
15184         (struct save_window_data): New member minibuf_selected_window.
15185         (Fset_window_configuration): Restore Vminibuf_selected_window.
15186         (Fcurrent_window_configuration): Save Vminibuf_selected_window.
15187         Set minibuf_scroll_window member to nil if minibuf_level is 0.
15188         (compare_window_configurations): Compare minibuf_selected_window.
15190         * window.h: (Vminibuf_selected_window): Declare extern.
15192         * minibuf.c (read_minibuf): Set Vminibuf_selected_window on first
15193         entry to minibuffer or on entry from a non-minibuffer window.
15195         * dispextern.h (CURRENT_MODE_LINE_FACE_ID_3): Compare with
15196         Vminibuf_selected_window instead of Vminibuf_scroll_window.
15198         * xdisp.c (init_iterator): Compare with Vminibuf_selected_window
15199         instead of Vminibuf_scroll_window when deciding in which window
15200         the region should be highlighted.  Consequently, the region remains
15201         highlighteded even when a completion buffer is also displayed.
15203 2002-02-26  Eli Zaretskii  <eliz@is.elta.co.il>
15205         * fileio.c (Fsubstitute_in_file_name): Fix the change from 2002-02-08.
15207         * xselect.c (Qcompound_text_with_extensions): Renamed from
15208         Qcompound_text_no_extensions.
15209         (lisp_data_to_selection_data, syms_of_xselect): Use the new name.
15211 2002-02-26  Juanma Barranquero  <lektu@terra.es>
15213         * w32proc.c (syms_of_ntproc): Doc fix.
15215 2002-02-24  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
15217         * intervals.h: Include "dispextern.h" unconditionally.
15219 2002-02-24  Jason Rumney  <jasonr@gnu.org>
15221         * Makefile.in (WINNT_SUPPORT) [WINDOWSNT]: Add w32-vars.elc
15222         and disp-table.elc.
15223         (lisp): Add emacs-lisp/backquote.elc.
15225 2002-02-24  Kim F. Storm  <storm@cua.dk>
15227         * keymap.c (Flookup_key): Fix problem in 2001-12-28 patch:
15228         The validation of the event type was too strict as it didn't
15229         allow string events; buffer names are used in bindings for
15230         menu-bar-select-buffer (see `menu-bar-update-buffers').
15232 2002-02-23  Kim F. Storm  <storm@cua.dk>
15234         The following changes rework my patch of 2002-02-06 which
15235         added command remapping by entering the commands directly into
15236         the keymaps.  Now, command remapping uses an explicit `remap'
15237         prefix in the keymaps, i.e. [remap COMMAND].
15239         * keymap.c (Qremap, remap_command_vector): New variables.
15240         (is_command_symbol): Remove function.
15241         (Fdefine_key): No longer accept a symbol for KEY.
15242         Added validation of [remap COMMAND] argument for KEY.
15243         The DEF is no longer required to be a symbol when remapping a command.
15244         (Fremap_command): New function to remap command through keymaps.
15245         (Flookup_key): Perform command remapping initiated by
15246         Fremap_command directly for speed.
15247         (Fkey_binding): Use Fremap_command for command remapping.
15248         (where_is_internal): Handle new command remapping representation.
15249         (syms_of_keymap): Intern Qremap, initialize remap_command_vector,
15250         staticpro them.  Defsubr Fremap_command.
15252         * keymap.h (Fremap_command): Declare extern.
15253         (is_command_symbol): Remove extern.
15255         * keyboard.c (command_loop_1): Use Fremap_command for command
15256         remapping; now try command remapping for all symbols.
15258 2002-02-23  Eli Zaretskii  <eliz@is.elta.co.il>
15260         * coding.h (run_pre_post_conversion_on_str): Add prototype.
15262 2002-02-23  Jason Rumney  <jasonr@gnu.org>
15264         * w32select.c (Fw32_set_clipboard_data): Run pre-write-conversion
15265         on the string before encoding it.
15266         (Fw32_get_clipboard_data): Run post-read-conversion on the string
15267         after decoding it.
15269         * w32fns.c (w32_wnd_proc) <WM_TIMER>: Fix last change.
15271 2002-02-23  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
15273         * w32term.c (enter_timestamp): Remove unused static variable to
15274         prevent warning.
15276         * xterm.c (enter_timestamp): Put in #if 0 to prevent warning.
15278 2002-02-23  Eli Zaretskii  <eliz@is.elta.co.il>
15280         * w16select.c (Fw16_get_clipboard_data): Fix last change.
15282         * xselect.c (selection_data_to_lisp_data): Fix last change.
15284 2002-02-22  Jason Rumney  <jasonr@gnu.org>
15286         * w32term.h (struct w32_output): New member menu_command_in_progress.
15288         * w32menu.c (menubar_selection_callback): Free the menu and
15289         clear the menu_command_in_progress flag.
15291         * w32fns.c (mouse_move_timer, mouse_button_timer): Initialize.
15292         (menu_free_timer): New variable.
15293         (MENU_FREE_ID, MENU_FREE_DELAY): New constants.
15294         (w32_wnd_proc) <WM_TIMER>: Handle menu_free_timer.
15295         <WM_EXITMENULOOP>: Delay before freeing menu.  Do nothing if a
15296         menu command is in progress.
15297         <WM_COMMAND>: Set the menu_command_in_progress flag.
15298         Kill any menu_free_timer that is running.
15300         * w32term.c (w32_text_out): Renamed from W32_TEXTOUT.
15301         Call ExtTextOutA rather than ExtTextOut.
15303 2002-02-22  Eli Zaretskii  <eliz@gnu.org>
15305         * puresize.h (BASE_PURESIZE): Increase to 755000.
15307 2002-02-22  Eli Zaretskii  <eliz@is.elta.co.il>
15309         * w16select.c (Fw16_set_clipboard_data): Run pre-write-conversion
15310         on the string before encoding it.
15311         (Fw16_get_clipboard_data): Run post-read-conversion on the string
15312         after decoding it.
15314 2002-02-22  Eli Zaretskii  <eliz@is.elta.co.il>
15316         Support for ICCCM  Extended Segments in X selections:
15318         * xselect.c <Qcompound_text_no_extensions>: New variable.
15319         (syms_of_xselect): Intern and staticpro it.
15320         (selection_data_to_lisp_data): Run post-read-conversion on decoded
15321         selection text.
15322         (lisp_data_to_selection_data): If next-selection-coding-system is
15323         compound-text-no-extensions, set the type of selection to be
15324         compound-text.
15326         * xterm.h (x_encode_text): Update prototype.
15328         * xfns.c (x_encode_text): Accept additional arg SELECTIONP; all
15329         callers changed.  If SELECTIONP is non-zero, run the
15330         pre-write-conversion function before encoding the selection text.
15332 2002-02-21  Kim F. Storm  <storm@cua.dk>
15334         * frame.c (syms_of_frame): Change mouse-highlight default to t.
15336         * keyboard.c (kbd_buffer_get_event) [WINDOWSNT]:
15337         Correct composing of language-change event.
15339 2002-02-20  Kim F. Storm  <storm@cua.dk>
15341         * keyboard.c (menu_bar_items): Don't include keymap or local-map
15342         bindings at PT when building menu (the menu is not updated often
15343         enough for this to work reliable).
15344         (tool_bar_items): Likewise.
15345         (current_active_maps): Removed unused (and buggy) function.
15347 2002-02-20  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
15349         * xfns.c (gif_load): Use correct width and height for GIF images.
15351 2002-02-19  Eli Zaretskii  <eliz@is.elta.co.il>
15353         * floatfns.c (Fatan): Accept an optional second arg and call
15354         atan2 if passed 2 args.
15356 2002-02-18  Jason Rumney  <jasonr@gnu.org>
15358         * w32term.c (glyph_rect): Determine the row and glyph more precisely.
15360 2002-02-17  Jason Rumney  <jasonr@gnu.org>
15362         * w32term.c (x_autoselect_window_p): New variable.
15363         (syms_of_w32term): DEFVAR_BOOL and initialize it.
15364         (note_mouse_movement): Use it.
15366         * w32fns.c (w32_load_system_font): Never set fonts_changed_p to zero.
15368         * w32bdf.c (w32_load_bdf_font): Maybe set fonts_changed_p.
15370         * w32fns.c (Qfullscreen, Qfullwidth, Qfullheight, Qfullboth):
15371         New variables.
15372         (syms_of_w32fns): Intern and staticpro them.
15373         (x_frame_parms) <"fullscreen">: New parameter.
15374         (x_fullscreen_move, x_set_fullscreen): New functions.
15375         (x_set_frame_parameters): Support Qfullscreen.
15376         (x_real_positions): Save x/y_pixels_diff frame params.
15377         (x_figure_window_size): Support full-screen frames.
15378         (Fx_create_frame): Default the fullscreen parameter.
15380         * w32term.c (x_check_fullscreen, x_check_fullscreen_move)
15381         (x_fullscreen_adjust): New functions.
15382         (w32_read_socket) <WM_WINDOWPOSCHANGED>: Don't  resize to
15383         fullscreen.  Call x_check_fullscreen_move, and set the
15384         want_fullscreen member of output_data.w32
15385         <WM_ACTIVATE, WM_ACTIVATEAPP>: Call x_check_fullscreen.
15387         * w32term.h: New enum for FULLSCREEN_* constants.
15388         (struct w32_output): New members want_fullscreen, x_pixels_diff,
15389         y_pixels_diff, x_pixels_outer_diff, and y_pixels_outer_diff.
15390         (x-fullscreen-adjust): New prototype.
15392 2002-02-17  Kim F. Storm  <storm@cua.dk>
15394         * frame.c: (Vmouse_highlight): New variable.
15395         (syms_of_frame): DEFVAR_LISP it.
15397         * frame.h: (Vmouse_highlight): Declare extern.
15399         * xterm.h (struct x_display_info): Add mouse_face_hidden.
15401         * xterm.c (disable_mouse_highlight): Removed variable.
15402         (note_mouse_highlight): Don't highlight if Vmouse_highlight is nil.
15403         (show_mouse_face): Don't show highlight if mouse_face_hidden is set.
15404         (XTread_socket): Turn mouse_face_hidden off after mouse movement,
15405         and on after keyboard input.
15406         (x_term_init): Initialize mouse_face_hidden.
15408         * msdos.h (struct display_info): Add mouse_face_hidden.
15410         * msdos.c (disable_mouse_highlight): Removed variable.
15411         (show_mouse_face): Don't show highlight if mouse_face_hidden is set.
15412         (IT_note_mouse_highlight): Don't highlight if Vmouse_highlight is nil.
15413         (internal_terminal_init): Initialize mouse_face_hidden.
15414         (dos_rawgetc): Turn mouse_face_hidden off after mouse movement,
15415         and on after keyboard input.
15417         * w32term.h (struct w32_display_info): Add mouse_face_hidden.
15419         * w32term.c (disable_mouse_highlight): Removed variable.
15420         (note_mouse_highlight): Disable highlight if Vmouse_highlight is nil.
15421         (show_mouse_face): Don't show highlight if mouse_face_hidden is set.
15422         (w32_read_socket): Turn mouse_face_hidden off after mouse movement,
15423         and on after keyboard input.
15424         (w32_initialize_display_info): Initialize mouse_face_hidden.
15426 2002-02-16  Eli Zaretskii  <eliz@is.elta.co.il>
15428         * msdos.c (last_mouse_window): New variable.
15429         (dos_rawgetc): Fix last change--if the mouse is in the same window
15430         as recorded in last_mouse_window, don't select this window.
15432         * Makefile.in (lisp, shortlisp): Use cus-start.elc, not cus-start.el.
15434         * msdos.c (x_autoselect_window_p): New variable.
15435         (syms_of_msdos): Defvar it.
15436         (dos_rawgetc): If x_autoselect_window_p is set, select the window in
15437         which the last mouse movement occured, unless it is already selected.
15439         * xdisp.c (automatic_hscroll_margin, Vautomatic_hscroll_step):
15440         New variables.
15441         (syms_of_xdisp): DEVFAR them.
15442         (hscroll_window_tree): Use automatic_hscroll_margin and
15443         Vautomatic_hscroll_step to compute the amount of window scrolling.
15445 2002-02-16  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
15447         * xterm.c (x-autoselect-window): New variable.
15448         (note_mouse_movement): Use it.
15450         * keyboard.c: Do not include "systime.h" twice.
15452 2002-02-15  Andreas Schwab  <schwab@suse.de>
15454         * puresize.h (PURESIZE_RATIO): Increase to 9/5.
15456         * alloc.c (NSTATICS): Increase to 1280.
15458 2002-02-15  Kai Gro\e,A_\e(Bjohann  <Kai.Grossjohann@CS.Uni-Dortmund.DE>
15460         * alloc.c (NSTATICS): Bump to 1026.
15462         * xterm.c (Vx_alt_keysym, Vx_hyper_keysym, Vx_meta_keysym)
15463         (Vx_super_keysym): New variables.
15464         (syms_of_xterm): DEFVAR_LISP them.
15465         (x_x_to_emacs_modifiers, x_emacs_to_x_modifiers): Use the
15466         variables to determine which keys to use for the various modifiers.
15468 2002-02-13  Kim F. Storm  <storm@cua.dk>
15470         * window.c: (Vmode_line_in_non_selected_windows): Removed.
15471         (mode_line_in_non_selected_windows): New variable.
15472         (syms_of_window): DEFVAR_BOOL it.
15474         * dispextern.h (CURRENT_MODE_LINE_FACE_ID_3):
15475         Use mode_line_in_non_selected_windows.
15476         (mode_line_in_non_selected_windows): Declare extern.
15477         (Vmode_line_in_non_selected_windows): Removed extern.
15479 2002-02-13  Richard M. Stallman  <rms@gnu.org>
15481         * keyboard.c (Fthis_command_keys, Fthis_command_keys_vector)
15482         (Fthis_single_command_keys, Fthis_single_command_raw_keys)
15483         (Fclear_this_command_keys): Doc fixes.
15485         * xfaces.c (Finternal_make_lisp_face, Finternal_copy_lisp_face)
15486         (update_face_from_frame_parameter): Increment face_change_count
15487         and windows_or_buffers_changed to force redisplay using changed faces.
15489         * xdisp.c (QCpropertize): New variable.
15490         (mode_line_proptrans_alist): New variable.
15491         (display_mode_element): New arg PROPS; all calls changed.
15492         Implement this, for strings.
15493         Handle literal output of strings by sharing the
15494         main-line code for strings, using local var `literal'.
15495         Handle :propertize feature.
15496         (syms_of_xdisp): Initialze and staticpro QCpropertize and
15497         mode_line_proptrans_alist.
15499 2002-02-11  Kim F. Storm  <storm@cua.dk>
15501         * window.c: (Vmode_line_in_non_selected_windows): New variable.
15502         (syms_of_window): DEFVAR_LISP it.
15504         * dispextern.h (CURRENT_MODE_LINE_FACE_ID_3): New macro.
15505         (CURRENT_MODE_LINE_FACE_ID): Use it.
15506         (Vmode_line_in_non_selected_windows): Declare extern.
15508         * xdisp.c (display_mode_lines): Use CURRENT_MODE_LINE_FACE_ID_3
15509         to get mode line face.
15511 2002-02-11  Eli Zaretskii  <eliz@is.elta.co.il>
15513         * msdos.c (Vx_bitmap_file_path, x_stretch_cursor_p): Remove these
15514         variables; cus-start.el doesn't need them anymore.
15516 2002-02-09  Kim F. Storm  <storm@cua.dk>
15518         * insdel.c (make_gap_smaller): Preserve BEG_UNCHANGED during gap
15519         reduction.  This fixes a display problem where stray newlines were
15520         inserted in the window (corrected by C-l).  Clarified code (IMHO).
15522 2002-02-09  Eli Zaretskii  <eliz@is.elta.co.il>
15524         * dispextern.h (CURRENT_MODE_LINE_FACE_ID): Fix last change.
15526         * xdisp.c (display_mode_lines): Fix last change.
15528 2002-02-09  Jason Rumney  <jasonr@gnu.org>
15530         * w32fns.c (enum_font_cb2): Don't let charsets unknown to Windows
15531         match each other.
15532         (w32_load_system_font): Prevent Cleartype fonts from loading.
15533         (Fx_show_tip): Ensure tip frames are above other topmost windows.
15535 2002-02-09  Kim F. Storm  <storm@cua.dk>
15537         * dispextern.h (CURRENT_MODE_LINE_FACE_ID): New macro.
15538         (CURRENT_MODE_LINE_HEIGHT): Use it.
15539         (enum face_id): Add MODE_LINE_INACTIVE_FACE_ID.
15541         * xdisp.c (window_box_height): Use CURRENT_MODE_LINE_FACE_ID.
15542         (pos_visible_p, handle_face_prop): Likewise.
15543         (display_mode_lines): Likewise, but for the real selected window.
15544         (init_iterator) [row == NULL]: Handle MODE_LINE_INACTIVE_FACE_ID.
15546         * xfaces.c (Qmode_line_inactive): New face variable for mode-line
15547         in non-selected windows.
15548         (realize_basic_faces): Realize it.
15549         (syms_of_term): Intern and staticpro it.
15551 2002-02-08  Kim F. Storm  <storm@cua.dk>
15553         * alloc.c (SETJMP_WILL_LIKELY_WORK, SETJMP_WILL_NOT_WORK):
15554         Changed mail addresses to emacs-devel@gnu.org.
15556 2002-02-08  Eli Zaretskii  <eliz@is.elta.co.il>
15558         * fileio.c (Fsubstitute_in_file_name): If the file name includes
15559         ~user, and there's no such user, don't discard everything before ~user.
15561         * floatfns.c (Fround): Doc fix.
15563 2002-02-08  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
15565         * sysdep.c (init_system_name): Put unused variable `p' in #if 0.
15567 2002-02-07  Stefan Monnier  <monnier@cs.yale.edu>
15569         * lisp.h (Fx_file_dialog): Add extern decl (used in fileio.c).
15571 2002-02-07  Kim F. Storm  <storm@cua.dk>
15573         * keymap.c (where_is_internal): Only check whether definition is
15574         remapped if it fulfills is_command_symbol.
15576 2002-02-07  Andreas Schwab  <schwab@suse.de>
15578         * s/gnu-linux.h (GC_LISP_OBJECT_ALIGNMENT): Define to 2 for m68k.
15580         * alloc.c (mark_stack): Don't assume sizeof (Lisp_Object) is 4.
15582 2002-02-06  Kim F. Storm  <storm@cua.dk>
15584         * keymap.c (Fdefine_key): Allow symbol as KEY argument for
15585         defining command remapping.  Doc updated.
15586         (Flookup_key): Remap command through keymap if KEY is a symbol.
15587         (is_command_symbol): New function.
15588         (Fkey_binding): Use it.  New optional argument NO-REMAP.
15589         Doc updated.  Callers changed.  Perform command remapping via
15590         recursive call unless that arg is non-nil.
15591         (where_is_internal): New argument no_remap.  Callers changed.
15592         Call recursively to find original key bindings for a remapped
15593         comand unless that arg is non-nil.
15594         (Fwhere_is_internal): New optional argument NO-REMAP.
15595         Doc updated.  Callers changed.  Pass arg to where_is_internal.
15597         * keymap.h (Fkey_binding, Fwhere_is_internal): Update prototype.
15598         (is_command_symbol): Add prototype.
15600         * keyboard.c (Vthis_original_command): New variable.
15601         (syms_of_keyboard): DEFVAR_LISP it.
15602         (command_loop_1): Set it, and perform command remapping.
15604 2002-02-06  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
15606         * keyboard.c (recursive_edit_1): Call cancel_hourglass unconditionally.
15608 2002-02-06  Jason Rumney  <jasonr@gnu.org>
15610         * w32term.c (w32_native_per_char_metric): Disable 2002-01-20 change.
15612 2002-02-06  Eli Zaretskii  <eliz@is.elta.co.il>
15614         * charset.c (get_charset_id): Use if-else instead of ?:.
15616 2002-02-06  Richard M. Stallman  <rms@gnu.org>
15618         * filelock.c (S_ISLNK): Define if not defined.
15620 2002-02-03  Richard M. Stallman  <rms@gnu.org>
15622         * fileio.c (Fdo_auto_save): Improve "auto save disabled" msg.
15624         * lread.c (read1): Redesign strategy for force_multibyte and
15625         force_singlebyte.  Now is_multibyte records whether read_buffer
15626         is multibyte.  Encountering any multibyte character makes it so.
15628 2002-02-02  Stefan Monnier  <monnier@cs.yale.edu>
15630         * term.c (term_get_fkeys_1): If `k0' and `k;' are both specified and
15631         with the same sequence, map that sequence to f10 rather than f0.
15633 2002-02-03  Andreas Schwab  <schwab@suse.de>
15635         * s/gnu-linux.h: Check for __mc68000__ instead of __m68k__, the
15636         latter never being defined on GNU/Linux.
15638 2002-02-02  Eli Zaretskii  <eliz@is.elta.co.il>
15640         * xfaces.c (realize_default_face): Don't set the weight and slant of
15641         the default face to Qnormal, unless these attributes are unspecified.
15643 2002-02-02  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
15645         * keyboard.c (command_loop_1) [HAVE_X_WINDOWS]:
15646         Call cancel_hourglass unconditionally.
15648         * eval.c (Fsignal): Remove duplicated declaration of
15649         the variable `display_hourglass_p'.
15651 2002-01-31  Richard M. Stallman  <rms@gnu.org>
15653         * editfns.c (region_limit): Nicer error message.
15655         * coding.c (decode_composition_emacs_mule):
15656         Give up if NCOMPONENT gets too large to index `component'.
15658         * callint.c (check_mark): New arg to specify clearer error message.
15659         Callers changed.
15661 2002-01-27  Richard M. Stallman  <rms@gnu.org>
15663         * minibuf.c (Fcompleting_read): Doc fix.
15665 2002-01-27  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
15667         * minibuf.c (Fread_from_minibuffer, Fread_command, Fread_function)
15668         (Fread_variable, Fread_buffer, minibuffer-completion-confirm):
15669         Fix doc-strings.
15671 2002-01-26  Richard M. Stallman  <rms@gnu.org>
15673         * buffer.c (syms_of_buffer): Doc fixes for scroll-...-aggressively.
15675         * xdisp.c (try_scrolling): Exchange uses of scroll_down_aggressively
15676         and scroll_up_aggressively.
15678 2002-01-26  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
15680         * keyboard.c (parse_tool_bar_item): Remove duplicated prototypes.
15682 2002-01-25  Stefan Monnier  <monnier@cs.yale.edu>
15684         * textprop.c (Fnext_property_change, Fnext_single_property_change)
15685         (Fprevious_property_change, Fprevious_single_property_change):
15686         Stay within the narrowed-buffer boundaries.
15688 2002-01-25  Eli Zaretskii  <eliz@is.elta.co.il>
15690         * term.c (Ftty_display_color_cells): New function.
15691         (syms_of_term): Defsubr it.
15692         (Ftty_display_color_cells, Ftty_display_color_p): Change the
15693         argument name to DISPLAY.  Doc fix.
15695         * dispextern.h: Add prototype for set_tty_color_mode and
15696         tty_setup_colors.
15698 2002-01-24  Jason Rumney  <jasonr@gnu.org>
15700         * w32term.c (x_scroll_run): Use ScrollWindowEx in place of BitBlt.
15701         If region left to draw is not what was expected, mark the frame as
15702         garbaged.
15704         * w32fns.c (w32_wnd_proc) <WM_PAINT>: Initialize update_rect.
15705         Combine the regions returned by BeginPaint and GetUpdateRect.
15707 2002-01-23  Jason Rumney  <jasonr@gnu.org>
15709         * w32term.c (x_update_window_begin): Only hide caret if
15710         w32_use_visible_system_caret is set.
15711         (x_update_window_end): Only show caret if
15712         w32_use_visible_system_caret is set.
15713         (syms_of_w32term): Handle SystemParametersInfo call failing.
15715         * w32fns.c (syms_of_w32fns): Initialize w32_visible_system_caret_hwnd.
15717 2002-01-22  Richard M. Stallman  <rms@gnu.org>
15719         * unexelf.c (unexec): Define n so as to cause compilation error
15720         for the code where people have often written n instead of nn.
15722         * .gdbinit (hookpost-run): Defined.
15724 2002-01-22  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
15726         * xfns.c (x_set_frame_parameters): Typo in previous fix corrected.
15728 2002-01-21  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
15730         * xfns.c (x_set_frame_parameters): Just call x_fullscreen_adjust
15731         if fullscreen is being set.
15733 2002-01-21  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
15735         * minibuf.c (Fminibuffer_contents)
15736         (Fminibuffer_contents_no_properties, Fread_from_minibuffer)
15737         (Fread_string, Fread_no_blanks_input, Fcompleting_read): Doc fixes.
15739 2002-01-21  Richard M. Stallman  <rms@gnu.org>
15741         * window.c (check_frame_size): Fix minimum height calculation.
15743 2002-01-20  Ken Raeburn  <raeburn@gnu.org>
15745         * dispextern.h (WINDOW_WANTS_MODELINE_P): Use XFASTINT on window
15746         height before comparison.
15747         (WINDOW_WANTS_HEADER_LINE_P): Likewise.
15749 2002-01-20  Jason Rumney  <jasonr@gnu.org>
15751         * w32term.c (w32_system_caret_width): Remove.
15752         (w32_use_visible_system_caret): New user flag.
15753         (syms_of_w32term): DEFVAR_BOOL it.  Initialize based on whether
15754         Windows reports a screen reader running.
15755         (x_update_window_begin): Hide the system caret.
15756         (x_update_window_end): Show the system caret.
15757         (x_display_and_set_cursor): Don't draw a cursor when
15758         w32_use_visible_system_caret is set.  Do not adjust width.
15760         * w32fns.c (w32_visible_system_caret_hwnd): New static variable.
15761         (w32_wnd_proc) <WM_KILL_FOCUS, WM_EMACS_DESTROY_CARET>: Set it.
15762         <WM_EMACS_TRACK_CARET>: Arrange for system caret to be visible if
15763         the user requests it.  Use system default width when creating.
15764         <WM_EMACS_HIDE_CARET, WM_EMACS_SHOW_CARET>: Handle new messages.
15766         * w32term.h (WM_EMACS_SHOW_CARET, WM_EMACS_HIDE_CARET):
15767         New window messages.
15769 2002-01-20  Richard M. Stallman  <rms@gnu.org>
15771         * window.c (MIN_SAFE_WINDOW_HEIGHT): Value now 1.
15773 2002-01-20  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
15775         * doprnt.c (doprnt1): Fix typos in error call.
15777 2002-01-20  Eli Zaretskii  <eliz@is.elta.co.il>
15779         * unexelf.c (unexec) [__sgi]: Support the .got sections.
15781 2002-01-20  Jason Rumney  <jasonr@gnu.org>
15783         * w32term.c (w32_native_per_char_metric): Don't trust the metrics
15784         that Windows returns.  If a double check fails, try to guess how
15785         ExtTextOut is going to act.
15787         * w32fns.c (w32_load_system_font, w32_to_x_charset): Use strnicmp
15788         in place of stricmp.
15789         (w32_list_synthesized_fonts): Removed.
15790         (w32_to_all_x_charsets, enum_font_maybe_add_to_list): New functions.
15791         (struct enumfont_t): New element; list.
15792         (enum_font_cb2): List all style and charset variations of a font.
15793         (Fw32_select_font): New optional argument; include_proportional.
15794         Exclude vertical fonts.  Exclude proportional fonts unless
15795         include_proportional is non-nil.
15796         (w32_enable_synthesized_fonts): Change to a boolean.
15797         (Fw32_send_sys_command): Doc fix.
15799 2002-01-19  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
15801         * dispnew.c (update_frame): Move the variable `tem' to the block
15802         where it is used.
15804 2002-01-19  Jason Rumney  <jasonr@gnu.org>
15806         * w32fns.c (Fx_create_frame): Bind redisplay-dont-pause around
15807         call to face-set-after-frame-default.
15809 2002-01-18  Richard M. Stallman  <rms@gnu.org>
15811         * dispextern.h (WINDOW_WANTS_MODELINE_P): Check window height > 1.
15812         (WINDOW_WANTS_HEADER_LINE_P): Check window height provides room.
15814 2002-01-17  Richard M. Stallman  <rms@gnu.org>
15816         * window.c (enlarge_window): When exceeding size of parent,
15817         directly delete all the siblings instead of trying to resize it.
15819 2002-01-17  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
15821         * term.c (set_tty_color_mode): Remove unused variable `tem'.
15823 2002-01-16  Henrik Enberg  <henrik@enberg.org>
15825         * lread.c (init_lread): Move the installed-lisp dirs later in the path.
15827 2002-01-16  Kim F. Storm  <storm@cua.dk>
15829         * xterm.c (x_erase_phys_cursor): Don't erase cursor if cursor row
15830         is invisible.  This can happen if cursor is on top line of a
15831         window, and we switch to a buffer with a header line.
15833         * w32term.c (x_erase_phys_cursor): Ditto.
15835 2002-01-16  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
15837         * xterm.c (XTread_socket) [!USE_X_TOOLKIT]: Compute the value of
15838         `dont_resize' only when used.
15840         * xdisp.c: Remove forgotten extern declaration of `Qimage'.
15842 2002-01-15  Eli Zaretskii  <eliz@is.elta.co.il>
15844         * xdisp.c (display_mode_element): When computing charpos, depend
15845         on multibyteness of elt, not the text in field.
15847 2002-01-15  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
15849         * buffer.c (Fkill_all_local_variables):
15850         Increment `update_mode_lines' only once.
15852 2002-01-14  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
15854         * lisp.h (adjust_after_replace_noundo)
15855         (Fupdate_coding_systems_internal): Add prototypes.
15857         * sound.c (Fplay_sound): Initialize header_size also for :data case.
15859 2002-01-14  Eli Zaretskii  <eliz@is.elta.co.il>
15861         Support for the --color command-line argument and tty-color-mode
15862         frame parameter:
15864         * term.c (tty_default_color_capabilities, tty_setup_colors)
15865         (set_tty_color_mode): New functions.
15866         (term_init): Call tty_default_color_capabilities.
15867         (Qtty_color_mode_alist): New variable.
15868         (syms_of_term): Intern and staticpro it.
15870         * frame.c (store_frame_param): Call set_tty_color_mode for termcap
15871         frames.
15872         (do_switch_frame): For termcap frames, switch the tty
15873         color mode as specified by the frame's parameters.
15874         (Qtty_color_mode): New variable.
15875         (syms_of_frame): Intern and staticpro it.
15877         * emacs.c (USAGE2): Add the --color option.
15878         (standard_args): Ditto.
15880 2002-01-13  Jan Dj\e,Ad\e(Brv  <jan.h.d@swipnet.se>
15882         * xterm.h (struct x_output): New members want_fullscreen,
15883         x_pixels_diff, y_pixels_diff, x_pixels_outer_diff, and
15884         y_pixels_outer_diff.
15885         New enum for FULLSCREEN_* constants.
15886         (FRAME_OUTER_WINDOW): Handle the case where output_data.x->widget
15887         is NULL.
15888         (x_fullscreen_adjust): Add prototype.
15890         * emacs.c (USAGE2): Add the new full-screen arguments.
15891         (standard_args): Ditto.
15893         * xfns.c (Qfullscreen, Qfullwidth, Qfullheight, Qfullboth):
15894         New variables.
15895         (syms_of_xfns): Intern and staticpro them.
15896         (x_frame_parms) <"fullscreen">: New parameter.
15897         (x_fullscreen_move, x_set_fullscreen): New functions.
15898         (x_set_frame_parameters): Support for Qfullscreen.
15899         (x_real_positions): More accurate computation of the frame position.
15900         (x_figure_window_size): Support full-screen frames.
15901         (Fx_create_frame): Default the fullscreen parameter.
15903         * xterm.c (x_check_fullscreen, x_fullscreen_adjust): New functions.
15904         (XTread_socket) <Expose>: Call x_check_fullscreen.
15905         <ConfigureNotify>: Don't resize to fullscreen.
15906         Call x_check_fullscreen_move, and set the want_fullscreen member of
15907         output_data.x.
15909 2002-01-13  Jason Rumney  <jasonr@gnu.org>
15911         * w32term.h (WM_XBUTTONDOWN, WM_XBUTTONUP): New window messages
15912         for mice with more than 3 buttons.
15914         * w32term.c (parse_button): New parameter xbutton.  Callers changed.
15915         (w32_read_socket): Handle new "XBUTTON" messages.
15917         * w32fns.c (w32_pass_extra_mouse_buttons_to_system): New user option.
15918         (syms_of_w32fns): DEFVAR_BOOL it.
15919         (w32_wnd_proc): Handle new "XBUTTON" messages.
15921 2002-01-13  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
15923         * keyboard.c (read_key_sequence): Remove unused variable `extra_maps'.
15925 2002-01-13  Andreas Schwab  <schwab@suse.de>
15927         * xterm.c (x_load_font): Never set fonts_changed_p to zero.
15929 2002-01-12  Andreas Schwab  <schwab@suse.de>
15931         * .gdbinit (xbuffer): Remove address operator since data is now a
15932         pointer.
15934 2002-01-11  Richard M. Stallman  <rms@gnu.org>
15936         * insdel.c (adjust_after_replace_noundo): New function.
15938         * coding.c (code_convert_region): Don't copy old text if undo disabled.
15940 2002-01-09  Jason Rumney  <jasonr@gnu.org>
15942         * xdisp.c (x_consider_frame_title): Don't count the tooltip frame
15943         when checking for multiple frames.
15945 2002-01-08  Richard M. Stallman  <rms@gnu.org>
15947         * window.c (delete_window): Rewrite the code for changing the
15948         selected window to handle the case where WINDOW is not a leaf.
15950 2002-01-07  Eli Zaretskii  <eliz@is.elta.co.il>
15952         * process.c (send_process): Set src_multibyte to 1 after the call
15953         top setup_coding_system, not before the call.
15955 2002-01-07  Jason Rumney  <jasonr@gnu.org>
15957         * xmenu.c (set_frame_menubar, xmenu_show):
15958         (xdialog_show): Initialize wv->help to Qnil.
15960         * w32menu.c (single_submenu, set_frame_menubar, w32_menu_show):
15961         (w32_dialog_show): Initialize wv->help to Qnil.
15963 2002-01-06  Jason Rumney  <jasonr@gnu.org>
15965         * xmenu.c (single_submenu): Initialize wv->help to Qnil.
15967         * w32menu.c (w32_menu_display_help): Revert last change.
15969         * xmenu.c (menu_highlight_callback): Revert last change.
15971 2002-01-06  Andreas Schwab  <schwab@suse.de>
15973         * insdel.c (make_gap_larger): Make sure buffer size does not
15974         overflow range of int.
15976 2002-01-05  Jason Rumney  <jasonr@gnu.org>
15978         * w32term.c (x_draw_glyphs): Don't call notice_overwritten_cursor if
15979         OVERLAPS_P.
15981         * w32menu.c (w32_menu_display_help): Hide any tooltip window.
15983         * w32fns.c (compute_tip_xy): If tooltip won't fit on the screen
15984         to the left or to the right of the pointer, put it against
15985         the left screen edge.
15986         (x_frame_parms): Add missing braces around initializer.
15988         * w32term.c (x_setup_relief_colors): Don't compute an image's
15989         background color if it doesn't have a Pixmap.
15990         (notice_overwritten_cursor): Don't depend on
15991         output_cursor and updated_area.  Compare pixel coordinates with
15992         window's cursor pixel coordinates.
15993         (x_draw_glyphs, x_clear_end_of_line, show_mouse_face):
15994         Call notice_overwritten_cursor with new arg list.
15995         (show_mouse_face): Fix bug setting a row's mouse_face_p flag
15996         unconditionally.
15997         (x_draw_image_relief): Use predefined macro instead of
15998         constant when the value of `tool_bar_button_relief' is negative.
16000         * w32term.c (x_display_and_set_cursor): Fix PostMessage arg types.
16002 2002-01-04  Richard M. Stallman  <rms@gnu.org>
16004         * xmenu.c (menu_highlight_callback): Hide any tooltip window.
16006 2002-01-03  Richard M. Stallman  <rms@gnu.org>
16008         * keymap.c (Fcurrent_active_maps): Put the `keymap' property map first.
16009         (Fkey_binding): Try the `keymap' property map first.
16010         (Fdescribe_buffer_bindings): Show `keymap' property bindings before
16011         minor mode bindings.
16013 2002-01-03  Kim F. Storm  <storm@cua.dk>
16015         * keyboard.c (read_key_sequence): Fix cast of submaps arg to bcopy.
16017 2002-01-02  Richard M. Stallman  <rms@gnu.org>
16019         * keyboard.c (read_key_sequence): Handle the keymap property
16020         before minor mode maps.
16022         * editfns.c (Fformat): Update thissize from field_width
16023         based on the actual width, in the string case.
16025 2002-01-01  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
16027         * charset.h (UNIBYTE_STR_AS_MULTIBYTE_P): Parenthesize assignment
16028         when used as truth value to prevent gcc warnings.
16030         * sysdep.c, unexapollo.c, w32.c, w32bdf.c, w32heap.c, w32inevt.c,
16031         * w32proc.c: Include <config.h>.
16033 2002-01-01  Andreas Schwab  <schwab@suse.de>
16035         * eval.c (max_specpdl_size, max_lisp_eval_depth): Define as int,
16036         not EMACS_INT, to make them compatible with DEFVAR_INT.
16037         * lisp.h (max_specpdl_size): Adjust declaration.
16039 2002-01-01  Richard M. Stallman  <rms@gnu.org>
16041         * print.c (print_object): Test print_escape_nonascii only for
16042         unibyte strings.
16043         (PRINTPREPARE): Once again bind Qprint_escape_nonascii
16044         when outputting to a multibyte buffer.
16046 2001-12-29  Richard M. Stallman  <rms@gnu.org>
16048         * print.c (print_object): In multibyte string, use hex escapes.
16049         Use octal only for unibyte strings.
16050         (PRINTPREPARE): Don't ever set Qprint_escape_nonascii.
16052         * lread.c (read_escape): New arg BYTEREP for reporting whether
16053         escape forces unibyte or multibyte.
16054         (read1): When reading a string, take note of that info.
16056 2001-12-29  Ken Raeburn  <raeburn@gnu.org>
16058         * abbrev.c (Fexpand_abbrev): Use NILP instead of implicit zero
16059         comparison to test lisp value returned by Fget.
16061 2001-12-29  Richard M. Stallman  <rms@gnu.org>
16063         * lisp.h (max_specpdl_size): Add declaration.
16065         * fileio.c (Fdo_auto_save): If NO_MESSAGE, don't call push_message.
16067         * keymap.c (silly_event_symbol_error): New subrtn, from Fdefine_key.
16068         Handle modifier bits.  Correct typo in error message.
16070 2001-12-28  Richard M. Stallman  <rms@gnu.org>
16072         * abbrev.c: Use the plist of an abbrev for multiple params if nec.
16073         (Fdefine_abbrev): New arg SYSTEM-FLAG for a system abbrev.
16074         (Fdefine_global_abbrev, Fdefine_mode_abbrev):
16075         Update calls to Fdefine_abbrev.
16076         (write_abbrev): Update for changed data format.
16077         Don't list "system" abbrevs.
16078         (Fexpand_abbrev): Update use count with new data format.
16079         (describe_abbrev): Update for changed data format.
16080         (Fdefine_abbrev_table): Handle the new SYSTEM-FLAG.
16082         * config.in (HAVE_MBSINIT): Add #undef.
16084         * strftime.c (mbsinit): Define as no-op if not available.
16086         * s/sco5.h (LIBX11_SYSTEM) [MOTIF]: Add -lgen.
16087         (sigprocmask_set): Conditionalize decl on ! NOT_C_CODE.
16089         * keymap.c (Flookup_key): Error message if key has wrong data type.
16090         (Fdefine_key): Add error message for trying to bind [DEL], [RET], etc.
16091         (exclude_key): New variable.
16093 2001-12-28  Gerd Moellmann  <gerd@gnu.org>
16095         * xterm.c (x_setup_relief_colors): Don't compute an image's
16096         background color if it doesn't have a Pixmap.
16098         * xterm.c (notice_overwritten_cursor): Don't depend on
16099         output_cursor and updated_area.  Compare pixel coordinates with
16100         window's cursor pixel coordinates.
16101         (x_draw_glyphs, x_clear_end_of_line, show_mouse_face):
16102         Call notice_overwritten_cursor with new arg list.
16103         (show_mouse_face): Fix bug setting a row's mouse_face_p flag
16104         unconditionally.
16106         * xdisp.c (try_scrolling) <PT below scroll margin>: Add the
16107         height of the cursor line to the amount to scroll.
16109 2001-12-27  Richard M. Stallman  <rms@gnu.org>
16111         * intervals.c (set_point_both): The position after an invisible,
16112         intangible character is not an acceptable stopping point.
16114 2001-12-27  Ken Raeburn  <raeburn@gnu.org>
16116         * window.c (enlarge_window): In new preserve_before code, convert
16117         CURBEG from lisp object to integer before doing arithmetic.
16119 2001-12-27  Richard M. Stallman  <rms@gnu.org>
16121         * bytecode.c (Fbyte_code): Undo previous change.
16123 2001-12-26  Kim F. Storm  <storm@cua.dk>
16125         * keyboard.c (record_char): Ignore duplicate help-echo events only
16126         separated by mouse-movement.  When tracking mouse, only record
16127         first and last mouse-movement event in same window.
16128         Don't record mouse-movement events in keyboard macros.
16130 2001-12-25  Richard M. Stallman  <rms@gnu.org>
16132         * window.c (enlarge_window): New arg PRESERVE_BEFORE.  Callers changed.
16133         (Fenlarge_window): New arg PRESERVE_BEFORE.
16135         * bytecode.c (Fbyte_code): Use Fstring_make_unibyte
16136         instead of Fstring_as_unibyte.
16138 2001-12-22  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
16140         The following changes remove mocklisp support:
16142         * mocklisp.h, mocklisp.c: Files removed.
16144         * lisp.h: Remove declarations of variables `Vmocklisp_arguments',
16145         `Qmocklisp' and `Qmocklisp_arguments'.
16146         Remove prototype of syms_of_mocklisp.
16148         * makefile.nt, makefile.w32-in, Makefile.in: Remove mocklisp files.
16150         * callint.c: Do not include mocklisp.h.
16151         (Fcall_interactively): Do not test for mocklisp case.
16153         * eval.c: Remove variables `Qmocklisp_arguments',
16154         `Vmocklisp_arguments' and `Qmocklisp'.  Remove prototype of ml_apply.
16155         (Fprogn, Fwhile, Fcommandp, Feval, Ffuncall, funcall_lambda):
16156         Do not test for mocklisp case.
16157         (Fwhile): Remove unused variable `tem'.
16158         (syms_of_eval): Remove variable `moclisp-arguments'.
16160         * data.c (wrong_type_argument): Remove mocklisp case.
16162         * doc.c (Fdocumentation): Remove mocklisp case.
16164         * emacs.c (main): Do not call syms_of_mocklisp.
16166 2001-12-21  Richard M. Stallman  <rms@gnu.org>
16168         * xfns.c (compute_tip_xy): If tooltip won't fit on the screen
16169         to the left or to the right of the pointer, put it against
16170         the left screen edge.
16172 2001-12-21  Eli Zaretskii  <eliz@is.elta.co.il>
16174         * Makefile.in (distclean): Remove .gdbinit if we are building
16175         outside the source tree.
16177 2001-12-19  Eli Zaretskii  <eliz@is.elta.co.il>
16179         * w32.c (emacs_root_dir): New function.
16181         * msdos.c (emacs_root_dir): New function.
16183         * fileio.c (Fexpand_file_name) [DOS_NT]: Use the root directory
16184         of the current drive as the fallback for default_directory.
16186         * dired.c (file_name_completion): Run the elements of
16187         completion-ignored-extensions through ENCODE_FILE.
16189         * lisp.h (scmp): Remove prototype, since it's now a static
16190         function private to dired.c.
16192 2001-12-18  Richard M. Stallman  <rms@gnu.org>
16194         * dired.c (scmp): Function moved from minibuf.c.
16195         Delete multibyte handling--used only on encoded strings.
16197         * minibuf.c (scmp): Function moved to dired.c.
16199         * fns.c (merge): Add QUIT call.
16201 2001-12-18  Dave Love  <fx@gnu.org>
16203         * Makefile.in (lisp, shortlisp): Add language/utf-8-lang.el,
16204         language/georgian.el.
16206 2001-12-18  Eli Zaretskii  <eliz@is.elta.co.il>
16208         * Makefile.in (lisp, shortlisp): Synchronize with changes to
16209         lisp/Makefile.in:DONTCOMPILE.
16211 2001-12-18  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
16213         * xdisp.c (window_box_height): Do not return negative values.
16214         From Gerd Moellmann <gerd@gnu.org>.
16216         * keyboard.c (head_table): Add missing braces around initializer.
16218         * term.c (keys): Likewise.
16220         * xfns.c (x_frame_parms, visual_classes): Likewise.
16222 2001-12-17  Sam Steingold  <sds@gnu.org>
16224         * coding.c (DECODE_COMPOSITION_END): Fixed a typo in the last
16225         patch (COMPOSING_P, not COMPOSING).
16227 2001-12-17  Richard M. Stallman  <rms@gnu.org>
16229         * editfns.c (Fcompare_buffer_substrings): Add QUIT to main loop.
16231         * coding.c (code_convert_region): Update coding->cmp_data->char_offset
16232         before calling decode_coding.
16234         * charset.c (Fdefine_charset): Call Fupdate_coding_systems_internal.
16236         * coding.c (DECODE_COMPOSITION_END): Check for ! COMPOSING_P (coding)
16237         instead of only for COMPOSITION_DISABLED.
16239 2001-12-16  Richard M. Stallman  <rms@gnu.org>
16241         * alloc.c (pure_alloc): After overflow, allocate just a small block.
16243         * Makefile.in (xmenu.o, xterm.o, fontset.o): Depend on buffer.h.
16245         * buffer.h (struct buffer): New field `display_error_modiff'.
16246         * buffer.c (reset_buffer): Initialize `display_error_modiff'.
16248         * window.c (Frecenter): Clear display_error_modiff field.
16250         * xdisp.c (redisplay_window_0, redisplay_window_1): New functions.
16251         Call redisplay_window, but not if display_error_modiff field says no.
16252         (redisplay_window_error): New function.
16253         (displayed_buffer): New variable.
16254         (redisplay_internal, redisplay_windows): Call the new functions
16255         instead of redisplay_window directly.
16257 2001-12-15  Richard M. Stallman  <rms@gnu.org>
16259         * keyboard.c (syms_of_keyboard) <double-click-fuzz>: Doc fix.
16261 2001-12-14  Andrew Innes  <andrewi@gnu.org>
16263         * makefile.w32-in (EMACSLOADPATH): Define.
16264         ($(EMACS)): Run `list-load-path-shadows' after dumping Emacs.
16265         (bootstrap-temacs): Remove dependency on bootstrap-clean.
16267 2001-12-13  Eli Zaretskii  <eliz@is.elta.co.il>
16269         * xfns.c (x_report_frame_params): Make the scroll-bar-width frame
16270         parameter have a numeric value all the time.
16272         * w32fns.c (x_report_frame_params): Likewise.
16274 2001-12-12  Richard M. Stallman  <rms@gnu.org>
16276         * fileio.c (Fwrite_region): Doc fix.
16278         * xdisp.c (CLEAR_FACE_CACHE_COUNT): Redefine as 500.
16279         (redisplay_internal): Call clear_image_cache only for window terminals.
16281 2001-12-12  Gerd Moellmann  <gerd@gnu.org>
16283         * xdisp.c (move_it_vertically_backward): Change heuristic
16284         for the case that we didn't move far enough initially.
16286         * window.c (Frecenter): Simplify computation in the case of window
16287         system frames and ARG < 0; use window_box_height.
16289 2001-12-11  Richard M. Stallman  <rms@gnu.org>
16291         * Makefile.in, mem-limits.h, dispnew.c, emacs.c, fileio.c:
16292         * process.c, sysdep.c, unexec.c: Test GNU_LINUX, not LINUX.
16294 2001-12-11  Andrew Innes  <andrewi@gnu.org>
16296         * insdel.c (make_gap) [DOUG_LEA_MALLOC]: Call make_gap_smaller if
16297         arg is negative.
16299 2001-12-11  Richard M. Stallman  <rms@gnu.org>
16301         * m/hp800.h: Split the __hpux conditional into the parts
16302         that are right for GNU/Linux too and the parts that are not.
16303         Use the former if GNU_LINUX.
16304         (HAVE_ALLOCA, LOAD_AVE_TYPE, LOAD_AVE_CVT): New defs for GNU/Linux.
16306         * s/gnu-linux.h (GNU_LINUX): Defined.
16308 2001-12-11  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
16310         * macros.c, msdos.c, w16select.c: Change doc-string comments to
16311         `new style' [w/`doc:' keyword].
16313 2001-12-10  Jason Rumney  <jasonr@gnu.org>
16315         * w32menu.c (w32_free_submenu_strings): Clear menu item struct
16316         before using.
16318 2001-12-09  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
16320         * dosfns.c: Change doc-string comments to `new style' [w/`doc:'
16321         keyword].
16323 2001-12-09  Eli Zaretskii  <eliz@is.elta.co.il>
16325         * dosfns.c (dos-display-scancodes, dos-decimal): Doc fix.
16327         * s/hpux10.h (srand48): Don't undefine.
16329 2001-12-09  Jason Rumney  <jasonr@gnu.org>
16331         * w32menu.c (_widget_value): Make `help' field a Lisp_Object.
16332         Add comment to explain where the struct came from.
16333         (single_submenu, w32_menu_show): Set `help' field as Lisp_Object.
16334         (add_menu_item): Process pop-up menus first to avoid memory leak.
16335         (add_menu_item, w32_menu_display_help): Use `help' field as
16336         Lisp_Object.
16337         (w32_free_submenu_strings): Only free owner-drawn strings.
16339 2001-12-09  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
16341         * COPYING: Moved back.
16343         * charset.c (char_to_string_1, translate_char, Fdefine_charset):
16344         Add parentheses around && within ||.
16346         * indent.c (compute_motion): Likewise.
16348         * intervals.c (merge_properties_sticky): Likewise.
16350         * coding.c (setup_coding_system, shrink_encoding_region)
16351         (Fdecode_sjis_char): Likewise.
16353 2001-12-07  Andreas Schwab  <schwab@suse.de>
16355         * xdisp.c (display_mode_element): Don't read past end of string if
16356         it ends with '%'.
16358         * alloc.c (inhibit_garbage_collection): Don't exceed value an int
16359         can hold.
16361         * data.c (Vmost_positive_fixnum, Vmost_negative_fixnum):
16362         Rename from most_positive_fixnum and most_negative_fixnum, resp., and
16363         type changed to Lisp_Object.
16364         (syms_of_data): DEFVAR_LISP them.
16366 2001-12-07  Richard M. Stallman  <rms@gnu.org>
16368         * callproc.c (init_callproc): Set Vdata_directory based on the source
16369         location whenever Emacs was run uninstalled.
16371 2001-12-06  Paul Eggert  <eggert@twinsun.com>
16373         * config.in (HAVE_WORKING_VFORK): New #undefs.
16374         * process.c (create_process):
16375         Use HAVE_WORKING_VFORK, not HAVE_VFORK.
16376         * m/cnvrgnt.h (HAVE_VFORK): Remove #define.
16377         * m/ibm370aix.h (HAVE_VFORK): Remove #undef.
16378         * m/ibmps2-aix.h (HAVE_VFORK): Remove #define.
16379         * m/intel386.h (HAVE_VFORK): Likewise.
16380         * m/mips-siemens.h (HAVE_VFORK): Likewise.
16381         * m/mips.h (HAVE_VFORK): Likewise.
16382         * s/freebsd.h (vfork): Remove #define.
16383         * s/lynxos.h (HAVE_VFORK): Remove #undef.
16384         * s/usg5-4-2.h: Fix comment about vfork.
16386 2001-12-06  Richard M. Stallman  <rms@gnu.org>
16388         * s/hpux10.h (random): Add undef.
16389         (HAVE_RANDOM): Define it just once.
16391 2001-12-06  Stefan Monnier  <monnier@cs.yale.edu>
16393         * eval.c: Undo last change: the standard syntax is not wanted.
16395 2001-12-06  Eli Zaretskii  <eliz@is.elta.co.il>
16397         * xterm.c (x_free_frame_resources) [USE_X_TOOLKIT]: Remove all the
16398         scroll bars of the frame before deleting the frame itself.  If the
16399         frame has a widget, delete the frame with XtDestroyWidget, and do
16400         not call XDestroyWindow before that.
16402 2001-12-06  Kim F. Storm  <storm@cua.dk>
16404         * xfns.c (x_report_frame_params): Return actual fringe widths.
16406         * w32fns.c (x_report_frame_params): Return actual fringe widths.
16408 2001-12-05  Andrew Innes  <andrewi@gnu.org>
16410         * alloc.c (Fgarbage_collect): Shrink buffer gaps that are
16411         excessively large.
16413         * insdel.c (make_gap_larger): New function.
16414         (make_gap_smaller): New function.
16415         (make_gap) [USE_MMAP_FOR_BUFFERS || REL_ALLOC]:
16416         Call make_gap_smaller if arg is negative.
16418 2001-12-04  Stefan Monnier  <monnier@cs.yale.edu>
16420         * keyboard.c (kbd_buffer_store_event): Fix interrupt_signal prototype.
16421         Pass a dummy argument when calling interrupt_signal.
16422         (parse_menu_item): Mark disabled items before checking for empty def.
16423         (read_char_minibuf_menu_prompt): Make safety more visible.
16424         (read_key_sequence): Add a `first_unbound' variable.
16425         Use it to detect C-c ESC ESC ESC ESC ... cases and drop the
16426         unbound prefix as soon as we can detect it.
16428         * doc.c (Fsnarf_documentation): Add prototype.
16429         (get_doc_string): Handle negative arguments.
16430         (Fdocumentation): Use AREF and ASIZE.
16431         Move the calls to get_doc_string to a single place.
16432         Don't confuse an interactive-spec for a docstring reference.
16433         (Fdocumentation_property): Take advantage of the fact that
16434         get_doc_string now ignores the sign of the docstring position.
16436         * eval.c: Use standard syntax for usage in docstrings.
16438 2001-12-03  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
16440         * xdisp.c (syms_of_xdisp): Make `tool-bar-button-relief' an option.
16442 2001-12-02  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
16444         * xterm.c (x_draw_image_relief): Use predefined macro instead of
16445         constant when the value of `tool_bar_button_relief' is negative.
16447 2001-12-02  Richard M. Stallman  <rms@gnu.org>
16449         * xmenu.c (menu_highlight_callback): Use `help' field as Lisp_Object.
16450         (single_submenu, xmenu_show): Set `help' field as Lisp_Object.
16452         * fileio.c (read_non_regular): Delete Fsignal call.
16454 2001-12-01  Stefan Monnier  <monnier@cs.yale.edu>
16456         * lisp.h (run_hook_list_with_args): Undo last change.
16458 2001-12-01  Gerd Moellmann  <gerd@gnu.org>
16460         * xterm.c (x_draw_fringe_bitmap): Always undo clipping.
16462 2001-12-01  Jason Rumney  <jasonr@gnu.org>
16464         * window.c (Qleft_fringe, Qright_fringe): Remove.  Now in frame.c.
16466         * w32term.h (WM_MOUSELEAVE, TME_LEAVE, TRACKMOUSEEVENT)
16467         [!WM_MOUSELEAVE]: Define.
16469         * w32menu.c (current_popup_menu, get_menu_item_info):
16470         (set_menu_item_info): New vars.
16471         (set_frame_menubar): Doc fix clarifying GC interaction with menus.
16472         (w32_menu_show): Set current_popup_menu.
16473         (add_menu_item): Allocate new strings for owner-drawn menu items
16474         and help strings.
16475         Use owner-draw for disabled menu items again.
16476         (w32_menu_display_help): Ignore owner-drawn items and popup menus.
16477         (w32_free_submenu_strings, w32_free_menu_strings): New functions.
16479         * w32fns.c (trackmouse_window, track_mouse_event_fn): New vars.
16480         (w32_wnd_proc) <WM_MOUSEMOVE>: Notice when mouse enters frame.
16481         <WM_EXITMENULOOP>: Free menu strings.
16482         <WM_MOUSELEAVE>: Stop tracking mouse.
16483         (x_create_tip_frame): Specify no minibuffer, modeline or fringes.
16485         * w32term.c (w32_read_socket) <WM_MOUSELEAVE>: Cancel help echo
16486         and mouse face.
16488 2001-12-01  Kim F. Storm  <storm@cua.dk>
16490         The following changes add left-fringe and right-fringe
16491         frame parameters to adjust fringe widths, or remove one or
16492         both fringes.
16494         * frame.h (struct frame): Remove trunc_area_pixel_width and
16495         trunc_area_cols fields.
16496         (Qleft_fringe, Qright_fringe): Declare.
16497         (FRAME_RIGHT_FRINGE_WIDTH): New macro.
16499         * frame.c (Qleft_fringe, Qright_fringe): New vars.
16500         (syms_of_frame): Initialize them.
16502         * window.c (coordinates_in_window): Handle separate left and right
16503         fringe widths.
16505         * xterm.h (struct x_output): Add left_fringe_width, right_fringe_width,
16506         and fringe_cols fields.
16507         (FRAME_FRINGE_BITMAP_WIDTH, FRAME_FRINGE_BITMAP_HEIGHT): Remove macros.
16508         (FRAME_X_FRINGE_COLS): Use fringe_cols field.
16509         (FRAME_X_FRINGE_WIDTH): Use fringes_extra field.
16510         (FRAME_X_LEFT_FRINGE_WIDTH): Use left_fringe_width field.
16511         (FRAME_X_RIGHT_FRINGE_WIDTH): Use right_fringe_width field.
16512         (x_compute_fringe_widths): Add prototype.
16514         * xterm.c (zv_height, zv_bits, zv_period): Changed zv bitmap to
16515         fill fringe evenly with small dashes.
16516         (x_draw_fringe_bitmap): Clear background if necessary.  Align and
16517         clip the new ZV bitmap to avoid jitter between rows.
16518         (x_draw_row_fringe_bitmaps): Rely on x_draw_fringe_bitmap to clear
16519         background.  Don't draw fringe bitmaps if fringe width is zero.
16520         (x_compute_fringe_widths): New function.
16521         (x_new_font, x_set_window_size_1): Use it.
16523         * xfns.c (x_frame_parms): Add `left-fringe' and `right-fringe' parms.
16524         (x_set_frame_parameters): Process `font' parameter before other
16525         parameters as fringe widths depend on it.
16526         (x_set_fringe_width): New function.
16527         (x_figure_window_size): Use x_compute_fringe_widths.
16528         (Fx_create_frame): Process `left-fringe' and `right-fringe' frame
16529         parameters.
16531         * widget.c (set_frame_size): Use x_compute_fringe_widths.
16532         (EmacsFrameSetCharSize): Ditto.
16534         * w32term.h: Merged changes from xterm.h.
16535         * w32term.c: Merged changes from xterm.c.
16536         * w32fns.c: Merged changes from xfns.c.
16538 2001-11-29  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
16540         * COPYING: Removed.
16542 2001-11-29  Dave Love  <fx@gnu.org>
16544         * coding.c (syms_of_coding) <Qchar_coding_system>: Give it an
16545         extra extra slot.
16546         (detect_coding_mask): Fix call of detect_coding_iso2022.
16548 2001-11-29  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
16550         * fileio.c (file-name-coding-system)
16551         (default-file-name-coding-system): Doc fix (links to referenced
16552         variables added).
16554 2001-11-28  Stefan Monnier  <monnier@cs.yale.edu>
16556         * lisp.h (GCPRO1, GCPRO2, GCPRO3, GCPRO4, GCPRO5):
16557         Add dummy uses of gcproN variables.
16559         * category.c (describe_category, describe_category_1)
16560         (Fdescribe_categories): Remove.  (Moved to lisp/help-fns.el.)
16561         (syms_of_category): Don't defsubr Sdescribe_categories.
16563 2001-11-28  Richard M. Stallman  <rms@gnu.org>
16565         * fileio.c (Ffind_file_name_handler): Avoid initializer for `result'.
16567         * Makefile.in (lispdir): New variable, referring to build dir.
16568         (TAGS-LISP): Find Makefile in $(lispdir), not $(lispsource).
16570 2001-11-28  Andrew Innes  <andrewi@gnu.org>
16572         * w32menu.c (w32_menu_display_help): Actually add the new argument
16573         OWNER.
16575 2001-11-28  Jason Rumney  <jasonr@gnu.org>
16577         * w32menu.c (add_menu_item): Do not use owner-draw for disabled
16578         menu items.  From David Ponce <dponce@wanadoo.fr>.
16579         (w32_dialog_show) [HAVE_DIALOGS]: Compile whole function
16580         conditionally.
16581         (w32_menu_display_help): New argument OWNER.  Rewritten to store a
16582         help event in the owner frame's keyboard buffer.
16584         * w32fns.c (w32_wnd_proc) <WM_MENUSELECT>: Display help directly.
16585         (Fx_show_tip): Don't subtract last width from row width.
16587         * w32term.c (w32_read_socket) <WM_MENUSELECT>: Remove.
16588         (w32_read_socket): Use EQ to compare frames.
16590 2001-11-28  Gerd Moellmann  <gerd@gnu.org>
16592         * xterm.c (x_draw_glyphs): Don't call notice_overwritten_cursor if
16593         OVERLAPS_P.
16595 2001-11-28  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
16597         * xdisp.c (message_dolog): Remove unused variables `gcpro2',
16598         `gcpro3' and `gcpro4'.
16600         * coding.c (decode_coding_string): Remove unused variable `gcpro1'.
16602 2001-11-28  Stefan Monnier  <monnier@cs.yale.edu>
16604         * ccl.c: Use AREF and ASIZE.
16606 2001-11-27  Stefan Monnier  <monnier@cs.yale.edu>
16608         * lisp.h (run_hook_list_with_args): Remove.
16609         (LIST_END_P): Fix call to wrong_type_argument.
16610         (make_fixnum_or_float): Use EMACS_INT rather than int.
16612 2001-11-26  Stefan Monnier  <monnier@cs.yale.edu>
16614         * syntax.c (syms_of_syntax): Remove defsubr of Sdescribe_syntax.
16615         (describe_syntax, describe_syntax_1, Fdescribe_syntax): Remove.
16617         * eval.c: Use AREF and ASIZE.
16618         (Ffetch_bytecode): Add the file name to the error message.
16620         * fileio.c (Ffind_file_name_handler): Give precedence to handlers
16621         which match the end of the file-name.
16622         (Fsubstitute_in_file_name): Don't signal an error if $ENVVAR
16623         is not a valid env var, but leave it as is instead.
16625         * keymap.c (access_keymap): Handle t bindings like nil bindings.
16626         Make nil bindings in char-tables transparent.
16627         (store_in_keymap): Turn a nil binding into a t binding for char-tables.
16629 2001-11-26  Richard M. Stallman  <rms@gnu.org>
16631         * textprop.c (set_text_properties_1): Allow START, END in either order.
16632         Do nothing if range is empty.
16634         * Makefile.in (mallocobj): Simplify logic using auxiliary vars.
16636         * Makefile.in (mostlyclean): Delete bootstrap-emacs here.
16637         (clean): Not here.
16639 2001-11-25  Stefan Monnier  <monnier@cs.yale.edu>
16641         * textprop.c (set_text_properties_1): Clearly mark that the
16642         interval should not be empty.
16644         * intervals.c (graft_intervals_into_buffer):
16645         Don't call set_text_properties_1 on an empty interval.
16647 2001-11-25  Richard M. Stallman  <rms@gnu.org>
16649         * unexelf.c (unexec): Index by n, not nn, when checking for ".sbss".
16651         * callproc.c (Fcall_process): When we make a bigger buffer for bufptr,
16652         don't lose the data in it.
16654 2001-11-25  Juanma Barranquero  <lektu@terra.es>
16656         * abbrev.c (Fexpand_abbrev): Use Frun_hooks instead of Vrun_hooks.
16658         * buffer.c (Fkill_buffer): Likewise.
16660         * print.c (temp_output_buffer_setup): Likewise.
16662 2001-11-25  Stefan Monnier  <monnier@cs.yale.edu>
16664         * xfaces.c (merge_face_heights): Coerce back to int explicitly.
16666 2001-11-25  Eli Zaretskii  <eliz@is.elta.co.il>
16668         * window.c (Fset_window_vscroll): Doc fix.  From Kalle Olavi
16669         Niemitalo <kon@iki.fi>.
16671 2001-11-25  Jason Rumney  <jasonr@gnu.org>
16673         * w32term.h (FRAME_X_FRINGE_COLS): No fringe on tip frames.
16675         * w32fns.c (x_create_tip_frame): Set frame's fringes_extra to 0.
16676         (Fx_show_tip): Block input during frame creation.
16677         (Fx_show_tip, Fx_hide_tip): Enable.
16679 2001-11-24  Richard M. Stallman  <rms@gnu.org>
16681         * lread.c (Fload): Detect recursive load error for more than 3
16682         nestings of the same file.
16683         (Vrecursive_load_depth_limit): Variable deleted.
16684         (syms_of_lread) <recursive-load-depth-limit>: Variable deleted.
16686 2001-11-24  Jason Rumney  <jasonr@gnu.org>
16688         * xfns.c (compute_tip_xy): Initialize root_x and root_y from
16689         mouse position if either left or top is not specified.
16691         * w32fns.c (w32_wnd_proc) <WM_MENUSELECT>: Revert last change.
16692         <WM_WINDOWPOSCHANGING>: Let tip frames resize without restriction.
16693         (my_create_tip_window, Fx_show_tip): Adjust size for external border.
16694         (my_create_tip_window): Assign tip_window.
16695         (x_create_tip_frame): Use same defaults as X.
16696         (compute_tip_xy): Remove unused variable.  Use full screen width.
16697         (Fx_show_tip): Do not double height.  Call ShowWindow directly.
16699         * w32term.c (x_after_update_window_line): Doc fix.
16700         (w32_read_socket): Doc fix.  Avoid SET_FRAME_GARBAGED for tip
16701         frames.
16702         <WM_SHOWWINDOW>: Redo mouse highlight when hiding tip frame.
16704         * xdisp.c (prepare_menu_bars) [HAVE_WINDOW_SYSTEM]: Use tip_frame
16705         for all Windowed systems.
16707 2001-11-23  Eli Zaretskii  <eliz@is.elta.co.il>
16709         * msdos.c (IT_clear_screen): If the frame's faces are not yet
16710         realized, use the initial screen colors to clear the screen.
16712 2001-11-23  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
16714         * textprop.c (Fset_text_properties): Remove unused variables
16715         `unchanged', `prev_changed', `s' and `len'.
16717         * search.c (Freplace_match): Remove unused variable `inslen'.
16719         * keymap.c (access_keymap): Remove unused variables `c1' and `c2'.
16721 2001-11-22  Jason Rumney  <jasonr@gnu.org>
16723         * w32fns.c (x_window_to_frame): Remove irrelevant TODO comment.
16724         (w32_wnd_proc) <WM_MENUSELECT>: Show help echo directly.
16725         (my_create_tip_window): New function.
16726         (x_create_tip_frame, compute_tip_xy): Adapt for Windows.
16727         (Fx_show_tip, Fx_hide_tip) [TEST_TOOLTIPS]: Adapt for Windows.
16729 2001-11-20  Jason Rumney  <jasonr@gnu.org>
16731         * coding.h (Vw32_system_coding_system) [WINDOWSNT]: Remove.
16732         (ENCODE_SYSTEM, DECODE_SYSTEM) [WINDOWSNT]: Use Vlocale_coding_system.
16734         * w32fns.c (Vw32_system_coding_system): Remove.
16735         (w32_to_x_font, x_to_w32_font): Use Vlocale_coding_system.
16737 2001-11-19  Stefan Monnier  <monnier@cs.yale.edu>
16739         * fileio.c (Fwrite_region): Move choose_write_coding_system to
16740         after build_annotations.
16742         * syntax.c (describe_syntax): Add dummy arg.
16743         (describe_syntax_1): Update call to describe_vector.
16745         * category.c (describe_category): Add dummy arg.
16746         (describe_category_1): Update call to describe_vector.
16748         * keymap.c (Fdescribe_vector): Add `describer' parameter.
16749         (describe_command, describe_translation): Add dummy second param.
16750         (describe_map): Call elt_describer with two arguments.
16751         (describe_vector_princ): Add `fun' parameter.
16752         Call it instead of the hardcoded `princ'.
16753         (describe_vector): Add arg `args'.
16754         Pass it as a new second argument to elt_describer.
16756         * keymap.h (describe_vector): Update prototype.
16758         * frame.c: Don't include keymap.h any more.
16759         (keys_of_frame): Remove.
16761         * lisp.h (keys_of_frame): Remove declaration.
16763         * emacs.c (main): Don't call `keys_of_frame' any more.
16765 2001-11-14  Andreas Schwab  <schwab@suse.de>
16767         * unexelf.c [!defined MAP_ANON]: Define MAP_ANON to MAP_ANONYMOUS
16768         if defined, 0 otherwise.
16769         (MAP_FAILED): Define if not defined and use it to test mmap failure.
16770         (unexec) [!MAP_ANON]: Use /dev/zero as file to map.
16772 2001-11-19  Richard M. Stallman  <rms@gnu.org>
16774         * indent.c (current_column_1): Fix handling of scan_bytes for mb chars.
16776 2001-11-18  Jason Rumney  <jasonr@gnu.org>
16778         * w32term.c (note_mouse_highlight): Fix type of variable `ignore'.
16779         (x_draw_bar_cursor): If the background color of the glyph under
16780         the cursor equals the frame's cursor color, use the glyph's
16781         foreground color for drawing the bar cursor.
16782         (x_after_update_window_line): Clear internal border in different
16783         circumstances.
16784         (w32_set_vertical_scroll_bar): Check for width and height > 0.
16785         (w32_draw_relief_rect): Correct relief by 1 pixel.
16786         (x_set_glyph_string_background_width):
16787         Set extends_to_end_of_line_p if the row's fill_line_p is set and
16788         drawing the last glyph with DRAW_IMAGE_{RAISED,SUNKEN}.
16789         (x_display_and_set_cursor): If cursor_in_echo_area, use NO_CURSOR
16790         if cursor_in_non_selected_windows is false.
16791         (show_mouse_face): Clean up.  Recognize overwritten cursor differently.
16792         (x_draw_glyphs): Remove parameters REAL_START and REAL_END.
16793         Notice if cursor gets overwritten.
16794         (notice_overwritten_cursor): Renamed from
16795         note_overwritten_text_cursor.  Rewritten to take glyph widths
16796         into account, and to take X positions as parameters.
16797         (x_draw_phys_cursor_glyph): Save state of w->phys_cursor_on_p
16798         around call to x_draw_glyphs.
16799         (x_setup_relief_colors): Use `IMAGE_BACKGROUND' and
16800         `IMAGE_BACKGROUND_TRANSPARENT' to calculate the correct background
16801         color to use for image glyph reliefs.
16802         (x_draw_image_relief): Accept zero tool_bar_button_relief.
16803         (glyph_rect): Remove unused variable `area'.
16805         * w32fns.c (x_set_frame_parameters): Avoid infinite recursion for
16806         some items.
16807         (x_set_internal_border_width): Set frame garbaged when window
16808         doesn't exist yet.
16809         (Fx_create_frame): Accept zero tool_bar_button_relief.
16810         (x_clear_image_1, four_corners_best, image_background)
16811         (image_background_transparent): New functions.
16812         (xpm_format, png_format, jpeg_format, tiff_format, gif_format)
16813         (gs_format): Add `:background' entry.
16814         (lookup_image): Set IMG's background color if specified.
16815         (pbm_load, xbm_load_image, png_load): Set IMG's background field
16816         when appropriate.
16817         (x_clear_image_1): Reset `background_valid' and
16818         `background_transparent_valid' fields.
16819         (x_build_heuristic_mask): Use IMAGE_BACKGROUND instead of
16820         calculating it here.  Set IMG's background_transparent field.
16821         (enum xpm_keyword_index): Add XPM_BACKGROUND.
16822         (enum png_keyword_index): Add PNG_BACKGROUND.
16823         (enum jpeg_keyword_index): Add JPEG_BACKGROUND.
16824         (enum tiff_keyword_index): Add TIFF_BACKGROUND.
16825         (enum gif_keyword_index): Add GIF_BACKGROUND.
16826         (enum gs_keyword_index): Add GS_BACKGROUND.
16827         (pbm_load, png_load, jpeg_load, tiff_load, gif_load):
16828         Pre-calculate image background color where necessary.
16829         (x_create_x_image_and_pixmap, xbm_load, gs_load):
16830         Use display info's n_cbits entry for screen depth.
16831         (Fx_show_tip): Remove unused variables `buffer', `top',
16832         `left', `max_width' and `max_height'.
16834         * w32menu.c (w32_menu_show, push_menu_pane): Doc fixes.
16836 2001-11-18  Gerd Moellmann  <gerd@gnu.org>
16838         * puresize.h (BASE_PURESIZE): Increase to 750000.
16840 2001-11-18  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
16842         * frame.c (Fframe_live_p): Doc fix.
16844 2001-11-18  Richard M. Stallman  <rms@gnu.org>
16846         * xdisp.c (message_dolog_marker1, message_dolog_marker2)
16847         (message_dolog_marker3): New static variables hold three markers.
16848         (syms_of_xdisp): Initialize and staticpro them.
16849         (message_dolog): Use message_dolog_marker1..3 instead of
16850         allocating markers each time.  Unchain them when done.
16852 2001-11-17  Richard M. Stallman  <rms@gnu.org>
16854         * doc.c (Fsnarf_documentation): Doc fix.
16856 2001-11-17  Andreas Schwab  <schwab@suse.de>
16858         * xterm.c (note_mouse_highlight): Fix type of variable `ignore'.
16860 2001-11-17  Richard M. Stallman  <rms@gnu.org>
16862         * fileio.c (Fwrite_region): Avoid initializer for Lisp_Object.
16864 2001-11-17  Jason Rumney  <jasonr@gnu.org>
16866         * xterm.c (notice_overwritten_cursor): Take care of end < 0 case.
16868 2001-11-17  Gerd Moellmann  <gerd@gnu.org>
16870         * xdisp.c (tool_bar_item_info): Avoid calling Fget_text_property
16871         with invalid position.
16873 2001-11-16  Richard M. Stallman  <rms@gnu.org>
16875         * syswait.h: Delete conditionals for HPUX7, ISC 4.1, and convex.
16877         * s/isc4-1.h (HAVE_SYS_WAIT_H): Add #undef.
16878         * s/hpux.h (HAVE_SYS_WAIT_H): Add #undef.
16879         * s/hpux8.h (HAVE_SYS_WAIT_H): Define it.
16881         * m/convex.h (HAVE_SYS_WAIT_H): Add #undef.
16883 2001-11-16  Stefan Monnier  <monnier@cs.yale.edu>
16885         * fileio.c (build_annotations): Split off the tail.
16886         (build_annotations_2): New fun.  Extracted from build_annotations.
16887         (Fwrite_region): Split the call to build_annotations into two
16888         calls to build_annotations and build_annotations_2.
16890 2001-11-16  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
16892         * sysdep.c (wait_for_kbd_input) [VMS]: Do not call
16893         clear_waiting_for_input with argument.
16895         * xterm.h (x_update_cursor): Remove duplicated prototype.
16897         * keyboard.h (clear_waiting_for_input): Remove duplicated prototype.
16899         * xterm.c (waiting_for_input): Remove unnecessary declaration.
16901         * data.c (Ftimes, Fquo, Frem, Fmod): Doc fix.
16903 2001-11-16  Stefan Monnier  <monnier@cs.yale.edu>
16905         * fileio.c (choose_write_coding_system): New fun, extracted
16906         from Fwrite_region.
16907         (Fwrite_region): Use it.
16909         * eval.c (max_specpdl_size, max_lisp_eval_depth): Use EMACS_INT.
16910         (funcall_lambda, run_hook_with_args): Make static and add prototype.
16911         (ml_apply, find_handler_clause): Add prototype.
16913 2001-11-16  Eli Zaretskii  <eliz@gnu.org>
16915         * config.in: Add #undef HAVE_COFF_H.
16917         * unexec.c (coff.h): Don't include unless HAVE_COFF_H is defined.
16918         Required for ISC 4.1.
16920 2001-11-16  Eli Zaretskii  <eliz@is.elta.co.il>
16922         * syswait.h: (HAVE_SYS_WAIT_H): Undef for ISC 4.1.  Reported by
16923         Andrew Wiseman <a.wiseman@btclick.com>.
16925 2001-11-16  Kim F. Storm  <storm@cua.dk>
16927         The following changes are made to clean up the various internal
16928         references to the fringes to actually use the term `fringe' for
16929         them.  Previously, they were called `flags areas', `bitmap areas',
16930         `left/right side of windows', or implicitly as `flags' or
16931         `bitmaps':
16933         * dispextern.h (FRINGE_FACE_ID): Renamed from BITMAP_AREA_FACE_ID.
16934         Comments fixed.  Use renamed symbols.
16936         * dispnew.c: Comment fix.  Use renamed symbols.
16938         * frame.h (FRAME_FRINGE_COLS): Renamed from FRAME_FLAGS_AREA_COLS.
16939         (FRAME_FRINGE_WIDTH): Renamed from FRAME_FLAGS_AREA_WIDTH.
16940         (FRAME_LEFT_FRINGE_WIDTH): Renamed from FRAME_LEFT_FLAGS_AREA_WIDTH.
16942         * msdos.c: Comment fix.
16944         * w32fns.c: Use renamed symbols.
16946         * w32term.c: Comment fixes.  Use renamed symbols.
16947         (fringe_bitmap_type): Renamed from bitmap_type.
16948         (NO_FRINGE_BITMAP): Renamed from NO_BITMAP.
16949         (w32_draw_fringe_bitmap): Renamed from w32_draw_bitmap.
16950         (x_draw_row_fringe_bitmaps): Renamed from x_draw_row_bitmaps.
16952         * w32term.h: Comment fixes.  Use renamed symbols.
16953         (fringes_extra): Renamed from flags_areas_extra.
16954         (FRAME_FRINGE_BITMAP_WIDTH): Renamed from FRAME_FLAGS_BITMAP_WIDTH.
16955         (FRAME_FRINGE_BITMAP_HEIGHT): Renamed from FRAME_FLAGS_BITMAP_HEIGHT.
16956         (FRAME_X_FRINGE_COLS): Renamed from FRAME_X_FLAGS_AREA_COLS.
16957         (FRAME_X_FRINGE_WIDTH): Renamed from FRAME_X_FLAGS_AREA_WIDTH.
16958         (FRAME_X_LEFT_FRINGE_WIDTH):
16959         Renamed from FRAME_X_LEFT_FLAGS_AREA_WIDTH.
16960         (FRAME_X_RIGHT_FRINGE_WIDTH):
16961         Renamed from FRAME_X_RIGHT_FLAGS_AREA_WIDTH.
16963         * widget.c: Use renamed symbols.
16965         * window.c: Comment fixes.  Use renamed symbols.
16966         (coordinates-in-window-p): Doc fix.
16968         * xdisp.c: Comment fixes.  Use renamed symbols.
16970         * xfaces.c (realize_basic_faces): Use FRINGE_FACE_ID.
16972         * xfns.c: Use renamed symbols.
16974         * xterm.c: Comment fixes.  Use renamed symbols.
16975         (fringe_bitmap_type): Renamed from bitmap_type.
16976         (NO_FRINGE_BITMAP): Renamed from NO_BITMAP.
16977         (x_draw_fringe_bitmap): Renamed from x_draw_bitmap.
16978         (x_draw_row_fringe_bitmaps): Renamed from x_draw_row_bitmaps.
16980         * xterm.h: Comment fixes.  Use renamed symbols.
16981         (fringes_extra): Renamed from flags_areas_extra.
16982         (FRAME_FRINGE_BITMAP_WIDTH): Renamed from FRAME_FLAGS_BITMAP_WIDTH.
16983         (FRAME_FRINGE_BITMAP_HEIGHT): Renamed from FRAME_FLAGS_BITMAP_HEIGHT.
16984         (FRAME_X_FRINGE_COLS): Renamed from FRAME_X_FLAGS_AREA_COLS.
16985         (FRAME_X_FRINGE_WIDTH): Renamed from FRAME_X_FLAGS_AREA_WIDTH.
16986         (FRAME_X_LEFT_FRINGE_WIDTH):
16987         Renamed from FRAME_X_LEFT_FLAGS_AREA_WIDTH.
16988         (FRAME_X_RIGHT_FRINGE_WIDTH):
16989         Renamed from FRAME_X_RIGHT_FLAGS_AREA_WIDTH.
16991 2001-11-15  Jason Rumney  <jasonr@gnu.org>
16993         * w32menu.c (add-menu-item): Make help_echo and radio buttons
16994         work for most menu items.  From David Ponce
16995         <david.ponce@wanadoo.fr>.
16997 2001-11-15  Gerd Moellmann  <gerd@gnu.org>
16999         * xfns.c (x_set_frame_parameters): Revert change of 2001-11-07.
17000         Some x_set_* function expect to be called even if old and new
17001         value are equal.
17003         * xdisp.c (build_desired_tool_bar_string): Accept zero
17004         tool_bar_button_relief.
17006         * xfns.c (Fx_create_frame): Accept zero tool_bar_button_relief.
17008         * xterm.c (x_draw_image_relief): Accept zero tool_bar_button_relief.
17010         * xterm.c (x_draw_bar_cursor): If the background color of the
17011         glyph under the cursor equals the frame's cursor color, use
17012         the glyph's foreground color for drawing the bar cursor.
17014         * dispnew.c (direct_output_forward_char): Fix character/byte
17015         position comparison.
17017 2001-11-15  Miles Bader  <miles@gnu.org>
17019         * editfns.c (find_field): Add BEG_LIMIT and END_LIMIT parameters.
17020         (Fdelete_field, Ffield_string, Ffield_string_no_properties):
17021         Update arguments to find_field.
17022         (Ffield_beginning, Ffield_end): Add LIMIT param, pass to find_field.
17023         (Fconstrain_to_field): Use LIMIT arg to shorten search time.
17024         * lisp.h (Ffield_beginning, Ffield_end): Update EXFUN decl.
17025         * minibuf.c (Fminibuffer_prompt_end): Update args to Ffield_end.
17027 2001-11-14  Richard M. Stallman  <rms@gnu.org>
17029         * editfns.c (Fpropertize): Allow call with 1 arg.
17031         * dispextern.h (image_background, image_background_transparent):
17032         Conditionalize on HAVE_X_WINDOWS.
17034 2001-11-13  Richard M. Stallman  <rms@gnu.org>
17036         * print.c (Fprin1_to_string): Doc fix.
17038         * sunfns.c (Fsun_change_cursor_icon): Doc fix.
17040         * floatfns.c (Fceiling, Ffloor): Doc fixes.
17042         * filelock.c (Funlock_buffer, Ffile_locked_p): Doc fixes.
17044         * fileio.c (Ffile_accessible_directory_p): Doc fix.
17046         * eval.c (syms_of_eval): Doc fix.
17048         * coding.c (syms_of_coding): Doc fix.
17050         * doc.c (Fsnarf_documentation): Doc fix.
17052         * dispnew.c (syms_of_display): Doc fix.
17054         * category.c (Fget_unused_category): Doc fix.
17056         * buffer.c (syms_of_buffer): Doc fixes.
17058 2001-11-14  Eli Zaretskii  <eliz@is.elta.co.il>
17060         * print.c (prin1, print): Doc fix.
17062 2001-11-14  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
17064         * fontset.h: Remove declarations of variables
17065         `Vhighlight_wrong_size_font' and `Vclip_large_size_font'.
17067         * fontset.c: Remove variables `Vhighlight_wrong_size_font' and
17068         `Vclip_large_size_font'.
17070 2001-11-13  Jason Rumney  <jasonr@gnu.org>
17072         * w32fns.c: Doc fix.
17074 2001-11-13  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
17076         * xfaces.c (Fface_attributes_as_vector): Doc fix.
17078         * fns.c: Doc fix.
17080         * emacs.c: Doc fix.
17082         * coding.c: Doc fix.
17084         * cmds.c, composite.c, dired.c, doc.c, filelock.c, floatfns.c,
17085         * fontset.c, insdel.c, keymap.c: Change doc-string comments to
17086         `new style' [w/`doc:' keyword].
17088 2001-11-12  Richard M. Stallman  <rms@gnu.org>
17090         * xterm.c (XTread_socket): Don't update focus for EnterNotify or
17091         LeaveNotify events.  Only FocusIn and FocusOut do that now.
17092         (x_display_and_set_cursor): Do display hollow cursors in active
17093         minibuffer windows when they are not selected.
17095 2001-11-12  Jason Rumney  <jasonr@gnu.org>
17097         * w32console.c, w32fns.c, w32menu.c, w32proc.c, w32select.c,
17098         * w32term.c: Change doc-string comments to `new style'
17099         [w/`doc:' keyword].  Doc fixes.
17101         * w32fns.c: Don't define max.
17102         (Fx_open_connection): Only execute once.
17104 2001-11-12  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
17106         * ccl.c: Change macros to use do-while block instead of if-else.
17107         Use braces to follow GNU Coding Standards.
17109 2001-11-11  Richard M. Stallman  <rms@gnu.org>
17111         * sysdep.c (child_setup_tty): Don't clear ICRNL or INLCR.
17113         * lread.c (read_escape): Use end_of_file_error for reporting eof.
17115         * insdel.c (replace_range): Use adjust_markers_for_replace
17116         instead of adjust_markers_for_delete and adjust_markers_for_insert.
17118         * intervals.h (set_text_properties, set_text_properties_1): Declare.
17120         * textprop.c (set_text_properties_1): New subroutine
17121         broken out of set_text_properties.
17122         (set_text_properties): Use set_text_properties_1.
17124         * intervals.c (graft_intervals_into_buffer):
17125         Use set_text_properties_1 to clear out properties.
17127         * search.c (Freplace_match): Use replace_range to insert
17128         and delete.  Don't request property inheritance from
17129         surrounding text.
17131 2001-11-10  Jason Rumney  <jasonr@gnu.org>
17133         * w32fns.c (enum_font_cb2): Use leading @ on face name to detect
17134         vertical fonts.  Allow them if face name is explicitly specified.
17135         Do not give up if we find a font that cannot be converted to an xlfd.
17137 2001-11-10  Gerd Moellmann  <gerd@gnu.org>
17139         * unexelf.c (unexec): Use mmap/munmap to allocate buffers
17140         instead of malloc/free.
17142 2001-11-09  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
17144         * xfaces.c (merge_face_vectors): Use braces to follow GNU
17145         Coding Standards.
17146         (Finternal_set_lisp_face_attribute): Likewise.
17148         * buffer.c (Fbury_buffer): Likewise.
17150         * indent.c (current_column_1): Remove unused variable `prev_col'.
17152         * coding.c (encode_coding): Use precomputed value of `src'.
17153         (encode_coding): Remove unused variable `src_end'.
17154         (code_convert_region): Remove unused variables `count'.
17156 2001-11-07  Jason Rumney  <jasonr@gnu.org>
17158         * w32term.c (x_display_and_set_cursor): Do not move system caret
17159         if cursor_glyph is NULL.
17161 2001-11-07  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
17163         * keymap.c (access_keymap): Fix compilation error.
17165 2001-11-07  Miles Bader  <miles@gnu.org>
17167         * xfns.c (x_set_frame_parameters): Avoid infinite recursion.
17169 2001-11-07  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
17171         * intervals.c (graft_intervals_into_buffer):
17172         Remove #ifdef'd-out code.
17173         (graft_intervals_into_buffer): Remove unused variable `middle'.
17175         * lread.c (Feval_region): Remove obsolete #ifdef'd-out
17176         code (eval-current-buffer).
17177         Change doc-string comments to `new style' [w/`doc:' keyword].
17179 2001-11-06  Richard M. Stallman  <rms@gnu.org>
17181         * keymap.c (access_keymap): Don't use initializers on Lisp_Object.
17183 2001-11-06  Stefan Monnier  <monnier@cs.yale.edu>
17185         * lread.c (read1): Fix behavior with nested backquoting.
17187         * keyboard.c (make_lispy_event): Check integerness and fix
17188         Lisp_Object/int mixup.
17190 2001-11-06  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
17192         * fns.c (copy_hash_table): Remove unused variable `v'.
17194         * fontset.c (fontset_font_pattern): Remove unused variable
17195         `family_registry'.
17197         * indent.c (current_column_1): Remove unused variable `prev_col'.
17199 2001-11-05  Richard M. Stallman  <rms@gnu.org>
17201         * m/news-risc.h (BROKEN_PROTOTYPES): Defined.
17203         * buffer.c (Fkill_buffer): Don't delete auto save file
17204         if buffer is modified.
17206 2001-11-05  Andrew Innes  <andrewi@gnu.org>
17208         * w32proc.c (Fw32_set_keyboard_layout): Use CHECK_NUMBER_CAR and
17209         CHECK_NUMBER_CDR.
17211 2001-11-05  Richard M. Stallman  <rms@gnu.org>
17213         * unexelf.c (unexec): Minor changes; clean up comments.
17215 2001-11-05  Sam Steingold  <sds@gnu.org>
17217         * w32term.c (x_display_and_set_cursor): Fix w32 compilation error.
17219 2001-11-05  Andreas Schwab  <schwab@suse.de>
17221         * sound.c (sound_perror): Save errno from being clobbered.
17223 2001-11-05  Dale Hagglund  <rdh@yottayotta.com>
17225         * unexelf.c (unexec): Don't use `mmap'.  Instead, read and write
17226         the program image directly.
17228 2001-11-05  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
17230         * buffer.h (Fbuffer_local_value): Add prototype.
17232 2001-11-04  Richard M. Stallman  <rms@gnu.org>
17234         * buffer.c (Fbuffer_local_value): Remove extra args from CHECK_SYMBOL
17235         and CHECK_BUFFER.
17237         * keyboard.c (read_char): Use Fcar and Fcdr, not Fnth.
17238         (record_char): Likewise.
17240         * keyboard.c (make_lispy_event): Don't insist a drag event must
17241         move to a different buffer position.  Instead, check for moving at
17242         least double_click_fuzz.
17244         * fns.c (Fmake_hash_table): Use XCAR and XCDR, not Fnth and Flength.
17246         * keyboard.c (echo-area-clear-hook): Undo Oct 29 change.
17248         * indent.c (current_column_1, Fmove_to_column): Separate the code
17249         for display-table glyphs from the code for buffer text, to fix
17250         bugs in the former.
17252 2001-11-04  Michael Welsh Duggan  <md5i@cs.cmu.edu>
17254         * buffer.c (Fbuffer_local_value): New function.
17255         (syms_of_buffer): Defsubr it.
17257         * xterm.c, w32term.c (x_display_and_set_cursor): Use buffer-local
17258         value of `cursor-in-non-selected-windows'.
17260         * lisp.h (Qcursor_in_non_selected_windows): New declaration.
17261         * xdisp.c (Qcursor_in_non_selected_windows): New variable.
17262         (syms_of_xdisp): Initialize it.
17264 2001-11-04  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
17266         * xfns.c (Fx_create_frame): Doc fix.
17268         * coding.c: Change doc-string comments to `new style' [w/`doc:'
17269         keyword].
17271         * eval.c (top_level_value, top_level_set): Remove commented and
17272         #ifdef'd-out code.
17273         (Fdefvar): Fix usage in doc-string.
17275 2001-11-03  Richard M. Stallman  <rms@gnu.org>
17277         * xfns.c: Include unistd.h, if it exists.
17279         * editfns.c: Move the include of ctype.h after unistd.h.
17281         * gmalloc.c: Test BROKEN_PROTOTYPES.
17283 2001-11-03  Ken Raeburn  <raeburn@gnu.org>
17285         * lisp.h (CHECK_STRING_CAR): New macro.
17286         * lread.c (Fload): Use XSETCARFASTINT, XSETCDRFASTINT instead of
17287         treating XCAR and XCDR as lvalues.
17288         (openp): Use CHECK_STRING_CAR.
17289         (read_list): Use XSETCDR instead of treating XCDR as lvalue.
17291 2001-11-03  Eli Zaretskii  <eliz@is.elta.co.il>
17293         * s/sco5.h (sigprocmask_set): Declare as extern SIGMASKTYPE.
17294         (SIGMASKTYPE): Define.
17296         * syssignal.h (sigunblock): Don't define if already defined.
17298 2001-11-02  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
17300         * eval.c (debugger_may_continue, Vdebug_ignored_errors)
17301         (call_debugger, Fcondition_case, skip_debugger, unbind_to):
17302         Fix typos in comments.
17304         * mocklisp.c (Fml_defun, Fml_while, Fml_substr): Remove commented
17305         and #ifdef'd-out code.
17306         Fix and reindent comments.
17308         * mocklisp.h: Remove comment which is a copy of comment in mocklisp.c.
17310         * category.h (CHECK_CATEGORY, CHECK_CATEGORY_SET): Remove unused
17311         argument `i' in macros.
17313         * frame.h (CHECK_FRAME, CHECK_LIVE_FRAME): Remove unused argument
17314         `i' in macros.
17316         * lisp.h (CHECK_STRING_OR_BUFFER, CHECK_HASH_TABLE, CHECK_LIST)
17317         (CHECK_STRING, CHECK_CONS, CHECK_SYMBOL, CHECK_CHAR_TABLE)
17318         (CHECK_VECTOR, CHECK_VECTOR_OR_CHAR_TABLE, CHECK_BUFFER)
17319         (CHECK_WINDOW, CHECK_LIVE_WINDOW, CHECK_PROCESS, CHECK_NUMBER)
17320         (CHECK_NATNUM, CHECK_MARKER, CHECK_NUMBER_COERCE_MARKER)
17321         (CHECK_FLOAT, CHECK_NUMBER_OR_FLOAT)
17322         (CHECK_NUMBER_OR_FLOAT_COERCE_MARKER, CHECK_OVERLAY)
17323         (CHECK_NUMBER_CAR, CHECK_NUMBER_CDR): Remove unused argument `i'
17324         in macros.
17326         * abbrev.c, alloc.c, buffer.c, bytecode.c, callint.c, callproc.c,
17327         * casefiddle.c, category.c, ccl.c, charset.c, cmds.c, coding.c,
17328         * composite.c, data.c, dired.c, dispnew.c, doc.c, dosfns.c, emacs.c,
17329         * eval.c, fileio.c, filelock.c, fns.c, fontset.c, frame.c, frame.h,
17330         * indent.c, keyboard.c, keymap.c, lread.c, macros.c, marker.c,
17331         * minibuf.c, mocklisp.c, msdos.c, print.c, process.c, search.c,
17332         * sunfns.c, syntax.c, textprop.c, undo.c, w16select.c, w32console.c,
17333         * w32fns.c, w32menu.c, w32proc.c, w32select.c, window.c, xdisp.c,
17334         * xfaces.c, xmenu.c, xselect.c: Update usage of CHECK_ macros
17335         (remove unused second argument).
17337 2001-11-02  Stefan Monnier  <monnier@cs.yale.edu>
17339         * syntax.c (describe_syntax): New wrapper.
17340         (Finternal_describe_syntax_value): Rename from describe_syntax.
17341         Don't insert space at front and \n at the end.
17342         (syms_of_syntax): Defsubr Sinternal_describe_syntax_value.
17344         * regex.c (re_wctype): Try to fix some warnings.
17345         (regcomp, regexec): Don't forget the __restrict.
17347 2001-11-02  Richard M. Stallman  <rms@gnu.org>
17349         * textprop.c (Fget_char_property): Doc fix.
17351 2001-11-02  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
17353         * process.c (Fstart_process): Add usage to doc-string.
17355         * data.c (Fsetq_default): Ditto.
17357         * callint.c (Finteractive): Ditto.
17359 2001-11-01  Stefan Monnier  <monnier@cs.yale.edu>
17361         * macros.c: Don't include keymap.h any more.
17363 2001-11-01  Richard M. Stallman  <rms@gnu.org>
17365         * data.c (Fmake_local_variable): Doc fix.
17367         * eval.c (Frun_hooks, Frun_hook_with_args_until_failure): Doc fix.
17368         (Frun_hook_with_args_until_success, Frun_hook_with_args): Doc fix.
17370         * keymap.c (Fdescribe_buffer_bindings): Print character property
17371         bindings along with or instead of the buffer local map.
17372         Make the overriding maps override what they should.
17374 2001-11-01  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
17376         * window.c (grow_mini_window): Fix typo in comment.
17378 2001-11-01  Gerd Moellmann  <gerd@gnu.org>
17380         * xterm.c (x_scroll_bar_create): Check for width and height > 0.
17381         (XTset_vertical_scroll_bar): Likewise.
17383         * xfns.c (x_build_heuristic_mask): Use four_corners_best
17384         instead of IMAGE_BACKGROUND.
17386         * xfns.c (four_corners_best): Reindent.
17388         * xfaces.c (Finternal_set_lisp_face_attribute_from_resource):
17389         Handle :box so that it is possible to specify sexprs.
17391 2001-10-31  Eli Zaretskii  <eliz@is.elta.co.il>
17393         * s/hpux11.h: New file.
17395 2001-10-31  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
17397         * emacs.c (USAGE1): Show command line option --no-window-system
17398         instead of --no-windows in usage.
17399         (standard_args): Rename --no-windows to --no-window-system.
17400         (bug_reporting_address): Follow Emacs coding conventions.
17402         * eval.c (Fcommandp): Doc fix.
17403         Change doc-string comments to `new style' [w/`doc:' keyword].
17405         * frame.c (Fframe_live_p): Doc fix.
17407         * buffer.c (selective-display-ellipses): Doc fix.
17409 2001-10-31  Gerd Moellmann  <gerd@gnu.org>
17411         * lread.c (to_multibyte): Fix computation of new read_buffer_size.
17413         * xfaces.c (realize_x_face): If C is not a single-byte character,
17414         set the face's colors_copied_bitwise_p instead of the defaulted_p
17415         members which have a different meaning.
17416         (free_face_colors): Do nothing for a face whose colors have been
17417         copied bitwise.
17419         * dispextern.h (struct face) <colors_copied_bitwise_p>: New member.
17421 2001-10-31  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
17423         * marker.c, mocklisp.c: Change doc-string comments to `new style'
17424         [w/`doc:' keyword].
17426 2001-10-31  Gerd Moellmann  <gerd@gnu.org>
17428         * fns.c (require_unwind): Return Lisp_Object.
17430 2001-10-31  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
17432         * keyboard.c (lucid-menu-bar-dirty-flag): Doc fix.
17433         (last-input-char): Revert doc-string to be the same as the
17434         doc-string of `last-input-event'.
17436         * xdisp.c: Fix typos in comments.
17438 2001-10-31  Gerd Moellmann  <gerd@gnu.org>
17440         * window.c (grow_mini_window): Handle case that the root
17441         window is already smaller than the nominal mininum height.
17443 2001-10-30  Stefan Monnier  <monnier@cs.yale.edu>
17445         * emacs.c (main): Don't call keys_of_macros any more.
17447         * lisp.h (keys_of_macros): Remove.
17449         * macros.c (keys_of_macros): Remove.
17451         * xfaces.c (Fface_attribute_relative_p): Declare args.
17453 2001-10-30  Jason Rumney  <jasonr@gnu.org>
17455         * w32fns.c (w32_to_x_charset): Increase size of XLFD charset buffer.
17456         (enum_font_cb2): Ignore fonts with vertical orientation.
17458 2001-10-30  Richard M. Stallman  <rms@gnu.org>
17460         * keyboard.c (Finput_pending_p): Doc fix.
17462 2001-10-30  Gerd Moellmann  <gerd@gnu.org>
17464         * xterm.c (x_after_update_window_line): Don't run the code
17465         clearing in borders for rows whose visible height is 0.
17467         * xdisp.c (clear_garbaged_frames): Redraw the frame only if its
17468         resized_p flag is set.  If not set, use the much less flickering
17469         method previously used.
17471         * dispnew.c (change_frame_size_1): Set frame's resized_p.
17473         * frame.h (struct frame) <resized_p>: New member.
17475         * lread.c (to_multibyte): Ensure read_buffer is at least twice
17476         as large as the number of bytes to convert.
17478         * lread.c (to_multibyte): New function.
17479         (read1): Use it.
17481 2001-10-30  Eli Zaretskii  <eliz@is.elta.co.il>
17483         * msdos.h (FRAME_LINE_HEIGHT): Define (it's used by xmenu.c).
17485 2001-10-30  Gerd Moellmann  <gerd@gnu.org>
17487         * xterm.c (x_draw_relief_rect): Correct bottom relief by 1 pixel.
17488         (x_set_glyph_string_background_width): Set extends_to_end_of_line_p
17489         if the row's fill_line_p is set and drawing the last glyph with
17490         DRAW_IMAGE_{RAISED,SUNKEN}.
17492         * xdisp.c (clear_garbaged_frames): Call Fredraw_frame.
17494 2001-10-29  Stefan Monnier  <monnier@cs.yale.edu>
17496         * xmenu.c: Include coding.h and charset.h.
17497         (Fx_popup_menu): Use FRAME_PTR and FRAME_FONT and FRAME_LINE_HEIGHT.
17498         (Fx_popup_dialog): Use FRAME_PTR and enum scroll_bar_part.
17499         (single_submenu, xmenu_show): Use ENCODE_SYSTEM.
17500         Explicitly set wv->help.  Use `TRUE' rather than `True'.
17501         (menu_help_callback): Use empty_string.
17503         * w32menu.c (Fx_popup_menu): Explicitly init f, xpos, and ypos.
17504         (Fx_popup_dialog): Explicitly init f.
17505         (w32_menu_display_help): Use empty_string.
17507 2001-10-29  Richard M. Stallman  <rms@gnu.org>
17509         * fns.c (Frequire): Detect recursive try to require the same
17510         feature 3 or more levels deep, and get error.
17511         (require_unwind): New subroutine.
17512         (require_nesting_list): New variable.
17513         (syms_of_fns): Init and staticpro it.
17515         * print.c (print_object): Clarify indication of insertion type.
17517 2001-10-29  Eli Zaretskii  <eliz@is.elta.co.il>
17519         * coding.c (syms_of_coding): Document that locale-coding-system is
17520         used for decoding input on X.
17522         * window.c (Fscroll_left, Fscroll_right): Doc fix.
17524 2001-10-29  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
17526         * keyboard.c (Finput_pending_p): Fix typo in doc-string.
17527         (echo-area-clear-hook): Properly DEFVAR_LISP and staticpro it.
17529 2001-10-29  Gerd Moellmann  <gerd@gnu.org>
17531         * xterm.c (x_display_and_set_cursor): If cursor_in_echo_area,
17532         use NO_CURSOR if cursor_in_non_selected_windows is false.
17534         * xfaces.c (Fface_font): Use UNSPECIFIEDP instead of NILP for
17535         the slant attribute if FRAME is t.
17537         * xfns.c (x_set_internal_border_width): Set frame garbaged
17538         when X window doesn't exist yet.
17540         * xterm.c (x_after_update_window_line): Clear internal border
17541         in different circumstances.
17543         * xterm.c (XTread_socket) <KeyPress>: Don't use
17544         STRING_CHAR_AND_LENGTH if nchars == nbytes.  From Kenichi Handa
17545         <handa@etl.go.jp>.
17547 2001-10-28  Eli Zaretskii  <eliz@is.elta.co.il>
17549         * m/ibms390.h: New file.  From Adam Thornton
17550         <athornton@sinenomine.net>.
17552 2001-10-28  Gerd Moellmann  <gerd@gnu.org>
17554         * xfns.c (x_build_heuristic_mask): Use x_alloc_image_color.
17556         * xfns.c (x_build_heuristic_mask): Fix a bug not incrementing
17557         a loop counter.
17559 2001-10-28  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
17561         * emacs.c: Use argv[0] instead of "emacs" when -t was specified.
17563         * keyboard.c: Change doc-string comments to `new style' [w/`doc:'
17564         keyword].
17565         Fix typos in comments.
17567         * emacs.c (bug_reporting_address): New function.
17568         Use it when displaying usage message.
17570         * minibuf.c (read_minibuf): Remove unused external declaration of
17571         variable `Qread_only'.
17573         * keymap.c (access_keymap): Remove unused variable `charset'.
17575 2001-10-28  Miles Bader  <miles@gnu.org>
17577         * xfaces.c (merge_face_heights): Handle TO being relative as well.
17578         Remove #ifdef'd-out code.
17579         (Fface_attribute_relative_p, Fmerge_face_attribute): New functions.
17580         (syms_of_xfaces): Initialize them.
17582 2001-10-27  Jason Rumney  <jasonr@gnu.org>
17584         * w32fns.c (w32_wnd_proc) <WM_KILLFOCUS>: Destroy the system caret.
17585         <WM_EMACS_DESTROY_CARET, WM_EMACS_TRACK_CARET>: Track cursor
17586         position using the system caret.
17588         * w32term.c (w32_system_caret_hwnd, w32_system_caret_width)
17589         (w32_system_caret_height, w32_system_caret_x)
17590         (w32_system_caret_y): New variables for tracking system caret.
17591         (w32_initialize): Initialize them.
17592         (x_display_and_set_cursor): Make system caret follow the active cursor.
17594         * w32term.h (WM_EMACS_TRACK_CARET, WM_EMACS_DESTROY_CARET):
17595         New messages types.
17597         * w32term.c (note_mouse_highlight): Clear old help_echo.
17599 2001-10-27  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
17601         * xterm.c: Fix typo in a comment.
17603         * emacs.c: Fix typos in comments.
17604         Remove unnecessary spaces.
17605         Change doc-string comments to `new style' [w/`doc:' keyword].
17606         (USAGE2): Fix typos in usage string.
17608         * xterm.c: Fix typo in a comment.
17610         * lisp.h: (gdb_lisp_params): Remove code in #if 0 which is now in
17611         emacs.c.
17613 2001-10-27  Gerd Moellmann  <gerd@gnu.org>
17615         * xdisp.c (move_it_vertically_backward): Use 2/3 line_height
17616         instead of 1/2 line_height in the heuristic for skipping
17617         farther backward when target_y was not reached.
17619         * sound.c (sound_perror): Unblock SIGIO, turn on atimers.
17620         Display errno only if non-zero.
17621         (sound_warning): New function.
17622         (vox_configure): Don't treat failing to set sample rate as error.
17623         (various places): Improve error messages.
17625 2001-10-26  Eli Zaretskii  <eliz@is.elta.co.il>
17627         * fileio.c (Faccess_file): Run the argument filename through
17628         Fexpand_file_name, before using it.
17630         * dispnew.c (syms_of_display) <visible-bell>: Add a reference to
17631         ring-bell-function.  Suggested by Alf-Ivar Holm <alfh@ifi.uio.no>
17633 2001-10-26  Gerd Moellmann  <gerd@gnu.org>
17635         * insdel.c (insert_1_both): Do nothing if NCHARS == 0.
17637         * xterm.c (XTset_vertical_scroll_bar) [!USE_TOOLKIT_SCROLL_BARS]:
17638         Fix clearing in the case of scroll bars on the right.
17640 2001-10-26  Juanma Barranquero  <lektu@terra.es>
17642         * w32gui.h (XImage): Add a dummy typedef.
17644 2001-10-26  Gerd Moellmann  <gerd@gnu.org>
17646         * xfns.c (XScreenNumberOfScreen): Fix struct to pointer comparison.
17648 2001-10-25  Eli Zaretskii  <eliz@is.elta.co.il>
17650         * frame.c (Fframe_parameter): Fix last change.
17652         * fileio.c: Revert last change (which removed old commented-out
17653         version of expand-file-name).  Add a comment that explains why
17654         this old version should not be removed.
17656 2001-10-25  Gerd Moellmann  <gerd@gnu.org>
17658         * frame.c (Fframe_parameter): Fix a bug whereby some
17659         ``artificial'' frame parameters, like `minibuffer' were not
17660         obtained by calling Fframe_parameters.
17662         * xterm.c (show_mouse_face): Clean up.  Recognize overwritten
17663         cursor differently.
17665         * xdisp.c (move_it_vertically_backward): Compute line height
17666         differently.  Add heuristic to try to be more compatible to 20.x.
17668 2001-10-25  Stefan Monnier  <monnier@cs.yale.edu>
17670         * lisp.h (make_fixnum_or_float): Coerce double to int explicitly.
17672         * editfns.c (text_property_stickiness): Fix Lisp_Object used as
17673         boolean.
17675 2001-10-25  Miles Bader  <miles@gnu.org>
17677         * xfns.c (png_load): Make sure SPECIFIED_BG is a string.
17678         BG is a pointer to a structure, not a structure.
17679         (gif_format, png_format): Add missing commas.
17681 2001-10-24  Richard M. Stallman  <rms@gnu.org>
17683         * xfaces.c (Fface_attributes_as_vector): New function.
17684         (syms_of_xfaces): Defsubr it.
17686 2001-10-24  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
17688         * dispnew.c (sync_window_with_frame_matrix_rows): Remove unused
17689         variable `area'.
17691 2001-10-25  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
17693         * search.c (scan_newline): Remove unused variable `selective_display'.
17695 2001-10-25  Miles Bader  <miles@gnu.org>
17697         * dispextern.h (struct image): Add `background',
17698         `background_valid', and `background_transparent' fields.
17699         (image_background, image_background_transparent): New declarations.
17700         (IMAGE_BACKGROUND, IMAGE_BACKGROUND_TRANSPARENT): New macros.
17701         * xfns.c (image_background, image_background_transparent)
17702         (four_corners_best): New functions.
17703         (xpm_format, png_format, jpeg_format, tiff_format, gif_format)
17704         (gs_format): Add `:background' entry.
17705         (lookup_image): Set IMG's background color if specified.
17706         (pbm_load, xbm_load_image, png_load): Set IMG's background field
17707         when appropriate.
17708         (x_clear_image_1): Reset `background_valid' and
17709         `background_transparent_valid' fields.
17710         (x_build_heuristic_mask): Use IMAGE_BACKGROUND instead of
17711         calculating it here.  Set IMG's background_transparent field.
17712         (enum xpm_keyword_index): Add XPM_BACKGROUND.
17713         (enum png_keyword_index): Add PNG_BACKGROUND.
17714         (enum jpeg_keyword_index): Add JPEG_BACKGROUND.
17715         (enum tiff_keyword_index): Add TIFF_BACKGROUND.
17716         (enum gif_keyword_index): Add GIF_BACKGROUND.
17717         (enum gs_keyword_index): Add GS_BACKGROUND.
17718         (pbm_load, png_load, jpeg_load, tiff_load, gif_load):
17719         Pre-calculate image background color where necessary.
17720         * xterm.c (x_setup_relief_colors): Use `IMAGE_BACKGROUND' and
17721         `IMAGE_BACKGROUND_TRANSPARENT' to calculate the correct background
17722         color to use for image glyph reliefs.
17724 2001-10-24  Gerd Moellmann  <gerd@gnu.org>
17726         * xterm.c (x_draw_glyphs): Don't check for cursor overwriting
17727         in full-width rows.
17729         * xterm.c (XTset_vertical_scroll_bar) [!USE_TOOLKIT_SCROLL_BARS]:
17730         Fix clearing of area not covered by scroll bar.
17732 2001-10-24  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
17734         * xterm.c: (x_insert_glyphs): Remove unused variables `real_end'
17735         and `real_start'.
17736         (x_draw_image_foreground): Remove unused variables `mask' and `xgcv'.
17737         (glyph_rect): Remove unused variable `area'.
17739 2001-10-24  Gerd Moellmann  <gerd@gnu.org>
17741         * xdisp.c: Change #ifdef GLYPH_DEBUG to #if.
17743         * xdisp.c (try_window_reusing_current_matrix): Use row_containing_pos.
17744         (row_containing_pos): Take additional argument DY.
17745         Treat rows ending in middle of char differently.
17746         (display_line): Handle tabs on window systems differently.
17748         * xterm.c, w32term.c (fast_find_position): Call row_containing_pos
17749         with additional argument.
17751         * dispextern.h (row_containing_pos): Adjust prototype.
17753         * xdisp.c (inhibit_try_window_id, inhibit_try_window_reusing)
17754         (inhibit_try_cursor_movement) [GLYPH_DEBUG]: New variables.
17755         (try_window_id, try_window_reusing_current_matrix)
17756         (try_cursor_movement) [GLYPH_DEBUG]: Don't run if inhibited.
17757         (syms_of_xdisp) [GLYPH_DEBUG]: DEFVAR_BOOL the variables.
17759 2001-10-24  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
17761         * xmenu.c: Spell the name of Emacs properly (GNU Emacs instead of
17762         gnuemacs).
17763         (HAVE_BOXES): Fix typo in comment.
17764         (push_menu_pane): Fix typo in comment.
17766         * xdisp.c: (display_prop_string_p): Remove unused local declaration
17767         of `Qwhen'.
17768         (single_display_prop_string_p): Remove unused local declarations
17769         of `Qwhen' and `Qmargin'.
17770         (string_buffer_position): Remove unused variable `around'.
17771         (store_frame_title): Remove unused variable `width'.
17773         * window.c: Don't define max.
17774         (coordinates_in_window): Remove unused variable `uy'.
17776         * widget.c: Don't define max.
17778         * process.c: Don't define max.
17779         (create_process): Remove unused variable `buffer'.
17781 2001-10-23  Gerd Moellmann  <gerd@gnu.org>
17783         * xfaces.c (Finternal_set_lisp_face_attribute): Fix compilation error.
17785 2001-10-23  Eli Zaretskii  <eliz@is.elta.co.il>
17787         * xfaces.c (Finternal_set_lisp_face_attribute)
17788         [HAVE_WINDOW_SYSTEM]: Don't do anything for QCfont unless the
17789         frame is on a windowed display.
17791 2001-10-23  Gerd Moellmann  <gerd@gnu.org>
17793         * dispnew.c (sync_window_with_frame_matrix_rows):
17794         Fix handling of windows which aren't full-width, fix handling
17795         of marginal areas.
17797         * lread.c (syms_of_lread) <recursive-load-depth-limit>: Raise to 50.
17799 2001-10-23  Andreas Schwab  <schwab@suse.de>
17801         * m/macppc.h [LINUX]: Undef LD_SWITCH_SYSTEM_TEMACS and override
17802         LD_SWITCH_MACHINE_TEMACS with "-Xlinker -znocombreloc".
17804 2001-10-23  Gerd Moellmann  <gerd@gnu.org>
17806         * xterm.c (x_draw_glyphs): Remove parameters READ_START and
17807         REAL_END.  Notice if cursor gets overwritten.
17808         (notice_overwritten_cursor): Take X positions as parameters.
17809         (x_draw_phys_cursor_glyph): Save state of w->phys_cursor_on_p
17810         around call to x_draw_glyphs.
17812 2001-10-23  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
17814         * syntax.c (modify-syntax-entry): Fix argument names (use CHAR
17815         instead of C) and usage.
17817         * editfns.c (char-to-string): Fix argument names (use CHAR instead
17818         of C) and usage.
17820         * xfns.c (Fx_show_tip): Remove unused variables `buffer', `top',
17821         `left', `max_width' and `max_height'.
17823 2001-10-23  Gerd Moellmann  <gerd@gnu.org>
17825         * xdisp.c (display_line): For a tab continued to the next line,
17826         set row's ends_in_middle_of_char_p.
17828 2001-10-22  Gerd Moellmann  <gerd@gnu.org>
17830         * xdisp.c (display_line): Fix computation of continuation lines
17831         width for TABs.
17833 2001-10-22  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
17835         * xdisp.c (build_desired_tool_bar_string): Remove unused variable
17836         `Qlaplace'.
17838         * fileio.c: Remove unused code.
17840 2001-10-22  Miles Bader  <miles@gnu.org>
17842         * lisp.h (DEFVAR_LISP, DEFVAR_LISP_NOPRO, DEFVAR_BOOL)
17843         (DEFVAR_INT, DEFVAR_PER_BUFFER, DEFVAR_KBOARD):
17844         Remove `DOC_STRINGS_IN_COMMENTS' cases.
17846 2001-10-21  Jason Rumney  <jasonr@gnu.org>
17848         * w32term.c (x_erase_phys_cursor): Remove inverse_p again.
17850 2001-10-21  Eli Zaretskii  <eliz@is.elta.co.il>
17852         * mocklisp.c (Fml_if, Fml_provide_prefix_argument)
17853         (Finsert_string): Avoid the multi-line string literals warning.
17855 2001-10-22  Miles Bader  <miles@gnu.org>
17857         * doc.c (Vhelp_manyarg_func_alist): Variable removed.
17858         (Fdocumentation): Don't use it.
17859         (syms_of_doc): Don't initialize it.
17861         * keyboard.c (Ftrack_mouse): Add usage: string to doc string.
17862         * print.c (Fwith_output_to_temp_buffer): Likewise.
17863         * window.c (Fsave_window_excursion): Likewise.
17864         * editfns.c (Fsave_excursion, Fsave_current_buffer)
17865         (Fsave_restriction): Likewise.
17866         * eval.c (Frun_hooks, Frun_hook_with_args)
17867         (Frun_hook_with_args_until_failure)
17868         (Frun_hook_with_args_until_success, Ffuncall, For, Fand, Fif)
17869         (Fcond, Fprogn, Fprog1, Fprog2, Fsetq, Fquote, Ffunction, Fdefun)
17870         (Fdefmacro, Fdefvar, Fdefconst, FletX, Flet, Fwhile, Fcatch)
17871         (Funwind_protect, Fcondition_case): Likewise.
17872         * coding.c (Ffind_operation_coding_system): Likewise.
17873         * keyboard.c (Ftrack_mouse): Likewise.
17875 2001-10-21  Miles Bader  <miles@gnu.org>
17877         * fns.c (Fappend, Fconcat, Fvconcat, Fnconc, Fwidget_apply)
17878         (Fmake_hash_table): Add usage: string to doc string.
17879         * editfns.c (Finsert, Finsert_and_inherit, Finsert_before_markers)
17880         (Fmessage, Fmessage_box, Fmessage_or_box, Fpropertize, Fformat)
17881         (Fencode_time, Finsert_and_inherit_before_markers): Likewise.
17882         * mocklisp.c (Finsert_string, Fml_if, Fml_provide_prefix_argument)
17883         (Fml_prefix_argument_loop): Likewise.
17885 2001-10-21  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
17887         * fileio.c (Finsert_file_contents): Remove unused variable `gap_size'.
17889         * sysdep.c (init_sys_modes): Change doc-string comments to `new
17890         style' [w/`doc:' keyword].
17892         * data.c, fileio.c, indent.c, print.c, search.c, sound.c,
17893         * sunfns.c, textprop.c, undo.c, xselect.c: Change doc-string
17894         comments to `new style' [w/`doc:' keyword].
17896 2001-10-21  Jason Rumney  <jasonr@gnu.org>
17898         * w32fns.c (Fx_file_dialog): Pass a filter to GetOpenFileName.
17900         * w32term.c (remember_mouse_glyph): New function.
17901         (w32_mouse_position): Use it.
17902         (note_mouse_movement): If the mouse moved off the glyph, remember
17903         its new position.
17905         * w32term.h (struct w32_output): Correct spelling of x_compatible.
17906         (w32_display_info): Add mouse_face_overlay.
17908         * w32term.c (notice_overwritten_cursor): Renamed from
17909         note_overwritten_text_cursor.  Rewritten to take glyph widths into
17910         account.
17911         (x_y_to_hpos_vpos): Add parameter BUFFER_ONLY_P.
17912         (fast_find_string_pos): New function.
17913         (fast_find_position): Return the correct vpos.  Add parameter
17914         STOP.  In the final row, stop before glyphs having STOP as object.
17915         Don't consider glyphs that are not from a buffer.
17916         (fast_find_position) [0]: Add a presumably more correct version
17917         for after 21.1.
17918         (expose_window_tree, expose_frame): Don't compute intersections here.
17919         (expose_window): Do it here instead.
17920         (expose_window_tree, expose_window, expose_line): Return 1 when
17921         overwriting mouse-face.
17922         (expose_window): If W is the window currently being updated, mark
17923         the frame garbaged.
17924         (expose_frame): If mouse-face was overwritten, redo it.
17925         (x_use_underline_position_properties): New variable.
17926         (syms_of_xterm): DEFVAR_BOOL it.
17927         (x_draw_glyph_string): Add comment to use it in future.
17928         (x_draw_glyph_string): Restore clipping after drawing box.
17929         Fix a computation of the underline position.
17930         (w32_get_glyph_string_clip_rect): Minor cleanup.
17931         (x_fill_stretch_glyph_string): Remove an assertion.
17932         (x_produce_glyphs): Don't convert multibyte characters
17933         to unibyte characters in unibyte buffers.
17934         (cursor_in_mouse_face_p): New function.
17935         (x_draw_stretch_glyph_string): Use it to choose a different GC
17936         when drawing a cursor within highlighted text.  Don't draw
17937         background again if it has already been drawn.
17938         (x_draw_glyph_string_box): Don't draw a full-width
17939         box just because the glyph row's full_width_p flag is set.
17940         (x_draw_glyphs): Fix computation of rightmost x for
17941         full-width rows.
17942         (x_dump_glyph_string): Put in #if GLYPH_DEBUG.
17943         (w32_draw_relief_rect): Extend left shadow to the bottom and left;
17944         change bottom shadow accordingly.  Some cleanup.
17945         (x_update_window_end): Handle overwritten mouse face
17946         also for tool bar windows.
17947         (show_mouse_face): Set the glyph row's mouse_face_p flag also when
17948         DRAW is DRAW_IMAGE_RAISED.
17949         (clear_mouse_face): Return 1 if text with mouse face was
17950         actually redrawn.  Make the function static.
17951         Reset dpyinfo->mouse_face_overlay otherwise note_mouse_highlight might
17952         optimize away highlighting if we pass over that same overlay again.
17953         (note_mouse_highlight): Call mouse_face_overlay_overlaps
17954         to detect a case where we have to highlight a different region
17955         despite not having left the currently highlighted region.
17956         Set mouse_face_overlay in the x_display_info.  Avoid changing the
17957         mouse pointer shape when show_mouse_face has already done it, or
17958         there is no need.  Handle mouse-face and help-echo in strings.
17959         (glyph_rect): New function.
17960         (w32_mouse_position): Use it to raise the threshold for mouse
17961         movement event generation.
17962         (w32_initialize_display_info): Initialize the x_display_info's
17963         mouse_face_overlay.
17964         (w32_set_vertical_scroll_bar): Don't clear a zero height
17965         or width area.
17966         (w32_set_vertical_scroll_bar, x_scroll_bar_create): Don't configure
17967         a widget to zero height.
17969         * w32menu.c (single_submenu, w32_menu_show) [!HAVE_MULTILINGUAL_MENU]:
17970         Protect unibyte strings created by replacing their multibyte
17971         equivalents in menu_items.
17972         (w32_menu_show): Don't overwrite an item's name with its key
17973         description in case the description is a multibyte string.
17974         (single_submenu): Some cleanup.
17976         * w32fns.c (x_laplace_read_row, x_laplace_write_row): Removed.
17977         (postprocess_image): New function.
17978         (lookup_image): Call it for all image types except PostScript.
17979         (x_kill_gs_process): Call postprocess_image.
17980         (tiff_error_handler, tiff_warning_handler): New functions.
17981         (tiff_load): Install them as handlers.
17982         (x_kill_gs_process): Recognize if someone has cleared the image
17983         cache under us.
17984         (valid_image_p): Protect better against invalid image
17985         specifications.  Previous code could signal an error.
17986         (Fx_hide_tip, Fshow_tip): Doc fix.
17987         (Fv_max_tooltip_size): New variable.
17988         (syns_of_xfns): DEFVAR_LISP it.
17989         (Fx_show_tip): Add parameter TEXT.  Set the tip frame's root
17990         window buffer to *tip* right after creating the frame.  Set frame's
17991         window_width.  Use a maximum tooltip size specified by
17992         Vx_max_tooltip_size, if that has valid contents.
17993         (compute_tip_xy): Add parameters WIDTH and HEIGHT.
17994         Make sure the tooltip is completely visible.
17995         (x_create_tip_frame): Set tooltip buffer's truncate-lines to nil.
17996         (Fx_create_frame): Adjust the frame's height for presence
17997         of the tool bar before calling x_figure_window_size.
17998         (x_set_tool_bar_lines): Clear the tool bar window's current matrix
17999         when the window gets smaller.
18000         (x_set_foreground_color): Set frame's cursor_pixel.
18001         (x_set_foreground_color, x_set_background_color): Cleaned up.
18002         (x_set_font): Handle case of x_new_fontset returning the same name
18003         as before, although there was a change in fontsets.
18005 2001-10-21  Miles Bader  <miles@gnu.org>
18007         * data.c (Fplus, Fminus, Fmax, Ftimes, Fquo, Flogand, Flogior)
18008         (Flogxor): Add usage: string to doc string.
18009         * charset.c (Fstring): Likewise.
18010         * callproc.c (Fcall_process_region, Fcall_process): Likewise.
18011         * alloc.c (Fmake_byte_code, Fvector, Flist): Likewise.
18013 2001-10-21  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
18015         * buffer.c: Reindent DEFUNs and DEFVARs with doc: keywords.
18017         * alloc.c: Reindent DEFUNs with doc: keywords.
18019         * abbrev.c (Finsert_abbrev_table_description): Reindent.
18021         * frame.c: Change doc-string comments to `new style' [w/`doc:'
18022         keyword].
18024 See ChangeLog.9 for earlier changes.
18026 ;; Local Variables:
18027 ;; coding: iso-2022-7bit
18028 ;; End:
18030     Copyright (C) 2001, 2002 Free Software Foundation, Inc.
18031   Copying and distribution of this file, with or without modification,
18032   are permitted provided the copyright notice and this notice are preserved.
18034 ;;; arch-tag: 5dcc435f-4038-4141-b3bf-5be51cd76bd4