*** empty log message ***
[emacs.git] / src / ChangeLog
blobbefcbfacef50851ca6712639ef704c387dc73f4e
1 2000-12-18  Kenichi Handa  <handa@etl.go.jp>
3         * dired.c (directory_files_internal): Always return decoded filenames.
5 2000-12-18  Gerd Moellmann  <gerd@gnu.org>
7         * xterm.c (x_connection_closed): Prevent being called recursively
8         because of an error condition in XtCloseDisplay.
9         
10         * xdisp.c (init_iterator): If noninteractive, and the frame's
11         face cache is null, make one.
13         * xfns.c (show_busy_cursor): Check for live frames more
14         thoroughly.
16         * process.c (wait_reading_process_input): Check for pending
17         input when running timers.
19 2000-12-18  Eli Zaretskii  <eliz@is.elta.co.il>
21         * msdos.c (IT_write_glyphs): Compute the glyph face from
22         str->face_id.
24 2000-12-18  Kenichi Handa  <handa@etl.go.jp>
26         * process.c (read_process_output): Don't run a filter if the code
27         decoder produces nothing but carryover.
29 2000-12-17  Andrew Innes  <andrewi@gnu.org>
31         * w32.c (sys_rename): Only check errno against EEXIST, and not
32         EACCES, when determining whether rename failed because the target
33         exists.  This was resulting in indefinite looping on Windows 9x if
34         the source file was locked by another process.
36         * w32fns.c (Ffile_system_info): New function.
37         (syms_of_w32fns): Defsubr it.
39 2000-12-17  Gerd Moellmann  <gerd@gnu.org>
41         * window.c (coordinates_in_window): Fix computation for
42         position on vertical line between mode lines.
44         * xfns.c (unwind_create_frame): Return t if frame was deleted.
45         Don't alter tip_frame or tip_window.
46         (unwind_create_tip_frame): Set tip_frame to nil only if frame
47         was deleted.
49         * w32fns.c (unwind_create_frame): Return t if frame was deleted.
50         Don't alter tip_frame or tip_window.
51         (unwind_create_tip_frame): Set tip_frame to nil only if frame
52         was deleted.
54 2000-12-16  Eli Zaretskii  <eliz@is.elta.co.il>
56         * fileio.c (Fcopy_file): Rename the last argument to keep_time, to
57         be consistent with the doc string.  Reported by NAKAJIMA Mikio
58         <minakaji@osaka.email.ne.jp>.
60 2000-12-16  Kenichi Handa  <handa@etl.go.jp>
62         * xfaces.c (Vface_ignored_fonts): New variable.
63         (x_face_list_fonts): Ignore fonts matching Vface_ignored_fonts.
64         (syms_of_xfaces): Declare Vface_ignored_fonts as a Lisp variable.
66 2000-12-15  Gerd Moellmann  <gerd@gnu.org>
68         * dispnew.c (update_window): Detect pending input every nth line
69         updated, i.e. do it depending on real work done, and not on the
70         vpos of the line.
72         * xterm.c (expose_window): Don't redraw the window that's
73         currently being updated.
75         * window.c (Fset_window_point): Remove test for
76         cursor_in_non_selected_windows.
78         * lread.c (read1): Recognize end of file after `\\'.
80         * xfns.c (x_create_tip_frame): Use unwind_create_tip_frame,
81         not unwind_create_frame.
83 2000-12-15  Dave Love  <fx@gnu.org>
85         * s/usg5-4.h (bcopy) [IRIX6]: Don't special-case definition of
86         bcopy & al.
88         * s/irix6-5.h: #undef bcopy & al here.  Include strings.h.
90 2000-12-15  Kenichi Handa  <handa@etl.go.jp>
92         * coding.c (setup_coding_system): Clear all members of the struct
93         coding_system at first.
94         (detect_coding): Call detect_coding_mask with a correct MULTIBYTEP
95         argument.
96         (code_convert_region): Don't override coding->src_multibyte and
97         coding->dst_multibyte.
99         * fns.c (Fmd5): Docstring improved.
101 2000-12-15  Miles Bader  <miles@gnu.org>
103         * xdisp.c (window_box_height): Only use mode-line glyph-rows that
104         are actually marked as mode-lines; otherwise use
105         estimate_mode_line_height.
107 2000-12-14  Gerd Moellmann  <gerd@gnu.org>
109         * editfns.c (Fformat): Prevent a buffer overrun when the format
110         specifies a precision.
112 2000-12-14  Eli Zaretskii  <eliz@is.elta.co.il>
114         * msdos.c (Fmsdos_set_mouse_buttons): Signal an error if the
115         argument is outside the range [2..3].
117 2000-12-14  Andrew Innes  <andrewi@gnu.org>
119         * w32fns.c (Fx_hide_tip): Avoid unnecessary work when there's
120         nothing to do.  Bind inhibit-quit.
121         (tip_frame): Make it a Lisp_Object.
122         (x_create_tip_frame): Set tip_frame after it has been added to
123         Vframe_list.
124         (Fx_show_tip): Don't set tip_frame here.
125         (image_cache_refcount, dpyinfo_refcount) [GLYPH_DEBUG]: New
126         variables.
127         (unwind_create_frame, unwind_create_tip_frame): New functions.
128         (Fx_create_frame, x_create_tip_frame): Handle errors signaled
129         while a frame is only partially constructed.
131         * w32term.c (clear_mouse_face): Treat tip_frame as a Lisp_Object.
132         (x_free_frame_resources): New function.
133         (x_destroy_window): Use it.
135 2000-12-14  Gerd Moellmann  <gerd@gnu.org>
137         * xfns.c (Fx_backspace_delete_keys_p): New function.
138         (syms_of_xfns): Defsubr it.
140         * config.in (HAVE_XKBGETKEYBOARD): Add.
142 2000-12-14  Kenichi Handa  <handa@etl.go.jp>
144         * keyboard.c (echo_prompt): Argument type changed to Lisp_Object.
145         Always store string in multibyte representation in echobuf.
146         (echo_char): Always store string in multibyte representation in
147         echobuf.
148         (echo_now): Call message2_nolog with the arg MULTIBYTE 1.
149         (read_key_sequence): Adjusted for the change of echo_prompt.
151         * fns.c (Fmd5): Docstring improved.
153         * lisp.h (detect_coding_system): Prototype adjusted.
155         * coding.c (ONE_MORE_BYTE_CHECK_MULTIBYTE): New macro.
156         (detect_coding_emacs_mule, detect_coding_iso2022,)
157         (detect_coding_sjis, detect_coding_big5, detect_coding_utf_8)
158         (detect_coding_utf_16, detect_coding_ccl): Make them static.  New
159         argument MULTIBYTEP.  Callers changed.
160         (detect_coding_mask, detect_coding_system): New argument
161         MULTIBYTEP.  Callers changed.
162         (decode_coding_string): Set coding->src_multibyte and
163         coding->dst_multibyte before calling detect_coding and detect_eol.
164         Update them after some coding system is detected.
165         
166 2000-12-13  Stefan Monnier  <monnier@cs.yale.edu>
168         * keymap.c (get_keyelt): Only eval the filter if `autoload' is set.
170         * keyboard.c (menu_bar_items, tool_bar_items):
171         Set `autoload' when looking up `tool-bar' or `menu-bar' submap.
173 2000-12-13  Gerd Moellmann  <gerd@gnu.org>
175         * xfns.c (image_cache_refcount, dpyinfo_refcount) [GLYPH_DEBUG]: 
176         New variables.
177         (unwind_create_frame, unwind_create_tip_frame): New functions.
178         (Fx_create_frame, x_create_tip_frame): Handle errors signaled
179         while a frame is only partially constructed.
181         * xterm.h (x_free_frame_resources): Declare.
183         * xterm.c (x_free_frame_resources): New function.
184         (x_destroy_window): Use it.
186         * dispnew.c (update_window): If do_mouse_tracking is non-nil,
187         don't interrupt the update for pending input initially, i.e.
188         update at least some lines.
190         * keyboard.c (do_mouse_tracking): Make externally visible.
191         
192         * xterm.c (x_term_init): Declare gray_bitmap_bits as `extern char *'.
194         * xfns.c (gray_bitmap_bits): Declare `char *'.
196 2000-12-12  Gerd Moellmann  <gerd@gnu.org>
198         * xdisp.c (display_tool_bar_line): Make sure that tool bar
199         lines start with a relief line.
201 2000-12-12  Dave Love  <fx@gnu.org>
203         * window.c (Fdisplay_buffer): Doc fix.
204         (Fwindow_list): Remove unused var.
206         * buffer.h (mmap_set_vars): Declare.
208         * window.h (Fset_window_point): Declare.
210 2000-12-12  Eli Zaretskii  <eliz@is.elta.co.il>
212         * msdos.c (fast_find_position): Don't overstep the last window row.
213         (IT_note_mouse_highlight): Initialize portion to -1.  Remove
214         unused variable `area'.  When looking for a row under (X,Y), give
215         up if some of the previous rows is not enabled.
217 2000-12-12  Gerd Moellmann  <gerd@gnu.org>
219         * window.c (Fset_window_point): If displaying cursors in windows
220         other than the selected window, make sure redisplay updates
221         other windows to show the new value of point in the window.
223         * dispextern.h (cursor_in_non_selected_windows): Declare extern.
225         * buffer.c (Fkill_buffer): Don't Fset_buffer when testing if
226         the buffer is the sole visible buffer when in the mini-buffer.
228         * xdisp.c (setup_echo_area_for_printing, with_echo_area_buffer): 
229         Bind `inhibit-read-only' to t.
230         (unwind_with_echo_area_buffer): Use AREF.
232         * xfns.c (Fx_hide_tip): Simplified.
234         * s/freebsd.h, s/netbsd.h (GC_MARK_STACK): Use
235         GC_MAKE_GCPROS_NOOPS instead of `1'.
237         * s/gnu-linux.h (GC_MARK_STACK): Define as GC_MAKE_GCPROS_NOOPS.
239 2000-12-11  Gerd Moellmann  <gerd@gnu.org>
241         * xfns.c (Fx_hide_tip): Fix last change.
242         
243         * xfns.c (Fx_hide_tip): Avoid unnecessary work when there's
244         nothing to do.  Bind inhibit-quit.
245         (tip_frame): Make it a Lisp_Object.
246         (x_create_tip_frame): Set tip_frame after it has been added to
247         Vframe_list.
248         (Fx_show_tip): Don't set tip_frame here.
250         * xterm.c (clear_mouse_face): Treat tip_frame as a Lisp_Object.
252         * xdisp.c (prepare_menu_bars): Changes for tip_frame being a
253         Lisp_Object.
255         * dispextern.h: Change external declaration of tip_frame.
257         * keymap.c (Fkey_description): If KEYS is an empty key sequence,
258         return an empty string.
260         * xdisp.c (try_cursor_movement): Check update_mode_lines instead
261         of the window's update_mode_line flag, since the former is set by
262         force-mode-line-update, not the latter.  This makes
263         column-number-mode slightly faster.
264         
265         * xdisp.c (try_window_id) <all changes above window start>:
266         Set the cursor.
268 2000-12-11  Paul Eggert  <eggert@twinsun.com>
270         * config.in (HAVE_FTELLO): Remove.
271         (HAVE_FSEEKO): Add.
272         (_XOPEN_SOURCE): Remove; the large-file code no longer needs it.
273         * lread.c (file_offset, file_tell): Depend on HAVE_FSEEKO, not
274         HAVE_FTELLO.
275         * s/hpux10.h (_FILE_OFFSET_BITS): Do not undef.
276         * s/isc3-0.h, s/osf5-0.h: Update comment about _XOPEN_SOURCE.
277         
278 2000-12-11  Miles Bader  <miles@gnu.org>
280         * window.c (displayed_window_lines): Don't round up when
281         converting empty space at bottom to lines.
282         Handle non-newline-terminated final lines properly.
283         (Fwindow_text_height): New function (used to be in lisp).
284         (syms_of_window): Initialize it.
286 2000-12-09  Stefan Monnier  <monnier@cs.yale.edu>
288         * syntax.c (scan_lists): Check that the right quote char has the
289         right Sstring syntax when jumping over strings.
290         (init_syntax_once): Use Smax rather than 13.
292 2000-12-09  Miles Bader  <miles@gnu.org>
294         * window.c (Fpos_visible_in_window_p): Replace FULLY parameter
295         with PARTIALLY, inverting the sense.
296         (window_scroll_pixel_based): Scroll partially visible lines into
297         place if we hit the beginning or end of the buffer.
298         (displayed_window_lines): Don't include partially visible lines.
299         (Fmove_to_window_line): Skip past any partially visible first line.
301 2000-12-08  Gerd Moellmann  <gerd@gnu.org>
303         * keymap.c (current_minor_maps): Use malloc.  Prevent a leak.
305         * tparam.c (tparam1): Change the way buffers are reallocated to be
306         portable and less obfuscated.
308         * termcap.c (tgetent): Change the way buffers are reallocated to
309         be portable and less obfuscated.
311         * macros.c (store_kbd_macro_char): Change the way buffers are
312         reallocated to be portable and less obfuscated.
314         * lread.c (read1): Change the way buffers are reallocated to be
315         portable and less obfuscated.
317         * doc.c (Fsubstitute_command_keys): Change the way buffers
318         are reallocated so that it is portable.
320 2000-12-07  Eli Zaretskii  <eliz@is.elta.co.il>
322         * dosfns.c (Ffile_system_info): New function.
323         (syms_of_dosfns): Defsubr it.
325 2000-12-07  Stefan Monnier  <monnier@cs.yale.edu>
327         * alloc.c (gc_sweep): Add comment.
329 2000-12-07  Gerd Moellmann  <gerd@gnu.org>
331         * sound.c (vox_configure): Change order of ioctls.  Don't
332         set SNDCTL_DSP_SPEED from bps, don't set SNDCTL_DSP_SAMPLESIZE.
333         Ignore errors when changing volume.
334         (vox_close): Don't reset the device.
336         * process.c (read_process_output): Make sure the process marker's
337         position is valid when the process buffer is changed in
338         after-change functions.  W3 does that.
339         
340         * xfns.c (x_free_gcs): New function.
342         * xterm.h (x_free_gcs): Add prototype.
344         * widget.c (EmacsFrameDestroy): Call x_free_gcs instead of
345         freeing GCs here.
347         * xterm.c (x_destroy_window): Call x_free_gcs so that
348         resources of non-toolkit X windows will be freed.
350 2000-12-07  Andrew Innes  <andrewi@gnu.org>
352         * w32fns.c (xlfd_charset_of_font): Fix last change.
354 2000-12-06  Dave Love  <fx@gnu.org>
356         * md5.h (__P): Don't define -- it comes from config.h.
358         * strftime.c: Change some #if foo to #ifdef foo.
360 2000-12-06  Andrew Innes  <andrewi@gnu.org>
362         * w32term.h (CP_INVALID): Rename to CP_UNKNOWN.
364         * w32fns.c (xlfd_charset_of_font): Don't overwrite fontname
365         argument.
366         (w32_codepage_for_font): Rename CP_INVALID to CP_UNKNOWN.
367         (w32_list_fonts): Don't choke if pattern doesn't specify a
368         codepage.
370 2000-12-06  Gerd Moellmann  <gerd@gnu.org>
372         * alloc.c (gc_sweep): Prevent symbols read during loadup
373         from being freed.
375         * xdisp.c (underlying_face_id): New function.
376         (handle_face_prop, face_before_or_after_it_pos): Use it
377         to determine the face ``under'' a string.  Let strings inherit
378         the face of the buffer under them.
380         * xfaces.c (face_at_string_position): Update function comment.
381         
382         * dispnew.c (adjust_glyph_matrix): Don't reuse a window's current
383         matrix if the window's left position has changed; we need to
384         redraw it in this case.
386         * dispextern.h (struct glyph_matrix): Add member window_left_x.
388         * window.c (coordinates_in_window): Check mouse on mode-line or
389         header-line first.
391         * alloc.c (Fgarbage_collect): Dox fix.  Return a list as
392         advertized by the function documentation.
394         * window.c (syms_of_window): Doc fix.
396         * sound.c (vox_configure): Set volume for left and right channel.
397         (sound_cleanup): Return nil.
399         * xdisp.c (move_it_by_lines): Fix paren typo.
401         * xterm.c (x_load_font): Don't use the font's max_bounds for
402         computing the height of the font.  If max_bounds' ascent or
403         descent are greater than the font's ascent or descent, this means
404         glyphs overlap, which should be handled now by redisplay.
406         * window.c (Veven_window_heights): New variable.
407         (syms_of_window): DEFVAR_LISP it.
408         (Fdisplay_buffer): Check Veven_window_heights before evening the
409         window heights.
410         
411 2000-12-06  Miles Bader  <miles@gnu.org>
413         * xfaces.c (Finternal_set_lisp_face_attribute): If FRAME is `t',
414         update `default-frame-alist' instead of setting no frame parameters.
416 2000-12-06  Kenichi Handa  <handa@etl.go.jp>
418         * composite.c (update_compositions): Fix typo (use the correct
419         variable).
421 2000-12-05  Jason Rumney  <jasonr@gnu.org>
423         * md5.h: Remove underscores from function declarations.
424         (__attribute__, __alignof__) [!__GNUC__]: Define.
426         * md5.c: Delay include of md5.h until after namespace cleaning.
428         * makefile.w32-in (fns.o): Depend on md5.h
429         (md5.o): New target.
430         (sunfns.o): Remove.
432         * makefile.nt: Likewise.
434 2000-12-05  Jason Rumney  <jasonr@altavista.net>
436         * w32term.c (expose_area): Complete last change.
438 2000-12-05  Ken Raeburn  <raeburn@gnu.org>
440         * minibuf.c: Include intervals.h.
442 2000-12-05  Jason Rumney  <jasonr@gnu.org>
444         * w32term.c (x_produce_glyphs): If a font for a component of
445         a composition is not found, use 1 pixel dot ascent and 0 dot
446         descent value to avoid displaying terribly tall empty boxes.
447         (expose_area): Pass x-coordinate relative to the exposed
448         area to x_draw_glyphs instead of a window-relative coordinate.
450 2000-12-05  Gerd Moellmann  <gerd@gnu.org>
452         * xdisp.c (next_element_from_ellipsis): Save face before selective
453         display in saved_face_id, and set face_before_selective_p.
454         (reseat_1): Reset face_before_selective_p.
455         (append_space, extend_face_to_end_of_line): If iterator's
456         face_before_selective_p is set, use the face from saved_face_id.
457         (extend_face_to_end_of_line): For tty frames, make sure to
458         use the right face id when producing spaces at the end of
459         the line.
461         * dispextern.h (struct it): Add face_before_selective_p.
463         * keyboard.c (record_char): Don't record identical help-echo
464         events in recent_keys.
466         * xterm.c [USE_X_TOOLKIT]: Close the display.
467         (xim_close_dpy): Handle case that the display has been closed.
469         * xterm.c (x_destroy_window): Reset the frame's X window after
470         destroying it.
472         * dispnew.c (adjust_glyph_matrix): Make sure to initialize local
473         variable window_width.
474         (line_draw_cost): Fix code skipping over spaces at the end of the
475         line when must_write_spaces is not set.
476         (scrolling_window): Fix code inserting runs in list of all runs.
478 2000-12-05  Kenichi Handa  <handa@etl.go.jp>
480         * coding.c (setup_coding_system): Be sure to initialize
481         coding->category_idx.
483 2000-12-04  Gerd Moellmann  <gerd@gnu.org>
485         * xterm.c (PER_CHAR_METRIC): Removed because not used.
486         
487         * xterm.c (expose_area): Pass x-coordinate relative to the exposed
488         area to x_draw_glyphs instead of a window-relative coordinate.
490         * fileio.c (auto_save_error): Add parameter ERROR.  Show the
491         error in the message.
493         * keyboard.c (Fread_key_sequence): Don't start the busy cursor
494         timer after having read a key.  It's not good for code reading
495         several keys in a loop, like an input method.
497         * fileio.c (Finsert_file_contents): When VISIT is t, don't
498         record undo information for format-decode.
500         * undo.c (Fprimitive_undo): Bind inhibit-read-only to t if
501         current buffer is read-only, not if it isn't.
503         * keyboard.c (record_char): Record `help-echo' input events
504         in recent_keys only if they display some help.  Don't record
505         `help-echo' events as macro char.
507 2000-12-04  Richard M. Stallman  <rms@caffeine.ai.mit.edu>
509         * editfns.c (save_excursion_restore): Don't move point
510         in another window if it is showing the wrong buffer.
511         Avoid the call to Fwindow_live_p, for speed.
513 2000-12-04  Kenichi Handa  <handa@etl.go.jp>
515         * xfaces.c (struct font_name): New member registry_priority.
516         (split_font_name): Initialize the above member to zero.
517         (concat_font_list): New function.
518         (font_list): Include fonts of all alternative registries.
519         (FONT_POINT_SIZE_QUANTUM): New macro.
520         (better_font_p): Ignore point size difference less than
521         FONT_POINT_SIZE_QUANTUM.  Use registry_prioprity as a last resort.
523         * xterm.c (x_produce_glyphs): If a font for a component of
524         a composition is not found, use 1 pixel dot ascent and 0 dot
525         descent value to avoid displaying terribly tall empty boxes.
527         * ccl.c (stack_idx_of_map_multiple): Don't use C initializier.
529 2000-12-03  Ken Raeburn  <raeburn@gnu.org>
531         * coding.h (code_convert_string1): Declare.
533         * fns.c (Fmd5): Pass lisp objects, not integers, to call3.
535         * lisp.h (Fmake_variable_buffer_local, Fbuffer_file_name):
536         Declare.
538 2000-12-02  Jason Rumney  <jasonr@gnu.org>
540         * w32term.c (w32_bdf_per_char_metric): Dereference pointer
541         correctly for single byte character case.
542         (w32_per_char_metric): Do not try to make any assumptions about
543         the metrics of BDF fonts.
544         (x_estimate_mode_line_height): If `mode-line' face
545         hasn't a font, use that of the frame, as drawing glyphs
546         does.
547         (note_mouse_highlight): Change the cursor shape on the vertical
548         border between windows [not enabled].
550         * w32term.h (struct w32_output): Add member horizontal_drag_cursor.
552         * w32fns.c (Fx_create_frame): Reintroduce the call to
553         face-set-after-frame-defaults.
554         (Vx_window_horizontal_drag_shape): New variable.
555         (syms_of_xfns): DEFVAR_LISP it.
556         (x_set_mouse_color): Create frame's horizontal_drag_cursor [not
557         enabled].
559 2000-12-02  Simon Josefsson  <simon@josefsson.org>
561         * fns.c (Fmd5): Use a different logic to decide the coding system
562         to use.
564         * coding.h (Qwrite_region, Qcoding_system_error): Declare extern.
566 2000-12-02  Eli Zaretskii  <eliz@is.elta.co.il>
568         * fileio.c (Fread_file_name) [DOS_NT]: Don't crash if homedir is
569         NULL.
571 2000-12-01  Gerd Moellmann  <gerd@gnu.org>
573         * xterm.c (x_calc_absolute_position): Don't subtract menubar's
574         height for YNegative.
575         (x_calc_absolute_position) [USE_MOTIF]: Use the column widget's
576         height; also see comment there.
578         * window.c (coordinates_in_window): Handle computations for
579         positions on the vertical bar and fringes differently for
580         window-system frames.  Consider some pixels near the vertical bar
581         as on the bar if the frame doesn't have vertical scroll bars.
582         Associate positions between mode or header lines with the
583         right window, the left one.
585 2000-12-01  Jason Rumney  <jasonr@gnu.org>
587         * w32term.c (w32_clear_window): Avoid clearing an invalid frame.
589         * w32xfns.c (get_frame_dc): Avoid changing the palette on an
590         invalid frame.
592 2000-12-01  Gerd Moellmann  <gerd@gnu.org>
594         * window.c (struct saved_window): Add members orig_top and
595         orig_height.
596         (SAVED_WINDOW_VECTOR_SIZE): Increment to 16.
597         (save_window_save, Fset_window_configuration): Save/restore
598         window's orig_top and orig_height.
600 2000-12-01  Jason Rumney  <jasonr@gnu.org>
602         * w32term.c (x_draw_vertical_border): Fix call to w32_fill_rect.
604         * w32fns.c (x_set_cursor_color): Fix last change.
606 2000-11-30  Gerd Moellmann  <gerd@gnu.org>
608         * xdisp.c (echo_area_display): If cursor is in the echo area, make
609         sure that the next redisplay displays the minibuffer, so that
610         the cursor will be replaced with what the minibuffer wants.
612         * xterm.c: Test USE_TOOLKIT_SCROLL_BARS everywhere with #ifdef and
613         #ifndef instead of using #if.
614         (XTread_socket) [USE_MOTIF] <KeyPress>: Call XmIsScrollBar only if
615         USE_TOOLKIT_SCROLL_BARS is defined.
617 2000-11-30  Jason Rumney  <jasonr@gnu.org>
619         * w32fns.c (x_set_cursor_color): Use x_update_cursor instead of
620         x_display_cursor.
622 2000-11-30  Gerd Moellmann  <gerd@gnu.org>
624         * fns.c (Fmd5): Doc fix.
626 2000-11-30  Simon Josefsson  <simon@josefsson.org>
628         * fns.c (Fmd5): New function.
629         (syms_of_fns): Defsubr md5.
631         * Makefile.in (obj): Add md5.o
633 2000-11-30  Gerd Moellmann  <gerd@gnu.org>
635         * md5.h, md5.c: New files, taken from glibc.
637         * xmenu.c (popup_get_selection): Use xmalloc instead of malloc.
639         * xterm.c (x_estimate_mode_line_height): If `mode-line' face
640         hasn't a font, use that of the frame, as drawing glyphs
641         does.
643 2000-11-29  Stefan Monnier  <monnier@cs.yale.edu>
645         * eval.c (Frun_hooks): Allow 0 arguments.
647 2000-11-29  Gerd Moellmann  <gerd@gnu.org>
649         * xterm.c (XTmouse_position) [USE_X_TOOLKIT]: When the mouse
650         is over the menu bar widget, say it's not on the frame.
652         * xfns.c (Fx_create_frame): Reintroduce the call to
653         face-set-after-frame-defaults.
655         * eval.c (Fsignal): Reset handling_signal.
657 2000-11-28  Jason Rumney  <jasonr@gnu.org>
659         * w32menu.c (add_menu_item): Reset menu item text when changing
660         type to radio button.
662 2000-11-28  Gerd Moellmann  <gerd@gnu.org>
664         * xselect.c: Update copyright.
666         * window.c (coordinates_in_window): If on a mode or header line,
667         but sufficiently close to its start, return ``on vertical
668         border''.  This gives us a way to drag windows horizontally when
669         using toolkit scroll bars.
671         * xterm.c (note_mouse_highlight): Change the cursor shape
672         on the vertical border between windows.
674         * xterm.h (struct x_output): Add member horizontal_drag_cursor.
676         * xfns.c (Vx_window_horizontal_drag_shape): New variable.
677         (syms_of_xfns): DEFVAR_LISP it.
678         (x_set_mouse_color): Create frame's horizontal_drag_cursor.
680         * textprop.c (text_read_only): New function.
681         (verify_interval_modification): Use it instead of signaling
682         `text-read-only'.  This makes it easier to catch this error
683         with a breakpoint.: 
685         * xdisp.c (forward_to_next_line_start): Check for newlines, 
686         not end of line, which includes CR.
688 2000-11-28  Kenichi Handa  <handa@etl.go.jp>
690         * coding.c (Ffind_coding_systems_region_internal): Be sure to
691         include no-conversion.
693 2000-11-27  Jason Rumney  <jasonr@gnu.org>
695         * w32fns.c (w32_load_system_font): Always mark font as double byte
696         if codepage is unicode.
698 2000-11-27  Gerd Moellmann  <gerd@gnu.org>
700         * xdisp.c (forward_to_next_line_start): If already on a newline,
701         just consume it to avoid unintended skipping over invisible text
702         below.
704         * keyboard.c (lucid_event_type_list_p): Handle `help-echo',
705         `vertical-line', `mode-line' and `header-line' events.
707         * xdisp.c (try_window_id): Avoid starting to display in the middle
708          of a character, a TAB for instance.  This is easier than to set
709          up the iterator exactly, and it's not a frequent case, so the
710          additional effort wouldn't really pay off.
712 2000-11-26  Andrew Choi  <akochoi@i-cable.com>
714         * emacs.c (main) [macintosh]: Call syms_of_frame before calling
715         init_window_once.
717 2000-11-25  Jason Rumney  <jasonr@gnu.org>
719         * keyboard.c (make_lispy_event) [mouse_wheel, drag_n_drop]: Args
720         to window_from_coordinates should be pixel coordinates.
722         * w32fns.c (x_to_w32_font): Do not filter out italic fonts, as new
723         redisplay handles them properly.
725 2000-11-25  Miles Bader  <miles@gnu.org>
727         * indent.c (compute_motion): Keep pos_byte in sync with pos.
729 2000-11-24  Jason Rumney  <jasonr@gnu.org>
731         * w32.c (init_environment): Set LANG environment variable based on
732         locale settings, if not set.
734         * w32fns.c (x_set_tool_bar_lines): Clear internal border when
735         making tool bar smaller. When clearing the frame, also
736         clear current matrices. Clear frame when tool bar disappears.
737         Don't use more lines for the tool-bar than is available.
738         (x_change_window_heights): New function.
740 2000-11-24  Gerd Moellmann  <gerd@gnu.org>
742         * xdisp.c (init_from_display_pos): If POS says we're already after
743          an overlay string ending at POS, make sure to pop the iterator
744          because it will be in front of that overlay string.  When POS is
745          ZV, we've thereby also ``processed'' overlay strings at ZV.
747         * xfaces.c (lface_from_face_name): Function comment fix.
749 2000-11-24  Miles Bader  <miles@gnu.org>
751         * xdisp.c (display_menu_bar, display_mode_line): Change the way we
752         apply `mode-line-inverse-video' -- zero means force display using
753         the default face, non-zero means display using the specialized face.
754         (syms_of_xdisp): `mode-line-inverse-video' defaults to true again.
756 2000-11-23  Kenichi Handa  <handa@etl.go.jp>
758         * alloc.c (Fmake_string): Use MAX_MULTIBYTE_LENGTH, instead of
759         hard coded `4'.
761 2000-11-23  Eli Zaretskii  <eliz@is.elta.co.il>
763         * coding.c (decode_coding_emacs_mule): Fix the case of
764         CODING_EOL_LF, which used uninitialized value of c.
766 2000-11-23  Stefan Monnier  <monnier@cs.yale.edu>
768         * xdisp.c (syms_of_xdisp): Make fontification-functions buffer-local.
770 2000-11-22  Gerd Moellmann  <gerd@gnu.org>
772         * buffer.c (Fmake_indirect_buffer): Don't treat nil as a
773         buffer object.
775         * frame.h (struct frame): Replace desired_tool_bar_items,
776         current_tool_bar_items, n_desired_tool_bar_items,
777         n_current_tool_bar_items with tool_bar_items and n_tool_bar_items.
779         * frame.c (make_frame): Change initialization of tool bar
780         items accordingly.
782         * xterm.c (x_handle_tool_bar_click, note_tool_bar_highlight):
783         Change references to members deleted from struct frame to use the
784         new ones.
786         * xdisp.c (update_tool_bar, build_desired_tool_bar_string): Change
787         references to members deleted from struct frame to use the new
788         ones.
790         * dispnew.c (update_frame): Do nothing with frame's tool bar
791         items.
793         * alloc.c (mark_object) <frame>: Mark tool bar items differently.
795         * w32term.c (x_tool_bar_item, w32_handle_tool_bar_click)
796         (note_tool_bar_highlight): Change references to members deleted
797         from struct frame to use the new ones.
799 2000-11-23  Miles Bader  <miles@gnu.org>
801         * xdisp.c (display_menu_bar): Or `mode-line-inverse-video' with
802         the face's inverse-video attribute, rather than overriding it.
804 2000-11-22  Gerd Moellmann  <gerd@gnu.org>
806         * xfns.c (x_set_tool_bar_lines): Clear internal border when
807         making tool bar smaller.
809 2000-11-22  Dave Love  <fx@gnu.org>
811         * s/sol2-5.h (_LARGEFILE_SOURCE, _FILE_OFFSET_BITS): Don't define.
813 2000-11-22  Miles Bader  <miles@gnu.org>
815         * keyboard.c (Vminibuffer_message_timeout): New variable.
816         (command_loop_1): Use it to determine message timeout.
817         (syms_of_keyboard): Initialize it.
819         * xdisp.c (syms_of_xdisp): `mode-line-inverse-video' defaults to nil.
821 2000-11-22  Kenichi Handa  <handa@etl.go.jp>
823         * sysdep.c: Move the code for declaring h_errno after #include
824         <netdb.h>.
826 2000-11-21  Gerd Moellmann  <gerd@gnu.org>
828         * xfns.c (Fx_hide_tip) [USE_LUCID]: Add a hack to redisplay
829         the menu bar when the tooltip is unmapped.
831         * buffer.c (Fkill_buffer): Notice if the buffer to kill is the
832         sole visible buffer when we're currently in the mini-buffer, and
833         give up if so.
834         
835 2000-11-21  Jason Rumney  <jasonr@gnu.org>
837         * w32select.c (Fw32_set_clipboard_data): Save a copy of what is
838         put on the clipboard.
839         (Fw32_get_clipboard_data): Compare data on clipboard with saved
840         copy of what Emacs last put there. If they are the same, do not
841         use the clipboard copy to avoid losing data due to coding
842         conversions. 
844 2000-11-22  Miles Bader  <miles@gnu.org>
846         * minibuf.c (Vminibuffer_prompt_properties): New variable.
847         (syms_of_minibuf): Initialize it.
848         (read_minibuf): Add properties from Vminibuffer_prompt_properties
849         to prompt, don't make read-only.
851 2000-11-21  Gerd Moellmann  <gerd@gnu.org>
853         * bytecode.c (Fbyte_code) <Bvarbind, Bunwind_protect>: Add
854         BEFORE/AFTER_POTENTIAL_GC.
856         * s/hpux10.h (_FILE_OFFSET_BITS): Undef.
858         * buffer.c (mmap_free_1): Avoid a compiler warning.
860         * term.c, cm.c: Don't try to include termcap.h; see comment there.
862 2000-11-21  Kenichi Handa  <handa@etl.go.jp>
864         * s/sol2-5.h: Move #undef USE_MMAP_FOR_BUFFERS out of #if 0
865         ... #endif scope.
867 2000-11-20  Gerd Moellmann  <gerd@gnu.org>
869         * xfns.c (x_create_tip_frame): Use CWSaveUnder only if the 
870         screen supports it.
872         * s/gnu-linux.h: Don't use `#cpu'.
874         * buffer.c (MAP_FAILED): Define it as `((void *) -1)' if it's
875         not defined in mman.h.
877         * xterm.c (scroll_bar_windows, scroll_bar_windows_size): New
878         variables.
879         (x_send_scroll_bar_event): Store the window in scroll_bar_windows
880         and store an index in the XClientMessageEvent.  Storing a
881         Lisp_Object or pointer can fail on a 64 bit system, since X only
882         transfers 32 bits.
883         (x_scroll_bar_to_input_event): Get the window from
884         scroll_bar_windows.
885         
886 2000-11-20  Dave Love  <fx@gnu.org>
888         * Makefile.in (LIBX): Reorder for -lX11 after -lXpm.
890 2000-11-20  Gerd Moellmann  <gerd@gnu.org>
892         * s/sol2-5.h (USE_MMAP_FOR_BUFFERS): Undefine.
894 2000-11-20  Kenichi Handa  <handa@etl.go.jp>
896         * charset.c (get_new_private_charset_id): Don't limit CHARSET_ID
897         by WIDTH.
899         * alloc.c (make_string): Fix previous change.  Be sure to make
900         unibyte string correctly.
902 2000-11-19  Gerd Moellmann  <gerd@gnu.org>
904         * window.c (Fwindow_list): Change parameter list to be XEmacs
905         compatible.
906         (window_list_1): New function.
907         (window_loop): Use it instead of Fwindow_list.
909         * sysdep.c (emacs_ospeed): New variable.
910         (toplevel): Don't declare ospeed extern.
911         (init_baud_rate): Use emacs_ospeed instead of ospeed.
913         * termcap.c (ospeed): Remove.
914         (tputs) [!emacs]: Remove unused code.
915         (tgetent): Avoid a compiler warning.
917         * xterm.c (x_set_toolkit_scroll_bar_thumb, x_scroll_bar_create)
918         (x_scroll_bar_remove, XTset_vertical_scroll_bar): Call
919         SCROLL_BAR_X_WIDGET with additional argument DPY.
921         * xterm.h (struct scroll_bar): Members x_widget_low, x_widget_high
922         removed.
923         (SCROLL_BAR_X_WIDGET): Get the widget via XtWindowToWidget.
924         Take the X display as additional argument.
925         (SET_SCROLL_BAR_X_WIDGET): Store the window of the widget, since
926         `Widget' is a pointer type that's not easily stored in Lisp_Object
927         form in a portable way.
928         
929         * dispnew.c (update_text_area): Fix last change.
931 2000-11-18  Gerd Moellmann  <gerd@gnu.org>
933         * xdisp.c: Use BINDING_STACK_SIZE throughout.
935         * xfns.c (x_set_tool_bar_lines): When clearing the frame, also
936         clear current matrices.
938         * buffer.c (mmap_enlarge): Don't print a message on stderr
939         if mapping new memory at the end of the existing region fails.
941         * dispnew.c (update_text_area): Don't skip over equal glyphs
942         when the last current glyph overlaps the glyph to its right.
944 2000-11-18  Miles Bader  <miles@gnu.org>
946         * xdisp.c (message_log_check_duplicate): Let "..."-detection match
947         lines that *end* with "..." too (that's the most common case!).
949 2000-11-18  Gerd Moellmann  <gerd@gnu.org>
951         * xdisp.c (resize_mini_window): Temporarily change to the
952         mini-window's buffer if necessary.
954         * xfns.c (Fx_show_tip): Use default y-offset of -10 so that
955         the tooltip obscures less text under it.
957 2000-11-17  Gerd Moellmann  <gerd@gnu.org>
959         * puresize.h (BASE_PURESIZE): Increase to 700000.
961 2000-11-18  Jason Rumney  <jasonr@gnu.org>
963         * w32term.c (w32_draw_bitmap): Use face to set colors.
965 2000-11-17  Dave Love  <fx@gnu.org>
967         * lread.c (Fload): Fix #ifdef for pcc.
969 2000-11-17  Gerd Moellmann  <gerd@gnu.org>
971         * xdisp.c (pos_visible_p): Compute the default character height
972         differently.
974 2000-11-16  Gerd Moellmann  <gerd@gnu.org>
976         * xdisp.c (pos_visible_p): Handle case that we reach ZV without
977         knowing the line's height; use the default font's height in that
978         case.
980         * xfaces.c (weight_table): Add `demi' with the same meaning as
981         `demibold'.
983 2000-11-16  Kenichi Handa  <handa@etl.go.jp>
985         * dispnew.c (null_row): New global static variable.
986         (clear_glyph_row): Delete local static variable null_row.
988 2000-11-15  Jason Rumney  <jasonr@gnu.org>
990         * w32term.c (HIGHLIGHT_COLOR_DARK_BOOST_LIMIT): New constant.
991         (w32_alloc_lighter_color): Use new brightness calculations from
992         xterm.c. Scale delta to be in the range expected by W32.
993         (w32_draw_relief_rect): Use frame relief colors.
995 2000-11-15  Gerd Moellmann  <gerd@gnu.org>
997         * frame.c (syms_of_frame_1): Removed; code moved to syms_of_frame.
998         (Qinhibit_default_face_x_resources): New variable.
999         (syms_of_frame): Initialize it.
1000         (Fmodify_frame_parameters): Bind inhibit-default-face-x-resources.
1002         * xdisp.c (pos_visible_p): Improve function comment.
1004         * lisp.h (BINDING_STACK_SIZE): New macro.
1006         * dired.c (directory_files_internal) [EAGAIN || EINTR]: Retry
1007         reading the directory if readdir returns null and errno is EAGAIN
1008         or EINTR.
1010 2000-11-14  Stefan Monnier  <monnier@cs.yale.edu>
1012         * xdisp.c (try_scrolling): Set scroll_max to max of scroll_* args
1013         so setting scroll-step to 1 doesn't defeat scroll-conservatively.
1014         Set amount_to_scroll to max of dx and scroll_step so that
1015         scroll-conservatively doesn't defeat scroll-step>1.
1016         (syms_of_xdisp): Add a hint in scroll-step's docstring to use
1017         scroll-conservatively for line-at-a-time scrolling.
1019 2000-11-14  Gerd Moellmann  <gerd@gnu.org>
1021         * window.c (Fpos_visible_in_window_p): Call pos_visible with
1022         extra argument.
1024         * xdisp.c (current_mode_line_height, current_header_line_height):
1025         New variables.
1026         (init_xdisp): Initialize them.
1027         (pos_visible_p): Add parameter EXACT_MODE_LINE_HEIGHTS_P.  Compute
1028         and use exact mode line heights if it is set.
1030         * lisp.h (pos_visible_p): Change prototype.
1032         * dispextern.h (CURRENT_MODE_LINE_HEIGHT)
1033         (CURRENT_HEADER_LINE_HEIGHT):  Look at current_mode_line_height
1034         and current_header_line_height first.
1035         (current_mode_line_height, current_header_line_height): Declare
1036         extern.
1038 2000-11-14  Miles Bader  <miles@lsi.nec.co.jp>
1040         * xterm.c (x_alloc_lighter_color): Use real brightness calculation.
1041         Just use FACTOR/2 instead of HIGHLIGHT_COLOR_DARK_BOOST.
1042         (HIGHLIGHT_COLOR_DARK_BOOST): Macro removed.
1044 2000-11-14  Miles Bader  <miles@gnu.org>
1046         * xterm.c (x_alloc_lighter_color): Include an additive component
1047         too for dark colors, because FACTOR isn't enough.
1048         (HIGHLIGHT_COLOR_DARK_BOOST, HIGHLIGHT_COLOR_DARK_BOOST_LIMIT):
1049         New macros.
1051 2000-11-13  Gerd Moellmann  <gerd@gnu.org>
1053         * keyboard.c (show_help_echo): Call message3_nolog with number of
1054         bytes in the help string as 2nd parameter, instead of the number
1055         of characters.
1057 2000-11-13  Miles Bader  <miles@gnu.org>
1059         * lread.c (openp): Return -2 instead of 0 for the `remote file' case.
1060         (Fload): Use new openp return protocol.
1061         Don't try to use Vload_source_file_function to load .elc files.
1062         * xfns.c (x_create_bitmap_from_file, x_find_image_file): Use new
1063         openp return protocol.
1064         * w32fns.c (x_create_bitmap_from_file, x_find_image_file): Likewise.
1066 2000-11-11  Kenichi Handa  <handa@etl.go.jp>
1068         * syssignal.h: Pay attention to BROKEN_SIGAIO and BROKEN_SIGPTY.
1070         * m/ibmrs6000.h (BROKEN_SIGAIO, BROKEN_SIGPTY, BROKEN_SIGPOLL):
1071         Defined these macros.
1072         (NLIST_STRUCT): Avoid re-defining it.
1074         * s/hpux10.h (C_SWITCH_X_SYSTEM): Include -I/usr/include/X11R6 and
1075         -I/usr/contrib/X11R6/include.
1076         (LD_SWITCH_X_DEFAULT): Include -L/usr/lib/X11R6.
1078 2000-11-10  Jason Rumney  <jasonr@gnu.org>
1080         * w32term.h (CP_8BIT, CP_UNICODE, CP_INVALID): New pseudo-codepages.
1082         * w32term.c (w32_encode_char): Handle CP_UNICODE specially.
1083         (w32_use_unicode_for_codepage): Use new pseudo-codepages.
1085         * w32fns.c (Qw32_charset_hangeul): Rename to match w32 headers.
1086         (Qw32_charset_vietnamese): New symbol.
1087         (xlfd_charset_of_font): New function.
1088         (w32_load_system_font): Use it.
1089         (x_to_w32_charset): Use Fassoc to find charset info. Special case
1090         when Vw32_charset_info_alist is nil to ensure default face always
1091         has font. Use Fcar and Fcdr for safety.
1092         (w32_to_x_charset): Use Vw32_charset_info_alist for mappings.
1093         (w32_codepage_for_font): Use xlfd_charset_of_font.  Use new
1094         pseudo-codepages for special cases.
1095         (w32_to_x_font): New parameter to allow charset portion to be
1096         specified where there is many to one mapping.  Callers changed.
1097         (w32_list_fonts): Avoid listing fonts that won't display.
1099 2000-11-10  Gerd Moellmann  <gerd@gnu.org>
1101         * xfaces.c (Vface_alternative_font_registry_alist): New variable.
1102         (font_list_1): Renamed from font_list.
1103         (font_list): New function, trying alternative registries from
1104         Vface_alternative_font_registry_alist.
1105         (Finternal_set_alternative_font_registry_alist): New function.
1106         (syms_of_xfaces): Initialize and Staticpro
1107         Vface_alternative_font_registry_alist.  Defsubr
1108         Finternal_set_alternative_font_registry_alist.
1110 2000-11-09  Ken Raeburn  <raeburn@gnu.org>
1112         * lisp.h (Flooking_at): Declare.
1114 2000-11-09  Gerd Moellmann  <gerd@gnu.org>
1116         * dired.c (directory_files_internal): Fix a braino.
1117         
1118         * dired.c (directory_files_internal): Add missing GCPRO's.
1119         Some cleanup.
1121 2000-11-08  Gerd Moellmann  <gerd@gnu.org>
1123         * xdisp.c (syms_of_xdisp): Change doc of max-mini-window-height.
1124         (resize_mini_window): Return quickly if Vresize_mini_window is
1125         nil.  Don't return if Vmax_mini_window_height is nil.
1127         * xdisp.c (Vresize_mini_window, Qgrow_only): New variables.
1128         (syms_of_xdisp): Initialize them.
1129         (resize_mini_window): Act according to the setting of
1130         Vresize_mini_window.
1131         (syms_of_xdisp): Initialize Vmenu_bar_update_hook to nil.
1133         * xterm.c (x_scroll_bar_create) [USE_TOOLKIT_SCROLL_BARS]: Map the
1134         scroll bar widget after configuring it, so that it will appear at
1135         the right position from the start.
1136         (XTredeem_scroll_bar): Cleaned up.
1138 2000-11-08  Kenichi Handa  <handa@etl.go.jp>
1140         * xterm.c (VCENTER_BASELINE_OFFSET): Fix previous change.  If the
1141         font is taller than the frame line, we don't have to bias the
1142         division by two.
1144         * w32term.c (VCENTER_BASELINE_OFFSET): Likewise.
1146 2000-11-07  Dave Love  <fx@gnu.org>
1148         * config.in (HAVE_MKSTEMP): Add.
1150         * callproc.c (Fcall_process_region) [HAVE_MKSTEMP]: Use it.
1152 2000-11-07  Gerd Moellmann  <gerd@gnu.org>
1154         * window.c (Fset_window_configuration): Don't try to preserve
1155         point in the current buffer, if that buffer is displayed in more
1156         than one window.
1158         * xfaces.c (lookup_named_face): If default face isn't realized,
1159         try to realize it.  Return -1 if not successful.
1160         (Fx_list_fonts): Handle case that face cannot be determined.
1161         (Fface_font): Likewise.
1163 2000-11-06  Gerd Moellmann  <gerd@gnu.org>
1165         * window.c (displayed_window_lines): Detect partially
1166         visible lines at the bottom correctly.
1168 2000-11-06  Stefan Monnier  <monnier@cs.yale.edu>
1170         * fileio.c (Fwrite_region): Use `visiting' rather than `visit'
1171         when ensuring we don't do visit in indirect buffer.
1173 2000-11-06  Kenichi Handa  <handa@etl.go.jp>
1175         * composite.h (compose_chars_in_text): Add prototype.
1177         * composite.c (Vcomposition_function_table): New variable.
1178         (Qcomposition_function_table): New variable.
1179         (run_composition_function): Call
1180         Vcompose_chars_after_function with three arguments.
1181         (compose_chars_in_text): New function.
1182         (syms_of_composite): Modified the doc-string of
1183         Vcompose_chars_after_function.  Declare composition-function-table
1184         as a lisp variable, and initialize it.
1186         * xfns.c (x_encode_text): Suppress producing escape sequences for
1187         composition.
1189         * xselect.c: Include composite.h.
1190         (selection_data_to_lisp_data): Call compose_chars_in_text on STR.
1192 2000-11-05  Andrew Innes  <andrewi@gnu.org>
1194         * w32term.c (x_produce_glyphs): Fix typo in enum name.
1196         * sysdep.c (read_input_waiting): Remove extraneous argument to
1197         read_socket_hook.
1199         * w32fns.c (Fx_server_version): Include w32_build_number in the
1200         return list.
1202         * w32heap.c (w32_build_number): New variable.
1203         (cache_system_info): Set it.
1205         * w32heap.h (w32_build_number): Add extern.
1207         * emacs.c (syms_of_emacs): Update docstring for
1208         system-configuration, to reflect the actual usage on MS-Windows.
1210 2000-10-31  Gerd Moellmann  <gerd@gnu.org>
1212         * keyboard.c (read_char) <wrong_kboard>: Make sure that we
1213         process idle timers while waiting for another event.
1215         * dispnew.c (update_frame_line): Handle case where spaces in 
1216         the default face are colored.
1218         * xdisp.c (redisplay_tool_bar): Don't set fonts_changed_p if
1219         window height hasn't changed.
1221 2000-10-31  Jason Rumney  <jasonr@gnu.org>
1223         * w32term.c (x_produce_glyphs): Handle composite characters.
1224         (x_draw_glyph_string_foreground)
1225         (x_draw_composite_glyph_string_foreground): Restore old font.
1227 2000-10-31  Miles Bader  <miles@lsi.nec.co.jp>
1229         * minibuf.c (read_minibuf): Reset the undo history just before
1230         starting the recursive-edit.
1232 2000-10-30  Gerd Moellmann  <gerd@gnu.org>
1234         * xfaces.c (menu_face_change_count): New variable.
1235         (Finternal_set_lisp_face_attribute): Increment it for changes
1236         of the `menu' face.
1237         (realize_basic_faces): Reflect changes in the `menu' faces
1238         in menu bars.
1240         * xdisp.c (try_scrolling) <PT >= scroll_margin_pos>: Add 1 to the
1241         dy obtained from the iterator's y-position after moving from
1242         scroll_margin_pos to PT; see comment there.
1243         
1244         * xdisp.c (safe_eval_handler): Call add_to_log.
1246         * xfaces.c (resolve_face_name): Handle case that FACE_NAME
1247         is not a symbol or string.
1249         * xdisp.c (echo_area_display): Don't perform a display update from
1250         inside redisplay.  The update will happen anyway at the end of
1251         redisplay, and it can confuse redisplay (GC messages while
1252         redisplaying, for instance.)
1254 2000-10-30  Stefan Monnier  <monnier@cs.yale.edu>
1256         * xrdb.c (x_load_resources): Use the class name in the defaults.
1258         * regex.c (re_iswctype, re_wctype_to_bit): Fix braino.
1259         (regex_compile): Catch bogus \(\1\).
1261 2000-10-30  Gerd Moellmann  <gerd@gnu.org>
1263         * xterm.c (x_alloc_nearest_color): Fix last change to compare
1264         RGB values.
1265         
1266         * xterm.c (x_alloc_nearest_color): If allocation succeeds, and
1267         we have a color cache, check that the cached color equals the
1268         allocated color.  If not, clear the color cache.
1270         * window.c (displayed_window_lines): Change buffers if necessary.
1271         Fix computation of displayed lines.
1273         * keyboard.c (syms_of_keyboard): Change DEFVAR_LISP of
1274         update_menu_bindings to DEFVAR_BOOL.
1276 2000-10-30  Kenichi Handa  <handa@etl.go.jp>
1278         * search.c (Fset_match_data): Be sure to make search_regs always sane.
1280         * puresize.h (BASE_PURESIZE): Increase to 680000.
1282         * fns.c (Foptimize_char_table): Fix arg for CHARSET_DIMENSION.
1284 2000-10-29  Jason Rumney  <jasonr@gnu.org>
1286         * w32term.h (FONT_DESCENT): Negate descent of BDF fonts.
1288         * w32term.c (w32_bdf_per_char_metric): Negate descent.
1289         (w32_cache_char_metrics): Handle possibility that 'x' does not
1290         exist in a BDF font.
1291         (W32_TEXTOUT): w32_BDF_TextOut wants number of bytes not chars.
1293         * w32bdf.h (bdffont): Add nchars.
1295         * w32bdf.c (set_bdf_font_info): Set it.
1296         (w32_BDF_TextOut): Swap byte order of double byte characters.
1297         (w32_load_bdf_font): Set double_byte_p based on bdf_font->nchars.
1299 2000-10-28  Eli Zaretskii  <eliz@is.elta.co.il>
1301         * frame.c (Fframe_parameters): Fix the change from 2000-10-16:
1302         don't override the colors in frame's param_alist, unless they are
1303         unspecified.
1305         * term.c (reassert_line_highlight): If inverse_video is non-zero,
1306         reverse the effect of the highlight flag.
1308 2000-10-27  Ken Raeburn  <raeburn@gnu.org>
1310         * window.h (Fwindow_live_p): Declare.
1312         * undo.c (record_delete): Check that last_undo_buffer is really a
1313         buffer before applying XBUFFER to it.
1315         * keymap.c (where_is_internal): Pass lisp object, not integer, to
1316         Faref.
1318 2000-10-27  Stefan Monnier  <monnier@cs.yale.edu>
1320         * lisp.h (KEYMAPP): New macro.
1321         (get_keymap): Remove.
1322         (get_keymap_1): Rename get_keymap.
1324         * keyboard.h (get_keymap_1, Fkeymapp): Remove prototype.
1326         * xterm.c (note_mode_line_highlight): Use KEYMAPP.
1328         * xmenu.c (single_submenu): Use KEYMAPP.
1329         (Fx_popup_menu): Fetch keymaps rather than checking Fkeymapp.
1330         Use KEYMAPP rather than Fkeymapp.
1332         * w32term.c (note_mode_line_highlight): Use KEYMAPP.
1334         * w32menu.c (True, False): Remove (use TRUE and FALSE instead).
1335         (Fx_popup_menu): Fetch keymaps rather than checking Fkeymapp.
1336         Use KEYMAPP rather than Fkeymapp.
1337         (single_submenu): Use KEYMAPP.
1338         (w32_menu_show, w32_dialog_show): Use TRUE.
1340         * minibuf.c (Fread_from_minibuffer): Update call to get_keymap.
1342         * keymap.c (KEYMAPP): Remove (moved to lisp.h).
1343         (Fkeymapp): Use KEYMAPP.
1344         (get_keymap): Rename from get_keymap_1.  Remove old def.
1345         Return t when autoload=0 and error=0 and the keymap needs autoloading.
1346         (Fcopy_keymap): Check (eq (car x) 'keymap) rather than using Fkeymapp.
1347         (Fminor_mode_key_binding): Don't raise an error if the binding
1348         is not a keymap.
1349         (Fuse_global_map, Fuse_local_map): Allow autoloading.
1350         (Faccessible_keymaps): Fetch keymaps rather than checking Fkeymapp.
1352         * keyboard.c (read_char): get_keymap_1 -> get_keymap.
1353         Allow Vspecial_event_map to be autoloaded.
1354         (menu_bar_items): Fetch the keymap rather than using keymapp.
1355         (menu_bar_one_keymap): No need to follow func-indirect any more.
1356         (parse_menu_item): get_keymap_1 -> get_keymap.
1357         (tool_bar_items): Fetch the keymap rather than using keymapp.
1358         (read_key_sequence): Use KEYMAPP.
1360         * intervals.c (get_local_map): Use get_keymap rather than following
1361         function-indirections explicitly.
1363         * doc.c (Fsubstitute_command_keys): get_keymap_1 -> get_keymap.
1365 2000-10-27  Jason Rumney  <jasonr@gnu.org>
1367         * w32fns.c (Fx_create_frame): Make default fontsize on w32 10
1368         point, as Windows has oversized fonts.
1370         * fontset.c (syms_of_fontset) [WINDOWSNT]: Likewise.
1372 2000-10-27  Gerd Moellmann  <gerd@gnu.org>
1374         * gmalloc.c [GC_MCHECK]: Add code from mcheck.c of glibc-1.09.1.
1375         (freehook, reallochook): Handle null pointer arguments.
1376         (__malloc_initialize) [GC_MCHECK]: Call mcheck.
1378 2000-10-27  Stefan Monnier  <monnier@cs.yale.edu>
1380         * regex.c (POP_FAILURE_REG_OR_COUNT, re_match_2_internal)
1381         (re_match_2_internal, re_match_2_internal, re_match_2_internal):
1382         Giving in to popular pressure to shut up the compiler with casts.
1384 2000-10-27  Gerd Moellmann  <gerd@gnu.org>
1386         * xterm.c (x_draw_glyph_string): Treat XA_UNDERLINE_POSITION as a
1387         signed value, and use a default value computed from the font's
1388         maximum descent.
1390 2000-10-27  Miles Bader  <miles@lsi.nec.co.jp>
1392         * xterm.c (x_draw_glyph_string): Add a workaround so that fonts
1393         that specify a negative underline position can still use underlines.
1395         * window.c (Fpos_visible_in_window_p): Make POS default to
1396         WINDOW's point, not the current buffer's point.
1398 2000-10-26  Dave Love  <fx@gnu.org>
1400         * s/sol2-5.h: Don't define SYSTEM_MALLOC so that we can find out
1401         when it's necessary.
1403 2000-10-26  Gerd Moellmann  <gerd@gnu.org>
1405         * window.c (size_window): Compute size difference from sum of old
1406         child window sizes instead of from parent's size.
1408         * xdisp.c (pos_visible_p): Change current buffer if necessary.
1409         Handle obscured lines at the top of the window.
1411         * frame.c (Fdelete_frame): Doc fix.  Move running the hook
1412         down after the last error condition check.
1414         * frame.c (Fdelete_frame): Run delete-frame-hook.
1416 2000-10-26  Kenichi Handa  <handa@etl.go.jp>
1418         * coding.c (decode_coding): Fix previous change (check also
1419         CODING_MODE_LAST_BLOCK).
1421 2000-10-25  Stefan Monnier  <monnier@cs.yale.edu>
1423         * regex.c: More `unsigned char' -> `re_char' changes.
1424         Also change several `int' into `re_wchar_t'.
1425         (PATTERN_STACK_EMPTY, PUSH_PATTERN_OP, POP_PATTERN_OP): Remove.
1426         (PUSH_FAILURE_POINTER): Don't cast any more.
1427         (POP_FAILURE_REG_OR_COUNT): Remove the cast that strips `const'.
1428         We want GCC to complain, since this piece of code makes
1429         re_match non-reentrant, which *should* be fixed.
1430         (GET_BUFFER_SPACE): Use size_t rather than unsigned long.
1431         (EXTEND_BUFFER): Use RETALLOC.
1432         (SET_LIST_BIT): Don't cast.
1433         (re_wchar_t): New type.
1434         (re_iswctype, re_wctype_to_bit): Make it crystal clear to GCC
1435         that those two functions will always properly return.
1436         (IMMEDIATE_QUIT_CHECK): Cast to void.
1437         (analyse_first): Use recursion rather than an explicit stack.
1438         (re_compile_fastmap): Can't fail anymore.
1439         (re_search_2): Don't check re_compile_fastmap for failure.
1440         (PUSH_NUMBER): Renamed from PUSH_FAILURE_COUNT.
1441         Now also sets the new value (passed in a new argument).
1442         (re_match_2_internal): Use it.
1443         Also, use a new var `reg' of type size_t when looping through regs
1444         rather than reuse the inappropriate `mcnt'.
1446         * keymap.c (where_is_cache, where_is_cache_keymaps): New vars.
1447         (Fset_keymap_parent, store_in_keymap): Flush the where-is cache.
1448         (where_is_internal): Renamed from Fwhere_is_internal.
1449         Don't DEFUN any more. Arg `xkeymap' replaced by `keymaps'.
1450         (Fwhere_is_internal): New function wrapping where_is_internal.
1451         (where_is_internal_1): Handle the case where we're filling the cache.
1452         (syms_of_keymap): Init and gcpro the where_is_cache(|_keymaps).
1454 2000-10-25  Miles Bader  <miles@gnu.org>
1456         * xdisp.c (pos_visible_p): Don't add `it.current_y' twice.
1458 2000-10-25  Gerd Moellmann  <gerd@gnu.org>
1460         * window.c (pos_fully_visible_p): Removed.
1461         (Fpos_visible_in_window_p): Use pos_visible_p to determine
1462         if position is visible and/or fully visible.
1464         * lisp.h (pos_visible_p): Add prototype.
1466         * xdisp.c (pos_visible_p): New function.
1468 2000-10-25  Kenichi Handa  <handa@etl.go.jp>
1470         * process.c (send_process): If OBJECT is t, it means that the data
1471         is from C string, but we should encode it.  Before calling
1472         setup_raw_text_coding_system, be sure to flush out data by the
1473         previous coding system.
1475 2000-10-25  Miles Bader  <miles@lsi.nec.co.jp>
1477         * buffer.c (overlays_at): Only let CHANGE_REQ inhibit an
1478         assignment of startpos to prev when startpos == pos.
1480         * editfns.c (find_field): Set the field stickiness correctly from
1481         overlay fields.  Use renamed `text_property_stickiness'.
1482         (text_property_stickiness): Renamed from `char_property_stickiness'.
1483         Only check text properties, not overlays.
1484         * textprop.c (get_char_property_and_overlay): New function.
1485         (Fget_char_property): Use it.
1486         * intervals.h (get_char_property_and_overlay): Add declaration.
1488 2000-10-25  Stefan Monnier  <monnier@cs.yale.edu>
1490         * keymap.c: Use AREF, ASET and ASIZE macros.
1491         (Fmake_sparse_keymap): Docstring fix.
1492         (synkey): Remove.
1493         (shadow_lookup): Move up.
1494         Handle the case where lookup-key returns an integer.
1495         (where_is_internal_1): Drop arg `keymap'. Don't check shadowing.
1496         (where_is_internal_2): Adapt to fewer args for where_is_internal_1.
1497         (Fwhere_is_internal): Allow `xkeymap' to be a list of keymaps.
1498         Simplify/rewrite the keymap-finding code.
1499         Add check for command shadowing, using shadow_lookup.
1501 2000-10-24  Stefan Monnier  <monnier@cs.yale.edu>
1503         * keymap.c (fix_submap_inheritance): Use get_keymap_1 on parent_entry
1504         rather than KEYMAPP, to allow EQ to work correctly if parent_entry is
1505         a symbol.
1507 2000-10-24  Andrew Innes  <andrewi@gnu.org>
1509         * dired.c (directory_files_internal_unwind): New function.
1510         (directory_files_internal): Use it to ensure closedir is called
1511         even if expand-file-name or file-attributes throw, eg. because of
1512         a user interrupt.  Also enable immediate_quit while calling
1513         re_search, so that matching can be interrupted as well.
1515 2000-10-24  Andrew Innes  <andrewi@gnu.org>
1517         * regex.c (IMMEDIATE_QUIT_CHECK): New macro, which does QUIT on
1518         NT-Emacs only.
1519         (re_match_2_internal): Use IMMEDIATE_QUIT_CHECK instead of QUIT,
1520         so that re_search functions only quit when callers expect them to.
1522 2000-10-24  Kenichi Handa  <handa@etl.go.jp>
1524         * regex.c (regex_compile): Change the way of handling a range from
1525         a char less than 256 to a char not less than 256.
1527 2000-10-24  Gerd Moellmann  <gerd@gnu.org>
1529         * window.c (size_window): Prevent setting window's width or
1530         height to a negative value (esp. with XSETFASTINT).
1532         * gmalloc.c (state_protected_p, last_state_size, last_heapinfo)
1533         [GC_MALLOC_CHECK && GC_PROTECT_MALLOC_STATE]: New variables.
1534         (protect_malloc_state) [GC_MALLOC_CHECK &&
1535         GC_PROTECT_MALLOC_STATE]: New function.
1536         (PROTECT_MALLOC_STATE): New macro.
1537         (__malloc_initialize, morecore, _malloc_internal)
1538         (_free_internal) _realloc_internal): Use it to make _heapinfo
1539         read-only outside of gmalloc.
1541         * keymap.c: Update copyright.
1543         * .gdbinit (xbacktrace): Handle case that $bt->function isn't
1544         a symbol.
1546 2000-10-24  Colin Walters  <walters@cis.ohio-state.edu>
1548         * filelock.c (unlock_all_files): Use unlock_file to expand each
1549         buffer's file_truename before trying remove its lock file.
1551 2000-10-24  Eli Zaretskii  <eliz@is.elta.co.il>
1553         * coding.c (decode_coding_emacs_mule): If coding->eol_type is CR
1554         or CRLF, decode EOLs.
1556 2000-10-24  Kenichi Handa  <handa@etl.go.jp>
1558         * window.c (Fdisplay_buffer): Fix doc.
1560 2000-10-23  Jason Rumney  <jasonr@gnu.org>
1562         * fontset.c (syms_of_fontset) [WINDOWSNT]: Special case for
1563         ASCII font of default fontset on Windows.
1565         * w32term.c (VCENTER_BASELINE_OFFSET): Bias division (see
1566         xterm.c comment below).
1568         * w32fns.c (x_to_w32_font): Initialize dpi from dpyinfo->resy.
1570 2000-10-23  Gerd Moellmann  <gerd@gnu.org>
1572         * xterm.c (x_connection_closed): Reset handling_signal.
1574         * alloc.c (emacs_blocked_free) [GC_MALLOC_CHECK]: Handle freeing
1575         null.
1577 2000-10-23  Miles Bader  <miles@gnu.org>
1579         * window.c (window_scroll_pixel_based, window_scroll_line_based):
1580         Pass nil for FULLY argument to Fpos_visible_in_window_p to
1581         maintain old behavior.
1582         * minibuf.c (Fminibuffer_complete): Likewise.
1584 2000-10-23  Miles Bader  <miles@lsi.nec.co.jp>
1586         * xterm.c (VCENTER_BASELINE_OFFSET): Bias the division by two, so
1587         that when a font can't be exactly centered, it errs up rather than
1588         down.
1590 2000-10-23  ShengHuo ZHU  <zsh@cs.rochester.edu>
1592         * fns.c (Fbase64_decode_string): The decoded result should be
1593         unibyte.
1595 2000-10-23  Andrew Choi  <akochoi@i-cable.com>
1597         * dispextern.h [macintosh]: Include macgui.h instead of macterm.h.
1599         * dispnew.c [macintosh]: Include macterm.h.
1600         (init_display) [macintosh]: Initialization for window system.
1602         * emacs.c (main) [macintosh]: Call syms_of_textprop,
1603         syms_of_macfns, syms_of_ccl, syms_of_fontset, syms_of_xterm,
1604         syms_of_search, x_term_init, and init_keyboard before calling
1605         init_window_once.  Also, call syms_of_xmenu.
1607         * fontset.c (syms_of_fontset) [macintosh]: Set ASCII font of
1608         default fontset to Monaco.
1610         * frame.c [macintosh]: Include macterm.h.  Remove declarations of
1611         NewMacWindow and DisposeMacWindow.
1612         (make_terminal_frame) [macintosh]: Call make_mac_terminal_frame
1613         instead of calling NewMacWindow and setting fields of
1614         f->output_data.mac directly.  Call init_frame_faces.
1615         (Fdelete_frame) [macintosh]: Remove unused code.
1616         (Fmodify_frame_parameters) [macintosh]: Call
1617         x_set_frame_parameters instead of mac_set_frame_parameters.
1619         * frame.h [macintosh]: Define menu_bar_lines field in struct
1620         frame.  Define FRAME_EXTERNAL_MENU_BAR macro.
1622         * keyboard.c [macintosh]: Include macterm.h.
1623         (kbd_buffer_get_event) [macintosh]: Generate delete_window_event
1624         and menu_bar_activate_event type events as for X and NT.
1625         (make_lispy_event) [macintosh]: Construct lisp events of type
1626         MENU_BAR_EVENT as for X and NT.
1628         * sysdep.c [macintosh]: Remove declaration for sys_signal.
1629         Include stdlib.h.  Remove definition of Vx_bitmap_file_path.
1630         (sys_subshell) [macintosh]: Remove definition entirely.
1631         (init_sys_modes) [macintosh]: Do not initialize Vwindow_system and
1632         Vwindow_system_version here.  Remove initialization of
1633         Vx_bitmap_file_path.
1634         (read_input_waiting): Correct the number of parameters passed to
1635         read_socket_hook.
1636         Move all Macintosh functions to mac/mac.c.
1638         * term.c [macintosh]: Include macterm.h.
1640         * window.c [macintosh]: Include macterm.h.
1642         * xdisp.c [macintosh]: Include macterm.h.  Declare
1643         set_frame_menubar and pending_menu_activation.
1644         (echo_area_display) [macintosh]: Do not return if terminal frame
1645         is the selected frame.
1646         (update_menu_bar) [macintosh]: Check FRAME_EXTERNAL_MENU_BAR (f).
1647         Allow only the selected frame to set menu bar.
1648         (redisplay_window) [macintosh]: Obtain menu bar to redisplay by
1649         calling FRAME_EXTERNAL_MENU_BAR (f).
1650         (display_menu_bar) [macintosh]: Check FRAME_MAC_P (f).
1652         * xfaces.c [macintosh]: Include macterm.h.  Define x_display_info
1653         and check_x.  Declare XCreateGC.  Define x_create_gc and
1654         x_free_gc.  Initialize font_sort_order.
1655         (x_face_list_fonts) [macintosh]: Use the same code as WINDOWSNT,
1656         but call x_list_fonts instead of w32_list_fonts.
1657         (Finternal_face_x_get_resource) [macintosh]: Do not call
1658         display_x_get_resource.
1659         (prepare_face_for_display) [macintosh]: Set xgcv.font.
1660         (realize_x_face) [macintosh]: Load the font if it is specified in
1661         ATTRS.
1662         (syms_of_xfaces) [macintosh]: Initialize Vscalable_fonts_allowed
1663         to Qt.
1665 2000-10-22  Stefan Monnier  <monnier@cs.yale.edu>
1667         * keymap.c (fix_submap_inheritance): Don't do anything if parent_entry
1668         is nil: since we go to the end of submap anyway, we'd end up
1669         setting nil to nil.
1670         (access_keymap): Don't use KEYMAPP on meta_map since KEYMAPP
1671         doesn't obey autoload.
1673 2000-10-21  Eli Zaretskii  <eliz@is.elta.co.il>
1675         * msdos.c (dos_set_window_size): Update screen dimension variables.
1677 2000-10-21  Jason Rumney  <jasonr@gnu.org>
1679         * w32term.c (w32_cache_char_metrics): Double check that font is
1680         really fixed pitch before trusting tmPitchAndFamily.
1682 2000-10-21  Andrew Innes  <andrewi@gnu.org>
1684         * w32gui.h (w32_char_font_type): Move enum from w32term.c
1686         * w32term.h: Extern decl for w32_cache_char_metrics.
1688         * w32bdf.c (w32_load_bdf_font): Call w32_cache_char_metrics.
1690         * w32fns.c (w32_load_system_font): Call w32_cache_char_metrics.
1691         (w32_unload_font): Free per_char array if present.
1693         * w32term.c (w32_per_char_metric): Remove HDC argument.  Use
1694         cached information in emulated XFontStruct to handle common cases
1695         quickly.  Do not allocate XCharStruct for return.
1696         (w32_native_per_char_metric): New function.
1697         (w32_bdf_per_char_metric): Fill in supplied XCharStruct instead of
1698         allocating one.
1699         (x_produce_glyphs): Don't get an HDC.  Change calls to
1700         w32_per_char_metric to match arg change above.  Remove calls to
1701         free results.
1702         (w32_get_glyph_overhangs): Ditto.
1703         (w32_cache_char_metrics): New function.
1705         * makefile.w32-in: Change .obj to .$(O) in all dependencies.
1706         ($(BLD)/casefiddle.$(O)): Remove compile command.
1707         ($(BLD)/gmalloc.$(O)): Remove compile command.
1708         ($(BLD)/dispnew.obj): 
1709         ($(BLD)/keyboard.obj): 
1710         ($(BLD)/w32inevt.obj): 
1711         ($(BLD)/w32bdf.obj): 
1712         ($(BLD)/alloc.obj): 
1713         ($(BLD)/buffer.obj): 
1714         ($(BLD)/editfns.obj): 
1715         ($(BLD)/emacs.obj): 
1716         ($(BLD)/fileio.obj): 
1717         ($(BLD)/fns.obj): 
1718         ($(BLD)/indent.obj): 
1719         ($(BLD)/insdel.obj): 
1720         ($(BLD)/intervals.obj): 
1721         ($(BLD)/minibuf.obj): 
1722         ($(BLD)/print.obj): 
1723         ($(BLD)/scroll.obj): 
1724         ($(BLD)/sysdep.obj): 
1725         ($(BLD)/textprop.obj): 
1726         ($(BLD)/widget.obj): 
1727         ($(BLD)/xdisp.obj): Add dependency on w32gui.h.
1728         ($(BLD)/term.obj): Add dependency on dispextern.h.
1730         * makefile.nt ($(BLD)\dispnew.obj): 
1731         ($(BLD)\keyboard.obj): 
1732         ($(BLD)\w32inevt.obj): 
1733         ($(BLD)\w32bdf.obj): 
1734         ($(BLD)\alloc.obj): 
1735         ($(BLD)\buffer.obj): 
1736         ($(BLD)\editfns.obj): 
1737         ($(BLD)\emacs.obj): 
1738         ($(BLD)\fileio.obj): 
1739         ($(BLD)\fns.obj): 
1740         ($(BLD)\indent.obj): 
1741         ($(BLD)\insdel.obj): 
1742         ($(BLD)\intervals.obj): 
1743         ($(BLD)\minibuf.obj): 
1744         ($(BLD)\print.obj): 
1745         ($(BLD)\scroll.obj): 
1746         ($(BLD)\sysdep.obj): 
1747         ($(BLD)\textprop.obj): 
1748         ($(BLD)\widget.obj): 
1749         ($(BLD)\xdisp.obj): Add dependency on w32gui.h.
1750         ($(BLD)\term.obj): Add dependency on dispextern.h
1752 2000-10-21  Eli Zaretskii  <eliz@is.elta.co.il>
1754         * minibuf.c (Fminibuffer_complete): Call Fpos_visible_in_window_p
1755         with an additional argument of Qt.
1757 2000-10-21  Miles Bader  <miles@gnu.org>
1759         * window.c (pos_fully_visible_in_window_p): New function.
1760         (Fpos_visible_in_window_p): Add FULLY argument.
1761         Use pos_fully_visible_in_window_p.
1762         (window_scroll_pixel_based, window_scroll_line_based): Update
1763         calls to Fpos_visible_in_window_p.
1764         * lisp.h (Fpos_visible_in_window_p): Update prototype
1766 2000-10-20  Gerd Moellmann  <gerd@gnu.org>
1768         * alloc.c (toplevel): Conditionalize compilation of mem_*
1769         functions differently.
1770         
1771 2000-10-20  Jason Rumney  <jasonr@gnu.org>
1773         * alloc.c (toplevel): Move #ifdef GC_MARK_STACK back to above
1774         mem_init where it used to be. mem_z etc not defined otherwise.
1776 2000-10-20  Gerd Moellmann  <gerd@gnu.org>
1778         * alloc.c (toplevel) [SYSTEM_MALLOC || DOUG_LEA_MALLOC]: Undef
1779         GC_MALLOC_CHECK.
1780         (toplevel) [GC_MARK_STACK || GC_MALLOC_CHECK]: Move mem_node
1781         structure definition and related variabled to the top of the file.
1782         Include this code when GC_MALLOC_CHECK is defined.
1783         (lisp_malloc, lisp_free) [GC_MALLOC_CHECK]: Don't
1784         register/unregister allocated region.
1785         (emacs_blocked_free) [GC_MALLOC_CHECK]: Check if freeing something
1786         which isn't allocated.
1787         (emacs_blocked_malloc) [GC_MALLOC_CHECK]: Check if returning
1788         something which is already in use.
1789         (emacs_blocked_realloc) [GC_MALLOC_CHECK]: Likewise.
1790         (mem_insert) [GC_MALLOC_CHECK]: Use _malloc_internal.
1791         (mem_delete) [GC_MALLOC_CHECK]: Use _free_internal.
1792         (init_alloc_once) [GC_MALLOC_CHECK]: Call mem_init.
1794         * gmalloc.c (_malloc_internal) [GC_MALLOC_CHECK]: Use
1795         _malloc_internal instead of malloc.
1796         (_free_internal) [GC_MALLOC_CHECK]: Use _free_internal instead
1797         of free.
1799 2000-10-20  Andrew Innes  <andrewi@gnu.org>
1801         * strftime.c [!WINDOWSNT]: Don't apply Solaris 2.5 work-around on
1802         Windows.
1803         (my_strftime) <macro>: Don't use macro arg list when redefining as
1804         _strftime_copytm.
1805         (my_strftime) <function>: Supply 0 as ut argument.
1807 2000-10-19  Jason Rumney  <jasonr@altavista.net>
1809         * w32console.c: Do not undef HAVE_WINDOW_SYSTEM before
1810         including dispextern.h, as it stops faces from working.
1812         * w32fns.c (Fx_create_frame): Don't bother calling
1813         face-set-after-frame-default since the caller does it for us
1814         anyway. Clean up calls to x_get_arg to be consistent with X.
1816         * w32term.c (x_produce_glyphs): Handle
1817         unibyte_display_via_language_environment correctly.
1818         (w32_draw_box_rect): Fix the calculation of width and height.
1820         * w32menu.c (add_menu_item): Do not use MF_OWNERDRAW for titles,
1821         as it has stopped working.
1822         (Fx_popup_menu, Fx_popup_dialog): Check for tool-bar position like
1823         menu-bar.
1825 2000-10-19  Gerd Moellmann  <gerd@gnu.org>
1827         * eval.c (skip_debugger): Prevent a compiler warning.
1828         (Fcondition_case): Likewise.
1829         (Fbacktrace_frame): Use a null interactive spec.
1831 2000-10-19  Kenichi Handa  <handa@etl.go.jp>
1833         * xterm.c (x_find_ccl_program): Check also fontp->full_name.
1835 2000-10-18  Gerd Moellmann  <gerd@gnu.org>
1837         * strftime.c: Sync with glibc, file version 1.78.
1838         (my_strftime) [HAVE_TZNAME]: Use `UTC' instead of `GMT' which
1839         should no longer be used according to ISO 8601.
1841         * keymap.c (access_keymap): If IDX has a meta prefix, and there's
1842         no map for meta_prefix_char, don't try to use it as a keymap.
1843         Instead, if T_OK is non-zero, look up a default binding, if any,
1844         otherwise, if T_OK is zero, return nil.
1846         * xfns.c (x_to_xcolors, x_set_mouse_color, lookup_pixel_color)
1847         (x_to_xcolors, png_load): Use x_query_color.
1849         * xterm.c (x_color_cells, x_query_colors, x_query_color): New
1850         functions.
1851         (x_alloc_nearest_color): Use it to reduce calls to XQueryColors
1852         which can be slow.
1853         (x_copy_color, x_alloc_lighter_color): Likewise.
1855         * xterm.h (struct x_display_info): Add color_cells and ncolor_cells.
1856         (x_query_color, x_query_colors): Add prototype.
1858         * alloc.c (allocate_string) [GC_CHECK_STRING_BYTES]: Call
1859         check_string_bytes only if not noninteractive, increase count to 50.
1861 2000-10-18  Miles Bader  <miles@lsi.nec.co.jp>
1863         * insdel.c (adjust_markers_for_delete): Handle before-insertion
1864         markers correctly.
1866 2000-10-17  Gerd Moellmann  <gerd@gnu.org>
1868         * alloc.c (pure_bytes_used): Renamed from pureptr.
1869         (ALIGN): New macro.
1870         (pure_alloc): New function.
1871         (make_pure_string, pure_cons, make_pure_float, make_pure_vector):
1872         Use it.
1873         (Fpurecopy): Use PURE_POINTER_P.
1875         * xdisp.c (try_cursor_movement): Use cursor_row_p also when
1876         PT has moved backward.
1877         
1878         * xdisp.c (cursor_row_p): Take continued lines into account.
1880         * alloc.c (mark_object) [GC_CHECK_STRING_BYTES]: Check validity of
1881         string's size_byte.
1882         (check_string_bytes) [GC_CHECK_STRING_BYTES]: New function.
1883         (check_string_bytes_count) [GC_CHECK_STRING_BYTES]: New variable.
1884         (allocate_string) [GC_CHECK_STRING_BYTES]: Call it for every 10th
1885         string allocated.
1887         * xdisp.c (forward_to_next_line_start): Switch iterator's handling
1888         of selective display off while searching for the next line start.
1890 2000-10-17  Kenichi Handa  <handa@etl.go.jp>
1892         * Makefile.in (term.o): Depend on dispextern.h.
1894 2000-10-16  Stefan Monnier  <monnier@cs.yale.edu>
1896         * keymap.c (keymap_memberp): Ensure that nil is not a member.
1898 2000-10-16  Gerd Moellmann  <gerd@gnu.org>
1900         * xdisp.c (set_iterator_to_next): Reset box start and end flags of
1901         the iterator at the beginning, so that they can be set later on,
1902         for instance in reseat_at_next_visible_line_start, without being
1903         overwritten.
1905         * xfns.c (pbm_format): Add :foreground and :background keywords.
1906         (PBM_FOREGROUND, PBM_BACKGROUND): New enumerators.
1907         (xbm_load): Recognize foreground and background color
1908         specifications.
1910 2000-10-16  Eli Zaretskii  <eliz@is.elta.co.il>
1912         * dispextern.h (unspecified_fg, unspecified_bg): Declare.
1914         * dosfns.c (unspecified_fg, unspecified_bg): Remove extern
1915         declaration.
1917         * msdos.c (IT_set_face): Compare highlighted face with the default
1918         face, and invert colors if these faces' colors are identical.
1919         (Fmsdos_remember_default_colors): Don't swap foreground and
1920         background colors in initial_colors[].
1921         (IT_set_frame_parameters): Don't swap frame's foreground and
1922         background pixels.  If ALIST includes "(reverse . t)", swap
1923         foreground-color and background-color properties in frame's
1924         param_alist.  If the original frame's param_alist doesn't specify
1925         the colors, store unspecified-fg and unspecified-bg, reversed if
1926         required.
1928         * frame.c (Fframe_parameters): If a tty's frame's param_alist says
1929         the colors are unspecified and reversed, reverse fore- and back-
1930         ground in the returned value.
1931         (Fframe_parameter): Ditto.
1933 2000-10-16  Gerd Moellmann  <gerd@gnu.org>
1934         
1935         * xdisp.c (find_last_unchanged_at_beg_row): Renamed from
1936         get_last_unchanged_at_beg_row.
1937         (find_first_unchanged_at_end_row): Renamed from
1938         get_first_unchanged_at_end_row.
1939         (find_first_unchanged_at_end_row): Convert assertions to
1940         unconditional tests which abort.  When looking for a row in
1941         unchanged text, don't go further back than first_text_row.
1943         * xdisp.c (try_scrolling) <cursor in scroll margin at the bottom>:
1944         Don't add in the last line's height when deciding if the new
1945         position is below the scroll margin.
1947 2000-10-16  Miles Bader  <miles@gnu.org>
1949         * editfns.c (Fconstrain_to_field): Check carefully for field
1950         boundaries if either OLD_POS or NEW_POS has a non-nil field
1951         property, even if they're the same.
1953 2000-10-16  Kenichi Handa  <handa@etl.go.jp>
1955         * xterm.c (x_draw_box_rect): Fix the calculation of width and
1956         height for XFillRectangle.
1958 2000-10-15  Stefan Monnier  <monnier@cs.yale.edu>
1960         * syntax.c (Fstring_to_syntax): New function extracted from
1961         Fmodify_syntax_entry.
1962         (Fmodify_syntax_entry): Use it and document the ! and | fences.
1963         (skip_chars, Fforward_comment): Remove unused variables.
1964         (syms_of_syntax): Add defsubr for string-to-syntax.
1965         (describe_syntax): Add code for comment and string fences.
1967 2000-10-14  Stefan Monnier  <monnier@cs.yale.edu>
1969         * keymap.c (access_keymap): Add AUTOLOAD parameter.
1970         Do the meta->esc mapping.  Call get_keyelt before returning.
1971         Start scanning from the second element (the first is always `keymap')
1972         to make it easier to detect when we reach a parent map.
1973         Handle the case of inheriting from a symbol whose function is a map.
1974         (Fkeymap_parent): Also handle the `inherit from symbol' case.
1975         (fix_submap_inheritance, Fdefine_key): Update call to access_keymap.
1976         (get_keyelt, Flookup_key): Update call to access_keymap.
1977         Remove the meta->esc mappings.
1978         (define_as_prefix): Delete old disabled code.
1979         (menu_item_p): New function.
1980         (where_is_internal_1): Skip over the few remaining menu items.
1981         * lisp.h (access_keymap): Update prototype.
1982         * keyboard.c (read_char, menu_bar_items, tool_bar_items):
1983         Update call to access_keymap.
1984         (follow_key, read_key_sequence): Update calls to access_keymap.
1985         Remove the meta->esc mappings.
1987 2000-10-13  Gerd Moellmann  <gerd@gnu.org>
1989         * dispnew.c (direct_output_for_insert): Call set_iterator_to_next
1990         with additional argument.
1992         * xdisp.c (cursor_row_p): New function.
1993         (try_cursor_movement, display_line): Use it.
1994         
1995         * xdisp.c (append_space): Also save/restore iterator's current
1996         character and its length.
1998         * xdisp.c (init_from_display_pos): Add an assertion.
1999         (handle_stop): Don't set iterator's add_overlay_start.
2000         (handle_invisible_prop): Likewise.
2001         (load_overlay_strings): If text under an overlay is invisible,
2002         take both before- and after-strings into account when the iterator
2003         is positioned either at the start or at the end of the overlay.
2004         (forward_to_next_line_start): Rewritten.
2005         (reseat_at_next_visible_line_start): Rewritten.
2006         (set_iterator_to_next): Add parameter RESEAT_P.
2008         * dispextern.h (struct it): Remove member add_overlay_start.
2009         (set_iterator_to_next): Change prototype.
2011 2000-10-13  Kenichi Handa  <handa@etl.go.jp>
2013         * coding.c (code_convert_region): Be sure to initialize
2014         coding->category_idx.
2015         (decode_coding_string): Set coding->src_multibyte and
2016         coding->dst_multibyte before using CODING_REQUIRE_DECODING.
2017         (encode_coding_string): Set coding->src_multibyte and
2018         coding->dst_multibyte before using CODING_REQUIRE_ENCODING.
2020 2000-10-12  Stefan Monnier  <monnier@cs.yale.edu>
2022         * xfns.c (Fx_create_frame): Don't bother calling
2023         face-set-after-frame-default since the caller does it for us anyway.
2025 2000-10-12  Eli Zaretskii  <eliz@is.elta.co.il>
2027         * window.c (coordinates_in_window): Fix detection of vertical line
2028         on character terminals.
2030 2000-10-12  Gerd Moellmann  <gerd@gnu.org>
2032         * editfns.c (save_excursion_save): Additionally record the
2033         selected window.
2034         (save_excursion_restore): If buffer was visible in a window, and a
2035         different window was selected, and the old selected window is
2036         still live, restore point in that window.
2038 2000-10-12  Kenichi Handa  <handa@etl.go.jp>
2040         * xterm.c (x_produce_glyphs): Handle
2041         unibyte_display_via_language_environment correctly.
2043         * regex.c (regex_compile): Change the way of handling a range from
2044         unibyte char to multibyte char.
2046         * syntax.c (skip_chars): Change the way of handling a range from
2047         unibyte char to multibyte char.
2049         * process.c (read_process_output): Cancel previous change.
2051 2000-10-11  Eli Zaretskii  <eliz@is.elta.co.il>
2053         * search.c (Fsearch_backward, Fsearch_forward): Doc fix.
2055         * charset.c (Ffind_charset_string): Doc fix.
2056         (Ffind_charset_region): Doc fix.
2058 2000-10-11  Kenichi Handa  <handa@mule.m17n.org>
2060         * process.c (read_process_output): Fix previous change.  Adjust
2061         multibyteness of text to insert in a buffer by
2062         string_make_unibyte/multibyte instead of
2063         Fstring_as_unibyte/multibyte.
2065 2000-10-10  Andreas Schwab  <schwab@suse.de>
2067         * alloc.c (mark_object): Remove all workarounds installed on
2068         1993-08-08.
2070 2000-10-10  Kenichi Handa  <handa@etl.go.jp>
2072         * fns.c (READ_QUADRUPLET_BYTE): Set *NCHARS_RETURN before
2073         returning.
2074         (base64_encode_1): Make it work for a text of multibyte form.
2075         (Fbase64_decode_region): Allocate sufficient memory for multibyte
2076         case.  Don't call str_to_multibyte because base64_decode_1
2077         produces correct multibyte form for eight-bit codes.
2078         (Fbase64_decode_string): Adjusted for the change of
2079         base64_decode_1.
2080         (base64_decode_1): New args MULTIBYTE and NCHARS_RETURN.  If
2081         MULTIBYTE is nonzero, produce correct multibyte form for eight-bit
2082         codes.
2084         * charset.h (CHAR_STRING): Optimized for single byte characters.
2086 2000-10-09  Andreas Schwab  <schwab@suse.de>
2088         * process.c (Fopen_network_stream) [HAVE_GETADDRINFO]: Reset S to
2089         -1 after socket is closed, to fall through to error processing.
2091 2000-10-09  Eli Zaretskii  <eliz@is.elta.co.il>
2093         * msdos.c (IT_set_frame_parameters): Don't initialize Lisp_Object
2094         variables.  If ALIST includes foreground-color or
2095         background-color, change also the colors of the default face for
2096         this frame.
2098 2000-10-08  Eli Zaretskii  <eliz@is.elta.co.il>
2100         * msdos.c (top-level) <Qbackground_color, Qforeground_color>: Make
2101         them extern (they are defined on xfaces.c).
2102         (syms_of_msdos): Don't intern and don't staticpro
2103         Qbackground_color and Qforeground_color.
2105 2000-10-07  Eli Zaretskii  <eliz@is.elta.co.il>
2107         * frame.c (Fframe_parameter): For non-windowed frames, if
2108         f->param_alist says foreground or background color is unspecified,
2109         call tty_color_name to return the color name computed from the
2110         frame's current colors.
2112 2000-10-06  Dave Love  <fx@gnu.org>
2114         * terminfo.c (ospeed): Don't declare.
2116         * sysdep.c: Don't include string.h.
2117         (h_errno): Declare conditional also on TRY_AGAIN.
2119         * charset.c (Ffind_charset_string): Doc fix.
2121         * fns.c (Fbase64_encode_region, Fbase64_encode_string) 
2122         (Fbase64_decode_region, Fbase64_decode_string): More explicit
2123         error messages.
2125 2000-10-05  Dave Love  <fx@gnu.org>
2127         * xmenu.c (Fx_popup_menu, Fx_popup_dialog): Check for tool-bar
2128         position like menu-bar.
2130 2000-10-05  Gerd Moellmann  <gerd@gnu.org>
2132         * keyboard.c (Frecursive_edit): Make sure redisplay can happen.
2134         * xdisp.c (handle_single_display_prop): Use safe_call1.
2135         (safe_call): Renamed from call_function.
2136         (safe_call1): New function.
2137         (handle_fontified_prop): Use safe_call1 instead of call1.
2138         (safe_eval): Renamed from eval_form.
2139         (safe_eval_handler): Renamed from eval_handler.
2140         (handle_single_display_prop, display_mode_element): Use safe_eval
2141         instead of eval_form.
2143         * xfaces.c (merge_face_heights): Use safe_call instead of
2144         call_function.
2146         * keyboard.c (show_help_echo): Use safe_call instead of
2147         call_function; use safe_eval instead of eval_form.
2149         * lisp.h (safe_call): Renamed from call_function.
2150         (safe_eval): Renamed from eval_form.
2151         (safe_call1): Add prototype.
2153 2000-10-05  Miles Bader  <miles@lsi.nec.co.jp>
2155         * xfns.c (image_ascent): Rearrange ascent calculation for the
2156         has-a-font case.
2158 2000-10-04  Stefan Monnier  <monnier@cs.yale.edu>
2160         * keymap.c (Fwhere_is_internal): Ignore `menu-bar' and `tool-bar'.
2161         (where_is_internal_1): Don't bother ignoring menu-items any more.
2163 2000-10-04  Gerd Moellmann  <gerd@gnu.org>
2165         * keyboard.c (update_menu_bindings): New variable.
2166         (parse_menu_item): Use AREF.  If update_menu_bindings
2167         is 0, don't update menu bindings.
2168         (syms_of_keyboard): New Lisp variable `update-menu-bindings'.
2170 2000-10-03  Eli Zaretskii  <eliz@is.elta.co.il>
2172         * alloc.c (Fgarbage_collect): Prevent compiler warning for a call
2173         to `mark_object'.
2175 2000-10-02  Stefan Monnier  <monnier@cs.yale.edu>
2177         * syntax.c (forw_comment): Match nestedness of ender/starter.
2178         (Fforward_comment): Treat an unmatched \n comment-ender as whitespace.
2179         (prev_char_comstart_first): Remove.
2180         (back_comment): Check two-char comment markers more carefully
2181         to better handle overlapping cases like *//* or /* */* */ ...
2182         Match nestedness of ender/starter.
2184 2000-10-02  Dave Love  <fx@gnu.org>
2186         * config.in (HAVE_GAI_STRERROR): Add undef.
2188         * process.c (Fopen_network_stream): Use it.
2190         * m/alpha.h (NO_REMAP): Don't define.
2192 2000-10-02  Gerd Moellmann  <gerd@gnu.org>
2194         * lisp.h (wrong_type_argument): Remove NO_RETURN, the function can
2195         return with a string converted to an integer or vice versa when
2196         Vmocklisp_arguments is t.
2197         (Fsignal): Likewise.  The function can return for `quit'.
2198         (struct gcpro): Declare member `var' to point to a volatile
2199         Lisp_Object.
2201         * eval.c (error): Prevent compiler warning.
2203 2000-09-30  Stefan Monnier  <monnier@cs.yale.edu>
2205         * keymap.c (keymap_memberp): New function.
2206         (Fset_keymap_parent): Use it.
2207         (fix_submap_inheritance): Use get_keyelt, get_keymap_1 and KEYMAPP.
2208         Use keymap_memberp to avoid creating cycles.
2209         (access_keymap): Use KEYMAPP.
2211 2000-09-30  Gerd Moellmann  <gerd@gnu.org>
2213         * process.c (Fopen_network_stream) [HAVE_GETADDRINFO]: Use
2214         gai_strerror.  Make sure xerrno is set if connect fails.  Improve
2215         error recovery.
2217 2000-09-29  Jason Rumney <jasonr@gnu.org>
2219         * w32term.c (w32_char_font_type, w32_encode_char)
2220         (x_produce_glyphs): Distinguish single and multibyte BDF fonts.
2221         (w32_bdf_per_char_metric): New function.
2222         (w32_per_char_metric): Use it.
2223         (x_draw_glyph_string_background): Always draw background for BDF
2224         glyphs.
2226         * w32bdf.h (glyph_struct, cache_bitmap): Cache bitmap data, not
2227         GDI object which is a scarce resource.
2229         * w32bdf.c (search_file_line): Fix skipping of whitespace.
2230         (get_quoted_string): Fix limit on memchr search.
2231         (set_bdf_font_info): Use unsigned chars. Negate yoffset.
2232         (w32_init_bdf_font): Initialize codepoint and bitmap heaps.
2233         (w32_free_bdf_font): Free bitmaps and codepoints on heaps.
2234         (get_cached_font_char, cache_char_offset): Use macro
2235         BDF_CODEPOINT_RANGE_COVER_P.
2236         (cache_char_offset): Use HeapAlloc to allocate codepoints on own heap.
2237         (clear_cached_bitmap_slots): New function.
2238         (GET_HEX_VALUE): G-Z, g-z are not hex.
2239         (w32_get_bdf_glyph): Convert to DIB format. Return bytes read.
2240         (get_bitmap_with_cache): Use new cache implementation.
2241         (create_offscreen_bitmap): New function.
2242         (w32_BDF_TextOut): Use it. Draw glyphs as DIBs.
2244         * w32term.c (x_produce_glyphs):  If the distance from the current
2245         position to the next tab stop is less than a canonical character
2246         width, use the tab stop after that.
2247         (x_draw_glyphs): Handle case START and END are out of bounds more
2248         carefully.
2249         (x_clear_mouse_face): Block/unblock input.
2250         (x_display_and_set_cursor): Don't show a hollow box cursor for
2251         buffers whose cursor_type is nil.
2253 2000-09-29  Gerd Moellmann  <gerd@gnu.org>
2255         * xfns.c (x_set_tool_bar_lines): Clear frame when tool bar
2256         disappears.
2258         * dispextern.h (updating_frame): Declare extern.
2260 2000-09-29  Andreas Schwab  <schwab@suse.de>
2262         * m/ia64.h: Remove hack of not prototyping bcopy, etc.
2264 2000-09-29  Gerd Moellmann  <gerd@gnu.org>
2266         * keyboard.c (menu_bar_one_keymap): If KEYMAP is a symbol,
2267         use its function definition.
2268         (tool_bar_items): Likewise.
2270         * lisp.h (fatal): Declare NO_RETURN.
2271         
2272 2000-09-29  Kenichi Handa  <handa@etl.go.jp>
2274         * keymap.c: Remove the line "#undef NULL".
2276 2000-09-28  Gerd Moellmann  <gerd@gnu.org>
2278         * xterm.c (x_make_frame_visible): Try harder to make the frame
2279         visible.
2281 2000-09-28  Dave Love  <fx@gnu.org>
2283         * s/osf5-0.h: Define USE_MMAP_FOR_BUFFERS, not REL_ALLOC_MMAP.
2285         * s/sunos413.h (USE_MMAP_FOR_BUFFERS): Define.
2287         * .gdbinit (xreload): Note its need on GNU/Linux.
2289         * m/alpha.h (XUINT) [REL_ALLOC && _MALLOC_INTERNAL]: Don't declare
2290         r_alloc, r_alloc_free.
2292 2000-09-28  Kenichi Handa  <handa@etl.go.jp>
2294         * syntax.c (skip_chars): Handle negation correctly.
2296 2000-09-27  Gerd Moellmann  <gerd@gnu.org>
2298         * xfaces.c (realize_default_face): Call set_lface_from_font_name
2299         with non-zero FORCE_P argument.
2301         * dispnew.c (adjust_glyph_matrix, enable_glyph_matrix_rows): 
2302         Add assertions.
2304         * xdisp.c (window_box_height): Add an assertion.
2306         * xfns.c (x_set_tool_bar_lines): Don't use more lines for the
2307         tool-bar than is available.
2308         (x_change_window_heights): Renamed from x_set_menu_bar_lines_1.
2310 2000-09-27  Dave Love  <fx@gnu.org>
2312         * s/irix6-5.h: Now works 64-bit.  Tidied.
2314 2000-09-26  Gerd Moellmann  <gerd@gnu.org>
2316         * lisp.h (XINT) [EXPLICIT_SIGN_EXTEND]: Use BITS_PER_EMACS_INT
2317         instead of BITS_PER_INT.
2318         (XINT, XUINT) [NO_UNION_TYPE]: Cast result to EMACS_INT and
2319         EMACS_UINT, respectively.
2320         (NO_UNION_TYPE) [USE_LISP_UNION_TYPE]: Undefine.
2322         * m/sparc.h (BITS_PER_EMACS_INT) [__arch64__]: Don't define.
2324         * unexelf.c (ELFSIZE) [__NetBSD__ && __sparc_v9__]: Define to 64.
2326         * window.c (freeze_window_starts): Construct last argument for
2327         foreach_window differently.
2329         * xfns.c (x_decode_color): Don't return a Lisp_Object.
2331         * lisp.h (union Lisp_Object) [!NO_UNION_TYPE]: Use EMACS_INT and
2332         EMACS_UINT instead of `int' and `unsigned int'.
2333         (XSET) [EXPLICIT_SIGN_EXTEND]: Use EMACS_INT instead of `int'.
2335         * frame.h (struct frame): Make the `nothing' member of union
2336         output_data an EMACS_INT.
2338         * alloc.c (GC_CHECK_STRING_BYTES): Temporarily define, for bug
2339         hunting.
2340         (struct sdata) [GC_CHECK_STRING_BYTES]: Always record the string's
2341         size in the sdata structure.
2342         (SDATA_NBYTES, SDATA_DATA): New macros.
2343         (SDATA_OF_STRING, SDATA_SIZE) [GC_CHECK_STRING_BYTES]: Define
2344         differently for the different layout of the sdata structure.
2345         (allocate_string_data) [GC_CHECK_STRING_BYTES]: Record string size
2346         in sdata.
2347         (sweep_strings, compact_small_strings) [GC_CHECK_STRING_BYTES]:
2348         Check that size recorded in the string size and size recorded in
2349         the sdata structure agree.
2351 2000-09-25  Dave Love  <fx@gnu.org>
2353         * buffer.c: Include stdio.h.
2355         Partly suggested by Eduardo Horvath <eeh@netbsd.org>.
2356         
2357         * ralloc.c (__malloc_extra_blocks): Declare as __malloc_size_t.
2359         * alloc.c (__malloc_size_t) [DOUG_LEA_MALLOC]: Don't redefine it.
2360         (__malloc_size_t) [!DOUG_LEA_MALLOC]: Define unconditionally as
2361         size_t.
2362         (__malloc_extra_blocks): Declare as __malloc_size_t.
2364 2000-09-25  Gerd Moellmann  <gerd@gnu.org>
2366         * alloc.c (mark_image): Use GC_NILP instead of NILP.
2368         * keyboard.c (show_help_echo): Set help_echo_showing_p.
2369         (read_char): If help-echo is showing, preserve the echo area
2370         when redisplaying.
2372         * xdisp.c (help_echo_showing_p): New variable.
2373         (set_message): Reset it to 0.
2374         (init_xdisp): Initialize help_echo_showing_p.
2376         * dispextern.h (help_echo_showing_p): Declare extern.
2378         * config.in: Fix typo in __GNUC_MINOR__.
2380         * keyboard.h (quit_throw_to_read_char): Declare NO_RETURN.
2382         * s/freebsd.h (POSIX_SIGNALS): Define.
2384         * xterm.c (x_clear_mouse_face): Block/unblock input.
2386 2000-09-24  Dave Love  <fx@gnu.org>
2388         * fns.c (base64_encode_1): Fix last change.
2390 2000-09-22  Gerd Moellmann  <gerd@gnu.org>
2392         * dispnew.c (enable_glyph_matrix_rows): Remove xasserts.
2394         * xdisp.c (try_window_reusing_current_matrix): More fixes
2395         for the case window has a header-line.
2397 2000-09-22  Dave Love  <fx@gnu.org>
2399         * xdisp.c (syms_of_xdisp): Defvar Vmenu_bar_update_hook to provide
2400         a doc string.
2402         * xterm.c [SOLARIS2]: Remove redundant include of string.h.
2404         * fns.c (Fstring_as_unibyte, Fstring_as_multibyte): Doc fix.
2406 2000-09-21  Gerd Moellmann  <gerd@gnu.org>
2408         * config.in (NO_RETURN): Define as `__attribute__((__noreturn__))'
2409         for GCC >= 2.5.
2411         * lisp.h (wrong_type_argument, Fthrow, Fsignal, error): Declare
2412         NO_RETURN.
2414         * window.c, term.c, xmenu.c, xrdb.c, emacs.c, macros.c,
2415         * keymap.c, insdel.c, marker.c, minibuf.c, fileio.c, dired.c,
2416         * indent.c, search.c, alloc.c, data.c: Avoid some more compiler
2417         warnings.
2418         
2419         * marker.c (byte_char_debug_check): Return void.
2421         * xfns.c (Fx_create_frame): Set default frame parameter value
2422         for tool-bar-lines to 1.
2424         * dispnew.c (scrolling_window): Compare y-positions of rows
2425         equal at the start.  Some simplification.
2427         * xdisp.c (try_window_reusing_current_matrix): Fix computation of
2428         reused rows' y-position in the case window has a header-line, and
2429         new window start is greater than old window start.
2431         * process.c (process_sent_to): New variable.
2432         (send_process): Workaround for a crash on sparc-sun-solaris-2.6
2433         with GCC 2.95.2 caused by a parameter being clobbered by longjmp.
2434         Declare more parameters volatile.
2436         * lread.c (Vrecursive_load_depth_limit): New variable.
2437         (Fload): Check recursive loads whose recursion depth exceeds
2438         Vrecursive_load_depth_limit.
2439         (syms_of_lread): DERFAR_LISP recursive-load-depth-limit.
2441 2000-09-20  Gerd Moellmann  <gerd@gnu.org>
2443         * fileio.c (Fread_file_name): Doc fix.
2445         * editfns.c (Fmessage_or_box): Doc fix.
2447         * fns.c (Fy_or_n_p, Fyes_or_no_p): Doc fix.
2449         * xfns.c (xbm_scan): Allow C-style comments.
2450         
2451         * xfns.c (xpm_init_color_cache) [ALLOC_XPM_COLORS]: If color
2452         symbols are specified, add color translations to the cache.
2453         (xpm_color_bucket, xpm_cache_color) [ALLOC_XPM_COLORS]: New
2454         functions.
2455         (xpm_lookup_color) [ALLOC_XPM_COLORS]: Use xpm_color_bucket and
2456         xpm_cache_color.
2457         (xpm_load) [ALLOC_XPM_COLORS]: Pass frame and XPM attributes
2458         structures to xpm_init_color_cache.
2460 2000-09-19  Gerd Moellmann  <gerd@gnu.org>
2462         * dispnew.c (update_window_line): Make sure to always draw
2463         mode-lines.
2465 2000-09-19  Andrew Innes  <andrewi@gnu.org>
2467         * makefile.nt (bootstrap-emacs): Don't change directory.
2469 2000-09-19  Kenichi Handa  <handa@etl.go.jp>
2471         * charset.h (UNIBYTE_STR_AS_MULTIBYTE_P): Fix previous change.
2473         * ccl.c (Fccl_execute_on_string): Make multibyte string correctly.
2474         If output buffer is too small, signal an appropriated error.
2476 2000-09-18  Dave Love  <fx@gnu.org>
2478         * keyboard.c (menu_bar_items, tool_bar_items) 
2479         (current_active_maps): Remove redundant get_local_map call.
2481 2000-09-18  Gerd Moellmann  <gerd@gnu.org>
2483         * xterm.c (x_display_and_set_cursor): Don't show a hollow box
2484         cursor for buffers whose cursor_type is nil.
2485         
2486         * xterm.c (x_draw_image_glyph_string): Remove a comment describing
2487         a feature to implement that is already implemented.
2488         (note_mouse_highlight, x_find_ccl_program): Avoid some compiler
2489         warnings.
2491         * xfns.c (x_clear_image_1): New function.
2492         (x_clear_image): Use it.
2493         (x_from_xcolors): Use x_clear_image_1; don't free the image's
2494         mask.
2496         * dispnew.c (update_window): Move test for invisible lines
2497         at the top to update_window_line.
2498         (update_window_line): Handle invisible lines here.
2500         * xfns.c (clear_image_cache): Clear current matrices of all
2501         frames sharing an image cache.  Block input while freeing
2502         images.  Fix timestamp comparison.
2503         (x_clear_image): Also free the mask.
2505         * xfns.c (lookup_image): Block input while loading the image so
2506         that we won't get interrupted in a state where the image isn't yet
2507         set up completely.
2508         (xbm_load_image, xbm_load, xpm_load, xpm_load, lookup_rgb_color)
2509         (lookup_pixel_color, x_to_xcolors, x_from_xcolors)
2510         (x_disable_image, x_build_heuristic_mask, pbm_load, png_load)
2511         (jpeg_load, tiff_load, gif_load, gs_load): Don't block/unblock
2512         input.
2514 2000-09-16  Gerd Moellmann  <gerd@gnu.org>
2516         * dispnew.c (update_window): Make sure to make desired rows
2517         current even if they are completely invisible at the top
2518         of a window.
2520 2000-09-15  Gerd Moellmann  <gerd@gnu.org>
2522         * xfns.c (lookup_image): Build mask before applying an algorithm.
2523         Recognize algorithm `disabled'.
2524         (cross_disabled_images): New variable.
2525         (COLOR_INTENSITY): New macro.
2526         (x_detect_edges): Use COLOR_INTENSITY.
2527         (x_disable_image): New function.
2528         (syms_of_xfns): DEFVAR_BOOL cross_disabled_images.
2530         * xdisp.c (build_desired_tool_bar_string): For a toolbar item in
2531         disabled state, don't apply an image transformation algorithm if
2532         the user specified an image for the disabled state.  Use
2533         `:algorithm disabled' for creating a disabled item's image if the
2534         user hasn't specified an image.
2536         * xfns.c (ALLOC_XPM_COLORS): Define if we can use Emacs' color
2537         allocation functions with the XPM lib.
2538         (struct xpm_cached_color) [ALLOC_XPM_COLORS]: New structure.
2539         (XPM_COLOR_CACHE_BUCKETS) [ALLOC_XPM_COLORS]: New macro.
2540         (xpm_color_cache) [ALLOC_XPM_COLORS]: New variable.
2541         (xpm_init_color_cache, xpm_free_color_cache, xpm_lookup_color)
2542         (xpm_alloc_color, xpm_free_colors) [ALLOC_XPM_COLORS]: New
2543         functions.
2544         (xpm_load) [ALLOC_XPM_COLORS]: Use Emacs' own color allocation
2545         functions, if possible, because these handle color allocation
2546         failure more gracefully.
2547         (Fimage_mask_p): New function.
2549         * xfns.c (QCmatrix, QCcolor_adjustment, QCmask, Qemboss)
2550         (Qedge_detection, Qheuristic): New symbols.
2551         (syms_of_xfns): Initialize new symbols.
2552         (lookup_image): Handle `:mask X', `:algorithm emboss', and
2553         `algorithm (edge-detection ...)'.
2554         (xbm_format, xpm_format, pbm_format, png_format, jpeg_format):
2555         (tiff_format, gif_format, gs_format): Add `:mask'.
2556         (XBM_MASK, XPM_MASK, PBM_MASK, PNG_MASK, JPEG_MASK, TIFF_MASK)
2557         (GIF_MASK, GS_MASK): New enumerators.
2558         (x_laplace_read_row, x_laplace_write_row): Functions removed.
2559         (emboss_matrix, laplace_matrix): New variables.
2560         (x_to_xcolors, x_from_xcolors, x_detect_edges, x_emboss)
2561         (x_edge_detection): New functions.
2562         (x_laplace): Rewritten in terms of x_detect_edges.
2563         (x_build_heuristic_mask): If image has a mask, free it.
2565 2000-09-14  Andrew Innes  <andrewi@gnu.org>
2567         * makefile.w32-in: Revert to Unix line endings.
2569 2000-09-14  Andrew Innes  <andrewi@gnu.org>
2571         * makefile.w32-in: Standardize indentation somewhat.
2572         (bootstrap-temacs): Use $(ARGQUOTE) instead of literal quotes, to
2573         cater for differences between shells.
2575         * w32term.c (w32_per_char_metric): Handle non-TrueType fonts.
2577 2000-09-14  Gerd Moellmann  <gerd@gnu.org>
2579         * xterm.c (x_produce_glyphs): If the distance from the current
2580         position to the next tab stop is less than a canonical character
2581         width, use the tab stop after that.
2583 2000-09-14  Dave Love  <fx@gnu.org>
2585         * buffer.c (alloc_buffer_text): Fix xmalloc call.
2587 2000-09-14  Gerd Moellmann  <gerd@gnu.org>
2589         * xdisp.c (handle_fontified_prop): While running fontification
2590         functions, bind `fontification-functions' and
2591         `after-change-functions' to nil.
2593         * s/freebsd.h, s/irix-5.0.h, s/sol2.h, s/template.h
2594         (USE_MMAP_FOR_BUFFERS): Define instead of REL_ALLOC_MMAP.
2596         * Makefile.in (mallocobj) [SYSTEM_MALLOC]: Don't add ralloc.o.
2598         * emacs.c: Change conditional compilation on REL_ALLOC_MMAP to
2599         USE_MMAP_FOR_BUFFERS.
2601         * insdel.c (make_gap): Use enlarge_buffer_text.
2603         * buffer.c: Move allocation with mmap here, from ralloc.c.  Change
2604         conditional compilation on REL_ALLOC_MMAP to USE_MMAP_FOR_BUFFERS.
2605         (mmap_alloc, mmap_free, mmap_realloc) [REL_ALLOC_MMAP]: Renamed
2606         from former r_alloc_* functions in ralloc.c.
2607         (mmap_page_size, mmap_initialized_p) [REL_ALLOC_MMAP]: New
2608         variables.
2609         (MEM_ALIGN) [REL_ALLOC_MMAP]: New macro.
2610         (mmap_init) [REL_ALLOC_MMAP]: New function.
2611         (alloc_buffer_text, enlarge_buffer_text, free_buffer_text): New
2612         functions replacing macros BUFFER_ALLOC, BUFFER_REALLOC, and
2613         BUFFER_FREE.
2615         * buffer.h (BUFFER_ALLOC, BUFFER_REALLOC, BUFFER_FREE): Removed.
2616         (enlarge_buffer_text): Add prototype.
2618         * ralloc.c: Remove everything having to do with the use of mmap.
2620 2000-09-13  Gerd Moellmann  <gerd@gnu.org>
2622         * sound.c (Fplay_sound): Doc fix.
2624         * keyboard.c: Avoid some more compiler warnings.
2625         (parse_tool_bar_item): Ignore cached key bindings.
2627         * alloc.c: Add some comments about DOUG_LEA_MALLOC's use of mmap
2628         and allocation of Lisp data.
2630 2000-09-12  Gerd Moellmann  <gerd@gnu.org>
2632         * xfaces.c: Remove conditional compilation on SCALABLE_FONTS.
2633         (Finternal_set_lisp_face_attribute): If frame is 0, set new frame
2634         defaults first.
2636         * lread.c (Fload): Put code checking for recursive loads in #if 0.
2638 2000-09-12  Miyashita Hisashi  <himi@meadowy.org>
2640         * ccl.c: Comment fixed.
2641         (MAX_MAP_SET_LEVEL): Increased to 30.
2642         (PUSH_MAPPING_STACK): Enclose with do-while block.
2643         (POP_MAPPING_STACK): Likewise.
2644         (stack_idx_of_map_multiple): New variable.
2645         (CCL_CALL_FOR_MAP_INSTRUCTION): New macro.
2646         (ccl_driver) <CCL_IterateMultipleMap>: If the content is a symbol,
2647         call the corresponding CCL program by
2648         CCL_CALL_FOR_MAP_INSTRUCTION.
2649         (ccl_driver) <CCL_MapSingle>: Likewise.
2650         (ccl_driver) <CCL_MapMultiple>: Rewritten to fix many bugs, deal
2651         with the case where looking up process reaches to the end of
2652         map-set, and call CCL programs as the above change.
2654 2000-09-11  Gerd Moellmann  <gerd@gnu.org>
2656         * xfns.c (png_load, jpeg_load): Declare some variables volatile
2657         that might be clobbered by longjmp.
2658         (check_x_display_info, x_decode_color, create_frame_xic)
2659         (Fx_display_backing_store, Fx_display_visual_class)
2660         (x_build_heuristic_mask, pbm_scan_number): Avoid compiler
2661         warnings.
2663         * lread.c (init_lread): Set Vloads_in_progress to nil.
2664         (Fload): Show list of recursively loaded files, when signaling an
2665         error.
2667         * lread.c (Vloads_in_progress): New variable.
2668         (record_load_unwind): New function.
2669         (Fload): Check for recursive loads.
2670         (syms_of_lread): Initialize Vloads_in_progress.
2671         (read_integer, read1): Avoid some compiler warnings.
2673         * fns.c (concat, Fsubstring, internal_equal, Fnconc): Avoid some
2674         compiler warnings.
2676 2000-09-11  Miles Bader  <miles@gnu.org>
2678         * editfns.c (Fbuffer_string): Doc fix.
2680 2000-09-10  Gerd Moellmann  <gerd@gnu.org>
2682         * ralloc.c (mmap_enlarge): Don't return 0 if successful.
2684 2000-09-09  Ken Raeburn  <raeburn@gnu.org>
2686         * s/netbsd.h: Use NOT_C_CODE, not NO_C_SOURCE, when deciding
2687         whether to include other header files.
2689 2000-09-09  Gerd Moellmann  <gerd@gnu.org>
2691         * xfaces.c (CYCLE_CHECK): Don't use the Lisp_Object returned 
2692         by Fmemq as a boolean.
2694 2000-09-08  Stefan Monnier  <monnier@cs.yale.edu>
2696         * xfaces.c (Finternal_set_lisp_face_attribute): Minor thinko.
2698 2000-09-08  Gerd Moellmann  <gerd@gnu.org>
2700         * ralloc.c (mmap_fd): Remove initializer which can make it
2701         read-only in a dumped Emacs.
2702         (mmap_fd_1): New variable.
2703         (mmap_set_vars): Remove local `fd'.  Save mmap_fd in mmap_fd_1,
2704         restore it from there.
2705         (r_alloc, r_re_alloc, r_alloc_free): Call r_alloc_init
2706         unconditionally so that mmap_fd can be initialized there.
2707         (r_alloc_init_fd): Open-coded in r_alloc_init; function removed.
2708         (r_alloc_init) [REL_ALLOC_MMAP && !MAP_ANON]: Open /dev/zero.
2709         (r_alloc_init) [REL_ALLOC_MMAP && MAP_ANON]: Set mmap_fd to -1.
2711         * xfaces.c (Finternal_merge_in_global_face): Return a Lisp object.
2713         * xdisp.c (dump_glyph_row): Fix printf format string.
2714         (display_line, move_it_in_display_line_to): Avoid compiler
2715         warnings.
2717         * s/freebsd.h (GC_MARK_STACK, REL_ALLOC_MMAP): Define.
2719         * keymap.c (Fset_keymap_parent): Check for cycles in keymap
2720         inheritance.
2722         * xdisp.c (try_window_id): When trying to locate cursor in
2723         unchanged rows at the top, handle the case that we can't find it.
2725         * xterm.c (x_draw_glyphs): Handle case START and END are out
2726         of bounds more carefully.
2728 2000-09-08  Dave Love  <fx@gnu.org>
2730         * s/sol2.h (REL_ALLOC_MMAP): Define.
2731         * s/irix5-0.h (REL_ALLOC_MMAP): Likewise.
2733         * ralloc.c: Don't include string.h (redundant).
2734         (MAP_ANON) [REL_ALLOC_MMAP]: Ensure it's defined.
2735         [!MAP_ANON]: Include fcntl.h.
2736         (mmap_fd) [REL_ALLOC_MMAP]: New variable.
2737         (r_alloc, r_re_alloc, r_alloc_free)
2738         (mmap_enlarge, mmap_set_vars): Use it.
2739         (r_alloc_init_fd): New function.
2740         (__morecore) [SYSTEM_MALLOC]: Don't declare.
2741         (r_alloc_init): Call r_alloc_init_fd.  Conditionalize stuff on
2742         malloc type.
2744         * Makefile.in (allocaobj) [!SYSTEM_MALLOC && REL_ALLOC_MMAP]:
2745         Remove vm-limit.o.
2747         * unexelf.c (SHT_MIPS_DEBUG, HDRR) [__mips__]: Really confine last
2748         change to __NetBSD__.
2750 2000-09-08  Kenichi Handa  <handa@etl.go.jp>
2752         * search.c (compile_pattern): Check the multibyteness of cached
2753         string and PATTERN.
2755 2000-09-08  Miles Bader  <miles@gnu.org>
2757         * xfaces.c (default_face_vector): Function removed.
2758         (Finternal_merge_in_global_face): Restore old global/local
2759         attribute override order.  Use inline loop instead of calling
2760         default_face_vector.
2762 2000-09-07  Gerd Moellmann  <gerd@gnu.org>
2764         * ralloc.c (obtain, relinquish, relinquish, r_alloc_size_in_use)
2765         (get_bloc, relocate_blocs, update_heap_bloc_correspondence)
2766         (resize_bloc, r_alloc_sbrk, r_alloc_init): Add casts to `char *'
2767         where necessary, in case POINTER_TYPE is `void'.
2769 2000-09-07  Eli Zaretskii  <eliz@is.elta.co.il>
2771         * frame.c (make_terminal_frame): Initialize frame foreground and
2772         background colors to unspecified, for the initial instance of an
2773         MSDOS frame.
2775 2000-09-07  Gerd Moellmann  <gerd@gnu.org>
2777         * ralloc.c (mmap_find): Fix overlap computation.
2778         (mmap_enlarge): Compute nbytes before trying to find an
2779         overlapping region.
2781         * xfaces.c (smaller_face): Compare font heights with `<' and `>'
2782         instead of `!='.
2784         * lread.c (syms_of_lread): Change value of regexp
2785         Vbytecomp_version_regexp to not match some XEmacs-compiled files.
2787         * xmenu.c (xdialog_show): When looking up the selection in
2788         menu_items, take `quote' boundaries into account; this corresponds
2789         to a nil ITEM in x-popup-dialog.
2791 2000-09-07  Kenichi Handa  <handa@etl.go.jp>
2793         * charset.h (MIN_CHARSET_OFFICIAL_DIMENSION1): Define it as 0x80,
2794         not 0x81.
2795         (MIN_CHAR_OFFICIAL_DIMENSION1): Define it as ((0x81 - 0x70) << 7).
2797         * coding.c (encode_coding_sjis_big5): Use translation table for
2798         encoding, not decoding.  Fix the handling of latin-jisx0201.
2799         Check for the charset katakana-jisx0201 too.
2800         (ONE_MORE_CHAR): Call translate_char with CHARSET arg -1.
2801         (detect_coding_sjis): Check the byte sequence more rigidly.
2803 2000-09-07  Gerd Moellmann  <gerd@gnu.org>
2805         * xfaces.c (Vparam_value_alist): New variable.
2806         (syms_of_xfaces): Initialize it.
2807         (Finternal_set_lisp_face_attribute): Avoid more consing.
2809         * frame.c (Fframe_parameter): Handle `name' and `background-mode'
2810         specially.
2811         (Fframe_parameter) [HAVE_X_WINDOWS]: Handle `display' specially.
2812         (Qbackground_mode): New variable.
2813         (syms_of_frame_1): Initialize Qbackground_mode.
2815         * lisp.h (Qdisplay): Declare extern.
2817         * xfaces.c (Finternal_set_lisp_face_attribute): If FRAME is 0,
2818         change face on all frames, and change the default for new frames.
2820 2000-09-07  Dave Love  <fx@gnu.org>
2822         * Makefile.in [!SYSTEM_MALLOC && REL_ALLOC_MMAP]: Set mallocobj.
2824 2000-09-07  Kenichi Handa  <handa@etl.go.jp>
2826         * charset.h (MAKE_CHAR): Be sure to set MSB of C1 to 0.
2828         * charset.c: Include composite.h
2829         (lisp_string_width): New function.
2830         (Fstring_width): Call lisp_string_width instead of strwidth.
2832         * Makefile.in (charset.o): Depends on composite.h.
2834         * process.c (read_process_output): Before inserting the decoded
2835         text in the buffer, adjust the multibyteness.
2837 2000-09-06  Gerd Moellmann  <gerd@gnu.org>
2839         * buffer.c (set_buffer_internal_1) [REL_ALLOC_MMAP]: If 
2840         buffer's text buffer is null, map new memory.
2842         * ralloc.c (POINTER, SIZE) [emacs]: Define in terms of
2843         POINTER_TYPE and size_t.
2844         (struct mmap_region) [REL_ALLOC_MMAP]: New structure.
2845         (mmap_regions, mmap_regions_1) [REL_ALLOC_MMAP]: New variables.
2846         (ROUND, MMAP_REGION_STRUCT_SIZE, MMAP_REGION, MMAP_USER_AREA)
2847         [REL_ALLOC_MMAP]: New macros.
2848         (mmap_find, mmap_free, mmap_enlarge, mmap_set_vars)
2849         (mmap_mapped_bytes, r_alloc, r_re_alloc, r_alloc_free)
2850         [REL_ALLOC_MMAP]: New functions.
2852         * emacs.c (Fdump_emacs) [REL_ALLOC_MMAP]: Call mmap_set_vars
2853         before and after unexec.
2855         * buffer.c (init_buffer) [REL_ALLOC_MMAP]: Map new buffer
2856         text buffers if necessary.
2858         * buffer.h (R_ALLOC_DECLARE): Removed because unused.
2859         (r_alloc, r_re_alloc, r_alloc_free): Use POINTER_TYPE and size_t
2860         in prototypes.
2862         * config.in (HAVE_MMAP): Add #undef.
2864 2000-09-05  Gerd Moellmann  <gerd@gnu.org>
2866         * frame.c (Qdisplay_type): New variable.
2867         (syms_of_frame_1): Initialize it.
2868         (Fframe_parameter): New function that avoids consing.
2869         (syms_of_frame): Defsubr it.
2871         * buffer.c (Fother_buffer): Consider buffers as invisible when
2872         they are displayed in a window on an invisible frame.
2874         * window.c (window_loop) <GET_LARGEST_WINDOW>: Fix bug making
2875         get-largest-window always return nil.
2877 2000-09-04  Gerd Moellmann  <gerd@gnu.org>
2879         * lread.c (syms_of_lread): Make Vbytecomp_version_regexp a Lisp
2880         variable; recognize Emacs 19 elc files.
2882 2000-09-04  Miles Bader  <miles@gnu.org>
2884         * xmenu.c (xmenu_show): Call x_set_menu_resources_from_menu_face
2885         before initially popping up the menu, so the menu doesn't flash
2886         when the face settings are significantly different from the
2887         defaults.
2889 2000-09-04  Stefan Monnier  <monnier@cs.yale.edu>
2891         * regex.c (WIDE_CHAR_SUPPORT): New macro.
2892         (btowc, iswctype, wctype) [_LIBC]: Redefine to __<fun>.
2893         (BIT_ALPHA, BIT_ALNUM, BIT_ASCII, BIT_NONASCII, BIT_GRAPH, BIT_PRINT)
2894         (BIT_UNIBYTE): Remove.
2895         (re_match_2_internal): Delete corresponding code and streamline the
2896         BIT_MULTIBYTE case to not bother checking ISUNIBYTE.
2897         (CHAR_CLASS_MAX_LENGTH) [!WIDE_CHAR_SUPPORT]: Set to 9 rather than 6.
2898         (re_wctype_t): New type.
2899         (re_wctype, re_iswctype, re_wctype_to_bit): New functions.
2900         (regex_compile): Use them and fix handling of overly long char classes.
2902 2000-09-03  Andrew Innes  <andrewi@gnu.org>
2904         * makefile.w32-in: Change to DOS line endings.
2906         * s/ms-w32.h (ORDINARY_LINK): New define.
2908         * w32.c (_ANONYMOUS_UNION) [__GNUC__]: New define
2909         (_ANONYMOUS_STRUCT) [__GNUC__]: New define.
2911         * makefile.w32-in (clean): Don't delete config.h and epaths.h.
2912         (distclean): Delete them here instead.
2914         * w32proc.c (compare_env): Convert to uppercase for comparison,
2915         not lowercase, to match how the native Windows shell works.
2917 2000-09-03  Jason Rumney  <jasonr@gnu.org>
2919         * ChangeLog: Remove -unix from coding. Let Emacs autodetect, as
2920         CVS changes the line-ends when checking in/out on DOS/Windows.
2922         * makefile.nt (emacs): Do not change directory to run temacs, as
2923         the load-path is set relative to current directory.
2925 2000-09-03  Miles Bader  <miles@gnu.org>
2927         * xterm.c (x_alloc_lighter_color_for_widget): New function.
2929 2000-09-02  Gerd Moellmann  <gerd@gnu.org>
2931         * xdisp.c (redisplay_mode_lines): New function.
2932         (display_mode_lines): Return number of mode lines displayed.
2933         (echo_area_display): Use redisplay_mode_lines to draw garbaged
2934         mode lines.  Don't temporarily bind redisplay-dont-pause to t.
2936         * emacs.c, callint.c, doc.c, editfns.c: Remove includes of
2937         string.h and strings.h.
2938         (index) [HAVE_INDEX]: Add prototype.
2940         * unexelf.c (SHT_PROGBITS) [__NetBSD__ && !PT_LOAD]: Don't define.
2941         (SHT_MIPS_DEBUG, HDRR) [__NetBSD__ && __mips__]: Define.
2943         * s/netbsd.h [!NO_C_SOURCE]: Include <signal.h>.
2944         (GC_SETJMP_WORKS, GC_MARK_STACK): Define.
2946 2000-09-01  Gerd Moellmann  <gerd@gnu.org>
2948         * lread.c (read1): Accept `?' as symbol constituent, for
2949         compatiblity with XEmacs.
2951 2000-08-31  Stefan Monnier  <monnier@cs.yale.edu>
2953         * regex.h (RE_NO_NEWLINE_ANCHOR): New syntax flag.
2954         (struct re_pattern_buffer): Remove newline_anchor.
2955         * regex.c: Keep namespace clean for GNU libc by renaming <fun>
2956         to __<fun> and using `weak_alias (__<fun>, <fun>)'.
2957         (re_max_failures, fail_stack): Use size_t rather than unsigned.
2958         (regex_compile): For ^ and $, choose between buffer and line (beg|end)
2959         depending on the new RE_NO_NEWLINE_ANCHOR syntax flag.
2960         (print_compiled_pattern, re_search_2, mutually_exclusive_p)
2961         (re_match_2_internal, re_compile_pattern, re_comp, regcomp):
2962         Get rid of references to newline_anchor.
2963         (regcomp): Allocate and precompute a fastmap.
2965 2000-08-31  Gerd Moellmann  <gerd@gnu.org>
2967         * lread.c (openp): GCPRO local variable `filename'.
2969 2000-08-30  Stefan Monnier  <monnier@cs.yale.edu>
2971         * regex.h (struct re_pattern_buffer): Use size_t for used/allocated.
2973         * regex.c: Merge some changes from GNU libc.  Add prototypes.
2974         (bcopy, bcmp, REGEX_REALLOCATE, re_match_2_internal):
2975         Use memcmp and memcpy instead of bcopy and bcmp.
2976         (init_syntax_once): Use ISALNUM.
2977         (PUSH_FAILURE_POINT, re_match_2_internal): Remove failure_id.
2978         (REG_UNSET_VALUE): Remove.  Use NULL instead.
2979         (REG_UNSET, re_match_2_internal): Use NULL.
2980         (SET_HIGH_BOUND, MOVE_BUFFER_POINTER, ELSE_EXTEND_BUFFER_HIGH_BOUND):
2981         New macros.
2982         (EXTEND_BUFFER): Use them (to work with BOUNDED_POINTERS).
2983         (GET_UNSIGNED_NUMBER): Don't use ISDIGIT.
2984         (regex_compile): In handle_interval, return an error rather than try to
2985         unfetch the interval if we can't find the closing brace.
2986         Obey the RE_NO_GNU_OPS syntax bit.
2987         (TOLOWER): New macro.
2988         (regcomp): Use it.
2989         (regexec): Allocate regs.start and regs.end as one block.
2991 2000-08-30  Gerd Moellmann  <gerd@gnu.org>
2993         * xdisp.c (echo_area_display): Check display_completed instead
2994         of calling detect_input_pending.
2996         * dispnew.c (update_frame): Only set display_completed here; move
2997         the update_begin and update_end calls here from update_frame_1.
2998         (update_frame_1): Don't set display_completed here, don't call
2999         update_begin/update_end.
3001         * xfaces.c (set_font_frame_param): Use Fmodify_frame_parameters
3002         instead of store_frame_param.
3004 2000-08-29  Gerd Moellmann  <gerd@gnu.org>
3006         * dispnew.c (build_frame_matrix_from_leaf_window): If a row of a
3007         desired window matrix hasn't been displayed, use the current row
3008         instead.  Make sure that only those frame rows are updated for
3009         which there exists a corresponding enabled desired row.
3010         
3011 2000-08-29  Miles Bader  <miles@gnu.org>
3013         * xfaces.c (default_face_vector): New function.
3014         (Finternal_merge_in_global_face): Use it instead of merge_face_vectors.
3016 2000-08-29  Gerd Moellmann  <gerd@gnu.org>
3018         * lread.c (openp): Prevent temporary string passed to
3019         Ffile_readable_p from being garbage collected.
3021 2000-08-28  Dave Love  <fx@gnu.org>
3023         * keymap.c (store_in_keymap): Add `static' to declaration.
3025 2000-08-28  Gerd Moellmann  <gerd@gnu.org>
3027         * emacs.c, callint.c, doc.c, editfns.c
3028         (toplevel) [HAVE_STRING_H]: Include string.h.
3029         (toplevel) [HAVE_STRINGS_H]: Include strings.h.
3030         (index): Remove prototypes which might conflict with non-standard
3031         definitions of index/strchr.
3033         * s/usg5-3.h (index): Define only if not HAVE_INDEX.
3034         (rindex): Define only if !HAVE_RINDEX.
3036         * s/sco5.h (bcopy, bzero, bcmp): Don't define.
3038         * config.in (HAVE_INDEX, HAVE_RINDEX, HAVE_STRINGS_H): Add undefs.
3040 2000-08-28  Miles Bader  <miles@gnu.org>
3042         * xfaces.c (merge_face_vectors): Clear TO's :font attribute if
3043         made inconsistent by a font-related attribute in FROM.
3044         (merge_face_inheritance): Add function comment.
3046 2000-08-28  Kenichi Handa  <handa@etl.go.jp>
3048         * keyboard.c (read_char_minibuf_menu_prompt): Call read_char with
3049         the 4th arg (PREV_EVENT) Qt to suppress input method.
3051 2000-08-27  Stefan Monnier  <monnier@cs.yale.edu>
3053         * regex.c: Indent cpp directives and remove parens after `defined'.
3054         (PTR_TO_OFFSET, POS_AS_IN_BUFFER): Move to a better place.
3055         (ISDIGIT, ISCNTRL, ISXDIGIT) [!emacs]: Remove duplicate definition.
3056         (regex_compile): Use RE_FRUGAL instead of RE_ALL_GREEDY.
3057         (re_compile_pattern): Use size_t for length.
3058         (init_syntax_once): Move to a better place.
3059         * regex.h: Merge changes from GNU libc.  Indent cpp directives.
3060         (RE_FRUGAL): Replaces RE_ALL_GREEDY (inverted meaning).
3062         * syntax.c (back_comment): Detect cases where a comment-starter is
3063         actually inside another comment as in:   /* a // b */ c // d \n.
3064         Make it clear that `comstart_pos' is unused for nested comments.
3066         * keymap.c (store_in_keymap, fix_submap_inheritance): New prototypes.
3067         (KEYMAPP): New macro.
3068         (Fkeymap_parent, Fset_keymap_parent): Use it.
3069         (fix_submap_inheritance): Mark it static.
3070         (define_as_prefix, describe_buffer_bindings, describe_command)
3071         (describe_translation, describe_map): Complete prototypes.
3073         * lisp.h (store_in_keymap, fix_submap_inheritance): Remove.
3075         * keyboard.c (menu_bar_item): Detect duplicate entries for all items
3076         to better match the key-lookup behavior.
3078 2000-08-27  Gerd Moellmann  <gerd@gnu.org>
3080         * xfaces.c (lface_fully_specified_p): Handle :inherit.
3081         (Finternal_set_lisp_face_attribute): Fix typo in error message.
3083 2000-08-27  Eli Zaretskii  <eliz@is.elta.co.il>
3085         * Makefile.in (dispnew.o, indent.o, fontset.o, minibuf.o)
3086         (process.o, scroll.o, sysdep.o): Depend on keyboard.h.
3087         (xterm.o): Depend on coding.h
3089 2000-08-26  Kenichi Handa  <handa@etl.go.jp>
3091         * cmds.c (internal_self_insert): Delete '#ifdef HAVE_FACES' and
3092         the corresponding '#endif'.
3094 2000-08-26  Miles Bader  <miles@gnu.org>
3096         * dispextern.h (enum lface_attribute_index): Add LFACE_INHERIT_INDEX.
3097         * xfaces.c (QCinherit): New variable.
3098         (syms_of_xfaces): Initialize it.
3099         (LFACE_INHERIT): New macro.
3100         (Finternal_get_lisp_face_attribute)
3101         (merge_face_vector_with_property) 
3102         (Finternal_set_lisp_face_attribute): Deal with :inherit attribute.
3103         (check_lface_attrs): Allow new types of face height.  Check
3104         inherit attribute.
3105         (CYCLE_CHECK): New macro.
3106         (merge_face_inheritance): New function.
3107         (merge_face_vectors): Merge inherited faces too.  Add F and
3108         CYCLE_CHECK arguments.
3109         (merge_face_vector_with_property, Finternal_merge_in_global_face)
3110         (lookup_named_face, lookup_derived_face, realize_named_face)
3111         (face_at_string_position, face_at_buffer_position):  Supply
3112         new F and CYCLE_CHECK arguments to merge_face_vectors.
3113         (merge_face_heights): New function.
3114         (merge_face_vectors, merge_face_vector_with_property) 
3115         (Finternal_set_lisp_face_attribute): Call merge_face_heights to
3116         handle relative face heights.
3117         (lface_same_font_attributes_p): Compare heights using EQ.
3119 2000-08-26  Kenichi Handa  <handa@etl.go.jp>
3121         * charset.c (char_to_string): Check the character validity.
3122         (char_valid_p): If C is not less than MAX_CHAR, be sure to return
3123         0.
3125 2000-08-25  Stefan Monnier  <monnier@cs.yale.edu>
3127         * regex.c (PUSH_FAILURE_COUNT): New macro.
3128         (POP_FAILURE_REG_OR_COUNT): Renamed from POP_FAILURE_REG.
3129         Handle popping of a register's or a counter's data.
3130         (POP_FAILURE_POINT): Use the new name.
3131         (re_match_2_internal): Push counter data on the stack for succeed_n,
3132         jump_n and set_number_at and remove misleading dead code in succeed_n.
3134 2000-08-25  Gerd Moellmann  <gerd@gnu.org>
3136         * xdisp.c (redisplay_internal): If considering all windows on all
3137         frames, update the display for each frame as soon as possible,
3138         instead of first building all desired matrices for all frames, and
3139         then updating them all.
3140         (try_cursor_movement): Handle case that last_cursor.vpos is -1.
3142 2000-08-24  Gerd Moellmann  <gerd@gnu.org>
3144         * bytecode.c (mark_byte_stack): Add a comment.
3146         * frame.h (FRAME_FLAGS_AREA_COLS, FRAME_FLAGS_AREA_WIDTH) 
3147         (FRAME_LEFT_FLAGS_AREA_WIDTH): Return 0 unless frame is 
3148         a graphical frame.
3150 2000-08-24  Kenichi Handa  <handa@etl.go.jp>
3152         * minibuf.c (do_completion): Always use compare-string, not
3153         string-equal because the latter doesn't pay attention to
3154         multibyteness of strings.
3156         * process.c (create_process): Don't setup raw-text coding here.
3157         (Fopen_network_stream): Don't set coding->src_multibyte and
3158         coding->dst_multibyte here.
3159         (read_process_output): For process filter, return unibyte string
3160         if default-enable-multibyte-characters is nil.
3161         (send_process): If OBJECT is multibyte text, be sure to encoded it
3162         by the specified coding system for the process.  Otherwise, setup
3163         raw-text coding.
3164         (init_process): Don't initialize default-process-coding-system
3165         here.
3167 2000-08-23  Eli Zaretskii  <eliz@is.elta.co.il>
3169         * buffer.c (syms_of_buffer) <scroll-up-aggressively>: Doc fix.
3170         <scroll-down-aggressively>: Likewise.
3172 2000-08-23  Kenichi Handa  <handa@etl.go.jp>
3174         * coding.c (encode_eol): Fix bug for the case of dst_bytes being
3175         zero.  Set coding->produced_char correctly.
3177 2000-08-22  Andrew Innes  <andrewi@gnu.org>
3179         * makefile.w32-in: New file.
3181         * unexw32.c (unexec): Ignore old_name, and use the actual location
3182         of the current executable instead.  Base new_name on this.
3184         * w32proc.c (create_child): Remove reference to security
3185         descriptor, which isn't needed and doesn't compile with mingw32.
3187         * w32term.c [USE_CRT_DLL]: Remove unnecessary extern, which screws
3188         up dllimport attributes.
3189         (x_update_window_end): Update prototype.
3191         * unexec.c (write_segment) [USE_CRT_DLL]: Remove unnecessary
3192         extern, which screws up dllimport attributes.
3194         * sysdep.c [USE_CRT_DLL]: Remove unnecessary extern, which screws
3195         up dllimport attributes.
3197         * strftime.c [USE_CRT_DLL]: Remove unnecessary extern, which
3198         screws up dllimport attributes.
3200         * process.c [USE_CRT_DLL]: Remove unnecessary extern, which screws
3201         up dllimport attributes.
3202         (create_process) [USE_CRT_DLL]: Remove unnecessary extern, which
3203         screws up dllimport attributes.
3205         * lread.c [USE_CRT_DLL]: Remove unnecessary extern, which screws
3206         up dllimport attributes.
3208         * keyboard.c [USE_CRT_DLL]: Remove unnecessary extern, which
3209         screws up dllimport attributes.
3211         * floatfns.c [USE_CRT_DLL]: Remove unnecessary extern, which
3212         screws up dllimport attributes.
3214         * fileio.c [USE_CRT_DLL]: Remove unnecessary extern, which screws
3215         up dllimport attributes.
3217         * emacs.c (malloc_initialize_hook) [USE_CRT_DLL]: Remove
3218         unnecessary extern, which screws up dllimport attributes.
3219         (main): Ditto.
3221         * editfns.c [USE_CRT_DLL]: Remove unnecessary extern, which screws
3222         up dllimport attributes.
3224         * dispnew.c (window_change_signal) [USE_CRT_DLL]: Remove
3225         unnecessary extern, which screws up dllimport attributes.
3227         * callproc.c [USE_CRT_DLL]: Remove unnecessary extern, which
3228         screws up dllimport attributes.
3230         * buffer.c [USE_CRT_DLL]: Remove unnecessary extern, which screws
3231         up dllimport attributes.
3233         * w32proc.c (IsValidLocale): Extern missing from mingw32 headers.
3235         * w32bdf.c (search_file_line): 
3236         (set_bdf_font_info): 
3237         (seek_char): 
3238         (w32_get_bdf_glyph): 
3239         (w32_BDF_to_x_font): Fix compile warnings.
3241         * w32menu.c: Include keyboard.h before frame.h.  Fix compile
3242         warnings.
3244         * w32select.c: Include keyboard.h before frame.h.
3246         * w32fns.c (max): Define macro.
3247         (JOHAB_CHARSET): Define if not known.
3248         (MOD_ALT, MOD_CONTROL, MOD_SHIFT, MOD_WIN): Define if not known.
3249         (Fx_show_tip): Synch with X version.
3251         * w32xfns.c: Include keyboard.h before frame.h.
3253         * w32fns.c: Include keyboard.h before frame.h.
3255         * w32term.c: Include keyboard.h before frame.h.
3257         * fontset.c: Include keyboard.h before frame.h.
3259         * w32inevt.c: Include keyboard.h before frame.h.
3260         (MOUSE_MOVED): Define if not known.
3262         * minibuf.c: Include keyboard.h before frame.h.
3264         * keyboard.c: Include keyboard.h before frame.h.
3266         * indent.c: Include keyboard.h before frame.h.
3268         * dispnew.c: Include keyboard.h before frame.h.
3270         * buffer.c: Include keyboard.h before frame.h.
3272         * alloc.c: Include keyboard.h before frame.h.
3274         * print.c: Include keyboard.h before frame.h.
3276         * process.c: Include keyboard.h before frame.h.
3278         * scroll.c: Include keyboard.h before frame.h.
3280         * sysdep.c: Include keyboard.h before frame.h.
3282         * term.c: Include keyboard.h before frame.h.
3284         * window.c: Include keyboard.h before frame.h.
3286         * xdisp.c: Include keyboard.h before frame.h.
3287         Separate GLYPH_DEBUG and DEBUG_TRACE_MOVE.
3289         * frame.c: Include keyboard.h before frame.h.
3291         * w32heap.h: Undefine min, max.
3293         * w32gui.h: Undefine min, max.
3295         * unexw32.c: Change PUCHAR to PCHAR.
3296         (PTR_TO_OFFSET): Cast ptr to unsigned char *.
3297         (relocate_offset): 
3298         (get_section_info): 
3299         (copy_executable_and_dump_data): Remove unnecessary static defs.
3300         (copy_executable_and_dump_data): Fix compile warnings.
3302         * sysdep.c (NULL) [WINDOWSNT]: Define NULL if not defined.
3304         * w32console.c (min): Define macro.
3305         (clear_frame, write_glyphs): Fix compile warning.
3307         * w32proc.c (compare_env): 
3308         (find_child_console): Fix compile warning.
3310         * w32.c (sys_strerror): Use sys_nerr instead of _sys_nerr.  Use
3311         sys_errlist instead of _sys_errlist.
3312         (get_emacs_configuration_options): New function.
3314         * s/ms-w32.h (sys_nerr): Provide default definition.
3315         (strdup, strupr, strnicmp, stricmp, tzset, tzname): Map to same
3316         name with _ prepended.
3317         (NSIG): Define if not known.
3318         (get_emacs_configuration): Provide extern declaration.
3319         (get_emacs_configuration_options): Provide extern declaration.
3320         (EMACS_CONFIG_OPTIONS): Call get_emacs_configuration_options.
3322         * w32.c (gettimeofday): Use struct timeb, not struct _timeb.
3323         (map_w32_filename): 
3324         (read_unc_volume): Fix compile warning.
3326         * s/ms-w32.h (_WINSOCK_H): Define to prevent normal winsock
3327         definitions from being used.
3329         * lisp.h [WINDOWSNT]: Don't declare externs for getenv, ctime and getwd.
3331         * w32.c (unc_volume_file_attributes): 
3332         (open_unc_volume): Make arg const.
3334         * sysdep.c [WINDOWSNT]: Remove extern decl of errno.
3335         (read_input_waiting): Remove excess parameter.
3337         * w32.c (init_environment): Call _access.
3338         (check_windows_init_file): Call _close.
3339         (init_user_info): Call _putenv.
3340         (init_environment): Call _putenv and _strdup.
3341         (init_ntproc): Reset volume info cache on startup.
3343         * s/ms-w32.h (malloc, free, realloc, calloc): Rename if
3344         USE_CRT_DLL is defined, so Emacs can use GNU malloc even though it
3345         cannot override the CRT malloc.
3347         * makefile.nt (LOCAL_FLAGS): Define USE_CRT_DLL if requested.
3348         (LINK_FLAGS): Append to original value of LINK_FLAGS.
3350         * w32heap.c [!USE_CRT_DLL]: Don't define _heap_init and _heap_term
3351         unless we are linking with a static CRT.
3352         (RVA_TO_PTR): Cast result to unsigned char*.
3354         * w32.c (GetCachedVolumeInformation): Use xmalloc, xfree and xstrdup.
3355         (add_volume_info): Use xstrdup.
3357 2000-08-22  Stefan Monnier  <monnier@cs.yale.edu>
3359         * minibuf.c (Vcompletion_auto_help): Renamed from `auto_help'.
3360         (do_completion, Fminibuffer_complete_word): Use it.
3361         (syms_of_minibuf): Turn completion-auto-help into a proper Lisp
3362         var so it can take non-boolean values.
3364 2000-08-21  Gerd Moellmann  <gerd@gnu.org>
3366         * editfns.c (find_field): Formatting changes.
3367         (toplevel): Some old-style function forward declarations 
3368         changed to prototypes, some new protypes added, some functions
3369         made static.
3371         * lisp.h (set_time_zone_rule): Add prototype.
3372         (use_dialog_box): External declaration.
3374         * keyboard.c (gen_help_event): Add parameter SIZE.
3375         (kbd_buffer_events_waiting): Slightly rewritten.
3376         (clear_event): New function.
3377         (kbd_buffer_get_event): Use it, and clear the input_events of
3378         HELP_EVENTs.
3379         (init_keyboard): Remove duplicate creation of kbd_buffer_gcpro and
3380         don't fill the newly created array with nils.
3381         (toplevel): Convert some old-style function forward declarations
3382         to prototypes.
3384         * keyboard.h (gen_help_event): Change prototype.
3386         * xterm.c (XTread_socket): Change calls to gen_help_event.
3388         * w32term.c (w32_read_socket): Change calls to gen_help_event.
3390         * eval.c (Fmacroexpand): Doc fix.
3392 2000-08-20  Jason Rumney  <jasonr@gnu.org>
3394         * w32term.h (x_display_info_for_display): Remove as this function
3395         does not exist on W32.
3397         * w32term.c (help_echo_window): New variable.
3398         (syms_of_w32term): staticpro it.
3399         (note_mode_line_highlight): Set it.
3400         (XTextExtents16): Removed as there is no equivalent on W32.
3401         (x_compute_glyph_string_overhangs): Incomplete body removed, as
3402         the X way of doing this will not work for W32.
3403         (w32_intersect_rectangles): Removed. Use IntersectRect API call.
3404         (x_draw_image_foreground):  Avoid drawing outside of the clip area
3405         when image doesn't have a mask.
3406         (note_mouse_highlight): Process overlays in the right order of
3407         priority. Set help_echo_window.
3408         (x_draw_bar_cursor): If cursor is on an image, draw a box cursor
3409         because that's more visible for large images.
3411         * w32menu.c (keymap_panes): Pass the keymap's prompt as the pane
3412         name to single_keymap_panes.
3413         (w32_menu_show): Set wv->title when dealing with titles.
3414         (w32_menu_display_help): Call show_help_echo with OBJECT and POS.
3416 2000-08-21  Miles Bader  <miles@gnu.org>
3418         * minibuf.c (do_completion): Try again if we rewrite the input
3419         string, but no completion was done, so that any completion message
3420         will be correct.
3422 2000-08-20  Gerd Moellmann  <gerd@gnu.org>
3424         * xfaces.c (lface_equal_p): Compare strings differently.
3425         (Qtty_color_alist, Vtty_defined_color_alist): New variables.
3426         (realize_tty_face): Use them.
3427         (syms_of_xfaces): Initialize new variables.
3428         (map_tty_color): New function, extracted from realize_tty_face.
3429         (map_tty_color) [MSDOS || WINDOWSNT]: If using the frame's default
3430         foreground or background color, store the new color name in the
3431         realized face; previous code trying to do this had no effect.
3432         (realize_tty_face): Use map_tty_color.
3433         (Fclear_face_cache): Set face_change_count and ensure thorough
3434         redisplay.
3436 2000-08-19  Gerd Moellmann  <gerd@gnu.org>
3438         * undo.c (record_first_change, record_marker_adjustment): Don't
3439         use XBUFFER on last_undo_buffer which might not be a buffer.
3441 2000-08-18  Kenichi Handa  <handa@etl.go.jp>
3443         * coding.c (decode_coding_string): Set members consumed,
3444         consumed_char, produced, produced_char of *coding correctly.  If
3445         decode_coding doesn't consume any byte, don't try anymore.
3446         (encode_coding_string): Likewise.
3448 2000-08-18  Gerd Moellmann  <gerd@gnu.org>
3450         * lisp.h (CHECK) [ENABLE_CHECKING]: Make both sides of the
3451         conditional have void type, for Standard C compilers.
3453         * xdisp.c (redisplay_internal): Compare windows for equality with
3454         EQ, instead of applying XWINDOW to something that might not
3455         be a window.
3456         
3457 2000-08-18  Kenichi Handa  <handa@etl.go.jp>
3459         * fontset.c (Finternal_char_font): Search only the selected frame
3460         for a window of the current buffer.
3462 2000-08-18  Gerd Moellmann  <gerd@gnu.org>
3464         * minibuf.c (do_completion): Use EQ instead of `!=' to compare
3465         Lisp_Objects.
3467         * keyboard.c (kbd_buffer_get_event): Handle the case that the
3468         second half of a HELP_EVENT is found at the start of kbd_buffer.
3470 2000-08-18  Miles Bader  <miles@gnu.org>
3472         * lisp.h (Lisp_String): Replace DECLARE_INTERVALS with real decl.
3474         * editfns.c (save_restriction_save): Rewrite to use markers.
3475         (save_restriction_restore): Rewrite to understand new form of data
3476         saved by save_restriction_save.
3477         (Fsave_restriction): Remove cautionary note in doc-string.
3479 2000-08-17  Gerd Moellmann  <gerd@gnu.org>
3481         * fileio.c (build_annotations): Add a comment explaining the
3482         return value of format-annotate-function.  Replace a spurious call
3483         to Flength with a CONSP test.  Call format-annotate-function with
3484         a fifth arg specifying how many times the function is been called
3485         in a row, to let it choose temporary buffers appropriately.
3487 2000-08-17  Dave Love  <fx@gnu.org>
3489         * lisp.h: Remove DECLARE_INTERVALS, INITIALIZE_INTERVAL.  Don't
3490         declare make_temp_name twice.
3492         * lread.c: Prototype readevalloop, load_unwind,
3493         load_descriptor_unwind.
3494         (unreadpure): Give it an arg.
3496         * unexalpha.c: Prototype fatal_unexec, mark_x,
3497         update_dynamic_symbols.  Declare unexec as void.
3499         * cm.c [HAVE_TERMCAP_H]: Include <termcap.h>.
3500         [!HAVE_TERMCAP_H]: Prototype tputs, tgoto.
3502         * alloc.c (lisp_malloc): Declare with POINTER_TYPE.
3503         [SYSTEM_MALLOC]: Make decls in malloc.h conditional on
3504         DOUG_LEA_MALLOC.
3506         * alloca.c: Use #error.
3507         [POINTER_TYPE]: Use it.
3509         * eval.c (Fdefvar): Doc fix.
3511         * buffer.c (Fget_buffer_create, Fmake_indirect_buffer): Avoid
3512         INITIALIZE_INTERVAL.
3514         * buffer.h: Avoid DECLARE_INTERVALS.
3516         * config.in: Add size_t.
3518 2000-08-17  Eli Zaretskii  <eliz@is.elta.co.il>
3520         * w16select.c (set_clipboard_data): If there's not enough memory
3521         to put text into clipboard, return 1, as Fw16_set_clipboard_data
3522         expects.  In case of other failures, return 3.
3523         (system_error_msg): New error message.
3524         (Fw16_set_clipboard_data): If set_clipboard_data returns 3, print
3525         system_error_msg.
3527 2000-08-16  Gerd Moellmann  <gerd@gnu.org>
3529         * term.c (write_glyphs): Also turn off inverse video after turning
3530         off other appearances in case TS_exit_attribute_mode is not equal
3531         to TS_end_standout_mode.
3532         (insert_glyphs): Turn inverse video on/off for each run of glyphs
3533         with the same face.
3534         (turn_off_face): Reset standout_mode only if
3535         TS_exit_attribute_mode has been output and TS_exit_attribute_mode
3536         is equal to TS_end_standout_mode.
3538 2000-08-16  Kenichi Handa  <handa@etl.go.jp>
3540         * coding.c (encode_coding): Fix the bug of not flushing ISO escape
3541         sequence at the end of the source block.
3543         * ccl.c (Fccl_program_p): Docstring modified.
3544         (Fccl_execute): Likewise.
3545         (Fccl_execute_on_string): Likewise.
3547 2000-08-16  Eli Zaretskii  <eliz@is.elta.co.il>
3549         * msdos.c (IT_write_glyphs): Convert cbp to unsigned char *.
3551 2000-08-16  Kenichi Handa  <handa@etl.go.jp>
3553         The following changes are mainly to fix bugs of
3554         encode/decode-coding-string failing if encoding/decoding return
3555         CODING_FINISH_INSUFFICIENT_DST.  In addition, delete the global
3556         variable conversion_buffer.
3558         * ccl.c (CCL_WRITE_CHAR): If CH is eight-bit-control char,
3559         decrement dst_end to avoid buffer overflow in the later call of
3560         string_as_multibyte
3562         * coding.h (conversion_buffer_size, conversion_buffer)
3563         (get_conversion_buffer): Extern deleted.
3565         * coding.c (MINIMUM_CONVERSION_BUFFER_SIZE): Macro deleted.
3566         (conversion_buffer, conversion_buffer_size): Variables deleted.
3567         (get_conversion_buffer): Function deleted.
3568         (struct conversion_buffer): New structure.
3569         (MAX_ALLOCA): New macro.
3570         (allocate_conversion_buffer): New macro.
3571         (extend_conversion_buffer, free_conversion_buffer): New functions.
3572         (ccl_coding_driver): Set coding->result.
3573         (decode_coding): Set coding->result to CODING_FINISH_NORMAL if
3574         this is the last block of source.
3575         (encode_coding): Likewise.  Handle the source block as the last
3576         one only when the whole source text is consumed.
3577         (decode_coding_string): Handle the case that the output buffer is
3578         too small to decode the whole source text.  Use
3579         allocate_conversion_buffer, extend_conversion_buffer and
3580         free_conversion_buffer, not get_conversion_buffer.
3581         (encode_coding_string): Likewise.
3582         (init_coding): Function deleted.
3583         (init_coding_once): Delete code to initialize
3584         conversion_buffer_size.
3586         * emacs.c (main): Don't call init_coding.
3588         * msdos.c (IT_write_glyphs): Use a locally declared
3589         conversion_buffer.
3591         * term.c (write_glyphs): Use a locally declared conversion_buffer.
3592         (insert_glyphs): Likewise.
3594         * w32console.c (write_glyphs): Use a locally declared
3595         conversion_buffer.
3597 2000-08-15  Eli Zaretskii  <eliz@is.elta.co.il>
3599         * msdos.c (IT_update_begin): Don't crash if mouse_face_mouse_frame
3600         member of display_info is NULL.
3602 2000-08-15  Gerd Moellmann  <gerd@gnu.org>
3604         * alloc.c (compact_small_strings): Use safe_bcopy, add an
3605         assertion.
3607         * term.c (turn_off_face): Reset standout_mode when resetting
3608         appearances with capability `me'.
3609         (write_glyphs): Switch on inverse video before each face change.
3611 2000-08-14  Dave Love  <fx@gnu.org>
3613         * alloc.c [HAVE_UNISTD_H]: Include unistd.h; don't declare sbrk.
3614         [!HAVE_UNISTD_H]: Use POINTER_TYPE to declare sbrk.
3615         (lisp_free): Declare and make static.
3617         * window.c: Fix embedded comment.
3618         (syms_of_window): Fix doc string.
3620 2000-08-14  Gerd Moellmann  <gerd@gnu.org>
3622         * keymap.c (push_key_description): If C without modifiers is < 32, 
3623         make sure to print `C-' before `M-', like in the manual.
3625 2000-08-11  Gerd Moellmann  <gerd@gnu.org>
3627         * fns.c (hashfn_eq, hashfn_eql): Don't handle strings specially
3628         since they aren't relocated anymore.
3629         (sxhash_string): Make sure returned hash code fits in a Lisp
3630         integer.
3632         * xdisp.c (try_cursor_movement): Fix handling of cursor in
3633         partially visible line which is smaller than the window's
3634         height.
3636 2000-08-11  Kenichi Handa  <handa@etl.go.jp>
3638         * ccl.c (CCL_READ_CHAR): If source is multibyte, pay attention to
3639         the multibyte form of eight-bit-control characters. 
3640         (Fccl_execute_on_string): Initialize ccl->multibyte.
3642         * ccl.h (struct ccl_program): New member multibyte.
3644         * coding.c (ccl_coding_driver): Initialize ccl->multibyte.
3646 2000-08-11  Kenichi Handa  <handa@etl.go.jp>
3648         * regex.c (regex_compile) <normal_char>: Pay attention to
3649         multibyteness.
3650         (analyse_first) <exactn>: Setup fastmap correctly for
3651         eight-bit-control characters.
3653 2000-08-11  Kenichi Handa  <handa@etl.go.jp>
3655         * termhooks.h (enum event_kind): New member
3656         multibyte_char_keystroke.
3658         * keyboard.c (make_lispy_event): Handle the new event type
3659         multibyte_char_keystroke.
3661         * xterm.c: Include coding.h.
3662         (XTread_socket): Work around a bug of XmbLookupString.  If the
3663         input is from XIM, decode it according to the current locale.  In
3664         that case, generate multibyte_char_keystroke events.
3666 2000-08-11  Kenichi Handa  <handa@etl.go.jp>
3668         * xdisp.c (TRACE_MOVE) [GLYPH_DEBUG]: Delete the last semicolon.
3669         (TRACE_MOVE) [not GLYPH_DEBUG]: Define dummy.
3671 2000-08-10  Gerd Moellmann  <gerd@gnu.org>
3673         * xdisp.c (trace_move) [GLYPH_DEBUG]: New variable.
3674         (TRACE_MOVE) [GLYPH_DEBUG]: New macro.
3675         (move_it_in_display_line_to): Record iterator's ascent and descent
3676         before producing glyphs, and restore them when we know the glyph
3677         doesn't fit on the line.
3678         (move_it_to): Restructured so that it's easier to debug.  If
3679         moving to a vpos, and not moving to an x or character position,
3680         stop as soon as the specified vpos is reached; don't move further
3681         into that line because that might change the computed line height.
3682         (try_cursor_movement): New function, extracted from the cursor
3683         movement branch of redisplay_window.  If ending on a partially
3684         visible line, don't try to scroll if the cursor line is taller
3685         than the window.
3686         (redisplay_window): Use try_cursor_movement.
3688         * window.c (Fwindow_end): Rewritten to not use Fvertical_motion,
3689         because that function doesn't cope with variable-height lines.
3691         * xterm.c (x_draw_bar_cursor): If cursor is on an image, draw a
3692         box cursor because that's better visible for large images.
3693         
3694 2000-08-10  Miles Bader  <miles@gnu.org>
3696         * w32term.c (note_mouse_highlight): Update calls to overlays_at.
3698 2000-08-10  Gerd Moellmann  <gerd@gnu.org>
3700         * xdisp.c (Vmessages_buffer_name): New variable.
3701         (message_dolog): Use it.
3702         (syms_of_xdisp): Initialize it.
3704 2000-08-10  Eli Zaretskii  <eliz@is.elta.co.il>
3706         * msdos.c (IT_note_mouse_highlight): Update the calls to
3707         overlays_at.
3708         (toplevel) <kbd_buffer_store_event>: Remove prototype, it's
3709         redundant now that keyboard.h is included.
3711 2000-08-09  Eli Zaretskii  <eliz@is.elta.co.il>
3713         * keyboard.c (kbd_buffer_events_waiting): New function.
3715         * keyboard.h (kbd_buffer_events_waiting): Add prototype.
3717         * msdos.c: Include keyboard.h.
3718         (XMenuActivate): Empty no_event events from the event buffer.  If
3719         no events are left after that, call clear_input_pending.
3720         (mouse_clear_clicks): New function, code moved from mouse_init.
3721         (mouse_init, XMenuActivate): Call mouse_clear_clicks to force the
3722         mouse driver to ``forget'' any past clicks.
3724         * Makefile.in (msdos.o): Depend on keyboard.h.
3726 2000-08-09  Gerd Moellmann  <gerd@gnu.org>
3728         * lisp.h (input_pending): External declaration.
3730         * dispextern.h (Qredisplay_dont_pause): Declare extern.
3731         
3732         * xdisp.c (echo_area_display): Display thoroughly if input is
3733         pending.  Bind redisplay-dont-pause to t during the redisplay.
3734         in case input is pending.
3736         * dispnew.c (Qredisplay_dont_pause): New variable.
3737         (syms_of_display): Initialize and staticpro it.
3738         (update_frame_1): Don't interrupt the display for pending input if
3739         redisplay_dont_pause is set.
3740         
3741         * dispnew.c (mode_line_string): Declare parameter MODE_LINE_P.
3743         * xfaces.c (Ftty_suppress_bold_inverse_default_colors): Doc fix.
3745 2000-08-09  Miles Bader  <miles@lsi.nec.co.jp>
3747         * callproc.c (Fcall_process): Terminate the unwind-protect around
3748         the post-read-conversion of coding system.
3750         * buffer.c (overlays_at): Add CHANGE_REQ parameter.
3751         (Foverlays_at, Fnext_overlay_change, Fprevious_overlay_change): Use it.
3752         * buffer.h (overlays_at): Update prototype.
3753         * xdisp.c (next_overlay_change): Update call to overlays_at.
3754         * xfaces.c (face_at_buffer_position): Likewise.
3755         * textprop.c (Fget_char_property): Likewise.
3756         * xterm.c (note_mouse_highlight): Likewise.
3758         * minibuf.c (do_completion): Don't consider a simple change of
3759         case as `completion'.
3761 2000-08-08  Ken Raeburn  <raeburn@gnu.org>
3763         * keyboard.c (syms_of_keyboard): Initialize
3764         last_point_position_buffer.
3765         * undo.c (record_delete): Make sure last_point_position_buffer is
3766         a buffer before comparing pointers.
3768         * coding.h (decode_coding_string): Declare.
3770         * intervals.h (Fprevious_single_char_property_change): Declare.
3772         * textprop.c (Fprevious_single_char_property_change): Don't do
3773         arithmetic directly on lisp objects.
3775         * editfns.c (find_field): Use EQ, not ==, to compare Lisp
3776         objects.
3778         * keyboard.h (menu_item_eval_property): Declare.
3780         * xdisp.c (message_dolog): Save and protect string "*Messages*" to
3781         reuse as buffer name, instead of recreating (and discarding) every
3782         time a message is logged.
3783         (with_echo_area_buffer): Make callback arg A2 a lisp object.
3784         (current_message_1, truncate_message_1, set_message_1)
3785         (display_echo_area_1, resize_mini_window_1): Signatures changed.
3786         (current_message, truncate_echo_area, display_echo_area)
3787         (resize_echo_area_axactly): Changed calls.
3789         * coding.c (find_safe_codings): CHAR_TABLE_SET index must be a
3790         Lisp object.
3791         (Ffind_coding_systems_region_internal): First argument to Fappend
3792         must be an integer, not a Lisp object.
3794 2000-08-08  Kenichi Handa  <handa@etl.go.jp>
3796         * charset.c (Fchar_width): Doc fix.
3798 2000-08-08  Gerd Moellmann  <gerd@gnu.org>
3800         * charset.c (Fstring_width): Doc fix.
3802 2000-08-07  Gerd Moellmann  <gerd@gnu.org>
3804         * xdisp.c (start_display): When starting display on a continuation
3805         line, clear ascent and descent members of the iterator structure;
3806         the height of the continued line does not affect the height of the
3807         continuation line.
3808         (make_cursor_line_fully_visible): Do nothing if cursor is on a
3809         line taller than the window.
3810         (redisplay_window) <forced window start>: Handle case that the
3811         middle of the window is not found in any row.
3812         (dump_glyph_row): Show more information.
3813         (compute_line_metrics): Use MATRIX_FIRST_TEXT_ROW to determine the
3814         first text line in a glyph matrix.
3816         * xterm.c (x_draw_image_foreground): Avoid drawing outside
3817         of the clip area when image doesn't have a mask.
3819         * fns.c (sweep_weak_table): Fix survival conditions for
3820         key-or-value and key-and-value weakness.
3822         * .gdbinit (xhashtable): New command.
3824         * fns.c (sweep_weak_hash_tables): Fix the code taking unmarked
3825         tables out of the list of all weak hash tables.
3827         * xdisp.c (ensure_echo_area_buffers): If a buffer was killed, and
3828         a new buffer is created, make sure echo_area_buffer[] references
3829         the new buffer.
3831 2000-08-07  Eli Zaretskii  <eliz@is.elta.co.il>
3833         * msdos.c (Fmsdos_set_mouse_buttons): Add missing backslashes in
3834         the doc string.
3836 2000-08-07  Kenichi Handa  <handa@etl.go.jp>
3838         * syntax.c (skip_chars): Fix previous change.  Make the handling
3839         of unibyte string consistent with that of regex search.
3841 2000-08-05  Gerd Moellmann  <gerd@gnu.org>
3843         * xmenu.c (popup_get_selection): Use xfree instead of free.
3845         * fileio.c (Finsert_file_contents): Use xfree instead of free.
3847         * editfns.c (Ftranspose_regions): Use xfree instead of free.
3849         * callproc.c (child_setup): Use xfree instead of free.
3851         * sysdep.c (opendir, GetTempDirName, run_mac_command): Use xmalloc
3852         instead of malloc.
3853         (run_mac_command, closedir): Use `xfree' instead of `free'.
3855         * keymap.c (current_minor_maps): Use xmalloc instead of malloc.
3857         * eval.c (error): Use xfree instead of free.
3859         * xfaces.c, xfns.c, w32fns.c: Replace `illegal' with `invalid'.
3861         * fns.c: Replace `illegal' with `invalid'.
3862         (Fmake_hash_table, make_hash_table): Allow table size of 0.
3864 2000-08-05  Kenichi Handa  <handa@etl.go.jp>
3866         * syntax.c (skip_chars): Fix handling of multibyte<->unibyte
3867         conversion.
3869 2000-08-04  Noah Friedman  <friedman@splode.com>
3871         * fns.c (Fmake_hash_table): Add missing `\n\' to end of line in
3872         docstring.
3874 2000-08-04  Gerd Moellmann  <gerd@gnu.org>
3876         * syntax.c (skip_chars): Fix typo in error message.
3878 2000-08-04  Andreas Schwab  <schwab@suse.de>
3880         * m/ia64.h: Moved from s/ia64.h.
3882 2000-08-04  Kenichi Handa  <handa@etl.go.jp>
3884         * process.c (read_process_output): Big simplification.  Handle
3885         composition and post-read-conversion of coding system correctly.
3886         (send_process): Handle composition correctly.
3888         * callproc.c (Fcall_process): Handle post-read-conversion of
3889         coding system if any.
3891         * coding.c (decode_coding_iso2022): More strict check for handling
3892         single shifting.
3893         (coding_restore_composition): Pay attention to the case that
3894         cmp_data is not set properly (because of invalid code in the
3895         source text).
3896         (run_pre_post_conversion_on_str): Include text properties in the
3897         resulting string.
3898         (decode_coding_string): Set members of coding correctly.
3900 2000-08-03  Gerd Moellmann  <gerd@gnu.org>
3902         * s/ia64.h: New file.
3904         * widget.c (set_frame_size, update_wm_hints, EmacsFrameSetValues):
3905         Use NULL instead of 0 at the end of variable argument list of
3906         XtVaGetValues and XtVaSetValues, because 0 fails on systems where
3907         sizeof (int) < sizeof (void *).
3909         * xmenu.c (update_frame_menubar): Use NULL instead of 0 at the end
3910         of variable argument lists of XtVaGetValues and XtVaSetValues.
3912         * xfns.c (Fx_file_dialog): Use NULL instead of 0 at the end of
3913         variable argument lists of XtVaGetValues and XtVaSetValues.
3915 2000-08-02  Gerd Moellmann  <gerd@gnu.org>
3917         * alloc.c (lisp_malloc, lisp_free): Use size_t and POINTER_TYPE.
3918         (xrealloc, xmalloc): Use size_t.  Some callers adjusted.
3920         * lisp.h (Fsingle_key_description, xmalloc, xrealloc): Change
3921         prototype.
3923         * keyboard.c (read_char_minibuf_menu_prompt): Add new parameter
3924         in call to Fsingle_key_description.
3926         * keymap.c (Fsingle_key_description): Add parameter NO_ANGLES.
3927         Callers changed.
3929 2000-08-02  Colin Walters <walters@cis.ohio-state.edu>
3931         * window.c (display_buffer_reuse_frames): New variable.
3932         (Fdisplay_buffer): If display_buffer_reuse_frames is set, reuse
3933         frames displaying BUFFER.
3934         (syms_of_window): Define Lisp variable
3935         display-buffer-reuse-frames.
3937 2000-08-01  Miles Bader  <miles@gnu.org>
3939         * editfns.c (Fconstrain_to_field): Fix the conditions for deciding
3940         when to constrain NEW_POS (they were pretty screwed up before).
3942 2000-07-31  Eli Zaretskii  <eliz@is.elta.co.il>
3944         * msdos.c (run_msdos_command): Save and restore the master
3945         environment, for the case that child_setup signals an error.
3946         When mirroring slashes in DOS shell commands, don't fail when
3947         argv[2] has embedded blanks.
3948         (Fmsdos_set_mouse_buttons, mouse_setup_buttons): New functions.
3949         (syms_of_msdos): Defsubr Fmsdos_set_mouse_buttons.
3950         (dos_ttraw): Call mouse_setup_buttons.
3952         * callproc.c (child_setup) [MSDOS]: malloc pwd_var instead of
3953         using alloca; free it after run_msdos_command returns.
3955 2000-07-27  Dave Love  <fx@gnu.org>
3957         * s/irix6-5.h (IRIX_FORCE_32_BITS, LD_SWITCH_SYSTEM): Don't
3958         define.
3959         [_MIPS_SZLONG == 64]: Set up for 64-bit mode -- not currently
3960         working.
3962         * m/iris4d.h (XUINT, XSET, XUNMARK) [_LP64]: Don't define.
3964 2000-07-27  Eli Zaretskii  <eliz@is.elta.co.il>
3966         * editfns.c (lisp_time_argument): Fix last change.
3968 2000-07-27  Gerd Moellmann  <gerd@gnu.org>
3970         * fns.c (Fdelete): Make it work on vectors and strings in addition
3971         to lists.
3973         * fns.c (Qkey_or_value, Qkey_and_value): New variables.
3974         (syms_of_fns): Initialize new variables.
3975         (sweep_weak_table): Handle weakness `key-or-value' and
3976         `key-and-value'.
3977         (Fmake_hash_table): Recognize `key-and-value' and `key-or-value'
3978         weakness, with t meaning the same as `key-and-value'.
3980 2000-07-27  Kenichi Handa  <handa@etl.go.jp>
3982         * coding.h (struct coding_system): Member safe_charset deleted.
3984         * coding.c (Qsafe_charsets): This variable deleted.
3985         (Qsafe_chars, Vchar_coding_system_table, Qchar_coding_system): New
3986         variables.
3987         (coding_safe_chars): New function.
3988         (CODING_SAFE_CHAR_P): New macro.
3989         (CHARSET_OK): New arg C.  Call CODING_SAFE_CHAR_P instead of
3990         checking safe_charsets member of the coding system.  Caller
3991         changed.
3992         (detect_coding_iso2022): New local variable safe_chars.
3993         (DECODE_DESIGNATION): Call CODING_SAFE_CHAR_P instead of checking
3994         safe_charsets member of the coding system.
3995         (decode_coding_iso2022): New local variable safe_chars.
3996         (ENCODE_ISO_CHARACTER_DIMENSION1): Don't check unsafe chars here.
3997         (ENCODE_ISO_CHARACTER_DIMENSION2): Likewise.
3998         (ENCODE_ISO_CHARACTER): Arguments changed.  Caller changed.
3999         (ENCODE_UNSAFE_CHARACTER): New macro.
4000         (encode_coding_iso2022): New local variable safe_chars.  Check
4001         unsafe chars.
4002         (setup_coding_system): Delete the code to initialize
4003         coding->safe_charses
4004         (intersection, find_safe_codings): New functions.
4005         (Ffind_coding_systems_region_internal): New function.
4006         (syms_of_coding): Defsubr it.  Initialize Qsafe_chars,
4007         Qsafe_cding_system.  Make Vchar_coding_system_table a Lisp
4008         variable and initialize it.
4010         * fns.c (char_table_ref_and_index): New function.
4012         * lisp.h (char_table_ref_and_index): Add prototype.
4014 2000-07-26  Sam Steingold  <sds@gnu.org>
4016         * editfns.c (lisp_time_argument): Added third argument `usec'.
4017         (Ffloat_time): New built-in Lisp function.
4019 2000-07-26  Gerd Moellmann  <gerd@gnu.org>
4021         * dispextern.h (GLYPH_FROM_CHAR_GLYPH): Use CHARACTERBITS bits
4022         for the character code.
4024         * config.in (HAVE_SOUND): Define only for FreeBSD, NetBSD and
4025         GNU/Linux.
4027         * xmenu.c (menu_highlight_callback): Call show_help_echo directly
4028         if called for a popup menu.
4029         (xmenu_show): Store help string in widget values.
4031 2000-07-26  Dave Love  <fx@gnu.org>
4033         * syswait.h: Move some definitions.
4034         (HAVE_SYS_WAIT_H): Undef for HPUX7, Convex.
4035         [!HAVE_SYS_WAIT_H]: Define things unconditionally.   More
4036         perspicuous definitions.
4037         (WTERMSIG): Fix bit pattern used.
4039 2000-07-26  Kenichi Handa  <handa@etl.go.jp>
4041         * print.c (print_object): If vector printing is truncated, print
4042         "..." to indicate it as well as the case of list printing.
4044 2000-07-25  Gerd Moellmann  <gerd@gnu.org>
4046         * xdisp.c (next_element_from_display_vector): Improve comments.
4048         * lisp.h (GLYPH_MASK_CHAR, GLYPH_MASK_FACE): Use 19 bits
4049         for the character code, and the rest for the face id as in 20.x.
4050         (FAST_GLYPH_FACE, FAST_MAKE_GLYPH): Changed accordingly.
4052         * window.c (window_display_table): Cleaned up.
4054         * syntax.c (Fforward_word): Add last arg nil in call of
4055         Fconstrain_to_field.
4057 2000-07-25  Eli Zaretskii  <eliz@is.elta.co.il>
4059         * fileio.c (Frename_file) [DOS_NT]: If the file names are
4060         identical but for the letter-case, don't call
4061         barf_or_query_if_file_exists.
4063 2000-07-25  Miles Bader  <miles@gnu.org>
4065         * editfns.c (find_field): Honor special `boundary' fields.
4066         (Qboundary): New variables.
4067         (syms_of_editfns): Initialize Qboundary.
4068         (Fconstrain_to_field): Add the INHIBIT-CAPTURE-PROPERTY argument.
4069         Use scan_buffer instead of find_before_next_newline, because it
4070         allows us to detect the boundary case where there's a newline at
4071         the search limit.
4072         * lisp.h (Fconstrain_to_field): Update external declaration.
4074 2000-07-24  Gerd Moellmann  <gerd@gnu.org>
4076         * print.c (temp_output_buffer_setup): Don't call1 Vrun_hooks
4077         if that is nil.
4079 2000-07-24  Dave Love  <fx@gnu.org>
4081         * s/sunos4-0.h, s/sol2.h:
4082         (LIBS_TERMCAP): Move from m/sparc.h.
4084         * m/sparc.h (TERMINFO): Moved to system files (probably only
4085         relevant for sunos4 judging by its vintage).
4086         (BITS_PER_LONG, BITS_PER_EMACS_INT, _LP64): Define conditional on
4087         __arch64__.
4089 2000-07-24  Eli Zaretskii  <eliz@is.elta.co.il>
4091         * xmenu.c (keymap_panes): Pass the keymap's prompt as the pane
4092         name to single_keymap_panes.
4094 2000-07-24  Andreas Schwab  <schwab@suse.de>
4096         * fns.c (Fmakehash): Pass Qeql to Fmake_hash_table if TEST is nil.
4098 2000-07-24  Gerd Moellmann  <gerd@gnu.org>
4100         * xdisp.c (with_echo_area_buffer): Take additional EMACS_INT
4101         parameters instead of using int parameters.  Expect FN to accept
4102         EMACS_INT parameters.
4103         (display_echo_area, resize_echo_area_axactly, current_message)
4104         (truncate_echo_area, set_message_1): Call with_echo_area_buffer
4105         with new argument list.
4106         (resize_mini_window_1): New callback function.
4107         (current_message_1, truncate_message_1, set_message_1): Change
4108         parameter lists to the new format expected by
4109         with_echo_area_buffer.
4111 2000-07-24  Kenichi Handa  <handa@etl.go.jp>
4113         * fontset.c (fontset_ref): Remove INLINE declaration.
4114         (fontset_ref_via_base): Likewise.
4115         (Fset_fontset_font): Convert FAMILY and REGISTRY specifications
4116         to downcase.
4118 2000-07-23  Eli Zaretskii  <eliz@is.elta.co.il>
4120         * msdos.c (IT_note_mouse_highlight): Process overlays in the
4121         correct order of priority.  If help echo was found in an overlay,
4122         use that overlay as the object in which the help echo was found.
4124 2000-07-22  Miles Bader  <miles@gnu.org>
4126         * textprop.c (Fprevious_single_char_property_change): The initial
4127         property value should be from the position preceding POSITION, not
4128         following it.
4130 2000-07-22  Eli Zaretskii  <eliz@is.elta.co.il>
4132         * coding.c (syms_of_coding): Doc fix for
4133         inhibit-iso-escape-detection.
4135 2000-07-21  Gerd Moellmann  <gerd@gnu.org>
4137         * xterm.c (note_mouse_highlight): Process overlays in the right
4138         order of priority.
4140         * keyboard.c (show_help_echo, gen_help_event): Extend comments.
4142         * xterm.c (note_mouse_highlight): If help-echo was found in an
4143         overlay, use that overlay as the object in which the help was
4144         found.
4146         * window.c (foreach_window_1): Fix typo reversing an if-condition.
4148         * window.c (foreach_window): Instead of a fake variable argument
4149         list, take one USER_DATA argument.
4150         (foreach_window_1): Likewise, and call callback functions with two
4151         args, the window and USER_DATA.
4152         (struct check_window_data): New struct.
4153         (check_window_containing): Use it.
4154         (window_from_coordinates): Set up a struct check_window_data for
4155         foreach_window.
4156         (add_window_to_list, freeze_window_start): Change parameters
4157         according to new calling convention.
4159         * window.h (foreach_window): Change prototype.
4161         * buffer.c (Fprevious_overlay_change): Avoid memory leak.
4163 2000-07-21  Eli Zaretskii  <eliz@is.elta.co.il>
4165         * xmenu.c (menu_help_callback): Call show_help_echo with
4166         additional arguments OBJECT and POS.
4168 2000-07-21  Kenichi Handa  <handa@etl.go.jp>
4170         * data.c (Faset): Allow storing any multibyte character in a
4171         string.  Convert unibyte string to multibyte if necessary.
4173         * xfns.c (x_encode_text): New function.
4174         (x_set_name): Use x_encode_text.
4175         (x_set_title): Likewise.
4177         * xselect.c (lisp_data_to_selection_data): Use x_encode_text.
4179         * xterm.h (x_encode_text): Add prototype.
4181 2000-07-20  Dave Love  <fx@gnu.org>
4183         * ccl.c (Fccl_execute_on_string): Don't check xmalloc return.  Use
4184         xfree, not free.
4186 2000-07-20  Eli Zaretskii  <eliz@is.elta.co.il>
4188         * msdos.c (help_echo_window): New variable.
4189         (syms_of_msdos): Initialize and staticpro it.
4190         (IT_note_mode_line_highlight): Set help_echo_window.
4191         (IT_note_mouse_highlight): Ditto.
4192         (dos_rawgetc): Store help_echo_window in the second event produced
4193         for HELP_EVENTs.
4195         * msdos.c (IT_note_mode_line_highlight, IT_note_mouse_highlight):
4196         Record the object that generated the help echo and the position of
4197         that object in help_echo_object and help_echo_pos.  Record that
4198         some glyphs in a row are displayed in mouse-face.
4199         (IT_update_begin): Don't clear mouse highlight unless one of the
4200         enabled glyph rows is marked as being displayed in mouse-face.
4201         (dos_rawgetc): Generate 2 events for HELP_EVENT.  Pass the object
4202         and position recorded in help_echo_object and help_echo_pos to the
4203         event queue.
4204         (IT_menu_display): Accept a new argument PN: the pane number of
4205         the current menu pane.  Record the pane number and the item
4206         number of the item which has associated help string.
4207         (XMenuActivate): Update the prototype for help_callback in
4208         function declaration.  Call IT_menu_display with the current menu
4209         pane number as an additional argument.  Call help_callback with
4210         two additional arguments: the pane number and the item number of
4211         the menu item associated with the help text.
4212         (help_echo_object, help_echo_pos): New variables.
4213         (syms_of_msdos): Initialize them and staticpro help_echo_object.
4215         * msdos.h (XMenuActivate): Update prototype.
4217 2000-07-19  Gerd Moellmann  <gerd@gnu.org>
4219         * xdisp.c (with_echo_area_buffer): Call FN with more arguments.
4220         Add some more prototypes.
4222         * xterm.c, xterm.h: Add some more prototypes.
4224         * lisp.h (Fnext_single_char_property_change): Add prototype.
4226         * dispnew.c (direct_output_for_insert): Remove confusing
4227         outer local variable mouse_face_overwritten_p.
4228         (glyph_row_slice_p): Put in #ifdef GLYPH_DEBUG.
4230         * alloc.c (allocate_string_data): Don't copy old string contents.
4232 2000-07-19  Kenichi Handa  <handa@etl.go.jp>
4234         * coding.c (code_convert_region): Delete text properties before
4235         shrinking the conversion region.
4237 2000-07-18  Gerd Moellmann  <gerd@gnu.org>
4239         * dispnew.c (update_text_area): Write the whole row if it
4240         has mouse-face in it.
4242         * xfaces.c (face-alternative-font-family-alist): Remove
4243         DEFVAR_LISP; staticpro instead.
4245         * xmenu.c (menu_help_callback): Call show_help_echo with
4246         new arguments.
4248         * keyboard.c (show_help_echo): Add parameter WINDOW.
4249         (read_char): Call show_help_echo with window extracted from Lisp
4250         help event.
4251         (gen_help_event): Add parameter WINDOW.
4253         * keyboard.h (show_help_echo, gen_help_event): Change prototypes.
4255         * xterm.c (help_echo_window): New variable.
4256         (note_mouse_highlight, note_tool_bar_highlight): Set
4257         help_echo_window.
4258         (XTread_socket): Pass help_echo_window to gen_help_event.
4259         (syms_of_xterm): Initialize and staticpro help_echo_window.
4261 2000-07-18  Dave Love  <fx@gnu.org>
4263         * Makefile.in: Fix dependencies of blockinput.h on atimer.h,
4264         systime.h.
4266 2000-07-18  Gerd Moellmann  <gerd@gnu.org>
4268         * alloc.c (allocate_string_data): If string had already data
4269         assigned, copy old contents to new string data.
4271         * coding.c (syms_of_coding): Fix typo in spelling of variable
4272         `inhibit-iso-escape-detection'.
4274         * alloca.c (free) [emacs && EMACS_FREE]: Define as EMACS_FREE.
4276         * Makefile.in: Add dependencies on dispextern.h.
4277         (alloca.o): Don't define malloc and define EMACS_FREE instead of
4278         `free'; both can conflict with system header files.
4280 2000-07-18  Kenichi Handa  <handa@etl.go.jp>
4282         * charset.h (MAKE_CHAR): Return reasonable code even if CHARSET is
4283         undefined.
4285 2000-07-18  Dave Love  <fx@gnu.org>
4287         * window.c (Fwindow_list): Declare arg `window'.
4289 2000-07-18  Kenichi Handa  <handa@etl.go.jp>
4291         * coding.c (setup_coding_system): Don't override the explicitly
4292         specified designations.
4294 2000-07-15  Miles Bader  <miles@gnu.org>
4296         * editfns.c (char_property_eq, char_property_stickiness): Renamed
4297         from `text_property_eq' and `text_property_stickiness', respectively.
4298         (find_field, Fconstrain_to_field, char_property_eq)
4299         (char_property_stickiness): Changed to call char-property functions
4300         instead of text-property-only ones.
4302         * textprop.c (Fnext_single_char_property_change): Made a subr (was
4303         `next_single_char_property_change').  Do more error checking, and
4304         cleanup limit behavior.
4305         (Fprevious_single_char_property_change): New function.
4306         (syms_of_textprop): Initialize new subrs.
4308         * xdisp.c (display_prop_end, invisible_text_between_p):
4309         Call Fnext_single_char_property_change instead of
4310         next_single_char_property_change.
4312 2000-07-15  Jason Rumney  <jasonr@gnu.org>
4314         * w32menu.c (w32_menu_show): Call free_menubar_widget_value_tree
4315         after menu is finished with.
4316         (add_menu_item): Only consider wv->title as a menu title.
4317         (w32_menu_display_help): Add OBJECT and POS to show_help_echo.
4319         * w32fns.c (w32_wnd_proc) [WM_DRAW_ITEM]: Do not try to draw a
4320         null title.
4321         (FONT_REGEXP): Remove unused macro, and its sub-components.
4322         (syms_of_w32fns): Replace underscore in w32-enable-synthesized-fonts.
4324         * w32term.c (help_echo_object, help_echo_pos): New variables.
4325         (note_mode_line_highlight): Store additional information about the
4326         help-echo in help_echo_object and help_echo_pos.  Check both
4327         `local-map' and `keymap' properties for changing the cursor
4328         (note_mouse_highlight): Store additional information about the
4329         help-echo in help_echo_object and help_echo_pos.
4330         (note_tool_bar_highlight): Set help_echo_object to nil and
4331         help_echo_pos to -1.
4332         (w32_read_socket): Use gen_help_event instead of filling
4333         input_events manually.
4334         (syms_of_w32term): Staticpro help_echo_object.
4335         (x_update_window_end): Add parameter MOUSE_FACE_OVERWRITTEN_P. If
4336         set, arrange for a mouse-highlight redisplay in
4337         XTframe_up_to_date.
4338         (x_clear_mouse_face): New function.
4339         (w32_redisplay_interface): Add pointer to x_clear_mouse_face.
4340         (x_update_window_begin): No need to turn off the mouse
4341         highlight here.
4342         (show_mouse_face): Set the mouse_face_p flag of glyph rows
4343         depending on whether they contain glyphs highlighted in
4344         mouse-face.
4345         (x_fill_stretch_glyph_string): Consume runs of stretch
4346         glyphs instead of a single one.
4347         (BUILD_STRETCH_GLYPH_STRING): Call x_fill_stretch_glyph_string
4348         with new argument list.
4349         (x_set_glyph_string_gc): Make sure the face's GC is valid.
4350         (x_append_glyph, x_append_composite_glyph)
4351         (x_produce_image_glyph, x_append_stretch_glyph): Accomodate to
4352         changes in struct glyph starting 1999-12-27. See comments for
4353         xterm.c on 2000-07-05.
4355 2000-07-14  Sam Steingold  <sds@gnu.org>
4357         * xfaces.c (realize_x_face): Fix the last patch:
4358         check `default_face' before dereferencing.
4360 2000-07-14  Dave Love  <fx@gnu.org>
4362         * syntax.c (back_comment): Add null default in switch (for pcc).
4364 2000-07-14  Kenichi Handa  <handa@etl.go.jp>
4366         * xfaces.c (realize_x_face): Make fontset using the base of the
4367         default_face's fontset, not using the default fontset.
4369         * coding.c (inhibit_iso_escape_detection): New variable.
4370         (syms_of_coding): Make it a Lisp variable.
4371         (detect_coding_iso2022): If inhibit_iso_escape_detection is
4372         nonzero, ignore ISO2022's escape sequence.
4374 2000-07-14  Gerd Moellmann  <gerd@gnu.org>
4376         * alloca.c (malloc) [emacs]: Define as xmalloc.
4378         * xfns.c (Fx_show_tip): If frame parameters contain a position,
4379         use that instead of the mouse position.  Add parameters DX and DY.
4381         * dispextern.h (Fx_show_tip): Adjust number of parameters
4382         in prototype.
4384         * keyboard.c (show_help_echo): Add parameters OBJECT and POS.
4385         if HELP is a function, call it with OBJECT and POS as parameters
4386         to get the help to display.
4387         (gen_help_event, kbd_buffer_store_help_event): New functions.
4388         (kbd_buffer_get_event): Construct the Lisp help-event differently.
4389         (read_char): Call show_help_echo with new parameters.
4391         * keyboard.h (gen_help_event, kbd_buffer_store_help_event):
4392         Add prototypes.
4394         * xterm.c (help_echo_object, help_echo_pos): New variables.
4395         (note_mode_line_highlight): Store additional information about the
4396         help-echo in help_echo_object and help_echo_pos.  Check both
4397         `local-map' and `keymap' properties for changing the cursor
4398         (note_mouse_highlight): Store additional information about the
4399         help-echo in help_echo_object and help_echo_pos.
4400         (note_tool_bar_highlight): Set help_echo_object to nil and
4401         help_echo_pos to -1.
4402         (XTread_socket): Use gen_help_event instead of filling
4403         input_events manually.
4404         (syms_of_xterm): Staticpro help_echo_object.
4406         * xmenu.c (menu_highlight_callback): Use
4407         kbd_buffer_store_help_event instead of setting up and input_event
4408         structure manually.
4410         * xdisp.c (eval_form): GCPRO argument sexpr.
4411         (call_function): New function.
4412         (handle_single_display_prop): Use call_function and FUNCTIONP
4413         instead of checking whether if font_height is a symbol and
4414         using eval_form.
4416         * eval.c (internal_condition_case_2): New function.
4418         * lisp.h (FUNCTIONP): New macro.
4419         (internal_condition_case_2, call_function): Add prototypes.
4421         * xterm.c (construct_mouse_click, x_scroll_bar_to_input_event)
4422         (x_scroll_bar_handle_click, SET_SAVED_MENU_EVENT, XTread_socket):
4423         Always set `arg' member of input_events.
4424         (construct_menu_click): Unused function removed.
4426         * msdos.c (dos_rawgetc): Always set `arg' member of input_events.
4428         * w32term.c (construct_mouse_click, construct_mouse_wheel)
4429         (construct_drag_n_drop, x_scroll_bar_handle_click)
4430         (w32_read_socket): Always set `arg' member of input_events.
4432         * keyboard.c (show_help_echo): Use eval_form.  Add comment.
4434         * lisp.h (eval_form): Add prototype.
4436         * xdisp.c (eval_form): Make it externally visible.
4438 2000-07-13  Gerd Moellmann  <gerd@gnu.org>
4440         * xterm.c (x_handle_tool_bar_click): Store the frame in the
4441         frame_or_window slot of TOOL_BAR_EVENT input events instead of
4442         consing.  For prefix events, store the frame in the `arg' slot of
4443         the event, otherwise store the key there.
4444         (XTread_socket): Instead of consing, use the frame_or_window slot
4445         of HELP_EVENTs for the frame, and the `arg' slot for the help
4446         string.
4448         * xmenu.c (menu_highlight_callback): Store help string in the
4449         `arg' member of the input event; don't cons.
4450         (menubar_selection_callback): Use the `arg' slot of input events
4451         to queue additional information, instead of consing.
4453         * msdos.c (dos_rawgetc): Adapt to change of HELP_EVENTs.
4455         * w32term.c (w32_handle_tool_bar_click): Adapt to changes in
4456         TOOL_BAR_EVENTs.
4457         (w32_read_socket): Adapt to changes in HELP_EVENTs.
4459         * w32menu.c (menubar_selection_callback): Use the `arg' slot of
4460         input events to queue additional information, instead of consing.
4462         * keyboard.c (kbd_buffer_gcpro): Renamed from
4463         kbd_buffer_frame_or_window.  Now used for all Lisp objects
4464         referenced from the input queue.
4465         (kbd_buffer_store_event): Always use structure assignment for
4466         copying input events.  Record all Lisp objects referenced from
4467         events in kbd_buffer_gcpro.
4468         (kbd_buffer_get_event): Construct Lisp `help-echo' events
4469         differently from input events.  Test for prefix menu_bar_events
4470         and TOOL_BAR_EVENTs differently.  Reset all slots used by an input
4471         event in kbd_buffer_gcpro to nil.
4472         (make_lispy_event) <TOOL_BAR_EVENT>: Treat an input event whose
4473         frame_or_window is equal to its arg member as prefix events.
4474         (stuff_buffered_input): Reset all slots in kbd_buffer_gcpro
4475         used by an input event to nil.
4476         (init_keyboard): Use two times the size of the input queue
4477         for kbd_buffer_gcpro.
4478         (syms_of_keyboard): Likewise.
4480         * emacs.c (handle_USR2_signal, handle_USR1_signal): Use
4481         USER_SIGNAL_EVENT.
4483         * termhooks.h (struct input_event): Add member `arg'.
4484         (MENU_BAR_EVENT): Renamed from menu_bar_event.
4485         (USER_SIGNAL_EVENT): Renamed from user_signal.
4487         * xfaces.c (ASET): Remove definition.
4489         * lisp.h (AREF, ASET, ASIZE): New macros.
4491         * fontset.c (AREF, ASIZE): Remove definitions.
4493         * fns.c (AREF): Remove definition.
4495         * composite.c (AREF): Remove definition.
4497 2000-07-12  Gerd Moellmann  <gerd@gnu.org>
4499         * dispnew.c (redraw_overlapped_rows): Add missing local.
4500         (scrolling_window): Remove debug code.
4502         * xdisp.c (try_window_reusing_current_matrix, try_window_id):
4503         Before scrolling, turn off a mouse-highlight in the window
4504         being scrolled.
4506         * xterm.c (x_update_window_end): Add parameter
4507         MOUSE_FACE_OVERWRITTEN_P.  If set, arrange for a mouse-highlight
4508         redisplay in XTframe_up_to_date.
4509         (x_clear_mouse_face): New function.
4510         (x_redisplay_interface): Add pointer to x_clear_mouse_face.
4512         * dispnew.c (make_current): Preserve the mouse_face_p flag of the
4513         current glyph row.
4514         (update_window_line): Add parameter MOUSE_FACE_OVERWRITTEN_P.  Set
4515         it when any row is written to that contains glyphs highlighted in
4516         mouse-face.
4517         (update_window): Call the window update end hook with new
4518         parameter MOUSE_FACE_OVERWRITTEN_P.
4519         (direct_output_for_insert): Give up if row contains mouse-face.
4521         * dispextern.h (struct redisplay_interface): Add parameter
4522         MOUSE_FACE_OVERWRITTEN_P to update_window_end_hook function.
4523         (clear_mouse_face): New function pointer member.
4525 2000-07-11  Stefan Monnier  <monnier@cs.yale.edu>
4527         * syntax.c (back_comment): Use one switch rather than a few `if's.
4528         Obey open_paren_in_column_0_is_defun_start.
4529         When reverting to the `slow' method, try to nicely handle the case
4530         of nested comments by checking that the comment-starter we found
4531         does indeed match the comment-ender.
4532         (scan_sexps_forward, scan_sexps_forward):
4533         Ignore excessive opening parenthesis rather than throwing an error.
4535 2000-07-11  Gerd Moellmann  <gerd@gnu.org>
4537         * doc.c (Fsubstitute_command_keys): Handle case that a GC
4538         in Fwhere_is_internal or get_keymap_1 relocates string contents.
4540         * dispnew.c (direct_output_forward_char): Give up if currently
4541         displaying a message instead of the minibuffer contents.
4543         * xterm.c (x_update_window_begin): No need to turn off the mouse
4544         highlight here.
4545         (show_mouse_face): Set the mouse_face_p flag of glyph rows
4546         depending on whether they contain glyphs highlighted in
4547         mouse-face.
4549         * dispnew.c (row_equal_p): Add parameter MOUSE_FACE_P.  If set,
4550         compare the mouse_face_p flags of both rows.
4552         * dispextern.h (struct glyph_row): Add flag mouse_face_p.
4554 2000-07-11  Eli Zaretskii  <eliz@is.elta.co.il>
4556         * keyboard.c (show_help_echo): Accept additional parameter
4557         ok_to_overwrite_keystroke_echo.
4558         (read_char): Call show_help_echo with a zero
4559         ok_to_overwrite_keystroke_echo argument.
4560         * keyboard.h (show_help_echo): Update prototype of
4561         show_help_echo.
4562         * xmenu.c (menu_help_callback): Call show_help_echo with non-zero
4563         ok_to_overwrite_keystroke_echo argument.
4564         * w32menu.c (w32_menu_display_help): Call show_help_echo with
4565         non-zero ok_to_overwrite_keystroke_echo argument.
4567 2000-07-10  Gerd Moellmann  <gerd@gnu.org>
4569         * xdisp.c (try_window_id): If changes are all below what is
4570         displayed in the window, and point is in the window, we still
4571         might have to find point on the display.
4573         * xterm.c (x_fill_stretch_glyph_string): Consume runs of stretch
4574         glyphs instead of a single one.
4575         (BUILD_STRETCH_GLYPH_STRING): Call x_fill_stretch_glyph_string
4576         with new argument list.
4577         (x_set_glyph_string_gc): Make sure the face's GC is valid.
4579         * keymap.c (get_keymap_1): Add comment that this function can GC.
4580         (where_is_internal_2, where_is_internal_1): Add GCPROs, add
4581         comment that functions can GC.
4582         (Fset_keymap_parent): GCPRO arg KEYMAP.
4584 2000-07-10  Eli Zaretskii  <eliz@is.elta.co.il>
4586         * msdos.c (XMenuActivate): After exiting the menu, restore the
4587         echo area message and erase it.
4589 2000-07-10  Kenichi Handa  <handa@etl.go.jp>
4591         * fontset.c (Ffontset_info): Make the return value more compatible
4592         with that of Emacs 20.
4594 2000-07-07  Gerd Moellmann  <gerd@gnu.org>
4596         * eval.c (Fsignal): Handle case that backtrace_list is null.
4598 2000-07-07  Kenichi Handa  <handa@etl.go.jp>
4600         * ccl.c (Fccl_execute): Typo fixed.
4602 2000-07-06  Gerd Moellmann  <gerd@gnu.org>
4604         * window.c (window_loop): Add missing gcpro1 local variable.
4606         * window.c (Fwindow_list): Reverse list at the end.
4607         (candidate_window_p): Add parameter OWINDOW.  ALL_FRAMES nil
4608         means allow windows on OWINDOW's frame, only.
4609         (window_loop): Simplified; use Fwindow_list.
4611         * Makefile.in (TAGS-LISP): Don't pass `$(lispsource)' to make.
4613 2000-07-05  Gerd Moellmann  <gerd@gnu.org>
4615         * xterm.c (XTread_socket): Increment handling_signal at the start,
4616         decrement it at the end.
4618         * eval.c (handling_signal): New variable.
4619         (Fsignal): Abort if handling_signal is non-zero.
4621         * lisp.h (handling_signal): External declaration.
4623         * s/freebsd.h (WAITTYPE, WRETCODE): Put in #if 0.
4625 2000-07-05  Ken Raeburn  <raeburn@gnu.org>
4627         Sound support for NetBSD through "Linux emulation" support:
4628         * config.in (HAVE_SOUNDCARD_H): Undef.
4629         (HAVE_SOUND): Define if HAVE_SOUNDCARD_H.
4630         * Makefile.in (LIBSOUND): New variable.
4631         (LIBES): Include it.
4632         * sound.c [HAVE_SOUNDCARD_H]: Include <sys/ioctl.h> and
4633         <soundcard.h>.
4634         (DEFAULT_SOUND_DEVICE): Define to "/dev/dsp" if not defined
4635         elsewhere.
4636         (vox_open): Use DEFAULT_SOUND_DEVICE.
4637         * s/netbsd.h (DEFAULT_SOUND_DEVICE): Define to /dev/audio.
4639 2000-07-05  Gerd Moellmann  <gerd@gnu.org>
4641         * print.c (print_error_message): If Vsignaling_function is set,
4642         show it in *Messages*.
4644         * lisp.h (Vsignaling_function): External declaration.
4646         * eval.c (Vsignaling_function): New variable.
4647         (Fsignal): Compute it.
4648         (syms_of_eval): Staticpro it.
4650 2000-07-05  Dave Love  <fx@gnu.org>
4652         * syswait.h: Use the autoconf recommended approach.  Old code
4653         #if'd out in case we need to revert.
4655         * config.in (HAVE_SYS_WAIT_H): Added.
4657 2000-07-05  Andrew Innes  <andrewi@gnu.org>
4659         * vm-limit.c (check_memory_limits) [REL_ALLOC]: Use real_morecore
4660         when non-NULL instead of __morecore, to take account of buffer
4661         memory.  This also solves a problem with spurious memory warnings
4662         on Windows.
4664         * ralloc.c: Make real_morecore non-static.
4666         * eval.c (internal_condition_case): Comment out abort if
4667         interrupt_input_blocked is not zero.
4669         * makefile.nt: Add support for `bootstrap' and related targets.
4670         Include minimal debug info in emacs.exe in release build.
4671         Remove all dependencies on lisp.h, and fixup some others.
4673         * w32.c (init_environment): Install code from 20.7 for providing
4674         default values for environment variables, based on the
4675         executable's own location.
4676         (map_w32_filename): Handle filenames that are longer than
4677         MAX_PATH.
4678         (sys_socket): Install socket inheritance bug fix from 20.7.
4680         * alloca.c [emacs]: Include lisp.h (needed by atimer.h included
4681         here via blockinput.h).
4683 2000-07-05  Stefan Monnier  <monnier@cs.yale.edu>
4685         * w32menu.c (w32_menu_display_help):
4686         * xmenu.c (menu_help_callback): Use show_help_echo.
4688         * keyboard.h (show_help_echo): Declare.
4690         * keyboard.c (show_help_echo): New function, extracted from read_char.
4691         Feval its `msg' argument if it's a cons cell.
4692         (read_char): Use it.
4693         (follow_key): Pass `autoload' to get_keyelt.
4695         * xterm.c (note_mode_line_highlight, note_mouse_highlight)
4696         (note_tool_bar_highlight, XTread_socket):
4697         * msdos.c (IT_note_mode_line_highlight, IT_note_mouse_highlight)
4698         (dos_rawgetc):
4699         * w32term.c (note_mode_line_highlight, note_mouse_highlight)
4700         (note_tool_bar_highlight, w32_read_socket):
4701         Do not gratuitously ignore non-string `help-echo' properties.
4703 2000-07-05  Gerd Moellmann  <gerd@gnu.org>
4705         * eval.c (Feval): Put check for interrupt_input_block in #if 0.
4707         * window.c (delete_all_subwindows): Reset Vwindow_list.
4709         * xterm.c (x_append_glyph, x_append_composite_glyph)
4710         (x_produce_image_glyph, x_append_stretch_glyph): Accomodate to
4711         changes in struct glyph starting 1999-12-27.  Some bit-fields of
4712         struct glyph were not set, which made glyphs unequal when compared
4713         with GLYPH_EQUAL_P.  Redisplay outputs such glyphs, and flickering
4714         effects were the result.  This also depended on the contents of
4715         memory returned by xmalloc.  If flickering happens again, activate
4716         the code in clear_glyph_row that's in #if 0.  If the flickering is
4717         gone with that, chances are that it is caused by something
4718         similar.
4720         * dispnew.c (clear_glyph_row): Add debug code in #if 0.
4722         * dispextern.h: Add some comments.
4724         * window.c (add_window_to_list): Add parameter LIST.
4725         (window_list): Order list so that, for each frame, windows are
4726         in canonical order, and so that frames appear in the list in
4727         the order given by Vframe_list.
4728         (next_window): Reverse the handling of NEXT_P.
4730 2000-07-04  Gerd Moellmann  <gerd@gnu.org>
4732         * window.c (Vwindow_list): New variable.
4733         (make_window, delete_window): Set Vwindow_list to nil.
4734         (check_window_containing): New function.
4735         (window_from_coordinates): Rewritten.
4736         (add_window_to_list, window_list, candidate_window_p)
4737         (decode_next_window_args, next_window): New functions.
4738         (Fnext_window, Fprevious_window): Rewritten in terms of
4739         next_window.
4740         (Fwindow_list): New function.
4741         (Fother_window): Cleaned up.
4742         (foreach_window): Add a longer "variable argument list".  Let
4743         callback function return 0 to indicate that cycling over windows
4744         should stop.
4745         (foreach_window_1): Likewise.
4746         (freeze_window_start): Return int.
4747         (init_window): New function.
4748         (syms_of_window): Staticpro Vwindow_list and defsubr Swindow_list.
4750         * emacs.c (handle_USR1_signal, handle_USR2_signal) Clear
4751         input_event with bzero.
4752         (main): Call init_window.
4754         * keymap.c (get_keyelt): Temporarily inhibit GC while evaluating
4755         a menu filter.
4757 2000-07-04  Kenichi Handa  <handa@etl.go.jp>
4759         * composite.h (make_composition_value_copy): Extern it.
4761         * composite.c (make_composition_value_copy): New function.
4763         * editfns.c (Fformat): While copying text properties, make each
4764         composition property value a copy.
4766         * fns.c (concat): While copying text properties, make each
4767         composition property value a copy.
4769 2000-07-03  Gerd Moellmann  <gerd@gnu.org>
4771         * m/macppc.h (LINKER, LD_SWITCH_MACHINE) [LINUX]: Define.
4773         * fns.c (sweep_weak_table): Mark only objects that are not
4774         marked already.
4776         * frame.c (next_frame, prev_frame): If MINIBUF is a window,
4777         include those frames as candidates which have their focus
4778         redirected to the minibuffer frame.
4780 2000-07-03  Stefan Monnier  <monnier@cs.yale.edu>
4782         * fns.c (Fputhash): Return `value' rather than nil.
4784 2000-06-30  Gerd Moellmann  <gerd@gnu.org>
4786         * frame.c (next_frame): Don't check focus redirection in case
4787         MINIBUF is a window.  Doing so excludes frames using MINIBUF
4788         unless their focus is redirected, which contradicts the
4789         specification of next-frame, and leads to infinite loops in
4790         certain situations when cycling through windows with next-window.
4792 2000-06-30  Kenichi Handa  <handa@etl.go.jp>
4794         * coding.c (code_convert_region): Even if the length of text is
4795         zero, try to convert it if coding->type is coding_type_ccl.
4796         (decode_coding_string, encode_coding_string): Likewise.
4798 2000-06-28  Gerd Moellmann  <gerd@gnu.org>
4800         * xdisp.c (try_window_reusing_current_matrix): Don't try to reuse
4801         the display if windows_or_buffers_changed.
4803         * dispnew.c (struct row_entry): New structure.
4804         (row_entry_pool, row_entry_pool_size, row_entry_idx, row_table)
4805         (row_table_size, old_lines, new_lines, old_lines_size)
4806         (new_lines_size, run_pool, runs_size, runs): New variables.
4807         (add_row_entry): New function.
4808         (scrolling_window): Use data structures allocated with xmalloc and
4809         held in global variables, instead of allocating them with alloca and
4810         holding them in local variables.  Use a larger hash table whose
4811         size depends on glyph matrix sizes.  Don't use bzero to clear the
4812         hash table; instead, clear used slots only.
4814         * fns.c (next_almost_prime): Make it externally visible.
4816         * lisp.h (next_almost_prime): Add prototype.
4818         * s/isc4-0.h (sigunblock): Define.
4820         * s/sco5.h (sigunblock): Define.
4822 2000-06-27  Dave Love  <fx@gnu.org>
4824         * s/osf1.h (C_SWITCH_SYSTEM, LIBS_SYSTEM): Revert last change
4825         (moved to osf5-0.h).
4826         [!NOT_C_CODE]: Protect string.h stuff.
4828         * s/osf5-0.h (C_SWITCH_SYSTEM, WAIT_USE_INT, SYS_SIGLIST_DECLARED)
4829         (sys_siglist, NSIG): Definitions moved here from osf1.h.
4831 2000-06-27  Gerd Moellmann  <gerd@gnu.org>
4833         * xdisp.c (resize_mini_window): Subtract the extra line spacing
4834         below the last line from the needed window height.
4836 2000-06-26  Stefan Monnier  <monnier@cs.yale.edu>
4838         * fns.c (Fplist_member): Renamed from Fwidget_plist_member.
4839         (Fwidget_get): Use it.
4840         (syms_of_fns): Defsubr it.
4842 2000-06-26  Gerd Moellmann  <gerd@gnu.org>
4844         * xterm.c (xim_initialize) [!USE_XIM]: Don't set up the
4845         display info for XIM.
4846         (xim_open_dpy): Likewise.
4847         (xim_close_dpy): Don't free the display info's XIM.
4849         * xfns.c (x_window) [!USE_XIM]: Don't call create_frame_ic.
4851         * config.in (USE_XIM): New define.
4853         * keymap.c (get_keyelt): For menu-items containing a `:filter
4854         FILTER', apply FILTER to the menu-item's definition to get the
4855         real definition to use.
4857         * lisp.h (QCfilter): External declaration.
4859         * xfns.c (Fimage_size): New function.
4860         (syms_of_xfns): Defsubr it.
4862 2000-06-26  Andreas Schwab  <schwab@suse.de>
4864         * coding.c (decode_coding_string): Re-fetch STRING_BYTES after
4865         Fstring_as_unibyte.
4867 2000-06-25  Dave Love  <fx@gnu.org>
4869         * term.c [!HAVE_TERMCAP_H]: Declare tputs, tgetent, tgetflag,
4870         tgetnum.
4872         * Makefile.in (blockinput.h): Depend on atimer.h.
4873         (atimer.h): Depend on systime.h.
4875         * blockinput.h: Protect against multiple inclusion.  Include
4876         atimer.h.
4878         * atimer.h: Protect against multiple inclusion.  Include
4879         systime.h.
4881         * lisp.h (swap_in_global_binding): Declare.
4883 2000-06-24  Ken Raeburn  <raeburn@gnu.org>
4885         * process.c (Fopen_network_stream): Turn off atimers for duration
4886         of call to connect.  (Patch from Gerd.)
4888 2000-06-23  Dave Love  <fx@gnu.org>
4890         * ralloc.c: Maybe include unistd.h
4892         * emacs.c (setgrp): Undefine before defining.
4893         (malloc_warning, set_time_zone_rule, index): Prototype.
4895         * systime.h (EMACS_GET_TIME) [!GETTIMEOFDAY_ONE_ARGUMENT]: Use
4896         HAVE_STRUCT_TIMEZONE.
4898         * s/osf1.h: Move string.h hack here from alpha.h and make it
4899         conditional.
4900         (C_SWITCH_SYSTEM): Use _OSF_SOURCE, not -BSD, which clashes with
4901         _XOPEN_SOURCE.
4902         (WAIT_USE_INT, SYS_SIGLIST_DECLARED, sys_siglist, NSIG): Define.
4903         (SOCKLEN_TYPE): Don't define.
4905         * m/alpha.h: Remove string.h hack.
4907         * s/osf5-0.h: New file.
4909         * filelock.c: Use feature tests for fcntl.h, string.h.  Don't
4910         include time.h, done by systime.h.
4911         [__FreeBSD__]: Remove redundant includes.
4913         * callproc.c (setpgrp): Undefine before defining.
4914         (delete_temp_file): Return Qnil to avoid warning.
4916         * config.in (HAVE_TERM_H, HAVE_STRUCT_TIMEZONE): Add.
4918         * xfaces.c: Include fontset.h dependent on HAVE_WINDOW_SYSTEM, not
4919         HAVE_X_WINDOWS.
4921         * fontset.h (free_face_fontset): Renamed from fs_free_face_fontset.
4923         * composite.h (compose_text): Declare.
4925         * xterm.c: Don't include sys/types.h unconditionally.  Don't
4926         protect its inclusion with !USG (following xmenu.c).
4928 2000-06-23  Gerd Moellmann  <gerd@gnu.org>
4930         * xfns.c (x_create_tip_frame): Initialize frame's colors like
4931         in x_create_frame.
4933 2000-06-23  Eli Zaretskii  <eliz@is.elta.co.il>
4935         * coding.c (decode_eol_post_ccl): Special handling for undecided
4936         and inconsistent EOL types.
4938 2000-06-22  Gerd Moellmann  <gerd@gnu.org>
4940         * xrdb.c (x_load_resources): Add default resource for scroll bar's
4941         trough color and main window's background color.
4943         * xfns.c (Fx_file_dialog) [HAVE_MOTIF_2_1]: Handle events
4944         differently.
4946         * xterm.h (Xt_app_con): External declaration.
4948         * widget.c (EmacsFrameRealize): Fix typo.
4950         * widget.c (EmacsFrameRealize): Remove SubstructureRedirectMask.
4952         * xdisp.c (handle_stop): Initialize it->add_overlay_start to zero.
4953         (handle_invisible_prop): Record the start of invisible text in
4954         it->add_overlay_start.
4955         (struct overlay_entry): Add member `overlay'.
4956         (handle_overlay_change): Simplify.
4957         (next_overlay_string): After having processed overlay strings at the
4958         end of the buffer, record that fact in
4959         it->overlay_strings_at_end_processed_p.
4960         (compare_overlay_entries): If before- and after-strings come
4961         from the same overlay, let before-strings come first.
4962         (RECORD_OVERLAY_STRING): Record the overlay that strings come from.
4963         (load_overlay_strings): Take it->add_overlay_start into account
4964         when adding overlay strings.
4966         * dispextern.h (struct it): Add member add_overlay_start.
4968 2000-06-22  Dave Love  <fx@gnu.org>
4970         * s/isc3-0.h (C_SWITCH_SYSTEM): Define _XOPEN_SOURCE=500.
4972         * s/gnu-linux.h (C_SWITCH_SYSTEM): Don't define _XOPEN_SOURCE here.
4974 2000-06-22  Kenichi Handa  <handa@etl.go.jp>
4976         * ccl.c (ccl_driver) <CCL_End>: Decrement stack_idx only when it
4977         is greater than 0.
4979 2000-06-21  Dave Love  <fx@gnu.org>
4981         * Makefile.in (GETLOADAVG_OBJ): Removed -- LIBOBJS does it.
4983 2000-06-21  Stefan Monnier  <monnier@cs.yale.edu>
4985         * syntax.c (back_comment): Simplify string-parity counting (with
4986         the added benefit of handling multiple string-styles as long as
4987         they are not intertwined).
4988         Jump to the slow code as soon as a comment starter is found in
4989         a "string_lossage" position.  Fixes the case:  " /* " /* " */.
4991 2000-06-21  Dave Love  <fx@gnu.org>
4993         * Makefile.in: Use GETLOADAVG_LIBS.
4995         * config.in: Add HAVE_FCNTL_H, _FILE_OFFSET_BITS,
4996         _LARGEFILE_SOURCE, _LARGE_FILES, _XOPEN_SOURCE.
4998 2000-06-20  Stefan Monnier  <monnier@cs.yale.edu>
5000         * syntax.c (describe_syntax): Recognize the `n'estable bit.
5001         (Fforward_comment, scan_lists):
5002         Check the comstyle of single-char comment-starters.
5003         (scan_sexps_forward): Don't try to recognize `half comment-enders' if
5004         we're just at the beginning of the comment (f.ex with (*) ... (*)).
5005         Check the comstyle of single-char comment-starters.
5006         Clarify control-flow around the Scomment case.
5008 2000-06-20  Dave Love  <fx@gnu.org>
5010         * fns.c (make_hash_table, maybe_resize_hash_table):
5011         Cast arg of next_almost_prime.
5013         * tparam.c [emacs]: Include lisp.h.
5015         * termcap.c [emacs]: Test HAVE_FCNTL_H, not USG5.  Include lisp.h
5016         and unistd.h.
5018 2000-06-20  Gerd Moellmann  <gerd@gnu.org>
5020         * keyboard.c (adjust_point_for_property): Check if display
5021         property should be treated as intangible by looking at its
5022         value.
5024         * xdisp.c (single_display_prop_intangible_p)
5025         (display_prop_intangible_p): New functions.
5027         * dispextern.h (display_prop_intangible_p): Add prototype.
5029         * xdisp.c (dump_glyph_row): Show type of glyph->object.
5031         * s/isc4-0.h (sigblock): Redefined to pass a pointer as second
5032         argument to sigprocmask.
5034         * s/sco5.h (sigblock): Redefined to pass a pointer as second
5035         argument to sigprocmask.
5037         * syssignal.h (sigblock, sigunblock) [USG5_4]: Set
5038         sigprocmask_set, and pass a pointer to it to sigprocmask.
5040         * sysdep.c (sigprocmask_set): New variable.
5042         * fileio.c (make_temp_name): Don't use `%s' in string passed to
5043         report_file_error.
5045 2000-06-20  Sam Steingold  <sds@gnu.org>
5047         * xrdb.c: Don't declare xmalloc, xrealloc.
5049 2000-06-20  Stefan Monnier  <monnier@cs.yale.edu>
5051         * regex.c (re_match, re_match_2): Protect calls to alloca (0).
5052         (re_comp): Cast gettext return value to avoid complaints when
5053         !HAVE_LIBINTL.
5055 2000-06-20  Dave Love  <fx@gnu.org>
5057         * m/stride.h, m/mips.h: Don't define HAVE_GETWD,
5058         HAVE_GETTIMEOFDAY.
5060         * m/ibmrt-aix.h: Don't declare HAVE_GETTIMEOFDAY, HAVE_VFORK.
5062         * m/ibmrs6000.h, m/ibmps2-aix.h, m/dpx2.h: Don't declare HAVE_GETWD.
5064         * m/alpha.h: Don't declare xmalloc, xrealloc.
5066         * s/ux4800.h: Don't declare GETTIMEOFDAY_ONE_ARGUMENT.
5068         * s/usg5-4-2.h: Don't declare HAVE_GETWD, VFORK_RETURN_TYPE.
5070         * s/umips.h: Don't declare HAVE_GETWD, HAVE_GETTIMEOFDAY.
5072         * s/cxux.h, s/gnu-linux.h, s/iris3-6.h, s/irix3-3.h: Don't declare
5073         HAVE_GETWD.
5075         * keyboard.h (poll_for_input_1): Declare.
5077         * getloadavg.c: Don't define NLIST_STRUCT (handled by configure).
5079         * alloc.c (xmalloc, xrealloc, xfree): Define using POINTER_TYPE.
5081         * doprnt.c: Don't declare xmalloc, xrealloc.
5083         * lisp.h (x_set_tool_bar_lines, free_frame_xic, compose_text)
5084         (getenv, ctime, getwd): Removed.
5085         (xmalloc, xrealloc, xfree): Declare using POINTER_TYPE.
5087         * xterm.h: Remove duplicate prototypes.  Declare free_frame_xic,
5088         x_set_tool_bar_lines.
5090         * config.in: Add HAVE_GETWD.  Move some definitions above
5091         machine/system includes.
5093 2000-06-20  Kenichi Handa  <handa@etl.go.jp>
5095         * s/bsd386.h (HAVE_GETLOADAVG): Define it as 1.
5097         * xfaces.c (font_list): Handle the case that REGISTRY doesn't
5098         contain information about ENCODING.
5100         * fontset.c (FONTSET_ASCII): Use the first element of char table
5101         for an ASCII font, not defalt slot.
5102         (fontset_ref_via_base): If FONTSET doesn't contain information for
5103         C, try the default fontset.
5104         (make_fontset): Don't copy the default fontset.
5105         (fontset_font_pattern): Likewise.
5106         (accumulate_font_info): If ELT is nil, use the corresponding
5107         element in the default fontset.
5109 2000-06-19  Dave Love  <fx@gnu.org>
5111         * syntax.c (Fparse_partial_sexp): Doc fix.
5113         * regex.h: Test PROTOTYPES as well as __STDC__.
5115         * unexalpha.c: Include errno.h, string.h, unistd.h.  Don't declare
5116         errno, strerror.  Put text after #endif in comment.
5118         * xdisp.c (dump_glyph_matrix): Add `static' to declaration (for
5119         pcc).
5121         * xterm.c (x_frame_of_widget): Likewise.
5123 2000-06-19  Gerd Moellmann  <gerd@gnu.org>
5125         * abbrev.c (syms_of_abbrev): Set buffer_default's abbrev table
5126         to Vfundamental_mode_abbrev_table.
5128         * alloc.c (mark_object) [GC_CHECK_MARKED_OBJECTS]: Check that no
5129         bogus objects are marked.  This slows down GC by ~80 percent, but
5130         it might be worth trying when debugging GC-related problems.
5131         This feature requires conservative stack marking to be enabled.
5133         * xterm.c (XTread_socket) <KeyPress>: In case XmbLookupString
5134         returns XLookupChars, reset `modifiers' to zero.
5136 2000-06-19  Dave Love  <fx@gnu.org>
5138         * mktime.c: Unprotoized.
5140 2000-06-19  Richard Stallman  <rms@gnu.org>
5142         * data.c (set_internal): If variable is frame-local,
5143         store the new value immediately into the frame parameter alist.
5145 2000-06-19  Ken Raeburn  <raeburn@gnu.org>
5147         * xfns.c (jpeg_load): Fetch error-handling data first, then fill
5148         in the custom handler pointer.
5150         * keyboard.c (follow_key, read_key_sequence): Use XUINT on key
5151         value, or checks for CHAR_META can fail when Lisp_Object is a
5152         union type.
5153         * keymap.c (get_keyelt): Likewise.
5155 2000-06-19  Kenichi Handa  <handa@etl.go.jp>
5157         * ccl.h (struct ccl_program): New member eol_type.
5158         (struct ccl_spec): New member cr_carryover.
5160         * ccl.c (CCL_WRITE_CHAR): Convert NL according to ccl->eol_type.
5161         (setup_ccl_program): Initialize ccl->eol_type to CODING_EOL_LF.
5163         * coding.c (setup_coding_system) <4>: Reset member `cr_carryover'.
5164         (ccl_coding_driver): On encoding, initialize ccl->eol_type.
5165         (decode_eol_post_ccl): New function.
5166         (decode_coding): Don't detect EOL format here for CCL based coding
5167         systems.
5168         (decode_coding) <coding_type_ccl>: Handle carryovered CR.  Call
5169         decode_eol_post_ccl after running the CCL program.
5170         (code_convert_region): Don't detect EOL format here for CCL based
5171         coding systems.
5172         (decode_coding_string): Likewise.
5174 2000-06-18  Ken Raeburn  <raeburn@gnu.org>
5176         * charset.c (update_charset_table): Use XINT on "iso_final_char"
5177         when treating it as an integer.
5179         * coding.h (encode_coding_string): Declare.
5181         * keyboard.c (read_key_sequence): Use XINT on "pos" when treating
5182         it as an integer.
5184         * keymap.c (Fwhere_is_internal): Rename argument "keymap" to
5185         "xkeymap" to avoid shadowing the "enum map_type" value that needs
5186         to be passed to get_local_map.
5188         * sound.c (Fplay_sound): Don't call make_number on
5189         Frun_hook_with_args count argument.
5191         * xterm.c (x_send_scroll_bar_event): Fudge lisp object/integer
5192         for lisp objects in X event structure data field, when lisp
5193         objects are represented with unions.
5194         (x_scroll_bar_to_input_event): Ditto.
5196 2000-06-16  Ken Raeburn  <raeburn@gnu.org>
5198         * xdisp.c (decode_mode_spec): In "no_value" case, do NUL
5199         termination of string.  Fix sense of test whether
5200         Vline_number_display_limit is an integer.
5202 2000-06-16  Gerd Moellmann  <gerd@gnu.org>
5204         * xfaces.c (syms_of_xfaces) [DEBUG_X_COLORS]: Defsubr dump_colors
5205         only if HAVE_X_WINDOWS.
5207         * keymap.c (describe_buffer_bindings): Add `\f\n' in front
5208         of titles.
5210         * dispnew.c (update_frame_1): Handle case that cursor vpos is
5211         out of bounds.
5213 2000-06-15  Eli Zaretskii  <eliz@is.elta.co.il>
5215         * unexec.c (toplevel): Fix last change, so as not to deprive MSDOS
5216         of its headers.
5218 2000-06-15  Kenichi Handa  <handa@etl.go.jp>
5220         * coding.c (decode_coding_emacs_mule): Always set src_base at the
5221         start of the while loop.
5223 2000-06-15  Gerd Moellmann  <gerd@gnu.org>
5225         * atimer.c (alarm_signal_handler): Add forward declaration.
5227         * data.c (set_internal): Remove debug code.
5229 2000-06-14  Gerd Moellmann  <gerd@gnu.org>
5231         * Makefile.in (bootstrap-temacs): Add `-I../src'.
5233         * unexec.c (toplevel) [COFF]: Include coff.h.
5235         * s/lynxos.h: New file.
5237         * keymap.c (Fsingle_key_description): Enclose function key and
5238         event symbol names in angle brackets.
5240         * xdisp.c (setup_echo_area_for_printing): Call
5241         message_log_maybe_newline if message_buf_print is not set.
5243         * print.c (printchar, strout): Don't check message_buf_print
5244         before calling setup_echo_area_for_printing because that
5245         function does something useful even when message_buf_print is
5246         already set.
5248         * xdisp.c (message_truncate_lines, Qmessage_truncate_lines): New
5249         variables.
5250         (ensure_echo_area_buffers): Initialize echo buffer's
5251         truncate lines setting to nil.
5252         (with_echo_area_buffer): Don't set the echo buffer's truncate
5253         lines setting here.
5254         (set_message_1): Set it here instead, based on the value
5255         of message_truncate_lines.
5256         (resize_mini_window): Handle case that lines are truncated.
5257         (syms_of_xdisp): Initialize Qmessage_truncate_lines.  DEFVAR_BOOL
5258         message-truncate-lines.
5260         * keyboard.c (read_char): Bind message-truncate-lines to t
5261         while displaying a help-echo.
5263         * lisp.h (Qmessage_truncate_lines): External declaration.
5265 2000-06-13  Gerd Moellmann  <gerd@gnu.org>
5267         * xdisp.c (Vline_number_display_limit): Renamed from
5268         line_number_display_limit.
5269         (syms_of_xdisp): Use DEFVAR_LISP for line-number-display-limit.
5270         Extend documentation string.  Initialize
5271         Vline_number_display_limit to nil meaning no limit.
5272         (decode_mode_spec): Use Vline_number_display_limit with its new
5273         meaning.
5275         * xterm.c (x_check_font) [GLYPH_DEBUG]: Add prototype.
5277 2000-06-13  Richard Stallman  <rms@gnu.org>
5279         * frame.c (Fmodify_frame_parameters): Doc fix.
5281         * xfns.c (x_set_frame_parameters): Comment fix.
5283         * frame.c (store_frame_param): Call swap_in_global_binding if the
5284         variable's current binding was chosen based on this frame.
5286         * data.c (swap_in_global_binding): New function.
5288 2000-06-13  Eli Zaretskii  <eliz@is.elta.co.il>
5290         * msdos.c (IT_write_glyphs): Don't use CODING_REQUIRE_ENCODING
5291         macro, instead AND with CODING_REQUIRE_ENCODING_MASK.
5293 2000-06-13  Eli Zaretskii  <eliz@is.elta.co.il>
5295         * msdos.h (EMACS_MSDOS_H): Renamed from MSDOS_H_.
5297 2000-06-12  Jason Rumney  <jasonr@gnu.org>
5299         * w32bdf.h (EMACS_W32BDF_H): Renamed from __W32BDF_H__
5301         * w32.h (EMACS_W32_H): Renamed from _NT_H_
5303         * w32gui.h (EMACS_W32GUI_H): Renamed from __W32GUI_H__
5305         * w32inevt.h (EMACS_W32INEVT_H): Renamed from __NTINEVT_H__
5307 2000-06-12  Gerd Moellmann  <gerd@gnu.org>
5309         * xfaces.c (Fdump_colors) [DEBUG_X_COLORS]: New function.
5310         (syms_of_xfaces): Defsubr Sdump_colors.
5311         (x_free_colors): Don't treat b&w specially on default visual.
5312         (x_free_dpy_colors): New function.
5313         (free_face_colors): Don't check visual class; it's done
5314         in x_free_colors.
5316         * xterm.c (x_frame_of_widget): New function.
5317         (x_alloc_nearest_color_for_widget): Use it.
5318         (x_copy_dpy_color): New function.
5319         (x_destroy_window): Free various colors.
5321 2000-06-12  Kenichi Handa  <handa@etl.go.jp>
5323         * ccl.h (EMACS_CCL_H): Renamed from _CCL_H.
5325         * charset.h (EMACS_CHARSET_H): Renamed from _CHARSET_H.
5327         * coding.h (EMASC_CODING_H): Renamed from _CODING_H.
5329         * composite.h (EMACS_COMPOSITE_H): Renamed from _COMPOSITE_H.
5331         * fontset.h (EMACS_FONTSET_H): Renamed from _FONTSET_H.
5333 2000-06-11  Dave Love  <fx@gnu.org>
5335         * systime.h (EMACS_SYSTIME_H): Renamed from _SYSTIME_H.
5337 2000-06-11  Eli Zaretskii  <eliz@is.elta.co.il>
5339         * msdos.h: Don't use _MSDOS_H_ as a symbol, use MSDOS_H_ instead.
5341 2000-06-11  Gerd Moellmann  <gerd@gnu.org>
5343         * xmenu.c (xmenu_show): Cast second parameter of lw_popup_menu
5344         to `XEvent *'.
5346 2000-06-10  Kenichi Handa  <handa@etl.go.jp>
5348         * regex.c (MAKE_CHAR) [!emacs]: Dummy macro for non-Emacs env.
5349         (regex_compile): Fix the code for handling the case of single byte
5350         char and multibyte char being mixed in a range within [...].
5352         * fileio.c (Finsert_file_contents): Be sure to setup src_multibyte
5353         and dst_multibyte members of coding.
5355         * charset.c (update_charset_table): Update the table
5356         bytes_by_char_head.
5357         (init_charset_once): Initialize elements of bytes_by_char_head to
5358         1 except for leading codes for private charases.
5360         * charset.h (CHARSET_8_BIT_GRAPHIC): Define as 0x80.
5361         (UNIBYTE_STR_AS_MULTIBYTE_P): Fix for an invalid multibyte
5362         sequence.
5364 2000-06-09  Ken Raeburn  <raeburn@gnu.org>
5366         * xterm.c (x_connection_closed): If dpyinfo is NULL, don't try to
5367         access the data it doesn't point to.
5369 2000-06-08  Gerd Moellmann  <gerd@gnu.org>
5371         * xterm.c (XTread_socket) <FocusIn>: Queue a FOCUS_IN_EVENT which
5372         will be translated to a switch-frame event when reading the
5373         event queue.  This is necessary because Emacs otherwise won't
5374         perform a switch-frame to a new frame until some other event, for
5375         example a keystroke event, forces it to do so.  This has various
5376         effects, one visible being that the cursor of a frame created with
5377         C-x 5 2 or switched to with a window manager key binding like
5378         A-TAB stays hollow because selected_window isn't on the newly
5379         focused frame until the switch-frame is performed.
5381         * keyboard.c (kbd_buffer_get_event): Handle FOCUS_IN_EVENT by
5382         generating a switch-frame event if necessary.
5384         * termhooks.h (enum event_kind): Add FOCUS_IN_EVENT.
5386         * xdisp.c (handle_fontified_prop): Don't GCPRO local var `pos';
5387         it's an integer.
5389 2000-06-08  Kenichi Handa  <handa@etl.go.jp>
5391         * fontset.c (Fset_fontset_font): The arg CHARACTER may be a
5392         charset.
5394 2000-06-07  Gerd Moellmann  <gerd@gnu.org>
5396         * window.c (displayed_window_lines): Take empty lines at
5397         the bottom of a window into account.
5399         * window.c (displayed_window_lines): New function.
5400         (Fmove_to_window_line): Use displayed_window_lines to determine
5401         the number of lines to move, instead of using the window's height.
5403         * lread.c (readevalloop): If READCHARFUN sets point to ZV, arrange
5404         to stop reading, even if the form read sets point to a different
5405         value when evaluated.
5407         * xdisp.c (display_line): Fix code deciding in which line to
5408         put the cursor.
5410 2000-06-07  Kenichi Handa  <handa@etl.go.jp>
5412         * fileio.c (e_write): Free composition data if stored in
5413         coding->cmp_data.
5415 2000-06-06  Gerd Moellmann  <gerd@gnu.org>
5417         * xdisp.c (display_line): Set row's and iterator's
5418         starts_in_middle_of_char_p and ends_in_middle_of_char_p flags.
5419         Set cursor even if row ends in the middle of a character.
5420         (dump_glyph_row): Print values of new flags.
5421         (redisplay_window) <cursor movement in unchanged window>: When
5422         point has been moved forward, and PT is at the end of the cursor
5423         row, don't place the cursor in the next row if the cursor row ends
5424         in the middle of a character or at ZV.
5426         * dispextern.h (struct it): Add starts_in_middle_of_char_p.
5427         (struct glyph_row): Add starts_in_middle_of_char_p and
5428         ends_in_middle_of_char_p.
5429         (MATRIX_ROW_ENDS_IN_MIDDLE_OF_CHAR_P): Test row's
5430         ends_in_middle_of_char_p flag.
5431         (MATRIX_ROW_STARTS_IN_MIDDLE_OF_CHAR_P): Likewise.
5433         * term.c (append_glyph): Revert change of 2000-06-06.
5435         * xdisp.c (display_line): Revert change of 2000-06-06.  Treat
5436         padding glyph not fitting on line as whole character not
5437         fitting on line.
5439         * xterm.c (x_produce_glyphs): Don't xassert `it->descent > 0';
5440         this isn't true for images with `:ascent 100'.
5442 2000-06-06  Kenichi Handa  <handa@etl.go.jp>
5444         * buffer.c (Fset_buffer_multibyte): Don't make the current buffer
5445         as modified if it is originally unmodified.
5447         * term.c (encode_terminal_code): Change the way to check if
5448         terminal coding does any conversion.
5449         (append_glyph): Set glyph->pixel_width correctly.
5451         * xdisp.c (display_line): While checking line continuation, pay
5452         attention to a padding glyph.
5454 2000-06-05  Gerd Moellmann  <gerd@gnu.org>
5456         * xdisp.c (redisplay_window): Always use set_buffer_internal_1.
5458 2000-06-05  Dave Love  <fx@gnu.org>
5460         * xdisp.c: Include fontset.h.
5462         * xfns.c (x_real_positions): Declare tmp_nchildren as unsigned.
5464         * xterm.c (x_calc_absolute_position): Declare nchildren unsigned.
5466         * dispnew.c: Conditionally include term.h.
5468         * coding.h: Declare code_convert_string_norecord.
5470         * frame.h (struct frame): Use volatile unconditionally.
5472         * buffer.h: Remove Vbefore_change_function, Vafter_change_function.
5474         * xmenu.c (menu_item_selection): Declare volatile unconditionally.
5476         * systime.h: Protect against multiple inclusion.
5477         (timezone) [USG5_4]: Define as time_t.
5479         * lisp.h (DEFUN, EXFUN): Test PROTOTYPES.
5480         (Foptimize_char_table, make_temp_name): Declare.
5482         * Makefile.in (xdisp.o): Depend on fontset.h.
5484         * xterm.c (x_calc_absolute_position): Declare nchildren unsigned.
5486         * lisp.h (DEFUN, EXFUN): Test PROTOTYPES.
5487         (Foptimize_char_table, make_temp_name): Declare.
5489         * s/irix4-0.h:
5490         * s/irix5-0.h:
5491         * s/netbsd.h: Don't define autoconfiscated MATHERR.
5493 2000-06-02  Dave Love  <fx@gnu.org>
5495         * lread.c (_XOPEN_SOURCE, __EXTENSIONS__): Don't define.
5497 2000-06-02  Gerd Moellmann  <gerd@gnu.org>
5499         * xfaces.c (realize_x_face): When copying BASE_FACE bitwise to the
5500         result face, set flags in that face indicating that colors may not
5501         be freed.
5503         * xterm.c (x_set_mouse_face_gc): If first glyph isn't a character
5504         glyph, use the ASCII NUL character to determine the face.
5506 2000-06-02  Dave Love  <fx@gnu.org>
5508         * sysdep.c: Conditionally include stdlib.h, unistd.h.
5509         (VFORK_RETURN_TYPE): Remove.
5511         * config.in: Add NO_MATHERR.
5513 2000-06-01  Dave Love  <fx@gnu.org>
5515         * cmds.c (internal_self_insert): Don't check
5516         Vbefore_change_function, Vafter_change_function.
5518         * insdel.c (signal_before_change, signal_after_change): Likewise.
5520         * buffer.c (Vbefore_change_function, Vafter_change_function):
5521         Variables and their initializations deleted.
5523         * callint.c (Fcall_interactively): Doc fix.
5525         * terminfo.c (ospeed) [HAVE_SPEED_T]: Don't declare extern.
5527 2000-05-31  Dave Love  <fx@gnu.org>
5529         * textprop.c: Revert last change -- duplicated.
5531 2000-05-31  Gerd Moellmann  <gerd@gnu.org>
5533         * dispnew.c (find_glyph_row_slice, swap_glyphs_in_rows): Put
5534         in #if 0.
5536         * lisp.h (eassert) [!ENABLE_CHECKING]: Define as `(void) 0'.
5538 2000-05-31  Jason Rumney  <jasonr@gnu.org>
5540         * search.c (Fre_search_forward, Fre_search_backward)
5541         (Fposix_search_backward, Fposix_search_forward): Fix newlines in docs.
5543         * w32select.c (Fw32_set_clipboard_data): Change QNil to Qnil.
5545 2000-05-30  Jason Rumney  <jasonr@gnu.org>
5547         * coding.h (ENCODE_SYSTEM, DECODE_SYSTEM) [WINDOWSNT]: New macros.
5548         [WINDOWSNT]: Add extern for Vw32_system_coding_system.
5550         * dispextern.h (struct glyph) [WINDOWSNT]: Add w32_font_type
5551         member.
5553         * fileio.c (Fread_file_name) [HAVE_NTGUI]: Use file dialog.
5554         (Fread_file_name) [HAVE_NTGUI, USE_MOTIF]: Do not attempt to
5555         expand a nil default_filename.
5557         * keyboard.c (make_lispy_event) [WINDOWS_NT]: Pass a window
5558         pointer to glyph_to_pixel_coords, not a frame.
5560         * makefile.nt (w32fns.obj, w32menu.obj): Add charset.h and
5561         coding.h to dependencies.
5563         * w32bdf.c (w32_load_bdf_font): Initialize font->double_byte_p.
5565         * w32console.c (glyph_to_pixel_coords): Change first parameter to
5566         window pointer to be consistent with w32term.c and xterm.c.
5568         * w32fns.c: Format and doc changes to bring closer to xfns.c.
5569         (VIETNAMESE_CHARSET): Define if not defined in system headers.
5570         (Qline_spacing, Qcenter): New variables.
5571         (Qw32_charset_*, w32_codepage_for_font): Moved from w32term.c.
5572         (x_set_line_spacing): New function.
5573         (x_set_frame_parameters): Use FRAME_NEW_WIDTH, FRAME_NEW_HEIGHT
5574         macros.
5575         (x_specified_cursor_type): New function.
5576         (x_set_cursor_type): Use it.
5577         (x_set_name, x_set_title): Use ENCODE_SYSTEM to encode titlebar
5578         and icon strings.
5579         (validate_x_resource_name, x_get_resource_string): Measure lengths
5580         of external strings in bytes.
5581         (w32_wnd_proc) [WM_MEASURE_ITEM]: Avoid calling
5582         GetTextExtentPoint32 with NULL title.
5583         (Fx_create_frame): Initialize Qline_spacing.
5584         (w32_load_system_font): Initialize font->double_byte_p.
5585         (x_to_w32_charset): Use Vw32_charset_info_alist.
5586         (Image, busy cursor, tooltip functions): Merged changes from
5587         xfns.c. Not yet functional on Windows.
5589         * w32gui.h (W32FontStruct): Add double_byte_p member.
5591         * w32inevt.c (NUM_TRANSLATED_MOUSE_BUTTONS): New constant.
5592         (emacs_button_translation): Use it.
5593         (do_mouse_event): Allow up to 32 mouse buttons by allowing any bit
5594         in `mask' to be set.
5596         * w32menu.c (single_submenu, w32_menu_show): Call ENCODE_SYSTEM on
5597         menu strings.
5599         * w32term.c: Format and doc changes to bring closer to xterm.c.
5600         (w32_char_font_type): New enum.
5601         (Qw32_charset_*, w32_codepage_for_font): Moved to w32fns.c.
5602         (w32_per_char_metric): Use w32_char_font_type instead of unicode_p.
5603         (w32_encode_char): New function.
5604         (x_encode_char): Removed.
5605         (x_get_glyph_and_face_encoding): Use w32_encode_char in place of
5606         x_encode_char and w32_font_is_double_byte.
5607         (x_produce_image_glyph): Use image_ascent.
5608         (x_produce_glyphs): Use new version of w32_per_char_metric and
5609         handle NULL return value. Allow extra line spacing.
5610         (W32_TEXTOUT): Distinguish between Unicode and DBCS text.
5611         (w32_get_glyph_overhangs): Remove unicode_p param. Use
5612         w32_font_type member of glyph instead.
5613         (x_draw_glyph_string): Draw underline and strike-out for BDF fonts.
5614         (fast_find_position): Make sure not to consider rows not visible
5615         in the window.
5616         (w32_read_socket) [WM_MENUSELECT]: Cannot call
5617         w32_menu_display_help with input blocked, as it can abort.
5618         (x_display_and_set_cursor): Choose cursor depending
5619         on buffer-local value of cursor_type.
5620         (x_draw_bar_cursor): Add parameter WIDTH.
5622         * w32term.h (CP_DEFAULT): Define.
5623         (Fx_display_color_p, Fx_display_grayscale_p, image_ascent): Declare.
5625 2000-05-30  Gerd Moellmann  <gerd@gnu.org>
5627         * search.c (Fre_search_forward, Fre_search_backward)
5628         (Fposix_search_backward, Fposix_search_forward): Doc fix.
5630 2000-05-30  Kenichi Handa  <handa@etl.go.jp>
5632         * coding.c (detect_coding_iso2022): Fix code for checking
5633         CODING_CATEGORY_MASK_ISO_8_2.
5635 2000-05-29  Stefan Monnier  <monnier@cs.yale.edu>
5637         * regex.c (PREFETCH_NOLIMIT): New function.
5638         (re_match_2_internal): Use it and adjust the end_match_2 logic.
5640 2000-05-29  Gerd Moellmann  <gerd@gnu.org>
5642         * syntax.c (find_defun_start): Move test for
5643         open_paren_in_column_0_is_defun_start outside of the loop.
5645         * xdisp.c (redisplay_window): Really switch buffers when
5646         displaying mode lines, and temporarily set selected_frame to the
5647         frame of the window that's redisplayed.
5649         * xfaces.c (free_realized_faces): Block/unblock input.
5650         (free_realized_multibyte_face): Ditto.
5652 2000-05-29  Dave Love  <fx@gnu.org>
5654         * textprop.c (Qkeymap): New variable.
5655         (syms_of_textprop): Intern it.
5657         * keymap.c: Include intervals.h.
5658         (Fkey_binding, Fwhere_is_internal): Deal with `keymap' property.
5660         * Makefile.in (keymap.o): Depend on intervals.h.
5662         * keyboard.c (menu_bar_items, tool_bar_items)
5663         (Fexecute_extended_command): Deal with `keymap' property.
5664         (read_key_sequence): Track map from `keymap' property as well as
5665         `local_map'.
5667         * intervals.c (get_local_map): Extra arg to allow looking for
5668         `keymap' too.
5670         * intervals.h (map_property): New enum.
5671         (get_local_map): Extra arg using it.
5672         (Qkeymap): Declare.
5674         * lisp.h (get_local_map): Don't declare here.
5676 2000-05-29  Kenichi Handa  <handa@etl.go.jp>
5678         * Makefile.in (callproc.o): Depend on composite.h.
5680         * callproc.c: Include composite.h.
5681         (Fcall_process): Handle composition correctly.
5683         * coding.h (coding_allocate_composition_data): Extern it.
5684         (coding_restore_composition): Likewise.
5686         * coding.c (DECODE_COMPOSITION_START): If coding->cmp_data is not
5687         yet allocated, finish decoding with result
5688         CODING_FINISH_INSUFFICIENT_CMP.
5689         (coding_allocate_composition_data): Make it non-static.
5690         (coding_restore_composition): Likewise.
5692 2000-05-29  Eli Zaretskii  <eliz@is.elta.co.il>
5694         * charset.c (syms_of_charset): Revert last change.
5696 2000-05-28  Eli Zaretskii  <eliz@is.elta.co.il>
5698         * term.c (produce_glyphs): Treat characters from the eight-bit-*
5699         charsets as unibyte, with 1-column screen width.  Sent by Kenichi
5700         Handa.
5702 2000-05-28  Eli Zaretskii  <eliz@is.elta.co.il>
5704         * charset.c (syms_of_charset): Set width of character sets
5705         eight-bit-control and eight-bit-graphic to 1 column.
5707 2000-05-26  Gerd Moellmann  <gerd@gnu.org>
5709         * config.in (HAVE_SPEED_T): New define.
5711         * sysdep.c, terminfo.c (ospeed) [HAVE_SPEED_T]: Declare as
5712         `extern speed_t'.
5714 2000-05-26  Dave Love  <fx@gnu.org>
5716         * coding.c (shrink_decoding_region): Initialize eol_conversion.
5718         * data.c (Qsubrp, Qmany, Qunevalled): New variables.
5719         (Fsubr_arity): New function.
5720         (syms_of_data): Install them.
5722 2000-05-26  Kenichi Handa  <handa@etl.go.jp>
5724         * charset.c (init_charset_once): Set the table bytes_by_char_head
5725         correctly.
5727         * fontset.c (syms_of_fontset): Adjust the font name for ascii of
5728         the default fontset to what Emacs uses by default.
5729         (check_registry_encoding): This function deleted.
5730         (Fset_fontset_font): Remove the adhoc condition for the default
5731         fontset.  Allow cons in FONTNAME.
5733         * fns.c (map_char_table): Ignore char-table entries for
5734         charsets eight-bit-control and eight-bit-graphic.
5736 2000-05-25  Ken Raeburn  <raeburn@gnu.org>
5738         * emacs.c (main): Initialize keyboard syms before initializing
5739         window code, so face names are available.
5741 2000-05-25  Stefan Monnier  <monnier@cs.yale.edu>
5743         * regex.c (at_begline_loc_p): Also recognize the \\(?:^ case
5744         of an anchor at the beginning of a shy-group.
5746 2000-05-25  Gerd Moellmann  <gerd@gnu.org>
5748         * xdisp.c (handle_invisible_prop): Don't try to skip over
5749         invisible text if end of text is already reached.
5751 2000-05-25  Dave Love  <fx@gnu.org>
5753         * xdisp.c (Fdump_glyph_matrix): Declare the arg.
5755         * coding.c (encode_eol): Add null statement after label.
5757 2000-05-25  Eli Zaretskii  <eliz@is.elta.co.il>
5759         * w16select.c (Fw16_set_clipboard_data): Fix the change from
5760         2000-05-20.
5762 2000-05-25  Kenichi Handa  <handa@etl.go.jp>
5764         * ccl.c (ccl_driver): Fix previous change.
5766 2000-05-25  Kenichi Handa  <handa@etl.go.jp>
5768         * coding.c (run_pre_post_conversion_on_str): Set point to the
5769         beginning of buffer before calling coding->post_read_conversion.
5770         (decode_coding_string): Give correct args to
5771         run_pre_post_conversion_on_str.
5772         (encode_coding_string): Likewise.
5774         * ccl.c (ccl_driver) <CCL_ReadMultibyteChar2>
5775         <CCL_WriteMultibyteChar2>:  Handle charsets eight-bit-control and
5776         eight-bit-graphic correctly.
5778 2000-05-24  Kenichi HANDA  <handa@etl.go.jp>
5780         * fileio.c (Finsert_file_contents): Even if a file is not found,
5781         execute codes for setting up coding system.  Call
5782         after-insert-file-functions unconditionally.
5784 2000-05-24  Gerd Moellmann  <gerd@gnu.org>
5786         * callproc.c, emacs.c, sysdep.c (setpgrp): Don't define if USG and
5787         BSD_PGRPS are not defined.
5789 2000-05-24  Kenichi Handa  <handa@etl.go.jp>
5791         * charset.c (update_charset_table): Accept nil in LONG_NAME and
5792         DESCRIPTION.
5793         (syms_of_charset): Avoid building same strings.
5795 2000-05-23  Gerd Moellmann  <gerd@gnu.org>
5797         * lread.c (Fload): Add a comment about the meaning of
5798         Vuser_init_file being t.
5800         * puresize.h (BASE_PURESIZE): Increase to 675000.
5802         * s/gnu-linux.h (setpgrp): Don't define it here because this
5803         prevents compilation on GNU/Linux systems with glib 2.2.
5805         * callproc.c, emacs.c, sysdep.c (setpgrp) [HAVE_SETPGID]: Define
5806         as setpgid.
5808 2000-05-23  Eli Zaretskii  <eliz@is.elta.co.il>
5810         * Makefile.in (SOME_MACHINE_LISP): Add disp-table.elc,
5811         dos-vars.elc, ccl.elc, and codepage.elc, all loaded by the MS-DOS
5812         version.
5813         (MSDOS_SUPPORT): Add dos-vars.elc, ccl.elc, and codepage.elc.
5815 2000-05-23  Kenichi Handa  <handa@etl.go.jp>
5817         * syntax.c (skip_chars): Use FETCH_STRING_CHAR_ADVANCE
5818         unconditionally.
5820         * msdos.c (IT_write_glyphs): Set coding->src_multibyte to 1.
5822         * term.c (encode_terminal_code): Set coding->src_multibyte
5823         properly.
5825         * coding.c (encode_eol): Fix a bug of DOS style EOL encoding.
5827 2000-05-22  Kenichi Handa  <handa@etl.go.jp>
5829         * keyboard.c (read_char): Allow character codes 128..255 to be
5830         handled by input-method-function.
5832         * insdel.c (adjust_markers_for_replace): Fix previous change.
5833         (adjust_after_replace): If PREV_TEXT is nil, call
5834         adjust_markers_for_insert, not adjust_markers_for_replace.
5836 2000-05-20  NIIBE Yutaka  <gniibe@mri.co.jp>
5838         * s/gnu-linux.h (UNIX98_PTYS) [HAVE_GRANDPT]: Define.
5839         (PTY_ITERATION, PTY_NAME_SPRINTF, PTY_OPEN, PTY_TTY_NAME_SPRINTF)
5840         [HAVE_GRANDPT]: Define.
5841         (C_SWITCH_SYSTEM): Add -D_XOPEN_SOURCE.
5843         * sysdep.c (setup_pty): Treat case that UNIX98_PTYS is defined
5844         like SYSV_PTYS.
5846         * config.in (HAVE_GRANDPT, HAVE_GETPT): New defines.
5848         * process.c (toplevel) [UNIX98_PTYS]: Include stdlib.h.
5850 2000-05-20  Kenichi Handa  <handa@etl.go.jp>
5852         The following changes are to handle 8-bit characters in a
5853         multibyte buffer/string without facing with byte combining
5854         problem.  Two new charsets eight-bit-control (for 0x80..0x9F) and
5855         eight-bit-graphic (for 0xA0..0xFF) are introduced.
5857         * Makefile.in (fns.o): Depend on charset.h.
5859         * alloc.c (Fmake_byte_code): If BYTECODE-STRING is multibyte,
5860         convert it to unibyte.
5861         (make_string): Use parse_str_as_multibyte, not chars_in_text.
5863         * buffer.c (advance_to_char_boundary): Don't use DEC_POS to find a
5864         apparent char boundary.
5865         (Fset_buffer_multibyte): Convert 8-bit characters in the range
5866         0x80..0x9F to/from multibyte form.
5868         * bytecode.c (Fbyte_code): If arg BYTESTR is multibyte, convert it
5869         to unibyte.
5871         * callproc.c (Fcall_process): Always encode an argument string if
5872         it is multibyte.  Setup src_multibyte and dst_multibyte members of
5873         process_coding properly.
5875         * category.c (Fmodify_category_entry): Use SPLIT_CHAR, not
5876         SPLIT_NON_ASCII_CHAR.
5878         * ccl.c (CCL_WRITE_CHAR): Be sure to write single byte characters
5879         as is.
5880         (CCL_MAKE_CHAR): Use MAKE_CHAR, not MAKE_NON_ASCII_CHAR.
5882         * charset.c (Qeight_bit_control, Qeight_bit_graphic): New
5883         variables.
5884         (SPLIT_CHARACTER_SEQ): This macro deleted.
5885         (SPLIT_MULTIBYTE_SEQ): Assume that multibyte sequence at STR is
5886         valid.
5887         (CHAR_COMPONENTS_VALID_P): Handle new charsets; eight-bit-control
5888         and eight-bit-graphic.
5889         (char_to_string): Likewise.  Signal an error for too large
5890         character code.
5891         (char_printable_p): Return 0 for 8-bit characters.
5892         (update_charset_table): Update iso_charset_table only when a final
5893         character is non-negative.
5894         (find_charset_in_text): Renamed from find_charset_in_str.
5895         Arguments and return value changed.  Callers changed.
5896         (Fdefine_charset): Args ISO-FINAL-CHAR and ISO-GRAPHIC-PLANE can
5897         be -1 if CHARSET is used only internally.
5898         (Fmake_char_internal): Handle new charsets; eight-bit-control and
5899         eight-bit-graphic.
5900         (Fcharset_after): Simplified.
5901         (char_valid_p): Use SPLIT_CHAR, not SPLIT_NON_ASCII_CHAR.
5902         (char_bytes): Return 2 for chars of the range 0xA0..0xFF.
5903         (multibyte_chars_in_text): Simplified by assuming there's no
5904         invalid multibyte sequence.
5905         (parse_str_as_multibyte, str_as_multibyte, str_to_multibyte,
5906         str_as_unibyte): New functions.
5907         (Fstring): Simpified by assuming that byte combining never
5908         happens.
5909         (init_charset_once): Initialization for
5910         LEADING_CODE_8_BIT_CONTROL.
5911         (syms_of_charset): Intern and staticpro Qeight_bit_control and
5912         Qeight_bit_graphic.  Include them in Vcharset_list.  Make charsets
5913         eight-bit-control and eight-bit-graphic.
5915         * charset.h (LEADING_CODE_8_BIT_CONTROL, CHARSET_8_BIT_CONTROL,
5916         CHARSET_8_BIT_GRAPHIC): New macros.
5917         (SINGLE_BYTE_CHAR_P): Make it faster by using casting.
5918         (CHARSET_ISO_GRAPHIC_PLANE): Use XINT instead of XFASTINT.
5919         (CHARSET_REVERSE_CHARSET): Likewise.
5920         (CHARSET_VALID_P): Handle new charsets; eight-bit-control and
5921         eight-bit-graphic.
5922         (BYTES_BY_CHAR_HEAD, WIDTH_BY_CHAR_HEAD): Optimize for ASCII.
5923         (CHAR_CHARSET, MAKE_CHAR, SPLIT_CHAR, CHAR_BYTES): Likewise.
5924         (PARSE_MULTIBYTE_SEQ) [BYTE_COMBINING_DEBUG]: Abort if we
5925         encounter an invalid multibyte sequence.
5926         (PARSE_MULTIBYTE_SEQ) [not BYTE_COMBINING_DEBUG]: Assume multibyte
5927         sequence is always valid.
5928         (MAKE_NON_ASCII_CHAR, SPLIT_NON_ASCII_CHAR): These macros Deleted.
5929         (UNIBYTE_STR_AS_MULTIBYTE_P, MULTIBYTE_STR_AS_UNIBYTE_P): New
5930         macros.
5931         (CHAR_STRING): For 8-bit characters, call char_to_string.
5932         (INC_POS) [not BYTE_COMBINING_DEBUG]: Faster version.  Assume
5933         multibyte sequence is always valid.
5934         (BUF_INC_POS) [not BYTE_COMBINING_DEBUG]: Likewise.
5935         (parse_str_as_multibyte, str_as_multibyte, str_to_multibyte,
5936         str_as_unibyte): Extern them.
5937         (BCOPY_SHORT): Fix a bug.
5938         (CHAR_LEN): This macro deleted.  Callers changed to use
5939         CHAR_BYTES.
5940         (FETCH_STRING_CHAR_ADVANCE): Check multibyteness of STRING.
5941         (FETCH_STRING_CHAR_ADVANCE_NO_CHECK): New macro.
5942         (FETCH_CHAR_ADVANCE): Check multibyteness of the current buffer.
5944         * coding.c (ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->result to
5945         CODING_FINISH_INSUFFICIENT_SRC if there's not enough source.
5946         (ONE_MORE_CHAR, EMIT_CHAR, EMIT_ONE_BYTE, EMIT_TWO_BYTE,
5947         EMIT_BYTES): New macros.
5948         (THREE_MORE_BYTES, DECODE_CHARACTER_ASCII,
5949         DECODE_CHARACTER_DIMENSION1, DECODE_CHARACTER_DIMENSION2): These
5950         macros deleted.
5951         (CHECK_CODE_RANGE_A0_FF): This macro deleted.
5952         (detect_coding_emacs_mule): Use UNIBYTE_STR_AS_MULTIBYTE_P to
5953         check the validity of multibyte sequence.
5954         (decode_coding_emacs_mule): New function.
5955         (encode_coding_emacs_mule): New macro.
5956         (detect_coding_iso2022): Use ONE_MORE_BYTE to fetch a byte from
5957         the source.
5958         (DECODE_ISO_CHARACTER): Just return a character code.
5959         (DECODE_COMPOSITION_START): Set coding->result instead of result.
5960         (decode_coding_iso2022, decode_coding_sjis_big5, decode_eol): Use
5961         EMIT_CHAR to produced decoded characters.  Exit the loop only by
5962         macros ONE_MORE_BYTE or EMIT_CHAR.  Don't handle the case of last
5963         block here.
5964         (ENCODE_ISO_CHARACTER): Don't translate character here.  Produce
5965         only position codes for an invalid character.
5966         (encode_designation_at_bol): Return new destination pointer.  5th
5967         arg DSTP is changed to DST.
5968         (encode_coding_iso2022, decode_coding_sjis_big5): Get a character
5969         from the source by ONE_MORE_CHAR.  Don't handle the case of last
5970         block here.
5971         (DECODE_SJIS_BIG5_CHARACTER, ENCODE_SJIS_BIG5_CHARACTER): These
5972         macros deleted.
5973         (detect_coding_sjis, detect_coding_big5, detect_coding_utf_8,
5974         detect_coding_utf_16, detect_coding_ccl): Use ONE_MORE_BYTE and
5975         TWO_MORE_BYTES to fetch a byte from the source.
5976         (encode_eol): Pay attention to coding->src_multibyte.
5977         (detect_coding, detect_eol): Preserve members src_multibyte and
5978         dst_multibyte.
5979         (DECODING_BUFFER_MAG): Return 2 even for coding_type_raw_text.
5980         (encoding_buffer_size): Set magnification to 3 for all coding
5981         systems that require encoding.
5982         (ccl_coding_driver): For decoding, be sure that the result is
5983         valid multibyte sequence.
5984         (decode_coding): Initialize coding->errors and coding->result.
5985         For emacs-mule, call decode_coding_emacs_mule.  For no-conversion
5986         and raw-text, always call decode_eol.  Handle the case of last
5987         block here.  If not coding->dst_multibyte, convert the resulting
5988         sequence to unibyte.
5989         (encode_coding): Initialize coding->errors and coding->result.
5990         For emacs-mule, call encode_coding_emacs_mule.  For no-conversion
5991         and raw-text, always call encode_eol.  Handle the case of last
5992         block here.
5993         (shrink_decoding_region, shrink_encoding_region): Detect cases
5994         that we can't skip data more rigidly.
5995         (code_convert_region): Setup src_multibyte and dst_multibyte
5996         members of coding.  For decoding, if the buffer is multibyte,
5997         convert the source sequence to unibyte in advance.  For encoding,
5998         if the buffer is multibyte, convert the resulting sequence to
5999         multibyte afterward.
6000         (run_pre_post_conversion_on_str): New function.
6001         (code_convert_string): Deleted and divided into the following two.
6002         (decode_coding_string, encode_coding_string): New functions.
6003         (code_convert_string1, code_convert_string_norecord): Call one of
6004         above.
6005         (Fdecode_sjis_char, Fdecode_big5_char): Use MAKE_CHAR instead of
6006         MAKE_NON_ASCII_CHAR.
6007         (Fset_terminal_coding_system_internal,
6008         Fset_safe_terminal_coding_system_internal): Setup src_multibyte
6009         and dst_multibyte members.
6010         (init_coding_once): Initialize iso_code_class with new enum
6011         ISO_control_0 and ISO_control_1.
6013         * coding.h (enum iso_code_class_type): Member ISO_control_code is
6014         devided into ISO_control_0 and ISO_control_1.
6015         (struct coding_system): New members src_multibyte, dst_multibyte,
6016         errors, and result.  Delete member fake_multibyte.
6017         (CODING_REQUIRE_DECODING): Return 1 if coding->dst_multibyte is
6018         nonzero.
6019         (CODING_REQUIRE_ENCODING): Return 1 if coding->src_multibyte is
6020         nonzero.
6022         * data.c (Faref): Use SPLIT_CHAR instead of SPLIT_NON_ASCII_CHAR.
6023         (Faset): Likewise.
6025         * editfns.c (Fformat): Be sure to convert 8-bit characters to
6026         multibyte form.
6027         (Ftranspose_region) [BYTE_COMBINING_DEBUG]: Abort if byte
6028         combining occurs.
6029         (Ftranspose_region): Delete codes for handling byte combining.
6031         * fileio.c (Finsert_file_contents): Setup src_multibyte and
6032         dst_multibyte members of coding.  On handling REPLACE on unibyte
6033         buffer, convert the result of decode_coding to unibyte.  On
6034         inserting into a mutibyte buffer, always call code_convert_region.
6035         (e_write): Setup coding->src_multibyte according to the
6036         multibyteness of the source (buffer or string).
6038         * fns.c (concat): Handle 8-bit characters correctly.
6039         (Fstring_as_unibyte): Be sure to make all 8-bit characters in
6040         unibyte in the result.
6041         (Fstring_as_multibyte): Be sure to make all 8-bit characters in
6042         valid multibyte form in the result.
6043         (map_char_table): Use MAKE_CHAR instead of MAKE_NON_ASCII_CHAR.
6044         (Fbase64_encode_region, Fbase64_encode_string): If base64_encode_1
6045         return -1, signal an error.
6046         (base64_encode_1): New arg MULTIBYTE.  Get each character by
6047         CHAR_STRING_AND_LENGTH if MULTIBYTE is nonzero.  If a multibyte
6048         character is found, return -1.
6049         (Fbase64_decode_region): Delete codes for handling byte-combining.
6050         Treat each decoded byte as a unibyte character.
6051         (Fbase64_decode_string): Return unibyte string.
6052         (Fcompare_strings, concat, string_byte_to_char): Use
6053         FETCH_STRING_CHAR_ADVANCE_NO_CHECK instead off
6054         FETCH_STRING_CHAR_ADVANCE.
6055         (Fstring_lessp): Use FETCH_STRING_CHAR_ADVANCE unconditionally.
6056         (mapcar1): If SEQ is string, always use FETCH_STRING_CHAR_ADVANCE.
6058         * fontset.c (fontset_ref): Use SPLIT_CHAR instead of
6059         SPLIT_NON_ASCII_CHAR.
6060         (fontset_ref_via_base, fontset_set): Likewise
6062         * insdel.c (adjust_markers_for_record_delete): Deleted.
6063         (adjust_markers_for_insert): Argument changed.  Caller changed.
6064         (adjust_markers_for_replace): Likewise.
6065         (ADJUST_CHAR_POS, combine_bytes, byte_combining_error,
6066         CHECK_BYTE_COMBINING_FOR_INSERT): Deleted.
6067         (copy_text): Delete unused local varialbe c_save.  For converting
6068         to multibyte, be sure to make all 8-bit characters in valid
6069         multibyte form.
6070         (count_size_as_multibyte): Handle 8-bit characters correctly.
6071         (insert_1_both, insert_from_string_1, insert_from_buffer_1,
6072         adjust_after_replace, replace_range, del_range_2)
6073         [BYTE_COMBINING_DEBUG]: Abort if byte combining occurs.
6074         (insert_1_both, insert_from_string_1, insert_from_buffer_1,
6075         adjust_after_replace, replace_range, del_range_2) Delete codes for
6076         handling byte combining.
6077         (adjust_before_replace): Deleted.
6079         * keymap.c (Fsingle_key_description): Use SPLIT_CHAR instead of
6080         SPLIT_NON_ASCII_CHAR.
6081         (describe_vector): Use MAKE_CHAR instead of MAKE_NON_ASCII_CHAR.
6082         (Faccessible_keymaps): Use FETCH_STRING_CHAR_ADVANCE
6083         unconditionally.
6084         (Fkey_description): Likewise.
6086         * lread.c (read1): On reading multibyte string, be sure to make
6087         all 8-bit chararacters in valid multibyte form.
6088         (readchar): Use FETCH_STRING_CHAR_ADVANCE unconditionally.
6090         * print.c (print_object): Use FETCH_STRING_CHAR_ADVANCE
6091         unconditionally.
6093         * process.c (Fstart_process): GCPRO current_dir before calling
6094         Ffind_operation_coding_system.  Encode arguments here.
6095         (create_process): Don't encode arguments here.  Setup
6096         src_multibyte and dst_multibyte members of struct coding.
6097         (read_process_output): Setup src_multibyte and dst_multibyte
6098         members of struct coding.  If the output is to multibyte buffer,
6099         always decode the output of the process.  Adjust the
6100         representation of 8-bit characters to the multibyteness of the
6101         output.
6102         (send_process): Setup coding->src_multibyte according to the
6103         multibyteness of the source.
6105         * search.c (wordify): Use FETCH_STRING_CHAR_ADVANCE
6106         unconditionally.
6107         (Freplace_match): Use FETCH_STRING_CHAR_ADVANCE and
6108         FETCH_STRING_CHAR_ADVANCE_NO_CHECK appropriately.
6110         * term.c (produce_special_glyphs): Use CHAR_BYTES instead of
6111         CHAR_LEN.
6113         * w16select.c (Fw16_set_clipboard_data): Setup members
6114         src_multibyte and dst_multibyte of coding.  Adjusted for the
6115         change for find_charset_in_str.
6116         (Fw16_get_clipboard_data): Likewise.
6118         * w32fns.c (w32_to_x_font): Setup members src_multibyte and
6119         dst_multibyte of coding.
6120         (x_to_w32_font): Likewise.
6122         * w32select.c (Fw32_set_clipboard_data): Setup members
6123         src_multibyte and dst_multibyte of coding.  Adjusted for the
6124         change for find_charset_in_str.
6125         (Fw32_get_clipboard_data): Likewise.
6127         * xdisp.c (get_next_display_element): Handle 8-bit characters
6128         correctly.
6129         (next_element_from_display_vector): Use CHAR_BYTES instead of
6130         CHAR_LEN.
6131         (disp_char_vector): Use SPLIT_CHAR instead of
6132         SPLIT_NON_ASCII_CHAR.
6134         * xselect.c (selection_data_to_lisp_data): Setup members
6135         src_multibyte and dst_multibyte of coding.  Adjusted for the
6136         change for find_charset_in_str.
6137         (lisp_data_to_selection_data): Likewise.
6139 2000-05-19  Gerd Moellmann  <gerd@gnu.org>
6141         * buffer.c (Fbury_buffer): Avoid trouble from burying a killed
6142         buffer.
6144         * dispextern.h (Vimage_types): Add extern declaration.
6146         * xdisp.c (Vimage_types): Moved here from xfns.c.
6147         (syms_of_xdisp): Move `image-types' variable here from xfns.c.
6149         * xfns.c (Vimages_types): Moved to xdisp.c.
6150         (syms_of_xfns): Move `image-types' to xdisp.c.
6152         * w32fns.c (Vimage_types): Removed.
6153         (syms_of_w32fns): Remove `image-types'.
6155 2000-05-18  Kenichi Handa  <handa@etl.go.jp>
6157         * fns.c (map_char_table): Pay attention to character number of
6158         charset.  Check the validity of charset at the first level.   For
6159         leaf nodes that has nil value, call C_FUNCTION or FUNCTION with
6160         the default value.
6162         * fontset.c: Include "buffer.h".
6163         (fs_load_font): If the face has fontset, record the face ID in
6164         that fontset.
6165         (Finternal_char_font): New function.
6166         (accumulate_font_info): New function.
6167         (Ffontset_info): Rewritten for the new fontset implementation.
6168         (syms_of_fontset): Register Vdefault_fontset in the first element
6169         of Vfontset_table.  Include Vdefault_fontset in
6170         Vfontset_alias_alist.  Declare `internal-char-font' as a Lisp
6171         function.
6173 2000-05-16  Dave Love  <fx@gnu.org>
6175         * m/iris5d.h: Deleted -- unused.
6177 2000-05-16  Gerd Moellmann  <gerd@gnu.org>
6179         * xdisp.c, w32.c, print.c, msdos.c, emacs.c: Use the term
6180         `invalid' instead of `illegal'.
6182         * indent.c (Fmove_to_column): When ending within a tab, insert
6183         spaces first so that markers at the end of the tab get adjusted.
6185         * frame.c (frames_bury_buffer): Don't add a buffer to the frame's
6186         buffer list that wasn't selected in that frame.
6188         * filelock.c (get_boot_time): To obtain an 8 char file name, which
6189         is needed on mescaline, use a 2 char prefix, and call
6190         make_temp_name with second arg non-zero.
6192         * fileio.c (make_temp_name): New function, extracted from
6193         Fmake_temp_name.
6194         (Fmake_temp_name): Use it.
6196 2000-05-15  Eli Zaretskii  <eliz@is.elta.co.il>
6198         * window.c (coordinates_in_window): Subtract 1 when computing
6199         right_x.
6201 2000-05-15  Gerd Moellmann  <gerd@gnu.org>
6203         * Makefile.in (lisp): Add env.elc.
6205         * callproc.c (Fgetenv_internal): Renamed from Fgetenv.
6207 2000-05-12  Gerd Moellmann  <gerd@gnu.org>
6209         * search.c (Freplace_match): Handle case of `\N' in the
6210         replacement when there's no group N.
6212 2000-05-11  Gerd Moellmann  <gerd@gnu.org>
6214         * xdisp.c (add_to_log): Don't pass the terminating NUL byte
6215         of the message to message_dolog.
6217         * keyboard.c (read_char): Don't clear current message for help
6218         events; let the code handling help events handle this.  Change
6219         code detecting help events that should be ignored.
6221         * xdisp.c (handle_single_display_prop): Don't try to set PT if
6222         we're interating over a string.
6224 2000-05-09  Dave Love  <fx@gnu.org>
6226         * fileio.c (Fwrite_region): If APPEND arg is an integer, seek to
6227         that offset before writing.  Move gcpro region past call of
6228         Ffile_regular_p.
6230 2000-05-04  Dave Love  <fx@gnu.org>
6232         * buffer.c (syms_of_buffer) [auto-fill-function]: Doc fix.
6234 2000-05-04  Gerd Moellmann  <gerd@gnu.org>
6236         * insdel.c (insert_from_buffer_1): Adjust FROM position by number
6237         of inserted characters when BUF equals the current buffer, and PT
6238         is in front of or equal to FROM.
6240 2000-05-03  Gerd Moellmann  <gerd@gnu.org>
6242         * xdisp.c (handle_single_display_prop): If display property value
6243         is invalid, or something not supported on the frame, restore
6244         iterator's position to what it was initially.  Make sure to return
6245         0 for invalid and unsupported property values.
6247         * xterm.c (x_produce_glyphs) <composite chars>: Handle case
6248         that x_per_char_metric returns null.
6250 2000-05-02  Gerd Moellmann  <gerd@gnu.org>
6252         * xterm.h (struct face): Add forward declaration.
6253         (struct image): Ditto.
6254         (image_ascent): Add prototype.
6256         * xterm.c (x_produce_image_glyph, x_draw_image_foreground)
6257         (x_draw_image_relief, x_draw_image_foreground_1): Call function
6258         image_ascent instead of using IMAGE_ASCENT.
6260         * dispextern.h (DEFAULT_IMAGE_HEIGHT): New macro.
6261         (IMAGE_ASCENT): Removed.
6263         * xfns.c (Qcenter): New variable.
6264         (enum image_value_type): Add IMAGE_ASCENT_VALUE.
6265         (parse_image_spec): Handle IMAGE_ASCENT_VALUE.
6266         (image_ascent): New function.
6267         (lookup_image): Recognize `:ascent center'.
6268         (xbm_format, xpm_format, pbm_format, png_format, jpeg_format)
6269         (tiff_format, gif_format, gs_format): Use IMAGE_ASCENT_VALUE.
6270         (xbm_load): Don't set image's ascent here.
6271         (xbm_image_p, xpm_image_p, pbm_image_p, png_image_p)
6272         (jpeg_image_p, tiff_image_p, gif_image_p, gs_image_p): Don't
6273         check ascent values here.
6274         (Fimagep, Flookup_image [GLYPH_DEBUG]: Removed.
6275         (syms_of_xfns) [GLYPH_DEBUG]: Don't defsubr removed functions.
6276         (syms_of_xfns): Initialize Qcenter.
6278         * eval.c (Fsignal): If lisp_eval_depth or spepdl_size are near
6279         to the limits, increase the limits.
6281 2000-05-01  Kenichi Handa  <handa@etl.go.jp>
6283         * fontset.c (fs_load_font): By default, use 0x00..0x7f for ASCII.
6284         Check Vfont_encoding_alist against the full name of the opened
6285         font.
6287 2000-04-28  Gerd Moellmann  <gerd@gnu.org>
6289         * xdisp.c (make_cursor_line_fully_visible): Handle case of rows
6290         taller than the window.
6292 2000-04-28  Kenichi Handa  <handa@etl.go.jp>
6294         * xfaces.c (realize_x_face): Fix the argument of the second
6295         xassert.  BASE_FACE may not be a face for ASCII.
6297 2000-04-27  Gerd Moellmann  <gerd@gnu.org>
6299         * print.c (print_object): Treat print-length < 0 as nil.
6301         * Makefile.in (termcapobj): Don't use TERMCAP_OBJ.
6303         * s/freebsd.h (TERMCAP_OBJ): Removed.
6304         (LIBS_TERMCAP): Don't define for __FreeBSD_version >= 400000.
6306         * lread.c (read1): Don't treat period followed by certain
6307         characters as symbol start.
6309         * xfns.c (slurp_file): New function.
6310         (xbm_image_p): Handle case of in-memory XBM files.
6311         (xbm_scan): Rewritten to work on memory buffers instead of files.
6312         (xbm_read_bitmap_data): Renamed from xbm_read_bitmap_file_data.
6313         Work on memory buffers instead of files.  If DATA is null test
6314         if buffer looks like an in-memory XBM file.
6315         (xbm_load_image): Renamed from xbm_load_image_file.  Work on
6316         memory buffers instead of files.
6317         (xbm_file_p): New function.
6318         (xbm_load): Accept :data DATA where DATA is an in-memory XBM file.
6320         * lread.c (end_of_file_error): New function.
6321         (read1): Call it instead of signaling `end-of-file' directly.
6323         * print.c (print_error_message): Print data of `end-of-file'
6324         with Fprinc instead of Fprin1.
6326 2000-04-26  Ken Raeburn  <raeburn@gnu.org>
6328         * window.c (freeze_window_start): Check that minibuffer scroll
6329         window isn't nil before extracting the window structure pointer
6330         from it.
6332         * undo.c (record_delete): If we hit the end of the undo list, stop
6333         picking elements apart.
6335 2000-04-26  Gerd Moellmann  <gerd@gnu.org>
6337         * xdisp.c (display_line): If lines are continued, restore
6338         iterator's ascent/descent information to the values before the
6339         first glyph not fitting on the line.
6341 2000-04-25  Gerd Moellmann  <gerd@gnu.org>
6343         * xdisp.c (try_window_id) <all changes above window start>: Adjust
6344         positions in glyph matrix.  Don't compute new window end
6345         positions.
6347         * dispnew.c (increment_matrix_positions): Renamed from
6348         increment_glyph_matrix_buffer_positions.
6349         (increment_row_positions): Renamed from
6350         increment_glyph_row_buffer_positions.
6352         * dispextern.h: Change names of renamed functions from dispnew.c
6353         in prototypes.
6355 2000-04-24  Gerd Moellmann  <gerd@gnu.org>
6357         * fileio.c (Fdo_auto_save): Create directories for auto-save
6358         list file if necessary.
6360         * xdisp.c (init_iterator): Set iterator's extra_line_spacing
6361         from buffer or frame.
6362         (automatic_hscrolling_p): New variable.
6363         (hscroll_windows): Scroll windows horizontally only if automatic
6364         hscrolling is allowed.
6365         (syms_of_xdisp): New variable `automatic-hscrolling'.
6367         * frame.h (struct frame): Add member extra_line_spacing.
6369         * xfns.c (x_set_line_spacing): New function.
6370         (Fx_create_frame): Set line spacing from resources.
6371         (Qline_spacing): New variable.
6372         (syms_of_xfns): Initialize Qline_spacing.
6374         * emacs.c (USAGE2): Add `--line-spacing' and `-lsp'.
6376         * buffer.c (init_buffer_once): Handle extra_line_spacing.
6377         (syms_of_buffer): Add `default-line-spacing' and `line-spacing'.
6378         (reset_buffer): Don't initialize extra2 and extra3.  Initialize
6379         extra_line_spacing from default value.
6380         (init_buffer_once): Initialize default value of extra_line_spacing.
6382         * buffer.h (struct buffer): Add extra_line_spacing, remove extra2
6383         and extra3.
6385         * xterm.c (x_produce_glyphs): Remove reference to struct it's
6386         prompt_width.  Add extra line spacing.
6388         * term.c (produce_glyphs): Remove reference to struct it's
6389         prompt_width.
6391         * dispextern.h (struct it): Remove member prompt_width, add
6392         extra_line_spacing.
6394 2000-04-22  Gerd Moellmann  <gerd@gnu.org>
6396         * dispnew.c (update_frame_line): When writing a whole line, make
6397         sure cursor is in the right row afterwards, otherwise a use of
6398         capability `ch' in cmgoto might leave the cursor in the row below.
6400 2000-04-21  Gerd Moellmann  <gerd@gnu.org>
6402         * lisp.h (struct Lisp_Buffer_Cons): Remove.
6404         * keyboard.c (timer_check): Fix typo in comment.
6406 2000-04-21  Kenichi Handa  <handa@etl.go.jp>
6408         * fontset.c (Fset_fontset_font): Fix docstring.  Local variable
6409         name change: ch -> character.
6411 2000-04-20  Gerd Moellmann  <gerd@gnu.org>
6413         * keyboard.c (echo_message_buffer): New variable.
6414         (echo_now): Set echo_message_buffer to the echo area buffer used
6415         to display the echo.
6416         (cancel_echoing): Reset echo_message_buffer to nil.
6417         (read_char): Code rewritten that handles canceling an echo or
6418         echoing a dash, respectively.
6420         * fileio.c (Ffile_writable_p) [WINDOWSNT]: Return nil if parent
6421         directory doesn't exist.
6423 2000-04-19  Dave Love  <fx@gnu.org>
6425         * fns.c (syms_of_fns): Defsubr mapc.
6426         (concat): Don't allow numeric args.
6427         (Fconcat): Doc change.
6429 2000-04-19  Stefan Monnier  <monnier@cs.yale.edu>
6431         * regex.c (re_match_2_internal): Don't shorten the strings anymore,
6432         instead define end_match(1|2) more carefully.
6433         Use GET_CHAR_BEFORE_2 for `begline'.
6435 2000-04-19  Gerd Moellmann  <gerd@gnu.org>
6437         * frame.h (SELECTED_FRAME): Change definition to compile cleanly
6438         on 64-bit systems where NULL is defined as `0'.
6440         * xdisp.c (with_echo_area_buffer): Add more `int' parameters for
6441         the `variable argument list' to make it work on Alpha.
6443         * m/alpha.h (_LP64) [!_LP64]: Define.
6444         (ORDINARY_LINK): Define for NetBSD.
6446         * m/macppc.h (ORDINARY_LINK): Define for NetBSD.
6448 2000-04-19  Dave Love  <fx@gnu.org>
6450         * s/bsd386.h, s/freebsd.h, s/gnu.h, s/netbsd.h: Revert 2000-04-14
6451         change.
6453         * Makefile.in (LIBS): Don't use.
6454         (GETLOADAVG_OBJ): Define again.
6455         (otherobj): Add GETLOADAVG_OBJ.
6457         * buffer.c (Fmake_indirect_buffer): Escape newline in doc.
6459 2000-04-18  Gerd Moellmann  <gerd@gnu.org>
6461         * lread.c (read_filtered_event): Cancel and start busy cursor.
6463         * xterm.c (x_produce_glyphs) <ASCII chars>: Take into account
6464         that the per-character metrics may be null.
6466 2000-04-17  Gerd Moellmann  <gerd@gnu.org>
6468         * buffer.c (clone_per_buffer_values): New function.
6469         (Fmake_indirect_buffer): Add optional argument CLONE.  Call
6470         clone_per_buffer_values if CLONE is not nil.
6472         * xfaces.c (Ftty_suppress_bold_inverse_default_colors): Doc fix.
6474 2000-04-16  Dave Love  <fx@gnu.org>
6476         * Makefile.in: Remove obsolete localcpp stuff.
6477         (GETLOADAVG_OBJ): Don't define.
6478         (obj): Move LIBOBJS...
6479         (otherobj): ... to here.
6480         (MSDOS_OBJ): Convert to make variable -- preprocessing zapped
6481         whitespace-only lines after the continuation (Irix).
6483 2000-04-14  Gerd Moellmann  <gerd@gnu.org>
6485         * xfns.c (xpm_load) [DEBUG_X_COLORS]: Register colors.
6487         * s/freebsd.h (LD_SWITCH_SYSTEM): Add `-L /usr/local/lib'.
6489 2000-04-14  Dave Love  <fx@gnu.org>
6491         * s/aix3-1.h, s/bsd4-2.h, s/bsd4-3.h, s/cxux.h, s/dgux.h, s/gnu.h:
6492         * s/hpux.h, s/iris3-5.h, s/iris3-6.h, s/irix3-3.h, s/rtu.h:
6493         * s/unipl5-0.h, s/unipl5-2.h, s/usg5-0.h, s/usg5-2-2.h, s/usg5-2.h:
6494         * s/usg5-3.h, s/xenix.h, s/umax.h: Don't define autoconfiscated
6495         NLIST_STRUCT.
6497         * s/bsd386.h, s/freebsd.h, s/gnu.h, s/netbsd.h: Don't define
6498         autoconfiscated HAVE_GETLOADAVG.
6500         * s/nextstep.h, s/sco4.h, s/sco5.h: Don't define autoconfiscated
6501         BROKEN_MKTIME.
6503 2000-04-14  Gerd Moellmann  <gerd@gnu.org>
6505         * filelock.c (MAKE_LOCK_NAME): Allocate 2 more bytes.
6506         (fill_in_lock_file_name): Avoid existing files that aren't
6507         links.
6509 2000-04-14  Dave Love  <fx@gnu.org>
6511         * Makefile.in (LIBS, LIBOBJS): New variable.
6512         (INTERVAL_SRC): Convert to make variable.
6513         (INTERVAL_OBJ, MKTIME_OBJ, FLOAT_SUPPORT, FACE_SUPPORT)
6514         (HAVE_X_WINDOWS, OBJECTS_SYSTEM): Remove.
6515         (obj): Substitute INTERVAL_OBJ, add MKTIME_OBJ, GETLOADAVG_OBJ and
6516         add LIBOBJS.
6517         (SOME_MACHINE_OBJECTS): Remove interval stuff.
6518         (lisp): Substitute FACE_SUPPORT, FLOAT_SUP.
6519         (shortlisp): Add facemenu, float-sup, frame.
6520         (SOME_MACHINE_LISP): Remove them from here.
6521         (LIBES): Change unused LDLIBS to autoconf LIBS.
6523         * config.in: Add BROKEN_MKTIME, NLIST_STRUCT, NLIST_NAME_UNION.
6525 2000-04-14  Kenichi Handa  <handa@etl.go.jp>
6527         * composite.c (update_compositions): If FROM and TO are not in a
6528         valid range, do nothing.
6530 2000-04-13  Gerd Moellmann  <gerd@gnu.org>
6532         * tparam.c (tparam1): Abort when encountering an unknown
6533         `%'-specifier.
6535         * s/freebsd.h (TERMCAP_OBJ) [__FreeBSD__ >= 4]: Define as
6536         terminfo.o.
6538         * Makefile.in (termcapobj) [LIBS_TERMCAP && TERMCAP_OBJ]: Define
6539         as TERMCAP_OBJ.
6541 2000-04-13  Eli Zaretskii  <eliz@is.elta.co.il>
6543         * fileio.c (a_write): Remove redundant semi-colons.
6544         (e_write): Return -1 if failed to write all the data.
6545         This fixes the changes made at 1999-12-15.
6547 2000-04-12  Dave Love  <fx@gnu.org>
6549         * fns.c (mapcar1): Test for null vals to support mapc.
6550         (Fmapc): New function.
6552 2000-04-12  Eli Zaretskii  <eliz@is.elta.co.il>
6554         * msdos.c (NUM_MOUSE_BUTTONS): Define.
6555         (IT_frame_up_to_date): Support the buffer local value of
6556         cursor-type, if defined.
6558 2000-04-10  Dave Love  <fx@gnu.org>
6560         * editfns.c (preceding-char, following-char): Doc fix.
6562 2000-04-10  Ken Raeburn  <raeburn@gnu.org>
6564         * Makefile.in (temacs): Revert 2000-03-12 change.
6566 2000-04-10  Jason Rumney  <jasonr@gnu.org>
6568         * xfaces.c (realize_face): Change FRAME_X_P to FRAME_WINDOW_P.
6570 2000-04-10  Gerd Moellmann  <gerd@gnu.org>
6572         * xdisp.c (setup_echo_area_for_printing): Choose an echo
6573         area buffer, if it's not set up yet.
6575         * indent.c (compute_motion): Set immediate_quit.
6577 2000-04-09  Gerd Moellmann  <gerd@gnu.org>
6579         * xfaces.c (tty_suppress_bold_inverse_default_colors_p): New
6580         variable.
6581         (realize_tty_face): Suppress boldness if colors are the inverse of
6582         the default colors, and tty_suppress_bold_inverse_default_colors_p
6583         is set.
6584         (Ftty_suppress_bold_inverse_default_colors): New function.
6585         (syms_of_xfaces): Defsubr it.
6587         * buffer.c (Frestore_buffer_modified_p): New function.
6588         (syms_of_buffer): Defsubr it.
6590 2000-04-08  Ken Raeburn  <raeburn@gnu.org>
6592         * charset.c (Fmake_char_internal): CHAR_COMPONENTS_VALID_P takes a
6593         charset id (int) argument, not a charset (Lisp_Object).
6595         * coding.h (code_convert_string): Declare.
6596         * coding.c (code_convert_string_norecord): Pass an int, not a lisp
6597         object, as the fourth argument to code_convert_string.
6599         * fontset.c (make_fontset_for_ascii_face): Use XINT on return
6600         value.
6601         (Fset_fontset_font): Use EQ to compare lisp objects.
6603 2000-04-05  Ken Raeburn  <raeburn@gnu.org>
6605         * intervals.h (SET_INTERVAL_PARENT): Use INT_LISPLIKE to test for
6606         a pointer that looks like a lisp object.
6607         (SET_INTERVAL_OBJECT): Don't explicitly compare the object with
6608         zero, instead see whether it's an integer object, since they can't
6609         have intervals.
6610         (GET_INTERVAL_OBJECT): Simply assign to the destination.
6612         * dispnew.c (allocate_matrices_for_frame_redisplay,
6613         direct_output_forward_char): Use X(U)INT and make_number as needed
6614         to convert between (unsigned) int values and lisp integers.
6615         * keyboard.c (read_key_sequence): Likewise.
6616         * lread.c (substitute_object_recurse): Likewise.
6617         * fns.c (concat, hash_lookup, hash_remove): Likewise.
6618         * minibuf.c (do_completion, Fminibuffer_complete_word,
6619         Fminibuffer_completion_help): Likewise.
6620         * term.c (produce_special_glyphs): Likewise.
6622         * fileio.c (Fwrite_region): Use EQ when comparing lisp objects.
6623         * print.c (print_preprocess, print_object): Likewise.
6625         * search.c (compile_pattern): Use NILP when checking for nil.
6627         * lisp.h (make_number) [!NO_UNION_TYPE && __GNUC__ >= 2 &&
6628         __OPTIMIZE__]: Provide a GNU C macro version that handles
6629         lisp-object unions.
6630         (XSET) [!NO_UNION_TYPE]: Set the value field first, then the type
6631         field, to better cope with ENABLE_CHECKING and calls that modify a
6632         Lisp_Object using its old value.
6634 2000-04-04  Gerd Moellmann  <gerd@gnu.org>
6636         * window.c (compare_window_configurations): Signal an error
6637         if parameters C1 or C2 aren't window configurations.
6639         * bytecode.c (Fbyte_code): Add a bunch of BEFORE_POTENTIAL_GC/
6640         AFTER_POTENTIAL_GC calls around calls to functions that can
6641         signal an error and thus invoke the debugger.
6643 2000-04-03  Gerd Moellmann  <gerd@gnu.org>
6645         * fns.c (Fbase64_decode_region, Fbase64_decode_string): Signal
6646         an error if decoding fails.
6648         * keyboard.c (lispy_mouse_names): Variable removed.
6649         (Vlispy_mouse_stem): New variable.
6650         (syms_of_keyboard): Initialize Vlispy_mouse_stem.
6651         (make_lispy_event) <mouse_click, scroll_bar_click>: Don't abort
6652         for any mouse button number.  Increase size of mouse_syms and
6653         button_down_location as needed.  Call modify_event_symbol with
6654         different arguments.
6655         (make_lispy_event) <scroll_bar_click> [USE_TOOLKIT_SCROLL_BARS]:
6656         Call modify_event_symbol with different arguments.
6657         (make_lispy_event) <w32_scroll_bar_click> [WINDOWSNT]: Don't abort
6658         for any button number.  Call modify_event_symbol with different
6659         arguments.
6660         (modify_event_symbol): Rename NAME_ALIST to NAME_ALIST_OR_STEM.
6661         Accept a string for NAME_ALIST_OR_STEM.
6663         * lisp.h (larger_vector): Add prototype.
6665         * fns.c (larger_vector): Make externally visible.
6667         * termhooks.h (NUM_MOUSE_BUTTONS): Removed.
6669 2000-04-02  Stefan Monnier  <monnier@cs.yale.edu>
6671         * regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
6672         (RE_MULTIBYTE_P, RE_STRING_CHAR_AND_LENGTH): New macros.
6673         (GET_CHAR_BEFORE_2): Moved from charset.h plus fixed minor bug when
6674         we are between str1 and str2.
6675         (MAX_MULTIBYTE_LENGTH, CHAR_STRING) [!emacs]: Provide trivial default.
6676         (PATFETCH): Use `TRANSLATE'.
6677         (PATFETCH_RAW): Fetch multibyte char if applicable.
6678         (PATUNFETCH): Remove.
6679         (regex_compile): Rely on PATFETCH to do most of the multibyte magic.
6680         When writing a char, write it directly into the pattern buffer rather
6681         than going needlessly through a temp char-array.
6682         (re_match_2_internal): Similarly, rely on RE_STRING_CHAR to do the
6683         multibyte magic and remove the useless `#ifdef emacs'.
6684         (bcmp_translate): Don't compare as multibyte chars when in a unibyte
6685         buffer.
6687         * regex.h (struct re_pattern_buffer): Make field `multibyte'
6688         conditional on `emacs'.
6690         * charset.h (GET_CHAR_BEFORE_2): Moved to regex.c.
6692 2000-04-01  Ken Raeburn  <raeburn@gnu.org>
6694         * alloc.c (MARK_STRING, UNMARK_STRING, STRING_MARKED_P): Expand
6695         non-union-type versions of XMARK and friends here, because XMARK
6696         and friends won't work on an integer field if NO_UNION_TYPE is not
6697         defined.
6698         (make_number): Define as a function if it's not defined as a
6699         macro.
6701         * composite.c (run_composite_function): Use NILP when checking for
6702         nil.
6703         (syms_of_composite): Delete local var NARGS, pass an int as first
6704         argument to Fmake_hash_table.
6706         * editfns.c (text_property_stickiness): Use NILP to test
6707         Lisp_Object boolean value.
6708         (Fmessage_or_box): Don't use NILP to test int variable.
6709         (Fformat): Use a temporary variable to avoid ENABLE_CHECKING
6710         problems reading from and changing the same lisp value in an
6711         XSETSTRING call.
6713 2000-04-01  Gerd Moellmann  <gerd@gnu.org>
6715         * term.c (TN_no_color_video): New variable.
6716         (term_init): Intitialize TN_no_color_video.
6717         (enum no_color_bit): New enumeration.
6718         (MAY_USE_WITH_COLORS_P): New macro.
6719         (turn_on_face): Use it to determine if attributes may be used
6720         combined with colors.
6722 2000-04-01  Ken Raeburn  <raeburn@gnu.org>
6724         * window.c (CURBEG, CURSIZE): Don't overload lisp object lvalues
6725         with int lvalues via casts; instead, just yield lisp object
6726         lvalues.
6727         (enlarge_window): Variable sizep now points to Lisp_Object.  Use
6728         proper accessor macros.
6729         (shrink_window_lowest_first): w->top is Lisp_Object; use XINT.
6730         (grow_mini_window): Fix typo getting int value of root->height.
6732         * xdisp.c (compute_string_pos): Fix order of arguments to
6733         string_pos_nchars_ahead.
6734         (handle_fontified_prop, add_to_log): Pass int, not Lisp_Object, as
6735         count arg to variable-arg routines like Frun_hook_with_args and
6736         Fformat.
6737         (back_to_previous_visible_line_start)
6738         (build_desired_tool_bar_string): Pass Lisp_Object, not int, to
6739         fixed-arg routines like Fget_char_property and Fmake_string.
6740         (reconsider_clip_changes): Use XINT when comparing integer lisp
6741         objects, or passing them as int arguments.
6742         (mark_window_display_accurate, insert_left_trunc_glyphs)
6743         (append_space, extend_face_to_end_of_line): Use make_number when
6744         storing or passing integer values as lisp objects.
6745         (set_cursor_from_row, highlight_trailing_whitespace): Use
6746         INTEGERP, not implicit test against zero, for glyph object.
6747         (try_window_id): Don't use make_number when we want an int value.
6749         * xfaces.c (xlfd_symbolic_value): Make last argument a
6750         Lisp_Object, to be consistent with callers.
6751         (Fbitmap_spec_p): Use XINT to get numeric value of height.
6752         (lface_hash): Apply XFASTINT to lisp values before folding in.
6754         * xfns.c (Fx_show_tip): Use make_number to get lisp objects to
6755         fill in window width and height.  Pass an int, not a lisp object,
6756         as first arg to Finsert.
6758 2000-04-01  Gerd Moellmann  <gerd@gnu.org>
6760         * xfaces.c (realize_basic_faces): Block input while realizing
6761         the faces.
6763         * keyboard.c (lispy_mouse_names): Add additional mouse names.
6765         * termhooks.h (NUM_MOUSE_BUTTONS): Increase to 15.
6767 2000-03-31  Gerd Moellmann  <gerd@gnu.org>
6769         * xterm.c (x_produce_glyphs): When displaying unibyte text
6770         or ASCII, handle case that per-char metric is null.
6772 2000-03-30  Ken Raeburn  <raeburn@gnu.org>
6774         * lisp.h (NO_UNION_TYPE) [ENABLE_CHECKING]: Undef.
6776         * lisp.h (XCONS, XSTRING, XSYMBOL, XFLOAT, XPROCESS, XWINDOW,
6777         XSUBR, XBUFFER): Verify correct object type before returning
6778         pointer, using eassert.
6779         * frame.h (XFRAME): Likewise.
6781         * buffer.c (Frename_buffer, Fset_buffer_multibyte,
6782         swap_out_buffer_local_variables, Fmove_overlay): Don't apply
6783         XSYMBOL, XBUFFER, etc, to values that may be nil or of the wrong
6784         type.
6785         * data.c (set_internal): Likewise.
6786         * dispextern.h (WINDOW_WANTS_MODELINE_P,
6787         WINDOW_WANTS_HEADER_LINE_P): Likewise.
6788         * fileio.c (auto_save_1): Likewise.
6789         * insdel.c (check_markers): Likewise.
6790         * marker.c (buf_charpos_to_bytepos, unchain_marker): Likewise.
6791         * undo.c (record_insert): Likewise.
6792         * vmsproc.c (child_sig): Likewise.
6793         * window.c (unshow_buffer, window_loop): Likewise.
6794         * xterm.c (x_erase_phys_cursor): Likewise.
6796 2000-03-30  Gerd Moellmann  <gerd@gnu.org>
6798         * xfns.c (free_image_cache): Free the cache structure itself
6799         last, after all its members have been freed.
6801         * lisp.h (xstrdup): Add prototype.
6803         * alloc.c (xstrdup): Moved here from xfaces.c.
6804         (allocating_for_lisp): Variable removed.
6805         (lisp_malloc): Block input around the calls to malloc and
6806         mem_insert.
6808         * xfaces.c (realize_tty_face): Use find_symbol_value instead
6809         of Fsymbol_value.
6810         (xstrdup): Moved to alloc.c.
6812 2000-03-29  Ken Raeburn  <raeburn@gnu.org>
6814         * scroll.c (CHECK_BOUNDS): Renamed from CHECK.
6816         * emacs.c (main): Fix sense of no-loadup test.
6818         * config.in (ENABLE_CHECKING): Undef.
6820         * lisp.h (struct interval): Replace "parent" field with a union of
6821         interval pointer and Lisp_Object; add new bitfield to use as
6822         discriminant.  Change other flag fields to bitfields.
6823         (CHECK): New macro for consistency checking.  If ENABLE_CHECKING
6824         is defined and the supplied test fails, print a message and
6825         abort.
6826         (eassert): New macro.  Use CHECK to provide an assert-like
6827         facility.
6829         * intervals.h (NULL_INTERVAL_P): Now applies only to real interval
6830         pointers; abort if the value looks like a lisp object.
6831         (NULL_INTERVAL_P, NULL_PARENT, HAS_PARENT, HAS_OBJECT, SET_PARENT,
6832         SET_OBJECT, INTERVAL_PARENT, GET_INTERVAL_OBJECT, COPY_PARENT):
6833         Modify for new interval parent definition.
6835         * alloc.c (mark_interval_tree, MARK_INTERVAL_TREE,
6836         UNMARK_BALANCE_INTERVALS): Update references that need an
6837         addressable lisp object in the interval structure.
6838         (die): New function.
6839         (suppress_checking): New variable.
6841         * intervals.c (interval_start_pos): Just return 0 if there's no
6842         parent object.
6844 2000-03-29  Gerd Moellmann  <gerd@gnu.org>
6846         * lread.c (read1): Accept `.' (period) as symbol start like in CL
6847         and earlier Emacs versions.
6849         * keyboard.c (Ftop_level): Cancel busy-cursor.
6851         * eval.c (call_debugger): Cancel busy-cursor.
6853 2000-03-29  Kenichi Handa  <handa@etl.go.jp>
6855         * search.c (Freplace_match): Adjust multibyteness of the current
6856         buffer and NEWTEXT.  Free allocated memory before signaling an
6857         error.
6859 2000-03-28  Stefan Monnier  <monnier@cs.yale.edu>
6861         * regex.c (analyse_first): New function obtained by ripping out most
6862         of re_compile_fastmap and generalizing it a little bit so that it
6863         can also just return whether a given (sub)pattern can match the empty
6864         string or not.
6865         (regex_compile): Use `analyse_first' to decide whether the loop-check
6866         needs to be done or not for *, +, *? and +? (the loop check is costly
6867         for non-greedy repetition).
6868         (re_compile_fastmap): Delegate the actual work to `analyse_first'.
6870 2000-03-28  Dave Love  <fx@gnu.org>
6872         * s/gnu-linux.h (GC_SETJMP_WORKS): Define for i386, sparc, m68k,
6873         alpha.
6875         * alloc.c: Include stdio.h.  Test STDC_HEADERS, not __STDC__.
6877 2000-03-27  Stefan Monnier  <monnier@cs.yale.edu>
6879         * regex.c (REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as
6880         an expression.
6881         (enum re_opcode_t): Update description of succeed_n.
6882         (PATFETCH): Always define.
6883         (regex_compile): Use lookahead rather than PATUNFETCH (for repetition
6884         operators, char classes, shy-groups and intervals).
6885         Optimize special cases of intervals so as to only use succeed_n and
6886         jump_n when really needed.
6887         (re_compile_fastmap): Simplify handling of jump_n and succeed_n now
6888         that we don't have to handle the special cases any more.
6889         Simplify on_failure_jump handling as well.
6891 2000-03-28  Jason Rumney  <jasonr@gnu.org>
6893         * lread.c (Fload): Move safe_p definition to above #ifdef DOS_NT.
6895 2000-03-27  Gerd Moellmann  <gerd@gnu.org>
6897         * s/freebsd.h (GC_SETJMP_WORKS): Define.
6899         * s/msdos.h (GC_SETJMP_WORKS): Define.
6901         * alloc.c (mark_maybe_object): New function.
6902         (mark_memory): Use it.
6903         (SETJMP_WILL_LIKELY_WORK, SETJMP_WILL_NOT_WORK): New macros.
6904         (setjmp_tested_p, longjmp_done): New variables.
6905         (test_setjmp): New function.
6906         (mark_stack) [!GC_SETJMP_WORKS]: Call test_setjmp.
6907         (init_alloc): Initialize setjmp_tested_p and longjmp_done.
6909         * xdisp.c (face_before_or_after_it_pos): Pass multibyteness
6910         to DEC_TEXT_POS and INC_TEXT_POS.
6912         * dispnew.c (direct_output_for_insert): Use DEC_TEXT_POS
6913         with parameter MULTIBYTE_P.
6915         * dispextern.h (INC_TEXT_POS, DEC_TEXT_POS): Add parameter
6916         MULTIBYTE_P.
6918         * editfns.c (Fsubst_char_in_region): Don't use INC_POS in unibyte
6919         buffers because it looks for multibyte character byte sequences
6920         which don't exist in unibyte text.
6922         * xterm.h (x_specified_cursor_type, x_copy_color): Add prototypes.
6924         * xfaces.c (register_color, unregister_color, unregister_colors)
6925         [DEBUG_X_COLORS]: New functions.
6926         (x_free_colors) [DEBUG_X_COLORS]: Unregister colors.
6928         * xfns.c (x_set_cursor_color): Get color reference counts right.
6930         * xterm.c (x_copy_color): New function.
6931         (x_alloc_nearest_color) [DEBUG_X_COLORS]: Call register_color.
6933         * buffer.h (MAX_PER_BUFFER_VARS): Renamed from MAX_BUFFER_LOCAL_VARS.
6934         (PER_BUFFER_VAR_OFFSET): Renamed from BUFFER_LOCAL_VAR_OFFSET.
6935         (PER_BUFFER_VAR_IDX): Renamed from BUFFER_LOCAL_VAR_IDX.
6936         (PER_BUFFER_VALUE_P): Renamed from BUFFER_HAS_LOCAL_VALUE_P.
6937         (SET_PER_BUFFER_VALUE_P): Renamed from SET_BUFFER_HAS_LOCAL_VALUE_P.
6938         (PER_BUFFER_IDX): Renamed from BUFFER_LOCAL_IDX.
6939         (PER_BUFFER_DEFAULT): Renamed from BUFFER_LOCAL_DEFAULT_VALUE.
6940         (PER_BUFFER_VALUE): Renamed from BUFFER_LOCAL_VALUE.
6941         (PER_BUFFER_SYMBOL): Renamed from BUFFER_LOCAL_SYMBOL.
6942         (PER_BUFFER_TYPE): Renamed from BUFFER_LOCAL_TYPE.
6944         * category.c, data.c, syntax.c, print.c, lread.c: Use new macro
6945         names for handling per-buffer variables.
6947         * buffer.c (buffer_permanent_local_flags): Use MAX_PER_BUFFER_VARS
6948         instead of MAX_BUFFER_LOCAL_VARS.
6949         (last_per_buffer_idx): Renamed from max_buffer_local_idx.
6951         * xfaces.c (lookup_face): Don't assert FACE_SUITABLE_FOR_CHAR_P.
6953         * xfns.c (x_specified_cursor_type): New function.
6954         (x_set_cursor_type): Use it.
6956         * buffer.h (struct buffer): Add cursor_type.
6958 2000-03-26  Stefan Monnier  <monnier@cs.yale.edu>
6960         * regex.c (enum re_opcode_t): New opcode on_failure_jump_nastyloop.
6961         (print_partial_compiled_pattern, re_compile_fastmap): Handle new
6962         opcode.
6963         (regex_compile): Use on_failure_jump_nastyloop for non-greedy loops.
6964         (re_match_2_internal): Add code for on_failure_jump_nastyloop when
6965         executing it as well as when popping it off the stack to find infinite
6966         loops in non-greedy repetition operators.
6968 2000-03-26  Gerd Moellmann  <gerd@gnu.org>
6970         * doc.c (Qfunction_documentation): New variable.
6971         (syms_of_doc): Initialize Qfunction_documentation.
6972         (Fdocumentation): If FUNCTION is a symbol with non-nil
6973         `function-documentation' property, return a documentation derived
6974         from that.
6976         * buffer.c (syms_of_buffer): Add default-cursor-type.
6977         (init_buffer_once): Don't let cursor_type have a local value
6978         in every buffer.
6980         * xterm.c (x_display_and_set_cursor): Choose cursor depending
6981         on buffer-local value of cursor_type.
6982         (x_draw_bar_cursor): Add parameter WIDTH.
6984         * buffer.c (reset_buffer): Initialize buffer's cursor_type.
6985         (init_buffer_once): Set default cursor_type value to t.
6986         Mark cursor_type as local everywhere.
6987         (syms_of_buffer): New per-buffer variable cursor-type.
6989         * buffer.h (struct buffer): Remove member local_var_flags,
6990         add local_flags.
6991         (MAX_BUFFER_LOCAL_VARS): New macro.
6992         (BUFFER_LOCAL_VAR_OFFSET, BUFFER_LOCAL_VAR_IDX)
6993         (BUFFER_HAS_LOCAL_VALUE_P, SET_BUFFER_HAS_LOCAL_VALUE_P)
6994         (BUFFER_LOCAL_IDX, BUFFER_LOCAL_DEFAULT_VALUE, BUFFER_LOCAL_VALUE)
6995         (BUFFER_LOCAL_SYMBOL, BUFFER_LOCAL_TYPE): New macros.
6997         * print.c (print_object): Use new macros for per-buffer
6998         variables.
7000         * category.c (Fset_category_table): Use new macros for per-buffer
7001         variables.
7003         * buffer.c (buffer_permanent_local_flags): Make a char array.
7004         (max_buffer_local_idx): New variable.
7005         (reset_buffer_local_variables, Fbuffer_local_variables): Rewritten
7006         for new handling of per-buffer variables.
7007         (buffer_slot_type_mismatch): Use new macros for per-buffer vars.
7008         (init_buffer_once): Initialize per-buffer vars differently.
7009         Set max_buffer_local_idx.
7011         * syntax.c (Fset_syntax_table): Use new macros for per-buffer
7012         variables.
7014         * lread.c (defvar_per_buffer): Use new macros for per-buffer
7015         variables.
7017         * data.c (do_symval_forwarding, store_symval_forwarding)
7018         (find_symbol_value, set_internal, default_value, Fset_default)
7019         (Fkill_local_variable, Flocal_variable_p): Use new macros for
7020         per-buffer variables.
7022         * Makefile.in (bootstrap-emacs): Use `mv -f' instead of `mv'.
7024 2000-03-24  Gerd Moellmann  <gerd@gnu.org>
7026         * xterm.c (x_term_init): Unblock input around call1 of
7027         Qvendor_specific_keysyms.
7029         * syntax.c (open_paren_in_column_0_is_defun_start): New variable.
7030         (find_defun_start): Consider an open parenthesis in column 0
7031         a defun start only if open_paren_in_column_0_is_defun_start is set.
7032         (syms_of_syntax): New variable open-paren-in-column-0-is-defun-start.
7034 2000-03-24  Stefan Monnier  <monnier@cs.yale.edu>
7036         * eval.c (Fautoload): Add entry in load-history (if after dump).
7037         * lread.c (load-history): Update docstring.
7039 2000-03-24  Gerd Moellmann  <gerd@gnu.org>
7041         * indent.c (Fvertical_motion): Always use the current buffer.
7042         Temporarily change the window's buffer, if necessary.
7044 2000-03-23  Gerd Moellmann  <gerd@gnu.org>
7046         * xterm.c (fast_find_position): Make sure not to consider rows
7047         not visible in the window.
7049 2000-03-22  Stefan Monnier  <monnier@cs.yale.edu>
7051         * regex.c (enum syntaxcode): Provide default for non-Emacs.
7052         (re_compile_fastmap, re_match_2_internal): Undo Dave's previous fix.
7054 2000-03-22  Jason Rumney  <jasonr@gnu.org>
7056         * w32menu.c (single_submenu): Set help string to NULL if none.
7057         (w32_menu_show): Set help string correctly.
7058         (add-menu-item): Set help string in MIIM_DATA for menu item.
7059         Load SetMenuItemInfoA explicitly.
7060         (w32_menu_display_help): New function.
7062         * w32fns.c (w32_wnd_proc): Handle WM_MENUSELECT message.
7063         (QCdata): Moved to xdisp.c.
7065         * w32term.c (w32_read_socket): Handle WM_MENUSELECT message.
7066         (Vw32_charset_to_codepage_alist): Removed.
7067         (Vw32_charset_info_alist): New variable.
7068         (Qw32_charset_[ansi, default, symbol, shiftjis, hangul, gb2312,
7069         chinesebig5, oem, easteurope, turkish, baltic, russian, arabic,
7070         greek, hebrew, thai, johab, mac, unicode]): New symbols.
7071         (x_produce_glyphs): Remove out of date #ifdef 0'd section. Replace
7072         with TODO comment.
7073         (w32_codepage_for_font): Use Vw32_charset_info_alist.
7074         (syms_of_w32term): Remove Vw32_charset_to_codepage_alist.
7075         Define Vw32_charset_info_alist and w32_charset symbols.
7077 2000-03-22  Jason Rumney  <jasonr@gnu.org>
7079         * makefile.nt (w32bdf.obj): Update dependencies.
7081         * w32bdf.c: Include frame.h and dispextern.h before fontset.h.
7083         * w32fns.c: Include fontset.h after dispextern.h.
7084         (Fx_create_frame): Do not create fontset.
7085         (w32_load_system_font): Doc fix.
7086         (Fx_close_connection): Free full_name if it is not shared.
7088         * w32term.c: Include fontset.h after dispextern.h.
7089         (x_get_glyph_face_and_encoding): New parameter two_byte_p. Callers
7090         updated.
7091         (w32_per_char_metric): If PCM is invalid, delete and return NULL.
7092         (x_get_char_and_face_encoding): Use FACE_FOR_CHAR to get face_id.
7093         (w32_font_is_double_byte): New function, needs body.
7094         (x_append_glyph): Set glyph->glyph_not_available_p.
7095         (x_produce_glyphs): Set it->glyph_not_available_p.  Don't set
7096         it->charset.  If it->multibyte_p is zero and it->c is a multibyte
7097         character, convert it to a unibyte character.
7098         (struct glyph_string): Delete member `charset'.
7099         (W32_TEXTOUT): Temporarily remove charset_dim until another way of
7100         calculating it is found.
7101         (x_set_mouse_face_gc): Call FACE_FOR_CHAR to get face_id.  Handle
7102         the case that per char metric is not available correctly.
7103         (x_fill_glyph_string): Handle the case that the specific glyph is
7104         not available correctly.
7105         (BUILD_CHAR_GLYPH_STRINGS): Don't set s->charset.
7106         (BUILD_COMPOSITE_GLYPH_STRING): Likewise.
7107         (x_new_font): Call FS_LOAD_FONT, not fs_load_font.
7108         (x_new_fontset): Call fontset_ascii to get ASCII font name of the
7109         fontset.  Don't call FS_LOAD_FONT.
7111 2000-03-22  Ken Raeburn  <raeburn@gnu.org>
7113         * intervals.h (NULL_INTERVAL): Cast to INTERVAL type.
7114         (INT_LISPLIKE): New macro.
7115         (NULL_INTERVAL_P): Use it.
7116         (INTERVAL_HAS_PARENT, INTERVAL_HAS_OBJECT, SET_INTERVAL_PARENT,
7117         SET_INTERVAL_OBJECT, INTERVAL_PARENT, COPY_INTERVAL_PARENT,
7118         GET_INTERVAL_OBJECT, INTERVAL_PARENT_OR_NULL): New macros.
7120         * alloc.c (make_interval, gc_sweep): Use new macros; eliminate all
7121         explicit references to "parent" field of struct interval and
7122         associated unclean type conversions.
7123         * intervals.c (create_root_interval, root_interval, rotate_right,
7124         rotate_left, balance_possible_root_interval, split_interval_right,
7125         split_interval_left, interval_start_pos, find_interval,
7126         next_interval, previous_interval, update_interval,
7127         adjust_intervals_for_insertion, delete_node, delete_interval,
7128         adjust_intervals_for_deletion, merge_interval_right,
7129         merge_interval_left, reproduce_tree, graft_intervals_into_buffer,
7130         copy_intervals_to_string): Likewise.
7131         * intervals.h (AM_LEFT_CHILD, AM_RIGHT_CHILD, RESET_INTERVAL):
7132         Likewise.
7133         * syntax.c (update_syntax_table): Likewise.
7135         * intervals.c (reproduce_tree_obj): New function, like
7136         reproduce_tree but takes a Lisp_Object for the parent.  Declare
7137         with prototype.
7138         (graft_intervals_into_buffer): Use it when appropriate.
7139         (reproduce_tree): Declare with prototype.
7140         (balance_possible_root_interval): Check that the parent is a lisp
7141         object before trying to examine its type.
7143 2000-03-22  Gerd Moellmann  <gerd@gnu.org>
7145         * xfaces.c (lface_same_font_attributes_p): Compare font attributes
7146         as strings only if both are known to be strings.
7148         * s/openbsd.h (LIBS_TERMCAP): Undef.
7150 2000-03-21  Stefan Monnier  <monnier@cs.yale.edu>
7152         * regex.c (CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
7153         definitions for non-Emacs compilation.
7154         (enum re_opcode_t): Remove (not)wordchar and move (not)syntaxspec
7155         outside of `#ifdef emacs'.
7156         (print_partial_compiled_pattern): Update.
7157         (regex_compile): Use (not)syntaxspec(Sword) instead of (not)wordchar.
7158         (re_compile_fastmap): Merge handling of charset and charset_not (for
7159         emacs and non-emacs compilation as well).
7160         Similarly for (not)categoryspec and (not)syntaxspec.
7161         Don't use the fastmap when reaching `anychar' since the added
7162         complexity is not justified.
7163         (re_match_2_internal): Merge (not)wordchar (emacs and non-emacs)
7164         and (not)syntaxspec.  Merge (not)categoryspec.
7166 2000-03-22  Kenichi Handa  <handa@etl.go.jp>
7168         * dispextern.h [!HAVE_WINDOW_SYSTEM] (FACE_SUITABLE_FOR_CHAR_P,
7169         FACE_FOR_CHAR): Define them differently for the configuration of
7170         --without-x.
7172 2000-03-21  Dave Love  <fx@gnu.org>
7174         * fontset.c (Fset_fontset_font, Ffontset_font): Fix newlines in
7175         doc string.
7177 2000-03-21  Gerd Moellmann  <gerd@gnu.org>
7179         * xfaces.c (check_lface_attrs) [GLYPH_DEBUG]: Fix syntax error.
7180         (lface_fully_specified_p): Don't check contents of
7181         LFACE_FONT_INDEX because that attribute is optional.
7182         (realize_x_face): Remove now unwarranted xassert.
7184 2000-03-21  Kenichi HANDA  <handa@etl.go.jp>
7186         The following changes are to make font selection based on
7187         characters, not charset.  In addition, they recover fontset
7188         facilities while utilizing the new font selection mechanism.
7190         * Makefile.in (fontset.o): Depend on dispextern.h.
7192         * alloc.c (mark_face_cache): Don't mark face->registry.
7194         * dispextern.h (struct glyph): New member glyph_not_available_p.
7195         Use 22 bits for face_id.
7196         (enum lface_attribute_index): Add LFACE_FONT_INDEX.
7197         (struct face): Delete member registry, new member ascii_face.
7198         (FACE_SUITABLE_FOR_CHAR_P): Renamed from
7199         FACE_SUITABLE_FOR_CHARSET_P.  Caller changed.
7200         (FACE_FOR_CHAR): Renamed from FACE_FOR_CHARSET.  Caller changed.
7201         (struct it): Delete member charset, new member
7202         glyph_not_available_p.
7204         * fontset.h (FONT_NOT_OPENED, FONT_NOT_FOUND): Macros removed.
7205         (struct fontset_info, struct fontset_data): Structs removed.
7206         (allloc_fontset_data, free_fontset_data, fs_regiser_fontset,
7207         Vglobale_fontset_alist, font_idx_temp): Externs removed.
7208         (fs_load_font, fs_query_fontset): Adjusted for new argument.
7209         (fs_free_face_fontset, fontset_font_pattern,
7210         face_suitable_for_char_p, face_for_char,
7211         make_fontset_for_ascii_face): Extern them.
7212         (FS_LOAD_FONT): Adjusted for the change of fontset implementation.
7213         (FS_LOAD_FACE_FONT): New macro.
7215         * fontset.c: All codes rewritten or adjusted for the change of
7216         fontset implementation.  Now fontset is represented by char table.
7217         (Vglobal_fontset_alist, font_idx_temp, my_strcasetbl): Variables
7218         removed.
7219         (my_strcasecmp): Function removed.
7220         (Vfontset_table, next_fontset_id, Vdefault_fontset): New
7221         variables.
7222         (AREF, ASIZE): New macros.
7223         (FONTSET_FROM_ID, FONTSET_ID, FONTSET_NAME, FONTSET_FRAME,
7224         FONTSET_ASCII, FONTSET_BASE, BASE_FONTSET_P, FONTSET_REF,
7225         FONTSET_REF_VIA_BASE, FONTSET_SET): New macros.
7226         (fontset_ref, fontset_ref_via_base, fontset_set, make_fontset,
7227         fontset_id_valid_p, font_family_registry, fontset_name,
7228         fontset_ascii, free_face_fontset, face_suitable_for_char_p,
7229         face_for_char, make_fontset_for_ascii_face, fontset_font_pattern):
7230         New functions.
7231         (fs_load_font): New arg FACE.  Caller changed.
7232         (fs_query_fontset): Argument changed.  Caller changed.
7233         (Fquery_fontset): call fs_query_fontset.
7234         (fs_register_fontset, alloc_fontset_data, free_fontset_data):
7235         Functions removed.
7236         (clear_fontset_elements, check_registry_encoding,
7237         check_fontset_name): New functions.
7238         (syms_of_fontset): Set char-table-extra-slots property of fontset
7239         to 3.  Staticpro and initialize Vfontset_table and
7240         Vdefault_fontset.  Defsubr fontset_font and fontset_list.
7242         * frame.h (struct frame): Member `fontset_data' removed.
7243         (FRAME_FONTSET_DATA): Macro removed.
7245         * frame.c (make_frame): Don't allocate f->fontset_data.
7246         (Fdelete_frame): Don't free f->fontset_data.
7248         * msdos.c (XMenuActivate): Args to lookup_derived_face changed.
7250         * xdisp.c (charset_at_position): Function removed.
7251         (init_iterator): Don't set member charset of struct `it'.
7252         (handle_face_prop, reseat_to_string, set_iterator_to_next,
7253         next_element_from_display_vector, insert_left_trunc_glyphs):
7254         Likewise.
7255         (face_before_or_after_it_pos): Call FACE_FOR_CHAR, not
7256         FACE_FOR_CHARSET.
7257         (get_next_display_element, append_space,
7258         extend_face_to_end_of_line): Likewise.
7260         * xfaces.c (Qx_charset_registry, Vface_default_registry):
7261         Variables removed.
7262         (clear_font_table, frame_update_line_height, load_face_font):
7263         Adjusted for the change of fontset implementation.
7264         (load_face_fontset_font): Function removed.
7265         (pixel_point_size): New function.
7266         (font_list): Argument type changed.  Caller changed.
7267         (LFACE_FONT): New macro.
7268         (check_lface_attrs): Check attr[LFACE_FONT_INDEX].
7269         (set_lface_from_font_name): Type of arg FONTNAME is changed to
7270         Lisp_Object.  Determine the font name by actually loading a font
7271         by the specified pattern.  Set LFACE_FONT (lface) to the specified
7272         pattern.  Even if a font is not found, don't try alternatives.
7273         (Finternal_set_lisp_face_attribute): Handle `font' slot in lface.
7274         (set_font_frame_param): If `font' is specified in lface, use it.
7275         (Finternal_get_lisp_face_attribute): Handle `font' slot in lface.
7276         (lface_same_font_attributes_p): Likewise.
7277         (make_realized_face): Arguent changed.  Caller changed.  Set
7278         face->ascii_face to face itself.
7279         (free_realized_face): Free face->fontset if face is for ASCII.
7280         (face_suitable_for_iso8859_1_p, face_suitable_for_charset_p,
7281         deduce_unibyte_registry, x_charset_registry): Functions removed.
7282         (free_realized_multibyte_face): New function.
7283         (lookup_face, lookup_named_face, lookup_derived_face): Argument
7284         changed.  Caller changed.
7285         (try_font_list): Argument type changed.
7286         (face_fontset): Check `font' slot of ATTRS, not `family' slot.
7287         (choose_face_font): Argument changed.  Handle fontset properly.
7288         (choose_face_fontset_font): Function removed.
7289         (realize_default_face, realize_named_face): Don't remove the
7290         former face here.
7291         (realize_face): Argument changed.  Caller changed.  Remove face
7292         with the arg former_face_id in advance.  Load font for the new
7293         face.
7294         (realize_x_face): Argument changed.  Caller changed.  For a
7295         multibyte character, share fontset with base_face.  For a single
7296         byte character, make a new realized fontset.  Don't load a font
7297         here.
7298         (realize_tty_face): Argument changed.  Caller changed.
7299         (compute_char_face): Call FACE_FOR_CHAR, not FACE_FOR_CHARSET.
7300         (face_at_buffer_position): Don't check multibyte_p for returning
7301         DEFAULT_FACE_ID.
7302         (face_at_string_position): Call FACE_SUITABLE_FOR_CHAR_P, not
7303         FACE_SUITABLE_FOR_CHARSET_P.
7304         (syms_of_xfaces): Remove code for Qx_charset_registry and
7305         Vface_default_registry.
7307         * xterm.c: Include fontset.h after dispextern.h.  Undo the changes
7308         related to PER_CHAR_METRIC done by Gerd on 2000-03-03.
7309         (x_per_char_metric): Don't try FONT->default_char.  Even if
7310         pcm->width is zero, glyph bits may exist.
7311         (x_encode_char): Always initialize char2b->byte1.
7312         (x_get_char_face_and_encoding): Call FACE_FOR_CHAR to get face_id.
7313         (x_get_glyph_face_and_encoding): New arg two_byte_p.  Caller
7314         changed.
7315         (x_append_glyph): Set glyph->glyph_not_available_p.
7316         (x_produce_glyphs): Set it->glyph_not_available_p.  Don't set
7317         it->charset.  Handle the case that per char metric is not
7318         available.  If it->multibyte_p is zero and it->c is a multibyte
7319         character, convert it to a unibyte character.
7320         (struct glyph_string): Delete member `charset'.
7321         (x_set_mouse_face_gc): Call FACE_FOR_CHAR to get face_id.  Handle
7322         the case that per char metric is not available correctly.
7323         (x_fill_glyph_string): Handle the case that the specific glyph is
7324         not available correctly.
7325         (BUILD_CHAR_GLYPH_STRINGS): Don't set s->charset.
7326         (BUILD_COMPOSITE_GLYPH_STRING): Likewise.
7327         (x_new_font): Call FS_LOAD_FONT, not fs_load_font.
7328         (x_new_fontset): Call fontset_ascii to get ASCII font name of the
7329         fontset.  Don't call FS_LOAD_FONT.
7331         * xfns.c (Fx_create_frame): Don't cal fs_register_fontset.
7332         (x_create_tip_frame): Likewise.
7333         (Fx_close_connection): Free full_name of font_info.
7335         * fns.c (optimize_sub_char_table): New function.
7336         (Foptimize_char_table): New function.
7337         (syms_of_fns): Defsubr Soptimize_char_table.
7339 2000-03-20  Gerd Moellmann  <gerd@gnu.org>
7341         * buffer.c (Fset_buffer_modified_p): Set update_mode_lines
7342         only if buffer is displayed in some window.
7344         * xdisp.c (handle_single_display_prop): Initialize local `value'.
7345         (try_window_reusing_current_matrix): Don't call scroll run
7346         function if run's current and desired position are the same;
7347         this prevents cursor flickering.
7349 2000-03-19  Stefan Monnier  <monnier@cs.yale.edu>
7351         * regex.h (RE_TRANSLATE. RE_TRANSLATE_P): Moved to regex.c.
7353         * regex.c (RE_STRING_CHAR): New macro.
7354         (GET_CHAR_AFER_2): Remove.
7355         (RE_TRANSLATE, RE_TRANSLATE_P): New macros moved from regex.h.
7356         (enum re_opcode_t): Remove on_failure_jump_exclusive.
7357         (print_partial_compiled_pattern, re_compile_fastmap)
7358         (re_match_2_internal): Remove on_failure_jump_exclusive.
7359         (regex_compile): Turn optimizable P+ loops into PP*, so that the
7360         optimization only need to work for * (ie. can use of_keep_string_jump).
7361         Remove the special case for .*\n since it is now covered by the general
7362         optimization.
7363         (re_search_2): Don't bother with `room'.
7364         (skip_one_char): New function.
7365         (skip_noops): Simplify since `memory' is not needed any more.
7366         (mutually_exclusive_p): Restructure slightly to use `switch' and
7367         add handling for "all" remaining cases.
7368         (re_match_2_internal): Change on_failure_jump_smart to use
7369         on_failure_keep_string_jump (and redirect the end-of-loop jump)
7370         rather than on_failure_jump_exclusive.
7372 2000-03-19  Gerd Moellmann  <gerd@gnu.org>
7374         * xfns.c (select_visual): Don't set dpyinfo->n_planes to the
7375         number of bits per RGB because it's everywhere used as the depth
7376         of the visual.
7378         * term.c (calculate_costs): Remove code dealing with X frames.
7380 2000-03-19  Richard M. Stallman  <rms@gnu.org>
7382         * lread.c (syms_of_lread): Doc fix for load-convert-to-unibyte.
7384 2000-03-18  Gerd Moellmann  <gerd@gnu.org>
7386         * lread.c (read_integer): Unread the last char not consumed.
7388 2000-03-17  Gerd Moellmann  <gerd@gnu.org>
7390         * xterm.c (x_update_window_cursor): Don't update in frames
7391         which are in the process of being deleted.
7393 2000-03-16  Gerd Moellmann  <gerd@gnu.org>
7395         * Makefile.in (mostlyclean): Add `*.core'.
7396         (clean): Add `bootstrap-emacs'.
7398         * lread.c (read_integer): New function.
7399         (read1): Support read syntax #o, #x, #b, #r.
7401 2000-03-15  Stefan Monnier  <monnier@cs.yale.edu>
7403         * regex.c (re_match_2): Fix string shortening (to fit `stop') to
7404         make sure POINTER_TO_OFFSET gives the same value before and after
7405         PREFETCH.  Use `dfail' to guarantee "atomic" matching.
7406         (PTR_TO_OFFSET): Use POINTER_TO_OFFSET.
7407         (debug): Now only active if > 0 rather than if != 0.
7408         (DEBUG_*): Update for the new meaning of `debug'.
7409         (print_partial_compiled_pattern): Add missing `succeed' case.  Use
7410         CHARSET_* macros in the charset(_not) branch.  Fix off-by-two bugs
7411         in `succeed_n', `jump_n' and `set_number_at'.
7412         (store_op1, store_op2, insert_op1, insert_op2)
7413         (at_begline_loc_p, at_endline_loc_p): Add prototype.
7414         (group_in_compile_stack): Move to after its arg's types are
7415         declared and add a prototype.
7416         (PATFETCH): Define in terms of PATFETCH_RAW.
7417         (GET_UNSIGNED_NUMBER): Add the usual `do { ... } while(0)'
7418         wrapper.
7419         (QUIT): Redefine as a nop except for NTemacs.
7420         (regex_compile): Handle intervals {,M} as if it was {0,M}.  Fix
7421         indentation of the greedy-op and shy-group code.
7422         (at_(beg|end)line_loc_p): Fix argument's types.
7423         (re_compile_fastmap): Ifdef out failure_stack_ptr to shut up gcc.
7424         (re_search_2): Use POS_AS_IN_BUFFER.  Simplify `room' computation.
7425         (MATCHING_IN_FIRST_STRING): Remove.
7426         (re_match_2): Use POS_AS_IN_BUFFER.  Ifdef out failure_stack_ptr
7427         to shut up gcc.  Use FIRST_STRING_P and POINTER_TO_OFFSET.  Use
7428         QUIT unconditionally.
7430 2000-03-15  Gerd Moellmann  <gerd@gnu.org>
7432         * minibuf.c (Fminibuffer_complete): Set point to ZV if finding
7433         a sole completion.
7435         * process.c (send_process): Add a hint that the function
7436         can call Lisp code to its comment.
7438         * lread.c (load_dangerous_libraries): New variable.
7439         (Vbytecomp_version_regexp): New variable.
7440         (safe_to_load_p): New function.
7441         (Fload): Handle files not compiled with Emacs specially.
7442         (syms_of_lread): New Lisp variable load-dangerous-libraries.
7444 2000-03-14  Gerd Moellmann  <gerd@gnu.org>
7446         * lisp.h (free_frame_xic) [HAVE_X_I18N]: Add missing semicolon.
7448         * xterm.c (xim_close_dpy, xim_initialize): Use X11R6-style XIM
7449         support functions only if HAVE_X11R6_XIM is defined.
7450         (xim_instantiate_callback): Define only if HAVE_X11R6_XIM.
7452         * s/sol2.h (INHIBIT_X11R6_XIM): Define.
7454         * xfns.c (X_I18N_INHIBITED): Don't define.
7455         (create_frame_xic): Remove conditional compilation on
7456         X_I18N_INHIBITED.
7457         (x_kill_gs_process, x_window): Use FRAME_X_VISUAL.
7459         * config.in (HAVE_X_I18N): Moved here from xterm.h.
7460         (HAVE_X11R6_XIM): Define.
7462         * xterm.h (HAVE_X_I18N) [HAVE_X11R6]: Moved to config.in.
7464         * xterm.c (x_term_init): Add support for X resource `synchronous'.
7465         If set, call XSynchronize.
7467 2000-03-13  Stefan Monnier  <monnier@cs.yale.edu>
7469         * regex.c: Declare a new type `re_char' used throughout the code
7470         for the string char type.  It's `const unsigned char' to match the
7471         rest of Emacs.  Consistently make sure all pointers to strings use
7472         it and make sure all pointers into the pattern use `unsigned
7473         char'.
7474         (re_match_2_internal): Use `PREFETCH+STRING_CHAR' instead of
7475         GET_CHAR_AFTER_2.  Also merge wordbound and notwordbound to reduce
7476         code duplication.
7478         * charset.h (GET_CHAR_AFTER_2): Remove.
7479         (GET_CHAR_BEFORE_2): Use unsigned chars, like everywhere else.
7481 2000-03-12  Ken Raeburn  <raeburn@gnu.org>
7483         * Makefile.in (temacs): Evaluate ALL_LDFLAGS into a temporary
7484         variable before the invocation of YMF_PASS_LDFLAGS, in case both
7485         of them try to use backquotes.
7487 2000-03-12  Dave Love  <fx@gnu.org>
7489         * unexelf.c: Restore changes of 1999-10-19.
7490         (unexec): Don't adjust bss for sbss type SHT_PROGBITS; otherwise
7491         fix its type and alignment; copy it from current process.
7493 2000-03-12  Gerd Moellmann  <gerd@gnu.org>
7495         * atimer.c (cancel_atimer): Break out of the loop as soon as timer
7496         has been found.  Fix bug not computing timer's predecessor.
7498         * fileio.c (Fread_file_name): Handle case that DIR contains a
7499         file name.
7501         * window.c (Fsave_window_excursion): Doc fix.
7503         * xfns.c (x_defined_color): Rewritten to use
7504         x_allocate_nearest_color.
7506 2000-03-12  Eli Zaretskii  <eliz@is.elta.co.il>
7508         * msdos.c (vga_installed): New function, code moved from
7509         dos_set_window_size.
7510         (Qbar, Qcursor_type, outside_cursor): New variables.
7511         (syms_of_msdos): Intern and staticpro them.
7512         (dos_ttraw) [__DJGPP__ >= 2, !HAVE_X_WINDOWS]: Save the cursor
7513         shape used outside Emacs when called for the first time.
7514         (dos_ttcooked) [__DJGPP__ >= 2, !HAVE_X_WINDOWS]: Restore the
7515         cursor shape used outside Emacs.
7516         (msdos_set_cursor_shape, IT_set_cursor_type): New functions.
7517         (IT_frame_up_to_date): Call IT_set_cursor_type, in case the cursor
7518         type has changed.
7519         (IT_set_frame_parameters): Call IT_set_cursor_type if the frame
7520         parameters specify the cursor.  Make qreverse a global
7521         variable (renamed to Qreverse).
7523 2000-03-09  Gerd Moellmann  <gerd@gnu.org>
7525         * fns.c (Fy_or_n_p): Cancel busy-cursor.
7527 2000-03-08  Stefan Monnier  <monnier@cs.yale.edu>
7529         This is a big redesign of failure-stack and register handling, prompted
7530         by bugs revealed when trying to add shy-groups.  Overall, what happened
7531         is that loops are now structured a little differently, groups can be
7532         shy and the code is a little simpler.
7534         * regex.h: Update the copyright.
7535         (RE_SHY_GROUPS): New value.
7536         (RE_UNMATCHED_RIGHT_PAREN_ORD): Renumber.
7537         (RE_SYNTAX_EMACS): Add RE_SHY_GROUPS.
7539         * regex.c (enum re_opcode_t): Remove jump_past_alt,
7540         maybe_pop_jump, push_dummy_failure and dumy_failure_jump.  Add
7541         on_failure_jump_(exclusive, loop and smart).  Also fix the comment
7542         for (start|stop)_memory since they now only take one argument (the
7543         second has becomes unnecessary).
7544         (print_partial_compiled_pattern): Adjust for changes in
7545         re_opcode_t.
7546         (print_compiled_pattern): Use %ld to printf long ints and flush to
7547         make debugging a little easier.
7548         (union fail_stack_elt): Make the integer unsigned.
7549         (struct fail_stack_type): Add a `frame' element.
7550         (INIT_FAIL_STACK): Init `frame' as well.
7551         (POP_PATTERN_OP): New macro for re_compile_fastmap.
7552         (DEBUG_PUSH, DEBUG_POP): Remove.
7553         (NUM_REG_ITEMS): Remove.
7554         (NUM_NONREG_ITEMS): Adjust.
7555         (FAILURE_PAT, FAILURE_STR, NEXT_FAILURE_HANDLE)
7556         (TOP_FAILURE_HANDLE): New macros for the cycle detection.
7557         (ENSURE_FAIL_STACK): New macro for PUSH_FAILURE_(REG|POINT).
7558         (PUSH_FAILURE_REG, POP_FAILURE_REG, CHECK_INFINITE_LOOP): New
7559         macros.
7560         (PUSH_FAILURE_POINT): Don't push registers any more.  The pattern
7561         address pushed is not the destination of the jump but the source
7562         of it instead.
7563         (NUM_FAILURE_ITEMS): Remove.
7564         (POP_FAILURE_POINT): Adapt to the new stack structure (i.e. pop
7565         registers before the actual failure point).  Don't hardcode any
7566         meaning for str==NULL anymore.
7567         (union register_info_type, REG_MATCH_NULL_STRING_P, IS_ACTIVE)
7568         (MATCHED_SOMETHING, EVER_MATCHED_SOMETHING, SET_REGS_MATCHED):
7569         Remove.
7570         (REG_UNSET_VALUE): Use NULL (why not?).
7571         (compile_range): Remove declaration since it doesn't exist.
7572         (struct compile_stack_elt_t): Remove inner_group_offset.
7573         (old_reg(start|end), reg_info, reg_dummy, reg_info_dummy): Remove.
7574         (regex_grow_registers): Remove dead code.
7575         (FIXUP_ALT_JUMP): New macro.
7576         (regex_compile): Add shy-groups Change loops to use
7577         on_failure_jump_smart&jump instead of
7578         on_failure_jump&maybe_pop_jump.  Change + loops to eliminate the
7579         initial (dummy_failure_)jump.  Remove c1_base (looks like unused
7580         variable to me).  Use `jump' instead of `jump_past_alt' and don't
7581         bother with push_dummy_failure in alternatives since it is now
7582         unnecessary.  Use FIXUP_ALT_JUMP.  Eliminate a useless `#ifdef
7583         emacs' for (re)allocating the stack.
7584         (re_compile_fastmap): Remove dead variables i and num_regs.  Exit
7585         from loop when bufp->can_be_null rather than jumping to `done'.
7586         Avoid jumping backwards so as to ensure termination.  Use
7587         PATTERN_STACK_EMPTY and POP_PATTERN_OP.  Improved handling of
7588         backreferences.  Remove dead code in handling of `anychar'.
7589         (skip_noops, mutually_exclusive_p): New functions taken from the
7590         handling of `maybe_pop_jump' in re_match_2_internal.  Slightly
7591         improve mutually_exclusive_p to handle ".+\n".
7592         (lowest_active_reg, highest_active_reg,
7593         NO_(LOWEST|HIGHEST)_ACTIVE_REG) Remove.
7594         (re_match_2_internal): Use %p instead of 0x%x when printf'ing
7595         ptrs.  Don't SET_REGS_MATCHED anymore.  Remove many dead
7596         variables.  Push register (in `start_memory') on the stack rather
7597         than storing it in old_reg(start|end).  Remove the cycle detection
7598         from `stop_memory', replaced by the use of on_failure_jump_loop
7599         for greedy loops.  Add code for the new on_failure_jump_<foo>.
7600         Remove ad-hoc code in `on_failure_jump' to push more registers in
7601         the case of a loop.  Take out code from `maybe_pop_jump' into
7602         separate functions and adapt it to the semantics of
7603         `on_failure_jump_smart'.  Remove jump_past_alt, dummy_failure_jump
7604         and push_dummy_failure.  Remove dummy_failure handling and
7605         handling of `failures to jump to on_failure_jump' (this last one
7606         was already dead code, it seems).
7607         (group_match_null_string_p, alt_match_null_string_p)
7608         (common_op_match_null_string_p): Remove.
7610 2000-03-08  Dave Love  <fx@gnu.org>
7612         * config.in: Don't depend on __STDC__ for volatile.
7613         Add POINTER_TYPE, PTR, PROTOTYPES.
7615         * hftctl.c, strftime.c: Use PROTOTYPES.
7616         * eval.c (find_handler_clause): Likewise.
7618         * mem-limits.h: Use POINTER_TYPE.
7620         * lisp.h (P_): Define based on PROTOTYPES, not __STDC__.
7621         (memory_warnings): Declare using POINTER_TYPE.
7623 2000-03-08  Gerd Moellmann  <gerd@gnu.org>
7625         * xfns.c (x_set_cursor_type): If ARG is nil, give frame no cursor.
7627         * xdisp.c (display_echo_area): Temporarily inhibit garbage
7628         collection.
7630         * xfns.c: Remove obsolete code in #if 0.
7631         (Fx_focus_frame): New function.
7633 2000-03-07  Miyashita Hisashi  <himi@bird.scphys.kyoto-u.ac.jp>
7635         * coding.c (coding_category_name): Add coding-category-utf-8,
7636         coding-category-utf-16-be, coding-category-utf-16-le.
7637         (UTF_8_1_OCTET_P, UTF_8_EXTRA_OCTET_P, UTF_8_2_OCTET_LEADING_P,
7638         UTF_8_3_OCTET_LEADING_P, UTF_8_4_OCTET_LEADING_P,
7639         UTF_8_5_OCTET_LEADING_P, UTF_8_6_OCTET_LEADING_P): New macros.
7640         (detect_coding_utf_8): New function.
7641         (UTF_16_INVALID_P, UTF_16_HIGH_SURROGATE_P
7642         UTF_16_LOW_SURROGATE_P): New macros.
7643         (detect_coding_utf_16): New function
7644         (detect_coding_mask): When priorities are specified, skip any
7645         categories that have `nil' coding-system.  Fix bug of returning
7646         wrong mask when PRIORITIES is specified and detect_coding_XXX()
7647         returns a mask not set in PRIORITIES.
7648         (detect_eol_type_in_2_octet_form): New function.
7649         (detect_eol): selects detect_eol_type_XXX to call according to
7650         cooding->category_idx.
7651         (detect_coding_system): Remove `nil' coding-system in the result.
7652         (Fupdate_coding_systems_internal): Update all coding-categories.
7654         * coding.h (CODING_CATEGORY_IDX_UTF_8,
7655         CODING_CATEGORY_IDX_UTF_16_BE, CODING_CATEGORY_IDX_UTF_16_LE): New
7656         macros.
7657         (CODING_CATEGORY_IDX_RAW_TEXT, CODING_CATEGORY_IDX_BINARY,
7658         CODING_CATEGORY_IDX_MAX): Adjusted for the above macros.
7659         CODING_CATEGORY_IDX_UTF_16_LE.
7660         (CODING_CATEGORY_MASK_UTF_8, CODING_CATEGORY_MASK_UTF_16_BE,
7661         CODING_CATEGORY_MASK_UTF_16_LE): New macros.
7662         (CODING_CATEGORY_MASK_ANY): Include the above macros.
7663         (CODING_CATEGORY_MASK_UTF_16_BE_LE): New macro.
7665 2000-03-07  Gerd Moellmann  <gerd@gnu.org>
7667         * doc.c (Fdocumentation_property): If value is not a string,
7668         and doesn't refer to etc/DOC, evaluate it to obtain a string.
7670         * xterm.c (x_connection_closed) [USE_X_TOOLKIT]: Don't try to
7671         close the display with XtCloseDisplay.  This caused a bus error
7672         on OpenWindows.
7674         * minibuf.c (Fminibuffer_complete): Move point to ZV when input is
7675         complete but not unique.
7677 2000-03-06  Gerd Moellmann  <gerd@gnu.org>
7679         * process.c (send_process): Remove local variable `procname' that
7680         might become invalid when a GC happens.  Instead, access the
7681         process name slot directly.
7683         * xfns.c (x_set_menu_bar_lines_1): Adjust window's orig_top and
7684         orig_height if set.
7686         * frame.c (set_menu_bar_lines_1): Adjust window's orig_top and
7687         orig_height if set.
7689 2000-03-06  Eli Zaretskii  <eliz@is.elta.co.il>
7691         * msdos.c (IT_note_mouse_highlight): Return immediately if frame's
7692         glyph matrices have been freed.
7694 2000-03-05  Gerd Moellmann  <gerd@gnu.org>
7696         * Makefile.in (tags): Include ../lwlib/TAGS in TAGS.
7697         (bootstrap-temacs): Set LC_ALL to C like for temacs.
7699         * xfns.c (QCdata): Moved to xdisp.c.
7701         * xdisp.c (QCdata): Moved here from xfns.c.
7702         (syms_of_xdisp): Initialize QCdata.
7704         * frame.h (FRAME_INTERNAL_BORDER_WIDTH) [!HAVE_X_WINDOWS]: Define.
7706         * window.c (coordinates_in_window): Use
7707         FRAME_INTERNAL_BORDER_WIDTH_SAFE instead of
7708         FRAME_INTERNAL_BORDER_WIDTH.
7710         * xdisp.c (try_window_id): Recompute unchanged information if
7711         it is obviously invalid.
7713         * xterm.c (x_term_init): Create a colormap if not using the
7714         default visual.
7716         * xterm.h (select_visual): Change prototype.
7718         * xfns.c (select_visual): Rewritten.  Recognize user-specified
7719         visual classes.
7720         (visual_classes): New variable.
7722 2000-03-04  Gerd Moellmann  <gerd@gnu.org>
7724         * xfns.c (x_defined_color, x_set_mouse_color, lookup_rgb_color)
7725         (lookup_pixel_color, x_laplace, x_build_heuristic_mask)
7726         (png_load): Access colormap of frame using FRAME_X_COLORMAP.
7727         (x_decode_color): Don't handle allocation of white and black
7728         specially.
7729         (x_window) [USE_X_TOOLKIT]: Set XtNvisual, XtNdepth, and
7730         XtNcolormap resources.
7731         (x_window) [!USE_X_TOOLKIT]: Pass colormap to XCreateWindow.
7732         (Fx_create_frame): Initialize color members of x_output structure.
7733         (xpm_load): Pass colormap to XPM lib.
7735         * xfaces.c (x_free_colors): Access colormap of frame using
7736         FRAME_X_COLORMAP.  Be paranoid about freeing black and white
7737         when default colormap is used.
7739         * xterm.c (x_term_init): Set Colormap member of x_display_info
7740         structure.  Copy colormap if resource `privateColormap' is
7741         specified (PseudoColor only).
7742         (x_setup_relief_color): Access colormap of frame using
7743         FRAME_X_COLORMAP.
7745         * xterm.h (struct x_display_info): Add Colormap member `cmap'.
7746         (FRAME_X_COLORMAP, FRAME_X_VISUAL): New macros.
7748 2000-03-04  Jason Rumney  <jasonr@gnu.org>
7750         * xfaces.c Change many FRAME_X... macros to FRAME_WINDOW... or
7751         other non-platform-specific equivalents.
7752         [WINDOWSNT]: Include w32term.h, fontset.h and define X
7753         specific functions and macros as their w32 equivalents where
7754         non-platform-specifics are not available.
7755         [HAVE_X_WINDOWS]: Change most of these to HAVE_WINDOW_SYSTEM.
7756         (x_create_gc, x_free_gc) [WINDOWSNT]: Add W32 versions.
7757         (clear_font_table) [WINDOWSNT]: Call w32_unload_font.
7758         (frame_update_line_height): Use macros to access f->output_data.
7759         (defined_color): Remove FIXME comments; fixed.
7760         (x_face_list_fonts, prepare_face_for_display): Put X specifics
7761         into #ifdef blocks. Add WINDOWSNT blocks.
7762         (Fx_list_fonts): Use macros for accessing font data.
7763         (set_lface_from_font_name): Different default fonts for X and
7764         WINDOWSNT.
7765         (font_scalable_p) [WINDOWSNT]: Treat wildcard XLFD_AVGWIDTH as
7766         scalable for backward compatibility.
7767         (realize_tty_face) [MSDOS]: Do the same for WINDOWSNT.
7768         (syms_of_xfaces) [WINDOWSNT]: Allow scalable fonts by default.
7770         * emacs.c (main) [HAVE_NTGUI]: Call syms_of_xfaces instead of
7771         syms_of_w32faces.
7773         * makefile.nt (w32faces.obj): Remove.
7774         (xfaces.obj): Add.
7776 2000-03-03  Jason Rumney  <jasonr@gnu.org>
7778         * keyboard.c (make_lispy_event): Call buffer_posn_from_coords with
7779         correct parameters.
7781 2000-03-03  Ken Raeburn  <raeburn@gnu.org>
7783         * unexelf.c (PT_LOAD, SHT_*, SHN_*) [__NetBSD__]: Only provide
7784         standard ELF definitions here if the system header does not.
7786 2000-03-03  Gerd Moellmann  <gerd@gnu.org>
7788         * xterm.c (PER_CHAR_METRIC): Removed.
7789         (x_per_char_metric_1, x_default_char): New functions.
7790         (x_per_char_metric): If font's default char is invalid, return
7791         metrics of a suitably chosen usable default char.
7792         (x_draw_glyph_string_foreground): If font has an invalid default
7793         char, replace occurrences of unprintable chars with a suitably
7794         chosen usable default char.
7796 2000-03-02  Gerd Moellmann  <gerd@gnu.org>
7798         * xterm.c (note_mouse_highlight): Return quickly if frame's
7799         glyph matrices have been freed.
7801         * dispnew.c (free_glyphs): Block input while freeing matrices.
7803         * xfns.c (x_clear_image, x_kill_gs_process): Use x_free_colors.
7805         * xterm.c (x_alloc_lighter_color, x_setup_relief_color): Use
7806         x_free_colors.
7808         * dispextern.h (x_free_colors): Add prototype.
7810         * xfaces.c (x_free_colors): New function.
7811         (unload_color, free_face_colors): Use it.
7813 2000-03-02  Eli Zaretskii  <eliz@is.elta.co.il>
7815         * msdos.h (FRAME_INTERNAL_BORDER_WIDTH): Define to zero.
7817         * window.c [MSDOS]: Include msdos.h.
7819 2000-03-02  Dave Love  <fx@gnu.org>
7821         * m/powerpcle.h, m/sparc.h: Don't set C_OPTIMIZE_SWITCH.
7823         * m/mips-siemens.h, m/news-r6.h, m/news-risc.h, m/tekxd88.h: Don't
7824         set C_OPTIMIZE_SWITCH for gcc.
7826 2000-03-02  Kenichi Handa  <handa@etl.go.jp>
7828         * coding.c (coding_save_composition): Be sure to allocate
7829         composition data area in coding even if there's no composition in
7830         the current run.
7832 2000-03-01  Jason Rumney  <jasonr@gnu.org>
7834         * w32term.c: Equivalent changes to those made to xterm.c on
7835         2000-02-25 and 2000-02-24.
7837         * w32fns.c: Equivalent changes to those made to xfns.c on
7838         2000-02-25 and 2000-02-21.
7840         * sysdep.c: [WINDOWSNT]: Use sys_read and sys_write to ensure
7841         correct line-end convention is followed.
7843         * w32menu.c [HAVE_BOXES]: Remove #undef.
7844         (single_keymap_panes): Remove code for simulating checkmarks.
7845         (single_menu_item): Remove notbuttons_ptr argument. Callers changed.
7846         Remove code for drawing simulated checkmarks.
7847         (w32_menu_show): make unibyte help string correctly.
7848         (add_menu_item): draw standard Windows checkmarks. Draw radio
7849         buttons as radio buttons if possible.
7851 2000-03-01  Gerd Moellmann  <gerd@gnu.org>
7853         * sysdep.c (start_of_text): Don't define this function for NetBSD
7854         with ELF.
7856         * m/pmax.h (START_FILES, CANNOT_DUMP) [__NetBSD__ || __OpenBSD__]:
7857         Don't define.
7858         (UNEXEC) [__NetBSD__ || __OpenBSD__]: Define to unexelf.o.
7859         (LINKER): Don't undef if __NetBSD__ is defined.
7861         * m/mips.h (LINKER) [__NetBSD__ || __OpenBSD__]: Don't define.
7863         * fileio.c [__NetBSD__]: Define `unix'.
7865         * xfns.c (start_busy_cursor): Allow floats for busy-cursor-delay.
7867 2000-02-29  Gerd Moellmann  <gerd@gnu.org>
7869         * atimer.c (start_atimer): Don't abort when timers are stopped.
7870         (append_atimer_lists): New function.
7871         (cancel_atimer, stop_other_atimers, run_all_atimers): Handle
7872         arbitrary lists of stopped and running atimers.
7874         * atimer.c (cancel_atimer): Handle canceling an atimer when
7875         some timers are stopped.
7877         * xfns.c (cancel_busy_cursor): Set busy_cursor_atimer to null
7878         after canceling it.
7880         * fns.c (maybe_resize_hash_table): Handle case of new size
7881         coming out as being the same as old size.
7883 2000-02-27  Jason Rumney  <jasonr@gnu.org>
7885         * makefile.nt: Add atimer.h to dependencies.
7886         * w32.c (init_environment): Set Vw32_num_mouse_buttons here.
7887         * w32console.c: Only disable window system features for dispextern.h
7888         (initialize_w32_display): Build a display info for the console.
7889         * w32faces.c (tty_defined_color): Apply xfaces.c change from 02-17.
7890         * w32fns.c (w32_wnd_proc) [WM_LBUTTON_DOWN, WM_RBUTTON_DOWN,
7891         WM_LBUTTON_UP, WM_RBUTTON_UP]: Do not treat 4 or more button mice
7892         as 2 button mice.
7893         * w32gui.h (struct W32FontStruct): Revert last change after change
7894         to xdisp.c.
7895         * w32menu.c (single_submenu): Set up help string.
7896         [!HAVE_MULTILINGUAL_MENU]: Don't overwrite item_name with descrip.
7897         (w32_dialog_show): Set up help string.
7898         * w32term.c (w32_display_info_for_display): Remove unused function.
7899         (w32_draw_bitmap): Use pre-built bitmaps.
7900         (w32_initialize_display_info): New function to initialize parts of
7901         display info that are common to both GUI and console frames.
7902         (w32_term_init): Use w32_initialize_display_info. Do not set
7903         Vw32_num_mouse_buttons here, as it is not called for console
7904         frames.  Build bitmaps for indicating truncated lines etc.
7905         (x_delete_display): Destroy pre-built bitmaps.
7906         * xdisp.c (handle_single_display_prop): Use FONT_HEIGHT macro.
7907         (echo_area_display): Change HAVE_X_WINDOWS to HAVE_WINDOW_SYSTEM.
7909 2000-02-27  Dave Love  <fx@gnu.org>
7911         * lisp.h: Add a bunch of prototypes.
7913 2000-02-26  Kenichi Handa  <handa@etl.go.jp>
7915         * keyboard.c (read_char): Set `usec' correctly.
7917 2000-02-25  Miyashita Hisashi  <himi@bird.scphys.kyoto-u.ac.jp>
7919         * ccl.c (ccl_driver) [CCL_MapMultiple]: When the mapped value is
7920         `lambda', set reg[RRR] to the map index.
7921         (ccl_driver) [CCL_MapSingle]: When the mapped value is found, set
7922         reg[RRR] to 0.  Otherwise, set it to -1.
7924 2000-02-25  Gerd Moellmann  <gerd@gnu.org>
7926         * emacs.c (main): Remove code snippet commented out with `//'.
7928 2000-02-25  Richard M. Stallman  <rms@gnu.org>
7930         * fileio.c (Ffile_symlink_p): If result starts with a `/'
7931         and contains a `:', prepend `/:'.
7933         * window.c (select_window_1): If selected_window is nil,
7934         don't "swap out" the buffer's point.
7935         (Fset_window_configuration): Set selected_window to nil
7936         before calling Fselect_window.
7937         (unshow_buffer): Don't set point in buffer from window's point
7938         if another more recently selected window also shows the buffer.
7940 2000-02-25  Gerd Moellmann  <gerd@gnu.org>
7942         * keyboard.c (recursive_edit_1): Cancel busy-cursor.
7944         * xfns.c (inhibit_busy_cursor, busy_count): Removed.
7945         (Fx_show_busy_cursor, Fx_hide_busy_cursor): Removed.
7946         (busy_cursor_atimer, busy_cursor_shown_p, Vbusy_cursor_delay): New
7947         variables.
7948         (DEFAULT_BUSY_CURSOR_DELAY): New define.
7949         (start_busy_cursor, cancel_busy_cursor, show_busy_cursor)
7950         (hide_busy_cursor): New functions.
7951         (syms_of_xfns): DEFVAR_LISP Vbusy_cursor_delay.
7953         * minibuf.c (read_minibuf): Cancel busy-cursor.
7955         * keyboard.c (command_loop_1): Call start_busy_cursor before
7956         Fcommand_execute and cancel_busy_cursor after it.
7957         (timer_check): Remove busy-cursor code.
7958         (Fread_key_sequence, Fread_key_sequence_vector): Start/cancel busy
7959         cursor timer.
7961         * process.c (wait_reading_process_input): Remove busy-cursor code.
7963         * eval.c (Fsignal): Call cancel_busy_cursor instead of
7964         Fx_hide_busy_cursor.
7966         * dispextern.h (Fx_show_busy_cursor, Fx_hide_busy_cursor):
7967         Remove prototyoes.
7968         (start_busy_cursor, cancel_busy_cursor): Add prototypes.
7970         * lisp.h (Fx_hide_busy_cursor): Remove prototype.
7972         * xterm.c (XTread_socket): Remove busy-cursor code.
7974         * dispnew.c (flush_stdout) [GLYPH_DEBUG]: New function.
7975         (build_frame_matrix_from_leaf_window): Put code handling
7976         glyph row's not being a slice of a frame row in #if 0.
7977         (sync_window_with_frame_matrix_rows): New function.
7978         (frame_row_to_window): New function.
7979         (mirror_line_dance): Handle copies between windows.
7981         * lread.c (Fload): Use `xfree' instead of `free'.
7982         (init_obarray): Use `xmalloc' instead of `malloc'.
7984         * window.c (Fset_window_buffer): Set WINDOW to the window
7985         after decoding.
7986         (coordinates_in_window): Take frame's internal border width
7987         into account.
7989 2000-02-24  Gerd Moellmann  <gerd@gnu.org>
7991         * xterm.c (x_display_and_set_cursor): Display cursor of
7992         non-selected windows depending on the setting of
7993         cursor_in_non_selected_windows.
7995         * xdisp.c (cursor_in_non_selected_windows): New variable.
7996         (syms_of_xdisp): DEFVAR_BOOL it.
7998 2000-02-23  Gerd Moellmann  <gerd@gnu.org>
8000         * data.c (Fstring_to_number): If number is greater than what
8001         fits into an integer, return a float.
8003         * eval.c (specbind): Remove references to
8004         keyword_symbols_constant_flag.
8006         * data.c (keyword_symbols_constant_flag): Removed.
8007         (Fmakunbound, set_internal, syms_of_data): Remove references to
8008         keyword_symbols_constant_flag.
8010         * bytecode.c (Fbyte_code): Remove keyword_symbols_constant_flag.
8012 2000-02-23  Kenichi Handa  <handa@etl.go.jp>
8014         * syntax.c (multibyte_syntax_as_symbol): New variable.
8015         (syms_of_syntax): Declare it as a Lisp variable.
8016         (SYNTAX_WITH_MULTIBYTE_CHECK): New macro.
8017         (scan_lists): If both sexpflag and multibyte_syntax_as_symbol are
8018         nonzero, treat all multibyte characters as symbol.
8019         (init_syntax_once): Give syntax `word' to all multibyte
8020         characters.
8022 2000-02-22  Eli Zaretskii  <eliz@is.elta.co.il>
8024         * frame.c (Fdelete_frame): Don't let echo_area_window remain on
8025         a deleted frame.
8027 2000-02-21  Gerd Moellmann  <gerd@gnu.org>
8029         * frame.c (Fmouse_position): GCPRO retval instead of x and y.
8031         * xfns.c (x_window_to_frame, x_any_window_to_frame)
8032         (x_non_menubar_window_to_frame): Check the busy-cursor window.
8034 2000-02-21  Dave Love  <fx@gnu.org>
8036         * frame.c (Vmouse_position_function): New variable.
8037         (Fmouse_position): Use it.
8038         (syms_of_frame): Install it.
8040         * charset.c (find_charset_in_str): Fix use of `c' instead of `c1'.
8042 2000-02-20  Gerd Moellmann  <gerd@gnu.org>
8044         * fileio.c (Finsert_file_contents): Unbind the binding of
8045         standard-output done by temp_output_buffer_setup.
8047         * eval.c (funcall_lambda): Don't bind Qmocklisp_arguments unless
8048         Vmocklisp_arguments is nil.  Inline Fcar and Fcdr.
8049         (specbind, unbind_to): Handle most common case of non-constant
8050         symbol with trivial value specially.
8052         * bytecode.c (Fbyte_code) <Bvarset>: Inline most common case.
8054 2000-02-20  Richard M. Stallman  <rms@gnu.org>
8056         * data.c (Fmake_variable_buffer_local): Doc fix.
8057         Init found_for_buffer to 0.
8058         (Fmake_variable_frame_local): If the variable has already
8059         been buffer-local, set the check_frame field.
8061 2000-02-20  Eli Zaretskii  <eliz@is.elta.co.il>
8063         * msdos.c (IT_write_glyphs): Allocate a larger screen_buf as data
8064         produced for CODING_MODE_LAST_BLOCK requires.
8066 2000-02-18  Dave Love  <fx@gnu.org>
8068         * keyboard.c (echo_keystrokes): Remove declaration.
8069         (Vecho_keystrokes) New variable.
8070         (read_char, record_menu_key, read_key_sequence): Use it to allow
8071         use of float value.
8072         (syms_of_keyboard): Change Vecho_keystrokes declaration.
8074         * lread.c: Undef feature selection macros before defining.
8076 2000-02-18  Gerd Moellmann  <gerd@gnu.org>
8078         * data.c (let_shadows_buffer_binding_p): Ignore specbindings
8079         for symbols other than the symbol in question.
8081 2000-02-17  Dave Love  <fx@gnu.org>
8083         * s/sol2.h (C_DEBUG_SWITCH): Define to allow optimization.
8085 2000-02-17  Gerd Moellmann  <gerd@gnu.org>
8087         * emacs.c (main): Use #if GC_MARK_STACK instead of #ifdef.
8089         * alloc.c (enum mem_type): Compile unconditionally.
8091 2000-02-17  Eli Zaretskii  <eliz@is.elta.co.il>
8093         * xfaces.c (tty_defined_color): Don't return faulire indication
8094         for unspecified-fg and unspecified-bg pseudo-colors.
8096 2000-02-17  Gerd Moellmann  <gerd@gnu.org>
8098         * alloc.c (mark_object): Don't mark symbol names in pure space.
8099         (gc_sweep): Don't unmark symbol names in pure space.
8101         * lisp.h (GC_USE_GCPROS_AS_BEFORE, GC_MAKE_GCPROS_NOOPS)
8102         (GC_MARK_STACK_CHECK_GCPROS, GC_USE_GCPROS_CHECK_ZOMBIES)
8103         [GC_MARK_STACK]: New defines.
8104         (GCPRO1, GCPRO2, GCPRO3, GCPRO4, GCPRO5, UNGCPRO)
8105         [GC_MARK_STACK == GC_MAKE_GCPROS_NOOPS]: Define as no-ops.
8107         * emacs.c (main) [GC_MARK_STACK]: Initialize stack_base.
8109         * buffer.c (Fget_buffer_create, Fmake_indirect_buffer): Use
8110         allocate_buffer instead of xmalloc.
8112         * alloc.c (toplevel): Include setjmp.h.
8113         (PURE_POINTER_P): New define.
8114         (enum mem_type) [GC_MARK_STACK]: New enumeration.
8115         (Vdead) [GC_MARK_STACK]: New variable.
8116         (lisp_malloc): Add parameter TYPE, call mem_insert if
8117         GC_MARK_STACK is defined.
8118         (allocate_buffer): New function.
8119         (lisp_free) [GC_MARK_STACK]: Call mem_delete.
8120         (free_float) [GC_MARK_STACK]: Set type to Vdead.
8121         (free_cons) [GC_MARK_STACK]: Set car to Vdead.
8122         (stack_base, mem_root, mem_z) [GC_MARK_STACK]: New variables.
8123         (MEM_NIL) [GC_MARK_STACK]: New define.
8124         (struct mem_node) [GC_MARK_STACK]: New structure.
8125         (mem_init, mem_find, mem_insert, mem_delete, mem_insert_fixup)
8126         (mem_delete_fixup, mem_rotate_left, mem_rotate_right)
8127         (live_string_p, live_cons_p, live_symbol_p, live_float_p)
8128         (live_misc_p, live_vector_p, live_buffer_p, mark_memory)
8129         (mark_stack) [GC_MARK_STACK]: New functions.
8130         (Fgarbage_collect) [GC_MARK_STACK]: Call mark_stack.
8131         (clear_marks): Removed.
8132         (gc_sweep): Set free conses' car, free floats' type, free
8133         symbols' function to Vdead.  Use lisp_free to free buffers.
8134         (init_alloc_once): Initialize Vdead.
8135         (survives_gc_p): Return non-zero for pure objects.
8137         * alloc.c: Add comments throughout the file.
8139         * atimer.c (stop_other_atimers): Don't call cancel_atimer because
8140         that unblocks alarms.
8142         * alloc.c, bytecode.c, data.c, dispnew.c, ecrt0.c, editfns.c,
8143         emacs.c, floatfns.c, fns.c, lread.c, print.c, config.in, lisp.h,
8144         Makefile.in: Remove `LISP_FLOAT_TYPE' and `standalone'.
8146         * frame.c (make_frame): Set frame initiallly to `garbaged'.
8148 2000-02-17  Kenichi Handa  <handa@etl.go.jp>
8150         * xdisp.c (decode_mode_spec_coding): Delete superfluous code to
8151         avoid infinite error signaling.  Allocate sufficient memory for
8152         eol_str in the case that eoltype is Lisp_Int.
8154 2000-02-17  Stefan Monnier  <monnier@cs.yale.edu>
8156         * syntax.c (Fforward_comment): Undo the previous change, since cc-mode
8157         depends on the previous behavior.
8159 2000-02-16  Gerd Moellmann  <gerd@gnu.org>
8161         * sysdep.c (vfork) [!HAVE_VFORK]: Removed.
8163 2000-02-15  Gerd Moellmann  <gerd@gnu.org>
8165         * s/freebsd.h (BROKEN_PTY_READ_AFTER_EAGAIN): Define.
8167         * process.c (send_process) [BROKEN_PTY_READ_AFTER_EAGAIN]:
8168         Workaround for FreeBSD bug.  Clear output queue after EAGAIN in
8169         write(2).
8171 2000-02-15  Richard M. Stallman  <rms@gnu.org>
8173         * data.c (set_internal): Don't make variable buffer-local
8174         if within a let-binding for the same buffer.
8175         (let_shadows_buffer_binding_p): New function.
8177         * eval.c (specbind): For buffer-local value,
8178         record the current buffer also.
8179         (unbind_to): Cope with that change.
8181 2000-02-15  Gerd Moellmann  <gerd@gnu.org>
8183         * window.c (Fsave_window_excursion): Doc fix.
8185 2000-02-15  Stefan Monnier  <monnier@cs.yale.edu>
8187         * syntax.c (back_comment): Make sure we only consider comment-starters
8188         of the relevant style and return -1 in case of a failure to find the
8189         beginning of the comment.
8190         (Fforward_comment): If back_comment fails, go back to the position just
8191         after the comment-end.
8192         (scan_lists): Add comment describing a very minor bug.
8194 2000-02-14  Stefan Monnier  <monnier@cs.yale.edu>
8196         * minibuf.c (Ftry_completion, Fall_completions): Add a reference to
8197         `completion-regexp-list' in the docstring.
8199 2000-02-14  Dave Love  <fx@gnu.org>
8201         * xfaces.c (tty_defined_color): Declare color_idx unsigned long.
8203 2000-02-14  Stefan Monnier  <monnier@cs.yale.edu>
8205         * regex.h (RE_SYNTAX_EMACS): Add RE_CHAR_CLASSES and RE_INTERVALS
8206         to Emacs' syntax.  Also fix the comment about set/not-set meanings
8207         since Emacs syntax is not the value 0 any more.
8208         * search.c (compile_pattern_1): Remove RE_CHAR_CLASSES from the syntax
8209         since it's now part of RE_SYNTAX_EMACS.
8211 2000-02-12  Dave Love  <fx@gnu.org>
8213         * frame.h (SELECTED_FRAME): Use NULL, not 0 to avoid warnings on
8214         Alpha.
8216 2000-02-12  Gerd Moellmann  <gerd@gnu.org>
8218         * xdisp.c (syms_of_xdisp): Doc fix for scroll-conservatively.
8220 2000-02-12  Dave Love  <fx@gnu.org>
8222         * s/aix3-2.h, s/osf-1.h: Define C_DEBUG_SWITCH for non-gcc.
8224         * s/ux4800.h, s/umips.h, s/umax.h, s/sol2.h, s/sco5.h, s/rtu.h:
8225         * s/ptx4.h, s/umax.h, s/dgux.h, s/bsd4-2.h, s/bsd4-3.h:
8226         * s/hpux.h: Don't define HAVE_VFORK.
8228         * s/gnu-linux.h: Don't define HAVE_VFORK or HAVE_SYS_SIGLIST.
8230         * s/nextstep.h: Don't define HAVE_ALLOCA.
8232         * config.in: Add vfork bits.
8234 2000-02-12  Gerd Moellmann  <gerd@gnu.org>
8236         * process.c (Fopen_network_stream) [POLL_FOR_INPUT]: Register
8237         unwind function to undo the effect of stopping atimers.
8239         * keyboard.c (bind_polling_period): Stop all timers except
8240         poll_timer.
8242         * atimer.c (stopped_atimers): New variable.
8243         (stop_other_atimers, run_all_atimers, unwind_stop_other_atimers):
8244         New functions.
8246         * atimer.h (stop_other_atimers, run_all_atimers)
8247         (unwind_stop_other_atimers): Add function prototypes.
8249         * s/hpux10.h (HAVE_XRMSETDATABASE): Define if not already defined.
8251 2000-02-11  Ken Raeburn  <raeburn@gnu.org>
8253         * Makefile.in (LIBX): Link in tiff library before jpeg, since tiff
8254         library may depend on jpeg.
8255         (atimer.o): Depends on atimer.c.
8257 2000-02-11  Kenichi Handa  <handa@etl.go.jp>
8259         * insdel.c (del_range_1): Call update_compositions.
8260         (del_range_both): Call update_compositions just once..
8262 2000-02-10  Dave Love  <fx@gnu.org>
8264         * xfns.c (create_frame_xic): Fix initialization of automatic
8265         aggregates for pcc.
8267 2000-02-09  Kenichi Handa  <handa@etl.go.jp>
8269         * ccl.c (CCL_MAKE_CHAR): New macro.
8270         (ccl_driver) <CCL_TranslateCharacter>: Check the validity of
8271         registers by CCL_MAKE_CHAR before calling translate_char.
8272         <CCL_TranslateCharacterConstTbl> Likewise.
8274 2000-02-08  Dave Love  <fx@gnu.org>
8276         * lread.c (__EXTENSIONS__): Define.
8278 2000-02-08  Gerd Moellmann  <gerd@gnu.org>
8280         * puresize.h (BASE_PURESIZE): Increase to 650000.
8282 2000-02-07  Eli Zaretskii  <eliz@is.elta.co.il>
8284         * msdos.c (XMenuActivate): Turn off the cursor after displaying
8285         the help message.
8287 2000-02-07  Eli Zaretskii <eliz@is.elta.co.il>
8289         * s/msdos.h (INTERNAL_TERMINAL): Add capabilities se, so, us, ue,
8290         md, mh, mb, mr, and me to the fake termcap entry.
8292 2000-02-06  Ken Raeburn  <raeburn@gnu.org>
8294         * sound.c (sound_cleanup): Don't call device close routine if the
8295         function pointer is null.
8297 2000-02-06  Andrew Innes  <andrewi@gnu.org>
8299         * dispextern.h: Change HAVE_X_WINDOWS to HAVE_WINDOW_SYSTEM,
8300         around image definitions and prototypes.
8301         (gamma_correct) [WINDOWSNT]: New prototype.
8303         * w32term.c (x_make_frame_visible): Replace call to
8304         input_poll_signal with poll_for_input.
8306         * window.c [WINDOWSNT]: Include w32term.h.
8308         * xdisp.c [WINDOWSNT]: Include w32term.h.
8310         * makefile.nt: Add dependencies on w32gui.h.
8311         (OBJ1): Include atimer.obj.
8312         ($(BLD)\atimer.obj): New dependency rule.
8314         * w32.c (sigmask): New function (does nothing).
8315         (sigunblock): Ditto.
8317         * frame.c [WINDOWSNT]: Include w32term.h.
8319         * w32gui.h (struct W32FontStruct): Add ascent and descent slots.
8321         * lread.c (syms_of_lread): Fix literal newlines.
8323         * emacs.c (USAGE): Split into USAGE1 and USAGE2, to work-around
8324         the string constant limit (2048 bytes) in MSVC.
8325         (main): Ditto.
8327 2000-02-05  INOUE Seiichiro <inoue@ainet.or.jp>
8329         * xterm.c (x_display_and_set_cursor) [HAVE_X_I18N]: Set pre-edit
8330         area.
8331         (x_display_cursor) [HAVE_X_I18N]: Don't set it here.
8332         (XTread_socket) [HAVE_X_I18N]: <KeyPress, KeyRelease>: Don't
8333         dispatch the event.
8335 2000-02-04  Dave Love  <fx@gnu.org>
8337         * fileio.c: Remove some unused vars.
8338         (_GNU_SOURCE): Define (for euidaccess).
8340         * lread.c (_XOPEN_SOURCE): Declare (for ftello).
8342         * minibuf.c (read_minibuf_noninteractive): Remove undeclared
8343         gcpro1, gcpro2.
8344         (read_minibuf): Deal with allow_props correctly.
8346 2000-02-03  Eli Zaretskii  <eliz@is.elta.co.il>
8348         * s/msdos.h (SYSTEM_PURESIZE_EXTRA): Enlarge to 60000.
8350 2000-02-03  Ken Raeburn  <raeburn@gnu.org>
8352         * search.c (compile_pattern): If a cache entry has a nil regexp,
8353         fill in that entry instead of clobbering a previously cached
8354         string regexp.
8356 2000-02-02  Ken Raeburn  <raeburn@gnu.org>
8358         * puresize.h (BASE_PURESIZE): Increase to 610000.
8360 2000-02-02  Gerd Moellmann  <gerd@gnu.org>
8362         * frame.c (Fframe_parameters): Add GCPRO because tty_color_name
8363         can GC.
8365 2000-02-02  Kenichi Handa  <handa@etl.go.jp>
8367         * ccl.c (ccl_driver) <CCL_WriteExprRegister>: Set jump_address
8368         instead of incrementing ic directly.
8369         <CCL_WriteExprConst> Likewise.
8370         <ccl_set_expr>: Set ic to jump_address.
8372         * fileio.c (e_write): Fix the handling of
8373         CODING_FINISH_INSUFFICIENT_SRC.
8375 2000-02-01  Dave Love  <fx@gnu.org>
8377         * editfns.c (Fpropertize): Doc fix.
8379         * process.c (Fstart_process): Doc fix.
8381         * eval.c: Fix various doc strings not to duplicate information
8382         from help-manyarg-func-alist.
8384         * window.c (Fset_window_margins): Don't make interactive.  Doc
8385         fix.
8387         * doc.c (Vhelp_manyarg_func_alist): New variable.
8388         (Fdocumentation): Use it.
8389         (syms_of_doc): Define it.
8391 2000-01-31  Gerd Moellmann  <gerd@gnu.org>
8393         * xterm.c (xim_open_dpy): Remove unused local variable.
8395         * emacs.c (USAGE): Use term `display options' instead of `X
8396         options'.
8398         * xdisp.c (Ftrace_to_stderr) [GLYPH_DEBUG]: New function.
8399         (syms_of_xdisp) [GLYPH_DEBUG]: Defsubr it.
8401         * fns.c (sweep_weak_table): New function.
8402         (sweep_weak_hash_tables): Use it.  Keep on marking until there
8403         is no more change.
8405 2000-01-30  Gerd Moellmann  <gerd@gnu.org>
8407         * xterm.c (x_delete_display): Update next_noop_dpyinfo to ensure
8408         that XTread_socket does not crash by trying to call XNoOp on a
8409         closed display.
8411 2000-01-30  Jason Rumney  <jasonr@gnu.org>
8413         * w32inevt.c (get_frame, w32_console_mouse_position, mouse_moved_to):
8414         Change selected_frame to SELECTED_FRAME ().
8415         (w32_console_mouse_position): Remove #ifndef MULE from around
8416         `insist' parameter.
8418         * makefile.nt: Remove dosfns.obj.
8420         * term.c (term_init) [WINDOWSNT]: Initialize TN_max_colors.
8422         * w32fns.c (w32_defined_color): Check for valid frame before
8423         applying gamma correction. Eliminate dependency on frame elsewhere.
8424         (w32_load_system_font): Switch FIXED_PITCH and VARIABLE_PITCH.
8425         (w32_to_x_font): Use resx and resy not height_in and width_in.
8426         (x_to_w32_font): Doc fix.
8427         (xlfd_strip_height): New function to strip and return font height.
8428         (w32_font_match): Compare height separately from rest of xlfd
8429         spec, using xlfd_strip_height.
8431         * w32term.c (w32_term_init): Swap resx and height_in, resy and
8432         width_in. Use w32_defined_color in place of defined_color.
8434         * w32faces.c: Merge more of DOS and X specifics in preparation for
8435         merge with xfaces.c.
8436         (defined_color): Remove FIXME comment.
8437         (tty_color_name): Provide w32-specific function.
8438         (realize_tty_face): Handle FACE_TTY_DEFAULT*_COLOR specially.
8440         * w32console.c (turn_on_face, turn_off_face): Removed.
8441         (w32_face_attributes): New function.
8442         (Global_variables): Reduce scope where possible.
8443         (clear_frame, ins_del_lines, scroll_line): Use char_attr_normal as
8444         fill attribute.
8445         (hl_mode): Don't modify text attributes.
8446         (write_glyphs): Don't do anything if len <= 0. Use
8447         w32_face_attributes to get attributes for drawing. Write
8448         terminating codes using char_attr_normal.
8449         (reset_terminal_modes, set_terminal_modes): Turn off highlight.
8450         (update_begin, update_end): Likewise.
8451         (vga_stdcolor_name): New function.
8452         (initialize_w32_display): Remove char_attr_reverse and char_attr.
8453         (Fset_screen_color): Remove char_attr_reverse.
8455 2000-01-29  Gerd Moellmann  <gerd@gnu.org>
8457         * xfns.c (xic_set_preeditarea): Take window parameter and
8458         window-relative pixel-positions.
8460         * xterm.c (x_display_cursor): Set XIC pre-edit area only if window
8461         is its frame's selected window.
8462         (xim_instantiate_callback): Likewise.
8464         * xfns.c (x_create_im): Removed.
8465         (DEFAULT_STYLE, DEFAULT_FONT): Removed.
8466         (supported_xim_styles): Renamed from supported_styles.
8467         (best_xim_style): Renamed from best_style.
8468         (create_frame_xic): Renamed from xic_create_frame.
8469         (free_frame_xic): Renamed from xic_destroy_frame.
8471 2000-01-29  INOUE Seiichiro <inoue@ainet.or.jp>
8473         * xterm.c (XTread_socket) [HAVE_X_I18N]: If event is for none of
8474         our frames, call XFilterEvent with 2nd parameter `None'.
8475         (XTread_socket) <KeyPress> [HAVE_X_I18N]: Handle XmbLookupString
8476         returning XBufferOverflow.
8477         (XTread_socket) <ConfigureNotify> [HAVE_X_I18N]: Set XIC status
8478         area.
8479         (x_display_cursor) [HAVE_X_I18N]: Set XIC pre-edit area.
8480         (x_new_fontset) [HAVE_X_I18N]: Create XIC status area fontset.
8481         (xim_destroy_callback, xim_open_dpy, xim_instantiate_callback)
8482         (xim_initialize, xim_close)
8483         [HAVE_X_I18N && HAVE_X11R6]: New functions.
8484         (x_destroy_window) [HAVE_X_I18N]:  Call xic_destroy_frame.
8485         (x_term_init) [HAVE_X_I18N]: Call xim_initialize.
8486         (x_delete_display) [HAVE_X_I18N]: Call xim_close.
8488         * xterm.h (struct x_display_info) [HAVE_X_I18N]: Add members `xim'
8489         and `xim_styles'.
8490         (struct x_output) [HAVE_X_I18N]: Remove member `xim', add
8491         `xic_style' and `xic_xfs'.
8492         (FRAME_MENUBAR_HEIGHT, FRAME_X_XIM, FRAME_X_XIM_STYLES)
8493         (FRAME_XIC_STYLE, FRAME_XIC_FONTSET): New macros.
8494         (FRAME_XIM): Removed.
8496         * xfns.c (supported_styles): New variable.
8497         (DEFAULT_STYLE, DEFAULT_FONT): New macros
8498         (xic_create_xfontset, best_style, xic_create_frame)
8499         (xic_destroy_frame, xic_set_preeditarea, xic_set_statusarea)
8500         (xic_set_xfontset): New functions.
8502 2000-01-28  Dave Love  <fx@gnu.org>
8504         * s/irix6-5.h: Revert last change after change to irix5-0.h.
8506         * m/iris4d.h (C_SWITCH_MACHINE): Don't use -G0.
8508 2000-01-28  Gerd Moellmann  <gerd@gnu.org>
8510         * buffer.c (Fother_buffer): Don't call Fset_buffer_major_mode
8511         for *scratch* if it already existed.
8513         * emacs.c (USAGE): New macro.
8514         (main): Use it to display usage information.
8516 2000-01-27  Eli Zaretskii  <eliz@is.elta.co.il>
8518         Support for the menu-help feature:
8520         * msdos.h: Change prototypes of XMenuAddSelection and
8521         XMenuActivate.
8523         * msdos.c (IT_clear_end_of_line): Print the extent of the cleared
8524         part of the line to the termscript file.
8525         (IT_clear_to_end): Clear the entire line, not just its beginning.
8526         (menu_help_message, prev_menu_help_message): New variables.
8527         (IT_menu_make_room): Make room for the help_text member.
8528         (IT_menu_display): New argument disp_help; all callers changed.
8529         If disp_help is non-zero, store the help text of the active menu
8530         item in menu_help_message.
8531         (XMenuAddPane): Initialize the help_text member to NULL.
8532         (XMenuAddSelection): New argument help_text.  Store it in the
8533         XMenu structure.
8534         (XMenuActivate): New argument help_callback.  If the value of
8535         menu_help_message has changed since the last time, display the
8536         menu help message text while waiting for the mouse to move.  Clear
8537         the echo area before exiting.
8538         (XMenuDestroy): Free the help_text member.
8540 2000-01-27  Gerd Moellmann  <gerd@gnu.org>
8542         * xmenu.c (xmenu_show) [!USE_X_TOOLKIT]: Pass help to
8543         XMenuAddSelection.  Pass help callback to XMenuActivate.
8544         (menu_help_callback) [!USE_X_TOOLKIT]: New function.
8546 2000-01-27  Eli Zaretskii  <eliz@is.elta.co.il>
8548         * atimer.c (start_atimer) [!HAVE_SETITIMER]: Use EMACS_SET_SECS
8549         and EMACS_SET_USECS.
8551 2000-01-26  Dave Love  <fx@gnu.org>
8553         * editfns.c (Fchar_after, Fchar_before): Doc fix.
8555         * bytecode.c (Fbyte_code): Use {BEFORE,AFTER}_POTENTIAL_GC where
8556         an error may be signalled.
8558 2000-01-26  Gerd Moellmann  <gerd@gnu.org>
8560         * s/irix6-5.h [__GNUC__ && __GNUC_MINOR__ >= 95]: Undef
8561         LD_SWITCH_SYSTEM inherited from irix5-0.h.
8563         * bytecode.c (Fbyte_code) [BYTE_CODE_SAFE]: Fix typo.
8565 2000-01-25  Gerd Moellmann  <gerd@gnu.org>
8567         * charset.c (Fstring): If there is a multibyte char among
8568         the args, always return a multibyte string.
8570 2000-01-25  Gerd Moellmann  <gerd@gnu.org>
8572         * sysdep.c (sys_select): Turn atimers off and on instead of
8573         recording and restoring old alarm handler
8575         * process.c (toplevel): Include atimer.h.
8576         (create_process_1): Rewritten.
8577         (create_process): Use atimers instead of alarm.
8578         (wait_reading_process_input) [hpux]: Turn atimers off instead
8579         of turning off SIGALRM.
8580         (wait_reading_process_input): Turn off atimers instead off
8581         calling stop_polling.
8583         * emacs.c (main): Call init_atimer.
8585         * keyboard.c (toplevel): Include systime.h and atimer.h.
8586         (polling_for_input): Removed because unused.
8587         (input_poll_signal) [POLL_FOR_INPUT]: Removed.
8588         (poll_timer): New variable.
8589         (poll_for_input, poll_for_input_1): New functions.
8590         (start_polling, stop_polling): Rewritten.
8592         * keyboard.h (polling_for_input): Removed.
8594         * atimer.h, atimer.c: New files.
8596         * Makefile.in (obj): Add atimer.o.
8597         (atimer.o): New target.
8599         * blockinput.h (pending_atimers): Add extern declaration.
8600         (UNBLOCK_INPUT): Rewritten.  Handle pending atimers.
8602         * lisp.h (popup_activated_flag): Add extern declaration.
8604         * xmenu.c (popup_activated_flag): Make externally visible.
8605         (popup_activate_callback) [USE_MOTIF]: Increment
8606         popup_activated_flag.
8607         (popup_deactivate_callback) [USE_MOTIF]: Decrement it.
8609         * xterm.c (toplevel): Include atimer.h.
8610         (toolkit_scroll_bar_interaction): New variable.
8611         (Fxt_process_timeouts): Removed.
8612         (x_process_timeouts): New function.
8613         (xt_action_hook): Clear toolkit_scroll_bar_interaction.
8614         (x_send_scroll_bar_event): Set toolkit_scroll_bar_interaction.
8615         (x_make_frame_visible): Call poll_for_input_1 instead of
8616         input_poll_signal.  Don't call alarm.
8617         (x_initialize): Install timer calling x_process_timeouts.
8619 2000-01-24  Dave Love  <fx@gnu.org>
8621         * s/irix5-0.h: Don't set LD_SWITCH_SYSTEM -- we use unexelf now.
8622         Don't use -cckr -- apparently not now necessary.
8624 2000-01-24  Eli Zaretskii  <eliz@is.elta.co.il>
8626         * msdos.c (IT_menu_display): Truncate long menu lines at the right
8627         screen boundary.
8629 2000-01-23  Jason Rumney  <jasonr@gnu.org>
8631         * w32fns.c (w32_defined_color): Apply gamma correction before
8632         trying to map to the palette.
8633         (w32_wnd_proc) [WM_ERASE_BACKGROUND]: Pass device context of frame
8634         to w32_clear_rect.
8636         * w32term.c (w32_fill_rect): Do not try to deal with NULL hdc
8637         here. Callers changed to always pass real device context.
8638         (w32_draw_bitmap): Likewise.
8639         (w32_get_glyph_overhangs): Likewise.
8640         (w32_draw_box_rect): Make use of s->hdc rather than getting a new
8641         one.
8642         (w32_set_vertical_scroll_bar): Pass correct HWND parameters to
8643         pfnSetScrollInfo and SetScrollRange.
8644         (x_get_char_face_and_encoding): Don't turn iso8859-1 characters
8645         back into MULE characters after decoding them.
8646         (x_get_glyph_face_and_encoding): Likewise.
8647         (w32_per_char_metric): Use GetCharExtentPoint32W as fallback when
8648         GetCharABCWidthsW fails, since this is defined on Windows 9x.
8649         (x_produce_glyphs): Calculate per char metrics for a character
8650         that we know exists in default font when font_not_found_p is true.
8652 2000-01-22  Jason Rumney <jasonr@gnu.org>
8654         * makefile.nt (intervals.obj, composite.obj): New modules.
8655         (composite.h): Added as dependency where appropriate.
8657         * w32gui.h (XGCValue): New struct for emulating X GCs.
8659         * w32term.h (XCharStruct): New struct for emulating X.
8661         * w32console.c (turn_on_face, turn_off_face): New functions.
8662         (change_line_highlight): New prototype for new redisplay.
8663         (write_glyphs): Support multibyte text. Support faces.
8665         * w32faces.c: Complete rewrite for new redisplay based on new
8666         xfaces.c.
8668         * w32fns.c: Use SELECTED_FRAME macro in place of selected_frame
8669         throughout. struct frame * in place of FRAME_PTR.
8670         Skeleton support for images, toolbars, tooltips from xfns.c.
8671         (Fx_create_frame): Use system default for default scroll bar
8672         width.
8673         (w32_get_arg): Renamed from x_get_arg.
8674         (Fx_file_dialog): New function.
8675         (w32_list_fonts): Check cache before asking system.
8676         (Vw32_enable_synthesized_fonts): New variable.
8677         (Vw32_enable_italics): Obsolete, removed.
8679         * w32inevt.c (get_frame, w32_console_mouse_position, mouse_moved_to):
8680         Use SELECTED_FRAME macro.
8682         * w32menu.c: Add skeleton support for help strings on menus.
8683         (add_menu_item): Native checkbox and radio support added, but not
8684         yet enabled due to bugs.
8685         (push_menu_item): Add parameters type, selection and help.
8686         Callers updated.
8687         Formatting changes to reduce unnecessary diffs with xmenu.c.
8689         * w32select.c (Fw32_set_clipboard_data): Update call to
8690         find_charset_in_str.
8692         * w32term.c: Complete rewrite for new redisplay based on new
8693         xterm.c with necessary sections merged back in from old w32term.c.
8695 2000-01-21  Richard M. Stallman  <rms@gnu.org>
8697         * data.c (set_internal): Further fix in same criterion.
8699 2000-01-20  Richard M. Stallman  <rms@gnu.org>
8701         * data.c (set_internal): Fix the criteria for whether
8702         to swap out the old cached binding.
8704 2000-01-19  Dave Love  <fx@gnu.org>
8706         * lread.c: (syms_of_lread) [user-init-file]: Doc change.
8708 2000-01-18  Kenichi Handa  <handa@etl.go.jp>
8710         * regex.c (re_compile_fastmap): While checking a range table for
8711         `charset', skip flag bits for a character class correctly.
8713 2000-01-17  Gerd Moellmann  <gerd@gnu.org>
8715         * m/news-risc.h (LD_SWITCH_MACHINE): Define differently for GCC.
8717         * xfns.c (x_window): Call lw_create_widget with new parameter
8718         list.
8720         * widget.c (EmacsFrameSetCharSize): Change size of children first
8721         because of problems with main window geometry management under
8722         Lesstif.
8724         * xmenu.c (enum menu_item_idx): New enumeration replacing defines
8725         MENU_ITEMS_ITEM_.*.
8726         (MENU_ITEMS_ITEM_HELP): New enumerator.
8727         (push_menu_item): Add parameter HELP.  Record help in menu_items.
8728         (single_menu_item, single_submenu, list_of_items): Call
8729         push_menu_item with new parameter.
8730         (single_submenu): Set help string in widget value.
8731         (menu_highlight_callback): New function.
8732         (set_frame_menubar): Call lw_create_widget with new
8733         parameter list.
8734         (xmenu_show, xdialog_show): Ditto.
8736 2000-01-13  Gerd Moellmann  <gerd@gnu.org>
8738         * sound.c (Fplay_sound): Improve doc string.
8740 2000-01-11  Richard M. Stallman  <rms@gnu.org>
8742         * lisp.h (set_internal): Enter the new arg.
8744         * eval.c (specbind): Record buffer-local variables specially,
8745         indicating which buffer's binding was saved.
8746         (unbind_to): Restore buffer-local variables specially
8747         in the proper buffer.
8749         * data.c (set_internal): New arg BUF.
8751         * eval.c (specbind, unbind_to): Pass new arg to set_internal.
8752         * data.c (Fset): Pass new arg to set_internal.
8753         * bytecode.c (Fbyte_code): Pass new arg to set_internal.
8755 2000-01-11  Gerd Moellmann  <gerd@gnu.org>
8757         * .gdbinit: Adapt to new strings.  Add xbacktrace, xreload,
8758         xprintsym.
8760 2000-01-11  Richard M. Stallman  <rms@gnu.org>
8762         * minibuf.c (Ftry_completion): Doc fix.
8764 2000-01-11  Gerd Moellmann  <gerd@gnu.org>
8766         * keyboard.c (Fclear_this_command_keys): Clear recent_keys
8767         vector, too.
8769 2000-01-11  Andreas Schwab  <schwab@suse.de>
8771         * coding.c (code_convert_region): Initialize total_skip.
8773 2000-01-08  Dave Love  <fx@gnu.org>
8775         * eval.c (Fuser_variable_p): Check customizability too.
8777 2000-01-07  Gerd Moellmann  <gerd@gnu.org>
8779         * minibuf.c (Fcompleting_read): Doc fix.
8781 2000-01-05  Gerd Moellmann  <gerd@gnu.org>
8783         * s/freebsd.h (C_SWITCH_SYSTEM): Add -I /usr/local/include and
8784         -L /usr/local/lib.
8786         * xfns.c (x_create_im): New function to set IM and IC of a frame.
8787         Check that input style is supported before trying to create an
8788         IC for it.
8789         (x_window): Call x_create_im.
8791 2000-01-04  Gerd Moellmann  <gerd@gnu.org>
8793         * xfns.c (current_gif_memory_src): New variable.
8794         (gif_load): Record the address of the current memory source
8795         in current_gif_memory_src.
8796         (gif_read_from_memory): Use current_gif_memory_src.
8798         * systime.h (EMACS_GET_TIME, EMACS_ADD_TIME, EMACS_SUB_TIME): Give
8799         macros statement form.
8801         * sound.c (struct sound): Renamed from struct sound_file.
8802         (struct sound): Add members `data' and `header_size'.
8803         (enum sound_attr): Add SOUND_DATA.
8804         (current_sound, current_sound_device): Variables renamed from
8805         sound_file and sound_device.
8806         (parse_sound): Parse :data.
8807         (parse_sound): Handle sound data in strings.
8808         (find_sound_type): Function renamed from find_sound_file_type.
8809         (wav_init, au_init): Fail if sound's header_size is smaller than
8810         needed header size.
8811         (wav_play, au_play): Play sounds from string data.
8813         * puresize.h (BASE_PURE_SIZE): Increase to 600000.
8815         * lisp.h: Add prototype for allocate_string_data.
8817         * alloc.c (Fgarbage_collect): Return number of live and free
8818         strings.
8820         * alloc.c (mark_buffer): Remove code in #if 0.
8821         (gc_sweep): Ditto.
8822         (UNMARK_BALANCE_INTERVALS): Give the macro statement form.
8823         (strings_consed): New variable.
8824         (allocate_string): Set it.
8825         (syms_of_alloc): Add DEFVAR_INT for strings_consed.
8826         (Fmemory_use_counts): Return strings_consed.  Use Flist.
8828         * alloc.c: General cleanup in comments etc.  Remove conditional
8829         compilation for `standalone'.
8831         * lisp.h (struct Lisp_String): Make DATA member `unsigned char *'.
8833         * alloc.c (MARK_STRING, UNMARK_STRING, STRING_MARKED_P):
8834         (GC_STRING_BYTES, GC_STRING_CHARS): New macros.
8835         (DONT_COPY_FLAG): Removed.
8836         (SBLOCK_SIZE, LARGE_STRING_BYTES): New macros.
8837         (struct sdata, struct sblock): New
8838         (struct string_block): Rewritten.
8839         (STRINGS_IN_STRING_BLOCK): New macro.
8840         (oldest_sblock, current_sblock, total_strings, total_free_strings)
8841         (large_sblocks, string_blocks, string_free_list): New variables.
8842         (NEXT_FREE_LISP_STRING, SDATA_OF_STRING, SDATA_SIZE): New macros.
8843         (init_strings): Rewritten.
8844         (allocate_string, allocate_string_data, compact_small_strings)
8845         (free_large_strings, sweep_strings): New functions.
8846         (STRING_BLOCK_SIZE, STRING_BLOCK_OUTSIZE)
8847         (struct string_block_head, current_string_block)
8848         (first_string_block, large_string_blocks, STRING_FULLSIZE)
8849         (STRING_PAD): Removed.
8850         (make_uninit_multibyte_string, make_pure_string): Rewritten.
8851         (Fgarbage_collect): Don't set mark bit in large strings.
8852         (mark_object): Mark strings differently.  Mark symbol names
8853         differently.
8854         (survives_gc_p): Test marked strings differently.
8855         (gc_sweep): Sweep strings differently, unmark strings in
8856         symbol names.
8857         (compact_strings): Removed.
8859 2000-01-04  Eli Zaretskii  <eliz@is.elta.co.il>
8861         * xfaces.c (syms_of_xfaces): defsubr Scolor_gray_p and
8862         Scolor_supported_p even if HAVE_X_WINDOWS is not defined.
8864 2000-01-04  Kenichi Handa  <handa@etl.go.jp>
8866         * fileio.c (Finsert_file_contents): Signal error if visiting file
8867         in a non-empty buffer.
8869         * term.c (encode_terminal_code): Fix the previous change.
8871 2000-01-03  Gerd Moellmann  <gerd@gnu.org>
8873         * xfaces.c (syms_of_xfaces): Change Sface_color_gray_p to
8874         Scolor_gray_p, Sface_color_supported_p to Scolor_supported_p.
8876         * s/hpux9.h (NO_EDITRES): Define even if HAVE_LIBXMU.
8878 2000-01-03  Eli Zaretskii  <eliz@is.elta.co.il>
8880         * xdisp.c (handle_single_display_prop) [HAVE_WINDOW_SYSTEM]: No
8881         need to test for MSDOS frames.
8883 2000-01-03  Eli Zaretskii  <eliz@is.elta.co.il>
8885         * dosfns.c (unspecified_colors): Remove.
8886         (msdos_stdcolor_idx): Use global variables unspecified_fg and
8887         unspecified_bg.
8888         (msdos_stdcolor_name): Return strings for unspecified fore- and
8889         back-ground colors.
8891         * xfaces.c (Qunspecified_fg, Qunspecified_bg): Remove.
8892         (syms_of_xfaces): Remove their staticpro's.
8893         (tty_color_name): Return Lisp strings for unspecified fore- and
8894         back-ground colors.
8895         (Finternal_set_lisp_face_attribute): Remove the special treatment
8896         for Qunspecified_{f,b}g.
8897         (realize_default_face): Replace Qunspecified_{f,b}g with a Lisp
8898         string.
8900 2000-01-03  Gerd Moellmann  <gerd@gnu.org>
8902         * xdisp.c (reseat_at_next_visible_line_start): Position before
8903         newline only if ending up on a newline.
8904         (next_element_from_ellipsis): Return success.  Handle case of
8905         displaying no ellipsis.  Fix case of ellipsis defined in display
8906         table.
8907         (next_element_from_buffer): Return 0 if next_element_from_ellipsis
8908         returns 0.
8910 2000-01-03  Eli Zaretskii  <eliz@is.elta.co.il>
8912         * xfaces.c (Fcolor_gray_p): Renamed from face-color-gray-p.
8913         (Fcolor_supported_p): Renamed from face-color-supported-p.
8915 2000-01-02  Eli Zaretskii  <eliz@is.elta.co.il>
8917         * xfaces.c (tty_defined_color): Pass frame to tty-color-desc.  The
8918         list of colors renamed to tty-defined-color-alist.
8919         (tty_color_name): Pass the frame to tty-color-by-index.
8920         (realize_tty_face): tty-color-alist is now a function which
8921         accepts the frame as argument.
8923         * term.c (Ftty_display_color_p): Accept an optional argument
8924         FRAME.
8926 2000-01-02  Eli Zaretskii  <eliz@is.elta.co.il>
8928         * term.c (insert_glyphs): Pass glyph, not &glyph, to
8929         encode_terminal_code.
8931 2000-01-02  Eli Zaretskii  <eliz@is.elta.co.il>
8933         * dispnew.c (mode_line_string): Support termcap frames as well.
8935 2000-01-01  Gerd Moellmann  <gerd@gnu.org>
8937         * syntax.c (Fforward_word): Undo previous change.
8939         * editfns.c (Fconstrain_to_field): Don't constrain if
8940         inhibit-field-text-motion is non-nil.
8941         (Fline_beginning_position): Undo previous change.
8942         (Fline_end_position): Ditto.
8944         * syntax.c (Fforward_word): Notice field boundaries only if
8945         inhibit-field-text-motion is nil.
8947         * lisp.h: Add extern declaration for Vinhibit_field_text_motion.
8949         * editfns.c (Vinhibit_field_text_motion): New variable.
8950         (inhibit-field-text-motion): New DEFVAR_LISP.
8951         (Fline_beginning_position, Fline_end_position): Notice field
8952         boundaries only if inhibit-field-text-motion is nil.
8954         * xfns.c (x_create_x_image_and_pixmap): Remove parameter FILE.
8955         All calls adjusted.
8956         (x_build_heuristic_mask): Likewise.
8957         (xbm_load_image_from_file): Change error output.
8958         (xbm_load, xpm_load, pbm_load, png_load, jpeg_load, tiff_load)
8959         (gif_load, gs_load, x_kill_gs_process): Ditto.
8961         * xfns.c (gif_load): Avoid sign extension and thus out of bounds
8962         color indices when accessing raster pixels.
8963         (gif_image_p, png_image_p, jpeg_image_p, tiff_image_p): Allow only
8964         one of :file or :data.
8965         (enum pbm_keyword_index): Add PBM_DATA.
8966         (pbm_format): Add :data.
8967         (pbm_image_p): Allow either :file or :data.
8968         (pbm_read_file): New function.
8969         (pbm_scan_number): Rewritten to read from string.
8970         (pbm_load): Support :data.
8972 See ChangeLog.8 for earlier changes.
8974 ;; Local Variables:
8975 ;; coding: iso-2022-7bit
8976 ;; End: