(texinfo-block-default): New var.
[emacs.git] / src / ChangeLog.8
blobe3e24c1e06dd36eb0e447dfc63a46c0187263454
1 1999-12-31  Gerd Moellmann  <gerd@gnu.org>
3         * xfns.c: New image functions adapted to Emacs conventions.
4         (png_load, tiff_load, jpeg_load, gif_load): Always GCPRO local
5         variable `file'.
7 1999-12-31  William M. Perry  <wmperry@aventail.com>
9         * xfns.c (jpeg_format): Added the :data keyword
10         (jpeg_image_p): JPEG is valid with :file _or_ :data
11         (jpeg_memory_src): Defined new JPEG image source to read from a
12         memory buffer.
13         (jpeg_load): Pay attention to the :data keyword if specified.
14         Instantiates a jpeg_memory_src instead of jpeg_stdio_src if
15         found.
16         (png_format): Added the :data keyword
17         (png_image_p): PNG is valid with :file _or_ :data
18         (png_read_from_memory): New PNG read function to read from a
19         memory buffer.
20         (png_load): Pay attention to the :data keyword if specified.  Uses
21         png_set_read_fn() instead of png_init_io() if specified.
22         (tiff_format): Added the :data keyword for TIFF images.
23         (tiff_image_p): TIFF is valid with :file _or_ :data
24         (tiff_read_from_memory): Defined new TIFF I/O functions to read
25         from a memory buffer.
26         (tiff_load): Pay attention to the :data keyword if specified.
27         Uses TIFFClientOpen() instead of TIFFOpen() if specified.
28         (gif_format): Added the :data keyword
29         (gif_image_p): GIF is valid with :file _or_ :data
30         (gif_read_from_memory): New GIF input function to read from a
31         memory buffer.
32         (gif_load): Pay attention to the :data keyword.  Uses DGifOpen()
33         instead of DGifOpenFileName() if specified.
35 1999-12-31  Gerd Moellmann  <gerd@gnu.org>
37         * xdisp.c (next_element_from_buffer): Change assertion at the end
38         because it doesn't hold when there's an overlay string at the end
39         from which we deliver an image.
41 1999-12-30  Eli Zaretskii  <eliz@is.elta.co.il>
43         * msdos.c (IT_update_begin): Don't dereference members of struct
44         window for deleted windows.
46 1999-12-30  Gerd Moellmann  <gerd@gnu.org>
48         * abbrev.c (Fexpand_abbrev): If expanding an abbrev which has only
49         a hook, and the hook has a non-nil `no-self-insert' property, let
50         the return value of the hook specify whether an expansion took
51         place.  If it returns nil, no expansion has been performed.
53         * xterm.c (x_make_frame_visible): Wait for frame becoming visible
54         differently.
56 1999-12-30  Eli Zaretskii  <eliz@is.elta.co.il>
58         * msdos.c (IT_write_glyphs): Track last changes to struct glyph.
60 1999-12-29  Eli Zaretskii  <eliz@is.elta.co.il>
62         * dispnew.c (mode_line_string): Support MS-DOS frames.
64 1999-12-29  Gerd Moellmann  <gerd@gnu.org>
66         * eval.c (syms_of_eval): Initialize debugger_may_continue.
68 1999-12-29  Kenichi Handa  <handa@etl.go.jp>
70         * process.c (read_process_output): Fix the args CHARPOS and LENINS
71         to signal_after_change.
73 1999-12-28  Eli Zaretskii  <eliz@is.elta.co.il>
75         * msdos.c (dos_set_window_size) [__DJGPP__ > 1]: If the frame
76         dimensions changed, invalidate the mouse highlight info.
77         (disable_mouse_highlight, help_echo, previous_help_echo): New
78         variables.
79         (IT_set_mouse_pointer, show_mouse_face, clear_mouse_face)
80         (fast_find_position, IT_note_mode_line_highlight)
81         (IT_note_mouse_highlight): New functions.
82         (IT_update_begin): If the redisplay affects the window where the
83         mouse highlight is, clear the highlight.  If the frame where the
84         highlight was displayed was killed, invalidate the highlight
85         info.
86         (IT_update_end): Reset the highlight flag.  Reset the mouse
87         highlight-defer flag.
88         (IT_frame_up_to_date): New function, if mouse highlight was
89         deferred due to GC, do it now.
90         (internal_terminal_init): Initialize mouse-highlight related
91         members of the_only_x_display.  Assign IT_frame_up_to_date to
92         frame_up_to_date_hook.
93         (dos_rawgetc): If the mouse moved, update mouse highlight.  If
94         help_echo changed value, generate a HELP_EVENT event.
95         (syms_of_msdos): Staticpro help_echo and previous_help_echo.
97         * msdos.h (struct display_info): New.
98         (struct x_output): Add the display_info member.
99         (FRAME_X_DISPLAY_INFO): New macro.
101 1999-12-28  Gerd Moellmann  <gerd@gnu.org>
103         * xdisp.c (try_window_id): Compute BEG_UNCHANGED and END_UNCHANGED
104         if MODIFF > 1.
105         (dump_glyph_row): Adapt to changes in struct glyph.
107         * buffer.c (modify_overlay): Always compute unchanged info.
109 1999-12-27  Kenichi Handa  <handa@etl.go.jp>
111         * dispextern.h (FACE_FROM_ID): Cast the arg ID to `unsigned'.
113 1999-12-27  Kenichi Handa  <handa@etl.go.jp>
115         The following changes are to use more bits for face IDs.
117         * lisp.h (GLYPH): Defined as `int', not `unsigned int'.  Now the
118         lowest 8 bits are single byte character code, the bits above are
119         face ID.
120         (GLYPH_MASK_FACE, GLYPH_MASK_CHAR): Adjusted for the change
121         above.
122         (FAST_MAKE_GLYPH, FSST_GLYPH_FACE): Likewise.
123         (GLYPH_MASK_REV_DIR, GLYPH_MASK_PADDING): Macros deleted.
125         * charset.h (CHAR_BYTES): Use ((1 << CHARACTERBITS) - 1) instead
126         of GLYPH_MASK_CHAR.
128         * charset.c (char_bytes): Use ((1 << CHARACTERBITS) - 1) instead
129         of GLYPH_MASK_CHAR.
131         * dispextern.h (struct glyph): Make face_id and padding_p the top
132         level members.  Change members in union `u'.
133         (GLYPH_EQUAL_P): Check also members face_id and padding_p.
134         (GLYPH_CHAR_AND_FACE_EQUAL_P): New macro.
135         (SET_CHAR_GLYPH): Adjusted for the change of struct glyph.
136         (CHAR_GLYPH_PADDING_P): Likewise.
137         (GLYPH_FROM_CHAR_GLYPH): Likewise.  Always return -1 for multibyte
138         characters.
140         * dispnew.c (line_hash_code, direct_output_for_insert): Adjusted
141         for the change of struct glyph.
142         (line_draw_cost): Adjusted for the change of
143         GLYPH_FROM_CHAR_GLYPH.
144         (count_match): Use macro GLYPH_CHAR_AND_FACE_EQUAL_P.
146         * term.c (encode_terminal_code): Adjusted for the change of struct
147         glyph and GLYPH_FROM_CHAR_GLYPH.
148         (write_glyphs, insert_glyphs, append_glyph): Adjusted for the
149         change of struct glyph.
151         * xdisp.c: All codes adjusted for the change of struct glyph.
153         * xterm.c: All codes adjusted for the change of struct glyph.
155 1999-12-27  Kenichi Handa  <handa@etl.go.jp>
157         * composite.h (struct composition): Change the order of declaring
158         members to reduce the byte size of the structure.
160 1999-12-25  Gerd Moellmann  <gerd@gnu.org>
162         * search.c (looking_at_1): Reset immediate_quit before modifying
163         global data.
165 1999-12-24  Kenichi Handa  <handa@etl.go.jp>
167         * process.c (read_process_output): Fix the arg FROM to
168         update_compositions.
170 1999-12-22  Richard M. Stallman  <rms@gnu.org>
172         * search.c (Freplace_match): For nonliteral replacement in buffer,
173         construct all the new text first, then insert all at once.
175 1999-12-22  Dave Love  <fx@gnu.org>
177         * xfns.c (Fx_show_tip): Gcpro `timeout' too.
179 1999-12-22  Gerd Moellmann  <gerd@gnu.org>
181         * xfns.c (Fx_create_frame): Move x_default_parameter calls that
182         lead to size changes to after the X window has been created.
184         * xfaces.c (realize_x_face): Don't use uninitialized local
185         variable in xassert.
187 1999-12-22  Kenichi Handa  <handa@etl.go.jp>
189         * xfaces.c (face_color_supported_p): Check by tty_defined_color
190         only when the frame is not for a window system.
192 1999-12-22  Gerd Moellmann  <gerd@gnu.org>
194         * buffer.c (Fset_buffer_multibyte): Arrange for a thorough
195         redisplay after changing the multibyteness of a buffer.
197         * xterm.c (XTread_socket): At the beginning of the loop, pass the
198         frame's X window to XFilterEvent instead of None because that's
199         the X window for which the IC was created.  This makes dead
200         accents work when the pointer is not in Emacs' frame.
201         (XTread_socket) <KeyPress>: Don't call XFilterEvent here.
203 1999-12-20  Dave Love  <fx@gnu.org>
205         * xfns.c (Fx_show_tip): Add missing UNGCPRO.
207 1999-12-19  Gerd Moellmann  <gerd@gnu.org>
209         * eval.c (debugger_may_continue): New variable.
210         (syms_of_eval): Add a DEFVAR_BOOL for it.
211         (call_debugger): Bind it.
213 1999-12-19  Eli Zaretskii  <eliz@is.elta.co.il>
215         * msdos.c (IT_set_face): Don't swap face colors when highlight or
216         fp->tty_reverse_p is set, unless the computed colors are identical
217         to frame colors.  Print both original and computed colors to
218         termscript file.
219         (IT_write_glyphs): Track the changes in handling of composite
220         characters.
221         (IT_set_frame_parameters): Don't set frame colors from
222         unspecified-fg and unspecified-bg pseudo-colors.
224 1999-12-17  Dave Love  <fx@gnu.org>
226         * data.c (Fkeywordp): New function.
227         (syms_of_data): Install it.
229 1999-12-16  Eli Zaretskii  <eliz@is.elta.co.il>
231         * xfaces.c (tty_defined_color): Fix last change.
233 1999-12-15  Gerd Moellmann  <gerd@gnu.org>
235         * xdisp.c (redisplay_window) <optional new window start>: Check
236         that window start is in [BEGV..ZV].
238 1999-12-15  Eli Zaretskii  <eliz@is.elta.co.il>
240         * dispextern.h (FACE_TTY_DEFAULT_FG_COLOR)
241         (FACE_TTY_DEFAULT_BG_COLOR):  New macros.
243         * xfaces.c (Qunspecified_fg, Qunspecified_bg): New variables.
244         (syms_of_xfaces): Initialize and staticpro them.
245         (tty_defined_color): If the color name is unspecified-fg or
246         unspecified-bg, return FACE_TTY_DEFAULT_FG_COLOR and
247         FACE_TTY_DEFAULT_BG_COLOR, respectively, as the pixel value.
248         (tty_color_name): If the color pixel value is either
249         FACE_TTY_DEFAULT_FG_COLOR or FACE_TTY_DEFAULT_BG_COLOR, return
250         Qunspecified_fg or Qunspecified_bg, respectively.
251         (Finternal_set_lisp_face_attribute): Allow values Qunspecified_fg
252         and Qunspecified_bg for foreground and background colors.
253         (realize_default_face): If the foreground and background colors
254         are not specified, default to Qunspecified_fg and Qunspecified_bg.
255         (realize_tty_face): By default, set the face colors to
256         FACE_TTY_DEFAULT_FG_COLOR and FACE_TTY_DEFAULT_BG_COLOR.
257         [MSDOS]: Handle FACE_TTY_DEFAULT_FG_COLOR and
258         FACE_TTY_DEFAULT_BG_COLOR when face colors are not defined.
259         Reverse the colors if the default colors were reversed.
261         * dispnew.c (init_display): Initialize the frame pixels of the
262         initial frame to FACE_TTY_DEFAULT_FG_COLOR and
263         FACE_TTY_DEFAULT_BG_COLOR.
265         * term.c (turn_on_face): If the default fore- and background
266         colors are reversed, enter inverse video mode.  Don't send color
267         escape sequences for unspecified foreground and background colors.
268         (turn_off_face): Handle unspecified-fg and unspecified-bg colors.
270         * dosfns.c (unspecified_colors): New variable.
271         (msdos_stdcolor_idx): Handle unspecified-fg and unspecified-bg
272         color names, return FACE_TTY_DEFAULT_FG_COLOR and
273         FACE_TTY_DEFAULT_BG_COLOR, respectively.
274         (msdos_stdcolor_name): Handle FACE_TTY_DEFAULT_FG_COLOR and
275         FACE_TTY_DEFAULT_BG_COLOR, return Qunspecified_fg and
276         Qunspecified_bg, respectively.
278         * msdos.c (IT_set_face): Support FACE_TTY_DEFAULT_FG_COLOR and
279         FACE_TTY_DEFAULT_BG_COLOR as pixel values.
281 1999-12-15  Kenichi Handa  <handa@etl.go.jp>
283         * coding.c (code_convert_region): Fix the secoding arg to
284         update_compositions.
286 1999-12-15  Kenichi Handa  <handa@etl.go.jp>
288         The following changes are for the new composition mechanism.  We
289         have deleted `composition' charset and composite characters,
290         instead introduced a special text property `composition'.
292         * Makefile.in (INTERVAL_SRC): Include composite.h.
293         (INTERVAL_OBJ): Include composite.o.
294         (SOME_MACHINE_OBJECTS): Include composite.o.
295         (casefiddle.o) (dispnew.o) (indent.o) (process.o) (search.o)
296         (syntax.o) (window.o) (xdisp.o) (xfaces.o) (xterm.o) (print.o):
297         Depend on composite.h.
298         (doc.o): Depend on charset.h.
299         (keyboard.o) (textprop.o) (intervals.o): Depend on INTERVAL_SRC.
300         (composite.o): New target.
302         * alloc.c (Fmake_string): Adjusted for the change of CHAR_STRING.
304         * callproc.c (Fcall_process): Call code_convert_string to encode
305         arguments.  Use CODING_REQUIRE_DECODING to check if the process
306         output should be decoded.
308         * casefiddle.c: Include composite.h.
309         (casify_object): Use MAX_MULTIBYTE_LENGTH to allocate memory for a
310         multibyte character.  Adjusted for the change of CHAR_STRING.
311         (casify_region): Likewise.  Call update_compositions.
313         * category.h (CATEGORY_SET): Delete codes for a composite
314         character.
316         * category.c (word_boundary_p): Delete codes for a composite
317         character.
318         (Fmake_category_table): New function.
319         (syms_of_category): Defsubr it.
321         * ccl.c (CCL_WRITE_CHAR): Adjusted for the change of CHAR_STRING.
322         (ccl_driver): Delete codes for a composite character.
324         * charset.h: In this entry, just `Modified' means that codes for a
325         composite character is deleted.
326         (LEADING_CODE_COMPOSITION) (CHARSET_COMPOSITION)
327         (charset_composition) (MIN_CHAR_COMPOSITION)
328         (MAX_CHAR_COMPOSITION) (GENERIC_COMPOSITION_CHAR)
329         (COMPOSITE_CHAR_P) (MAKE_COMPOSITE_CHAR) (COMPOSITE_CHAR_ID)
330         (PARSE_COMPOSITE_SEQ) (PARSE_CHARACTER_SEQ): Deleted.
331         (MAX_CHAR) (CHARSET_VALID_P) (CHARSET_DEFINED_P) (CHARSET_AT)
332         (FIRST_CHARSET_AT) (SAME_CHARSET_P) (MAKE_NON_ASCII_CHAR)
333         (PARSE_MULTIBYTE_SEQ) (SPLIT_NON_ASCII_CHAR) (CHAR_PRINTABLE_P):
334         Modified.
335         (SPLIT_STRING): Call split_string, not split_non_ascii_string.
336         (CHAR_STRING): Delete WORKBUF argument.  Call char_string, not
337         non_ascii_char_to_string.
338         (STRING_CHAR): Call string_to_char, not string_to_non_ascii_char.
339         (STRING_CHAR_AND_LENGTH): Likewise.
340         (FETCH_CHAR_ADVANCE): New macro.
341         (MAX_COMPONENT_COUNT) (struct cmpchar_info): Deleted.
342         (MAX_MULTIBYTE_LENGTH): New macro.
343         (MAX_LENGTH_OF_MULTI_BYTE_FORM): Deleted.
344         (find_charset_in_str): Argument adjusted.
345         (CHAR_LEN): Modified.
347         * charset.c: In this entry, just `Modified' means that codes for a
348         composite character is deleted.
349         (Qcomposition) (leading_code_composition)
350         (charset_composition) (min_composite_char) (cmpchar_table)
351         (cmpchar_table_size) (n_cmpchars): Deleted.
352         (SPLIT_COMPOSITE_SEQ): Deleted.
353         (SPLIT_MULTIBYTE_SEQ): Modified.
354         (char_to_string): Renamed from non_ascii_char_to_string.
355         Modified.
356         (string_to_char): Renamed from string_to_non_ascii_char.
357         (split_string): Renamed from split_non_ascii_string.
358         (char_printable_p) (Fsplit_char)
359         (Ffind_charset_region) (Ffind_charset_string) (char_valid_p)
360         (char_bytes) (Fchar_width) (strwidth): Modified.
361         (find_charset_in_str): Argument CMPCHARP deleted.  Modified.
362         (Fstring): Adjusted for the change of CHAR_STRING.  Modified.
363         (hash_string) (CMPCHAR_HASH_TABLE_SIZE) (cmpchar_hash_table)
364         (CMPCHAR_HASH_SIZE) (CMPCHAR_HASH_USED) (CMPCHAR_HASH_CMPCHAR_ID)
365         (str_cmpchar_id) (cmpchar_component) (Fcmpcharp)
366         (Fcmpchar_component) (Fcmpchar_cmp_rule) (Fcmpchar_cmp_rule_p)
367         (Fcmpchar_cmp_count): Deleted.
368         (Fcompose_string): Implemented by Emacs Lisp in composite.el.
369         (init_charset_once): Modified.
370         (syms_of_charset): Modified.
372         * cmds.c (internal_self_insert): Adjusted for the change of
373         CHAR_STRING.
375         * coding.h (emacs_code_class_type): Delete the member
376         EMACS_leading_code_composition.
377         (COMPOSING_NO) (COMPOSING_WITH_RULE_HEAD) (COMPOSING_NO_RULE_HEAD)
378         (COMPOSING_WITH_RULE_TAIL) (COMPOSING_NO_RULE_TAIL)
379         (COMPOSING_WITH_RULE_RULE) (COMPOSING_HEAD_P)
380         (COMPOSING_WITH_RULE_P): Macros deleted.
381         (COMPOSITION_DATA_SIZE) (COMPOSITION_DATA_MAX_BUNCH_LENGTH): New
382         macros.
383         (struct composition_data): New structure.
384         (CODING_FINISH_INSUFFICIENT_CMP): New macro.
385         (struct coding_system): New members composition_rule_follows,
386         cmp_data, cmp_data_start, cmp_data_index.
387         (coding_save_composition) (coding_free_composition_data)
388         (coding_adjust_composition_offset): Extern them.
390         * coding.c: Include composite.h.
391         (DECODE_CHARACTER_ASCII): Don't handle composition here.
392         (DECODE_CHARACTER_DIMENSION1): Likewise.  Don't check the validity
393         of multibyte code here.
394         (DECODE_CHARACTER_DIMENSION2): Likewise.
395         (detect_coding_emacs_mule): Change the case label from
396         EMACS_leading_code_composition to 0x80.
397         (detect_coding_iso2022): Handle new composition sequence.
398         (DECODE_ISO_CHARACTER): Likewise.
399         (check_composing_code): Deleted.
400         (coding_allocate_composition_data): New function.
401         (CODING_ADD_COMPOSITION_START) (CODING_ADD_COMPOSITION_END)
402         (CODING_ADD_COMPOSITION_COMPONENT) (DECODE_COMPOSITION_START)
403         (DECODE_COMPOSITION_END) (DECODE_COMPOSITION_RULE): New macros.
404         (decode_coding_iso2022): Handle new composition sequence.
405         (ENCODE_ISO_CHARACTER): Don't check composition here.
406         (ENCODE_COMPOSITION_RULE) (ENCODE_COMPOSITION_START): New macros.
407         (ENCODE_COMPOSITION_NO_RULE_START)
408         (ENCODE_COMPOSITION_WITH_RULE_START): Deleted.
409         (ENCODE_COMPOSITION_END): Handle new composition sequence.
410         (ENCODE_COMPOSITION_FAKE_START): New macro.
411         (encode_coding_iso2022): Handle new composition sequence.
412         (ENCODE_SJIS_BIG5_CHARACTER): Delete superfluous `;' at the tail.
413         (encode_coding_sjis_big5): Ignore composition.
414         (setup_coding_system): Initialize new members of struct
415         coding_system.  Enable composition only when the coding system has
416         `composition' property t.
417         (coding_free_composition_data) (coding_adjust_composition_offset)
418         (coding_save_composition) (coding_restore_composition): New
419         functions.
420         (code_convert_region): Call coding_save_composition for encoding
421         and coding_allocate_composition_data for decoding.  Don't skip
422         ASCII characters if we handle composition on encoding.  Call
423         signal_after_change with Check_BORDER.
424         (code_convert_string): Call coding_save_composition for encoding
425         and coding_allocate_composition_data for decoding.  Don't skip
426         ASCII characters if we handle composition on encoding.
427         (code_convert_string1): Set Vlast_coding_system_used after calling
428         code_convert_string.
429         (code_convert_string_norecord): Disable composition.
430         (Fset_terminal_coding_system_internal): Likewise.
431         (Fset_safe_terminal_coding_system_internal): Likewise.
432         (Fset_keyboard_coding_system_internal): Likewise.
433         (init_coding_once): Set emacs_code_class[0x80] to
434         EMACS_invalid_code.
436         * composite.h: New file.
438         * composite.c: New file.
440         * data.c (Faref): Delete codes for a composite character..
441         (Faset): Likewise.  Adjusted for the change of CHAR_STRING.
443         * dispextern.h (enum glyph_type): New member COMPOSITE_GLYPH.
444         (struct glyph): Add new sub-structure cmp to the union `u'.
445         (enum display_element_type): New member IT_COMPOSITION.
446         (enum prop_idx): New member COMPOSITION_PROP_IDX.
447         (struct it): New members cmp_id, cmp_len.
449         * dispnew.c (direct_output_forward_char): Check point moving into
450         or out of a composition.  If so, give up direct method.
452         * doprnt.c (doprnt1): Adjusted for the change of CHAR_STRING.
454         * editfns.c (Fchar_to_string): Adjusted for the change of
455         CHAR_STRING.
456         (general_insert_function): Likewise.
457         (Finsert_char): Likewise.
458         (Fsubst_char_in_region): Likewise.  Call update_compositions.
459         (Ftranslate_region): Call update_compositions.
460         (Ftranspose_regions): Call update_compositions.
462         * emacs.c (main): Call syms_of_composite.
464         * fileio.c (Fsubstitute_in_file_name): Adjusted for the change of
465         CHAR_STRING.
466         (Finsert_file_contents): Set Vlast_coding_system_used before
467         calling signal_after_change.  Call update_compositions if some
468         texts are inserted..
469         (Fwrite_region): Adjusted for the change of a_write and e_write.
470         (a_write): Argument changed.  Work based on character position,
471         not byte position.
472         (e_write): Argument changed.  Handle new way of composition.
474         * fns.c (Flength): The length of char-table is MAX_CHAR.
475         (concat): Adjusted for the change of CHAR_STRING.
476         (Ffillarray): Adjusted for the change of CHAR_STRING.
477         (Fset_char_table_default): Delete codes for a composite character.
478         (hash_put): Return hash index.
480         * fontset.h (struct font_info): New member vertical_centering.
481         (Vvertical_centering_font_regexp): Extern it.
483         * fontset.c (Vvertical_centering_font_regexp): New variable.
484         (syms_of_fontset): Declare it as a Lisp variable and initialize.
485         Set Vignore_relative_composition to nil.
486         (fs_load_font): Initialize `vertical_centering' of struct
487         font_info.
489         * indent.c (check_composition): New function.
490         (MULTIBYTE_BYTES_WIDTH): Call STRING_CHAR_AND_LENGTH with
491         MAX_MULTIBYTE_LENGTH, not MAX_LENGTH_OF_MULTI_BYTE_FORM.
492         (current_column_1): Handle new way of composition.
493         (Fmove_to_column): Likewise.
494         (compute_motion): Likewise.
496         * insdel.c (copy_text): Adjusted for the change of CHAR_STRING.
497         (insert_char): Likewise.
498         (insert): Call update_compositions.
499         (insert_and_inherit): Likewise.
500         (insert_before_markers): Likewise.
501         (insert_before_markers_and_inherit): Likewise.
502         (insert_from_string): Likewise.
503         (insert_from_string_before_markers): Likewise.
504         (insert_from_buffer): Likewise.
505         (replace_range): Likewise.
506         (count_combining_composition): Deleted.
507         (count_combining_before): Delete codes for a composite character.
508         (count_combining_after): Likewise.
509         (del_range_1): Call update_compositions.
510         (del_range_byte): Likewise.
511         (del_range_both): Likewise.
512         (Fcombine_after_change_execute): Likewise.
514         * intervals.h: Include composite.h.
515         (get_property_and_range): Extern it.
516         (Vtext_property_default_nonsticky): Extern it.
518         * intervals.c (adjust_intervals_for_insertion): To check stickines
519         of properties, pay attention to text-property-default-nonsticky.
520         (merge_properties_sticky): Likewise.
521         (get_property_and_range): New function.
523         * keyboard.c (Vdisable_point_adjustment): New variable.
524         (Vglobal_disable_point_adjustment): New variable.
525         (syms_of_keyboard): Declare them as Lisp variables.
526         (command_loop_1): Check them and call adjust_point_for_property if
527         necessary.
528         (adjust_point_for_property): New function.
530         * keymap.c (push_key_description): Adjusted for the change of
531         CHAR_STRING.
532         (Ftext_char_description): Likewise.
534         * lisp.h (QCtest, QCweakness, Qequal): Extern them.
535         (hash_put): Adjusted for the change of the definition.
536         (signal_after_change): Likewise.
537         (check_point_in_composition): Extern it.
539         * lread.c (readchar): Adjusted for the change of CHAR_STRING.
540         Delete a code that handles an invalid too-long multibyte sequence
541         because we are now sure that we never encounter with such a
542         sequence.
543         (read_multibyte): Use macro MAX_MULTIBYTE_LENGTH, not
544         MAX_LENGTH_OF_MULTI_BYTE_FORM.
545         (init_obarray): Likewise.
546         (read1): Likewise.  Adjusted for the change of CHAR_STRING.
548         * print.c (printchar): Adjusted for the change of CHAR_STRING.
550         * process.c: Include composite.h.
551         (read_process_output): Call update_compositions.
553         * regex.c (regex_compile): Adjusted for the change of CHAR_STRING.
555         * search.c (search_buffer): Adjusted for the change of CHAR_STRING.
557         * syntax.h (SYNTAX_ENTRY_INT): Delete codes for a composite
558         character.
560         * term.c (encode_terminal_code): Delete codes for a composite
561         character.  Adjusted for the change of CHAR_STRING.
562         (produce_glyphs): When called, it->what can be IT_COMPOSITION.
563         Delete codes for a composite character.
565         * textprop.c (Vtext_property_default_nonsticky): New variable
566         (syms_of_textprop): Declare it as a Lisp variable.
568         * window.c (Frecenter): Clear all caches of compositions.
570         * xdisp.c (it_props): Add an entry for composition.
571         (face_before_or_after_it_pos): For composition, check face of a
572         character after the composition.
573         (handle_composition_prop): New function.
574         (get_next_display_element): Adjusted for the change of
575         CHAR_STRING.
576         (set_iterator_to_next): Handle the case that it->method ==
577         next_element_from_composition.
578         (next_element_from_composition): New function.
579         (message_dolog): Adjusted for the change of CHAR_STRING.
580         (set_message_1): Likewise.
581         (check_point_in_composition): New function.
582         (reconsider_clip_changes): If point moved into or out of
583         composition, set b->clip_changed to 1 to force updating of the
584         screen.
585         (disp_char_vector): Delete codes for a composite character.
586         (decode_mode_spec_coding): Adjusted for the change of CHAR_STRING.
588         * xfaces.c (choose_face_fontset_font): Delete codes for a
589         composite character.
590         (realize_x_face): Likewise.  Change a place to set local variable
591         `f' to avoid a bug of GCC 2.8.1 on Solaris.
593         * xfns.c: Include intervals.h.
594         (syms_of_xfns): Make `display' property nonsticky by default.
596         * xselect.c (lisp_data_to_selection_data): Adjusted for the change
597         for find_charset_in_str.
599         * xterm.h (struct x_output): Change member font_baseline to
600         baseline_offset.
602         * xterm.c (x_append_glyph): Setup members of struct glyph properly
603         for composition.
604         (x_append_composite_glyph): New function.
605         (VCENTER_BASELINE_OFFSET): New macro.
606         (x_produce_glyphs): If it->what == IT_COMPOSITION, setup members
607         of struct it for the composition.  Cache pixel offsets in the
608         struct composition.  Delete codes for a composite character.
609         Handle Vignore_relative_composition in composition code.
610         (struct glyph_string): Delete member cmpcharp, add new member cmp.
611         (x_set_cursor_gc): Check s->cmp, not s->cmpcharp.
612         (x_compute_glyph_string_overhangs): Likewise.
613         (x_get_glyph_overhangs): Delete codes for a composite character.
614         (x_right_overwritten): Check s->cmp, not s->cmpcharp.
615         (x_draw_glyph_string_background): Likewise.  Delete codes for
616         checking s->gidx for a composition.
617         (x_draw_glyph_string_foreground): Delete code for a composite
618         character.
619         (x_draw_composite_glyph_string_foreground): New function.
620         (x_draw_glyph_string_box): Check s->cmp, not s->cmpcharp.
621         (x_draw_glyph_string): Handle the case of COMPOSITE_GLYPH.
622         (struct work): Deleted.
623         (x_fill_composite_glyph_string): Argument changed.  Mostly
624         rewritten for that.
625         (x_fill_glyph_string): Don't check CHARSET_COMPOSITION.
626         (BUILD_CHAR_GLYPH_STRINGS): Don't handle composition here.
627         (BUILD_COMPOSITE_GLYPH_STRING): New macro.
628         (BUILD_GLYPH_STRINGS): For composition, call
629         BUILD_COMPOSITE_GLYPH_STRING.
630         (x_new_font): Initialize f->output_data.x->baseline_offset, not
631         f->output_data.x->font_baseline.
633 1999-12-14  Gerd Moellmann  <gerd@gnu.org>
635         * xterm.c (show_mouse_face): Don't use updated_area, use
636         TEXT_AREA.
638 1999-12-12  Richard M. Stallman  <rms@gnu.org>
640         * minibuf.c (Fall_completions): Doc fix.
642 1999-12-12  Richard M. Stallman  <rms@gnu.org>
644         * macros.c (Fstart_kbd_macro): Handle case where last-kbd-macro
645         has been changed by the Lisp code.
647 1999-12-12  Gerd Moellmann  <gerd@gnu.org>
649         * xfns.c: Indentation fixes.
651 1999-12-10  Stefan Monnier  <monnier@cs.yale.edu>
653         * xterm.c (x_initialize): Only setup xaw3d_* if they've been declared.
655 1999-12-10  Gerd Moellmann  <gerd@gnu.org>
657         * frame.h (FRAME_FOREGROUND_PIXEL, FRAME_BACKGROUND_PIXEL)
658         [!MSDOS && !WINDOWSNT && !macintosh]: Moved here from xterm.h.
660         * xterm.h (FRAME_FOREGROUND_PIXEL, FRAME_BACKGROUND_PIXEL): Moved
661         to frame.h.
663 1999-12-09  Stefan Monnier  <monnier@cs.yale.edu>
665         * keyboard.c (Qratio): New symbol.
666         (scroll_bar_parts): Add `Qratio' to it.
667         (syms_of_keyboard): Init `Qratio'.
668         * termhooks.h (scroll_bar_part): Add `scroll_bar_move_ratio'.
669         * xterm.c (#includes): Allow compilation with only Xaw.
670         (xaw3d_arrow_scroll, xaw3d_pick_top): New variables.
671         (xt_action_hook): Replace XAW3D by XAW.
672         (xaw3d_jump_callback): Renamed to xaw_jump_callback.
673         (xaw_jump_callback): Renamed from xaw3d_jump_callback.
674         Determine epsilon dynamically and don't try to be too clever.
675         (xaw3d_scroll_callback): Renamed to xaw_scroll_callback.
676         (xaw_scroll_callback): Renamed from xaw3d_scroll_callback.
677         Handle both Xaw3d with arrow-scrollbars and with Xaw-style
678         scrollbar (using `ratio').
679         (x_create_toolkit_scroll_bar): Try to detect which style of Xaw3d
680         scrollbar we have so as to set it up more optimally and to fix
681         xaw3d_arrow_scroll and xaw3d_pick_top.
682         (x_set_toolkit_scroll_bar_thumb): Try to maintain 2 spare pixels at the
683         bottom of the Xaw3d scrollbar, to work around its tendency to refuse
684         shrinking the thumb.  Also make sure that `XawScrollbarSetThumb'
685         is not ignored, using a major gross hack.
686         (x_initialize): Init default values for xaw3d_arrow_scroll and
687         xaw3d_pick_top.
689 1999-12-09  Dave Love  <fx@gnu.org>
691         * frame.h: (PIX_TYPE) [! HAVE_X_WINDOWS]: Define PIX_TYPE.
693 1999-12-08  Gerd Moellmann  <gerd@gnu.org>
695         * eval.c: Remove conditional compilation on `standalone'.
696         (call_debugger): When entering the debugger while redisplaying,
697         reset redisplaying_p, and go back to the top-level if the debugger
698         returns.
700 1999-12-07  Gerd Moellmann  <gerd@gnu.org>
702         * xfaces.c (x_set_menu_resources_from_menu_face): Make sure
703         basic faces are realized before trying to use face `menu'.
705         * window.c (delete_window): Block input for the time window
706         matrices are being changed.
708 1999-12-07  Dave Love  <fx@gnu.org>
710         * lread.c (Fintern_soft): Fix newlines in doc string.
712 1999-12-07  Alexandre Oliva  <oliva@dcc.unicamp.br>
714         * unexelf.c: Include <syms.h>, not <sym.h> on IRIX.  Removed
715         duplicate definition of ElfW.
716         (find_section): Copied from unexsgi.c.
717         (unexec): Use find_section.  Adjust whitespace.  Initialize
718         new_data2_offset based on old_data, not sbss (this fixes a bug on
719         IRIX6).  Change #ifdef __mips to __sgi, since it's IRIX-specific.
720         Adjust test for presence of .mdebug section to the new return
721         value of find_section.
723 1999-12-07  Gerd Moellmann  <gerd@gnu.org>
725         * unexelf.c: Merge changes from 20.5.
726         (unexec): Handle .lit4 and .lit8 unconditionally.
728         * m/iris4d.h (UNEXEC) [USG5_4]: Use unexelf.o instead of
729         unexsgi.o again.
731         * m/iris5d.h (UNEXEC): Likewise.
733 1999-12-06  Stefan Monnier  <monnier@cs.yale.edu>
735         * editfns.c (Fdelete_and_extract_region): New function.
736         (syms_of_editfns): Register it.
737         * insdel.c (del_range): Update del_range_1 call.
738         (del_range_1, del_range_2): Add a ret_string argument to
739         request that the deleted text be returned.
740         (del_range_byte, del_range_both): Update del_range_2 call.
741         * lisp.h (del_range_1, del_range_2): Change prototype
742         * casefiddle.c (casify_region): Update del_range_1 call.
743         * coding.c (code_convert_region): Update del_range_2 call.
744         * fileio.c (Finsert_file_contents): Update del_range_2 call.
746 1999-12-06  Gerd Moellmann  <gerd@gnu.org>
748         * xfaces.c (set_lface_from_font_name): Fix incomplete merge.
750 1999-12-04  Hrvoje Niksic  <hniksic@iskon.hr>
752         * lread.c (Fintern_soft): Accept a symbol argument.
754 1999-12-06  Eli Zaretskii  <eliz@is.elta.co.il>
756         * s/msdos.h (SYSTEM_PURESIZE_EXTRA): Reduce to 40000.
758         * insdel.c (adjust_markers_for_delete): Fix last change.
760 1999-12-06  Eli Zaretskii  <eliz@is.elta.co.il>
762         Changes for automatic remapping of X colors on terminal frames:
764         * xfaces.c (XColor) [!HAVE_X_WINDOWS]: Provide a typedef for non-X
765         frames.
766         (Vface_tty_color_alist): Remove.
767         (tty_defined_color): New function.
768         (defined_color): Rewrite to support any type of frame.
769         (tty_color_name): New function.
770         (face_color_supported_p, Fface_color_gray_p,
771         Fface_color_supported_p): Support non-X frames.
772         (load_color): Enclose the color name in quotes, in the log
773         messages.  Remove DOS-specific version of load_color.
774         (realize_tty_face): Take the supported colors from
775         tty-color-alist.  Support translation of X colors to the closest
776         tty color, for both MSDOS and tty frames.
777         [MSDOS]: Don't invert face colors if they were taken from the
778         frame colors.
779         (Fface_register_tty_color, Fface_clear_tty_colors): Remove.
781         * frame.h (struct x_output) [!MSDOS, !WINDOWSNT, !HAVE_X_WINDOWS]:
782         Define a mostly empty surrogate.
783         (tty_display): Declare.
785         * frame.c (make_terminal_frame) [!macintosh]: Don't use
786         tty_display.
787         (Fframe_parameters): Don't invert colors of non-FRAME_WINDOW_P
788         frames when the frame's param_alist includes 'reverse.
789         (tty_display): Define.
790         (make_terminal_frame) [!MSDOS]: Assign &tty_display to the
791         output_data.x member.
792         (Fframe_parameters): Return foreground and background color names
793         on tty frames as well, in addition to MSDOS frames.
795         * msdos.h (DisplayWidth, DisplayHeight): Changes for Lisp_Object
796         selected_frame.
797         (struct x_output): Remove unused members; document who uses each
798         member.
799         (FRAME_PARAM_FACES, FRAME_N_PARAM_FACES, FRAME_DEFAULT_PARAM_FACE,
800         FRAME_MODE_LINE_PARAM_FACE, FRAME_COMPUTED_FACES,
801         FRAME_N_COMPUTED_FACES, FRAME_SIZE_COMPUTED_FACES,
802         FRAME_DEFAULT_FACE, FRAME_MODE_LINE_FACE, unload_color): Remove
803         unused macro definintions.
805         * msdos.c (IT_set_frame_parameters): Don't call
806         recompute_basic_faces, the next redisplay will, anyway.
807         (x_current_display): Remove unused variable.
808         Many functions: changes for Lisp_object selected_frame.
809         (IT_set_face): If the tty_reverse_p flag is set for the face,
810         reverse the foreground and background colors.
811         (Fmsdos_remember_default_colors): New function.
812         (syms_of_msdos): Defsubr it.
813         (IT_set_frame_parameters): Use initial_screen_colors[] when
814         creating a new frame.  If the frame parameters include 'reverse,
815         swap the foreground and background colors.
816         (internal_terminal_init): Initialize initial_screen_colors to -1.
817         (syms_of_msdos): Add DEFVAR_BOOL for x-stretch-cursor, to shut up
818         cus-start.el.
820         * Makefile.in (lisp, shortlisp): Add lisp/term/tty-colors.elc.
822         * xfns.c (x_defined_color): Rename from defined_color.  All
823         callers changed.
824         (Fxw_color_defined_p): Renamed from Fx_color_defined_p;
825         all callers changed.
826         (Fxw_color_values): Renamed from Fx_color_values; all callers
827         changed.
828         (Fxw_display_color_p): Renamed from Fx_display_color_p; all
829         callers changed.
830         (x_window_to_frame, x_any_window_to_frame,
831         x_non_menubar_window_to_frame, x_menubar_window_to_frame,
832         x_top_window_to_frame): Use !FRAME_X_P instead of
833         f->output_data.nothing.
834         * xterm.h (x_defined_color): Rename from defined_color.
836         * w32fns.c (x_window_to_frame): Use FRAME_W32_P instead of
837         f->output_data.nothing.
838         (Fxw_color_defined_p): Renamed from Fx_color_defined_p;
839         all callers changed.
840         (Fxw_color_values): Renamed from Fx_color_values; all callers
841         changed.
842         (Fxw_display_color_p): Renamed from Fx_display_color_p; all
843         callers changed.
845         * dispextern.h (tty_color_name): Add prototype.
847         * xmenu.c (menubar_id_to_frame): Use FRAME_WINDOW_P instead of
848         f->output_data.nothing.
849         * w32menu.c (menubar_id_to_frame): Likewise.
850         * w32term.h (w32_output): Declare.
852         * dosfns.c (Qmsdos_color_translate): Remove.
853         (msdos_stdcolor_name): Now returns a Lisp_Object.
854         * dosfns.h (Qmsdos_color_translate): Remove.
856         * s/msdos.h (INTERNAL_TERMINAL): Add entries for color support.
858 1999-12-06  Kenichi Handa  <handa@etl.go.jp>
860         * fileio.c (decide_coding_unwind): Renamed from
861         set_auto_coding_unwind.
862         (Finsert_file_contents): Make single unwind protect to call both
863         Vset_auto_coding_function and Ffind_operation_coding_system.
865         * insdel.c (adjust_markers_for_delete): Make it non-static.
867 1999-12-04  Stefan Monnier  <monnier@cs.yale.edu>
869         * regex.c (regex_compile): Recognize *?, +? and ?? as non-greedy
870         operators and handle them properly.
871         * regex.h (RE_ALL_GREEDY): New option.
872         (RE_UNMATCHED_RIGHT_PAREN_ORD): Moved to the end where alphabetic
873         sorting would put it.
874         (RE_SYNTAX_AWK, RE_SYNTAX_GREP, RE_SYNTAX_EGREP)
875         (_RE_SYNTAX_POSIX_COMMON): Use the new option to keep old behavior.
877 1999-12-04  Dave Love  <d.love@dl.ac.uk>
879         * m/arm.h: New file.
881 1999-12-03  Dave Love  <fx@gnu.org>
883         * editfns.c (Fmessage_or_box): Use use_dialog_box.
885 1999-12-02  Gerd Moellmann  <gerd@gnu.org>
887         * s/usg5-4.h (LIBS_SYSTEM): Add -lgen because that's needed
888         for building with Motif.
890         * m/iris4d.h (UNEXEC) [USG5_4]: Use unexsgi.o instead of
891         unexelf.o.
893         * m/iris5d.h (UNEXEC): Use unexsgi.o instead of unexelf.o.
895 1999-12-01  Dave Love  <fx@gnu.org>
897         * emacs.c (main): Set LANG=C iff AX3_2 defined.
899 1999-11-28  Gerd Moellmann  <gerd@gnu.org>
901         * systime.h (EMACS_TIME_CMP, EMACS_TIME_EQ, EMACS_TIME_NE)
902         (EMACS_TIME_GT, EMACS_TIME_GE, EMACS_TIME_LT,EMACS_TIME_LE): New
903         macros.
905         * config.in (HAVE_SETITIMER, HAVE_UALARM): New.
907 1999-11-28  eliz  <eliz@dlpx1>
909         * emacs.c (synchronize_locale): Avoid compiler warnings about
910         pointer type mismatch.
912 1999-11-28  Gerd Moellmann  <gerd@gnu.org>
914         * window.c (Fwindow_end): Don't call temp_set_pt_both with
915         out of range position.
917         * xterm.c (XTread_socket) <ClientMessage, Xatom_Scrollbar>:
918         Switch off busy-cursor by setting inhibit_busy_cursor to 2.
920 1999-11-28  Eli Zaretskii  <eliz@is.elta.co.il>
922         * charset.c (Fmake_char_internal): Print the charset ID when
923         signalling an error.
925         * emacs.c (synchronize_locale): Avoid compiler warnings about
926         pointer type mismatch.
928 1999-11-26  Richard M. Stallman  <rms@gnu.org>
930         * editfns.c (Fdelete_field): Make it noninteractive.  Return nil.
932 1999-11-26  Gerd Moellmann  <gerd@gnu.org>
934         * puresize.h (BASE_PURESIZE): Increase to 550000.
936         * textprop.c (set_text_properties): New function.  Like
937         Fset_text_properties, but with additional parameter
938         SIGNAL_AFTER_CHANGE_P.  If that is nil, don't signal after
939         changes.
940         (Fset_text_properties): Use it.
942         * insdel.c (insert_1_both): Call set_text_properties with last
943         parameter nil so that no after changes will be signaled.
945         * lisp.h: Add prototype for set_text_properties.
947         * xfaces.c (set_lface_from_font_name): Fix previous change.
948         (recompute_basic_faces): Change assert to abort.
950 1999-11-25  Dave Love  <fx@gnu.org>
952         * fns.c (Fnthcdr, Fnreverse): Inline cdr.
953         (Fmember, Fdelq, Fdelete): Inline car.
954         (Fy_or_n_p): Doc fix.
956 1999-11-25  Gerd Moellmann  <gerd@gnu.org>
958         * xfaces.c (set_lface_from_font_name): New parameter may_fail_p.
959         Callers changed.  If specified font name is bogus, and may_fail_p
960         is not set, try to use a reasonable default.
962         * dispnew.c (direct_output_for_insert): Set glyph row's
963         displays_text_p flag.  Correct window's window_end_vpos if
964         necessary.
966 1999-11-25  Paul Eggert  <eggert@twinsun.com>
968         * emacs.c (fixup_locale): Don't bother to record initial locale.
969         (synchronize_locale): If the desired locale is nil,
970         treat it as if it were the empty string,
971         so that we set the locale from the environment.
973 1999-11-25  Kenichi Handa  <handa@etl.go.jp>
975         * fileio.c (Finsert_file_contents): Set buffer-file-coding-system
976         of the current buffer via Fset.
978 1999-11-24  Dave Love  <fx@gnu.org>
980         * xfaces.c: Don't duplicate Qmode_line definition done elsewhere.
982         * xfns.c: Don't duplicate Qdisplay definition done elsewhere.
984 1999-11-24  Gerd Moellmann  <gerd@gnu.org>
986         * lisp.h (enum pvec_type): Put PVEC_FLAG in #if 0.
988         * emacs.c (PVEC_FLAG): New variable.
990 1999-11-23  Gerd Moellmann  <gerd@gnu.org>
992         * unexaix.c (unexec): Use unsigned instead of uintptr_t because
993         that fails on IBM PowerPC, AIX 4.2.
995 1999-11-22  Eli Zaretskii  <eliz@is.elta.co.il>
997         * buffer.c (syms_of_buffer): Add %z, %Z, %m and %& to the doc
998         string of mode-line-format.  Remove the obsolete %t.
1000 1999-11-22  Gerd Moellmann  <gerd@gnu.org>
1002         * dispnew.c (direct_output_for_insert): Increment glyph positions
1003         for glyphs from buffer text only.
1005         * emacs.c (gdb_valbits, gdb_gctypebits, gdb_emacs_intbits)
1006         (gdb_data_seg_bits): New variables.
1008         * lisp.h (enum gdb_lisp_params): Put in #if 0, since it doesn't
1009         work on systems not allowing enumerators > INT_MAX, and it
1010         won't work if EMACS_INT is long long.
1012 1999-11-22  Paul Eggert  <eggert@twinsun.com>
1014         Port to SunOS 4.1.x again.  Help out with Alpha port.
1015         Rename messages-locale to system-messages-locale,
1016         and likewise for time-locale.
1018         * callproc.c (strerror): Remove decl.
1019         * fileio.c (strerror): Likewise.
1020         * process.c (strerror): Likewise.
1021         * emacs.c (strerror): Likewise.
1022         (Vsystem_messages_locale): Renamed from Vmessages_locale.
1023         All uses changed.
1024         (Vprevious_system_messages_locale): Likewise, from
1025         Vprevious_messages_locale.
1026         (Vsystem_time_locale): Likewise, from Vtime_locale.
1027         (Vprevious_system_time_locale): Likewise, from Vprevious_time_locale.
1028         (ABORT_RETURN_TYPE): New macro.
1029         (abort): Return type is now ABORT_RETURN_TYPE.
1030         (main): Always invoke init_signals, even if POSIX_SIGNALS is not
1031         defined.
1032         (syms_of_emacs): messages-locale -> system-messages-locale,
1033         previous-messages-locale -> previous-system-messages-locale,
1034         time-locale -> system-time-locale,
1035         previous-time-locale -> previous-system-time-locale.
1037         * gmalloc.c (PP, __ptr_t): Assume ANSI C if STDC_HEADERS is defined.
1038         (const): Do not define; that's config.h's job.
1039         (<limits.h>): Include if HAVE_LIMITS_H is defined.
1040         (CHAR_BIT): Move test for definedness outside of limits.h condition.
1041         (<stddef.h>): Include if STDC_HEADERS is defined.
1042         (FREE_RETURN_TYPE): New macro.
1043         (free): Return type is now FREE_RETURN_TYPE.
1045         * lisp.h (synchronize_system_time_locale): Renamed from
1046         synchronize_time_locale.  All uses changed.
1047         (synchronize_system_messages_locale): Likewise, from
1048         synchronize_messages_locale.
1050         * m/alpha.h (malloc, realloc, calloc): Remove decls;
1051         stdlib.h now does this.
1053         * process.c (sys_siglist): Remove.
1055         * s/sunos4-0.h (ABORT_RETURN_TYPE, FREE_RETURN_TYPE):
1056         New macros.
1058         * syntax.c (scan_sexps_forward): Use abort, not assert.
1060         * sysdep.c (my_sys_siglist): New var.
1061         (sys_siglist): New macro.  Remove old initialized vars of same name.
1062         (init_signals): Initialize sys_siglist.
1064         * xfns.c (abort): Remove decl; stdlib.h now does this.
1066 1999-11-18  Dave Love  <fx@gnu.org>
1068         * filelock.c: Add forward declaration for get_boot_time_1.
1070         * dispnew.c (Finternal_show_cursor_p): Fix doc string.
1072 1999-11-18  Gerd Moellmann  <gerd@gnu.org>
1074         * buffer.h (struct buffer_text): Add comment about moving
1075         buffer text if REL_ALLOC is defined.
1077 1999-11-18  Kenichi Handa  <handa@etl.go.jp>
1079         * lisp.h (KEY_DESCRIPTION_SIZE): New macro.
1081         * keyboard.c (echo_char): Use KEY_DESCRIPTION_SIZE to check free
1082         memory for push_key_description.
1084         * keymap.c (Fsingle_key_description): Use KEY_DESCRIPTION_SIZE to
1085         allocate memory for push_key_description.
1086         (describe_buffer_bindings): Likewise.
1088 1999-11-17  Gerd Moellmann  <gerd@gnu.org>
1090         * xfns.c (Fx_show_busy_cursor): Doc-fix.
1091         (Fx_hide_busy_cursor): Ditto.
1093 1999-11-17  Marco Walther <walther@siemens-pyramid.com>
1095         * unexsni.c (unexec): Handle .rel.dyn section.
1097 1999-11-16  Dave Love  <fx@gnu.org>
1099         * doc.c (Fdocumentation): Remove gcpro here too.
1101 1999-11-16  Gerd Moellmann  <gerd@gnu.org>
1103         * keyboard.c (command_loop_1): Remove no_redisplay.
1105 1999-11-16  Richard M. Stallman  <rms@gnu.org>
1107         * print.c (PRINTPREPARE): Don't call setup_echo_area_for_printing
1108         in noninteractive.
1110 1999-11-14  Gerd Moellmann  <gerd@gnu.org>
1112         * xdisp.c (ensure_echo_area_buffers): New.
1113         (with_echo_area_buffer): Use it.
1114         (setup_echo_area_for_printing): Ditto.
1116         * buffer.c (indicate-empty-lines): Doc-fix.
1118 1999-11-12  Gerd Moellmann  <gerd@gnu.org>
1120         * term.c (term_init): If "op" isn't available, don't support color
1121         because we can't switch back to the default foreground and
1122         background.
1124         * doc.c (Fdocumentation_property): Remove GCPRO because
1125         Fsubstitute_command_keys gcpro's the string.
1127 1999-11-12  Kenichi Handa  <handa@etl.go.jp>
1129         * editfns.c (Ftranslate_region): Check the buffer multibyteness.
1131 1999-11-11  Gerd Moellmann  <gerd@gnu.org>
1133         * print.c, keymap.c, indent.c, insdel.c, keyboard.c, intervals.c,
1134         lread.c, textprop.c, undo.c, emacs.c, lisp.h, intervals.h,
1135         buffer.h, config.in, Makefile.in: Remove USE_TEXT_PROPERTIES.
1137 1999-11-10  Gerd Moellmann  <gerd@gnu.org>
1139         * xfns.c (QCuser_data): Removed.
1140         (syms_of_xfns): Initialization of QCuser_data removed.
1141         (parse_image_spec): Don't handle :user-data specially.  Allow
1142         unknown keys.  Remove parameter ALLOW_OTHER_KEYS.
1143         (xbm_image_p, xbm_load, xpm_image_p, pbm_image_p, png_image_p)
1144         (tiff_image_p, jpeg_image_p, gif_image_p, gs_image_p): Call
1145         parse_image_spec accordingly.
1147 1999-11-09  Richard M. Stallman  <rms@gnu.org>
1149         * cmds.c (Fbeginning_of_line): Doc fix.
1150         (Fend_of_line): Doc fix.
1152         * editfns.c (Fline_beginning_position): If N is not 1,
1153         pass t to Fconstrain_to_field for ESCAPE-FROM-EDGE.
1155         * syntax.c (Fforward_word): Handle fields even if would have hit
1156         an edge of the buffer.  Return nil if affected by fields.
1158 1999-11-09  Richard M. Stallman  <rms@gnu.org>
1160         * editfns.c (preceding_pos): Function deleted.
1161         (text_property_stickiness): Decrement POS directly.
1162         Fix a confusion that used PT instead of POS.
1164         * editfns.c (find_field): Properly handle the case
1165         of a field boundary where `field' inherits from neither side.
1167         * editfns.c (Ffield_beginning, Ffield_end): Doc fixes.
1168         (Ferase_field, Ffield_string, Ffield_string_no_properties): Doc fixes.
1170 1999-11-08  Gerd Moellmann  <gerd@gnu.org>
1172         * bytecode.c (Fbyte_code) <BinsertN, Bcall>: Do the
1173         BEFORE_POTENTIAL_GC before DISCARD.
1175 1999-11-07  Gerd Moellmann  <gerd@gnu.org>
1177         * alloc.c (Fgarbage_collect): Call unmark_byte_stack.
1179         * lisp.h: Add prototype for unmark_byte_stack.
1181         * bytecode.c (mark_byte_stack): Use XMARKBIT and XMARK.
1182         (unmark_byte_stack): Renamed from relocate_byte_pcs.  Use
1183         XUNMARK.
1185         * xdisp.c (resize_mini_window): Fix computation of needed
1186         mini-window height.
1188         * alloc.c, buffer.c, editfns.c, xdisp.c: Remove conditional
1189         compilation on USE_TEXT_PROPERTIES.
1191         * Fbyte_code: Use block statements in cases and declare v1 and v2
1192         locally there.  Rearrange case statements so that those most
1193         frequently executed come first.  Avoid goto's in frequently
1194         executed cases.
1196 1999-11-05  Gerd Moellmann  <gerd@gnu.org>
1198         * bytecode.c (Fbyte_code): Use BEFORE_POTENTIAL_GC and
1199         AFTER_POTENTIAL_GC around internal_catch.
1201         * alloc.c (Fgarbage_collect): Call mark_byte_stack and
1202         relocate_byte_pcs.
1203         (init_alloc_once, init_alloc): Set byte_stack_list to null.
1205         * eval.c (struct catchtag): Add member byte_stack.
1206         (internal_catch, Fcondition_case, internal_condition_case)
1207         (internal_condition_case_1): Save value of byte_stack_list in
1208         catchtag.
1209         (unwind_to_catch): Restore byte_stack_list from catchtag.
1211         * lisp.h: Add prototypes for new functions in bytecode.c.
1212         Add extern declaration for byte_stack_list.
1214         * bytecode.c (struct byte_stack): New.
1215         (byte_stack_list, mark_byte_stack, relocate_byte_pcs): New
1216         (BEFORE_POTENTIAL_GC, AFTER_POTENTIAL_GC): New.
1217         (FETCH, PUSH, POP, DISCARD, TOP, MAYBE_GC): Rewritten.
1218         (HANDLE_RELOCATION): Removed.
1219         (Fbyte_code): Use byte_stack structures.
1221         * filelock.c (Ffile_locked_p): Make FILENAME a required argument.
1223         * buffer.c (syms_of_buffer): Extend documentation of
1224         mode-line-format.
1226 1999-11-04  Gerd Moellmann  <gerd@gnu.org>
1228         * editfns.c (Fdelete_field): Renamed from Ferase_field.
1230         * minibuf.c (do_completion, Fminibuffer_complete_word): Use
1231         Ferase_field instead of Fdelete_field.
1233 1999-11-03  Gerd Moellmann  <gerd@gnu.org>
1235         * dispnew.c (Finternal_show_cursor): Change it to set the
1236         cursor on/off, not toggle its state.
1237         (Finternal_show_cursor_p): New.
1238         (syms_of_display): Defsubr Sinternal_show_cursor_p.
1240 1999-11-03  Dave Love  <fx@gnu.org>
1242         * charset.c (split_non_ascii_string): Define return value.
1244 1999-11-03  Gerd Moellmann  <gerd@gnu.org>
1246         * minibuf.c (string_to_object): New.
1247         (read_minibuf_noninteractive): New.
1248         (read_minibuf): Call read_minibuf_noninteractive if
1249         noninteractive.  Use string_to_object.
1251         * doc.c (Fdocumentation_property): Fix bug bypassing UNGCPRO.
1253 1999-11-02  Dave Love  <fx@gnu.org>
1255         * gnu-linux.h: Use SIGCHLD, not SIGCLD (not in glibc 2.1).
1257         * process.c: Define _GNU_SOURCE before config.h to get strsignal
1258         declared with glibc2.
1260 1999-11-02  Gerd Moellmann  <gerd@gnu.org>
1262         * lisp.h (QUIT): Give it statement form.
1264 1999-11-02  Dave Love  <fx@gnu.org>
1266         * eval.c (init_eval): Conditionalize declaration of gcpro_level.
1268 1999-11-02  Gerd Moellmann  <gerd@gnu.org>
1270         * xfns.c (QCuser_data): New.
1271         (syms_of_xfns): Initialize QCuser_data.
1272         (parse_image_spec): Ignore :user-data DATA properties.
1274         * xdisp.c (display_line): Set charpos of first glyph in blank
1275         lines not corresponding to any text to -1, even if no glyphs are
1276         filled in in that line.
1278 1999-11-01  Gerd Moellmann  <gerd@gnu.org>
1280         * xfns.c (png_load) [PNG_READ_sRGB_SUPPORTED]: Put code using
1281         png_get_sRGB in #ifdef.
1283         * dispnew.c (Finternal_show_cursor): Renamed from Fshow_cursor.
1284         (syms_of_display): Use the new name.
1286         * textprop.c (verify_interval_modification): Signal text-read-only
1287         instead of calling error.
1289         * data.c (Qtext_read_only): New built-in error.
1290         (syms_of_data): Initialize it.
1292         * lisp.h: Add extern declaration for Qtext_read_only.
1294         * syntax.c: Remove whitespace after open or in front of closing
1295         parentheses.
1297 1999-11-01  Richard M. Stallman  <rms@gnu.org>
1299         * Makefile.in (w16select.o, sound.o): Don't depend on lisp.h.
1301 1999-10-31  Gerd Moellmann  <gerd@gnu.org>
1303         * xdisp.c (resize_mini_window): Compute needed height differently.
1305         * fns.c (Flength): Unroll loop over lists.
1307         * xdisp.c (append_space): Return non-zero if space was appended.
1308         (display_line): Set charpos of first glyph to -1 only if that
1309         glyph is the space added by append_glyph.
1311 1999-10-30  Richard M. Stallman  <rms@gnu.org>
1313         * print.c (strout): Consider `noninteractive' and use stdout
1314         only when PRINTCHARFUN is t.
1316         * lisp.h (struct gcpro) [DEBUG_GCPRO]: New field `level'.
1317         (gcpro_level): Declare it extern.
1318         [DEBUG_GCPRO] (GCPRO1, GCPRO2, GCPRO3, GCPRO4, GCPRO5):
1319         Alternate definitions that set `level' and increment `gcpro_level'.
1320         [DEBUG_GCPRO] (UNGCPRO): Alternate definition that checks gcpro_level.
1322         * eval.c [DEBUG_GCPRO] (gcpro_level): New variable.
1323         (init_eval) [DEBUG_GCPRO]: Initialize it.
1324         (unwind_to_catch) [DEBUG_GCPRO]: Set gcpro_level
1325         from remaining gcprolist.
1327 1999-10-29  Kenichi Handa  <handa@etl.go.jp>
1329         * coding.c (code_convert_region): Update `dst' correctly.
1331 1999-10-28  Gerd Moellmann  <gerd@gnu.org>
1333         * fns.c (Fmemq, Fassq, Frassq, assq_no_quit, Fassoc)
1334         (Frassoc): Rewritten.
1336 1999-10-27  Noah Friedman  <friedman@splode.com>
1338         * s/gnu-linux.h [HAVE_DEV_PTMX]: Redefine FIRST_PTY_LETTER to 'z'.
1339         Define PTY_NAME_SPRINTF.
1340         Redefine PTY_TTY_NAME_SPRINTF.
1341         * config.in: Add undef for HAVE_DEV_PTMX.
1343 1999-10-26  Richard M. Stallman  <rms@gnu.org>
1345         * regex.c (POP_FAILURE_POINT): Use failure_id.integer
1346         as arg to DEBUG_POP and DEBUG_PRINT.
1348 1999-10-27  Richard M. Stallman  <rms@gnu.org>
1350         * data.c (Qad_activate_internal): Renamed from Qad_activate.
1351         (Ffset): Call Qad_activate_internal.
1352         (syms_of_data): Initialize Qad_activate_internal.
1354 1999-10-27  Gerd Moellmann  <gerd@gnu.org>
1356         * xdisp.c (echo_area_display) [HAVE_X_WINDOWS]: Do nothing if
1357         Vterminal_frame is selected and Vwindow_system is non-nil.
1359 1999-10-26  Gerd Moellmann  <gerd@gnu.org>
1361         * xdisp.c (echo_area_display): Put previous change in #if 0.
1363         * emacs.c (standard_args): Add `file' as synonym for `visit',
1364         `execute' as synonym for `eval'.
1365         (main): Add new options to usage message.
1367 1999-10-25  Gerd Moellmann  <gerd@gnu.org>
1369         * data.c (Qhash_table): New.
1370         (Ftype_of): Return it for hash tables.
1371         (syms_of_data): Initialize Qhash_table.
1373 1999-10-25  Richard M. Stallman  <rms@gnu.org>
1375         * regex.c (POP_FAILURE_POINT): Extract failure_id as an integer.
1377 1999-10-24  Ken Raeburn  <raeburn@gnu.org>
1379         * alloc.c: Undef HIDE_LISP_IMPLEMENTATION before including
1380         lisp.h.
1382         * buffer.c (Fbuffer_list, Fget_file_buffer, get_truename_buffer,
1383         Fbuffer_local_variables, Fother_buffer, record_buffer,
1384         set_buffer_internal_1, Fbury_buffer, Fkill_all_local_variables,
1385         swap_out_buffer_local_variables, overlays_at, overlays_in,
1386         overlay_touches_p, overlay_strings, recenter_overlay_lists,
1387         fix_overlays_in_range, fix_overlays_before, Foverlay_get,
1388         Foverlay_put, report_overlay_modification, evaporate_overlays):
1389         Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member
1390         references.
1391         * data.c (Fcar, Fcar_safe, Fcdr, Fcdr_safe, Fsetcar, Fsetcdr,
1392         swap_in_symval_forwarding, set_internal, default_value,
1393         Fset_default, Fmake_variable_buffer_local, Fmake_local_variable,
1394         Fmake_variable_frame_local, Flocal_variable_p,
1395         Flocal_variable_if_set_p, arithcompare, Fzerop, cons_to_long,
1396         Fnumber_to_string, float_arith_driver, Fadd1, Fsub1): Likewise.
1397         * dispnew.c (Fframe_or_buffer_changed_p): Likewise.
1398         * emacs.c (main): Likewise.
1399         * fontset.c (fs_load_font, fs_register_fontset,
1400         CACHED_FONTSET_NAME, CACHED_FONTSET_REGEX, Fquery_fontset,
1401         Fnew_fontset, Fset_fontset_font): Likewise.
1402         * frame.c (do_switch_frame, next_frame, prev_frame,
1403         other_visible_frames, Fdelete_frame, Fvisible_frame_list):
1404         Likewise.
1405         * keyboard.c (read_char, help_char_p, event_to_kboard,
1406         kbd_buffer_get_event, timer_start_idle, timer_check,
1407         make_lispy_event, apply_modifiers, reorder_modifiers,
1408         Fevent_convert_list, lucid_event_type_list_p, menu_bar_items,
1409         menu_bar_one_keymap, menu_item_eval_property_1, parse_menu_item,
1410         tool_bar_items, read_char_x_menu_prompt, read_key_sequence,
1411         Fcommand_execute, Fexecute_extended_command): Likewise.
1412         * minibuf.c (read_minibuf, get_minibuffer, Ftry_completion,
1413         Fall_completions): Likewise.
1414         * window.c (Fset_window_margins): Likewise.
1416         * callint.c (quotify_args): Don't explicitly use struct
1417         Lisp_Cons, use Lisp_Object and XCAR/XCDR instead.
1419         * s/netbsd.h (HAVE_GETLOADAVG): Define as 1.
1420         (UNEXEC, START_FILES, LIB_STANDARD, LIB_GCC): Define ELF versions,
1421         if __ELF__ is defined.
1423 1999-10-24  Gerd Moellmann  <gerd@gnu.org>
1425         * window.c (Fnext_window): Add a QUIT in the loop.
1427 1999-10-23  Gerd Moellmann  <gerd@gnu.org>
1429         * Makefile.in (bootstrap, bootstrap-emacs, bootstrap-temacs):
1430         New targets.
1432 1999-10-22  Dave Love  <fx@gnu.org>
1434         * emacs.c (main): Enable profiling conditional on __linux also.
1436 1999-10-20  Gerd Moellmann  <gerd@gnu.org>
1438         * xrdb.c (x_load_resources): Set default resources for resource
1439         classes instead of for the specific Emacs.
1441 1999-10-19  Gerd Moellmann  <gerd@gnu.org>
1443         * s/freebsd.h (HAVE_GETLOADAVG): Define as 1 because config.h
1444         defines it that way.
1446         * xdisp.c (echo_area_display) [HAVE_X_WINDOWS]: Do nothing
1447         if selected_frame is equal to Vterminal_frame.
1449 1999-10-19  Paul Eggert  <eggert@twinsun.com>
1451         Add support for large files, 64-bit Solaris, system locale codings.
1453         * Makefile.in (emacs): Set the LC_ALL environment variable to "C"
1454         when dumping, so that the dumped Emacs doesn't have stray locale info.
1455         (dired.o): Depend on systime.h.
1456         (editfns.o): Depend on coding.h.
1458         * alloc.c, buffer.c, callproc.c, ccl.c, charset.c, coding.c, data.c,
1459         dispnew.c, editfns.c, emacs.c, filelock.c, floatfns.c, hftctl.c,
1460         keyboard.c, process.c, sysdep.c, unexelf.c, unexhp9k800.c,
1461         unexsunos4.c, vmsfns.c, vmsgmalloc.c, w32faces.c, w32menu.c, w32term.c,
1462         w32xfns.c, xfaces.c, xfns.c, xmenu.c, xterm.c:
1463         Include <config.h> before any system include files.
1465         * alloc.c, buffer.c, ccl.c, data.c, editfns.c, emacs.c, eval.c,
1466         fileio.c, filelock.c, frame.c, insdel.c, keymap.c, lread.c,
1467         m/alpha.h, print.c, search.c, sysdep.c, xdisp.c, xfaces.c, xfns.c,
1468         xmenu.c, xterm.c:
1469         Do not include <stdlib.h>, as <config.h> does this now.
1471         * callproc.c (Fcall_process):
1472         Synchronize messages locale before invoking strerror.
1473         Decode resulting string with locale-coding-system.
1475         * coding.c (Vlocale_coding_system): New var.
1476         (syms_of_coding): Adjust to above change.
1477         (emacs_strerror): New function.
1479         * coding.h (emacs_strerror, Vlocale_coding_system): New decls.
1481         * config.in (HAVE_STDIO_EXT_H, HAVE_TM_GMTOFF, HAVE___FPENDING,
1482         HAVE_FTELLO, HAVE_GETLOADAVG, HAVE_MBLEN, HAVE_MBRLEN,
1483         HAVE_STRSIGNAL): New macros.
1484         (BITS_PER_LONG): Default to 64 if _LP64 is defined.
1485         <stdlib.h>: Include if HAVE_STDLIB_H is defined and NOT_C_CODE isn't.
1487         * dired.c: Include "systime.h".
1488         (Ffile_attributes): Do not cast s.st_size to int; this loses
1489         information if int is 32 bits but st_size and EMACS_INT are larger.
1490         Treat large device numbers like large inode numbers.
1492         * dispnew.c (PENDING_OUTPUT_COUNT): Use __fpending if available.
1494         * editfns.c: Include coding.h.
1495         (emacs_strftime): Remove decl.
1496         (emacs_strftimeu): New decl.
1497         (emacs_memftimeu): Renamed from emacs_memftime; new arg UT.
1498         Use emacs_strftimeu instead of emacs_strftime.
1499         (Fformat_time_string): Convert format string using
1500         Vlocale_coding_system, and convert result back.  Synchronize time
1501         locale before invoking lower level function.  Invoke
1502         emacs_memftimeu, passing ut, instead of emacs_memftime.
1504         * emacs.c: Include <locale.h> if HAVE_SETLOCALE is defined.
1505         (Vmessages_locale, Vprevious_messages_locale, Vtime_locale,
1506         Vprevious_time_locale): New variables.
1507         (main): Invoke setlocale early, so that initial error messages are
1508         localized properly.  But skip locale-setting if LC_ALL is "C".
1509         Fix up locale when it's safe to do so.
1510         (fixup_locale): Moved here from xterm.c.
1511         (synchronize_locale, synchronize_time_locale,
1512         synchronize_messages_locale): New functions.
1513         (syms_of_emacs): Accommodate above changes.
1515         * fileio.c (report_file_error): Convert strerror output according
1516         to Vlocale_coding_system.
1517         (Finsert_file_contents): Check for arithmetic overflow in
1518         computations that depend on file size.  Report IO errors
1519         with emacs_strerror, not strerror.
1521         * fns.c (Fgethash): Declare dflt parameter.
1523         * gmalloc.c: Do not define const to nothing if HAVE_CONFIG_H
1524         is defined; that's config.h's job.
1526         * lisp.h (EMACS_INT, BITS_PER_EMACS_INT, EMACS_UINT): If _LP64,
1527         default these values to long, BITS_PER_LONG, and unsigned long.
1528         (VALBITS, MARKBIT, XINT): Do not assume 32-bit EMACS_INT.
1529         (PNTR_COMPARISON_TYPE): Default to EMACS_UINT, not to unsigned int.
1530         (code_convert_string_norecord, fixup_locale,
1531         synchronize_messages_locale, synchronize_time_locale,
1532         emacs_open, emacs_close, emacs_read, emacs_write): New decls.
1533         All Emacs callers of open, close, read, write changed to use
1534         emacs_open, emacs_close, emacs_read, emacs_write.
1536         * lread.c (file_offset, file_tell): New macros.  All uses of ftell
1537         changed to file_tell.
1538         (saved_doc_string_position, prev_saved_doc_string_position): Now
1539         of type file_offset.
1540         (init_lread): Do not fix locale here; fixup_locale now does this.
1542         * m/amdahl.h, s/usg5-4.h:
1543         (NSIG): Remove.
1544         (NSIG_MINIMUM): New macro.
1546         * m/cydra5.h, m/dpx2.h, m/mips.h, m/pfa50.h, m/sps7.h, m/stride.h,
1547         m/ustation.h, s/gnu-linux.h, s/hpux.h, s/iris3-5.h, s/iris3-6.h,
1548         s/umips.h, s/usg5-4.h:
1549         (SIGIO): Do not undef.
1550         (BROKEN_SIGIO): New macro.
1552         * m/ustation.h:
1553         (SIGTSTP): Do not undef.
1554         (BROKEN_SIGTSTP): New macro.
1556         * s/gnu-linux.h:
1557         (SIGPOLL, SIGURG): Do not undef.
1558         (BROKEN_SIGPOLL, BROKEN_SIGURG): New macros.
1560         * s/ptx4.h:
1561         (SIGINFO): Do not undef.
1562         (BROKEN_SIGINFO): New macros.
1564         * m/delta.h, s/ptx.h, s/template.h: Doc fix.
1566         * mktime.c, strftime.c: Update to glibc 2.1.2 version, with
1567         some Emacs-related changes merged.
1569         * print.c (float_to_string): Prepend "-" to representation of a
1570         NaN if the NaN is negative.
1572         * process.c (sys_siglist): Omit if HAVE_STRSIGNAL.
1573         (wait_reading_process_input): Use emacs_strerror, not strerror.
1575         * process.c (status_message, sigchld_handler): Synchronize locale,
1576         then use strsignal istead of sys_siglist.
1577         * w32proc.c (sys_wait): Likewise.
1579         * s/aix3-1.h, s/bsd4-1.h, s/dgux.h, s/gnu-linux.h, s/hiuxmpp.h,
1580         s/hpux.h, s/iris3-5.h, s/iris3-6.h, s/irix3-3.h, s/osf1.h, s/rtu.h,
1581         s/sunos4-1.h, s/unipl5-0.h, s/unipl5-2.h, s/usg5-0.h, s/usg5-2-2.h,
1582         s/usg5-2.h, s/usg5-3.h, s/xenix.h:
1583         (open, close, read, write, INTERRUPTIBLE_OPEN,
1584         INTERRUPTIBLE_CLOSE, INTERRUPTIBLE_IO): Remove.
1586         * s/sol2-5.h (_LARGEFILE_SOURCE, _FILE_OFFSET_BITS): New macros.
1588         * sysdep.c (sys_read, sys_write, read, write, sys_close, close,
1589         sys_open, open): Remove.
1590         (emacs_open, emacs_close, emacs_read, emacs_write): Always define;
1591         the old INTERRUPTIBLE_OPEN, INTERRUPTIBLE_CLOSE, and INTERRUPTIBLE_IO
1592         macros are no longer used.
1593         (emacs_open): Renamed from sys_open.  Merge BSD4_1 version.
1594         (emacs_close): Renamed from sys_close.
1595         (emacs_read): Renamed from sys_read.
1596         (emacs_write): Renamed from sys_write.
1597         (sys_siglist): Do not declare if HAVE_STRSIGNAL.
1598         (dup2): Do not print error on failure; the real dup2 doesn't.
1599         (strsignal): New function, defined if !HAVE_STRSIGNAL.
1601         * syssignal.h (SIGINFO): Undef if defined and if BROKEN_SIGINFO
1602         is defined.
1603         (SIGIO, SIGPOLL, SIGTSTP, SIGURG): Likewise.
1604         (NSIG): If less than NSIG_MINIMUM, define to NSIG_MINIMUM.
1605         (strsignal): Declare if !HAVE_STRSIGNAL.
1607         * unexelf.c (ElfBitsW, ELFSIZE, ElfExpandBitsW): New macros.
1608         (ElfW): Define in terms of ElfExpandBitsW.
1610         * w32proc.c (sys_siglist): Remove decl.
1612         * xdisp.c (decode_mode_spec): 3rd arg is int, not char, to comply
1613         with ANSI C.
1614         (display_string): Declare face_string_pos arg.
1616         * xfns.c (Fx_show_tip): Declare timeout param.
1618         * xterm.c: No need to include locale.h.
1619         (x_alloc_lighter_color, x_setup_relief_color):
1620         Pass arg as double, not float, for compatibility with ANSI C.
1621         (fixup_locale): Move to emacs.c.
1622         (x_term_init): Do not setlocale or fixup locale; the main program
1623         does this now.
1625 1999-10-18  Dave Love  <fx@gnu.org>
1627         * doc.c (Fdocumentation_property): Gcpro `tem'.
1629 1999-10-18  Kenichi Handa  <handa@etl.go.jp>
1631         * lread.c (Fload): Calculate bytes of filename correctly.
1632         (openp): Likewise.
1634 1999-10-18  Keisuke Nishida  <kxn30@po.cwru.edu>
1636         * print.c (print_preprocess): In case print-circle is nil,
1637         add OBJ to Vprint_number_table only when OBJ is a symbol.
1639 1999-10-18  Kenichi Handa  <handa@etl.go.jp>
1641         * coding.c (code_convert_string): Add record_unwind_protect to
1642         assure setting inhibit_pre_post_conversion back to zero.  Take
1643         care of the multibyteness of the working buffer.
1645         * coding.c (inhibit_pre_post_conversion): New variable.
1646         (setup_coding_system): If inhibit_pre_post_conversion is nonzero,
1647         ignore post-read-conversion and pre-write-conversion property of
1648         the coding system.
1649         (code_convert_region_unwind): New function.
1650         (code_convert_region): Set inhibit_pre_post_conversion to 1 while
1651         running pre-write-conversion and post-read-conversion.
1652         (code_convert_string): Likewise.
1654 1999-10-17  Miles Bader  <miles@gnu.org>
1656         * editfns.c: Doc fix.
1658 1999-10-17  Miles Bader  <miles@gnu.org>
1660         * editfns.c (Fconstrain_to_field): Make sure we don't violate the
1661         argument preconditions of find_before_next_newline in the case
1662         where both ONLY_IN_LINE and ESCAPE_FROM_EDGE are set and OLD_POS
1663         was indeed at the edge.
1665 1999-10-17  Miles Bader  <miles@gnu.org>
1667         * minibuf.c (Fminibuffer_complete_and_exit): Supply value for new
1668         ESCAPE_FROM_EDGE parameter to Ffield_beginning.
1670         * editfns.c (text_property_eq, text_property_stickiness): Don't
1671         use initializers for auto variables of type Lisp_Object.
1672         (find_field): Likewise.  Use braces around nested ifs.
1673         (Fline_end_position): Store the raw eol in a variable, so that the
1674         final expression doesn't look so ugly.
1675         (Fconstrain_to_field): Doc fix.
1676         (preceding_pos): Renamed from `preceeding_pos'.
1677         (text_property_stickiness, find_field): Call preceding_pos,
1678         not preceeding_pos.
1680 1999-10-17  Miles Bader  <miles@gnu.org>
1682         * editfns.c (Ffield_string_no_properties): New function.
1683         (text_property_stickiness, preceeding_pos): New functions.
1684         (Ffield_string): Remove PROPS parameter.
1685         (find_field): Add MERGE_AT_BOUNDARY parameter.
1686         Rewrite to use stickiness of `field' property to resolve
1687         ambiguous cases.
1688         (Ffield_beginning, Ffield_end): Add ESCAPE_FROM_EDGE parameter.
1689         (Fconstrain_to_field): Likewise.
1690         (syms_of_editfns): Init Sfield_string_no_properties.
1691         (Ffield_string, Ferase_field, Ffield_end):
1692         Supply new MERGE_AT_BOUNDARY argument to find_field.
1693         (Fline_beginning_position, Fline_end_position): Supply new
1694         ESCAPE_FROM_EDGE parameter to Fconstrain_to_field.
1695         Pass a value of Qt for the ONLY_IN_LINE argument to
1696         Fconstrain_to_field (only matters if N != 1).
1697         * syntax.c (Fforward_word): Supply new ESCAPE_FROM_EDGE parameter
1698         to Fconstrain_to_field.
1700         * minibuf.c (Fminibuffer_complete_word): Use
1701         Ffield_beginning to find the prompt end.
1703 1999-10-17  Miles Bader  <miles@gnu.org>
1705         * editfns.c (Fconstrain_to_field): Add get/set-current-point
1706         behavior when NEW_POS is nil.
1707         (find_field): Use XSETFASTINT instead of make_number.
1708         * minibuf.c (Fminibuffer_complete_and_exit): Test for an empty
1709         input string by seeing where the field begins, instead of
1710         looking at text-properties.
1712 1999-10-17  Miles Bader  <miles@gnu.org>
1714         * editfns.c (Qfield): New variable.
1715         (find_field, Ferase_field, Ffield_string,
1716         Ffield_beginning, Ffield_end, Fconstrain_to_field): New functions.
1717         (Fline_beginning_position, Fline_end_position): Constrain to any field.
1718         (make_buffer_string_both): Remove minibuffer-prompt hack.
1719         (syms_of_editfns): Initialize Qfield, and subr entries for
1720         field functions above.
1721         * minibuf.c (read_minibuf): Don't save minibuffer prompt length on
1722         minibuf_save_list.
1723         Don't initialize minibuffer prompt length.
1724         Wrap prompt text-properties around the entire prompt.
1725         Add 'prompt text-property to prompt.
1726         Get final value with Ffield_string instead of make_buffer_string.
1727         (read_minibuf_unwind): Don't restore minibuffer prompt length from
1728         minibuf_save_list.
1729         (do_completion): Get minibuffer input with Ffield_string
1730         instead of Fbuffer_string.
1731         Erase minibuffer input with Ferase_field instead of erase_buffer.
1732         (Fminibuffer_complete_and_exit): Likewise.
1733         Test whether buffer is empty by looking for the 'prompt text
1734         property at the end.
1735         Set prompt length by looking for the end of the prompt text property,
1736         and save prompt length for later use (since there is no longer a
1737         buffer variable to get it from).
1738         (Fminibuffer_prompt_width, Fminibuffer_prompt_end): Functions removed.
1739         (syms_of_minibuf): Remove initializations of
1740         Sminibuffer_prompt_width and Sminibuffer_prompt_end.
1741         * buffer.h (struct buffer): Remove prompt_end_charpos field.
1742         * buffer.c (Fget_buffer_create, Fmake_indirect_buffer, Fkill_buffer):
1743         Don't initialize prompt_end_charpos field.
1744         * syntax.c (Fforward_word): Likewise.
1745         Constrain to any field.
1747 1999-10-16  Gerd Moellmann  <gerd@gnu.org>
1749         * window.c (enum save_restore_action): New.
1750         (save_restore_orig_size): Change parameter list.  Add
1751         functionality to check for valid orig_top and orig_height members
1752         in a window tree.
1753         (grow_mini_window): Call save_restore_orig_size with new parameter
1754         list.
1755         (shrink_mini_window): Restore old window sizes only if old
1756         size information is valid in all windows in a window tree.
1758 1999-10-15  Gerd Moellmann  <gerd@gnu.org>
1760         * xmenu.c (set_frame_menubar): Don't call
1761         x_set_menu_resources_from_menu_face here.
1762         (update_frame_menubar): Call x_set_menu_resources_from_menu_face.
1764         * xfns.c (gif_load): Fix handling of interlaced GIFs.
1766 1999-10-14  Dave Love  <fx@gnu.org>
1768         * xdisp.c (handle_fontified_prop): GCPRO `pos'.
1770 1999-10-14  Gerd Moellmann  <gerd@gnu.org>
1772         * process.c (Fopen_network_stream): Don't loop if gethostbyname
1773         fails and h_errno is TRY_AGAIN.
1775 1999-10-13  Dave Love  <fx@gnu.org>
1777         * filelock.c (lock_file): Move gcpro of `fn'.
1779 1999-10-10  Gerd Moellmann  <gerd@gnu.org>
1781         * keyboard.c (auto-save-interval): Fix documentation.
1783 1999-10-09  Richard M. Stallman  <rms@gnu.org>
1785         * print.c (print): When removing objects from Vprint_number_table,
1786         only scan the newly added objects.
1787         (print_preprocess): If OBJ is a gensym, and print-continuous-numbering,
1788         unconditionally force it to stay in the table.
1790 1999-10-09  Gerd Moellmann  <gerd@gnu.org>
1792         * xfns.c (prepare_image_for_display): Don't try to load image if
1793         loading it failed before.
1794         (lookup_image, prepare_image_for_display): Remember if loading the
1795         image failed.
1796         (xpm_load): Add missing UNBLOCK_INPUT.
1798         * dispextern.h (struct image): New member load_failed_p.
1800 1999-10-08  Stefan Monnier  <monnier@cs.yale.edu>
1802         * fileio.c (Fmake_temp_name): Add a reference to `make-temp-file'
1803         in the docstring.
1805 1999-10-08  Gerd Moellmann  <gerd@gnu.org>
1807         * xterm.c (XTread_socket) <ClientMessage, WM_TAKE_FOCUS>:
1808         Don't call XSetInputFocus because that can generate additional
1809         FocusIn events.
1811 1999-10-07  Jeffrey C Honig <jch@bsdi.com>
1813         * bsdos4.h [HAVE_LIBNCURSES]: Define TERMINFO and LIBS_TERMCAP.
1815 1999-10-07  Richard M. Stallman  <rms@gnu.org>
1817         * process.c (wait_reading_process_input): When trying to suck
1818         input from one process, for accept-process-output,
1819         exit that loop if we get EAGAIN or EWOULDBLOCK.
1821 1999-10-07  Gerd Moellmann  <gerd@gnu.org>
1823         * xfaces.c (Qbitmap_spec_p): Replaces Qpixmap_spec_p.
1824         (Fbitmap_spec_p): Replaces Fpixmap_spec_p.
1825         (load_pixmap): Use Fbitmap_spec_p and Qbitmap_spec_p instead of
1826         Fpixmap_spec_p and Qpixmap_spec_p.
1827         (load_face_colors, check_lface_attrs,
1828         merge_face_vector_with_property,
1829         Finternal_set_lisp_face_attribute): Use Fbitmap_spec_p.
1830         (syms_of_xfaces): Initialize Qbitmap_spec_p, defsubr
1831         Fbitmap_spec_p.
1833 1999-10-07  Gerd Moellmann  <gerd@gnu.org>
1835         * xdisp.c (display_menu_bar): Use MENU_FACE_ID instead of
1836         MODE_LINE_FACE_ID.
1838         * xfaces.c (toplevel) [USE_MOTIF]: Include some Motif headers.
1839         (struct x_resources) [USE_X_TOOLKIT]: New.
1840         (xm_apply_resources, xm_set_menu_resources_from_menu_face)
1841         [USE_MOTIF]: New.
1842         (xl_apply_resources, xl_set_menu_resources_from_menu_face)
1843         [USE_LUCID]: New.
1844         (x_set_menu_resources_from_menu_face) [USE_X_TOOLKIT]: New.
1845         (Qmenu): New.
1846         (syms_of_xfaces): Initialize Qmenu.
1847         (realize_basic_faces): Realize face `menu'.
1848         (resolve_face_name): New.
1849         (lface_from_face_name): Use it.
1850         (Finternal_set_lisp_face_attribute): Ditto.
1851         (Fpixmap_spec_p): Rewritten.  Extend doc string.
1853         * xmenu.c (set_frame_menubar, xmenu_show): Call
1854         x_set_menu_resources_from_menu_face.
1856         * dispextern.h (enum face_id): Add MENU_FACE_ID.
1857         (toplevel): Include X11/Intrinsic.h.
1859 1999-10-03  Ken'ichi Handa  <handa@gnu.org>
1861         * coding.c (DECODE_CHARACTER_ASCII): Decode ASCII invocated to GR
1862         correctly.
1864 1999-09-30  Kenichi Handa  <handa@etl.go.jp>
1866         * category.c (modify_lower_category_set): Set default value of
1867         TABLE correctly.
1869         * minibuf.c (Fminibuffer_complete_word): Calculate string byte
1870         size correctly.
1872 1999-09-29  Gerd Moellmann  <gerd@gnu.org>
1874         * editfns.c (Fpropertize): Renamed from Fproperties.
1876 1999-09-29  Gerd Moellmann  <gerd@gnu.org>
1878         * xdisp.c (resize_mini_window): Do nothing if frame is an X
1879         frame that hasn't been initialized yet.
1881 1999-09-28  Richard M. Stallman  <rms@gnu.org>
1883         * keymap.c (Fsingle_key_description): Make tem big enough.
1884         (describe_buffer_bindings): Make buf big enough.
1886 1999-09-27  Richard M. Stallman  <rms@gnu.org>
1888         * intervals.c (get_local_map): Use indirect_function,
1889         not Findirect_function.
1891 1999-09-27  Dave Love  <fx@gnu.org>
1893         * cm.h: Remove unneeded declaration of ospeed.
1895 1999-09-26  Gerd Moellmann  <gerd@gnu.org>
1897         * lisp.h (toplevel): Add prototype for
1898         next_single_char_property_change.
1900         * textprop.c (next_single_char_property_change): New.
1902         * xdisp.c (display_prop_end, invisible_text_between_p): Use
1903         next_single_char_property_change.
1905 1999-09-25  Gerd Moellmann  <gerd@gnu.org>
1907         * editfns.c (Fproperties): New.
1908         (syms_of_editfns): Defsubr it.
1910         * xfns.c (lookup_image): Set image's timestamp because it's
1911         used when we look it up.
1913 1999-09-23  Gerd Moellmann  <gerd@gnu.org>
1915         * window.c (enlarge_window): Add window parameter instead of using
1916         selected_window.
1917         (Fdisplay_buffer): Call it with window parameter instead of
1918         setting selected_window.
1919         (Fenlarge_window, Fshrink_window): Ditto.
1920         (shrink_mini_window): If there is no recorded height and position
1921         info, resize mini-window to height 1.
1923         * xfns.c (image_error): Use add_to_log.
1925         * xfaces.c (load_pixmap): Call add_to_log without frame parameter.
1926         (load_face_font_or_fontset, load_color,
1927         merge_face_vector_with_property): Ditto.
1929         * dispextern.h: Add prototype for add_to_log.
1931         * xfaces.c (add_to_log): Move to xdisp.c.
1933         * xdisp.c (add_to_log): Moved from xfaces.c.  Remove frame
1934         parameter.
1936 1999-09-23  Gerd Moellmann  <gerd@gnu.org>
1938         * xterm.c (XTread_socket) <MotionNotify>: Change #ifdef
1939         USE_X_TOOLKIT to #ifdef USE_TOOLKIT_SCROLL_BARS.
1941         * xdisp.c (resize_mini_window): Use grow_mini_window and
1942         shrink_mini_window.
1944         * window.c (window_min_size): Add parameter ignore_fixed_p.
1945         (change_window_height): Call window_min_size with new parameter.
1946         (shrink_window_lowest_first, save_restore_orig_size,
1947         grow_mini_window, shrink_mini_window): New.
1948         (make_window, replace_window): Initialize orig_top and
1949         orig_height.
1950         (enlarge_window): Renamed from change_window_height.  Make it
1951         static.
1952         (Fdisplay_buffer, Fenlage_window, Fshrink_window): Call
1953         enlarge_window instead of change_window_height.
1955         * window.h (struct window): New members orig_top, orig_height.
1956         (toplevel): Add prototypes for grow_mini_window and
1957         shrink_mini_window.  Remove prototype for change_window_height.
1959 1999-09-21  Eli Zaretskii  <eliz@gnu.org>
1961         * frame.c (frame_name_fnn_p): Fix previous change.
1963 1999-09-20  Gerd Moellmann  <gerd@gnu.org>
1965         * minibuf.c (toplevel): Move include of stdio.h to other includes.
1967         * dispnew.c (direct_output_for_insert): Cast arguments to
1968         safe_bcopy to char *.
1970         * lread.c (readchar): Remove unused variables.
1971         (read_filtered_event, read1, Fmapatoms): Ditto.
1972         (toplevel): Include intervals.h.
1974         * eval.c (Fsignal): Remove unused variables.
1975         (Fcommandp, do_autoload): Ditto.
1977         * lisp.h: Add prototype for safe_bcopy, fatal.
1979         * editfns.c (init_editfns): Remove unused variables.
1980         (Fgoto_char, Fchar_after, Fformat): Ditto.
1981         (message_text, message_length): Put in #ifndef HAVE_MENUS.
1983         * data.c (find_symbol_value): Remove unused variables.
1984         (Faref, Fstring_to_number): Ditto.
1985         (toplevel): Include stdio.h.
1986         (Fnumber_to_string): Cast XINT to long for %ld.
1988         * casefiddle.c (casify_object): Remove unused variables.
1989         (casify_region): Ditto.
1991         * filelock.c (get_boot_time): Put local variable used in
1992         conditinally compiled section in #ifdef.
1993         (toplevel): Include stdio.h.
1995         * keymap.c (Flookup_key, Faccessible_keymaps, describe_vector,
1996         keys_of_keymap, syms_of_keymap): Remove unused variables.
1998 1999-09-20  Gerd Moellmann  <gerd@gnu.org>
2000         * xdisp.c (sync_frame_with_window_matrix_rows): Disable frame rows
2001         whose corresponding window rows have been disabled in
2002         try_window_id.
2004 1999-09-20  Gerd Moellmann  <gerd@gnu.org>
2006         * xdisp.c (compute_window_start_on_continuation_line): Handle case
2007         that window start is out of range.
2008         (handle_display_prop, handle_single_display_prop): Replace
2009         marginal area specifications like `left-margin' with `(margin
2010         left-margin)'.
2011         (Qmargin): New.
2012         (syms_of_xdisp): Initialize Qmargin.
2014 1999-09-19  Gerd Moellmann  <gerd@gnu.org>
2016         * syntax.c (update_syntax_table, find_defun_start, back_comment,
2017         describe_syntax, skip_chars): Remove unused variables.
2018         (back_comment, forw_comment): Add braces to if-statement with
2019         if-else as dependent statement.
2021         * process.c (list_processes_1): Remove unused variables.
2022         (Fopen_network_stream, create_process): Add parentheses to
2023         conditional expressions.
2024         (create_process): Put declaration of sigchld in #if 0.
2025         (Fopen_network_stream): Removed unused variables.
2026         (Fopen_network_stream, wait_reading_process_input,
2027         wait_reading_process_input, send_process, send_process): Ditto.
2028         (toplevel): Add prototypes for set_waiting_for_input and
2029         keyboard_bit_set.
2031         * abbrev.c (Fexpand_abbrev): Remove unused variables.
2033         * textprop.c (Fset_text_properties): Remove unused variables.
2034         (text_property_list, verify_interval_modification,
2035         interval_has_all_properties): Ditto.
2037         * callproc.c (toplevel) [HAVE_UNISTD_H]: Include unistd.h.
2038         (Fcall_process): Remove unused variable.
2040         * keyboard.c (Frecursive_edit): Remove unused variable.
2041         (command_loop_1, safe_run_hooks, kbd_buffer_get_event,
2042         timer_check, make_lispy_event, menu_bar_items,
2043         menu_bar_one_keymap, menu_bar_item, parse_menu_item,
2044         parse_tool_bar_item, read_char_x_menu_prompt, read_key_sequence,
2045         kbd_buffer_get_event, make_lispy_event, read_char_x_menu_prompt,
2046         read_key_sequence): Ditto.  Fread_key_sequence,
2047         Fread_key_sequence_vector, Fsuspend_emacs): Ditto.
2048         (read_key_sequence) [GOBBLE_FIRST_EVENT]: Put local variables only
2049         used when GOBBLE_FIRST_EVENT is defined in #ifdef
2050         (Fexecute_extended_command): Cast XINT to long for %ld.
2051         (toplevel) [HAVE_UNISTD_H]: Include unistd.h.
2052         (toplevel): Include sys/types.h.
2054         * lisp.h (RETURN_UNGCPRO): Use do-while (0) idiom.
2055         (toplevel): Add prototypes for stuff_char, and
2056         code_convert_string_norecord.
2058 1999-09-19  Gerd Moellmann  <gerd@gnu.org>
2060         * buffer.h: Add prototype for r_re_alloc.
2062         * insdel.c (copy_text): Removed unused variables.
2063         (count_combining_after, count_combining_after, insert_1_both,
2064         insert_from_string_1, insert_from_buffer_1, check_markers): Ditto.
2065         (adjust_after_replace, replace_range): Add parentheses to logical
2066         expressions.  Remove unused variables.
2067         (CHECK_BYTE_COMBINING_FOR_INSERT): Add parentheses to logical
2068         expression.
2070         * alloc.c (Fgarbage_collect): Remove unused variable.
2071         (compact_strings): Add parentheses around assignments in
2072         conditional context.
2073         (toplevel): Put declaration of unused function clear_marks
2074         in #if 0 like its definition.
2076         * lisp.h: Add prototype for shrink_regexp_cache,
2077         sweep_weak_hash_tables.
2079 1999-09-19  Dave Love  <fx@gnu.org>
2081         * process.c (Fopen_network_stream): Use strerror, not gai_strerror.
2083         * doc.c (read_bytecode_char): Declare arg.
2085         * lisp.h: Declare Fcurrent_message, Fmake_temp_name,
2086         read_bytecode_char, Fx_hide_busy_cursor, getloadavg.
2088 1999-09-18  Richard Stallman  <rms@gnu.org>
2090         * xdisp.c (echo_area_display): Turn off code that returned
2091         without doing anything when using a terminal frame.
2093 1999-09-17  Richard M. Stallman  <rms@gnu.org>
2095         * unexelf.c (unexec): Don't get confused by a short section
2096         just before the bss section.
2098 1999-09-16  Gerd Moellmann  <gerd@gnu.org>
2100         * emacs.c (main): Remove unused variables.
2101         (sort_args, Fkill_emacs, Fkill_emacs): Ditto.
2103         * lisp.h: Add prototype for uninterrupt_malloc, memory_warnings,
2104         init_fileio_once, syms_of_sound, init_xfns, init_fns
2105         init_sound, check_message_stack.
2107         * emacs.c (toplevel) [HAVE_UNISTD_H]: Include unistd.h.
2109         * intervals.c (rotate_right, rotate_left): Add braces to avoid
2110         ambiguous else warning.
2111         (split_interval_left): Remove unused variables.
2112         (previous_interval, adjust_intervals_for_deletion,
2113         set_point_both, set_point_both, set_intervals_multibyte_1): Ditto.
2114         (icount, idepth, zero_length): Move into #if 0 section below
2115         original position where these are used.
2117         * buffer.h [REL_ALLOC]: Add prototypes for r_alloc and r_alloc_free.
2119         * buffer.c (Fkill_buffer): Remove unused variables.
2120         (Fkill_buffer, overlays_at, overlays_in, recenter_overlay_lists,
2121         fix_overlays_in_range, Fmove_overlay, Fprevious_overlay_change,
2122         init_buffer_once, (syms_of_buffer): Ditto.
2124         * xrdb.c (get_fallback): Remove unused variable.
2125         (x_load_resources): Ditto.  Put local variable used for Motif only
2126         in #ifdef USE_MOTIF.
2128 1999-09-16  Gerd Moellmann  <gerd@gnu.org>
2130         * minibuf.c (read_minibuf): Remove unused variables.
2131         (read_minibuf, Fread_buffer, scmp, Fcompleting_read): Ditto.
2132         (do_completion): Move assignment out of conditional context.
2133         (Fdisplay_completion_list): Add parentheses to conditional expression.
2135         * cm.c (toplevel) [HAVE_TERMCAP_H]: Include termcap.h.
2137         * lisp.h: Add prototype for no_switch_window.
2139         * window.c (Fset_window_buffer): Remove unused variables.
2140         (Fset_window_margins): Ditto.
2142         * xdisp.c (resize_mini_window): Temporarily set the selected
2143         window's or Vminibuf_scroll_window's height to "fixed" around
2144         the call the change_window_height.
2146         * window.c (window_fixed_size_p): Check window's height_fixed_p
2147         flag.
2149         * window.h (struct window): New member height_fixed_p.
2151         * dispnew.c (direct_output_forward_char): Don't use this method
2152         if showing a message or a message was just cleared because we
2153         might need to resize the mini-window.
2155 1999-09-16  Gerd Moellmann  <gerd@gnu.org>
2157         * frame.c (Fdelete_frame): Correct local variable pointing to
2158         selected frame after selecting new frame.
2160 1999-09-15  Richard Stallman  <rms@gnu.org>
2162         * puresize.h (BASE_PURESIZE): Increase to 525000.
2164         * filelock.c (Vtemporary_file_directory): New variable.
2165         (syms_of_filelock): Set up Lisp variable.
2167 1999-09-15  Gerd Moellmann  <gerd@gnu.org>
2169         * term.c (OUTPUT_IF, OUTPUT1_IF): Use do-while.
2170         (encode_terminal_code): Remove unused variables.
2171         (turn_off_face): Ditto.
2172         (toplevel): Include termcap.h if HAVE_TERMCAP_H.
2174         * dispnew.c (update_frame_line): If writing whole desired line,
2175         don't clear to end of line if already at the end.
2177 1999-09-15  Gerd Moellmann  <gerd@gnu.org>
2179         * xdisp.c (resize_mini_window): Don't report changed window
2180         height if it actually hasn't changed.
2182         * widget.c (set_frame_size, EmacsFrameSetCharSize):  Remove
2183         unused variables.
2184         (mark_shell_size_user_specified): Put in #if 0 because not used.
2185         (create_frame_gcs): Put in #if 0 because currently unused.
2186         (first_frame_p): Ditto.
2188         * xmenu.c (single_menu_item, Fx_popup_menu, Fx_popup_menu,
2189         single_submenu, update_frame_menubar, set_frame_menubar,
2190         free_frame_menubar, xmenu_show, xdialog_show): Remove unused
2191         variables.
2193         * print.c (PRINTFULLP): Removed because it is no longer used and
2194         is misleading.
2195         (Ferror_message_string): Remove unused variables.
2196         (print_object): Cast argument of sprintf to long for `%ld'
2197         specifier.  Remove unused variable.
2199 1999-09-14  Gerd Moellmann  <gerd@gnu.org>
2201         * sound.c (Fplay_sound): Remove usused variables.
2202         (be2hs): Put in #if 0 because it's currently not used.
2204 1999-09-14  Ken Raeburn  <raeburn@gnu.org>
2206         * print.c (Ferror_message_string, print_error_message,
2207         print_object): Use XCAR, XCDR and XFLOAT_DATA instead of explicit
2208         member access.
2210 1999-09-14  Gerd Moellmann  <gerd@gnu.org>
2212         * frame.h (CHECK_FRAME, CHECK_LIVE_FRAME): Put code in do-while.
2214         * frame.c (Fnext_frame): Remove unused variable(s).
2215         (Fprevious_frame, Fmouse_pixel_position, frame_name_fnn_p): Ditto.
2216         (store_frame_param): Add parentheses to conditional expression.
2217         (Fmodify_frame_parameters): Remove unused variables.
2218         (Fmodify_frame_parameters, Fset_frame_size, Fset_frame_position):
2219         Ditto.
2221         * xfns.c (x_set_background_color): Remove unused variable(s).
2222         (x_set_border_pixel): Ditto.
2223         (x_set_menu_bar_lines): Put local variable used only for
2224         non-toolkit case in #ifdef/#endif.
2225         (x_figure_window_size): Remove unused variable(s).
2226         (x_figure_window_size, x_window, lookup_image,
2227         xbm_read_bitmap_file_data, x_build_heuristic_mask, pbm_load,
2228         png_load, jpeg_load, gif_load, x_create_tip_frame,
2229         x_create_tip_frame, Fx_show_tip, x_set_border_pixel): Ditto.
2231         * xterm.c (x_scroll_bar_handle_click): Compile only if
2232         not USE_TOOLKIT_SCROLL_BARS.
2233         (x_scroll_bar_set_handle, x_scroll_bar_note_movement): Ditto.
2235         * dispextern.h: Add prototypes for gamma_correct and
2236         x_kill_gs_process.
2238         * xterm.c (x_produce_glyphs): Remove unused variable(s).
2239         (x_alloc_nearest_color_for_widget, note_tool_bar_highlight,
2240         x_set_toolkit_scroll_bar_thumb): Ditto.
2241         (x_scroll_bar_create): Move local variable to the
2242         conditionally compiled section of code where it is used.
2243         (x_scroll_bar_create): Remove unused variable(s).
2244         (x_scroll_bar_remove, XTread_socket): Ditto.
2245         (XTread_socket) <ConfigureNotify>: Move variables used for
2246         non-toolkit case into conditionally compiled section of code.
2248         * window.h (freeze_window_starts): Fix typo in prototype.
2250         * xdisp.c (display_echo_area_1, try_window_id): Remove unused
2251         variable(s).
2253         * lisp.h: Add prototype for debug_print.
2255         * dispextern.h (xassert) [GLYPH_DEBUG]: Change definition
2256         to use do-while.
2258         * fns.c (SXHASH_COMBINE): Add missing parentheses.
2259         (Fchar_table_range, Fset_char_table_default, mapcar1,
2260         Fyes_or_no_p, sweep_weak_hash_tables): Remove unused variable(s).
2262         * lisp.h: Add prototype for getloadavg.
2264 1999-09-14  Andreas Schwab  <schwab@gnu.org>
2266         * process.c (Fopen_network_stream): Avoid socket decriptor leak.
2268         * lisp.h: Declare close_file_unwind.
2270 1999-09-14  Richard Stallman  <rms@gnu.org>
2272         * filelock.c (get_boot_time): Make the temp name in the proper dir.
2274 1999-09-13  Gerd Moellmann  <gerd@gnu.org>
2276         * xdisp.c (redisplay_window): Make sure start_at_line_beg
2277         is always set correctly.
2279 1999-09-13  Dave Love  <fx@gnu.org>
2281         * xdisp.c (move_it_in_display_line_to): Make type consistent with
2282         declaration.
2284 1999-09-13  Gerd Moellmann  <gerd@delysid.gnu.org>
2286         * xdisp.c (QCfile): Move here from xfns.c.
2287         (syms_of_xdisp): Initialize it.
2288         (message2_nolog): Change for Lisp_Object selected_frame.
2289         (message3_nolog, message_with_string, message,
2290         setup_echo_area_for_printing, truncate_echo_area,
2291         prepare_menu_bars, redisplay_internal, Fdump_tool_bar_row): Ditto.
2293 1999-09-13  Dave Love  <fx@gnu.org>
2295         * xterm.c: Don't continue #define args for benefit of old cc.
2296         (xt_action_hook): Indent #error for benefit of K&R cc.
2298 1999-09-13  Gerd Moellmann  <gerd@delysid.gnu.org>
2300         * xterm.c (XTcursor_to): Change for Lisp_Object selected_frame.
2301         (x_clear_frame, XTring_bell, XTmouse_position, XTread_socket): Ditto.
2302         (XRINGBELL): Removed.
2304 1999-09-13  Dave Love  <fx@gnu.org>
2306         * xfns.c (x_put_x_image): Make type consistent with declaration.
2308         * fns.c (Fmake_hash_table): Fix string continuation.
2310 1999-09-13  Gerd Moellmann  <gerd@delysid.gnu.org>
2312         * xfns.c (QCfile): Moved to xdisp.c.
2313         (syms_of_xfns): Don't initialize QCfile.
2314         (check_x_frame): Change for Lisp_Object selected_frame.
2315         (check_x_display_info, x_get_resource_string): Ditto.
2317 1999-09-13  Gerd Moellmann  <gerd@gnu.org>
2319         * minibuf.c (choose_minibuf_frame): Don't try to set the
2320         mini-buffer window's buffer, if the buffer is invalid.
2322         * xfns.c (QCfile): Moved to xdisp.c.
2323         (syms_of_xfns): Don't initialize QCfile.
2325         * xdisp.c (QCfile): Move here from xfns.c.
2326         (syms_of_xdisp): Initialize it.
2328         * lisp.h (selected_frame): Add external declaration.
2330         * xselect.c (x_own_selection): Change for Lisp_Object selected_frame.
2331         (Fx_store_cut_buffer_internal): Ditto.
2332         (Fx_rotate_cut_buffers_internal): Ditto.
2334         * xfaces.c (frame_or_selected_frame): Change for Lisp_Object
2335         selected_frame.
2336         (Finternal_set_lisp_face_attribute): Ditto.
2337         (Finternal_get_lisp_face_attribute): Ditto.
2338         (Finternal_lisp_face_empty_p): Ditto.
2339         (Fdump_face): Ditto.
2341         * term.c (OUTPUT): Change for Lisp_Object selected_frame.
2342         (OUTPUT_IF, ring_bell, set_terminal_modes, reset_terminal_modes,
2343         set_terminal_window, set_scroll_region, reassert_line_highlight,
2344         change_line_highlight, cursor_to, raw_cursor_to, clear_to_end,
2345         clear_end_of_line, clear_end_of_line_raw, clear_end_of_line_raw,
2346         encode_terminal_code, write_glyphs, term_init): Ditto.
2348         * sysdep.c (reset_sys_modes): Change for Lisp_Object selected_frame.
2349         (kbd_input_ast, read_input_waiting): Ditto.
2351         * minibuf.c (choose_minibuf_frame): Change for Lisp_Object
2352         selected_frame.
2353         (read_minibuf): Ditto.
2355         * keyboard.c (command_loop_1): Change for Lisp_Object
2356         selected_frame.
2357         (cmd_error_internal, command_loop_1, read_char,
2358         kbd_buffer_get_event, read_avail_input,
2359         read_char_minibuf_menu_prompt, read_key_sequence, Fsuspend_emacs,
2360         interrupt_signal, quit_throw_to_read_char): Ditto.
2362         * fontset.c (Ffont_info): Change for Lisp_Object selected_frame.
2363         (Ffontset_info): DItto.
2365         * emacs.c (handle_USR1_signal): Change for Lisp_Object selected_frame.
2367         * dispnew.c (selected_frame): Make it a Lisp_Object.
2368         (adjust_frame_glyphs_initially): Change for Lisp_Object selected_frame.
2369         (direct_output_for_insert, direct_output_forward_char,
2370         init_display): Ditto.
2372         * data.c (swap_in_symval_forwarding): Change for Lisp_Object
2373         selected_frame.
2374         (set_internal): Ditto.
2376         * buffer.c (Fother_buffer): Change for Lisp_Object selected_frame.
2377         (record_buffer): Ditto.
2379         * frame.c (Fmake_terminal_frame): Use SELECTED_FRAME.
2380         (do_switch_frame): Change for Lisp_Object selected_frame.
2381         (Fselected_frame): Ditto.
2382         (Fframe_first_window): Use SELECTED_FRAME.
2383         (Fframe_root_window): Change for Lisp_Object selected_frame.
2384         (Fframe_selected_window, Fset_frame_selected_window, Fnext_frame,
2385         Fprevious_frame, other_visible_frames, Fdelete_frame,
2386         Fmouse_position, Fmouse_pixel_position, Fmake_frame_visible,
2387         Fmake_frame_invisible, Ficonify_frame, Fraise_frame, Flower_frame,
2388         Fframe_parameters, Fmodify_frame_parameters, Fframe_char_height,
2389         Fframe_char_width, Fframe_pixel_height, Fframe_pixel_width,
2390         Fset_frame_height, Fset_frame_width): Ditto.
2392 1999-09-13  Gerd Moellmann  <gerd@gnu.org>
2394         * xdisp.c (message2_nolog): Change for Lisp_Object selected_frame.
2395         (message3_nolog, message_with_string, message,
2396         setup_echo_area_for_printing, truncate_echo_area,
2397         prepare_menu_bars, redisplay_internal, Fdump_tool_bar_row): Ditto.
2399         * xmenu.c (Fx_popup_menu): Change for Lisp_Object selected_frame.
2400         (Fx_popup_dialog): Ditto.
2402         * xfns.c (check_x_frame): Change for Lisp_Object selected_frame.
2403         (check_x_display_info, x_get_resource_string): Ditto.
2405         * xterm.c (XTcursor_to): Change for Lisp_Object selected_frame.
2406         (x_clear_frame, XTring_bell, XTmouse_position, XTread_socket): Ditto.
2407         (XRINGBELL): Removed.
2409         * window.c (Fminibuffer_window): Change for Lisp_Object
2410         selected_frame.
2411         (Fwindow_at, Fprevious_window, window_loop, select_window_1,
2412         display_buffer_1, Fdisplay_buffer, temp_output_buffer_show,
2413         Fcurrent_window_configuration, init_window_once): Ditto.
2415         * frame.h (SELECTED_FRAME): New.
2417 1999-09-12  Ken Raeburn  <raeburn@gnu.org>
2419         * category.c (word_boundary_p): Use XCAR and XCDR.
2420         * ccl.c (ccl_driver, resolve_symbol_ccl_program,
2421         Fregister_code_conversion_map): Likewise.
2422         * coding.c (setup_coding_system, detect_coding_system,
2423         Ffind_operation_coding_system, Fset_coding_priority_internal):
2424         Likewise.
2425         * doc.c (get_doc_string, Fdocumentation,
2426         store_function_docstring): Likewise.
2427         * editfns.c (save_restriction_restore): Likewise.
2428         * eval.c (Fcond, Fmacroexpand, Fcondition_case, wants_debugger,
2429         skip_debugger, find_handler_clause, Fautoload, Fapply,
2430         run_hook_with_args, run_hook_list_with_args, Ffetch_bytecode):
2431         Likewise.
2432         * fileio.c (Ffind_file_name_handler, Finsert_file_contents,
2433         Fwrite_region, do_auto_save_unwind, Fdo_auto_save,
2434         Fread_file_name): Likewise.
2435         * filelock.c (unlock_all_files): Likewise.
2436         * insdel.c (Fcombine_after_change_execute): Likewise.
2437         * intervals.c (adjust_intervals_for_insertion): Likewise.
2438         * keymap.c (get_keymap_1, Fkeymap_parent, Fset_keymap_parent,
2439         Fset_keymap_parent, fix_submap_inheritance, access_keymap,
2440         store_in_keymap, Fcopy_keymap, define_as_prefix,
2441         current_minor_maps, Faccessible_keymaps,
2442         accessible_keymaps_char_table, Fkey_description,
2443         Fwhere_is_internal, where_is_internal_2, where_is_internal_1,
2444         describe_buffer_bindings, describe_map_tree, shadow_lookup,
2445         describe_map): Likewise.
2446         * lread.c (Fload, load_unwind, close_load_descs, read_vector,
2447         read_list, init_lread): Likewise.
2448         * search.c (Fmatch_data): Likewise.
2449         * sunfns.c (Fsun_menu_internal): Likewise.
2450         * syntax.c (describe_syntax): Likewise.
2451         * undo.c (record_insert, record_delete, Fundo_boundary,
2452         truncate_undo_list): Likewise.
2453         * vmsproc.c (child_sig): Likewise.
2455         * editfns.c (Fformat): Use XFLOAT_DATA.
2457 1999-09-12  Gerd Moellmann  <gerd@gnu.org>
2459         * keyboard.c (command_loop_1): Resize mini-window to the
2460         exact size of a message displayed, if any.
2462         * xdisp.c (resize_mini_window): Add parameter exact_p.  Resize
2463         to exact size if exact_p is non-zero.
2464         (display_echo_area_1): Call resize_mini_window with
2465         new parameter.
2466         (redisplay_internal): Ditto.
2467         (resize_echo_area_axactly): New.
2469         * minibuf.c (read_minibuf_unwind): Call resize_mini_window with
2470         new parameter.
2472         * dispextern.h: Change prototype of resize_mini_window.
2473         Add prototype for resize_echo_area_axactly.
2475         * xfaces.c (Fx_family_fonts): Replaces Fx_font_list.
2476         (syms_of_xfaces): Defsubr accordingly.
2478         * xdisp.c (hscroll_window_tree): Choose cursor row from
2479         desired or current matrix.
2480         (redisplay_internal): Hscroll before updating.
2482 1999-09-12  Gerd Moellmann  <gerd@gnu.org>
2484         * syntax.c (Fforward_word): Use prompt_end_charpos instead
2485         of minibuffer_prompt_length.
2487         * minibuf.c (read_minibuf): Use prompt_end_charpos instead
2488         of minibuffer_prompt_length.
2489         (read_minibuf_unwind): Ditto.
2490         (Fminibuffer_complete_and_exit): Ditto.
2491         (Fminibuffer_complete_word): Ditto.
2492         (Fminibuffer_prompt_end): Ditto.
2494         * editfns.c (Fbuffer_string): Use prompt_end_charpos instead
2495         of minibuffer_prompt_length.
2496         (Fline_beginning_position): Ditto.
2498         * buffer.c (Fget_buffer_create): Use prompt_end_charpos instead
2499         of minibuffer_prompt_length.
2500         (Fmake_indirect_buffer): Ditto.
2501         (Fkill_buffer): Ditto.
2502         (Ferase_buffer): Ditto.
2504         * buffer.h (prompt_end_charpos): Replaces
2505         minibuffer_prompt_length.
2507         * minibuf.c (read_minibuf): Return mini-buffer contents
2508         without the prompt.
2510         * editfns.c (make_buffer_string_both): Take out the code
2511         to handle mini-buffer prompts.
2512         (Fbuffer_string): Handle the prompt here, instead.
2514         * xfaces.c (lface_from_face_name): Resolve face aliases.
2515         (Qmode_line): Replaces Qmodeline.
2516         (realize_basic_faces): Use Qmode_line.
2517         (syms_of_xfaces): Initialize Qmode_line.
2519 1999-09-12  Gerd Moellmann  <gerd@gnu.org>
2521         * minibuf.c (read_minibuf): Set minibuf_prompt_width to the
2522         current column after inserting prompt.
2523         (Fminibuffer_prompt_width): Return minibuf_prompt_width.
2525         * xfaces.c (Qframe_update_face_colors): New.
2526         (syms_of_xfaces): Initialize call.
2527         (update_face_from_frame_parameter): Call that function when
2528         the frame's background changes.
2530 1999-09-12  Richard Stallman  <rms@gnu.org>
2532         * insdel.c (del_range_1): Don't treat minibuffer prompt specially.
2534 1999-09-12  Ken Raeburn  <raeburn@gnu.org>
2536         * alloc.c (Fcons, pure_cons, Fpurecopy, Fgarbage_collect,
2537         mark_object, mark_buffer): Use XCAR and XCDR.
2538         * bytecode.c (Fbyte_code): Likewise.
2539         * callint.c (Fcall_interactively, Fprefix_numeric_value):
2540         Likewise.
2541         * callproc.c (Fcall_process, Fcall_process_region, child_setup,
2542         getenv_internal): Likewise.
2543         * dired.c (file_name_completion): Likewise.
2544         * fns.c (Fsafe_length, concat, Fcopy_alist, Fmember, Fmemq, Fassq,
2545         assq_no_quit, Fassoc, Frassq, Frassoc, Fdelq, Fdelete, Freverse,
2546         Fplist_get, Fplist_put, internal_equal, mapcar1): Likewise.
2547         * indent.c (Fcompute_motion): Likewise.
2548         * process.c (decode_status, Fprocess_status, Fprocess_exit_status,
2549         list_processes_1, Fstart_process, Fopen_network_stream,
2550         wait_reading_process_input, read_process_output_call,
2551         kill_buffer_processes, sigchld_handler, exec_sentinel_unwind,
2552         status_notify, wait_reading_process_input): Likewise.
2553         * textprop.c (PLIST_ELT_P, property_value, set_properties,
2554         extend_property_ranges): Likewise.
2555         * w32faces.c (Fpixmap_spec_p, merge_face_list): Likewise.
2556         * w32fns.c (x_window_to_frame, x_set_frame_parameters,
2557         x_report_frame_params, x_set_cursor_type, x_icon_type,
2558         x_figure_window_size, Fx_create_frame, w32_load_system_font,
2559         w32_load_font, enum_font_cb2, w32_list_bdf_fonts, w32_list_fonts,
2560         w32_list_synthesized_fonts, w32_find_ccl_program, Fx_list_fonts,
2561         Fw32_find_bdf_fonts, w32_find_bdf_fonts_in_dir,
2562         x_display_info_for_name, Fx_display_list): Likewise.
2563         * w32menu.c (menubar_id_to_frame, single_keymap_panes,
2564         Fx_popup_menu, Fx_popup_dialog): Likewise.
2565         * w32proc.c (Fw32_set_keyboard_layout): Likewise.
2566         * w32term.c (x_window_to_scroll_bar, w32_read_socket,
2567         w32_term_init, x_delete_display): Likewise.
2568         * xfns.c (x_window_to_frame, x_any_window_to_frame,
2569         x_non_menubar_window_to_frame, x_menubar_window_to_frame,
2570         x_top_window_to_frame, x_set_frame_parameters,
2571         x_report_frame_params, x_set_cursor_type, x_icon_type,
2572         x_figure_window_size, Fx_create_frame, x_display_info_for_name,
2573         Fx_display_list, x_create_tip_frame): Likewise.
2574         * xmenu.c (menubar_id_to_frame, single_keymap_panes,
2575         Fx_popup_menu, Fx_popup_dialog): Likewise.
2576         * xselect.c (x_own_selection, x_get_local_selection,
2577         x_handle_selection_request, x_handle_selection_clear,
2578         x_clear_frame_selections, wait_for_property_change_unwind,
2579         wait_for_property_change, x_handle_property_notify,
2580         copy_multiple_data, x_get_foreign_selection,
2581         lisp_data_to_selection_data, clean_local_selection_data,
2582         x_handle_selection_notify, Fx_get_selection_internal,
2583         x_disown_buffer_selections): Likewise.
2584         * xterm.c (x_window_to_scroll_bar, XTread_socket, x_list_fonts,
2585         x_load_font, x_find_ccl_program, x_term_init, x_delete_display):
2586         Likewise.
2588         * alloc.c (make_float, make_pure_float, Fpurecopy): Use
2589         XFLOAT_DATA.
2590         * bytecode.c (Fbyte_code): Likewise.
2591         * floatfns.c (extract_float, Fexpt, Fabs, rounding_driver,
2592         fmod_float): Likewise.
2594 1999-09-11  Richard Stallman  <rms@gnu.org>
2596         * xdisp.c (run_window_scroll_functions): If hook functions switch
2597         buffers, switch back after.
2599 1999-09-11  Ken Raeburn  <raeburn@gnu.org>
2601         * charset.h (GET_TRANSLATION_TABLE): Use XCDR.
2602         * frame.h (FOR_EACH_FRAME): Use XCAR and XCDR.
2603         (PIXEL_X_FROM_CANON_X, PIXEL_Y_FROM_CANON_Y): Use XFLOAT_DATA.
2604         * keyboard.h (EVENT_HEAD, EVENT_START, EVENT_END, POSN_WINDOW,
2605         POSN_BUFFER_POSN, POSN_WINDOW_POSN, POSN_TIMESTAMP): Use XCAR and
2606         XCDR.
2607         * syntax.h (SYNTAX, SYNTAX_WITH_FLAGS, SYNTAX_MATCH): Use XCAR and
2608         XCDR.
2610 1999-09-10  Richard Stallman  <rms@gnu.org>
2612         * xterm.c (XTread_socket): In XSetInputFocus, use RevertToParent,
2613         not RevertToPointerRoot.
2614         (XTset_vertical_scroll_bar) [!USE_TOOLKIT_SCROLL_BARS]:
2615         Fix the code to clear around the scroll bar.
2617 1999-09-10  Keisuke Nishida  <kxn30@po.cwru.edu>
2619         * print.c: Support print-circle and related features.
2620         (Vprint_gensym_alist): Removed.
2621         (Vprint_circle, Vprint_continuous_numbering, print_number_index
2622         Vprint_number_table): New variables.
2623         (PRINT_NUMBER_OBJECT, PRINT_NUMBER_STATUS): New macros.
2624         (PRINTPREPARE, PRINTFINISH): Don't set Vprint_gensym_alist.
2625         (print, print_preprocess, print_preprocess_string, print_object):
2626         New/modified functions with print-circle feature.  Use
2627         Vprint_number_table instead of Vprint_gensym_alist for print-gensym.
2628         (syms_of_print): Defined new Lisp variables `print-circle',
2629         `print-continuous-numbering', `print-number-table'.
2631 1999-09-10  Gerd Moellmann  <gerd@gnu.org>
2633         * xfns.c (x_build_heuristic_mask): Accept a list `(R G B)'
2634         as background color specification instead of an integer.
2635         (image-cache-eviction-delay): Replaces image-eviction-seconds.
2636         (Vimage_cache_eviction_delay): Replaces Vimage_eviction_seconds.
2637         (clear_image_cache, syms_of_xfns): Use it.
2638         (Qpostscript): Replaces Qghostscript.
2639         (gs_type): Use it.
2640         (gs_image_p): Ditto.
2641         (syms_of_xfns): Initialize Qpostscript.
2643 1999-09-10  Richard Stallman  <rms@gnu.org>
2645         * buffer.c (Ferase_buffer): Don't erase the minibuffer prompt.
2647 1999-09-09  Richard Stallman  <rms@gnu.org>
2649         * editfns.c (Fline_beginning_position): Handle minibuffer prompt here.
2651         * cmds.c (Fbeginning_of_line): Don't handle minibuffer prompt here.
2653 1999-09-09  Gerd Moellmann  <gerd@gnu.org>
2655         * fns.c (Fmakehash): Accept just one optional argument TEST.
2657         * xfns.c (QCindex): New.
2658         (syms_of_xfns): Initialize QCindex.
2659         (gif_load): Use it instead of `:image'.
2661 1999-09-09  Richard Stallman  <rms@gnu.org>
2663         * fileio.c (Fwrite_region): Finish renaming CONFIRM to MUSTBENEW.
2664         (Fwrite_region) [DOS_NT]: Handle `excl' here too.
2666 1999-09-08  Gerd Moellmann  <gerd@gnu.org>
2668         * xdisp.c (Qwhen): Replaces QCwhen.
2669         (syms_of_xdisp): Initialized it instead of QCwhen.
2670         (handle_single_display_prop): Use it instead of QCwhen.
2672 1999-09-08  Ken'ichi Handa  <handa@gnu.org>
2674         * charset.c (translate_char): Reset MSBs of arguments of
2675         MAKE_CHAR.
2676         (CHAR_COMPONENTS_VALID_P): Fix for ASCII.
2678 1999-09-08  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2680         * editfns.c (Fbufsize): Accept an extra BUFFER parameter.
2682         * fns.c (Fbase64_decode_region): Don't place point outside of the
2683         current accessible portion.
2685 1999-09-07  Richard Stallman  <rms@gnu.org>
2687         * keymap.c (fix_submap_inheritance): Do nothing if the proper
2688         parent is an ancestor of SUBMAP; otherwise, add it as the
2689         ultimate ancestor.
2691 1999-09-07  Gerd Moellmann  <gerd@gnu.org>
2693         * xdisp.c (handle_single_display_prop): Change conditional
2694         display property to `:when FORM . VALUE'.
2696 1999-09-07  Richard Stallman  <rms@gnu.org>
2698         * fileio.c (Fwrite_region): Doc fix.
2700 1999-09-07  Stefan Monnier  <monnier@cs.yale.edu>
2702         * fileio.c (Qexcl): New variable.
2703         (report_file_error): Handle EEXIST specially.
2704         (Fwrite_region): Special handling for CONFIRM = `excl'.
2705         (syms_of_fileio): Initialize Qexcl.
2707 1999-09-07  Gerd Moellmann  <gerd@gnu.org>
2709         * xfns.c (x_set_foreground_color): Call
2710         update_face_from_frame_parameter.
2711         (x_set_background_color): Ditto.
2712         (x_set_mouse_color): Ditto.
2713         (x_set_cursor_color): Ditto.
2714         (x_set_border_color): Ditto.
2715         (x_set_scroll_bar_foreground): Ditto.
2716         (x_set_scroll_bar_background): Ditto.
2718         * xfaces.c (recompute_basic_faces): Clear face cache.
2719         (Finternal_set_lisp_face_attribute): Modify frame parameters
2720         if attributes of certain faces are changed.
2721         (update_face_from_frame_parameter): New.
2723         * xfaces.c (realize_basic_faces): Realize new basic faces.
2725         * dispextern.h (SCROLL_BAR_FACE_ID, BORDER_FACE_ID,
2726         CURSOR_FACE_ID, MOUSE_FACE_ID): New.
2728         * xfaces.c (Qscroll_bar, Qcursor, Qborder, Qmouse): New.
2729         (syms_of_xfaces): Intialize new symbols.
2731         * fns.c (Fmakehash): Take one argument, test, make all the
2732         rest keyword arguments.
2734         * window.c (Fset_window_margins): Make window the first argument.
2735         (set_window_buffer): Call Fset_window_margins with window as first
2736         argument.
2738 1999-09-07  Gerd Moellmann  <gerd@gnu.org>
2740         * xfaces.c (Qfringe): Replaces Qmargin.
2742 1999-09-07  Kenichi Handa  <handa@etl.go.jp>
2744         * charset.h: Lots of comments fixed.
2745         (PARSE_MULTIBYTE_SEQ): Make it work also for ASCII string.
2746         (STRING_CHAR_AND_CHAR_LENGTH): This macro removed.
2748         * charset.c : Lots of comments fixed.
2749         (SPLIT_MULTIBYTE_SEQ): Make it work also for ASCII string.
2750         (CHAR_COMPONENTS_VALID_P): Name changed from
2751         CHAR_COMPONENT_VALID_P.  Caller changed.
2753 1999-09-06  Richard Stallman  <rms@gnu.org>
2755         * insdel.c (syms_of_insdel): Define Lisp variable
2756         inhibit-modification-hooks.
2758 1999-09-06  Michael Sperber [Mr. Preprocessor]  <sperber@informatik.uni-tuebingen.de>
2760         * s/aix4-2.h (ALIGN_DATA_RELOC): Undefined to support new
2761         unexaix.c.
2763         * s/aix3-1.h (ALIGN_DATA_RELOC): Defined to support new unexaix.c.
2765 1999-09-06  Dave Love  <fx@gnu.org>
2767         * unexaix.c: New version incorporating Michael Sperber's changes
2768         from XEmacs.  Should solve problems on AIX 4.3.
2770         * lread.c (Vbyte_boolean_vars): New variable.
2771         (defvar_bool, syms_of_lread): Use it.
2773 1999-09-05  Richard Stallman  <rms@gnu.org>
2775         * minibuf.c (read_minibuf): Put all three properties on the
2776         same range, the whole prompt.
2778 1999-09-05  Gerd Moellmann  <gerd@gnu.org>
2780         * sound.c (Qplay_sound_functions): Replaces Qplay_sound_hook.
2781         (Fplay_sound, syms_of_sound): Use it.
2782         (parse_sound): Allow float volume values in the range [0, 1].
2783         (Fplay_sound): Ditto.
2785         * window.c (Fset_window_vscroll): Make window the first argument,
2786         amount to scroll the second.  Take non-negative vscroll as
2787         argument.
2788         (Fwindow_vscroll): Return non-negative vscroll.
2790         * xfns.c (Fx_show_tip): Improve documentation.
2792 1999-09-05  Gerd Moellmann  <gerd@gnu.org>
2794         * buffer.c, buffer.h, dispextern.h, dispnew.c, keyboard.c,
2795         window.c, xdisp.c, xfaces.c, xterm.c, keyboard.h: Change
2796         `top-line' and `top_line' to `header-line' and `header_line'.
2797         Likewise for similar spellings.
2799 1999-09-05  Gerd Moellmann  <gerd@gnu.org>
2801         * xdisp.c (row_containing_pos): New.
2802         (try_window_id): Use it.
2804         * alloc.c, dispextern.h, dispnew.c, frame.c, frame.h, keyboard.c,
2805         lisp.h, termhooks.h, window.c xdisp.c, xfaces.c, xfns.c, xterm.c:
2806         Change spelling of `toolbar' to `tool_bar' or `tool-bar'.
2807         Likewise for upper-case etc.
2809 1999-09-05  Gerd Moellmann  <gerd@gnu.org>
2811         * xterm.c (XTset_vertical_scroll_bar) [!USE_TOOLKIT_SCROLL_BARS]:
2812         Fix reference to renamed variable.
2814 1999-09-04  Gerd Moellmann  <gerd@gnu.org>
2816         * window.c (Qwindow_size_fixed): Replaces Qfixed_window_size.
2817         (window_fixed_size_p): Use Qwindow_size_fixed instead of
2818         Qfixed_window_size.
2819         (syms_of_window): Ditto.
2821         * fns.c (Fmakehash): Exchange optional test and size arguments.
2823 1999-09-03  Gerd Moellmann  <gerd@gnu.org>
2825         * xterm.c (XTset_vertical_scroll_bar): Block input when clearing
2826         under newly created scroll bar.
2827         (expose_window): If window is not yet fully initialized, do
2828         nothing.  This can happen when toolkit scroll bars are used and a
2829         window is split.  Reconfiguring the scroll bars will generate an
2830         expose for a newly created window.
2832         * frame.h (struct frame): New member `gamma'.
2834         * xfns.c: Include math.h.  Add extern declaration for atof in case
2835         we don't see one.
2836         (Qscreen_gamma): New.
2837         (struct x_frame_parm_table): Add prototypes, add
2838         x_set_screen_gamma.
2839         (gamma_correct): New function.
2840         (defined_color): Call it.
2841         (x_set_screen_gamma): New.
2842         (x_set_title): Add parameter old_value.
2843         (RES_TYPE_FLOAT): New.
2844         (x_get_arg): Handle RES_TYPE_FLOAT.
2845         (Fx_create_frame): Call x_default_parameter for `screen-gamma'.
2846         (lookup_pixel_color): Change call to x_alloc_nearest_color to
2847         new prototype.
2848         (lookup_rgb_color): Ditto.
2849         (syms_of_xfns): Initialize Qscreen_gamma.
2851         * xterm.c (x_alloc_nearest_color_for_widget) [USE_X_TOOLKIT]:
2852         New.  Allocate color for lwlib widgets.
2853         (x_alloc_nearest_color): Change parameter list include the
2854         frame on which to allocate colors.  Gamma-correct colors.
2855         (x_alloc_lighter_color): Call x_alloc_lighter_color with new
2856         parameter list.
2858         * xterm.h: Change protorype of x_alloc_nearest_color.
2860 1999-09-03  Richard Stallman  <rms@gnu.org>
2862         * callproc.c: Delete the system-independent include of stdlib.h
2863         (leaving only the one in the WINDOWSNT conditional).
2865 1999-09-03  Andrew Choi  <choi@cs.hku.hk>
2867         * callproc.c (call-process) [macintosh]: Call mac_run_command in
2868         sysdep.c.  The Mac code is modeled after the DOS code.
2870         * dispextern.h [macintosh]: Include macterm.h to define substitute X
2871         Window types and macros.
2873         * frame.h: Do nothing if included a second time.
2874         (enum output_method): Add mac_output frame type.
2875         (union output_data): Add new alternative `mac'.
2876         (FRAME_MAC_P): New macro.
2878         * frame.c (Fframep) [macintosh]: Handle mac frame type.
2879         (syms_of_frame_1): Initialize Qmac.
2880         (make_terminal_frame) [macintosh]: Initialize output_data.mac fields.
2881         (Fmake_terminal_frame) [macintosh]: Add an alternate error check.
2882         (Fmodify_frame_parameters) [macintosh]: Call
2883         mac_set_frame_parameter in macterm.c.
2885         * keyboard.c [macintosh]: Set KBD_BUFFER_SIZE to a smaller value
2886         (512) because Mac compilers limit local data of a function to 32K.
2888         * make-docfiles.c: Correctly handle input files with Mac-style
2889         eol's.
2891         * sysdep.c: Define numerous routines to emulate Unix system calls.
2893         * xfaces.c: on MacOS, define the set of colors listed in rgb.txt
2894         file of an X Window environment.
2896         * xfaces.c: on MacOS, define the Lisp functions x-display-color-p,
2897         x-display-grayscale, x-color-defined-p, and x-color-values.
2899         * sysdep.c [macintosh] (stat, fstat, mkdir, rmdir, utime, access)
2900         (open, creat, unlink, read, write, rename, fopen, pause, alarm)
2901         (signal, sleep, gmtime, localtime, ctime, time, index, mktemp)
2902         (getpwuid, getpwnam, dup, dup2, isatty, getgid, getegid, getuid)
2903         (geteuid, getpid, getenv, uname, opendir, closedir, readdir, getwd.):
2904         New functions, replacing POSIX features.
2906         * sysdep.c [macintosh] (Mac2UnixPathname, Unix2MacPathname, CheckAlarm)
2907         (InitMyPasswd, GetTempDirName, mystrchr, mystrtok, mystrcpy):
2908         (InitEmacsPasswdDir, run_mac_command): New subroutines.
2910         * sysdep.c [macintosh] (targetTicks, alarm_signal_func, myPasswdName)
2911         (myPasswd, emacsPasswdDir, emacsPasswd, myPasswdInited, mask)
2912         (myPasswdDir, TempDirName, sys_siglist): New variables.
2914         * sysdep.c [macintosh] (execvp, wait, croak, fork, kill, sigsetmask)
2915         (sigblock, request_sigio, unrequest_sigio, setpgrp, pipe, symlink)
2916         (link, lstat, readlink, umask, chmod, sbrk, fsync, ioctl):
2917         Define empty stubs so Emacs will link.
2919 1999-09-03  Gerd Moellmann  <gerd@gnu.org>
2921         * xdisp.c: Use XCAR and XCDR instead of XCONS.
2923         * window.h: New member frozen_window_start_p.
2925         * window.c (foreach_window, foreach_window_1): New.
2926         (freeze_window_start, freeze_window_starts): New.
2927         (make_window): Initialize frozen_window_start_p.
2928         (replace_window): Ditto.
2929         (Fset_window_point): Remove references to deleted variables.
2930         (Fset_window_start): Ditto.
2932         * xdisp.c (Vresize_mini_config, resize_mini_frame,
2933         resize_mini_initial_height): Removed.
2934         (syms_of_xdisp): Remove references to these variables.
2935         (resize_mini_window): Don't save window configuration, freeze
2936         window starts instead.  Enlarge window until displaying an empty
2937         buffer, then shrink it.  Make the function externally visible.
2938         (redisplay_window): Treat frozen window start like forced start,
2939         but accept point outside of the window.
2941         * dispextern.h: Add function prototype for resize_mini_window.
2943         * minibuf.c (read_minibuf_unwind): Resize mini-window when
2944         reaching minibuf_level 0.
2946         * lisp.h: Remove extern declarations for variables deleted from
2947         xdisp.c.
2949         * dispnew.c (adjust_frame_glyphs): Remove reference to
2950         Vresize_mini_config.
2952 1999-09-03  Gerd Moellmann  <gerd@gnu.org>
2954         * xfns.c (x_set_scroll_bar_width): Change conditional compilation
2955         to USE_TOOLKIT_SCROLL_BARS.
2957         * xterm.c (x_scroll_bar_create): Don't clear under scroll bar
2958         here.
2959         (XTset_vertical_scroll_bar): Clarify position computations.  Clear
2960         under newly created scroll bar.  Put toolkit scroll bars in the
2961         middle of the area reserved for the scroll bar.
2963 1999-09-03  Kenichi Handa  <handa@etl.go.jp>
2965         The following changes are for the new handling of mulitbyte
2966         sequence.  Now, except for a composite character, no multibyte
2967         character in string/buffer has trailing garbage bytes.  For
2968         instance, the length of string "\201\300\300" is now 2, the first
2969         character is Latin-1 A-grave, the second is raw \300.
2971         * charset.h (MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
2972         are negative.
2973         (MAKE_CHAR): Don't set MSBs of C1 and C2 to 0.
2974         (VALID_MULTIBYTE_CHAR_P): This macro deleted.
2975         (PARSE_COMPOSITE_SEQ): New macro.
2976         (PARSE_CHARACTER_SEQ): New macro.
2977         (PARSE_MULTIBYTE_SEQ): New macro.
2978         (CHAR_PRINTABLE_P): New macro.
2979         (STRING_CHAR): Adjusted for the change of string_to_non_ascii_char.
2980         (STRING_CHAR_AND_LENGTH): Likewise.
2981         (STRING_CHAR_AND_CHAR_LENGTH): Define it as STRING_CHAR_AND_LENGTH.
2982         (INC_POS): Use the macro PARSE_MULTIBYTE_SEQ.
2983         (DEC_POS, BUF_INC_POS, BUF_DEC_POS): Likewise,
2985         * charset.c (SPLIT_COMPOSITE_SEQ): New macro.
2986         (SPLIT_CHARACTER_SEQ): New macro.
2987         (SPLIT_MULTIBYTE_SEQ): New macro.
2988         (CHAR_COMPONENT_VALID_P): New macro.
2989         (non_ascii_char_to_string): Generate a multibyte sequence as far
2990         as possible.
2991         (string_to_non_ascii_char): The 4th arg exclude_tail_garbage is
2992         deleted.  Caller changed.  Use the macro SPLIT_MULTIBYTE_SEQ.
2993         (split_non_ascii_string): Likewise.
2994         (multibyte_form_length): Use the macro PARSE_MULTIBYTE_SEQ.
2995         (char_printable_p): New function.
2996         (translate_char): Check character by NATNUMP instead of INTEGERP.
2997         (unibyte_char_to_multibyte): Call char_valid_p instead of
2998         VALID_MULTIBYTE_CHAR_P.
2999         (Fmake_char_internal): Check the arguments more rigidly.
3000         (Fcharset_after): Use the macro SPLIT_MULTIBYTE_SEQ.
3001         (char_valid_p): Check the validity by CHAR_COMPONENT_VALID_P.
3002         (Fmultibyte_char_to_unibyte): Check the validity of character by
3003         CHAR_VALID_P.
3004         (chars_in_text): Call multibyte_chars_in_text.
3005         (multibyte_chars_in_text): Use the macro PARSE_MULTIBYTE_SEQ.
3006         (Fcompose_string): Use the macro STRING_CHAR_AND_LENGTH instead of
3007         STRING_CHAR_AND_CHAR_LENGTH (which is obsolete now).
3009         * data.c (Faset): Adjust the way to check byte-combining
3010         possibility for the new handling of multibyte sequence.
3012         * editfns.c (Fsubst_char_in_region): Likewise.
3014         * fns.c (count_combining): Use the macro PARSE_MULTIBYTE_SEQ.
3015         (string_char_to_byte): Likewise.
3016         (string_byte_to_char): Likewise.
3018         * indent.c (MULTIBYTE_BYTES_WIDTH): Delete the 2nd arg C.  Use the
3019         macro STRING_CHAR_AND_LENGTH.  Caller changed.
3021         * insdel.c (count_combining_composition): New function.
3022         (count_combining_before): Adjust the way to check byte-combining
3023         possibility for the new handling of multibyte sequence.  Call
3024         count_combining_composition for a composite character.
3025         (count_combining_after): Likewise.
3027         * print.c (print_string): Use the macro STRING_CHAR_AND_LENGTH.
3028         (print): Likewise.
3030         * dispextern.h (struct it): Change the size of the member
3031         `ctl_chars'.
3033         * xdisp.c (get_next_display_element): Display incomplete multibyte
3034         sequence (e.g. \222\300) by octal form.
3036 1999-09-02  Gerd Moellmann  <gerd@gnu.org>
3038         * xterm.h (VERTICAL_SCROLL_BAR_WIDTH_TRIM): Change from 2 to 0.
3040         * fns.c (Fhash_table_weakness): Replaces Fhash_table_weak.
3041         (cmpfn_eql, sxhash): Use XFLOAT_DATA.
3043 1999-09-02  Gerd Moellmann  <gerd@gnu.org>
3045         * buffer.c (set_buffer_internal): Never set
3046         windows_or_buffers_changed.
3048         * xdisp.c (try_window_id): Reset first_unchanged_at_end_row
3049         if we have displayed to the bottom of the window.
3051         * syntax.c (Fforward_word): Stop at a mini-buffer prompt end
3052         in both directions.  Extend documentation.
3054 1999-09-01  Gerd Moellmann  <gerd@gnu.org>
3056         * minibuf.c (read_minibuf): Flush display after setting cursor to
3057         column 0.
3059 1999-08-31  Gerd Moellmann  <gerd@gnu.org>
3061         * s/freebsd.h (__FreeBSD_version): Don't define it if it is
3062         already defined.  This avoids a warning from buffer.c.
3064 1999-08-30  Gerd Moellmann  <gerd@gnu.org>
3066         * xterm.h (FRAME_X_FLAGS_AREA_COLS): Define it as the total width
3067         of both margins.
3068         (FRAME_X_FLAGS_AREA_WIDTH): Likewise.
3069         (FRAME_X_LEFT_FLAGS_AREA_WIDTH): New.
3070         (FRAME_X_RIGHT_FLAGS_AREA_WIDTH): New.
3072         * frame.h (FRAME_WINDOW_WIDTH_ARG): Add in FRAME_FLAGS_AREA_COLS
3073         once instead of twice.
3074         (FRAME_LEFT_FLAGS_AREA_WIDTH): New.
3076         * xterm.c: Remove unused bitmaps.
3077         (continued_bits, continuation_bits, overlay_bits): Change images.
3078         (x_draw_vertical_border): Use FRAME_X_RIGHT_FLAGS_AREA_WIDTH
3079         instead of FRAME_X_FLAGS_AREA_WIDTH.
3080         (x_after_update_window_line): Ditto.
3081         (x_draw_bitmap): Likewise.
3082         (x_draw_row_bitmaps): Likewise.
3083         (x_draw_glyph_string_box): Likewise.
3084         (x_draw_glyphs): Likewise.
3085         (x_scroll_run): Likewise.
3086         (expose_window_tree): Likewise.
3087         (note_mode_line_highlight): Likewise.
3088         (XTset_vertical_scroll_bar): Likewise.
3089         (x_clip_to_row): Likewise.
3090         (x_set_window_size): Likewise.
3092         * xfns.c (x_figure_window_size): Use FRAME_FLAGS_AREA_COLS instead
3093         of 2 * that value.
3095         * xdisp.c (window_box_width): Use FRAME_FLAGS_AREA_COLS instead of
3096         2 * that value.
3097         (window_box_left): Use FRAME_LEFT_FLAGS_AREA_WIDTH instead of
3098         FRAME_FLAGS_AREA_WIDTH.
3100         * window.c (coordinates_in_window): Use
3101         FRAME_LEFT_FLAGS_AREA_WIDTH instead of FRAME_FLAGS_AREA_WIDTH.
3102         (window_internal_width): Subtract FRAME_FLAGS_AREA_WIDTH once
3103         instead of twice.
3105         * widget.c (set_frame_size): Set flags_area_extra to
3106         FRAME_FLAGS_AREA_WIDTH instead of 2 * that width.
3107         (EmacsFrameSetCharSize): Ditto.
3109         * dispnew.c (mode_line_string): Add FRAME_LEFT_FLAGS_AREA_WIDTH
3110         instead of FRAME_FLAGS_AREA_WIDTH.
3112         * dispextern.h (WINDOW_DISPLAY_PIXEL_WIDTH): Subtract
3113         FRAME_FLAGS_AREA_COLS once.
3114         (WINDOW_DISPLAY_LEFT_EDGE_PIXEL_X): Add
3115         FRAME_LEFT_FLAGS_AREA_WIDTH instead of FRAME_FLAGS_AREA_WIDTH.
3117 1999-08-30  Gerd Moellmann  <gerd@gnu.org>
3119         * freebsd.h (C_SWITCH_SYSTEM): Added to let configure find headers
3120         in /usr/X11R6/include which are checked for with AC_CHECK_HEADER.
3122 1999-08-30  Gerd Moellmann  <gerd@gnu.org>
3124         * fns.c (QCweakness): Replaces QCweak.
3125         (Fmake_hash_table): Ditto.
3126         (Fmakehash): Ditto.
3127         (syms_of_fns): Ditto.
3129 1999-08-29  Richard Stallman  <rms@gnu.org>
3131         * search.c (compile_pattern_1): Enable RE_CHAR_CLASSES for regexp.
3133         * sysdep.c (read_input_waiting): Pass read_socket_hook just 4 args.
3135         * syntax.h (SYNTAX_COMMENT_NESTED, SYNTAX_FLAGS_COMMENT_NESTED):
3136         Add support for nested comments.
3138         * syntax.c (Fforward_comment, scan_lists, scan_sexps_forward):
3139         Consolidate the forward comment code into the new `forw_comment'.
3140         (forw_comment): New subroutine.  Added support for nested comments.
3141         (lisp_parse_state, back_comment, Fmodify_syntax_entry)
3142         (Fparse_partial_sexp): Add support for nested comments.
3144 1999-08-28  Ken Raeburn  <raeburn@gnu.org>
3146         * lisp.h (struct Lisp_Cons, XCAR, XCDR, struct Lisp_Float): Change
3147         names of structure elements if HIDE_LISP_IMPLEMENTATION is
3148         defined, to help detect code that uses knowledge of the Lisp
3149         internals that it shouldn't have.
3150         (XFLOAT_DATA): New macro.
3152 1999-08-25  Gerd Moellmann  <gerd@gnu.org>
3154         * syntax.c (Fforward_word): If in a mini-buffer and moving
3155         backwards, stop in front of the prompt to prevent accidentially
3156         moving into the read-only prompt.
3158         * window.c (Frecenter): Clear frame if called with nil or no arg.
3160         * xdisp.c (resize_mini_window): Don't resize if
3161         Vmax_mini_window_height is nil.  Otherwise, use a default if
3162         Vmax_mini_window_height is not ot a number.
3163         (syms_of_xdisp): Extend documentation of Vmax_mini_window_height.
3165 1999-08-25  Alexandre Oliva  <oliva@dcc.unicamp.br>
3167         * unexelf.c: Merge IRIX debugging info patch from unexsgi.c
3168         * m/iris4d.h: Use unexelf for IRIX 5.*.
3169         * m/iris5d.h: Use unexelf for IRIX 6.*.
3170         * unexsgi.c: Deleted.
3172         * unexelf.c: Auto-detect .sbss section.
3173         (round_up): Make it static.
3174         (unexec): Declare alignment as Elf Word.  Skip ``Program
3175         segment above .bss'' test on MIPS without .sbss.
3176         Copy sections .got and .sdata1 sections.  Adjust offsets in
3177         sections .sdata, .lit4, .lit8, .got and .sdata1.
3179 1999-08-25  Gerd Moellmann  <gerd@gnu.org>
3181         * xdisp.c (try_window_id): Remove typo.
3183 1999-08-24  Gerd Moellmann  <gerd@gnu.org>
3185         * xdisp.c (try_window_id): Recognize case that PT == ZV and in
3186         unchanged text at the bottom when computing the cursor position.
3187         (message3_nolog): Raise frame only if minibuffer_auto_raise is
3188         set.
3190         * lisp.h (PVEC_TYPE_MASK): Add the bit for hash tables.
3192 1999-08-24  Gerd Moellmann  <gerd@gnu.org>
3194         * xfaces.c (Qmargin): Replacement for Qbitmap_area.
3195         (realize_basic_faces): Replace Qmargin for Qbitmap_area.
3196         (syms_of_xfaces): Ditto.
3198         * window.c (Fset_window_point): Reset Vresize_mini_config.
3199         (Fset_window_start): Ditto.
3200         (set_window_buffer): Ditto.
3202         * dispnew.c (adjust_frame_glyphs): Reset Vresize_mini_config.
3204         * xdisp.c (redisplay_window): Don't ever test just_this_one_p
3205         before calling try_window.
3206         (echo_area_display): If height has changed, update other windows.
3207         (resize_mini_frame, resize_mini_initial_height): New.
3208         (resize_mini_window): Save/restore window configuration
3209         differently.
3211         * lisp.h (Vresize_mini_config, resize_mini_frame,
3212         resize_mini_initial_height): Add extern declarations.
3214         * xterm.c (expose_window_tree): Fix typo CANON_Y_UNIT to
3215         CANON_X_UNIT.
3217         * xfns.c [HAVE_JPEG]: Work around a warning about HAVE_STDLIB_H
3218         being redefined in jconfig.h.
3220 1999-08-23  Ken'ichi Handa  <handa@gnu.org>
3222         * coding.h: Include "ccl.h" instead of "../src/ccl.h".
3224 1999-08-22  Gerd Moellmann  <gerd@gnu.org>
3226         * alloc.c (mark_glyph_matrix): Mark strings only.
3228         * xdisp.c (redisplay_internal): Clear garbaged frames after
3229         resizing mini-window.
3231 1999-08-22  Gerd Moellmann  <gerd@gnu.org>
3233         * xdisp.c (unwind_with_echo_area_buffer): Use
3234         set_buffer_internal_1 instead of set_buffer_internal.
3235         (with_echo_area_buffer): Ditto.
3237         * buffer.c (set_buffer_internal): Set windows_or_buffers_changed
3238         only if buffer is displayed somewhere.
3240         * buffer.h (BUF_COMPUTE_UNCHANGED): New.
3242         * insdel.c (gap_left): Use BUF_COMPUTE_UNCHANGED.
3243         (gap_right): Ditto.
3244         (modify_region): Ditto.
3246         * buffer.c (modify_overlay): Use BUF_COMPUTE_UNCHANGED.
3248         * xdisp.c (Vresize_mini_config): New.
3249         (resize_mini_window): Use it to save restore original window
3250         configuration
3251         (syms_of_xdisp): Initialize it.
3253         * buffer.h (struct buffer): Add prevent_redisplay_optimizations_p.
3255         * dispextern.h (struct glyph_matrix): Add buffer, begv, and zv.
3257         * xdisp.c (reconsider_clip_changes): New.
3258         (redisplay_internal, redisplay_window): Call it.
3259         (mark_window_display_accurate, redisplay_internal): Set current
3260         matrix' buffer, begv, zv.
3262         * window.c (Fset_window_hscroll): Set
3263         prevent_redisplay_optimizations_p instead of clip_changed.
3264         (Fset_window_hscroll): Ditto.
3265         (temp_output_buffer_show): Ditto.
3266         (Fset_window_vscroll): Ditto.
3268         * buffer.c (reset_buffer): Set clip_changed to 0 and
3269         prevent_redisplay_optimizations_p to 1.
3270         (Fget_buffer_create): Set prevent_redisplay_optimizations_p to 1.
3272         * buffer.h (BUF_UNCHANGED_MODIFIED, UNCHANGED_MODIFIED,
3273         BUF_OVERLAY_UNCHANGED_MODIFIED, OVERLAY_UNCHANGED_MODIFIED,
3274         BUF_BEG_UNCHANGED, BEG_UNCHANGED, BUF_END_UNCHANGED,
3275         END_UNCHANGED): New.
3276         (struct buffer_text):  Add beg_unchanged, end_unchanged,
3277         unchanged_modified, overlay_unchanged_modified.
3279         * window.h (beg_unchanged, end_unchanged, unchanged_modified,
3280         overlay_unchanged_modified): Removed.
3281         (with_echo_area_unwind_data): Don't save beg/end_unchanged.
3282         (unwind_with_echo_area_buffer): Don't restore them.
3283         (debug_beg_unchanged, debug_end_unchanged) [GLYPH_DEBUG]: Removed.
3284         (text_outside_line_unchanged_p, redisplay_internal,
3285         try_scrolling): Use/set buffer-specific beg/end_unchanged.
3286         (redisplay_window): Let try_window_id be called if more than one
3287         window is displayed.  Use/set buffer-specific beg/end_unchanged.
3288         (get_last_unchanged_at_beg_row, get_first_unchanged_at_end_row,
3289         try_window_id):
3290         Use buffer-specific beg/end_unchanged.
3292         * window.h (beg_unchanged, end_unchanged, unchanged_modified,
3293         overlay_unchanged_modified): Remove extern declarations.
3295         * keyboard.c (command_loop_1):  Set beg/end_unchanged per
3296         buffer.
3298         * insdel.c (gap_left): Compute beg/end_unchanged per buffer.
3299         (gap_right): Ditto.
3300         (adjust_after_replace): Likewise.
3301         (replace_range, del_range_2, modify_region): Likewise.
3303         * dispnew.c (direct_output_for_insert):  Set beg_unchanged
3304         and unchanged_modified per buffer.
3306         * coding.c (code_convert_region): Compute beg/end_unchanged per
3307         buffer.
3309         * buffer.c (modify_overlay): Compute beg/end_unchanged
3310         per buffer.
3311         (Fget_buffer_create): Initialize new members of the buffer
3312         structure.
3314 1999-08-22  Gerd Moellmann  <gerd@gnu.org>
3316         * lisp.h: Add prototype for copy_hash_table and Fcopy_hash_table.
3318         * fns.c (Qkey, Qvalue): Renamed from Qkey_weak, and Qvalue_weak.
3319         (Qkey_value_weak):  Removed.
3320         (make_hash_table): Use nil, `key', `value', t for weakness.
3321         (Fmake_hash_table): Ditto.
3322         (copy_hash_table): New.
3323         (Fcopy_hash_table): New.
3325 1999-08-22  Gerd Moellmann  <gerd@gnu.org>
3327         * xfns.c: Call change_frame_size and do_pending_window_change with
3328         new parameter.
3330 1999-08-21  Gerd Moellmann  <gerd@gnu.org>
3332         * xdisp.c (resize_mini_window): Do it for truncate-lines t as
3333         well.
3334         (redisplay_internal): Resize mini-window only if text might
3335         have changed.
3336         (display_echo_area): Reset displayed echo_area_buffer to nil
3337         at the end if we're displaying a nil message.
3339 1999-08-21  Gerd Moellmann  <gerd@gnu.org>
3341         * fns.c (hash_lookup): Test with EQ before calling key comparion
3342         function.
3343         (hash_remove): Ditto.
3344         (cmpfn_eq): Removed.
3345         (cmpfn_eql): Don't test with EQ.
3346         (cmpfn_equal): Ditto.
3347         (make_hash_table): Set comparison function for `eq' to null.
3349         * buffer.c, cmds.c, editfns.c, indent.c, insdel.c, buffer.h:
3350         Remove conditional compilation on NO_PROMPT_IN_BUFFER.
3352         * dispextern.h (NO_PROMPT_IN_BUFFER): Removed.
3354         * window.c, widget.c, process.c, keyboard.c, frame.c, xdisp.c,
3355         xterm.c: Call change_frame_size and do_pending_window_change with
3356         new parameter.
3358         * dispnew.c (do_pending_window_change): Add parameter `safe'.
3359         (change_frame_size): Ditto.
3360         (change_frame_size_1): Ditto.  Deley size changes if redisplaying
3361         and not called from a safe place.
3362         (window_change_signal): Call change_frame_size with new parameter.
3364         * dispextern.h: Change prototypes for do_pending_window_change
3365         and change_frame_size.
3367         * xfaces.c (face_at_buffer_position): Don't xassert that
3368         window's buffers equals current_buffer; this is not the
3369         case during echo area display.
3371 1999-08-21  Gerd Moellmann  <gerd@gnu.org>
3373         * xdisp.c, minibuf.c: Remove conditional compilation on
3374         NO_PROMPT_IN_BUFFER.
3376         * minibuf.c (Fminibuffer_prompt_end): New.
3377         (syms_of_minibuf): Defsubr it.  Remove
3378         minibuffer-prompt-in-buffer.
3379         (Fminibuffer_prompt_width): Return 0 if not in mini-buffer.
3380         Extend documentation.
3382         * xdisp.c (get_next_display_element): Display \r as ^M.
3384         * xterm.c (x_scroll_bar_create) [USE_TOOLKIT_SCROLL_BARS]: Clear
3385         under scroll bar widget.
3387 1999-08-21  Gerd Moellmann  <gerd@gnu.org>
3389         * xdisp.c (minibuffer_scroll_overlap): Removed because not used
3390         anywhere.
3391         (unwind_redisplay): Return nil.
3392         (clear_garbaged_frames): New.
3393         (redisplay_internal): Use it.
3394         (echo_area_display): Ditto.
3395         (resize_mini_window): Mew.
3396         (display_echo_area_1): Use it to resize echo area window.
3397         (redisplay_internal): Use it to resize active mini-window.
3399         * dispextern.h, lisp.h: Add function prototypes.
3401         * dispnew.c (set_window_cursor_after_update): Do the
3402         cursor_in_echo_area case only for a mini-window showing
3403         a message.  Don't let cursor end up after the end of a row.
3405         * xdisp.c (echo_area_glyphs, echo_area_message,
3406         echo_area_glyphs_length, previous_echo_glyphs,
3407         previous_echo_area_message, previous_echo_area_glyphs_length):
3408         Removed.
3409         (Vmessage_stack, echo_area_buffer, echo_buffer,
3410         display_last_displayed_message_p, Vwith_echo_area_save_vector): New.
3411         (message2_nolog): Use set_message and clear_message.
3412         (message3): Rename parameter len to nbytes to make clear what
3413         it is.
3414         (message3_nolog): Ditto.  Use set_message and clear_message.
3415         (update_echo_area): Rewritten.
3416         (with_echo_area_buffer): New.
3417         (with_echo_area_buffer_unwind_data, unwind_with_area_buffer): New.
3418         (setup_echo_area_for_printing): New.
3419         (display_echo_area, display_echo_area_1): New.
3421         (current_message, current_message_1): New.
3422         (push_message, restore_message, pop_message,
3423         check_message_stack): New.
3424         (truncate_echo_area): Rewritten.
3425         (truncate_message_1): New.
3426         (set_message, set_message_1, clear_message): New.
3427         (echo_area_display): Rewritten.
3428         (redisplay_internal): Check for needed echo area update
3429         differently.
3430         (redisplay_preserve_echo_area): Rewritten.
3431         (redisplay_window): Check for mini-window displaying echo area
3432         message differently.
3433         (syms_of_xdisp): Initialize Vmessage_stack and echo area buffers.
3434         Remove initialzation of removed variables.
3435         (init_xdisp): Remove references to removed variables.
3437         * dispnew.c (adjust_frame_message_buffer): Removed references
3438         to echo_area_glyphs and previous_echo_glyphs.
3439         (direct_output_for_insert): Check for mini-window displaying
3440         echo area message differently.
3441         (update_frame): Likewise.
3442         (set_window_cursor_after_update): Likewise.  In echo area,
3443         don't try to set cursor on rows that aren't enabled.
3445         * print.c: Remove conditional compilation on `standalone'.
3446         (glyph_len, str_to_glyph_cpy, str_to_glyph_ncpy,
3447         glyph_to_str_cpy):  Remove that section because GLYPHs are no
3448         longer used in that way.
3449         (PRINTDECLARE): Add multibyte.
3450         (PRINTPREPARE, PRINTFINISH): Handle printcharfun t differently.
3451         (printbufidx): Removed.
3452         (printchar, strout): Rewritten.
3454         * keyboard.c (ok_to_echo_at_next_pause): Make it a pointer to
3455         a struct kboard.
3456         (echo_kboard): New.
3457         (echo_now): Set echo_kboard to the current kboard.
3458         (cancel_echoing): Set echo_kboard to null.
3459         (cmd_error_internal): Use clear_message, remove references
3460         to echo_area_glyphs and echo_area_message.
3461         (command_loop_1): Check for echo area messages differently.
3462         (read_char): Likewise.
3463         (record_menu_key): Use clear_message.
3464         (Fexecute_extended_command):  Check for echo area messages
3465         differently.  Use push_message, restore_message, pop_message.
3467         * alloc.c (Fgarbage_collect): Use push_message, restore_message,
3468         pop_message.
3470         * emacs.c (shut_down_emacs): Call check_message_stack.
3472         * lisp.h: Add function prototypes and extern declarations for
3473         new functions and variables.
3475         * fileio.c (Fdo_auto_save): Use push_message, restore_message,
3476         pop_message.
3478         * minibuf.c (read_minibuf): Use clear_message instead of
3479         setting echo_area_glyphs.
3480         (Fminibuffer_completion_help): Ditto.
3482         * editfns.c (Fcurrent_message): Rewritten.
3484         * frame.c, window.h: Remove references to echo_area_glyphs
3485         and previous_echo_glyphs.
3487 1999-08-21  Dave Love  <fx@gnu.org>
3489         * aix3-2-5.h (C_DEBUG_SWITCH): Use -g -O.
3490         * aix4-1.h: Likewise.
3492         * irix6-5.h (C_DEBUG_SWITCH): Set for debug and optimize.
3494 1999-08-20  Gerd Moellmann  <gerd@gnu.org>
3496         * xfns.c: Remove tiff34 prefix from include.
3498 1999-08-20  Dave Love  <fx@gnu.org>
3500         * cm.c: Revert previous change.
3502 1999-08-19  Gerd Moellmann  <gerd@gnu.org>
3504         * xterm.c (XTset_vertical_scroll_bar): Fix previous change.  Clear
3505         under scroll bar with width FRAME_SCROLL_BAR_COLS.
3507 1999-08-18  Dave Love  <fx@gnu.org>
3509         * callproc.c, filelock.c, insdel.c, sysdep.c, xmenu.c: Use
3510         stdlib.h.
3512         * doprnt.c: Use stdlib.h, unistd.h.
3514         * config.in: Add HAVE_TERMCAP_H.
3516         * cm.c: Use termcap.h.
3518 1999-08-18  Gerd Moellmann  <gerd@gnu.org>
3520         * xfns.c (x_window) [USE_X_TOOLKIT]: Remove test for
3521         FRAME_X_WINDOW (f) being null at the of the function.  If widgets
3522         cannot be created we will already have crashed earlier.  Call
3523         lw_set_main_areas with a null menu-bar widget, so that we have
3524         a reasonable default.
3525         (Fx_create_frame): Rearranged so that Lisp errors during frame
3526         initialization cause less damage.  Initialize menu bar widget
3527         here.
3529 1999-08-18  Gerd Moellmann  <gerd@gnu.org>
3531         * dispnew.c (update_frame_line): Fix previous change.  If writing
3532         whole line clear to end of frame.
3534 1999-08-17  Gerd Moellmann  <gerd@gnu.org>
3536         * window.c (Fcoordinates_in_window_p): Return `left-bitmap-area'
3537         and `right-bitmap-area' if position is in the bitmap areas.  This
3538         avoids an error when clicking on the bitmap areas.  Instead, they
3539         are currently treated like clicks inside the window.
3540         (coordinates_in_window): Return 5 and 6 for bitmap areas.
3541         (Qleft_bitmap_area, Qright_bitmap_area): New.
3542         (syms_of_window): Initialize new symbols.
3544         * dispnew.c (update_frame_line): If writing whole line,
3545         don't write trailing spaces unless we must.
3547         * xdisp.c (unwind_redisplay): New.  Resets flag redisplaying_p.
3548         (redisplay_internal): Register unwind_redisplay with
3549         register_unwind_protect.
3550         (try_window_reusing_current_matrix): If new start > old start,
3551         give up if start pos of first reusable row is not equal to new
3552         start.
3554         * eval.c (Fsignal): Don't reset redisplaying_p here.
3556         * xterm.c (expose_area): If row extends face to end of line,
3557         write the whole line.
3559 1999-08-16  Gerd Moellmann  <gerd@gnu.org>
3561         * dispextern.h (struct it): Remove member
3562         show_trailing_whitespace_p.
3564         * dispnew.c (direct_output_for_insert): Use
3565         Vshow_trailing_whitespace instead of former iterator member
3566         show_trailing_whitespace_p.
3567         (direct_output_forward_char): Don't do it if hightlighting
3568         trailing whitespace.
3570         * xdisp.c (Qshow_trailing_whitespace): Removed.
3571         (Vshow_trailing_whitespace): Added.
3572         (init_iterator): Remove initialization code for
3573         show_trailing_whitespace_p.
3574         (redisplay_internal): Don't try cursor movement in this_line
3575         if showing trailing whitespace.
3576         (redisplay_window): Likewise for cursor movement in current
3577         matrix and try_window_id.
3578         (try_window_reusing_current_matrix): Likewise.
3579         (trailing_whitespace_p): Return 0 if trailing whitespace is
3580         in front of point.
3581         (display_line): Use Vshow_trailing_whitespace instead of
3582         former iterator member show_trailing_whitespace_p.
3583         (syms_of_xdisp): Add DEFVAR_LISP for show-trailing-whitespace.
3585 1999-08-16  Gerd Moellmann  <gerd@gnu.org>
3587         * window.c (Fpos_visible_in_window_p): Rewritten.
3589         * xfaces.c (add_to_log): Renamed from display_message.
3590         Don't display messages in echo area.
3592         * xterm.c (x_draw_glyph_string_box): Use the background width
3593         of the glyph string for the width of the box.
3595 1999-08-16  Stefan Monnier  <monnier@cs.yale.edu>
3597         * syntax.c (Fforward_comment): Set comstyle for Scomment_fence.
3599 1999-08-16  Geoff Voelker  <voelker@cs.washington.edu>
3601         * xfns.c, w32fns.c (x_set_frame_parameters): Set foreground and
3602         background first, and then set other parameters that might
3603         depend upon their new values.
3605 1999-08-15  Gerd Moellmann  <gerd@gnu.org>
3607         * xfaces.c (Vfont_list_limit): New.
3608         (syms_of_xfaces): Make it a user-variable.
3609         (DEFAULT_FONT_LIST_LIMIT): New.
3610         (sorted_font_list): If Vfont_list_limit is an integer > 0, list
3611         maximally that number of fonts, otherwise use
3612         DEFAULT_FONT_LIST_LIMIT.
3613         (Fx_font_family_list): Bind `font-list-limit' to higher values
3614         until we have all fonts.
3615         (Fxfont_list): Additionally return the full names of fonts and
3616         their registry and encoding.
3618         * xterm.c (XTset_vertical_scroll_bar) [USE_TOOLKIT_SCROLL_BARS]:
3619         Simplify clearing "under" scroll bar.
3621         * window.c (Qfixed_window_size): New.
3622         (syms_of_window): Initialiaze it.
3623         (check_all_windows): Add return type void.
3624         (window_fixed_size_p): New.  Return non-zero if window
3625         is fixed-size.
3626         (window_min_size_1): New.
3627         (window_min_size): Handle fixed-size windows.
3628         (size_window): New. Rewritten combination of set_window_height and
3629         set_window_width that handles fixed-size windows.
3630         (set_window_height): Call it.
3631         (set_window_width): Call it.
3632         (Fsplit_window): Give an error on attempt to split a fixed-size
3633         window.
3634         (change_window_height): Partly rewritten to handle fixed-size
3635         windows.
3637 1999-08-13  Wolfgang Rupprecht  <wolfgang@wsrcc.com>
3639         * process.c (Fopen_network_stream): Fix previous change.
3641 1999-08-13  Karl Heuer  <kwzh@gnu.org>
3643         * xdisp.c (line_number_display_limit_width): New var.
3644         (decode_mode_spec): Use it instead of hardcoded value.
3645         (syms_of_xdisp): Defvar it.
3647 1999-08-13  Richard M. Stallman  <rms@gnu.org>
3649         * eval.c (run_hook_list_with_args): Gcpro `globals'.
3650         (run_hook_with_args): Likewise.
3652         * window.h (struct window): New field too_small_ok.
3654         * window.c (set_window_height, set_window_width):
3655         If window starts out "too small", set its too_small_ok flag.
3656         If window's too_small_ok flag is set, don't delete it
3657         unless it is so small it would cause a crash.
3659 1999-08-13  Gerd Moellmann  <gerd@gnu.org>
3661         * window.c (MINSIZE): Removed.
3662         (window_min_size): New.
3663         (set_window_height): Use window_min_size.
3664         (change_window_height): Ditto.
3666 1999-08-12  Gerd Moellmann  <gerd@gnu.org>
3668         * indent.c (vmotion): Don't add in mini-buffer prompt width
3669         if prompts are inserted into mini-buffer.
3671 1999-08-12  Wolfgang Rupprecht  <wolfgang@wsrcc.com>
3673         * config.in: Add HAVE_GETADDRINFO.
3674         * process.c (Fopen_network_stream): Use getaddrinfo.
3676 1999-08-11  Gerd Moellmann  <gerd@gnu.org>
3678         * xdisp.c (get_overlay_arrow_glyph_row): Set the charpos of
3679         glyphs to -1.
3681         * xdisp.c (face_before_or_after_it_pos): If position after
3682         or before iterator's current position in the buffer is out
3683         of bounds, return the iterator's original face id.
3685         * dispnew.c (mirror_make_current): If desired row isn't enabled,
3686         just swap glyphs pointers between current and desired row.
3687         (build_frame_matrix_from_leaf_window) [GLYPH_DEBUG]: Copy
3688         desired matrix method string to current matrix.
3690 1999-08-11  Kenichi Handa  <handa@etl.go.jp>
3692         * lisp.h (CHAR_MODIFIER_MASK): New macro.
3694         * lread.c (read_escape): For Control modifier, pay attention to
3695         multibyte character.
3696         (read1): Likewise.  Singal error or a multibyte character which
3697         has a modifer bit.  Check validity of Shift modifer.
3699         * charset.c (non_ascii_char_to_string): Handle modifier bits as
3700         the same as Lisp reader.
3702 1999-08-10  Richard M. Stallman  <rms@gnu.org>
3704         * charset.h (BCOPY_SHORT): Fix typo `unsigined'.
3706 1999-08-10  Alexandre Oliva  <oliva@dcc.unicamp.br>
3708         * unexelf.c [__linux__ && __alpha__] (HAS_SBSS_SECTION): Define.
3710 1999-08-10  Eli Zaretskii  <eliz@gnu.org>
3712         * msdos.c (IT_set_face): Abort if the default face is not realized
3713         and cached.
3714         (IT_write_glyphs): Reset the screen face to the default face
3715         before writing glyphs.
3717         * xfaces.c (realize_default_face) [MSDOS]: Don't take default
3718         colors from the frame here.
3719         (realize_tty_face) [MSDOS]: Do it here.  Update the face
3720         attributes with the actual name of the color taken from the
3721         frame.
3723         * dosfns.c (msdos_stdcolor_name): Remove const from return value.
3724         * dosfns.h (msdos_stdcolor_name): Ditto for the prototype.
3726         * frame.c (Fframe_parameters): Swap foreground and background
3727         colors returned in frame parameters if the frame has reverse in
3728         its parameter alist.
3729         (Fmake_terminal_frame): Make a unique copy of face_alist for
3730         each frame.
3732 1999-08-07  Richard Stallman  <rms@gnu.org>
3734         * buffer.c (Fprevious_overlay_change): Just return
3735         the answer obtained from overlays_at.
3737         * xfns.c (xpm_load) [!XpmAllocCloseColors]:
3738         Use XpmCloseness and attrs.closeness instead.
3740 1999-08-06  Richard Stallman  <rms@gnu.org>
3742         * lread.c (Feval_buffer): New arg DO_ALLOW_PRINT.
3744 1999-08-06  Geoff Voelker  <voelker@cs.washington.edu>
3746         * dired.c (directory_files_internal, Fdirectory_files_and_attributes,
3747         Ffile_attributes_lessp): New functions.
3748         (Fdirectory_files): Use directory_files_internal.
3749         (syms_of_dired): Initialize Fdirectory_files_and_attributes,
3750         Ffile_attributes_lessp.
3752         * w32.c (stat): Check for directory ending in separator when
3753         doing readdir fast path.
3755         * w32fns.c (x_set_icon_type): Support setting frame icons.
3756         * w32term.c (x_bitmap_icon): New function.
3757         (x_make_frame_visible, x_iconify_frame): Invoke x_bitmap_icon.
3759 1999-08-06  Gerd Moellmann  <gerd@gnu.org>
3761         * xdisp.c (set_iterator_to_next): After delivering a character
3762         from a display vector, restore face and charset to what they were
3763         before the display vector was processed.
3765 1999-08-06  Gerd Moellmann  <gerd@gnu.org>
3767         * xdisp.c (reseat_at_next_visible_line_start): New parameter
3768         on_newline_p.
3769         (set_iterator_to_next):  After delivering last char
3770         from display vector, reseat on next visible line start if
3771         dpvec_char_len < 0.
3772         (next_element_from_buffer): Set dpvec_char_len to -1 for
3773         selective display.
3775 1999-08-06  Gerd Moellmann  <gerd@gnu.org>
3777         * xdisp.c (compute_line_metrics): If first line's physical ascent
3778          is larger than its logical ascent, use the physical ascent, and
3779          make the row taller.  Set row's overlapping_p flag.
3781         * dispnew.c (redraw_overlapping_rows): Use flag overlapping_p.
3782         (direct_output_for_insert): Ditto.
3784         * dispextern.h (struct glyph_row): Add overlapping_p.
3786         * xterm.c (x_draw_phys_cursor_glyph): Redraw overlaps.
3788         * dispextern.h (MATRIX_ROW_OVERLAPS_PRED_P): New.
3789         (MATRIX_ROW_OVERLAPS_SUCC_P): New.
3791         * dispnew.c (direct_output_for_insert): Don't use this method if
3792         row is overlapped by others.
3793         (update_text_area): Write full line if current line is overlapped.
3794         (redraw_overlapped_rows): New.
3795         (update_window): Call it.
3796         (redraw_overlapping_rows): New.
3797         (update_window): Call it.
3798         (scrolling_window): Make sure overlapped_p flag in current rows is
3799         unchanged.
3800         (row_equal_p): Take rows overlapped_p flag into account.
3802         * dispextern.h (struct glyph_row): Add flag overlapped_p.
3804         * xterm.c (x_fix_overlapping_area): New.
3805         (x_redisplay_interface): Add x_fix_overlapping_area.
3807         * dispnew.c (adjust_glyphs): Block input while adjusting matrices.
3809 1999-08-06  Gerd Moellmann  <gerd@gnu.org>
3811         * xterm.c (x_draw_glyphs): Add parameter overlaps_p.
3812         (struct glyph_string): Add member for_overlaps_p.
3813         (x_get_glyph_string_clip_rect): If glyph string draws foreground
3814         of overlapping rows, clip to window bottom.
3815         (x_fill_glyph_string): Add parameter overlaps_p.
3816         (x_fill_composite_glyph_string): Ditto.
3817         (BUILD_GLYPH_STRINGS): Ditto.
3818         (BUILD_CHAR_GLYPH_STRINGS): Ditto.
3819         (x_draw_glyph_string): Don't draw anything but the foreground
3820         if glyph string draws row overlaps.
3822         * dispnew.c (direct_output_for_insert): Don't use this
3823         optimization for rows that overlap others.
3824         (update_window_line): Return non-zero if display has changed.
3825         (update_text_area): Ditto.
3826         (update_window): Record if display has been changed.
3828         * dispextern.h (MATRIX_ROW_OVERLAPPING_P): New.
3830         * dispextern.h (struct redisplay_interface): Add
3831         fix_overlapping_area.
3833         * xterm.c (x_append_glyph): Set glyph flag overlaps_vertically_p.
3835         * dispextern.h (struct glyph): Add overlaps_vertically_p.
3837         * xterm.c (x_produce_image_glyph): Compute iterator's physical
3838         ascent and descent.
3839         (x_produce_stretch_glyph): Ditto.
3840         (x_produce_glyphs): Ditto.
3842         * xdisp.c (init_iterator): Reset physical line height info
3843         after producing special glyphs.
3844         (display_toolbar_line): Set physical line height info.
3845         (compute_line_metrics): Ditto.
3846         (display_line): Ditto.
3847         (display_string): Ditto.
3849         * term.c (produce_glyphs): Set iterator's physical height
3850         information.
3852         * dispnew.c (blank_row): Compute glyph row's physical height.
3853         (row_equal_p): Take physical row heights into account.
3854         (direct_output_for_insert): Ditto.
3855         (update_text_area): Ditto.
3857         * dispextern.h (struct glyph_row): Add phys_ascent and
3858         phys_height.
3859         (struct it): Add phys_ascent, phys_descent, max_phys_ascent,
3860         max_phys_descent.
3862 1999-08-04  Stefan Monnier  <monnier@cs.yale.edu>
3864         * buffer.c (switch_to_buffer_1): New subroutine, taken out from
3865         Fswitch_to_buffer.
3866         (no_switch_buffer): New function.
3867         (Fswitch_to_buffer): Call them.  Don't get confused
3868         by "same-window" buffers in a dedicated frame.
3870         * window.c (display-buffer): Don't get confused
3871         by "same-window" buffers in a dedicated frame.
3873 1999-08-04  Andreas Schwab  <schwab@gnu.org>
3875         * insdel.c (insert_from_string_1): Check gap size against number
3876         of outgoing bytes, not incoming bytes.
3878 1999-08-03  Tom Breton  <tob@world.std.com>
3880         * lread.c (read1): Added circular reading code to #N=.
3881         (SUBSTITUTE): New macro.
3882         (seen_list): New variable.
3883         (substitute_object_in_subtree): New function.
3884         (substitute_object_recurse): New function.
3885         (substitute_in_interval): New function.
3887 1999-08-02  Eli Zaretskii  <eliz@gnu.org>
3889         * Makefile.in (frame.o, sysdep.o, xfaces.o): Depend on dosfns.h.
3891         * frame.c (make_terminal_frame): Don't call init_frame_faces if
3892         noninteractive, for termcap frames as well.
3894         * sysdep.c (init_sys_modes): Call init_frame_faces for termcap
3895         frames.
3897 1999-08-01  Richard Stallman  <rms@gnu.org>
3899         * fns.c (internal_equal): Correct overlay comparison.
3901 1999-07-31  Richard M. Stallman  <rms@gnu.org>
3903         * xfns.c (x_set_internal_border_width):
3904         Call do_pending_window_change.  Don't block input, don't call XFlush.
3905         (x_set_vertical_scroll_bars): Call do_pending_window_change.
3906         (x_set_scroll_bar_width, x_set_font): Likewise.
3908         * frame.c (Fset_frame_height): Call do_pending_window_change.
3909         (Fset_frame_width, Fset_frame_size): Likewise.
3911         * xterm.c (x_set_window_size): When calling change_frame_size,
3912         specify 1 for DELAY.
3914         * widget.c (EmacsFrameSetCharSize): Don't call
3915         do_pending_window_change here.
3917 1999-07-30  Dave Love  <fx@gnu.org>
3919         * config.in: Add HAVE_STDLIB_H.
3921 1999-07-30  Richard M. Stallman  <rms@gnu.org>
3923         * process.c (create_process): Detect failure of `pipe'.
3925 1999-07-30  Keisuke Nishida  <kei@psn.net>
3927         * alloc.c (allocate_vectorlike): Add missing increment.
3929         * data.c (Fdefalias): Call Ffset instead of duplicating code.
3931         * keymap.c (get_keymap_1, get_keyelt): Check the type of OBJECT
3932         before calling indirect_function.
3934 1999-07-30  Eli Zaretskii  <eliz@gnu.org>
3936         * dispextern.h (load_color, lookup_derived_face): Declare
3937         prototypes.
3939         * dispnew.c (init_display) [MSDOS]: Don't initialize frame faces,
3940         it will be done later.
3942         * frame.c (make_terminal_frame) [MSDOS]: Don't call
3943         init_frame_faces if non-interactive.
3944         (Fframe_parameters) [MSDOS]: Replace indexing into colornames[]
3945         array with a call to msdos_stdcolor_name.  The font name is now
3946         "ms-dos", consistent with realize_tty_face.
3948         * keyboard.c (cmd_error_internal): Don't kill Emacs if this is an
3949         MSDOS frame.
3951         * window.c (Fset_window_configuration) [MSDOS]: Don't call
3952         x_set_toolbar_lines.
3954         * xfaces.c (load_color): Remove static from definition and remove
3955         prototype.
3956         [MSDOS]: Add a DOS-specific version of load_color.
3957         (lookup_face): Replace FRAME_TERMCAP_P with !FRAME_WINDOW_P.
3958         (lookup_derived_face): New function.
3959         (realize_default_face): Support MSDOS frames.
3960         [MSDOS]: If fore/background colors are unspecified, inherit them
3961         from the frame.
3962         (realize_face): Support MSDOS frames.
3963         (realize_tty_face): Support MSDOS frames.
3964         [MSDOS]: If the face color is not in Vface_tty_color_alist, call
3965         load_color to try to find a suitable approximation.  If the face
3966         is inverse-video, swap the foreground and background colors.
3968         * dosfns.c (msdos_stdcolor_name, msdos_stdcolor_idx): New
3969         functions.
3971         * dosfns.h (msdos_stdcolor_name, msdos_stdcolor_idx): Declare.
3973         * msdos.h: Remove redundant declarations (most of them are now in
3974         dispextern.h).
3976         * msdos.c (IT_set_face): Rewritten for the new redisplay engine.
3977         Use default frame colors if the face doesn't specify them; invert
3978         the colors if highlight is ON.
3979         (IT_write_glyphs): Rewritten for the new redisplay engine.
3980         (IT_change_line_highlight): Add (unused) parameter Y, since that's
3981         how the hook is called by term.c.
3982         (IT_copy_glyphs): New function, copies an area of the display in
3983         video RAM.
3984         (IT_insert_glyphs): Rewritten to DTRT instead of aborting, since
3985         redisplay now calls it even if char_ins_del_ok is zero.
3986         (IT_set_frame_parameters): Prototype changed.  Calls the new
3987         load_color.  Puts the new fore/background colors into the default
3988         face on current frame.
3989         (IT_menu_display): Rewritten to handle the new struct glyph
3990         instead of a char array.
3991         (XMenuActivate): Call lookup_derived_face to create and use
3992         special faces for the pop-up and drop-down menus.
3994 1999-07-29  Gerd Moellmann  <gerd@gnu.org>
3996         * xterm.c (x_set_toolkit_scroll_bar_thumb): Don't call
3997         XawScrollbarSetThumb if thumb parameters haven't changed because
3998         that function apparently isn't optimized for this case.
4000 1999-07-29  Eli Zaretskii  <eliz@gnu.org>
4002         * msdos.c (getdefdir): Don't return failure indication when
4003         _fixpath sets errno to ENOSYS.
4005 1999-07-28  Gerd Moellmann  <gerd@gnu.org>
4007         * xdisp.c (string_char_and_length): New.  Use it everywhere
4008         instead of STRING_CHAR_AND_LENGTH in xdisp.c.
4010 1999-07-28  Kenichi Handa  <handa@etl.go.jp>
4012         * fns.c (count_combining): New function.
4013         (struct textprop_rec): New structure.
4014         (concat): Copy text properties correctly when byte combining
4015         occurs.
4017 1999-07-28  Gerd Moellmann  <gerd@gnu.org>
4019         * xterm.c (x_setup_relief_color): Don't try smart color allocation
4020         if display is mono.
4021         (x_draw_row_bitmaps): If face has stipple, don't switch
4022         to foreground color for clearing areas, and set the fill style.
4024         * xfaces.c (load_face_colors): Load background color if setting
4025         stipple, too.
4026         (prepare_face_for_display): Use FillOpaqueStippled instead of
4027         FillStippled.
4029 1999-07-26  Ken'ichi Handa  <handa@gnu.org>
4031         * xterm.c (x_find_ccl_program): Add casting.
4033         * w32fns.c (w32_find_ccl_program): Add casting.
4035 1999-07-27  Gerd Moellmann  <gerd@gnu.org>
4037         * dispextern.h (struct glyph_row): Flag internal_border_p removed.
4039         * xfns.c (x_create_tip_frame): Don't set bitmapIcon resource
4040         because this will try to access a nonexisting widget.
4042 1999-07-26  Markus Rost  <rost@gnu.org>
4044         * fns.c (Fgethash): Fix order of variables (patch by gerd).
4045         (Fputhash): Ditto.
4046         (Fremhash): Ditto.
4048 1999-07-26  Gerd Moellmann <gerd@gnu.org>
4050         * widget.c (EmacsFrameSetCharSize): Don't add XtNborderWidth
4051         value to frame width and height.
4053         * xterm.c (x_get_glyph_string_clip_rect): Take internal border
4054         into account for full-width windows.  Don't add scroll bar width
4055         to width of clip rect.
4056         (x_draw_glyph_string_box): Add 1 to right x of full width lines.
4057         (x_set_glyph_string_background_width): Add 1 to background width.
4058         (x_draw_glyphs): Take internal border into account for full-width
4059         lines.
4061 1999-07-26  Richard M. Stallman  <rms@gnu.org>
4063         * xfns.c (x_set_mouse_color): Always unload the old color.
4064         Don't allow nil as color value.
4065         (x_set_cursor_color, x_set_background_color, x_set_foreground_color):
4066         Always unload the old color.
4068         * indent.c (Fmove_to_column): Extend end of line only if FORCE is t.
4070 1999-07-26  Karl Heuer  <kwzh@gnu.org>
4072         * fns.c (Fy_or_n_p): Doc fix.
4074 1999-07-26  Kenichi Handa  <handa@etl.go.jp>
4076         * ccl.h (setup_ccl_program): The type is changed to `int'.
4078         * ccl.c (ccl_driver) <CCL_Call>: Now CCL program ID to call may be
4079         stored in the following CCL code.  Adjusted for the change of
4080         Vccl_program_table.
4081         (resolve_symbol_ccl_program): Adjusted for the new style of
4082         embedded symbols (SYMBOL . PROP) in CCL compiled code.   Return Qt
4083         is resolving failed.
4084         (ccl_get_compiled_code): New function.
4085         (setup_ccl_program): Function type changed from `void' to `int'.
4086         Resolve symbols in CCL_PROG.
4087         (Fccl_program_p): New function.
4088         (Fccl_execute): Get compiled CCL code by just calling
4089         setup_ccl_program.
4090         (Fccl_execute_on_string): Likewise.
4091         (Fregister_ccl_program): Adjusted for the change of
4092         Vccl_program_table.
4094         * coding.c (setup_coding_system): Get compiled CCL code by just
4095         calling setup_ccl_program.
4097         * xterm.c (x_find_ccl_program): Get compiled CCL code by just
4098         calling setup_ccl_program.
4100         * w32fns.c (w32_find_ccl_program): Get compiled CCL code by just
4101         calling setup_ccl_program.
4103 1999-07-23  Gerd Moellmann  <gerd@gnu.org>
4105         * xfaces.c (frame_update_line_height): Just use the height of the
4106         frame's fontset or font, instead of taking face fonts into
4107         account.
4109         * xdisp.c (get_next_display_element): Display DEL as `^?'.
4111 1999-07-23  Richard M. Stallman  <rms@gnu.org>
4113         * window.c (Fsplit_window): For default size, round up for left window.
4115 1999-07-21  Joe Ramey  <ramey@ti.com>
4117         * filelock.c (lock_if_free): Return -1 if check_lock_owner
4118         has returned -1 (lockfile exists but is not a symlink?).
4120 1999-07-20  Gerd Moellmann  <gerd@gnu.org>
4122         * xterm.c (x_draw_bar_cursor): Use scratch_cursor_gc to
4123         because of a change in cursor_gc made in 20.4.
4125 1999-07-19  Gerd Moellmann  <gerd@gnu.org>
4127         * xterm.c (x_calc_absolute_position): Subtract menu bar height
4128         for YNegative, if using X toolkit.
4130         * xfns.c (x_real_positions): Don't subtract window borders
4131         from positions returned.
4133 1999-07-17  Gerd Moellmann  <gerd@gnu.org>
4135         * xrdb.c (x_load_resources): Set double-click time defaults
4136         for Motif list boxes from double-click-time.
4138         * fns.c (Vhash_table_tests): Remvoed.
4139         (Qhash_table_test): New.
4140         (syms_of_fns): Initialize Qhash_table_test.
4141         (Fmake_hash_table): Look up user-defined tests in symbol prop
4142         `hash-table-test'.
4143         (Fdefine_hash_table_test): Store test and hash function as
4144         symbol prop `hash-table-test'.
4145         (make_hash_table): Add parameters user_test and user_hash.
4147         * window.c (set_window_buffer): Set window margins for tty
4148         frames, too.
4149         (Fset_window_margins): Ditto.
4151         * term.c (append_glyph): Use glyph area of iterator instead of
4152         always TEXT_AREA.
4154         * dispnew.c (update_frame_1): Add left margin width to cursor
4155         hpos.
4156         (direct_output_for_insert): Ditto.
4157         (direct_output_forward_char): Ditto.
4159         * dispnew.c (adjust_glyph_matrix): Set glyph matrix' top_line_p.
4161         * dispextern.h (struct glyph_matrix): Add top_line_p.
4163 1999-07-16  Gerd Moellmann  <gerd@gnu.org>
4165         * frame.h (FRAME_WINDOW_REDISPLAY_P): Removed.  Use FRAME_WINDOW_P
4166         instead.
4168         * fns.c (cmpfn_eq): Add hash code parameters.
4169         (cmpfn_eql): Ditto.
4170         (cmpfn_equal): Ditto, and compare hash codes before calling Fequal.
4171         (cmpfn_user_defined): Likewise.
4173 1999-07-15  Gerd Moellmann  <gerd@gnu.org>
4175         * lisp.h (DEFAULT_REHASH_THRESHOLD): Changed to 0.8.
4177         * fns.c (maybe_resize_hash_table): Correct computation of
4178         index vector size.
4179         (make_hash_table): Ditto.
4180         (Fmakehash): New.
4182         * xdisp.c (echo_area_display): Don't call redraw_garbaged_frames.
4184         * alloc.c (gc_sweep): Call sweep_weak_hash_tables.
4185         (survives_gc_p): Make it externally visible.
4186         (mark_object): Ditto.
4188         * fns.c (remove_hash_entry): Removed.
4189         (sweep_weak_hash_tables): New.
4191         * print.c (print): Print more information about hash tables.
4193         * xfns.c (image_spec_hash): Removed.
4194         (lookup_image): Use sxhash instead of image_spec_hash.
4195         (image_spec_equal_p): Removed.
4196         (lookup_image): Use Fequal instead of image_spec_equal_p.
4198 1999-07-14  Gerd Moellmann  <gerd@gnu.org>
4200         * lisp.h (P_): Moved to top of file.
4202         * fns.c (make_hash_table): Set new members.
4204         * alloc.c (mark_object): Mark hash table's user_hash_function.
4205         Mark index vector for weak hash tables.
4207         * lisp.h (struct Lisp_Hash_Table): Add user_cmp_function,
4208         user_hash_function, cmpfn, and hashfn.
4210         * fns.c (build_hash): Removed.
4211         (hash_test): Removed.
4212         (cmpfn_eq, cmpfn_eql, cmpfn_equal, cmpfn_user_defined): New.
4213         (hashfn_eq, hashfn_eql, hashfn_equal, hashfn_user_defined): New.
4215 1999-07-13  Gerd Moellmann  <gerd@gnu.org>
4217         * alloc.c (survives_gc_p): New.
4219         * print.c (print): Add hash table handling.
4221         * alloc.c (mark_object): Add code to mark hash tables.
4223         * lisp.h (GC_HASH_TABLE_P): New.
4225         * emacs.c (main): Call init_fns.
4227         * fns.c (init_fns): New.
4229         * fns.c: Add hash table implementation.
4231         * lisp.h (PVEC_HASH_TABLE): New.
4232         (struct Lisp_Hash_Table): New.
4233         (XHASH_TABLE): New.
4234         (XSET_HASH_TABLE): New.
4235         (HASH_TABLE_P): New.
4236         (CHECK_HASH_TABLE): New.
4237         (DEFAULT_HASH_SIZE): New.
4238         (DEFAULT_REHASH_THRESHOLD): New.
4239         (DEFAULT_REHASH_SIZE): New.
4241         * xterm.c (x_draw_glyphs): Add parameters real_start and real_end.
4242         (x_write_glyphs): Compute overwritten cursor using real start
4243         and end positions of display.
4244         (x_insert_glyphs): Ditto.
4246 1999-07-10  Gerd Moellmann  <gerd@gnu.org>
4248         * keyboard.c (read_char): Use message3_nolog to show help-echo.
4250         * dispnew.c (blank_row): Add y-position as parameter.  Compute
4251         visible height.
4253         * xdisp.c (next_element_from_string): Give padding spaces
4254         a position of -1.
4256         * dispnew.c (adjust_glyph_matrix): Some work to support
4257         marginals areas on tty frames in a future version.
4258         (allocate_matrices_for_frame_redisplay): Ditto.
4260         * xdisp.c (display_line): At ZV, set glyph row's displays_text_p
4261         to zero if number of glyphs in the row is <= 1.
4263 1999-07-09  Gerd Moellmann  <gerd@gnu.org>
4265         * dispnew.c (buffer_posn_from_coords): Take left marginal area
4266         into account.
4268         * xdisp.c (handle_display_prop): Don't reset area if handing
4269         a property from a string that came from a `display' property.
4270         (handle_single_display_prop): Don't handle recursive `display'
4271         properties.
4272         (handle_single_display_prop): Handle some display property
4273         forms for terminal frames.
4274         (Qimage): Moved here from xfns.c.
4276         * dispextern.h (struct it): New field string_from_display_prop_p.
4278         * xterm.c (x_clip_to_row): Don't let clip_rect include top
4279         line.
4281 1999-07-08  Gerd Moellmann  <gerd@gnu.org>
4283         * xdisp.c (handle_single_display_prop): Handle `:when FORM'.
4285         * window.c (set_window_buffer): Set window's vscroll to zero.
4287         * xdisp.c (QCwhen): New.
4288         (display_prop_end): New.
4289         (handle_single_display_prop): Use it.
4290         (debug_method_add): Print buffer name if tracing.
4291         (try_window_reusing_current_matrix): Compute visible height
4292         of reused rows.  Fix cursor position calculation in case of
4293         top-line.
4295         * dispextern.h (struct redisplay_interface): Add parameter
4296         cursor_on_p to update_window_end_hook.
4298         * xterm.c (x_update_window_end): Add parameter cursor_on_p.
4300 1999-07-07  Gerd Moellmann  <gerd@gnu.org>
4302         * xdisp.c (redisplay_internal): Ensure that redisplayinp_p
4303         doesn't become negative when decrementing it.
4305         * eval.c (Fsignal): Reset redisplaying_p to zero.
4307         * xdisp.c (try_window_reusing_current_matrix): Call hooks
4308         for window update.
4309         (try_window_id): Ditto.
4311         * xterm.c (x_clear_end_of_line): Handle top-line correctly.
4312         (x_scroll_run): Ditto.
4313         (any_help_event_p): New.
4314         (x_initialize): Set it to zero.
4315         (XTread_socket): Clear help echo only if any_help_event_p.
4317         * xdisp.c (init_iterator): Set top_line_p.
4318         (start_display): Use correct initial y if top-line is present.
4319         (make_cursor_line_fully_visible): Bug fixes for top-line.
4320         (try_scrolling): Ditto.
4321         (try_window_reusing_current_matrix): Ditto.
4323         * dispextern.h (struct it): Add top_line_p.
4325         * dispnew.c (shift_glyph_matrix): Move some computations out
4326         of the loop.
4328         * dispnew.c (margin_glyphs_to_reserve): Use NUMBERP and
4329         XFLOATINT.
4331 1999-07-06  Gerd Moellmann  <gerd@gnu.org>
4333         * dispnew.c (update_frame_1): When setting cursor in echo area,
4334         skip only over padding spaces at the end.
4336         * xfaces.c (realize_tty_face): Set face's font_name field to
4337         "tty".
4339         * term.c (update_end): Turn cursor on only if selected window's
4340         cursor_off_p flag is not set.
4342 1999-07-05  Gerd Moellmann  <gerd@gnu.org>
4344         * term.c (TS_cursor_visible): Renamed from TS_visual_mode.
4345         (TS_cursor_normal): Renamed from TS_end_visual_mode.
4346         (TS_cursor_invisible):  New.
4347         (term_init): Initialize TS_cursor_invisible.
4348         (tty_hide_cursor): New.
4349         (tty_show_cursor): New.
4350         (update_end): Show tty cursor.
4351         (update_begin): Hide tty cursor to prevent cursor flickering
4352         during redisplays triggered by timers (stealth fontification).
4354         * keyboard.c (make_lispy_event) <TOOLBAR_EVENT>: Apply modifiers.
4356         * xterm.c (XTread_socket) [USE_MOTIF] <KeyPress>: Catch events
4357         in scroll bars.
4358         (x_handle_toolbar_click): Set modifier bits.
4360 1999-07-04  Gerd Moellmann  <gerd@gnu.org>
4362         * keyboard.c (kbd_store_ptr): Declare it as a volatile pointer
4363         instead of a pointer to a volatile input_event.
4364         (kbd_buffer_store_event): Remove volatile modifier from
4365         declaration of local variable `sp'.
4366         (Fdiscard_input): Don't cast when assigning kbd_store_ptr
4367         to kbd_fetch_ptr.
4369 1999-07-03  Gerd Moellmann  <gerd@gnu.org>
4371         * xdisp.c (try_window_id): Set beg_unchanged and end_unchanged
4372         only if buffer is modified.  Return quickly if changes are
4373         above window start.
4375 1999-07-02  Gerd Moellmann  <gerd@gnu.org>
4377         * dispextern.h (HSCROLL_WINDOWS): Removed.
4379         * xdisp.c (mark_window_display_accurate): Don't set
4380         w->region_showing.
4381         (redisplay_internal): Don't call redraw_garbaged_frames.
4383 1999-07-01  Gerd Moellmann  <gerd@gnu.org>
4385         * xdisp.c (echo_area_display): Don't display truncation marks
4386         for messages because 20.4 doesn't do it either.
4387         (redisplay_window): Case same window start.  Instead of giving
4388         up when cursor is partially visible, make it fully visible.
4389         (mark_window_display_accurate): Some cleanup.  Record window's
4390         last cursor information.
4391         (debug_method_add): Improved.
4392         (redisplay_internal): Record last cursor info only if not
4393         consider_all_windows_p.
4395         * dispnew.c (update_window): Update top line after scrolling.
4396         (blank_row): Renamed from make_empty_enabled_row.
4397         (increment_glyph_row_buffer_positions): Increment positions
4398         in buffers, only.
4400         * window.c (Fcoordinates_in_window_p): Add top-line to doc
4401         string.
4403 1999-06-30  Gerd Moellmann  <gerd@gnu.org>
4405         * dispnew.c (update_window): Check that updated row is visible.
4407         * xterm.c (x_draw_row_bitmaps): Check for invisible rows at
4408         top of window differently.
4410         * xdisp.c (try_window_reusing_current_matrix): Don't do it
4411         if region is showing.
4413         * dispnew.c (adjust_glyph_matrix): Check w->vscroll when
4414         avoiding matrix reallocation.  Set window_vscroll in matrix.
4416         * dispextern.h (struct glyph_matrix): Add member window_vscroll.
4418         * xdisp.c (debug_method_add): New.
4419         (debug_redisplay_method): Removed.
4420         (try_window_reusing_current_matrix): Handle case where old
4421         window start is the same as new window start.
4423         * dispextern.h (struct glyph_matrix) [GLYPH_DEBUG]: Make `method'
4424         an array instead of a pointer.
4426         * xfns.c (Fx_show_tip): Undo previous change.
4428         * xterm.c (x_append_glyph): Clear glyph->u.val.
4430         * dispextern.h (struct glyph): Increase size of face_id bit-field
4431         for CHAR_GLYPH to 12.
4433 1999-06-29  Gerd Moellmann  <gerd@gnu.org>
4435         * xfaces.c (x_charset_registry): Make it externally visible.
4437 1999-06-28  Gerd Moellmann  <gerd@gnu.org>
4439         * dispnew.c (update_window): Use mode_line_p flag of rows
4440         instead of WINDOW_WANTS_MODELINE_P.
4442         * xterm.c (clear_mouse_face): Make externally visible.
4444         * xfns.c (Fx_show_tip): Clear mouse face before showing tip.
4446         * xterm.c (expose_line): Handle exposure of top-lines.
4448         * xterm.c (XTframe_up_to_date): Don't call note_mouse_highlight
4449         if mouse_face_mouse_frame is null.
4451         * xdisp.c (redisplay_window): If window is echo_area_window,
4452         and update_mode_line is set, update menubar and toolbar.
4454         * dispnew.c (space_glyph): Set its charpos to -1.
4455         (update_frame_1): Ignore trailing padding spaces.
4457         * xdisp.c (next_element_from_c_string): Set position of padding
4458         glyphs to -1.
4460 1999-06-27  Gerd Moellmann  <gerd@gnu.org>
4462         * xfns.c (x_laplace_read_row): Use XQueryColors instead of
4463         XQueryColor.
4465         * xdisp.c (display_menu_bar): Remove unwarranted assertion.
4466         (set_cursor_from_row): Skip over glyphs having a null object at
4467         the start of rows.
4468         (insert_left_trunc_glyphs): Use charpos < 0 to indicate truncation
4469         glyphs.
4470         (handle_invisible_prop): Compute next change only when needed.
4471         (handle_face_prop): Don't correct DEFAULT_FACE_ID if in the mode
4472         line.
4474 1999-06-26  Gerd Moellmann  <gerd@gnu.org>
4476         * xrdb.c (x_load_resources): Don't set resource for double-click
4477         time.
4479         * xdisp.c (try_window_id): Return quickly if all changes are
4480         below the window's current matrix end.
4482         * dispextern.h (MATRIX_ROW_PARTIALLY_VISIBLE_P): Remove window
4483         parameter.
4485         * xdisp.c (try_window_reusing_current_matrix): Set no_scrolling_p
4486         in desired not in current matrix.
4487         (try_window_reusing_current_matrix): Rotate matrices starting
4488         at start_vpos instead of 0.
4490         * xterm.c (expose_window): Use window_text_bottom_y.
4491         (fast_find_position): Ditto.
4493         * xdisp.c (redisplay_window): Use window_text_bottom_y.
4494         (try_window_reusing_current_matrix): Ditto.
4495         (get_last_unchanged_at_beg_row): Ditto.
4496         (init_iterator): Ditto.
4498         * dispnew.c (allocate_matrices_for_window_redisplay): Allocate one
4499         more row.
4500         (check_matrix_invariants): Use window_text_bottom_y.
4501         (update_window): Ditto.
4502         (scrolling_window): Ditto.
4504         * xdisp.c (window_text_bottom_y): New.
4506 1999-06-25  Gerd Moellmann  <gerd@gnu.org>
4508         * xterm.c (XTread_socket): Set mouse_face_frame to zero after
4509         clearing mouse face.
4510         (XTread_socket) <EnterNotify> [LESSTIF_VERSION]: If
4511         event.xcrossing.focus is not set, and focus is in the menu bar,
4512         set focus frame as if event.xcrossing.focus were set.
4514 1999-06-24  Gerd Moellmann  <gerd@gnu.org>
4516         * keyboard.c (make_lispy_event): Handle mouse on top lines.
4517         * keyboard.c (make_lispy_movement): Ditto.
4519         * window.c (coordinates_in_window): Return 4 if on top line.
4520         (Fcoordinates_in_window_p): Return `top-line' if on top line.
4522         * xdisp.c (window_box_height): Subtract top line height.
4523         (window_box): Add top line height to top y position if top line
4524         exists.
4525         (init_iterator): If base_face_id is TOP_LINE_FACE_ID, set row to
4526         the top line row of the window.  Set initial y-position to
4527         window's top line height plus delta.
4528         (start_display): Choose start glyph row depending on whether
4529         window has a top line.
4530         (try_scrolling): Take top line height into account for aggressive
4531         scrolling.
4532         (compute_window_start_on_continuation_line): Take top line into
4533         account.
4534         (redisplay_window): Ditto.  If top line height has changed,
4535         trigger a new redisplay.
4536         (try_window_reusing_current_matrix): Take top line into account.
4537         (find_last_row_displaying_text): Ditto.
4538         (get_last_unchanged_at_beg_row): DItto.
4539         (try_window_id): Ditto.
4540         (compute_line_metrics): Ditto.
4542         * dispnew.c (shift_glyph_matrix): Compute visible row height
4543         taking top line of window into account.
4544         (update_window): Update top line.  If scrolling_window detects
4545         that all rows are equal, only set cursor.
4546         (update_window_line): Call after_update_window_line_hook if
4547         mode_line_p flag of rows has changed.
4548         (scrolling_window): Add parameter top_line_p.  Return -1 if
4549         all rows are equal.
4550         (mode_line_string): Add parameter mode_line_p.  Handle strings
4551         in top lines.
4553         * dispextern.h (MATRIX_TOP_LINE_ROW): New.
4554         (MATRIX_FIRST_TEXT_ROW): New.
4555         (MATRIX_ROW_PARTIALLY_VISIBLE_P): Use row's visible_height.
4556         (MATRIX_ROW_PARTIALLY_VISIBLE_AT_TOP_P): New.
4557         (MATRIX_ROW_PARTIALLY_VISIBLE_AT_BOTTOM_P): New.
4558         (MATRIX_TOP_LINE_HEIGHT): New.
4559         (CURRENT_MODE_LINE_HEIGHT): Use estimate_mode_line_height.
4560         (CURRENT_TOP_LINE_HEIGHT): New.
4561         (DESIRED_TOP_LINE_HEIGHT): New.
4562         (WINDOW_DISPLAY_TOP_LINE_HEIGHT): New.
4563         (WINDOW_DISPLAY_HEIGHT_NO_MODE_LINE): Replaces
4564         WINDOW_DISPLAY_TEXT_AREA_PIXEL_HEIGHT.
4565         (WINDOW_DISPLAY_TEXT_HEIGHT): New.
4567         * xterm.c (x_after_update_window_line): Don't draw bitmaps for top
4568         lines.
4569         (x_draw_row_bitmaps): Take top line into account when clearing
4570         bitmap area.
4571         (x_estimate_mode_line_height): Replacement for
4572         x_frame_mode_line_height.
4573         (x_get_glyph_string_clip_rect): Take top line into account.
4574         (x_clear_end_of_line): Ditto.
4575         (note_mode_line_highlight): Add parameter mode_line_p.  Handle
4576         top lines.
4577         (note_mouse_highlight): Call note_mode_line_highlight for top lines.
4578         (x_erase_phys_cursor): Take top line into account.
4580         * xdisp.c (window_box_height): Subtract top line height if
4581         window wants a top line.
4582         (display_mode_lines): New.
4583         (redisplay_window): Call it.
4584         (display_mode_line): Add parameters face_id and format.
4586         * dispextern.h (CURRENT_TOP_LINE_HEIGHT): New.
4587         (MATRIX_TOP_LINE_HEIGHT): New.
4589         * xterm.c (x_frame_mode_line_height): Add parameter face_id.
4591         * term.c (estimate_mode_line_height): Renamed from
4592         frame_mode_line_height.  Add parameter face_id.
4593         (estimate_mode_line_height_hook): Renamed from
4594         frame_mode_line_height_hook.
4595         (produce_special_glyphs_hook): Removed.
4596         (produce_glyphs_hook): Removed.
4598 1999-06-23  Gerd Moellmann  <gerd@gnu.org>
4600         * dispextern.h (WINDOW_WANTS_TOP_LINE_P): New.
4601         (struct glyph_row): Add mode_line_p.
4603         * xfaces.c (realize_basic_faces): Realize face `top-line'.
4604         (Qtop_line): New.
4605         (syms_of_xfaces): Initialize Qtop_line.
4607         * dispextern.h (TOP_LINE_FACE_ID): New.
4609         * buffer.c (init_buffer_once): Set default for
4610         top_line_format to nil.
4611         (init_buffer_once): Init top_line_format.
4612         (default-top-line-format): New.
4613         (top-line-format): New buffer-local variable.
4615         * buffer.h: Add top_line_format.
4617         * xdisp.c (overlay_arrow_changed_p): Removed because not used.
4619 1999-06-17  Dave Love  <fx@gnu.org>
4621         * xfns.c: Move the PNG section before the JPEG one to avoid
4622         problems surrounding setjmp.h/png.h on GNU/Linux.
4624 1999-06-17  Gerd Moellmann  <gerd@gnu.org>
4626         * xfns.c (x_kill_gs_process): Don't free colors.
4628 1999-06-17  Dave Love  <fx@gnu.org>
4630         * s/gnu-linux.h: Zap spurious ~.
4632 1999-06-16  Gerd Moellmann  <gerd@gnu.org>
4634         * xfns.c (gif_load): Improve multi-image support.
4636 1999-06-15  Gerd Moellmann  <gerd@gnu.org>
4638         * xfns.c (gif_load): Support multi-image files.
4640         * Makefile.in (LIBGIF): Use libungif.
4642         * configure.in (HAVE_GIF): Use libungif instead of libgif
4643         because the former doesn't contain patented compression code.
4645         * xdisp.c (compute_window_start_on_continuation_line): Don't
4646         do it if line start is too far away from window start.
4648 1999-06-14  Gerd Moellmann  <gerd@gnu.org>
4650         * buffer.c (init_buffer_once): Set buffer_local_flags for
4651         scroll_*_aggressively.
4652         (syms_of_buffer): Add DEFVAR_PER_BUFFER for scroll-*-aggressively.
4653         (init_buffer_once): Set defaults for these variables.
4654         (syms_of_buffer): Add default-scroll-*-aggressively.
4656         * buffer.h (scroll_up_aggressively): New.
4657         (scroll_down_aggressively):  New.
4659         * Makefile.in (LIBPNG): Add -lz -lm in case we're linking with
4660         a static PNG library.
4662         * configure.in (HAVE_PNG): Add -lz -lm when checking for PNG lib
4663         in case it's a static library.
4665         * Makefile.in (ctagsfiles): Split so that files starting
4666         with an `x' are found before files starting with `w32'.
4667         (ctagsfiles1): New.
4668         (ctagsfiles2): New.
4669         (TAGS): Use ctagsfiles[12] instead of ctagsfiles.
4671         * xdisp.c (compute_window_start_on_continuation_line): New.
4672         (redisplay_window): Use it.
4673         (INFINITY): New.
4674         (reseat_to_string): Use it.
4675         (hscroll_window_tree): Ditto.
4676         (compute_window_start_on_continuation_line): Ditto.
4677         (redisplay_window): Don't force display with a new window start.
4679 1999-06-06  Gerd Moellmann  <gerd@gnu.org>
4681         * xfns.c (x_report_frame_params): Don't report `outer-window-id'
4682         if widget not present.
4684         * xdisp.c (prepare_menu_bars): Ignore tooltip frame.
4686 1999-06-04  Gerd Moellmann  <gerd@gnu.org>
4688         * xfaces.c (recompute_basic_faces)[GLYPH_DEBUG]: Check return
4689         value of realize_basic_faces.
4690         (load_face_font_or_fontset): Store full font name in face.
4691         (realize_default_face): Use full font name.
4693         * xterm.c (x_produce_glyphs): Set member char_to_display.
4694         (x_append_glyph): Store char_to_display in glyphs.
4696         * dispextern.h (struct it): Add char_to_display.
4698         * xfns.c (x_set_font): Don't call face-set-after-frame-default
4699         if faces haven't been initialized.
4700         (Fx_create_frame): Call face-set-after-frame-default after
4701         faces have been initialized, and widget has been created.
4703         * puresize.h (BASE_PURESIZE): Increased.
4705 1999-06-01  Gerd Moellmann  <gerd@gnu.org>
4707         * xfaces.c (set_lface_from_font_name): Add parameter force_p.
4708         (Finternal_set_lisp_face_attribute): If frame is t when
4709         :font attribute is set, use the selected frame.
4710         (clear_face_cache): Add parameter clear_fonts_p.
4711         (Fclear_face_cache): Add optional parameter thorougly.
4713         * xfaces.c (face_numeric_value): Return -1 if symbol is not
4714         in table.
4715         (Fclear_face_cache): New.
4716         (choose_face_fontset_font): If fontset doesn't contain font
4717         pattern for the given charset, use CHARSET_ASCII.
4718         (Finternal_set_lisp_face_attribute): Fix handling of nil
4719         stipple attribute.
4720         (Finternal_set_lisp_face_attribute): Fix handling of changing
4721         font-related face attributes of the default face.
4722         (set_lface_from_font_name): Set only attributes that aren't
4723         specified.
4725 1999-05-31  Gerd Moellmann  <gerd@gnu.org>
4727         * xfaces.c (SCALABLE_FONTS): Define this to enable scalable
4728         font support.
4729         (Vscalable_fonts_allowed) [SCALABLE_FONTS]: New.
4730         (x_face_list_fonts): Add parameter scalable_fonts_p.  Handle
4731         scalable fonts depending on the setting of SCALABLE_FONTS.
4732         (first_font_matching): List more than one font to find the
4733         first non-scalable matching font.
4734         (sorted_font_list): Let x_face_list_fonts return scalable fonts
4735         depending on SCALABLE_FONTS.
4736         (better_font_p): New parameter compare_pt_p.  If zero, don't
4737         compare point sizes of fonts.
4738         (exact_face_match_p) [SCALABLE_FONTS]: New.
4739         (build_scalable_font_name) [SCALABLE_FONTS]: New.
4740         (may_use_scalable_font_p) [SCALABLE_FONTS]: New.
4741         (best_matching_font) [SCALABLE_FONTS]: Handle scalable fonts.
4742         (syms_of_xfaces):  Add scalable-fonts-allowed.
4744 1999-05-26  Gerd Moellmann  <gerd@gnu.org>
4746         * xfns.c (png_load): Let PNG lib handle gamma.  Construct
4747         mask only if image contains simple transparency information.
4748         Otherwise, combine image with frame background color.
4750         * configure.in (--with-png, HAVE_PNG): New.
4752         * config.in (HAVE_PNG): New.
4754         * Makefile.in: Add PNG library.
4756         * xfns.c: Add PNG support.
4758 1999-05-25  Gerd Moellmann  <gerd@gnu.org>
4760         * xdisp.c (init_xdisp): Initialize echo_area_message and
4761         previous_echo_area_message to nil.
4763         * keyboard.c (read_char): Rename local variable echo_area_message
4764         because it shadows the global one.
4766 1999-05-05  Gerd Moellmann  <gerd@gnu.org>
4768         * xterm.c (note_mode_line_highlight): Restructured.
4770         * window.c (coordinates_in_window): Handle windows that don't have
4771         a mode line because their buffer's mode-line-format is nil.
4772         Recognize the mode line under x positions that correspond to
4773         flags areas and left scroll bar.
4775 1999-05-02  Dave Love  <fx@gnu.org>
4777         * xterm.c (note_mouse_highlight): Separate help-echo processing
4778         from check on mouse-face so that it works generally.
4780 1999-04-21  Gerd Moellmann  <gerd@gnu.org>
4782         * sound.c (Fplay_sound): Run hook play-sound-hook.
4783         (Qplay_sound_hook): New.
4785 1999-04-20  Gerd Moellmann  <gerd@gnu.org>
4787         * xdisp.c (update_echo_area): Handle echo_area_message.
4789 1999-04-19  Gerd Moellmann  <gerd@gnu.org>
4791         * editfns.c (Fmessage): Use message3.
4793         * print.c (printchar): Set echo_area_message to nil.
4794         (strout): Ditto.
4796         * minibuf.c (read_minibuf): Reset echo message strings to nil.
4797         (Fminibuffer_completion_help): Ditto.
4799         * keyboard.c (cmd_error_internal): Set echo_areA_message.
4800         (command_loop_1): Test echo_areA_message.
4801         (read_char): Ditto.
4802         (record_menu_key): Set echo_area_message to nil.
4803         (Fexecute_extended_command): Test echo_area_message.
4804         (Fexecute_extended_command): Handle echo_area_message.
4806         * fileio.c (Fdo_auto_save): Handle the case that echo_area_message
4807         is set.
4809         * editfns.c (Fcurrent_message): If echo_area_message is set,
4810         return a substring of that string.
4812         * dispnew.c (direct_output_for_insert): Test echo_area_message
4813         in addition to echo_area_glyphs.
4814         (set_window_cursor_after_update): Ditto.
4815         (update_frame_1): Ditto.
4817         * alloc.c (Fgarbage_collect): Use message3_nolog to display
4818         old Lisp message string.
4820         * xdisp.c (echo_area_message): New.
4821         (previous_echo_area_message): New.
4822         (syms_of_xdisp): Initialize and staticpro new variables.
4823         (echo_area_display): Display echo_area_message if set.
4824         (message2_nolog): Set echo_area_message and
4825         previous_echo_area_message.
4826         (echo_area_display): Set previous_echo_area_message.
4827         (redisplay_internal): Display echo area if echo_area_message
4828         or previous_echo_area_message are set.
4829         (redisplay_preserve_echo_area): Test/set echo_area_message and
4830         previous_echo_area_message.
4831         (redisplay_window): Test echo_area_message.
4832         (message3_nolog): New.
4833         (message3): New.
4835         * editfns.c (Fformat): Add text properties to the result string
4836         from properties of the format string and properties of string
4837         arguments.
4839         * textprop.c (text_property_list): New.
4840         (add_text_properties_from_list): New.
4841         (extend_property_ranges): New.
4843 1999-03-29  Gerd Moellmann  <gerd@gnu.org>
4845         * xfaces.c (Qraised, Qsunken, QCshadow): Removed.
4846         (QCline_width, QCstyle, Qpressed_button, Qreleased_button): New.
4847         Use these symbols for the box face attribute instead of the
4848         removed ones.
4850 1999-03-12  Gerd Moellmann  <gerd@gnu.org>
4852         * xfaces.c (realize_tty_face): Don't set alt_char_p of face.
4853         Correct wrong test for slant.
4855 1999-03-10  Gerd Moellmann  <gerd@gnu.org>
4857         * xfaces.c: Use `unspecified' for unspecified face attributes,
4858         use t and nil for on/off.
4860 1999-03-06  Gerd Moellmann  <gerd@gnu.org>
4862         * buffer.c (syms_of_buffer): Extend doc string of
4863         mode-line-format.
4865         * xfaces.c (x_face_list_fonts): New parameter try_alternatives_p.
4866         (first_font_matching): New.
4867         (set_lface_from_font_name): Use it if font name is a pattern.
4868         (font_field_wildcard_p): Removed.
4870         * dispnew.c (shift_glyph_matrix): Add `window' parameter.
4871         Recompute visible height of rows.
4873         * xterm.c (note_mouse_highlight): Reorder code for help-echo.
4874         Don't accept non-strings for help-echo from overlays.
4876 1999-03-04  Dave Love  <fx@gnu.org>
4878         * xterm.c (note_mouse_highlight): Check overlays for help-text
4879         property.
4880         (XTread_socket): Fix compiler warning.
4882 1999-03-05  Gerd Moellmann  <gerd@gnu.org>
4884         * xterm.c (note_mouse_highlight): Don't restrict number of
4885         overlay to 10.  Call overlays_at so that it doesn't try to
4886         extend the vector.
4888         * xdisp.c (compute_line_metrics): Compute glyph row's visible
4889         height.
4891         * dispnew.c (row_equal_p): Compare visible row height, only.
4892         (update_text_area): Draw whole line if visible heights of
4893         rows differ.
4894         (update_window_line): Call after_update_window_line_hook
4895         if visible row height has changed.
4897         * dispextern.h (MATRIX_ROW_VISIBLE_HEIGHT): Removed.
4898         (struct glyph_row): New member visible_height.
4900         * xfaces.c (font_field_wildcard_p): New.
4901         (set_lface_from_font_name): Remove parameter force_p.  Accept
4902         font names containing wildcards.
4904 1999-03-04  Gerd Moellmann  <gerd@gnu.org>
4906         * xterm.c (x_after_update_window_line): Clear internal border
4907         when windows_or_buffers_changed.
4909         * dispextern.h (WINDOW_WANTS_MODELINE_P): Return zero if window's
4910         buffer has a nil mode_line_format.
4912 1999-03-03  Gerd Moellmann  <gerd@gnu.org>
4914         * xterm.c (x_setup_relief_colors): Use either background color
4915         or specified color.
4917         * xfaces.c (realize_x_face): Set face->use_box_color_for_shadows_p.
4919         * dispextern.h (struct face): Add use_box_color_for_shadows_p.
4921         * xterm.c (x_draw_box_rect): New.
4922         (x_draw_glyph_string_box): Renamed from
4923         x_draw_glyph_string_relief.  Call x_draw_box_rect.
4925         * xfns.c (QCrelief): New.
4926         (syms_of_xfns): Initialize it.
4928         * dispextern.h (struct glyph): Rename left_shadow_p to
4929         left_box_line_p, right_shadow_p to right_box_line_p.
4930         (MAX_RELIEF_THICKNESS): Removed.
4931         (struct it): Rename members having `relief' in their names
4932         to contain `box' instead.
4934         * xfaces.c (realize_x_face): Handle new box attribute values.
4935         (QCrelief, Qbox): Removed.
4936         (QCshadow, QCcolor, Qraised, Qsunken): New.
4937         (syms_of_xfaces): Initialize new symbols.
4939 1999-03-02  Gerd Moellmann  <gerd@gnu.org>
4941         * dispextern.h (LFACE_RELIEF_INDEX): Removed.
4943         * xfaces.c (LFACE_RELIEF): Removed.
4944         (merge_face_vector_with_property): Remove handling of `:relief'.
4945         (Finternal_set_lisp_face_attribute): Ditto.
4946         (Finternal_set_lisp_face_attribute_from_resource): Ditto.
4947         (Finternal_get_lisp_face_attribute): Ditto.
4948         (realize_default_face): Ditto.
4949         (lface_hash): Don't compute hash from relief.
4951         * dispextern.h (struct face): Replace member `relief' by
4952         `box_line_width'.  Add member `box'.
4953         (face_box_type): New.
4955         * xterm.c (x_produce_glyphs): If face has overline, add overline
4956         thickness + 1 to ascent.
4958 1999-03-01  Gerd Moellmann  <gerd@gnu.org>
4960         * xterm.c (x_draw_glyph_string): Draw underline, overline,
4961         strike-through, and boxes.
4962         (x_draw_glyph_string_underline): Removed.
4964         * xfaces.c (QCoverline, QCstrike_through, QCbox): New.
4965         (Qoverline, Qstrike_through, Qbox): New.
4966         (syms_of_xfaces): Define these symbols.
4967         (check_lface_attrs): Add checks for overline, strike-through,
4968         and box.
4969         (Finternal_set_lisp_face_attribute): Set new attributes.
4970         (LFACE_OVERLINE, LFACE_STRIKE_THROUGH, LFACE_BOX): New.
4971         (load_color): Handle new attributes.
4972         (realize_x_face): Ditto.
4973         (merge_face_vector_with_property): Ditto.
4974         (free_face_colors): Ditto.
4975         (Finternal_set_lisp_face_attribute_from_resource): Ditto.
4976         (Finternal_get_lisp_face_attribute): Ditto.
4977         (Finternal_lisp_face_attribute_values): Ditto.
4979         * dispextern.h (lface_attribute_index): Add enumerators for
4980         overstrike, strike-through, and box.
4981         (struct face): Add members for overline, strike-through, and
4982         box.
4984 1999-02-17  Dave Love  <fx@gnu.org>
4986         * s/gnu-linux.h s/gnu.h s/irix5-0.h s/netbsd.h s/sco4.h s/sco5.h
4987         s/template.h (NARROWPROTO): Define on the basis of relevant X cf
4988         files.
4990 1999-02-16  Gerd Moellmann  <gerd@gnu.org>
4992         * keyboard.c (toolbar_items): Call access_keymap with third
4993         parameter 1, so that we don't get inherited toolbar item
4994         definitions.
4996         * xdisp.c (redisplay_internal): In optimization 1, don't decrement
4997         the window end vpos when in empty first line of window.
4999 1999-02-15  Gerd Moellmann  <gerd@gnu.org>
5001         * xfaces.c (set_font_frame_param): New.
5002         (Finternal_set_lisp_face_attribute): Call it.
5004 Sun Feb 14 10:54:02 1999  Masatake Yamato  <masata-y@is.aist-nara.ac.jp>
5006         * xfaces.c (Finternal_set_lisp_face_attribute_from_resource):
5007         Accept specifications of color for underline.
5009 1999-02-13  Gerd Moellmann  <gerd@gnu.org>
5011         * xfaces.c (Finternal_set_lisp_face_attribute): If parameter
5012         `frame' is t, operate on face defaults for new frames.  If it
5013         is nil, operate on the selected frame.
5015 1999-02-12  Gerd Moellmann  <gerd@gnu.org>
5017         * dispnew.c (check_matrix_invariants): Put it in #if 0.
5018         (update_window): Put the call to check_matrix_invariants in #if 0.
5020 Sun Feb  7 09:58:49 1999  Masatake Yamato  <masata-y@is.aist-nara.ac.jp>
5022         * dispextern.h: Remove all else block of UNDERLINE_COLOR.
5023         Remove definition of UNDERLINE_COLOR.
5025 Mon Jan  4 04:43:41 1999  Masatake Yamato  <masata-y@is.aist-nara.ac.jp>
5027         * xfaces.c (free_face_colors): Free the color for underline.
5029         * xterm.c (x_draw_glyph_string_underline): Set the color for underline
5030         to the GC.
5032 Sun Jan  3 08:41:10 1999  Masatake Yamato  <masata-y@is.aist-nara.ac.jp>
5034         * dispextern.h  (UNDERLINE_COLOR): Defined.
5035         (struct face): Added two new members.
5036         underline_color, underline_defaulted_p.
5038         * xfaces.c (merge_face_vector_with_property):
5039         (check_lface_attrs): Accept the string value for underline.
5040         (Finternal_set_lisp_face_attribute): Likewise.
5042         * xfaces.c (load_color): Change the last argument type to enum
5043         lface_attribute_index from int. And addec code for underling coloring.
5044         (load_face_colors): Pass LFACE_*_INDEX to load_color.
5046 1999-02-12  Gerd Moellmann  <gerd@gnu.org>
5048         * xfns.c (Fx_image_header): Removed.
5050 1999-02-07  Gerd Moellmann  <gerd@gnu.org>
5052         * xterm.c: Don't include <bitmaps/gray>.
5053         (x_term_init): Use gray_bitmap_width and gray_bitmap_height.
5055         * xfns.c (Fx_image_header): Add missing `\n\'.
5056         (gray_bitmap_width, gray_bitmap_height, gray_bitmap_bits): New.
5058 1999-02-01  Gerd Moellmann  <gerd@gnu.org>
5060         * xterm.c (x_scroll_bar_create): Set background pixel from
5061         specified scroll bar color.
5062         (x_scroll_bar_set_handle): Use scroll bar foreground color.
5064         * xfns.c (x_set_scroll_bar_foreground): Remove all scroll bars.
5065         (x_set_scroll_bar_background): Ditto.
5067         * xterm.c (x_create_toolkit_scroll_bar): Set scroll bar colors.
5069         * xfns.c (x_default_scroll_bar_color_parameter): New.
5070         (Fx_create_frame): Call it.
5072 1999-01-31  Gerd Moellmann  <gerd@gnu.org>
5074         * xfns.c (Fx_create_frame): Initialize scroll bar pixel color
5075         values in x_output structure.
5076         (Qscroll_bar_foreground, Qscroll_bar_background): New.
5077         (syms_of_xfns): Initialize these symbols.
5079         * xterm.h (struct x_output): Add scroll bar pixel colors.
5081         * xfns.c (x_frame_parms): Add entries for scroll bar colors.
5082         (x_set_scroll_bar_foreground): New.
5083         (x_set_scroll_bar_background): New.
5085 1999-01-12  Gerd Moellmann  <gerd@gnu.org>
5087         * xdisp.c (handle_single_display_prop): New.
5088         (handle_display_prop): Call it.
5089         (handle_raise_prop): Removed.
5090         (handle_height_prop): Removed.
5091         (handle_space_width_prop): Removed.
5092         (handle_face_prop): Remove handling of raised text.
5093         (handle_display_prop): Do it here.
5095         * dispextern.h (DISPLAY_PROP_IDX): Replaces GLYPH_PROP_IDX.
5096         (RAISE_PROP_IDX): Removed.
5097         (HEIGHT_PROP_IDX): Removed.
5098         (SPACE_WIDTH_PROP_IDX): Removed.
5100         * xdisp.c (Qdisplay): Replaces Qglyph.
5101         (handle_display_prop): Formerly handle_glyph_prop.
5103 1999-01-11  Gerd Moellmann  <gerd@gnu.org>
5105         * xdisp.c (reseat_to_string): Set position in display vector to -1.
5106         (handle_stop): Set position in display vector to -1.  Don't
5107         check overlay strings when set up to deliver characters from a
5108         display vector.
5109         (set_iterator_to_next): At the end of a run of characters from a
5110         display vector, check whether the display vector display replaces
5111         the display of a character.
5113 1999-01-05  Gerd Moellmann  <gerd@gnu.org>
5115         * xfaces.c (init_frame_faces): Don't realize faces if frame's
5116         X window hasn't been created yet.
5118 1998-12-06  Gerd Moellmann  <gerd@gnu.org>
5120         * sound.c: New.
5122 1998-12-04  Gerd Moellmann  <gerd@gnu.org>
5124         * config.in (HAVE_SOUND): New.
5126         * emacs.c (main): Call syms_of_sound and init_sound.
5128         * Makefile.in (obj): Add sound.o.
5130         * configure.in: Add checks for machine/soundcard.h and sys/soundcard.h.
5132         * config.in (HAVE_MACHINE_SOUNDCARD_H): New.
5133         (HAVE_SYS_SOUNDCARD_H): New.
5135 1998-12-03  Gerd Moellmann  <gerd@gnu.org>
5137         * buffer.h (struct buffer): indicate_empty_lines renamed from
5138         indicate_zv_lines.
5140         * buffer.c (indicate-empty-lines): Renamed from indicate_zv_lines.
5141         (default-indicate-zv-lines): Likewise.
5143         * dispextern.h (struct glyph_row): Rename indicate_zv_line_p
5144         to indicate_empty_line_p.
5146         * xdisp.c (reseat_at_next_visible_line_start): Reset method
5147         to next_element_from_buffer.
5149         * frame.c (make_frame): Set n_current_toolbar_items to 0.
5151         * xdisp.c (handle_face_prop): Allow symbols of the form `N+'
5152         and `N-'.
5154         * xfns.c (xbm_scan): New.
5155         (xbm_read_hexint): Removed.
5156         (xbm_read_bitmap_file_data): Use xbm_scan.
5158         * fileio.c (Finsert_file_contents): Prevent redisplay optimizations.
5160 1998-12-02  Gerd Moellmann  <gerd@gnu.org>
5162         * xfns.c (xbm_read_hexint): New.
5163         (xbm_read_bitmap_file_data): New.
5164         (xbm_load_image_from_file): Call xbm_read_bitmap_file_data
5165         instead of XReadBitmapFileData.
5167         * xdisp.c (handle_raise_prop): Compute voffset from current font.
5169         * xfaces.c (face_with_height): New.
5171         * xdisp.c (eval_handler): Renamed from eval_mode_handler.
5172         (eval_form): Renamed from eval_mode_element.
5173         (handle_face_prop): Use it.
5174         (Qheight): Replaces Qsmaller.
5175         (handle_height_prop): Replaces handle_smaller_prop.
5176         (handle_face_prop): If iterator's font_height is not an
5177         integer, evaluate it to get the font height to use.
5179         * dispextern.h (HEIGHT_PROP_IDX): Replaces SMALLER_PROP_IDX.
5180         (struct it): Use `font_height' instead of `smaller'.
5182 1998-12-01  Gerd Moellmann  <gerd@gnu.org>
5184         * xdisp.c (reseat_1): New.
5185         (reseat): Call it.
5186         (move_it_vertically_backward): Ditto.
5187         (redisplay_window): Don't abort when cursor not found in recenter.
5189 1998-11-30  Gerd Moellmann  <gerd@gnu.org>
5191         * xdisp.c (reseat_at_next_visible_line_start): When not
5192         currently delivering display elements from the current buffer,
5193         restore buffer position first.
5194         (init_from_display_pos): Don't set IT's position from the
5195         position passed to this function.
5197 1998-11-28  Gerd Moellmann  <gerd@gnu.org>
5199         * config.in (PROTO): Removed.
5201         * xterm.h: Change PROTO to P_.
5203 1998-11-26  Gerd Moellmann  <gerd@gnu.org>
5205         * xterm.c (take_vertical_position_into_account): New.
5206         (x_produce_image_glyph): Call it.
5207         (x_produce_stretch_glyph): Ditto.
5208         (x_produce_glyphs): Ditto.
5209         (x_fill_glyph_string): Adjust base line for glyph's voffset.
5210         (x_fill_composite_glyph_string): Ditto.
5211         (x_fill_image_glyph_string): Ditto.
5212         (x_fill_stretch_glyph_string): Ditto.
5214         * xdisp.c (display_line): Always compute row height from
5215         max_ascent and max_descent.
5217         * dispextern.h (struct glyph): Add voffset.
5218         (struct it): Replace height by descent, max_height by max_descent.
5220         * xterm.c (x_append_glyph): Set voffset
5221         (x_append_stretch_glyph): Ditto.
5222         (x_produce_image_glyph): Ditto.
5223         (x_produce_glyphs): Take voffset into account.
5224         (x_produce_image_glyph): Ditto.
5225         (x_produce_stretch_glyph): Ditto.
5227         * dispextern.h (struct it): Add voffset.
5228         * xdisp.c (push_it): Save voffset.
5229         (pop_it): Restore it.
5231         * xdisp.c (it_props): Add entry for `raise'.
5232         (handle_raise_prop): New.
5234         * dispextern.h (RAISE_PROP_IDX): New.
5236         * xdisp.c (Qraise): New.
5237         (syms_of_xdisp): Define Qraised.
5239         * xterm.c (x_scroll_bar_move): Clear to the left and right
5240         of toolkit scroll bars differently.
5241         (x_scroll_bar_move): Removed.
5242         (XTset_vertical_scroll_bar): Move code from x_scroll_bar_move here.
5244         * dispextern.h: Make it compilable --with-x=no.
5245         * alloc.c: Ditto.
5246         * emacs.c: Ditto.
5247         * dispnew.c: Ditto.
5248         * keyboard.c: Ditto.
5249         * term.c: Ditto.
5250         * xdisp.c: Ditto.
5251         * xfaces.c: Ditto.
5252         * xfns.c: Ditto.
5253         * xmenu.c: Ditto.
5255 1998-11-25  Gerd Moellmann  <gerd@gnu.org>
5257         * xterm.c (XTread_socket): Cancel help-echo when leaving frame.
5259 1998-11-24  Gerd Moellmann  <gerd@gnu.org>
5261         * xterm.c (x_set_toolkit_scroll_bar_thumb): When dragging,
5262         update slider size, only.
5263         (xm_scroll_callback): Set dragging member of the scroll bar.
5264         (xt_action_hook): Reset last_scroll_bar_part.
5265         (XTredeem_scroll_bar): Reset bar->dragging to nil.
5267         * xfns.c (Fx_hide_busy_cursor): Don't try to hide busy cursor
5268         window on newly created frames that don't have one.
5270 1998-11-23  Gerd Moellmann  <gerd@gnu.org>
5272         * xdisp.c (restore_overlay_strings): Removed.
5273         (restore_dpvec): Removed.
5274         (init_from_display_pos): Inline both functions above.
5276         * xfns.c (IMAGE_NON_NEGATIVE_INTEGER_VALUE): New.
5277         (parse_image_spec): Handle it.
5278         (xbm_format): Use it.
5279         (xpm_format): Ditto.
5280         (pbm_format): Ditto.
5281         (jpeg_format): Ditto.
5282         (tiff_format): Ditto.
5283         (gif_format): Ditto.
5284         (gs_format): Ditto.
5286         * xdisp.c (set_window_cursor): Removed.
5287         (redisplay_internal): Case cursor motion in cursor line of
5288         selected window; use set_cursor_from_row.
5290 1998-11-22  Gerd Moellmann  <gerd@gnu.org>
5292         * widget.c (EmacsFrameSetCharSize): Take widget's border width
5293         into account.
5295 1998-11-21  Gerd Moellmann  <gerd@gnu.org>
5297         * xterm.c (expose_frame): Redraw menu bar window.
5299         * xdisp.c (display_menu_bar): Record hpos instead of x-position
5300         in menu item.
5302         * dispnew.c (change_frame_size_1): Use FRAME_TOP_MARGIN instead
5303         of FRAME_TOOLBAR_LINES.  Use `f' instead of `frame'.
5305         * widget.c (set_frame_size): Use FRAME_SCROLL_BAR_COLS
5306         to determine vertical_scroll_bar_extra.
5307         (EmacsFrameSetCharSize): Ditto.
5308         * xfns.c (x_figure_window_size): Ditto.
5310         * xterm.c (x_draw_row_bitmaps): Draw in `bitmap-area' face.
5311         (x_draw_bitmap): Ditto.
5313         * dispextern.h (face_id): New id BITMAP_AREA_FACE_ID.
5314         * xfaces.c (realize_basic_faces): Realize it.
5316 1998-11-20  Gerd Moellmann  <gerd@gnu.org>
5318         * xmenu.c (xmenu_show): Add workaround for remaining button grab
5319         under LessTif   Use the widget of the frame as parent for the
5320         menu, again.
5322 1998-11-19  Gerd Moellmann  <gerd@gnu.org>
5324         * xterm.c (XTread_socket): Inhibit busy cursor for EnterNotify.
5325         When EnterNotify, don't generate a mouse movement event if
5326         notification is from a busy-cursor child window.
5328         * xterm.h (struct x_output): Add busy_window, remove cursor.
5330         * xfns.c (Fx_show_busy_cursor): Formerly Fx_display_busy_cursor.
5331         Use a transparent window to display the busy-cursor.
5332         (Fx_hide_busy_cursor): Formerly Fx_undisplay_busy_cursor.
5334 1998-11-17  Gerd Moellmann  <gerd@gnu.org>
5336         * xdisp.c (check_window_end): New, for debugging.
5337         (CHECK_WINDOW_END): New.
5338         (try_window_id): Use it.
5340         * xterm.c (process_expose_from_menu): Return int.
5342         * keyboard.c (kbd_buffer_get_event): Set flag to prevent recording
5343         TOOLBAR_EVENT events in last_nonmenu_event.
5345 1998-11-16  Gerd Moellmann  <gerd@gnu.org>
5347         * xdisp.c (redisplay_window): If windows_or_buffers_changed,
5348         window end isn't reliable, so set window_end_valid to nil.
5349         (redisplay_internal): If overlay arrow has changed, set
5350         windows_or_buffers_changed to redisplay thoroughly.
5352         * dispnew.c (adjust_glyph_matrix): Invalidate window end, if
5353         necessary.
5355         * xfns.c (file_dialog_cb): New.
5356         (Fx_file_dialog): New.
5357         * fileio.c (Fread_file_name): Call it.
5359         * xrdb.c (x_load_resources): Add default resoures for file
5360         selection dialog.
5362 1998-11-14  Gerd Moellmann  <gerd@gnu.org>
5364         * xterm.c (note_mouse_highlight): Don't highlight when popup
5365         is active.
5367         * keyboard.c (timer_check): Inhibit busy cursor around calls to
5368         timer-event-handler.  This busy cursor tends to be anoying if
5369         fontifying stealthily.
5371         * dispnew.c (direct_output_for_insert): Give up if current row
5372         contains trailing whitespace.
5374 1998-11-13  Gerd Moellmann  <gerd@gnu.org>
5376         * dispextern.h (prop_idx): Add FONTIFIED_PROP_IDX.
5378         * xdisp.c (handle_fontified_prop): New.
5379         (Vfontification_functions): New.
5380         (Qfontification_functions): New.
5381         (it_props): Add handle_fontified_prop.
5383 1998-11-12  Gerd Moellmann  <gerd@gnu.org>
5385         * xmenu.c (xmenu_show): Use the frame's edit_widget as parent.
5386         Otherwise, under LessTif, after the popup has gone, all button
5387         press events come in for the frame's widget, and release events
5388         come in for the edit_widget.
5389         * xterm.c (XTread_socket): Remove workaround for that problem.
5390         (x_set_toolkit_scroll_bar_thumb): Add workaround for LessTif
5391         XmScrollBarSetValues.
5392         (SET_SAVED_MENU_EVENT): Give it statement form.
5394         * xfaces.c (display_message): If waiting_for_input, don't display
5395         the message.
5397         * window.c (scroll_command): If not acting on current_buffer,
5398         make redisplay consider all windows.
5400         * xfns.c (Fx_hide_tip): Return t if tooltip was open.
5402         * xdisp.c (handle_glyph_prop): Set it->object for images to
5403         the object having the glyph property.
5405         * xterm.c (x_draw_row_bitmaps): Don't draw if row is completely
5406         invisible.
5408 1998-11-11  Gerd Moellmann  <gerd@gnu.org>
5410         * xterm.h (struct x_display_info): Add gray pixmap.  * xterm.c
5411         (x_term_init): Create the gray pixmap.
5412         (x_setup_relief_color): Use it.
5413         (x_get_glyph_string_clip_rect): Draw a toolbar window over the
5414         internal border at the top of a frame.
5415         (x_init_glyph_string): Likewise.
5416         (x_draw_glyph_string_relief): Correct right x by 1 pixel for
5417         full-width lines.
5418         (XTflash): Don't flash the toolbar window.
5420         * xterm.c (XTread_socket): Workaround for LessTif popup menus
5421         in case of ButtonPress events.
5423 1998-11-10  Gerd Moellmann  <gerd@gnu.org>
5425         * xrdb.c (x_load_resources): Add grey background colors as
5426         defaults for menus, scroll bars, and dialogs.
5428         * insdel.c (prepare_to_modify_buffer): Move setting
5429         windows_or_buffers_changed from modify_region here.
5431         * xfns.c (Fx_show_tip): Inhibit redisplay.
5432         (Fx_hide_tip): Ditto.
5433         (Fx_image_header): New.
5435 1998-11-09  Gerd Moellmann  <gerd@gnu.org>
5437         * dispnew.c (clear_window_matrices): Set window_end_valid to nil
5438         when clearing current window matrices.
5440 1998-11-08  Gerd Moellmann  <gerd@gnu.org>
5442         * xdisp.c (handle_glyph_prop): Don't set an iterator's buffer
5443         position from a string position.  Use the right end position
5444         if the property spans a whole overlay string.
5446 1998-11-07  Gerd Moellmann  <gerd@gnu.org>
5448         * xmenu.c (menubar_selection_callback): Remove workaround for
5449         Lesstif not calling XmNpopdownCallback because it doesn't
5450         handle the case where users don't select any menu item.
5452         * insdel.c (modify_region): Set windows_or_buffers_changed.
5454         * buffer.c (set_buffer_internal): Don't set
5455         windows_or_buffers_changed.
5457         * xmenu.c (HAVE_BOXES): Define if USE_X_TOOLKIT.
5459         * xmenu.c (menubar_selection_callback): Add workaround for
5460         Lesstif not calling XmNpopdownCallback.
5462         * xdisp.c (eval_mode_element): New.
5463         (eval_mode_handler): New.
5464         (display_mode_element): Use eval_mode_element.
5466         * xdisp.c (display_mode_element): Allow `(:eval FORM)'.
5467         Remove code looking at text props of default value.
5469         * xmenu.c (HAVE_BOXES): Define if using Lucid menus.
5471 1998-11-06  Gerd Moellmann  <gerd@gnu.org>
5473         * xmenu.c (single_submenu): Set button_type of menu to
5474         BUTTON_TYPE_NONE.
5475         (single_submenu): Likewise for panes and menu items.
5476         (set_frame_menubar): Set button_type of menu bar to none.
5477         (xmenu_show): Likewise.
5478         (single_submenu): Set widget values selected slot.
5479         (xmenu_show): Likewise.
5481         * xmenu.c (push_menu_item): Add parameters `type' and
5482         `selected'. Store it in menu_items.
5483         (MENU_ITEMS_ITEM_TYPE): New.
5484         (MENU_ITEMS_ITEM_SELECTED): New.
5485         (MENU_ITEMS_ITEM_LENGTH): Increase by two.
5487         * xfns.c (clear_image_cache): Get the current time, before
5488         doing anything.
5489         (cache_image): Set prev pointer of next image.
5490         (clear_image_cache): Clear current matrices if any image was
5491         freed.
5493         * xterm.c (XTread_socket): Set inhibit_busy_cursor.
5495         * xfns.c (x_set_cursor): New.
5496         (Fx_display_busy_cursor): New.
5497         (Fx_undisplay_busy_cursor): New.
5499         * xterm.h (struct x_output): Add busy_cursor.
5501         * xfns.c (Vx_busy_pointer_shape): New.
5502         (x_set_mouse_color): Create busy cursor.
5504         * process.c (wait_reading_process_input): Show and hide busy
5505         cursor.
5507         * keyboard.c (command_loop_1): Display busy cursor.
5509         * eval.c (Fsignal): Hide busy cursor.
5511         * buffer.c (set_buffer_internal): Don't set
5512         windows_or_buffers_changed.
5514         * xterm.c (redo_mouse_highlight): New.
5516 1998-11-04  Gerd Moellmann  <gerd@gnu.org>
5518         * xfns.c (x_create_x_image_and_pixmap): Add depth parameter.
5519         (x_build_heuritic_mask): New.
5520         (lookup_image): Call it.
5522         * xterm.c (note_toolbar_highlight): Always set up help_echo.
5523         (previous_help_echo): New.
5524         (XTread_socket): Generate help event with nil message when
5525         leaving a region with help-echo.
5526         (note_mouse_highlight): Handle `help-echo' over text.
5527         (XTread_socket): Dispatch VisibilityNotify, CirculateNotify,
5528         CirculateRequest.
5529         (clear_mouse_face): Don't clear if tooltip is shown.
5530         (XTread_socket): Redo mouse-highlight after tooltip is gone.
5531         Avoid SET_FRAME_GARBAGED when tooltip is mapped.
5533         * keyboard.c (Vshow_help_function): New.
5534         (read_char): Use it.
5536 1998-11-03  Gerd Moellmann  <gerd@gnu.org>
5538         * xfns.c (x_create_tip_frame): New.
5539         (Fx_show_tip): New.
5540         (Fx_hide_tip): New.
5542         * xterm.c (x_destroy_window): Handle case that we don't have
5543         a widget.
5545         * dispextern.h (struct glyph_row): Rename no_marginal_areas_p
5546         to full_width_p.  Add internal_border_p.
5548 1998-11-02  Gerd Moellmann  <gerd@gnu.org>
5550         * xterm.c (note_mode_line_highlight): Check the charpos of
5551         the glyph under the mouse pointer before accessing text
5552         properties at that position.
5554 1998-11-01  Gerd Moellmann  <gerd@gnu.org>
5556         * xterm.c (x_draw_image_relief): Handle toolbar_button_relief.
5558         * xdisp.c (auto-raise-toolbar-buttons): New.
5559         (build_desired_toolbar_string): Handle the flag.
5560         (toolbar-button-margin): New.
5561         (toolbar-button-relief): New.
5562         (build_desired_toolbar_string): Use margin and relief.
5564         * xterm.c (x_set_toolkit_scroll_bar_thumb): Remove workaround
5565         for FreeBSD.
5566         (note_mode_line_highlight): New.
5567         (note_mouse_highlight): Call it.
5569 1998-10-31  Gerd Moellmann  <gerd@gnu.org>
5571         * s/freebsd.h (NARROWPROTO): New.
5573         * xdisp.c (display_string): New parameter face_string.
5574         (display_mode_element): When displaying a symbol with a string
5575         value, use text properties from the symbol's default value, maybe.
5577         * xrdb.c (x_load_resources): Add font defaults for menus and
5578         dialogs.
5580 1998-10-30  Gerd Moellmann  <gerd@gnu.org>
5582         * xfns.c (Fx_create_frame): Try 12pt Courier font first.
5584 1998-10-29  Gerd Moellmann  <gerd@gnu.org>
5586         * xterm.c (x_produce_glyphs): Fix bug causing glyphs to be
5587         produced for characters with codes < 32 under certain
5588         circumstances.
5590         * xdisp.c (redisplay_window): Handle values of PT in front
5591         of invisible, intangible text.
5592         (try_window_id): Set overlay_arrow_seen to zero before
5593         displaying lines.
5594         (display_mode_element): Assign to glyphs written for a mode
5595         line spec `%x' as object the Lisp format string, as position
5596         the position of the `%' in that string.
5597         (display_string): If displaying a C string, optionally get
5598         the face to use from a Lisp string.
5600         * xterm.c (expose_window_tree): Include mode line height.
5602         * xfns.c (Fx_create_frame): Add toolbar height to frame height.
5604 1998-10-27  Gerd Moellmann  <gerd@gnu.org>
5606         * xterm.c (note_mouse_highlight): Change mouse pointer shape
5607         over mode line.
5609 1998-10-26  Gerd Moellmann  <gerd@gnu.org>
5611         * window.c (coordinates_in_window): Use CURRENT_MODE_LINE_HEIGHT.
5613         * xdisp.c (redisplay_window): If mode line height has changed,
5614          arrange for a thorough immediate redisplay using the correct mode
5615          line height.
5616          (window_box_height): Use CURRENT_MODE_LINE_HEIGHT.
5618         * dispextern.h (MATRIX_MODE_LINE_HEIGHT): New.
5619         (CURRENT_MODE_LINE_HEIGHT): New.
5620         (DESIRED_MODE_LINE_HEIGHT): New.
5622         * keyboard.c (make_lispy_event): Add string and string position
5623         info to mouse-click events.
5624         (read_key_sequence): Handle `local-map' property of mode line
5625         strings.
5627         * keyboard.h (POSN_STRING): New.
5629 1998-10-25  Gerd Moellmann  <gerd@gnu.org>
5631         * dispnew.c (mode_line_string): Mew.
5633         * xterm.c (xt_action_hook): New.
5634         (x_create_toolkit_scroll_bar): Add action hook.
5635         (xm_scroll_callback): Implement dragging.
5637         * keyboard.c (Qend_scroll): New.
5638         (scroll_bar_parts): Add it.
5640         * termhooks.h (scroll_bar_end_scroll): New.
5642         * xterm.c (XTread_socket): Bug fix.
5644 1998-10-24  Gerd Moellmann  <gerd@gnu.org>
5646         * xdisp.c (redisplay_window): Finish scroll bars after
5647         redisplaying toolbar.
5649         * keyboard.c (scroll_bar_parts): Add Qtop and Qbottom.
5650         (syms_of_keyboard): Add Qbottom.
5652         * termhooks.h (scroll_bar_to_top): New.
5653         (scroll_bar_to_bottom): New.
5655         * xdisp.c (redisplay_window): Always resize toolbar window if
5656         auto_resize_toolbar_p is non-zero.
5657         (auto_resize_toolbar_p): Renamed from auto_resize_toolbar.
5658         (window_box): New.
5659         (window_box_height): New.
5660         (window_box_width): New.
5661         (window_box_left): New.
5662         (window_box_right): New.
5663         (window_box_edges): New.
5665 1998-10-23  Gerd Moellmann  <gerd@gnu.org>
5667         * xterm.c (x_set_toolkit_scroll_bar_thumb): Kluge for call to
5668         XawScrollbarSetThumb in FreeBSD.
5669         (x_create_toolkit_scroll_bar): Set resource "beNiceToColormap"
5670         to true.
5672         * window.c (get_phys_cursor_glyph): Return null if cursor vpos
5673         is out of range.
5675         * xterm.c (x_create_toolkit_scroll_bar): Set scroll_bar_pixel.
5676         (x_term_init): Initialize it.
5678         * xterm.h (struct x_display_info): Add scroll_bar_pixel.
5680         * xterm.c (x_create_toolkit_scroll_bar): Set LessTif scroll bar's
5681         cursor.
5683 1998-10-22  Gerd Moellmann  <gerd@gnu.org>
5685         * keyboard.c (make_lispy_event): Handle scroll_bar_click
5686         differently when using toolkit scroll bars.
5688         * xterm.c (x_send_scroll_bar_event): New.
5689         (x_scroll_bar_to_input_event): New.
5690         (xaw3d_scroll_callback): New.
5691         (xaw3d_jump_callback): New.
5692         (xm_scroll_callback): New.
5693         (x_toolkit_scroll_p): New.
5694         (XTread_socket): Handle scroll bar client message.
5695         (x_term_init): Initialize Xatom_Scrollbar.
5696         (x_scroll_bar_create): Set cursor.
5697         (xm_scroll_callback):
5698         (x_create_toolkit_scroll_bar): New.
5699         (x_set_toolkit_scroll_bar_thumb): New.
5700         (x_scroll_bar_create): Call x_create_toolkit_scroll_bar.
5701         (XTset_vertical_scroll_bar): Call x_set_toolkit_scroll_bar_thumb.
5703         * xterm.h (struct x_display_info): Add Xatom_Scrollbar.
5705 1998-10-21  Gerd Moellmann  <gerd@gnu.org>
5707         * xterm.c (x_scroll_bar_remove): Handle toolkit scroll bars.
5708         (XTread_socket): Don't handle mouse button events for scroll bars
5709         if using toolkit scroll bars.
5710         (XTset_vertical_scroll_bar): Set thumb size and position for
5711         Athena scroll bar.
5713         * xterm.h (scroll_bar): Add x_widget_low and x_widget_high.
5715         * xterm.c (XTread_socket): Dispatch expose event to widget
5716         if using toolkit scroll bars.
5717         (x_scroll_bar_expose): Make no-op for toolkit scroll bars.
5718         (x_scroll_bar_create): Create and show a scroll bar widget
5719         if using toolkit scroll bars.
5720         (x_scroll_bar_move): Handle tookit scroll bars.
5722         * Makefile.in (LIBW): Use Xaw3d if present.
5724         * configure.in (USE_TOOLKIT_SCROLL_BARS): New.
5725         (HAVE_XAW3D): New.
5727         * config.in (USE_TOOLKIT_SCROLL_BARS): New.
5728         (HAVE_XAW3D): New.
5730         * xterm.c (XTset_vertical_scroll_bar): Correct position of
5731         right vertical scroll bar.
5733 1998-10-20  Gerd Moellmann  <gerd@gnu.org>
5735         * xfns.c (xpm_load): Support reading XPM images from string
5736         buffers containing data in the same format as an XPM file.
5737         Support `:color-symbols'.
5738         (xpm_format): Add `:data'.
5739         (xpm_keyword_index): Add XPM_DATA.
5740         (syms_of_xfns): Add `:color-symbols'.
5741         (xpm_keyword_index): Add XPM_COLOR_SYMBOLS.
5742         (xpm_valid_color_symbols_p): New.
5743         (xpm_image_p): Call it.
5745         * xdisp.c (build_desired_toolbar_string): Add `:algorithm'
5746         attribute to the image if item is not enabled.
5748         * xfns.c (x_laplace): New.
5749         (x_laplace_read_row): New.
5750         (x_laplace_write_row): New.
5751         (lookup_image): Handle common image attributes here.  New
5752         attribute `:algorithm'.
5754         * xfaces.c (clear_face_cache): Call clear_image_cache.
5756         * xterm.c (x_inverted_image_mask): Removed.
5757         (x_draw_image_foreground_1): New.
5758         (x_draw_image_glyph_string): Draw images with mask to a temporary
5759         pixmap to reduce flickering.
5761         * xdisp.c (redisplay_toolbar): Handle auto-resize-toolbars.
5762         (display_toolbar_line): Remove parameter `margin'.
5764 1998-10-19  Gerd Moellmann  <gerd@gnu.org>
5766         * xdisp.c (toolbar_lines_needed): New.
5767         (auto-resize-toolbars): New.
5769         * xfns.c (cache_image): Correct call to xrealloc.
5771         * dispnew.c (Fset_toolbar_height): Removed.
5773         * xdisp.c (init_xdisp): Use FRAME_TOP_MARGIN instead of
5774         FRAME_MENU_BAR_LINES.
5776         * window.c (Fdelete_other_windows): Use FRAME_TOP_MARGIN
5777         instead of FRAME_MENU_BAR_LINES.
5778         (check_frame_size): Ditto.
5780         * dispnew.c (adjust_frame_glyphs_initially): Use FRAME_TOP_MARGIN
5781         instead of FRAME_MENU_BAR_LINES.
5782         (adjust_frame_glyphs_for_frame_redisplay): Ditto.
5783         (build_frame_matrix): Ditto.
5784         (change_frame_size_1): Ditto.
5786         * frame.h (FRAME_TOOLBAR_LINES): New.
5787         (FRAME_TOP_MARGIN): New.
5789         * window.c (struct save_window_data): Add frame_toolbar_lines.
5790         (Fset_window_configuration): Handle toolbar lines.
5791         (Fcurrent_window_configuration): Save toolbar lines.
5793         * frame.c (syms_of_frame_1): Add Qtoolbar_lines.
5795         * xfns.c (Fx_create_frame): Add default parameter for toolbar.
5797         * frame.h (struct frame): Rename top_margin to toolbar_lines.
5799         * xfns.c (x_frame_parms): Add `toolbar-lines'.
5800         (x_set_toolbar_lines): New.
5802         * keyboard.c (cmd_error_internal): Bug fix.
5804         * xterm.c: Remove double include of syssignal.h.
5806 1998-10-18  Gerd Moellmann  <gerd@gnu.org>
5808         * xterm.c (x_toolbar_item): New.
5809         (x_handle_toolbar_click): Use it.
5810         (note_toolbar_highlight): Use it.
5812         * keyboard.c (syms_of_keyboard): Staticpro toolbar_item_properties
5813         and toolbar_items_vectors.
5815         * xterm.c (help_echo): New.
5816         (draw_glyphs_face): Add DRAW_IMAGE_RAISED and DRAW_IMAGE_SUNKEN.
5817         (x_set_glyph_string_gc): Handle them.
5818         (x_after_update_window_line): Don't do anything in pseudo-windows.
5819         (x_produce_image_glyph): Take image margin and face relief into
5820         account.
5821         (x_get_glyph_string_clip_rect): Handle pseudo-windows.
5822         (x_draw_glyph_string_background): Optimize case when face has
5823         relief.
5824         (x_setup_relief_color): Take frame instead of glyph string
5825         parameter.
5826         (x_draw_relief_rect): New.
5827         (x_draw_glyph_string_relief): Call it.
5828         (x_draw_image_glyph_string_foreground): Handle margin and image
5829         relief.
5830         (x_draw_image_glyph_string_background): Ditto.
5831         (expose_frame): Redraw toolbar window.
5832         (expose_window): Don't draw cursor for pseudo-windows.
5833         (x_y_to_hpos_vpos): Handle pseudo-windows.
5834         (frame_to_window_pixel_xy): New.
5835         (note_mouse_highlight): Call note_toolbar_highlight.
5836         (x_handle_toolbar_click): New.
5837         (note_toolbar_highlight): New.
5838         (show_mouse_face): Change int parameter `hl' to parameter of
5839         type enum draw_glyphs_face.  Handle image highlighting.
5840         (XTread_socket): Return a HELP_EVENT input event if help_echo is
5841         non-nil.  Use x_handle_toolbar_click.
5843         * termhooks.h (event_kind): Add HELP_EVENT, TOOLBAR_EVENT.
5845         * xfns.c (image_value_type): Add IMAGE_INTEGER_VALUE,
5846         IMAGE_BOOL_VALUE.
5847         (parse_image_spec): Handle them.
5848         (image_spec_value): Additional parameter found.
5849         (free_image): Remove image from the vector `images' of the
5850         image cache.
5851         (clear_image_cache): Additional parameter force_p.
5852         (Fclear_image_cache): New.
5853         (x_find_image_file): New.
5854         (xbm_load): Handle `:margin' and `:relief'.  Use
5855         x_find_image_file.
5856         (xpm_load): Likewise.
5857         (pbm_load): Likewise.
5858         (jpeg_load): Likewise.
5859         (tiff_load): Likewise.
5860         (gif_load): Likewise.
5862         * keyboard.c (Qhelp_echo): New symbol.
5863         (read_char): Handle `toolbar' and `help_echo' events.
5864         (kbd_buffer_get_event): Handle HELP_ECHO input event.
5865         (make_lispy_event): Handle TOOLBAR_EVENT.
5866         (toolbar_items): New.
5867         (process_toolbar_item): New.
5868         (PROP): New.
5869         (init_toolbar_items): New.
5870         (append_toolbar_item): New.
5871         (read_char_x_menu_prompt): Handle `toolbar' event.
5872         (read_key_sequence): Ditto.
5874         * xfaces.c (Qtoolbar): New.
5875         (realize_basic_faces): Realize `toolbar' face.
5876         (face_at_string_position): Remove parameter modeline_p, add
5877         base_face_id.
5879         * xfns.c (xbm_load_image_from_file): Don't use Xmu function
5880         to read data.
5882 1998-10-17  Gerd Moellmann  <gerd@gnu.org>
5884         * xdisp.c (init_iterator): Replace parameter modeline_p with
5885         base_face_id.
5886         (next_element_from_string): Call get_next_display_element
5887         recursively after handling text properties.
5888         (prepare_menu_bars): Call update_toolbar.
5889         (update_toolbar): New.
5890         (build_desired_toolbar_string): New.
5891         (display_toolbar_line): New.
5892         (redisplay_toolbar): New.
5893         (toolbar_item_info): New.
5894         (redisplay_window): Call redisplay_toolbar.
5895         (Fdump_toolbar_row): New.  Defined if compiled with GLYPH_DEBUG.
5897         * dispnew.c (clear_current_matrices): Clear matrices of toolbar
5898         window.
5899         (clear_desired_matrices): Ditto.
5900         (adjust_frame_glyphs_for_window_redisplay): Make toolbar window.
5901         (free_glyphs): Free matrices of toolbar window.
5902         (update_frame): Update toolbar window.
5903         (change_frame_size_1): Take toolbar into account.
5904         (Fset_toolbar_height): New.
5906         * dispextern.h (struct it): Remove member modeline_p, add
5907         base_face_id.
5908         (struct image): Add members relief and margin.
5909         (IMAGE_ASCENT): Include margin in height.
5911 1998-10-14  Gerd Moellmann  <gerd@gnu.org>
5913         * xfns.c (Fclear_image_cache): New.
5915         * xfaces.c (realize_basic_faces): Realize toolbar face.
5916         (face_at_string_position): Remove parameter modeline_p, add
5917         base_face_id.
5919         * dispextern.h (enum face_id): Add TOOLBAR_FACE_ID.
5921 1998-10-13  Gerd Moellmann  <gerd@gnu.org>
5923         * keyboard.c (syms_of_keyboard): Intern `:help'.
5925 1998-10-12  Gerd Moellmann  <gerd@gnu.org>
5927         * xterm.c (note_toolbar_highlight): New.
5928         (note_mouse_highlight): Call it.
5930         * window.c (window_from_coordinates): Additional parameter toolbar_p.
5931         (coordinates_in_window): Handle toolbar window.
5933         * keyboard.c (toolbar_items): New.
5934         (process_toolbar_item): New.
5935         (parse_toolbar_item): New.
5936         (init_toolbar_items): New.
5937         (append_toolbar_item): New.
5939         * dispextern.h (enum toolbar_item_idx): New.
5940         (enum toolbar_item_image): New.
5942         * frame.h (struct frame): Add toolbar-related members.
5944         * xfaces.c (face_at_string_position): Remove assertion that
5945         current_buffer == window's buffer.  This is not the case when
5946         called for the toolbar window.
5948         * frame.c (make_frame): Initialize toolbar members.
5950         * alloc.c (mark_object): Mark toolbar data of frames.
5952         * frame.h (struct frame): Add toolbar-related members
5953         toolbar_window, desired_toolbar_items, current_toolbar_items,
5954         desired_toolbar_string, current_toolbar_string,
5955         n_desired_toolbar_items, n_current_toolbar_items.  Add
5956         window_height.
5958         * xterm.c (x_after_update_window_line): Don't draw bitmap
5959         areas for pseudo-windows.
5960         (expose_frame): Handle toolbar window.
5961         (expose_window): Don't do cursor stuff for pseudo-windows.
5963         * xdisp.c (display_menu_bar): Correct calls to init_iterator.
5965 1998-10-11  Gerd Moellmann  <gerd@gnu.org>
5967         * frame.c (make_frame): Initialize toolbar_window.
5969         * alloc.c (mark_object): Make the toolbar window.
5971         * dispnew.c (update_frame): Update frame's toolbar_window.
5972         (clear_current_matrices): Likewise.
5973         (clear_desired_matrices): Likewise.
5974         (adjust_frame_glyphs_for_window_redisplay): Make toolbar_window.
5975         (free_glyphs): Free the toolbar window and its matrices.
5977         * frame.h (struct frame): Add toolbar_window.
5979         * xterm.c (x_draw_glyph_string_relief): Handle mouse-face
5980         with relief.
5982 1998-10-10  Gerd Moellmann  <gerd@gnu.org>
5984         * dispnew.c (buffer_posn_from_coords): Don't screw up if
5985         window start is not in the range BEGV..ZV.
5987 1998-10-09  Gerd Moellmann  <gerd@gnu.org>
5989         * xdisp.c (try_scrolling): Experimentally handle the case
5990         that scroll-preserve-screen-position is set to `always'.
5992         * window.c (Vscroll_preserve_screen_position): Replacement for
5993         scroll_preserve_screen_position.
5995 1998-10-08  Gerd Moellmann  <gerd@gnu.org>
5997         * dispnew.c: Don't initialize auto structs; the HP/UX compiler
5998         doesn't like it.
5999         * xdisp.c: Ditto.
6001         * xdisp.c (make_cursor_line_fully_visible): Adjust this_line_y.
6003 1998-10-06  Gerd Moellmann  <gerd@gnu.org>
6005         * minibuf.c (Fminibuffer_complete_word): Fix computation of
6006         i_byte when prompts are inserted into minibuffers.
6008         * dispextern.h (FRAME_INTERNAL_BORDER_WIDTH_SAFE): New.
6009         (WINDOW_DISPLAY_LEFT_EDGE_PIXEL_X): Use it.
6010         (WINDOW_DISPLAY_TOP_EDGE_PIXEL_Y): Ditto.
6012 1998-10-04  Gerd Moellmann  <gerd@gnu.org>
6014         * xdisp.c (make_cursor_line_fully_visible): New.
6015         (try_scrolling): New.
6016         (redisplay_window): Move scrolling code to try_scrolling.
6017         (make_cursor_line_fully_visible): Handle case of window too small
6018         to show a single line.
6019         (redisplay_window): Case forced window start---use
6020         make_cursor_line_fully_visible.
6021         (redisplay_window): Case cursor movement via current matrix.
6022         If ending up on a partially visible line, make it fully visible
6023         instead of recentering.
6024         (try_scrolling): Additional parameter scroll_smoothly.
6026         * xterm.c (x_draw_bitmap): Don't XClearArea under the pixmap.
6028 1998-09-28  Gerd Moellmann  <gerd@gnu.org>
6030         * window.c (window_scroll_pixel_based): Bug fix: vpos used
6031         instead of y-position for scroll-preserved-screen-position.
6033 1998-09-07  Gerd Moellmann  <gerd@gnu.org>
6035         * dispnew.c (update_frame_line): If current row is not enabled,
6036         write the whole line.
6038 1998-09-06  Gerd Moellmann  <gerd@gnu.org>
6040         * lisp.h (HAVE_FACES): Removed.
6042         * dispextern.h (HAVE_FACES): Removed.
6044         * config.in (HAVE_FACES): Removed.
6046         * dispnew.c (HAVE_FACES): Removed.
6048         * xdisp.c (HAVE_FACES): Removed.
6050         * xfaces.c (HAVE_FACES): Removed.
6052 1998-09-05  Gerd Moellmann  <gerd@gnu.org>
6054         * xdisp.c (init_iterator): If face_change_count is non-zero,
6055         free realized faces.
6057         * xfaces.c (free_all_realized_faces): Make it externally visible.
6058         (Finternal_set_lisp_face_attribute): Increment
6059         windows_or_buffers_changed.
6061         * dispnew.c (direct_output_for_insert): Give up if
6062         face_change_count is non-zero.
6063         (direct_output_forward_char): Ditto.
6065         * xfaces.c (face_change_count): New.
6067 1998-09-04  Gerd Moellmann  <gerd@gnu.org>
6069         * xterm.c (x_draw_bar_cursor): Don't draw if cursor hpos is out
6070         of range.
6072 1998-09-03  Gerd Moellmann  <gerd@gnu.org>
6074         * term.c (Ftty_display_color_p): New.
6076 1998-09-02  Gerd Moellmann  <gerd@gnu.org>
6078         * xfaces.c (Ftty_defined_colors): New.
6080         * xterm.c (x_produce_glyphs): Fix computation of
6081         contains_overlapping_glyphs_p for ASCII.
6083         * dispnew.c (Fshow_cursor): Don't change cursor state while
6084         redisplaying.
6085         (direct_output_for_insert): If a glyph with lbearing or rbearing
6086         is among the new glyphs, set row flag contains_overlapping_glyph_p.
6088 1998-09-01  Gerd Moellmann  <gerd@gnu.org>
6090         * term.c (OUTPUT_IF): Make replacement text have statement form.
6091         (OUTPUT1_IF): Ditto.
6092         (TS_italic_mode, TS_end_italic_mode): Removed.
6093         (TS_bold_mode): Removed.
6094         (TS_underscore_mode, TS_end_underscore_mode): Removed.
6095         (TS_enter_bold_mode, TS_enter_dim_mode, TS_enter_blink_mode): New.
6096         (TS_enter_reverse_mode): New.
6097         (TS_enter_underline_mode, TS_exit_underline_mode): New.
6098         (TN_magic_cookie_glitch_ul): New.
6099         (TS_enter_alt_charset_mode, TS_exit_alt_charset_mode): New.
6100         (TS_exit_attribute_mode): New.
6101         (TN_max_colors, TN_max_pairs, TS_orig_pairs): New.
6102         (TS_set_foreground, TS_set_background): New.
6103         (reset_terminal_modes): Switch colors back to default.
6104         (write_glyphs): Turn face on before writing text, turn it off
6105         afterwards.
6106         (insert_glyphs): Ditto.
6107         (term_init): Initialize new terminal capability variables.
6108         (turn_on_face): Turn a face on.
6109         (turn_off_face): Turn a face off.
6111         * lisp.h (MAKE_GLYPH): Remove test for frame type.
6112         (GLYPH_CHAR): Ditto.
6113         (GLYPH_FACE): Ditto.
6115         * xfaces.c (Vface_tty_color_alist): New.
6116         (face-register-tty-color): New.
6117         (face-clear-tty-colors): New.
6119         * dispextern.h (FACE_TTY_DEFAULT_COLOR): New.
6120         (struct it): Remove member faces_p since we now always have faces.
6122 1998-08-31  Gerd Moellmann  <gerd@gnu.org>
6124         * dispextern.h (struct face): Add tty appearance flags.
6126         * xdisp.c (init_iterator): Always handle faces.
6127         (extend_face_to_end_of_line): Handle tty frames.
6129         * dispnew.c (clear_glyph_matrix): Allow a null matrix to be
6130         passed in.
6132 1998-08-30  Gerd Moellmann  <gerd@gnu.org>
6134         * xfaces.c (realize_default_face): Use empty strings to indicate
6135         that the face should use the default foreground/background
6136         color of the terminal.  Fill font-related attributes with
6137         appropriate values for tty frames.
6139         * emacs.c (main): Call syms_of_xfaces before init_window_once.
6141         * xfaces.c (realize_default_face): If face `default' is not
6142         yet known, create it.
6144         * frame.c (make_terminal_frame): Call init_frame_faces
6145         unconditionally.
6147         * xfaces.c (init_frame_faces): Make it work for tty frames.
6148         (free_frame_faces): Ditto.
6149         (clear_face_cache): Ditto.
6150         (recompute_basic_faces): Ditto.
6151         (Fframe_face_alist): Ditto.
6152         (free_realized_face): Ditto.
6153         (prepare_face_for_display): Ditto.
6154         (clear_face_gcs): Ditto.
6155         (lookup_face): Ditto.
6156         (smaller_face): Ditto.
6157         (realize_default_face): Ditto.
6158         (realize_face): Ditto.
6159         (realize_face): Dispatch to functions depending on the frame type.
6160         (realize_x_face): X way of realizing faces.
6161         (realize_tty_face): TTY way of realizing faces.
6163 1998-08-29  Gerd Moellmann  <gerd@gnu.org>
6165         * xfaces.c (realize_face): Remove parameter unibyte_registry,
6166         compute it instead.
6167         (lookup_face): Remove local variable unibyte_registry.
6169 1998-08-22  Gerd Moellmann  <gerd@gnu.org>
6171         * xterm.c (x_draw_glyph_string_relief): Draw top and bottom lines
6172         1 pixel longer.
6174         * xdisp.c (face_before_or_after_it_pos): Fix computation
6175         of face in buffer.
6177         * editfns.c (make_buffer_string_both): If prompt in buffer,
6178         prevent start > end.
6180         * indent.c (Fvertical_motion): Set current_buffer to window's
6181         buffer if it isn't already.
6183 1998-08-21  Gerd Moellmann  <gerd@gnu.org>
6185         * dispextern.h (GLYPH_DEBUG): Use default 0.
6187         * xdisp.c (it_props): New member `smaller'.
6188         (init_iterator): Initialize it.
6189         (Qsmaller): New.
6190         (push_it): Save value of `smaller' value on the stack.
6191         (pop_it): Restore `smaller' from the stack.
6192         (handle_smaller_prop): New.
6193         (handle_face_prop): Use `smaller' text property to select a
6194         suitable face.
6196         * dispextern.h (SMALLER_PROP_IDX): New.
6197         (struct it): Add member `smaller'.
6199         * xfaces.c (smaller_face): New.
6201         * frame.h (FRAME_WINDOW_WIDTH_ARG): Add bitmap area widths.
6203         * dispnew.c (allocate_matrices_for_window_redisplay): Compute
6204         total pixel width of window differently.
6206         * xdisp.c (init_iterator): Compute width of mode line differently.
6208         * dispextern.h (WINDOW_DISPLAY_PIXEL_WIDTH): Subtract width
6209         of bitmap areas.
6211         * window.c (Fsplit_window): Include width of bitmap areas in
6212         window width.
6213         (window_internal_width): Subtract width of bitmap areas from
6214         total width.
6216 1998-08-18  Gerd Moellmann  <gerd@gnu.org>
6218         * xdisp.c: Functions reordered for better readability.
6220         * dispnew.c (update_text_area): Handle glyphs with arbitrary
6221         lbearing.
6222         (update_window_tree): Parameter no_scrolling_p removed.
6223         (update_single_window): Ditto.
6225         * xterm.c (x_get_char_font_and_encoding): Renamed to
6226         x_get_char_face_and_encoding.
6228         * dispnew.c (update_text_area): Don't call get_glyph_overhangs
6229         if end of current row reached.
6231         * xterm.c (x_get_glyph_face_and_encoding): New.
6232         (x_get_glyph_overhangs): Call it.
6234         * xdisp.c (Qshow_trailing_whitespace): New.
6235         (Qtrailing_whitespace): New.
6236         (enum prop_handled): New.
6237         (struct props, it_props): New.
6238         (next_overlay_change): New.  Works like Fnext_overlay_change
6239         but doesn't use xmalloc.
6240         (handle_stop): Restructured.
6241         (face_before_or_after_it_pos): Case iteration over a string: fix
6242         handling of face before current position.
6244 1998-08-16  Gerd Moellmann  <gerd@gnu.org>
6246         * dispnew.c (adjust_glyph_matrix): Don't optimize matrix
6247         reallocation matrix if fonts_changed_p.
6248         (update_text_area): Handle glyphs with lbearing.
6250 1998-08-14  Gerd Moellmann  <gerd@gnu.org>
6252         * xdisp.c (struct props): New.
6253         (it_props): New.
6254         (compute_prop_info): New.
6255         (handle_stop): New.
6257         * textprop.c (validate_interval_range): Make it externally
6258         visible.
6260         * dispnew.c (direct_output_for_insert): Remove calls
6261         to compute_stop_pos.
6263         * dispextern.h (struct it): Remove check_charpos,
6264         next_overlay_pos.  Add what_changes.
6266 1998-08-10  Gerd Moellmann  <gerd@gnu.org>
6268         * xterm.c (note_mouse_highlight): Set BEGV_BYTE, ZV_BYTE.
6270         * xfaces.c (Vx_unibyte_registry_and_encoding): Removed.  Use
6271         face_default_registry instead.
6273         * syntax.c (scan_sexps_forward): Set up syntax table before
6274         jumping to initial state label.
6276 1998-08-09  Gerd Moellmann  <gerd@gnu.org>
6278         * dispnew.c (check_matrix_invariants): Handle case of row end pos
6279         >= ZV specially.
6281 1998-08-08  Gerd Moellmann  <gerd@gnu.org>
6283         * xdisp.c (redisplay_window): Case cursor movement---if cursor
6284         ends up in partially visible row, try to scroll.  Case forced
6285         window start---handle windows not tall enough to show a single
6286         line.
6288         * window.h (struct window): Member dy renamed vscroll.
6290         * xterm.c (x_list_fonts): Re-activate suppression of scalable
6291         fonts.
6292         (x_draw_stretch_glyph_string): Set clipping if using GC that
6293         hasn't set it yet.
6295         * xdisp.c (redisplay_window): Case forced window start -
6296         don't let cursor end on partially visible row.  Use desired
6297         matrix to find a suitable PT if it doesn't appear.
6298         (decode_mode_spec): Merged with 20.2.97.
6299         (try_window_reusing_current_matrix): Give up if old or
6300         new display is vscrolled.
6301         (redisplay_window): Reset vscrolling if forced window start,
6302         or if recentering.
6304 1998-08-06  Gerd Moellmann  <gerd@gnu.org>
6306         * xfaces.c (realize_default_face): Use the fontset name instead of
6307         the alias for the family attribute of the default face because we
6308         can't easily determine a good alias from fontset-alias-alist.
6309         (face_fontset): Use Fquery_fontset to find the fontset.
6310         (font_list): Additional pattern parameter.
6311         (try_font_list): Ditto.
6312         (set_lface_from_font_name): Set face family from font foundry
6313         and family.
6314         (font_list): If family contains a hyphen, build pattern differently.
6316 1998-08-05  Gerd Moellmann  <gerd@gnu.org>
6318         * xfaces.c (free_realized_faces): Increment windows_or_buffers_-
6319         changed instead of setting the frame garbaged.
6321         * xfaces.c (lface_equal_p): Don't assume equal Lisp types for
6322         all attribute values.  This is wrong if values are unspecified,
6323         i.e. nil.
6325         * xdisp.c (try_window_id): Give up if window start changed.
6327         * xfaces.c (make_realized_face): Store registry as Lisp object.
6328         (load_face_font_or_fontset): Compute registry of a face
6329         differently.  Make it `eq' to Vx_unibyte_registry_and_encoding if
6330         possible.
6332         * dispextern.h (FACE_SUITABLE_FOR_CHARSET_P): Compare registries
6333         differently.
6335         * alloc.c (mark_face_cache): Mark the registry member of faces.
6337         * dispextern.h (struct face): Make registry a Lisp string.
6339 1998-08-04  Gerd Moellmann  <gerd@gnu.org>
6341         * xterm.c (x_get_char_font_and_encoding): Additional parameter
6342         multibyte_p.  Handle unibyte text.
6343         (x_append_glyph): Set the multibyte_p flag of glyphs.
6344         (x_produce_image_glyph): Ditto.
6345         (x_append_stretch_glyph): Ditto.
6346         (x_produce_glyphs): Handle unibyte text like ASCII.
6348         * xdisp.c (push_it): Save the multibyte flag of an iterator on the
6349         stack.
6350         (pop_it): Restore it.
6351         (face_before_or_after_it_pos): Handle the case that the string or
6352         buffer is unibyte.
6353         (get_overlay_strings): Set the multibyte flag of the iterator if
6354         the new overlay string is multibyte.
6355         (get_glyph_property): Likewise.
6356         (get_next_display_element): Don't check for charset changes in
6357         unibyte text.
6358         (append_space): Compute face differently for unibyte text.
6359         (extend_face_to_end_of_line): Don't return quickly if face has
6360         stipple.
6362         * xfaces.c (load_face_font_or_fontset): Store registry and
6363         encoding of the font in the registry member of the face.
6364         (make_realized_face): Additional parameter `registry'.
6365         (free_realized_face): Free the registry of a realized face.
6366         (face_suitable_for_charset_p): Function form of the macro
6367         with the same name in uppercase.
6368         (lookup_face): Use Vx_unibyte_registry_and_encoding if charset < 0.
6369         (choose_face_font): New parameter unibyte_registry.
6370         (choose_face_fontset_font): Ditto.
6371         (realize_default_face): Remember the registry and encoding of
6372         the specified frame font in Vx_unibyte_registry_and_encoding.
6373         (face_at_buffer_position): Handle unibyte.
6374         (face_at_string_position): Likewise.
6375         (realize_face): New parameter unibyte_registry.
6376         (compute_char_face): Handle the unibyte case.
6378         * dispextern.h (struct glyph): Add bit multibyte_p.
6379         (struct face): New member registry holding the registry and
6380         encoding of the X font of the face.
6381         (FACE_UNIBYTE_P): Value is non-zero if face is for unibye text.
6382         (enum face_id): Add BASIC_FACE_ID_SENTINEL.
6383         (FACE_SUITABLE_FOR_CHARSET_P): Handle charset < 0 meansing unibyte
6384         text.
6385         (struct iterator_stack_entry): Add multibyte_p.
6387         * xdisp.c (string_pos): Use string_char_to_byte.
6388         (char_charset): Removed.
6390 1998-08-03  Gerd Moellmann  <gerd@gnu.org>
6392         * xterm.c (x_draw_image_glyph_string_foreground): Draw a
6393         rectangle for a block cursor over an image without a mask.
6394         (x_stretch_block_cursor): Added.  Non-zero means don't draw
6395         a block cursor over a stretch as wide as that stretch.
6396         (x_draw_stretch_glyph_string): Use it.
6397         (x_draw_hollow_cursor): Ditto.
6399         * minibuf.c (read_minibuf): Use minibuf_prompt instead of prompt.
6400         (read_minibuf): Add front-sticky text property for prompt.
6402         * xdisp.c (char_charset): Return charset of a character,
6403         depending on whether or not multi-byte characters are enabled.
6405         * xfaces.c (Fset_face_charset_registry): Removed.
6406         (x_charset_registry): Determine registry from charset plist.
6408 1998-08-02  Gerd Moellmann  <gerd@gnu.org>
6410         * xdisp.c (get_next_display_element): Don't check for charset
6411         changes if multi-byte characters are not enabled.
6413         * xdisp.c (echo_area_display): Use the flush function from the
6414         redisplay interface.
6415         * keyboard.c (detect_input_pending_run_timers): Likewise.
6417         * dispextern.h (produce_*glyphs_hook): Removed.
6418         * term.c (produce_*glyphs): Ditto.
6419         (cursor_to): Remove pixel position parameters.
6421         * dispnew.c: Remove hooks for window-based redisplay, introduce
6422         a redisplay interface structure.
6424         * xterm.c (x_per_char_metric): Return default char metrics if per
6425         char metric exists but contains a zero width.  Adobe Courier seems
6426         to contain such characters.
6428         * xdisp.c (compute_line_metrics): Compute the width of rows
6429         without stopping at glyphs with zero width.
6431 1998-08-01  Gerd Moellmann  <gerd@gnu.org>
6433         * xdisp.c (display_mode_line): If nothing was displayed at all,
6434         display a space.
6435         (hscroll_window_tree): Don't subtract 1 from target point if equal
6436         to ZV and window is not the selected window.
6438         * dispnew.c (check_matrix_invariants): Remove check for window
6439         start at BEGV or after newline.  This happens in rare cases
6440         intentionally.
6442 1998-07-31  Gerd Moellmann  <gerd@gnu.org>
6444         * xfaces.c (x_charset_registry): Use STRING_BYTES.
6445         (syms_of_xfaces): Add Vface_default_registry.
6446         (x_charset_registry): Use it.
6448         * xdisp.c (run_window_scroll_functions): Run window scroll functions.
6449         (redisplay_window): Use it.
6451         * dispnew.c (update_text_area): Handle lbearing of deleted text
6452         by backing up one character.
6454 1998-07-30  Gerd Moellmann  <gerd@gnu.org>
6456         * dispnew.c (adjust_glyph_matrix): Use a different check to
6457         decide to do nothing.
6459         * xfaces.c (face_at_string_position): Additional parameter
6460         mode_line_p.  If non-zero, merge with the mode line face
6461         instead of the default face.
6462         * dispextern.h (struct it): Add mode_line_p.
6463         * xdisp.c (init_iterator): Set it.
6464         (compute_face_in_string): Use it.
6465         (face_before_or_after_it_pos): Handle strings.
6466         (get_next_display_element): Don't look for relief end in C strings.
6467         (next_element_from_string): Deliver string position instead of
6468         buffer position.
6470         * xterm.c (x_flush): Flush X output buffer.
6471         (XTflash): Use it.
6473         * xfaces.c (lface_from_face_name): Renamed from lface_from_symbol.
6474         Allow strings as face names.
6476         * xfns.c (forall_images_in_image_cache): Check that frame is
6477         alive.
6479         * widget.c (EmacsFrameDestroy): Remove call to free_frame_faces;
6480         it's also called from x_destroy_window.  Since this function is
6481         called from X, freeing stuff allocated with xmalloc is dangerous
6482         here, anyway.
6484         * xfaces.c (free_realized_faces): Don't clear current matrices
6485         of a frame being destroyed.
6487         * frame.c (make_frame): Call set_window_buffer instead of
6488         Fset_window_buffer.
6490         * window.c (set_window_buffer): Extracted from Fset_window_buffer,
6491         with an additional argument specifying whether or not hooks may
6492         be called.
6493         (Fset_window_buffer): Call it.
6495         * dispnew.c (clear_desired_matrices): Check that frame has
6496         a valid root window before clearing matrices in the window tree.
6497         (clear_current_matrices): Ditto.
6498         (clear_window_matrices): If GLYPH_DEBUG, check that hchild and
6499         vchild are valid windows if not nil.
6501         * xfaces.c (merge_face_vector_with_property): Allow :reverse-video
6502         for :inverse-video.
6503         (Finternal_set_lisp_face_attribute): Ditto.
6504         (Finternal_set_lisp_face_attribute_from_resource): Ditto.
6505         (Finternal_get_lisp_face_attribute): Ditto.
6506         (Finternal_lisp_face_attribute_values): Ditto.
6507         (syms_of_xfaces): Define the symbol `:reverse-video'.
6509         * xdisp.c (get_glyph_property): Renamed from
6510         fill_iterator_from_glyph_property.
6511         (next_element_from_buffer): Handle case that no `glyph' property
6512         was found correctly.
6513         (display_line): Extend face to end of line only if we have faces.
6515 1998-07-29  Gerd Moellmann  <gerd@gnu.org>
6517         * dispnew.c (Fshow_cursor): Renamed from blink_cursor.  Take
6518         additional window argument.
6520         * xdisp.c (reseat_at_previous_visible_line_start): Renamed from
6521         set_iterator_to_previous_visible_line_start.
6522         (reseat_at_next_visible_line_start): Likewise.
6523         (compute_stop_pos): Renamed from set_iterator_stop_pos.
6524         (face_before_or_after_it_pos): Renamed from get_face_at_it_pos.
6525         (compute_face_in_buffer): Renamed from
6526         compute_face_at_iterator_position.
6527         (compute_face_in_string): Renamed from
6528         compute_face_at_iterator_string_position.
6529         (get_space_width): Renamed from get_iterator_space_width.
6530         (next_overlay_string): Renamed from
6531         set_iterator_to_next_overlay_string.
6532         (get_overlay_strings): Renamed from
6533         get_overlay_strings_at_iterator_position.
6534         (restore_overlay_strings): Renamed from
6535         setup_overlay_strings_from_glyph_pos.
6536         (restore_dpvec): Renamed from setup_iterator_dpvec_from_glyph_pos.
6537         (init_from_display_pos): Renamed from init_iterator_from_glyph_pos.
6538         (init_to_row_start): Renamed from init_iterator_to_row_start.
6539         (init_to_row_end): Formerly init_iterator_to_next_row_start.
6541         * xterm.c: Merge with 20.2.97.
6542         (x_produce_glyphs): Use x_append_stretch_glyph for tabs.
6544         * dispextern.h (struct glyph): Replace text_pos position with
6545         simple charpos.
6547         * xdisp.c (this_line_start_pos): Use struct text_pos.
6548         (this_line_end_pos): Renamed from .*endpos; use struct text_pos.
6549         (enum move_it_result): Renamed from move_iterator_result.
6550         (string_pos_nchars_ahead): Compute text_pos in a string from a
6551         known text_pos plus a character delta.
6552         (string_pos): Compute text_pos in string from charpos.
6553         (c_string_pos): Likewise for a C string.
6554         (number_of_chars): Return number of characters in a possibly
6555         multi-byte C string.
6556         (check_it): Renamed from check_iterator.  Check that charpos and
6557         bytepos are in sync.
6558         (push_it): Renamed from save_iterator_settings.
6559         (pop_it): Renamed from restore_iterator_settings.
6560         (move_it_.*): Renamed from move_iterator_.*.
6561         (charset_at_position): Take charpos/bytepos into account.
6562         (back_to_previous_line_start): Set iterator to previous line start.
6563         (forward_to_next_line_start): Set iterator to next line start.
6564         (back_to_previous_visible_line_start): Renamed from
6565         move_iterator_previous_visible_line_start.
6566         (set_iterator_to_next_visible_line_start): Handle charpos/bytepos.
6567         (get_face_at_it_pos): Renamed from get_face_from_cursor_pos.
6568         Handle charpos/bytepos.
6569         (compute_face_at_iterator_position): Handle charpos/bytepos.
6570         (compute_face_at_iterator_string_position): Likewise.
6571         (get_iterator_space_width): Likewise.
6572         (load_overlay_strings): Likewise.
6573         (get_overlay_strings_at_iterator_position): Likewise.
6574         (reseat_iterator): Take a text_pos position argument.
6575         (setup_iterator_overlay_strings_from_glyph_pos): Handle charpos/
6576         bytepos.
6577         (init_iterator): Take additional bytepos parameter.
6578         (reseat_iterator_to_string): Handle charpos/bytepos.
6579         (start_display): Take a text_pos parameter.  Handle charpos/bytepos.
6580         (next_element_from_string): Handle charpos/bytepos.
6581         (next_element_from_c_string): Likewise.
6582         (fill_iterator_from_glyph_property): Likewise.
6583         (next_element_from_buffer): Likewise.
6584         (set_iterator_to_next): Increment charpos and bytepos of an iterator.
6585         (move_iterator_in_display_line_to): Handle charpos/bytepos.
6586         (move_it_to): Likewise.
6587         (move_it_vertically_backward): Likewise.
6588         (move_it_vertically): Likewise.
6589         (move_it_by_lines): Likewise.
6590         (hscroll_window_tree): Likewise.
6591         (redisplay_internal): Likewise.
6592         (set_cursor_from_row): Likewise.
6593         (redisplay_window): Likewise.
6594         (try_window): Take a text_pos parameter.  Handle charpos/bytepos.
6595         (try_window_reusing_current_matrix): Handle charpos/bytepos.
6596         (get_first_unchanged_at_end_row): Compute and return delta_bytes.
6597         (try_window_id): Handle charpos/bytepos.
6598         (Ftrace_redisplay_toggle): Return Qnil.
6599         (get_overlay_arrow_glyph_row): Handle charpos/bytepos.
6600         (insert_left_trunc_glyphs): Likewise.
6602         * dispnew.c: `Merge' with 20.2.97 (it's really too different to
6603         do a real merge).
6604         (increment_glyph_matrix_buffer_positions): Add parameter delta_bytes.
6605         (increment_glyph_row_buffer_positions): Ditto.
6606         (copy_glyph_row_contents): Ditto.
6607         (check_matrix_invariants): Add additional checks for charpos/
6608         bytepos consistency.
6609         (direct_output_for_insert): Changed for charpos/bytepos.
6610         (buffer_posn_from_coords): Likewise.  Put code dealing with
6611         `direction-reversed' in #if 0.
6613         * xterm.h: Merge with 20.2.97.
6615         * frame.h: Merge with 20.2.97.
6617         * window.h: Merge with 20.2.97.  Add window_end_bytepos.
6619         * dispextern.h (MATRIX_ROW_START_CHARPOS): Get charpos of a row
6620         start.
6621         (MATRIX_ROW_START_BYTEPOS): Likewise for the byte position.
6622         (MATRIX_ROW_END_CHARPOS): Likewise for the row end.
6623         (MATRIX_ROW_END_BYTEPOS): Likewise for the row end byte position.
6624         (struct it): Various members renamed from .*pos to .*charpos.
6625         (IT_CHARPOS): Access current buffer character position of an
6626         iterator.
6627         (IT_BYTEPOS): Access current buffer byte position of an iterator.
6628         (IT_STRING_CHARPOS): Access current string character position of
6629         an iterator.
6630         (IT_STRING_BYTEPOS): Access current string byte position of
6631         an iterator.
6632         (globally): Add function prototypes from 20.2.97.
6634         * everywhere: Use P_ instead of PROTO for function prototypes
6635         because everyone else seems to use P_.
6637         * dispextern.h (struct text_pos): Structure describing a charpos/
6638         bytepos position in text.
6639         (BYTEPOS): Access the byte position part of a text_pos.
6640         (CHARPOS): Likewise for the character position.
6641         (SET_TEXT_POS): Set a text_pos from a character and byte position.
6642         (INC_TEXT_POS, DEC_TEXT_POS): Increment/decrement a text position.
6643         (SET_TEXT_POS_FROM_MARKER): Set a text_pos from a marker.
6644         (SET_MARKER_FROM_TEXT_POS): Set a marker from a text_pos.
6645         (TEXT_POS_EQUAL_P): Compare two text_pos structures for equality.
6646         (struct display_pos): Renamed from glyph_pos. Use struct text_pos
6647         for buffer and string positions.
6648         (struct glyph): Use text_pos.
6649         (struct it): Renamed from display_iterator.  Use text_pos.
6651 1998-07-23  Gerd Moellmann  <gerd@gnu.org>
6653         * xfns.c (x_kill_gs_process): Get image colors from XImage of a
6654         pixmap.
6656 1998-07-21  Gerd Moellmann  <gerd@gnu.org>
6658         * dispextern.h (struct glyph_row): New flag indicate_zv_line_p.
6659         * xterm.c (x_draw_row_bitmaps): Use it.
6660         * dispnew.c (row_equal_p): Ditto.
6661         (update_window_line): Ditto.
6663         * xfns.c (prepare_image_for_display): Don't set loading_failed_p
6664         flag of images.
6666         * dispextern.h (struct image): Removed member loading_failed_p.
6667         It's probably better to have the chance to try to load an image
6668         again.
6670 1998-07-20  Gerd Moellmann  <gerd@gnu.org>
6672         * xterm.c (x_draw_bitmap): Draw bitmap for empty lines ending
6673         at ZV if `indicate-zv-lines' is non-nil.
6674         (x_draw_row_bitmaps): Compute bitmap for `indicate-zv-lines'.
6676         * dispnew.c (row_equal_p): Compare displays_text_p and
6677         ends_at_zv_p flags of rows.
6678         (update_window_line): Ditto.
6680         * buffer.h (struct buffer): New member indicate_zv_lines.
6682         * buffer.c (init_buffer_once): Add default for `indicate-zv-lines'.
6683         (init_buffer_once): New variable `default-indicate-zv-lines'.
6684         (syms_of_buffer): New buffer-local varianle `indicate-zv-lines'.
6686         * xdisp.c (redisplay_window): Don't try moving the cursor
6687         if current glyph row w->last_cursor.vpos isn't enabled.
6689         * xterm.c (bitmap_type): Add ZV_LINE_BITMAP.
6691         * window.c (Fset_window_vscroll): Allow only negative scroll
6692         values.  Others don't seem to make sense, and this way it's easy
6693         to restore a vscroll of zero.
6695         * xterm.c (x_inverted_image_mask): Check that pixmap could be
6696         allocated.
6697         (x_draw_image_glyph_string_background): Don't clip if pixmap
6698         could not be created.
6700         * xfns.c (xbm_load_image_from_file): Check that pixmap could
6701         be created.
6702         (xbm_load): Ditto.
6703         (gs_load): Ditto.
6705         * xterm.c (x_get_glyph_overhangs): Take image and stretch
6706         glyphs into account.
6708         * xfaces.c (realize_default_face): Don't set font family of
6709         the default face from the fontset alias name for `fontset-startup'.
6711         * xfns.c (gs_load): Pass frame's pixel foreground and background
6712         color to the Lisp loader.
6714 1998-07-19  Gerd Moellmann  <gerd@gnu.org>
6716         * xfns.c (tiff_image_p, tiff_load): Support TIFF images via
6717         libtiff34.
6719         * configure.in (--with-tiff, HAVE_TIFF): Added.
6721         * config.in (HAVE_TIFF): Added.
6723         * Makefile.in (LIBTIFF): Added.
6725         * xfns.c (jpeg_image_p, jpeg_load): Support JPEG images.
6727         * Makefile.in (LIBJPEG): Added.
6729         * xfns.c (resource_types): Enumerators renamed to RES_TYPE_NUMBER,
6730         RES_TYPE_BOOLEAN etc. because of conflict of `boolean' with
6731         jpeglib.h.
6733         * configure.in (HAVE_JPEG, --with-jpeg): Added.  On systems
6734         where the library is installed in /usr/local/lib, e.g. FreeBSD,
6735         configure must be run with `--x-includes=/usr/X11R6/include:
6736         /usr/local/include --x-libraries=/usr/X11R6/lib:/usr/local/lib'.
6738 1998-07-18  Gerd Moellmann  <gerd@gnu.org>
6740         * config.in (HAVE_JPEG): Added.
6742         * xfns.c (ct_init): Initialize color table used to map RGB colors
6743         from images to X pixel colors.
6744         (ct_free): Free color table.
6745         (ct_lookup): Look an RGB color up.
6746         (ct_allocated_colors): Get vector of allocated colors.
6747         (pbm_image_p): Test if image specification is a valid PPM
6748         image specification.
6749         (pbm_scan_number): Scan a decimal ASCII number from a file.
6750         (pbm_load): Load a PPM image.
6752         * window.c (Fset_window_vscroll): Adjust glyph matrix if
6753         necessary.  Take canonical character units as parameter.
6754         (Fwindow_vscroll): Return canonical character units.
6756         * dispnew.c (allocate_matrices_for_window_redisplay): Add negative
6757         w->dy to display height for which glyph rows must be allocated.
6759 1998-07-17  Gerd Moellmann  <gerd@gnu.org>
6761         * xfaces.c (face_at_string_position): Merge in region face
6762         so that it won't overwrite the font in the region.
6763         (face_at_buffer_position): Ditto.
6764         (realize_basic_faces): Don't realize region face.
6766         * dispextern.h (enum face_id): REGION_FACE_ID removed.
6768         * xterm.c (x_set_glyph_string_background_width): Don't let
6769         cursor face extend to end of line.
6771         * xdisp.c (append_space): If adding space of default face,
6772         make sure glyph ist produced with right face.
6774         * xterm.c (x_clear_glyph_string_rect): Draw a rectangle in the
6775         background color of a glyph string.
6776         (x_draw_glyph_string_background): Call it.
6777         (x_draw_glyph_string_bg_rect): Ditto.
6778         (x_draw_stretch_glyph_string): Ditto.
6780 1998-07-15  Gerd Moellmann  <gerd@gnu.org>
6782         * xdisp.c (init_iterator): Initialize it->current_y to the
6783         window's vscroll w->dy.
6785         * window.c (Fwindow_vscroll): Return number of pixels window
6786         is vscrolled smoothly.
6787         (Fset_window_vscroll): Set the number.
6789         * xdisp.c (move_iterator_to): Recognize case MOVE_TO_POS and
6790         to_pos in truncated part of a line.
6792 1998-07-14  Gerd Moellmann  <gerd@gnu.org>
6794         * xdisp.c (move_iterator_in_display_line_to): If very first glyph
6795         doesn't fit on the line, truncate it, despite truncate_lines nil.
6796         (display_line): Ditto.
6798         * xfns.c: Experimental support for Ghostscript images.
6800         * xterm.c (x_term_init): Initialize new atoms DONE and PAGE.
6801         (XTread_socket): React on events from Ghostscript.
6802         (expose_frame): If width or height are zero, redraw entire frame.
6803         (XTread_socket): Call expose_frame after receiving event from
6804         Ghostscript.
6806         * xterm.h (struct x_display_info): Add atoms DONE and PAGE
6807         for Ghostscript support.
6809         * xdisp.c (redisplay_internal): Return quickly if called
6810         recursively.
6812         * alloc.c (NSTATICS): Increased to 1024.
6814 1998-07-08  Gerd Moellmann  <gerd@gnu.org>
6816         * xterm.c (x_append_stretch_glyph): Append a stretch glyph to an
6817         iterator's glyph row.
6818         (x_produce_stretch_glyph): Call it.
6819         (x_produce_glyphs): Handle `space-width' property; call
6820         x_append_stretch_glyph.
6822         * xdisp.c (syms_of_xdisp): Add symbol `space-width' used as a text
6823         property.
6824         (get_iterator_space_width): Determine value of `space-width'
6825         property at iterator's position.
6826         (reseat_iterator): Call it.
6827         (next_element_from_string): Ditto.
6828         (next_element_from_buffer): Ditto.
6829         (init_iterator): Initialize space_width of iterator.
6830         (redisplay_internal): Don't goto end_of_redisplay if PT hasn't
6831         moved, but cursor blinks.
6832         (redisplay_internal): Set w->last_cursor_off_p after update.
6834         * dispextern.h (enum iterator_prop_idx): Add SPACE_WIDTH_PROP_IDX.
6835         (struct display_iterator): Add new member space_width.
6837         * window.h (struct window): Add last_cursor_off_p.
6839 1998-07-07  Gerd Moellmann  <gerd@gnu.org>
6841         * Saved.
6843         * window.c (Fpos_visible_in_window_p): Case window not up to
6844         date---return nil if iterator hasn't reached position.
6846 1998-07-06  Gerd Moellmann  <gerd@gnu.org>
6848         * xdisp.c (text_outside_line_unchanged_p): Fix case that
6849         overlays have changed.
6850         (redisplay_window): Case cursor movement.  Don't try it if
6851         last_cursor.vpos is out of range.
6853         * xdisp.c (set_cursor_from_row): Set this_line_.* variables.  This
6854         way, the display optimization for the line containing the cursor
6855         is used more frequently, esp. when we have a blinking cursor.
6856         (display_line): Don't set this_line_.* variables.
6858         * xterm.c (x_redraw_cursor): Removed.
6859         (x_display_and_set_cursor): Set cursor type depending on
6860         cursor_off_p flag of window.
6862         * dispnew.c (redraw_cursor_hook): Removed.
6863         (Fblink_cursor): Additional parameter on_p to set the cursor_off_p
6864         member of the selected window.
6866         * xfaces.c (Fface_font): Added for compatibility with 20.2.
6868         * xterm.c (x_y_to_hpos_vpos): Return null if not over text.
6869         Return glyph area under x/y.
6870         (note_mouse_highlight): Use x_y_to_hpos_vpos in its new form.
6872         * keyboard.c (detect_input_pending_run_timers): Call gobble_input
6873         after redisplaying.
6875 1998-07-05  Gerd Moellmann  <gerd@gnu.org>
6877         * xdisp.c (text_outside_line_unchanged_p): Test if changes
6878         are all outside of a line of text.
6879         (redisplay_internal): Use it.
6881 1998-06-30  Gerd Moellmann  <gerd@gnu.org>
6883         * xdisp.c (next_element_from_buffer): After skipping over
6884         invisible text, look for the `glyph' property.
6885         (set_iterator_stop_pos): Ignore check positions in front
6886         of an iterator's current position.
6888         * xterm.c (show_mouse_face): Don't act on rows that don't exist
6889         anymore or which are marked as not having valid contents.
6891         * xfaces.c (Finternal_set_lisp_face_attribute): Don't free
6892         realized faces if new attribute value is equal to old value.
6894 1998-06-29  Gerd Moellmann  <gerd@gnu.org>
6896         * xfaces.c (Finternal_make_lisp_face): Increment
6897         lface_id_to_name_size when lface_id_to_name is reallocated.
6899 1998-06-27  Gerd Moellmann  <gerd@gnu.org>
6901         * xdisp.c (set_iterator_stop_pos): Compute initial stop_pos
6902         as minimum of endpos and overlay_pos.
6903         (load_overlay_strings): Set next_overlay_pos of iterator to
6904         -1 if we don't have to check for more overlay strings.
6906 1998-05-09  Gerd Moellmann  <gerd@gnu.org>
6908         * xdisp.c (set_iterator_to_next_visible_line_start): Don't
6909         do anything if iterator is at ZV because scan_buffer doesn't
6910         work otherwise.
6912         * xterm.c (x_encode_char): Inline it.
6913         (x_get_char_font_and_encoding): Simplified.
6914         (x_per_char_metric): Inline it.
6916         * xterm.c (x_draw_glyph_string_relief): Use clipping.
6918         * xdisp.c (get_next_display_element): Check for end of relief
6919         face moved here from next_element_from_buffer.
6921         * xterm.c (x_produce_image_glyph): Add relief thickness.
6922         (x_produce_stretch_glyph): Ditto.
6924 1998-05-08  Gerd Moellmann  <gerd@gnu.org>
6926         * xdisp.c (fill_iterator_from_glyph_property): Handle glyph
6927         property value (space :width WIDTH :height HEIGHT :ascent ASCENT).
6929         * xterm.c (x_produce_stretch_glyph): Produce a stretch glyph
6930         from a glyph property.
6931         (x_produce_glyphs): Use it.
6933         * xdisp.c (set_iterator_to_next): Handle next_element_from_stretch.
6935         * xterm.c (x_produce_image_glyph): Add to current_x only if
6936         in text area.
6937         (x_produce_glyphs): Ditto.
6939         * xdisp.c (display_line): Compute row height from glyphs in
6940         marginal areas.
6942         * xterm.c (x_draw_image_glyph_string_background): Draw
6943         background of an image glyph string.
6944         (x_draw_glyph_string_bg_rect): Draw a rectangular region of
6945         the background of a glyph string.
6946         (x_draw_image_glyph_string_foreground): Draw the foreground of
6947         an image glyph string.
6948         (x_inverted_image_mask): Return the inverted mask of an image.
6950         * xfns.c (x_draw_image): Removed.
6952         * dispextern.h (struct image_type): Remove drawing function.
6954         * xfaces.c (load_face_colors): Swap colors if face is inverse.
6956         * xdisp.c (get_next_display_element): In marginal areas, translate
6957         newlines, tabs, etc. like normal control characters.
6959         * xfaces.c (Fface_color_supported_p): Transpose parameters frame
6960         and color.
6961         (free_realized_faces): Set frame garbaged.
6963         * xfaces.c (syms_of_xfaces): Add defsubr for
6964         internal-lisp-face-attribute-values.
6966 1998-05-07  Gerd Moellmann  <gerd@gnu.org>
6968         * xterm.c (x_produce_image_glyph): Don't add glyph if area is
6969         full.
6970         (x_produce_image_glyph): Set IT->nglyphs to 1.
6971         (x_draw_image_glyph_string): Use inverted mask to draw background.
6973         * dispextern.h (struct image_type): Additional clipping rect
6974         parameters for drawing functions.
6976         * xterm.c (x_get_glyph_string_clip_rect): Get clip rect for
6977         a glyph string.
6978         (x_draw_image_glyph_string): Use it and pass the rect to the
6979         image drawing function.
6981         * xdisp.c (fill_iterator_from_glyph_property): Use position of
6982         first character with `glyph' property as image position.  Set
6983         iterator back to that position as long as the image hasn't been
6984         consumed with set_iterator_to_next.
6985         (set_cursor_from_row): Accept when glyph with given position is
6986         not found in the row.  Set cursor x to end of line in that case,
6987         so that we can hscroll.
6988         (redisplay_internal): Correct computation of delta by which
6989         positions have changed in redisplay optimization for cursor
6990         row of selected window.
6992         * xdisp.c (display_line): Remove start_pos.
6993         (display_line): Fix bug preventing display optimization for
6994         cursor line of selected window.
6995         (next_element_from_buffer): Avoid XSETBUFFER, use it->w->buffer
6996         instead.
6998         * dispnew.c (update_text_area): Use GLYPH_EQUAL_P.
6999         (update_text_area): Take glyph pixel width into account
7000         when trying to find a resync point.
7001         (row_equal_p): Compare glyphs in all areas.
7003 1998-05-06  Gerd Moellmann  <gerd@gnu.org>
7005         * xterm.c (x_produce_glyphs): Don't add glyph if area is full.
7007         * dispextern.h (struct glyph_row): Use unsigned hash value.
7009         * xdisp.c (display_line): Simplified and made faster by setting
7010         the cursor with set_cursor_from_row.
7011         (set_cursor_from_row): Handle rows of desired matrix.
7013 1998-05-05  Gerd Moellmann  <gerd@gnu.org>
7015         * xdisp.c (set_cursor_from_row): Don't put cursor on glyphs
7016         with type != CHAR_GLYPH.
7017         (fill_iterator_from_glyph_property): Return void.  Set
7018         method to next_element_from_image.
7019         (next_element_from_image): Dummy function for delivering a
7020         single image id.
7021         (set_iterator_to_next): Add method next_element_from_image.
7022         (redisplay_window): When recentering, and cursor vpos is -1
7023         after display, assume middle of window is in first line displayed
7024         in window, and display again.
7025         (fill_iterator_from_glyph_property): Assign image glyph
7026         the position of the first character having the glyph property.
7028         * dispextern.h (IMAGE_ASCENT): Compute ascent of image.
7029         * xfns.c (x_draw_image): Use it.
7030         * xterm.c (x_produce_image_glyph): Use it.
7032         * xterm.c (x_produce_image_glyph): Set iterator's pixel_width.
7034         * Makefile.in: Extraneous #define of LIBXPM removed.
7036         * xterm.c (x_produce_glyphs): Produce a STRETCH_GLYPH for tabs.
7037         (x_fill_stretch_glyph_string): Fill a glyph string from a
7038         stretch glyph.
7039         (x_compute_glyph_string_overhangs): Compute overhangs only
7040         for text glyph strings.
7041         (x_draw_stretch_glyph_string): Draw a stretch glyph string.
7042         (x_draw_glyph_string): Call it.
7044         * dispextern.h (glyph_type): Add STRETCH_GLYPH.
7045         (struct glyph): Add sub-structure for stretchable glyphs.
7046         (GLYPH_EQUAL_P): Compare glyph type and u.val.
7048         * xdisp.c (get_overlay_arrow_glyph_row): Put face code into
7049         #ifdef HAVE_FACES.
7051         * xterm.c (x_produce_glyphs): Use ASCII face for spaces of a TAB.
7053         * xdisp.c (fill_iterator_from_glyph_property): Renamed from
7054         setup_iterator_from_glyph_property.  Don't do it for terminal
7055         frames.
7057         * xterm.c (x_produce_image_glyph): Produce glyph for image
7058         that can't be loaded.
7060         * xfns.c (lookup_image): If image can't be loaded, set its
7061         width and height so that we can draw a rectangle.
7062         (x_draw_image): Draw a rectangle for images that don't have
7063         a pixmap.
7064         (make_image): Set hash value.
7065         (image_spec_equal_p): Use image_spec_value.
7067         * xterm.c (expose_frame): Don't try to redraw if basic faces
7068         haven't benn realized yet.
7069         (x_draw_image_glyph_string): Fill background only if image
7070         is not as tall as row.
7072 1998-05-04  Gerd Moellmann  <gerd@gnu.org>
7074         * Makefile.in (LIBXPM): If not already defined, define to -lXpm.
7075         (LIBX)[HAVE_X11]: Add LIBXPM.
7077         * xfns.c (xpm_image_p): Implementation of image type functions
7078         for XPM.
7079         (xpm_load): Ditto.
7081         * dispextern.h (struct image): Add mask pixmap for XPM.
7083         * xfns.c (x_draw_image): Handle images with masks.
7085         * configure.in: --with-xpm added.  Code detecting -lXpm added.
7087         * config.in: Add HAVE_XPM.
7089         * xfns.c (xbm_draw): Removed.
7090         (x_draw_image): Default implementation for drawing images.
7091         (xbm_keyword_index): Remove XBM_DEPTH.
7092         (xbm_format): Remove `:depth'.
7093         (xbm_image_spec_from_file): Removed to reduce consing.
7094         (xbm_load_image_from_file): Added for the same reason.
7096         * xterm.c (x_fill_image_glyph_string): Don't set ybase of
7097         glyph string.
7098         (x_draw_image_glyph_string): Pass ybase to image draw function.
7100         * xfns.c (make_image): Set default baseline.
7102         * xterm.c (x_produce_image_glyph): Compute ascent of image
7103         from its height and baseline percentage.
7105         * xfns.c (xbm_keyword_index): Add XBM_BASELINE.
7106         (xbm_format): Add description for `:baseline'.
7107         (xbm_image_spec_from_file): Add keywords from original spec to
7108         result.
7109         (xbm_load): Set baseline of image.
7110         (xbm_image_p): Check range for baseline.
7112         * dispextern.h (struct image): Add member baseline.
7114         * xdisp.c (dump_glyph_matrix): Handle image glyphs.
7116         * term.c (produce_glyphs): Change assertion to allow DISP_IMAGE.
7118         * xdisp.c (get_next_display_element): Do character translations
7119         only if delivering characters.
7121 1998-05-03  Gerd Moellmann  <gerd@gnu.org>
7123         * dispextern.h (ITERATOR_AT_END_OF_LINE_P): Test for
7124         DISP_CHARACTER.
7126         * xterm.c (x_produce_image_glyph): Poduce image glyphs.
7127         (x_produce_glyphs): Call x_produce_glyphs for DISP_IMAGE.
7129 1998-05-02  Gerd Moellmann  <gerd@gnu.org>
7131         * xfns.c (prepare_image_for_display): Set image timestamp.
7132         (clear_image_cache): Clear images if image's timestamp +
7133         Vimage_eviction_seconds is > now.
7134         (syms_of_xfns): New variables image-eviction-seconds, and
7135         image-types.
7136         (add_image_format): Add to image-types.
7137         (xbm_load): Support new image spec format.
7138         (x_alloc_image_color): Allocate a color for an image.
7140         * dispextern.h (struct image): Add timestamp.
7142         * xfns.c (xbm_image_p): Allow bool-vectors, vectors of strings and
7143         vectors of bool-vectors.
7144         (xbm_lisp_object_from_file): Build new format image spec.
7146 1998-05-01  Gerd Moellmann  <gerd@gnu.org>
7148         * xfaces.c (init_frame_faces): Initialize image cache.
7149         (free_frame_faces): Free it.
7151         * xterm.c (x_delete_display): Don't free image cache.
7153         * emacs.c (main): Call init_xfns.
7155 1998-04-30  Gerd Moellmann  <gerd@gnu.org>
7157         * alloc.c (mark_object): Mark objects in image cache.
7159         * xfns.c (x_set_internal_border_width): Correct call to
7160         widget_store_internal_border_width.
7162         * widget.c (widget_store_internal_border): Return void.
7164         * xfns.c (x_destroy_bitmap): Use xfree instead of free.  Return
7165         void.
7166         (init_x_parm_symbols): Return void.
7167         (x_report_frame_params): Ditto.
7168         (x_set_border_pixel): Ditto.
7169         (syms_of_xfns): Ditto.
7170         (x_destroy_all_bitmaps): Use xfree instead of free.
7172         * xterm.h (FRAME_X_IMAGE_CACHE): Access the image cache of a frame.
7174         * xterm.c (x_term_init): Initialize image_cache of display info.
7175         (x_delete_display): Free image cache.
7177         * xterm.h (struct x_display_info): Add image_cache.
7179         * xfns.c (make_image_cache): Allocate a new image cache.
7180         (free_image_cache): Free an image cache.
7181         (make_image): Allocate an image.
7182         (free_image): Free an image.
7184         * dispextern.h (struct image): Structure describing an image.
7185         (struct image_cache): Structure describing an image cache.
7187 1998-04-29  Gerd Moellmann  <gerd@gnu.org>
7189         * xdisp.c (check_iterator_glyph_property): Return int.  Value is
7190         non-zero if iterator is filled with something to return.
7191         (next_element_from_buffer): Immediately return if
7192         setup_iterator_from_glyph_prop has filled iterator with pixmap.
7193         (next_element_from_string): Likewise.
7195         * xfaces.c (load_pixmap): Allow to pass null for W_PTR and H_PTR.
7197         * dispextern.h (struct glyph): Add pixmap_id.
7198         (display_element_type): Add DISP_PIXMAP.
7200         * xmenu.c (popup_get_selection): Use xmalloc/xfree instead of
7201         malloc/free.
7203         * xfaces.c (clear_font_table): Free fonts not used by fontsets.
7204         (clear_face_cache): Call it.
7206         * xterm.c (x_query_font): Don't look at empty font table slots.
7207         (x_compute_min_glyph_bounds): Likewise.
7208         (x_term_init): Initialize font_table to null.
7209         (x_load_font): Change allocation of font_info structures so
7210         that it is possible to free fonts.
7212         * xfns.c (Fx_close_connection): Use xfree instead of free.
7213         Only free fonts from filled font table entries.
7215         * xfaces.c (best_matching_font): Support use of scalable fonts.
7216         (Fface_scalable_fonts_mode): Toggle use of scalable fonts.
7218         * xterm.h (struct x_display_info): Remove screen_dpi, add resx
7219         and resy.
7220         * xterm.c (x_term_init): Compute resx and resy.
7222         * xfaces.c (split_font_name): Don't reject scalable fonts.
7224         * xterm.c (x_list_fonts): Set code exclusing scalable fonts
7225         in #if 0.
7227         * xfaces.c (xlfd_point_size): Return 0 for fonts whose real
7228         point size cannot be determined.
7230         * xterm.h (FRAME_SMALLEST_CHAR_WIDTH): Return smallest character
7231         width over all fonts on a frame.
7232         (FRAME_SMALLEST_FONT_HEIGHT): Likewise for font height.
7233         * dispnew.c (adjust_frame_glyphs_for_window_redisplay): Use these
7234         macros.
7236         * xterm.c (x_font_min_bounds): Moved here from xfaces.c.
7237         (x_compute_min_char_bounds): Formerly min_char_bounds in xfaces.c.
7238         (x_load_font): Use x_compute_min_char_bounds.
7240         * xterm.h (struct x_display_info): New members smallest_char_width
7241         and smallest_font_height.
7243 1998-04-28  Gerd Moellmann  <gerd@gnu.org>
7245         * dispextern.h (PREPARE_FACE_FOR_DISPLAY): Call function with
7246         the same name if GC of face is zero.
7248         * dispextern.h (struct face): Member non_ascii_gc removed.
7250         * xterm.c (x_get_char_font_and_encoding): Return face's font
7251         for characters < 0177 in default face.  Prepare face for
7252         display before returning it.
7253         (x_produce_glyphs): Use it->charset.
7254         (x_get_char_font_and_encoding): Simplified.
7255         (x_encode_char): Remove parameter `font'.
7257         * xfaces.c (choose_face_font): If registry from charset symbol
7258         doesn't contain a `-', make it a pattern by appending "*-*".
7260         * xdisp.c (check_iterator_glyph_property): Adjust limit for
7261         glyph_check_pos computation to character boundary.
7263 1998-04-27  Gerd Moellmann  <gerd@gnu.org>
7265         * fontset.h (FONT_INFO_FROM_ID): Return null if ID is invalid.
7267         * xfaces.c (ascii_face_of_lisp_face): Get the id of the realized
7268         ASCII face for a given Lisp face id.
7270         * xdisp.c (set_iterator_stop_pos): Take glyph_check_pos into
7271         account.
7272         (reseat_iterator): Set glyph_check_pos. Handle case where
7273         new position is < original position.
7274         (check_iterator_glyph_property): Handle glyph property in strings.
7275         (next_element_from_string): Call above function.
7276         (next_element_from_display_vector): Handle faces in glyphs.
7277         (get_next_display_element): Set face_id of glyphs for
7278         control chars to zero.
7280         * Makefile.in (term.o): Add dependency on dispextern.h.
7282         * xdisp.c (syms_of_xdisp): Add symbol `glyph'.
7283         (display_line): Handle marginal areas.
7284         (move_iterator_in_display_line_to): Likewise.
7286         * xfaces.c (Finternal_make_lisp_face): Assign Lisp faces an id.
7288         * xfaces.c (face_at_buffer_position): Don't merge with nil
7289         text property.
7290         (face_at_string_position): Ditto.
7292         * dispextern.h (struct display_iterator): Use a stack of saved
7293         values instead of saving check positions etc. individually.
7295         * xdisp.c (set_iterator_to_next): If end of Lisp string reached,
7296         maybe pop the iterator's stack.
7297         (save_iterator_settings): Push a value on iterator's stack.
7298         (get_overlay_strings_at_iterator_position): Use it.
7299         (restore_iterator_settings): Pop the stack.
7300         (set_iterator_to_next_overlay_string): Use it.
7302         * xfaces.c (try_font_list): Use alternative font families.
7304 1998-04-26  Gerd Moellmann  <gerd@gnu.org>
7306         * xfaces.c (Fset_face_font_sort_order): Set the order in which
7307         font selection matches fonts.
7308         (Fface_font_sort_order): Return the font sort order.
7309         (best_matching_font): Find best matching font based on sort order.
7310         (cmp_font_names): Sort by given sort order.
7312         * dispextern.h (struct display_iterator): New member faces_p.
7313         * xdisp.c (init_iterator): Initialize it->faces_p.
7314         (compute_face_at_iterator_string_position): Use it.
7315         (compute_face_at_iterator_position): Use it.
7316         (init_iterator): Use it.
7317         (display_mode_line): Ditto.
7319         * xdisp.c (get_next_display_element): Put code choosing a face
7320         when the charset changes in #ifdef HAVE_FACES.
7322         * dispextern.h (FACE_FOR_CHARSET): Replacement for function
7323         lookup_face_for_charset.
7325         * xfaces.c (free_font_names): Renamed from free_split_font_names.
7326         (free_all_realized_faces): Renamed from remove_all_realized_faces.
7328 1998-04-25  Gerd Moellmann  <gerd@gnu.org>
7330         * xfaces.c (best_matching_font): Return the name of the best
7331         matching font in an array of font_name structures.
7332         (choose_face_font): Use it.
7333         (choose_face_fontset_font): Use it.
7334         (find_best_weight_font): If final font found has same weight as
7335         the font we started with, return the original font because it is a
7336         better match for the resolution of the display.
7337         (find_best_slant_font): Likewise.
7338         (merge_face_vector_with_property): Check more invalid attribute
7339         values.
7340         (lface_suitable_for_charset_p): Replaced by a macro with the same
7341         name in upper-case.
7343 1998-04-24  Gerd Moellmann  <gerd@gnu.org>
7345         * dispextern.h (struct face): Member
7346         fontset_chosen_for_realization_p removed.
7348         * xfaces.c (cache_face): If face->fontset >= 0, add face to the
7349         end of the collision list, so that we find more specific faces
7350         first.
7351         (lookup_face_for_charset): Look up a new face if face->fontset >=
7352         0, and charset != CHARSET_COMPOSITION.
7354         * xfaces.c (split_font_name): Return zero if point size of font
7355         couldn't be computed.
7356         (realize_default_face): Use ASCII font of a fontset to determine
7357         font-related attributes of the default face.
7358         (face_fontset): Return fontset id for face family.
7359         (font_list): Additional parameter font_pattern.  If non-nil,
7360         return fonts matching that pattern.
7362 1998-04-23  Gerd Moellmann  <gerd@gnu.org>
7364         * xfaces.c (choose_face_fontset): If new fontset cannot be
7365         constructed, or fontset name cannot be split, return the id of the
7366         standard fontset.
7368         * xterm.c (XTframe_up_to_date): Check that frame is an X frame.
7369         When Emacs starts, it may be called for the initial frame which
7370         isn't an X frame.
7372         * dispextern.h (struct face): New members foreground_defaulted_p,
7373         background_defaulted_p.
7374         (struct face): Members `mask' and `cache' removed.
7376         * xfaces.c (load_color): Set them.
7377         (free_face_colors): Check them.
7378         (xlfd_point_size): Return -1 if resolution or point size of
7379         font unknown.
7381         * xfaces.c (free_font): Removed.
7382         (load_face_font_or_fontset): Renamed from load_font.
7383         (load_face_font_or_fontset): Use message2 instead of signalling.
7384         (load_color): Likewise.
7385         (load_pixmap): Likewise.
7387         * xterm.h (struct x_display_info): Add screen_dpi.
7388         * xterm.c (x_term_init): Initialize it.
7389         * xfaces.c (xlfd_point_size): Use it.
7390         (split_font_name): Compute numeric XLFD_RESY.
7391         (cmp_font_names): Make fonts with an y-resolution more
7392         similar to that of the frame appear first in the result.
7394         * xfaces.c (cache_face): If fontset_chosen_for_realization_p
7395         is set for the face to cache, add it to the end of the collision
7396         list.
7397         (try_font_list): If fonts for given family and registry cannot
7398         be found, first try to keep the registry, and choose a different
7399         family.
7400         (choose_face_font): Allow nfonts == 0.
7401         (try_font_list): Give up if no font matches given registry.
7403 1998-04-22  Gerd Moellmann  <gerd@gnu.org>
7405         * xterm.c (x_get_char_font_and_encoding): Get font_info from
7406         font info id of the face.
7408         * xfaces.c (load_font): Set font_info_id.
7409         (realize_face): Ditto.
7411         * dispextern.h (struct face): Change member font_info to
7412         font_info_id.
7414         * fontset.h (FONT_INFO_ID): Build an ID from a font_info pointer.
7415         (FONT_INFO_FROM_ID): Get a font_info pointer from an ID.
7417         * xdisp.c (extend_face_to_end_of_line): If IT's current charset
7418         isn't ASCII, get the ASCII face before adding a space.
7419         (append_space): Likewise.
7420         (insert_left_trunc_glyphs): Initialize truncate_it's charset
7421         to -1 so that it will compute the right face for the truncation
7422         glyphs.
7424         * xfaces.c (realize_face): Set
7425         face->fontset_chosen_for_realization_p.
7426         (lookup_face_for_charset): If fontset wasn't specified originally
7427         and new charset != CHARSET_COMPOSITION, get a new face for that
7428         charset.
7430         * dispextern.h (struct face): New member
7431         fontset_chosen_for_realization_p_specified_p.  Set to 1 when
7432         realize_face has chosen a fontset to display composite characters
7433         for a Lisp face not specifying a fontset.
7435         * xdisp.c (extend_face_to_end_of_line): Move tests for default
7436         face and line already filled here.  Don't do anything if current
7437         face hasn't a relief or has a background equal to the frame
7438         background.
7440         * xfaces.c (split_font_name): Additional parameter numeric_p.
7441         Don't compute numeric values if it is non-zero.
7442         (choose_face_fontset): Call split_font_name with numeric_p == 0.
7443         (choose_face_fontset): Print a message if fontset contains a
7444         font whose name cannot be split into fields.
7446 1998-04-21  Gerd Moellmann  <gerd@gnu.org>
7448         * xfaces.c (try_font_list): Try to load a list of fonts,
7449         possibly using less restrictive patterns.
7450         (choose_face_font): Use it.
7452         * xterm.c (x_get_char_font_and_encoding): For charset !=
7453         CHARSET_ASCII use font_info of face if face hasn't a fontset set.
7455         * dispextern.h (struct face): New member font_info.
7457         * xfaces.c (load_font): Use FS_LOAD_FONT to load fonts for faces
7458         specifying a fontset as well as those not having a fontset.
7459         (free_font): Make it empty.
7460         (realize_face): Use changed load_font.
7462         * xterm.c (x_get_char_font_and_encoding): If face doesn't
7463         fit for charset, get the right one.
7465         * xfaces.c (load_font): Take frame and name parameter, return
7466         font.
7467         (free_font): Likewise.
7468         (split_font_name): Compute numeric values for height, swidth etc.
7469         (cmp_font_names): Use them.
7470         (find_best_width_font): Ditto.
7471         (find_best_height_font): Ditto.
7472         (find_best_weight_font): Ditto.
7473         (find_best_slant_font): Ditto.
7474         (lface_hash): Add weight, slant, swidth and relief to hash value.
7475         (lface_equal_p): Make it faster.
7476         (lface_from_symbol): Use assq_no_quit.
7477         (Fnote_default_face_changed): Removed.
7478         (cmp_font_names): Use strcmp instead of xstricmp.
7479         (face_charset_registries): Removed.
7481 1998-04-20  Gerd Moellmann  <gerd@gnu.org>
7483         * frame.h (CHECK_FRAME): Give this macro a statement form.
7484         (CHECK_LIVE_FRAME): Ditto.
7486         * xfaces.c (find_best_width_font): Find the best matching font
7487         for a given width.
7488         (find_best_height_font): Likewise for height.
7489         (find_best_weight_font): Likewise for weight.
7490         (find_best_slant_font): Likewise for slant.
7491         (choose_face_font): Use them.
7492         (get_lface_attributes): Always return frame-local face attrs.
7493         (Finternal_merge_in_global_face): Merge local face with
7494         global face attributes.
7496         * xfaces.c (check_lface_attrs, check_lface): Check consistency of
7497         Lisp face attributes.
7499 1998-04-19  Gerd Moellmann  <gerd@gnu.org>
7501         * xfaces.c (Finternal_set_lisp_face_attribute): Add :bold
7502         and :italic for compatibility.
7503         (Finternal_set_lisp_face_attribute_from_resource): Handle
7504         :bold and :italic.  Handle boolean resource values for
7505         :underline and :italic.
7507         * xfns.c (display_x_get_resource): Make it externally visible.
7509         * xfaces.c (lface_from_symbol): Take a frame as parameter.
7510         If that frame is non-null, return the frame-local face.
7511         (Finternal_make_lisp_face): Additional frame argument.
7512         (lface_attributes): Get face attributes from global and frame-local
7513         definitions.
7514         (Finternal_lisp_face_equal_p): Additional frame argument.
7515         (merge_lisp_face_vector_with_property): Ditto.
7516         (Frealize_basic_faces): Removed.
7517         (Finternal_get_lisp_face_attribute): Additional frame argument.
7518         (Finternal_lisp_face_p): Ditto.
7519         (load_color) [MSDOS]: Removed because it isn't clear how
7520         to do this for MS-DOS.
7522         * xfaces.c (lface_from_symbol): Get global face definition
7523         from face-global-alist.
7525         * xfaces.c (Finternal_set_lisp_face_attribute): Allow `t'
7526         as values for :underline and :inverse-video.
7527         (Finternal_set_lisp_face_attribute): Allow nil values.
7529 1998-04-17  Gerd Moellmann  <gerd@gnu.org>
7531         * xfaces.c (Finternal_make_lisp_face): Return Lisp face vector.
7533         * xfaces.c (syms_of_xfaces): Add Vall_faces.
7534         (Finternal_make_lisp_face): Add new face to Vall_faces.
7536         * xdisp.c (echo_area_display): Remove code recomputing faces.
7537         (redisplay_internal): Ditto.
7538         (init_iterator): Do it here.
7540         * xfaces.c (choose_face_font): Check that swidth doesn't change
7541         for subusequent attributes.
7542         (xlfd_point_size): Return int.
7544         * xdisp.c (redisplay_internal, echo_area-display): If realized
7545         faces have been cleared, call recompute_basic_faces.
7547         * xfaces.c (recompute_basic_faces): Free realized faces.  Reset
7548         face_attributes_changed_p.
7549         (remove_all_realized_faces): Remove all realized faces on
7550         all frames.
7551         (Finternal_set_lisp_face_attribute): Call remove_all_realized_faces.
7553         * xdisp.c (redisplay_internal): If face attributes have been
7554         changed since the last redisplay, recompute basic faces.
7555         (echo_area_display): Ditto.
7557         * xfaces.c (clear_face_gcs): Renamed from clear_realized_face_cache.
7559         * xfaces.c (min_char_bounds): If face cache not yet present,
7560         don't try to get font dimensions from faces.
7562         * xterm.c (x_frame_mode_line_height): If face cache not present
7563         set, return default height.
7565         * alloc.c (mark_face_cache): Check for null faces.  Correct
7566         index bug.
7568         * dispextern.h (struct face): Renamed from struct rface.  Member
7569         underline renamed underline_p.  Make it a bit-field.
7571         * xfaces.c (init_frame_faces): Allocate face cache.
7572         (free_frame_faces): Free face cache.
7573         (recompute_basic_faces): Realize basic faces only if face cache is
7574         allocated, i.e. after init_frame_faces has been called.
7576         * frame.c (make_frame): Initialze face cache with null.
7578         * xfaces.c (same_size_fonts): Removed.
7580         * xterm.c (x_set_glyph_string_gc): Add post-condition
7581         s->gc != 0.
7582         (x_set_mouse_face_gc): Ditto.
7583         (x_set_mode_line_face_gc): Ditto.
7585         * xfaces.c (realize_default_face): Return int.  Value is
7586         zero if frame params don't contain enough information to
7587         realize the default face.
7588         (realize_basic_faces): Ditto.
7589         (init_frame_faces): Realize basic faces.
7591         * xfns.c (x_set_font): First store real font name in frame
7592         parameters, then call recompute_basic_faces.
7594         * xfaces.c (recompute_basic_faces): Call realize_basic_faces.
7596 1998-04-16  Gerd Moellmann  <gerd@gnu.org>
7598         * xfaces.c (syms_of_xfaces): Correct calls to defsubr.
7600         * xfns.c (Fx_face_fixed_p): Removed.
7601         (Fx_list_fonts): Moved to xfaces.c.
7603         * xfaces.c (compute_face_at_buffer_pos): Renamed to
7604         face_at_buffer_position.  Parameter charset removed; always
7605         compute face for CHARSET_ASCII.
7606         (face_at_string_position): Renamed from
7607         compute_face_at_string_pos. Parameter charset removed; always
7608         compute for CHARSET_ASCII.
7609         (lookup_face_for_charset): Take frame parameter instead of
7610         face_cache.
7611         (lookup_face): Ditto.
7612         (compute_char_face): Renamed from compute_glyph_face.
7614         * xdisp.c (init_iterator): Initialize charset member.
7615         (reseat_iterator_to_string): Ditto.
7616         (get_charset_at_buffer_position): Determine charset at
7617         buffer position in current_buffer.
7618         (reseat_iterator): Call above function.
7619         (compute_face_at_iterator_position): Call
7620         compute_face_at_buffer_pos.
7621         (compute_face_at_iterator_string_position): Call
7622         compute_face_at_string_pos.
7623         (get_face_from_id): Removed.
7624         (get_face_from_cursor_pos): Call compute_face_at_buffer_pos.
7625         Call get_charset_at_buffer_position.
7626         (reseat_iterator): Determine face if charset at pos differs
7627         from iterator's charset.
7628         (reseat_iterator_to_glyph_pos): Removed.
7630         * xfaces.c (compute_face_at_bufpos): Remove parameter charset.
7631         Determine charset from buffer position.
7632         (compute_string_char_face): Renamed to compute_face_at_string_pos.
7633         (compute_face_at_bufpos): Renamed to compute_face_at_buffer_pos.
7635         * dispextern.h (struct display_iterator): Add member charset.
7637 1998-04-15  Gerd Moellmann  <gerd@gnu.org>
7639         * xfaces.c (compute_char_face): Removed.
7641         * xdisp.c (get_overlay_arrow_glyph_row): Use compute_glyph_face
7642         with new parameter list.
7644         * xfaces.c (region_face): Removed.
7645         (allocate_face): Removed.
7646         (copy_face): Ditto.
7647         (face_eql): Removed.
7648         (intern_face): Removed.
7649         (clear_face_cache): Removed.
7650         (load_font): Ditto.
7651         (unload_font): Ditto.
7652         (load_color): Ditto.
7653         (unload_color): Ditto.
7654         (new_computed_face): Ditto.
7655         (intern_computed_face): Ditto.
7656         (ensure_face_ready): Ditto.
7657         (merge_faces): Ditto.
7658         (compute_base_face): Ditto.
7659         (merge_face_list): Ditto.
7660         (Fmake_face_internal): Removed.
7661         (Fset_face_attribute_internal): Ditto.
7662         (face_name_id_number): Removed.
7663         (Fframe_face_alist): Ditto.
7664         (Fset_frame_face_alist): Ditto.
7665         (Finternal_next_face_id): Ditto.
7667         * xterm.h (struct x_output): Remove computed_faces, and
7668         param_faces.  Remove macros accessing them.
7670         * xfaces.c: Entirely new face implementation added.
7672 1998-04-11  Gerd Moellmann  <gerd@gnu.org>
7674         * dispextern.h (struct glyph_pos): Member `bufpos' renamed
7675         `charpos'.
7677 1998-04-10  Gerd Moellmann  <gerd@gnu.org>
7679         * xterm.c (x_scroll_bar_move): Clear only regions not covered by
7680         scroll bar window to reduce flickering.  Clear entire height.
7682         * xdisp.c (move_iterator_vertically_backward): Set iterator's
7683         current_x and hpos to zero after moving to previous line
7684         start.
7686 1998-04-03  Gerd Moellmann  <gerd@gnu.org>
7688         * frame.h (FRAME_FACE_CACHE): Access to a frame's face cache.
7690         * xfaces.c (xlfd_point_size): Compute relative point size of
7691         fonts from font and frame resolution.
7692         (sort_fonts): New function to sort fonts, temporarily setting
7693         font_frame to the frame in effect.
7694         (xlfd_point_size): Take additional frame parameter to be able
7695         to get at the display's resolution.
7697         * xterm.c (x_setup_relief_colors): Use WHITE_PIX_DEFAULT and
7698         BLACK_PIX_DEFAULT.
7699         (x_setup_relief_color): Use FRAME_X_SCREEN instead of default
7700         screen of display.
7702 1998-03-31  Gerd Moellmann  <gerd@gnu.org>
7704         * xfaces.c (choose_face_fontset): Instantiate fontsets.
7706         * fontset.h: Add external declarations for Vfontset_alias_alist
7707         and Vglobal_fontset_alist.
7709         * xfaces.c (merge_lisp_face_vector_with_property): Simplified.
7710         (realize_default_face): If frame parameters contain an artificial
7711         font name naming a fontset, set the family of the default face to
7712         the fontset name given by the registry.
7714         * Makefile.in (alloc.o): Add dependency to dispextern.h.
7716 1998-03-22  Gerd Moellmann  <gerd@gnu.org>
7718         * alloc.c (mark_object): Add function prototype.  Add cast to
7719         Lisp_Object pointer in call to mark_object for symbol names
7720         because this otherwise gives a warning from gcc 2.8.1.
7721         (mark_face_cache): Mark Lisp objects in realized faces.
7723 1998-03-19  Gerd Moellmann  <gerd@gnu.org>
7725         * frame.h (struct frame): Add member face_cache.
7727         * alloc.c (mark_object): Mark face cache.
7728         (mark_face_cache): Mark Lisp faces in face cache of frame.
7730         * frame.c (make_frame): Initialize face_cache.
7731         (Fdelete_frame): Free it.
7733 1998-03-18  Gerd Moellmann  <gerd@gnu.org>
7735         * xfaces.c: Very first skeleton of functions for face realization,
7736         face merging, face cache etc.
7738         * dispextern.h (struct rface): Realized faces.  Will replace
7739         struct face when tested.
7740         (struct face_cache): Realized face caches.
7742         * xdisp.c (init_iterator): Initialize area member of display
7743         iterator.
7745 1998-03-17  Gerd Moellmann  <gerd@gnu.org>
7747         * xterm.c (x_append_glyph): Use it->area to store glyphs.
7749         * dispextern.h (struct display_iterator): New member area.
7751         * xterm.c (note_overwritten_text_cursor): Note when the text
7752         cursor of a window is overwritten.
7754         * xdisp.c (set_cursor_from_row): If PT is not found in the
7755         row, display the cursor at the start of the row.
7757         * dispnew.c (direct_output_forward_char): Call
7758         set_cursor_from_row.
7760         * xdisp.c (setup_iterator_overlay_strings_from_glyph_pos): If
7761         position is not in an overlay string, set iterator's position and
7762         method explicitly so.
7763         (set_cursor_from_row): Correct cursor position calculation.
7764         Make it externally visible.
7765         (redisplay_window): Call set_cursor_from_row so that there is only
7766         one place where the cursor position is calculated from a current
7767         row.
7769         * dispextern.h (struct display_iterator): New member
7770         overlay_strings_at_end_processed_p.
7772         * xdisp.c (check_iterator): Perform sanity checks on
7773         display_iterators.
7774         (next_element_from_buffer): Check for overlay strings at ZV.
7776 1998-03-16  Gerd Moellmann  <gerd@gnu.org>
7778         * buffer.c (init_buffer_once): Add left_margin_width and
7779         right_margin_width to buffer_local_flags.
7781         * dispnew.c (margin_glyphs_to_reserve): Function computing
7782         number of glyphs to reserve for a marginal area.
7783         (adjust_glyph_matrix): Call it.
7784         (adjust_frame_glyphs_for_frame_redisplay): Return if frame
7785         is not alive.
7787         * window.c (Fset_window_margins): Allow floats.
7789         * buffer.c (syms_of_buffer): Add buffer-local variables
7790         left-margin-width and right-margin-width.  Add defaults
7791         default-left-margin-width and default-right-margin-width.
7793         * buffer.h (struct buffer): New members left_margin_width
7794         and right_margin_width.
7796         * window.c (Fset_window_margins): Make window the last and
7797         optional argument.
7799         * xterm.c (x_draw_glyphs): Compute x-positions for rows with
7800         flag no_marginal_areas_p differently.
7801         (x_clear_end_of_line): Ditto.
7802         (x_draw_glyph_string_relief): Compute width of relief differently
7803         for rows with flag no_marginal_areas_p.
7805         * dispnew.c (update_window_line): Update marginal areas only
7806         for rows that don't have no_marginal_areas_p set.
7808         * xdisp.c (display_mode_line): Set row's flag no_marginal_areas_p.
7809         (display_menu_bar): Ditto.
7811         * dispextern.h (struct glyph_row): New member no_marginal_areas_p.
7813         * dispnew.c (adjust_glyph_matrix): Compute glyph pointers for
7814         marginal areas in window-based redisplay.
7816         * dispextern.h (struct glyph_matrix): New members
7817         left_margin_glyphs and right_margin_glyphs.
7819 1998-03-15  Gerd Moellmann  <gerd@gnu.org>
7821         * minibuf.c (read_minibuf_unwind): Return Lisp_Object.
7823         * charset.c (non_ascii_char_to_string): Use char type parameters
7824         because the function is used that way from outside.  Use unsigned
7825         char internally.
7827         * window.c (change_window_height): Return void.
7828         (make_dummy_parent): Return void.
7829         (init_window_once): Return void.
7830         (syms_of_window): Ditto.
7831         (keys_of_window): Ditto.
7832         (delete_window): Correct return with and without value.
7834         * buffer.c (record_buffer): Return void.
7836         * marker.c (unchain_marker): Return void.
7838         * window.c (unshow_buffer): Return void.
7839         (replace_window): Ditto.
7840         (delete_window): Ditto.
7842         * term.c (delete_glyphs_hook): Void return type.
7843         (ring_bell_hook): Ditto.
7844         (set_terminal_window_hook): Ditto.
7846         * sysdep.c (init_sigio): Return void.
7848         * xterm.c (x_set_window_size): Return void.
7849         (x_calc_absolute_position): Ditto.
7850         (x_set_offset): Ditto.
7851         (x_focus_on_frame): Ditto.
7852         (x_unfocus_frame): Ditto.
7853         (x_make_frame_visible): Ditto.
7854         (x_make_frame_invisible): Ditto.
7855         (x_iconify_frame): Ditto.
7856         (x_destroy_window): Ditto.
7857         (x_wm_set_window_state): Ditto.
7858         (x_wm_set_icon_pixmap): Ditto.
7859         (x_wm_set_icon_position): Ditto.
7860         (x_initialize): Ditto.
7861         (x_error_quitter): Ditto.
7862         (x_destroy_window): Use xfree instead of free.
7864         * keyboard.c (clear_waiting_for_input): Return void.
7866         * xterm.c (x_wm_set_size_hint): Return void.
7867         (x_raise_frame): Ditto.
7868         (refreshicon): Ditto.
7869         (x_error_catcher): Ditto.
7870         (x_clear_errors): Ditto.
7872         * keyboard.c (record_asynch_buffer_change): Return void.
7874         The first line of the following paragraph was garbled for an
7875         unknown reason.  It couldn't be fully reconstructed.
7877         * xterm.c (XTread_socket, XTset_terminal_window): Ditto.
7878         (x_lower_frame): Ditto.
7879         (x_scroll_bar_clear): Ditto.
7880         (XTflash): Add default case in switch for -Wall.
7881         (construct_mouse_click): Return Qnil.
7882         (cancel_mouse_face): Return void.
7883         (x_queue_event): Use xmalloc instead of malloc.
7884         (x_unqueue_events): Use xfree instead of free.
7886         * ccl.c (ccl_driver): Return int.
7888         * keyboard.c (stop_polling): Return void.
7889         (start_polling): Ditto.
7891         * term.c (keys): Add braces in initializer list for -Wall.
7893         * sysdep.c (tabs_safe_p): Return int.
7894         (init_baud_rate): Return void.
7896         * xterm.c (x_draw_bitmap): Add default case.
7897         (x_setup_relief_colors): Use DefaultScreen instead of
7898         DefaultScreenOfDisplay.
7899         (x_delete_glyphs): Return void.
7900         (construct_menu_click): Put in #if 0 because it isn't called.
7902         * xdisp.c (load_overlay_strings): Remove extraneous argument
7903         in call to qsort.
7904         (get_overlay_arrow_glyph_row): Add missing return value.
7906         * window.c (set_window_height): Return void.
7907         (set_window_width): Ditto.
7909         * sysdep.c (request_sigio): Return void.
7910         (unrequest_sigio): Ditto.
7911         (get_frame_size): Ditto.
7913         * scroll.c (scroll_cost): Return int.
7914         (do_line_insertion_deletion_costs): Return void.
7916         * frame.c (Fdelete_frame): Use xfree instead of free.
7918         * fileio.c (report_file_error): Return void.
7920         * dispnew.c: Make compilable with -Wall.
7921         * term.c: Ditto.
7923         * charset.h (CHAR_LEN): Moved here from dispextern.h.
7925 1998-03-14  Gerd Moellmann  <gerd@gnu.org>
7927         * xterm.c (x_scroll_bar_move): Clear under scroll bar if height is
7928         increased.
7929         (x_setup_relief_color): Free color only for appropriate visual
7930         classes.
7932         * xterm.c (expose_window): Fix calculation of intersection of mode
7933         line rectangle with exposed rectangle.
7935         * xdisp.c (redisplay_window): Don't do cursor movement based
7936         on current matrix if w->last_point is not valid.
7938 1998-03-09  Gerd Moellmann  <gerd@gnu.org>
7940         * xterm.c (expose_line): Redraw mode line and menu lines
7941         differently because they reach into the scroll bar area.
7943         * xdisp.c (redisplay_window): If redisplaying with same window
7944         start, don't accept cursor on partially visible line.
7946 1998-03-08  Gerd Moellmann  <gerd@gnu.org>
7948         * xterm.c (x_set_glyph_string_clipping): Set clip rectangle
7949         for wider mode lines.
7950         (x_draw_glyph_string_relief): Use larger rectangle for mode lines.
7952         * xdisp.c (init_iterator): Increase last_visible_x by vertical
7953         scroll bar width for mode lines.
7955         * dispnew.c (allocate_matrices_for_window_redisplay): Include
7956         vertical scroll bar width in width calculation so that we can
7957         display mode lines wider.
7959         * xdisp.c (redisplay_window): Restore buffers before returning
7960         when fonts have changed.
7962         * dispnew.c (update_window): Mark invisible rows in the current
7963         matrix invalid.
7965         * xdisp.c (try_window_id): Force update of first row displayed
7966         at window end.
7967         (dump_glyph_matrix): Extracted from Fdump_glyph_matrix.
7969 1998-03-05  Gerd Moellmann  <gerd@gnu.org>
7971         * dispextern.h (struct glyph_row): Member max_ascent renamed
7972         ascent.  Member max_descent replaced by height.
7973         (struct display_iterator): Member max_descent replaced by height.
7974         (MATRIX_ROW_PIXEL_HEIGHT): Removed.
7976         * xterm.c (x_alloc_lighter_color): Don't free colors if visual
7977         class makes it unnecessary or dangerous.
7979         * xdisp.c (redisplay_window): Case only point has changed, and
7980         point has moved forward.  Move forward over overlay strings.
7981         (display_line): Don't set cursor if first glyph from PT is part of
7982         a continuation line.
7984 1998-02-21  Gerd Moellmann  <gerd@gnu.org>
7986         * xdisp.c (start_display): When computing continuation lines
7987         width, add current_x to the continuation lines width because
7988         move_iterator_to will stop in front of the buffer position moved
7989         to.
7991 1998-02-20  Gerd Moellmann  <gerd@gnu.org>
7993         * xdisp.c (redisplay_window): Don't try try_window_id if
7994         windows_or_buffers_changed.
7996         * xterm.c (x_alloc_lighter_color): Try both factor and delta to
7997         determine a color.
7998         (x_setup_relief_color): Allocate/ change one relief.
7999         (x_setup_relief_colors): Call above function.
8001         * xterm.h (struct relief): New structure type holding relief info:
8002         GCs, colors, and whether colors are allocated.
8004         * xterm.c (x_alloc_lighter_color): If multiplying by factor
8005         produces the same color, try adding a delta to RGB values.
8006         (x_setup_relief_colors): Free color cells.
8008         * xterm.h (struct x_output): New members white_relief_pixel,
8009         black_relief_pixel holding the foreground colors allocated for
8010         relief GCs.  New members white_allocated_p, black_allocated_p.
8012         * xterm.c (x_scroll_run): Don't set updated_window to null.
8013         This resets updated_window when called from scrolling_window.
8015         * dispextern.h (scroll_run_hook): Renamed from line_dance_hook.
8017         * xterm.c (x_scroll_run): Additional window parameter.  Set
8018         and reset updated_window.
8020         * dispnew.c (line_dance_hook): Additional window parameter.
8022         * xdisp.c (try_window_reusing_current_matrix): Don't call
8023         update_window_begin/end here.  The end function would display the
8024         cursor on a wrong position and the additional functionality of
8025         update_window_begin is not needed anyway.  Just set
8026         updated_window.
8027         (try_window_id): Ditto.
8029         * dispnew.c (Fblink_cursor): Remove call to detect_input_pending.
8030         Don't redraw cursor during redisplay.
8032         * xterm.c (x_scroll_run): Renamed from do_line_dance.
8034         * xdisp.c (redisplay_window): For window-based redisplay, alway
8035         try try_window_id.
8037         * xterm.c (struct glyph_string): New member two_byte_p that is
8038         non-zero if 16-bit drawing functions must be used.
8039         (x_fill_composite_glyph_string): Set it.
8040         (x_fill_glyph_string): Set it.
8041         (x_draw_glyph_string_foreground): Use it.
8042         (x_draw_vertical_border): Make line 1 pixel less tall.
8043         (x_draw_row_bitmaps): Decrease width of area cleared on the left
8044         side by 1 pixel if window is not right-most hasn't vertical scroll
8045         bars.
8046         (x_draw_phys_cursor_glyph): Do nothing if phys_cursor.hpos is
8047         out of bounds.
8048         (x_draw_glyph_string_foreground): Use XDrawImageStringX if
8049         hl == DRAW_CURSOR.
8051         * xdisp.c (start_display): Check that window start is at line
8052         start if GLYPH_DEBUG != 0.
8054         * window.c (window_scroll_pixel_based): Move assertion to
8055         start_display.
8057 1998-02-19  Gerd Moellmann  <gerd@gnu.org>
8059         * xterm.c (x_redraw_cursor): Don't redraw the cursor if the
8060         frame hasn't the focus.
8062         * window.c (make_window): Initialize dy.
8063         (replace_window): Ditto.
8065         * window.h (window): New member dy specifying the amount by which
8066         a window is scrolled "smoothly".
8068         * xterm.c (x_set_glyph_string_clipping): Don't use glyph string's
8069         y-position because it can be negative.
8070         (x_draw_row_bitmaps): Don't clear with negative y-position like
8071         above.
8072         (x_clear_end_of_line): Same theme as above.
8074         * xterm.c (x_alloc_nearest_color): Allocate a color or, if no
8075         exact match exists, the nearest existing color.  Patterned after
8076         defined_color.
8077         (x_alloc_lighter_color): Allocate a color that is lighter or
8078         darker than a given color by a specified factor.
8079         (x_setup_relief_colors): Set up relief line colors based on
8080         the background color of a glyph string face.
8081         (x_draw_glyph_string_relief): Call x_setup_relief_colors.
8083         * xfns.c (x_make_gc): Don't allocate relief GCs.
8084         * widget.c (create_frame_gcs): Don't allocate relief GCs.
8085         (setup_frame_gcs): Don't change relief GCs.
8087         * xterm.h (struct x_output): New member relief_background giving
8088         the background pixel color for which relief GCs can be used.
8089         Set by x_setup_relief_colors.
8091         * xterm.c (x_draw_glyph_string_relief): Draw relief differently
8092         for mode and menu lines.
8094         * xdisp.c (set_next_iterator_stop_pos): No longer static.
8096         * dispnew.c (direct_output_for_insert): Call
8097         set_next_iterator_stop_pos after having changed it2.endpos.
8099 1998-02-17  Gerd Moellmann  <gerd@gnu.org>
8101         * dispnew.c (update_window): Work on selected_window, only.
8103         * xterm.c (x_erase_phys_cursor): Return quickly if physical cursor
8104         hpos is >= number of glyphs in the cursor row.
8106         * xdisp.c (try_window_id): Bug fix; update_window_end was not
8107         called.
8109 1998-02-16  Gerd Moellmann  <gerd@gnu.org>
8111         * xdisp.c (init_iterator): Increase last_visible_x for mode lines
8112         and menu lines.
8114         * dispnew.c (allocate_matrices_for_window_redisplay): Allocate
8115         enough glyphs to display a mode line or menu line which draws over
8116         flags areas.
8118         * xterm.c (XTset_vertical_scroll_bar): Use
8119         WINDOW_DISPLAY_TEXT_AREA_PIXEL_HEIGHT instead of
8120         VERTICAL_SCROLL_BAR_PIXEL_HEIGHT.
8121         (x_draw_glyphs): Draw over flags areas when drawing a mode line
8122         or menu.
8123         (x_set_glyph_string_clipping): Set clipping differently if drawing
8124         a mode line or menu line.
8126         * xterm.h (VERTICAL_SCROLL_BAR_PIXEL_HEIGHT): Removed.
8128         * xterm.c (expose_line): Don't draw bitmaps for mode lines and
8129         menu lines.
8130         (x_scroll_bar_create): Don't clear flags areas.
8131         (x_draw_row_bitmaps): Clear visible row height, only.
8133         * dispnew.c (Fblink_cursor): Moved here from xdisp.c.
8135 1998-02-15  Gerd Moellmann  <gerd@gnu.org>
8137         * dispnew.c (direct_output_for_insert): When checking for tabs in
8138         the line, set it2.endpos to ZV.
8140         * window.h (struct window): New member cursor_off_p.
8141         * xterm.c (x_redraw_cursor): Implementation of redraw_cursor_hook
8142         for X.
8143         * dispnew.c (redraw_cursor_hook): If non-null, function that can
8144         be called to display or erase the cursor.
8145         * xdisp.c (Fblink_cursor): Blink the cursor of a specified window
8146         or selected_window.
8148         * xterm.h (text_cursor_kinds): Enumerators changed to uppercase.
8150         * dispnew.c (update_window_line): Special handling of inverse
8151         lines in #if 0 removed.
8153         * xterm.c (x_write_glyphs): Renamed from XTwrite_glyphs.
8154         (x_insert_glyphs): Renamed from XTinsert_glyphs.
8155         (x_clear_frame): Renamed from XTclear_frame.
8156         (x_clear_end_of_line): Renamed from XTclear_end_of_line.
8157         (x_ins_del_lines): Renamed from XTins_del_lines.
8158         (x_change_line_height): Renamed from XTchange_line_height.
8159         (x_delete_glyphs): Renamed from XTdelete_glyphs.
8160         (x_clear_cursor): Renamed from clear_cursor.
8161         (x_update_begin): Renamed from XTupdate_begin.
8162         (x_update_end): Renamed from XTupdate_end.
8163         (x_update_window_begin): Renamed from XTupdate_window_begin.
8164         (x_update_window_end): Renamed from XTupdate_window_end.
8165         (x_frame_mode_line_height): Renamed from XTframe_mode_line_height.
8166         (x_produce_glyphs): Renamed from XTproduce_glyphs.
8167         (x_produce_special_glyphs): Renamed from XTproduce_special_glyphs.
8168         (x_produce_special_glyphs): Implementation in #if 0 removed.
8170         * xdisp.c (Fdump_redisplay_state): Display row's fill_line_p
8171         flag in the dump.
8173         * dispnew.c (update_text_area): Handling of glyphs with pixel
8174         width zero removed.  Decrement desired stop pos if desired row
8175         fills its line.
8177         * xterm.c (x_fill_glyph_string): Handling of glyphs with pixel
8178         width zero removed.
8179         (BUILD_GLYPH_STRINGS): Set glyph string flag
8180         extends_to_end_of_line_p based on row's flag fill_line_p and face
8181         background and stipple.  Make sure it works for composite characters.
8183         * xdisp.c (extend_face_to_end_of_line): Set the glyph row flag
8184         fill_line_p.  For window-based redisplay, add a space only if
8185         the row is empty so that we know the face to draw.
8187         * dispextern.h (struct glyph_row): New flag fill_line_p.  Non-zero
8188         means draw the face of the last glyph in the text area to the
8189         right end of the text area.
8191         * xdisp.c (init_iterator): Show region in window mini-buffer
8192         window refers to.
8194         * dispextern.h (struct display_iterator): Redundant member
8195         region_showing_p removed.  Test for region_beg > 0 instead.
8197         * dispnew.c (update_text_area): Clear to end of line if cursor is
8198         beyond the end of the desired line.  Necessary because we don't
8199         have a phys_cursor_glyph with which to erase the cursor.  We don't
8200         have one because this method of drawing a cursor doesn't work with
8201         lbearing/rbearing.
8203         * xterm.c (XTinsert_glyphs): Block input.
8205 1998-02-14  Gerd Moellmann  <gerd@gnu.org>
8207         * xterm.c (x_set_cursor_gc): Don't use cursor_gc for composite
8208         glyph strings.
8209         (x_draw_glyph_string_background): Fill background with background
8210         pixel for the first glyph of a composite character.
8212         * xdisp.c (try_window): Change return type to int.  Value is zero
8213         if fonts were loaded during redisplay.
8214         (redisplay_window): Return if fonts have been loaded during
8215         redisplay.
8216         (append_space): New parameter default_face_p.
8218 1998-02-13  Gerd Moellmann  <gerd@gnu.org>
8220         * dispnew.c (adjust_glyph_matrix): In case of optimizing C-x 2,
8221         don't let a partially visible line in a current matrix stay
8222         enabled.
8224 1998-02-09  Gerd Moellmann  <gerd@gnu.org>
8226         * minibuf.c (read_minibuf): Put access to minibuffer_prompt_length
8227         in #if PROMPT_IN_BUFFER.
8229         * xdisp.c (display_line): If row ends in ZV, make the space
8230         that is added to place the cursor on it appear in default face.
8232         * xterm.c (expose_area): New function redrawing a single
8233         glyph row area.
8234         (expose_line): Use it to redraw all areas of a row.
8236         * dispextern.h (move_operation_enum): New enum
8237         move_operation_enum.
8239         * window.c (window_scroll_pixel_based): Remove now unnecessary
8240         code that made sure that it->current_y doesn't become negative.
8242         * xdisp.c (move_iterator_in_display_line_to): New parameter
8243         op.  Special meaning of to_pos <= 0 and to_x < 0 removed.
8244         (move_iterator_to): Ditto.
8246         * dispextern.h (struct glyph_matrix): New member window_width.
8248         * dispnew.c (adjust_glyph_matrix): Set window_width.  Optimize
8249         case of changing window height.
8251         * xterm.c (x_draw_row_bitmaps): Don't clear vertical window
8252         border to the left.
8254         * dispextern.h (struct glyph_row): Remove right_to_left_p.  RMS
8255         says this aspect of Emacs is currently redesigned.
8257         * xterm.c (x_clip_to_row): Subtract 1 from clip width if we
8258         have to draw a vertical border.
8260         * window.c (window_scroll_pixel_based): When scrolling down by
8261         screen-fulls, make sure it.current_y doesn't get negative because
8262         this would confuse move_iterator_vertically.
8264         * xdisp.c (move_iterator_vertically_backward): Bug fix for
8265         the case continuation lines are involved.
8266         (try_window_id): Don't set the cursor into scroll margins.
8268 1998-02-08  Gerd Moellmann  <gerd@gnu.org>
8270         * xterm.c (x_append_glyph): Don't compute left_overhang and
8271         right_overhang.
8272         (XTproduce_glyphs): left_overhang and right_overhang removed.
8273         Set it->glyph_row->contains_overlapping_glyphs_p.
8275         * xdisp.c (Fdump_redisplay_state): Output of glyph->left_overhang
8276         and right_overhang removed.
8278         * dispextern.h (struct glyph_row): New member
8279         contains_overlapping_glyphs_p used to optimize glyph drawing.
8280         (struct display_iterator): left_overhang and right_overhang
8281         removed.
8282         (struct glyph): Ditto.
8284         * xterm.c (x_draw_relief): Removed.
8285         (x_draw_bitmap): Renamed from draw_bitmap.
8286         (x_draw_glyphs): Completely new implementation of draw_glyphs
8287         capable of handling arbitrary lbearing and rbearing values.
8288         Several sub-functions not mentioned here.
8290 1998-01-30  Gerd Moellmann  <gerd@gnu.org>
8292         * xterm.c (x_erase_phys_cursor): Clear area under the cursor only
8293         if displaying hollow box cursor.  draw_glyphs should handle
8294         other cases.
8295         (draw_glyphs): Move start to the left and end to the right if they
8296         overlap with previous or following characters.
8297         (draw_glyphs): If background is cleared for hl == DRAW_CURSOR,
8298         make sure XDrawString uses function GXset.  Otherwise the
8299         character under the cursor would be invisible.
8300         (x_draw_bar_cursor): Don't draw over previous character if it
8301         has right_overhang.
8303         * window.c (get_phys_cursor_glyph): Return the glyph under a
8304         window's physical cursor.
8306         * xterm.c (x_draw_hollow_cursor): Use get_phys_cursor_glyph.
8307         (x_draw_bar_cursor): Ditto.
8308         (x_erase_phys_cursor): Ditto.
8309         (x_phys_cursor_in_rect_p): Ditto.
8310         (x_display_and_set_cursor): Remove reference to w->phys_cursor_glyph.
8312         * window.c (make_window): Remove reference to phys_cursor_glyph.
8313         (replace_window): Ditto.
8315         * window.h (struct window): Remove phys_cursor_glyph.  There is
8316         now always a glyph present for placing the cursor on it in
8317         each glyph row, even at the end of a line.
8319         * xdisp.c (append_space): Function to add a space to an iterators
8320         glyph row.
8321         (display_line): Add spaces at the end of lines that are used to
8322         place the cursor on them.
8323         (compute_line_metrics): If row consists of a space only that was
8324         added to place the cursor on it, use that space's height as the
8325         line height.
8327 1998-01-29  Gerd Moellmann  <gerd@gnu.org>
8329         * xdisp.c (Fdump_redisplay_state): Dump left and right overhang of
8330         glyphs.
8332 1998-01-28  Gerd Moellmann  <gerd@gnu.org>
8334         * xterm.c (x_append_glyph): Set overhang of glyph from iterator.
8335         (XTproduce_glyphs): Set it->left_overhang and it->right_overhang.
8337         * dispextern.h (struct glyph): Add left_overhang and
8338         right_overhang.
8339         (struct display_iterator): Ditto.
8341         * dispnew.c (direct_output_for_insert): Give up if newly inserted
8342         glyphs have different ascent or descent than original row.
8344         * xdisp.c (compute_line_metrics): Compute row->max_ascent and
8345         row->max_descent only if unknown.
8346         (display_line): Compute row->max_ascent and row->max_descent.
8347         (display_string): Ditto.
8349         * window.h (struct window): New members phys_cursor_ascent and
8350         phys_cursor_descent.
8352         * xterm.c (x_phys_cursor_in_rect_p): Use them.
8353         (x_draw_hollow_cursor): Ditto.
8354         (x_erase_phys_cursor): Ditto.
8355         (x_display_and_set_cursor): Set them.
8356         (x_append_glyph): Don't set glyph members that were removed.
8358         * dispextern.h (struct glyph): Members ascent, descent,
8359         contributes_to_line_height_p removed.
8361 1998-01-25  Gerd Moellmann  <gerd@gnu.org>
8363         * dispextern.h (DEFAULT_FACE_ID, MODE_LINE_FACE_ID): Symbolic
8364         names for face ids of frame default face and mode line face.
8366         * xdisp.c (compute_face_at_iterator_string_position): If
8367         displaying a mode line use MODE_LINE_FACE_ID instead of
8368         DEFAULT_FACE_ID.
8370         * xdisp.c (reseat_iterator_to_string): Additional parameter start.
8371         (display_string): Ditto, additional parameter lisp_string.
8372         (display_line): Call display_string with Lisp mini-buffer prompt
8373         string.
8374         (display_menu_bar): Call display_string with Lisp string.
8375         (display_mode_element): Ditto.
8376         (next_element_from_string): Make it work for non-overlay Lisp
8377         strings with field width and precision.
8379         * minibuf.c (minibuffer-prompt-in-buffer): Bound if
8380         PROMPT_IN_BUFFER.
8382         * xfaces.c (compute_string_char_face): Fix face computation
8383         for overlay strings.
8385         * xdisp.c (struct overlay_entry): Add member after_string_p.
8386         (load_overlay_strings): Simplify.
8388         * window.c (delete_window): Defer glyph matrix adjustment.
8389         (Fsplit_window): Ditto.
8390         (change_window_height): Ditto.
8391         (Fset_window_configuration): Ditto.
8392         (Fset_window_margins): Ditto.
8393         * frame.c (set_menu_bar_lines): Ditto.
8394         (Fmake_terminal_frame): Ditto.
8395         * dispnew.c (change_frame_size_1): Ditto.
8397 1998-01-24  Gerd Moellmann  <gerd@gnu.org>
8399         * xdisp.c (move_iterator_vertically_backward): Change algorithm.
8401         * dispnew.c (direct_output_for_insert): Give up if start
8402         position has overlay strings.
8404         * xdisp.c (display_line): Don't set cursor if row ends in middle
8405         of overlay string.
8406         (Fdump_redisplay_state): Print complete row start and end
8407         position.
8408         (redisplay_window): Cursor movement when matrix hasn't changed---
8409         if PT < last_point, maybe move forward if row ends at PT and
8410         in middle of char.
8412         * minibuf.c (read_minibuf): Save the value of
8413         minibuffer_prompt_length in minibuf_save_list.
8414         (read_minibuf_unwind): Restore minibuffer_prompt_length.
8416         * xdisp.c (redisplay_window): Add assertion for cursor movement
8417         case, PT < last_point.
8418         (move_iterator_in_display_line_to): If to_pos specified, move
8419         over before-strings.
8421         * dispextern.h (MATRIX_ROW_STARTS_IN_MIDDLE_OF_CHAR_P): Test
8422         start.string_index > 0.
8424         * xdisp.c (redisplay_internal): Adjust glyphs if fonts_changed_p
8425         is set.  Retry redisplay if fonts_changed_p is set before update.
8427         * xterm.c (x_load_font): Set fonts_changed_p.
8429         * xfaces.c (Fset_face_attribute_internal): Set fonts_changed_p.
8431         * dispnew.c (adjust_glyphs_for_font_change): Removed.
8433         * xdisp.c (try_window): Check fonts_changed_p.
8434         (try_window_reusing_current_matrix): Ditto.
8435         (try_window_id): Ditto.
8437         * dispnew.c (adjust_glyphs_for_font_change): Set fonts_changed_p.
8438         (fonts_changed_p): Flag indicating a font change since the last
8439         glyph matrix adjustment.
8441         * xterm.c (x_per_char_metric): Use font->max_bounds as
8442         char metric of the font's default char if the default char
8443         hasn't per char metric itself.
8445         * xfaces.c (Fset_face_attribute_internal): Adjust glyphs
8446         for font change.
8447         (min_char_bounds): Check face->font != NULL.
8448         (font_min_bounds): Return minimum font metrics.  Capture the
8449         case of invalid min_bounds contents.
8450         (min_char_bounds): Call font_min_bounds.
8452 1998-01-22  Gerd Moellmann  <gerd@gnu.org>
8454         * xdisp.c (start_display): Don't set it->prompt_width if
8455         PROMPT_IN_BUFFER.
8456         (move_iterator_in_display_line_to): Ditto.
8457         (display_line): Don't display prompt via display_string if
8458         PROMPT_IN_BUFFER.
8460         * minibuf.c (Fminibuffer_prompt_width): Return value from
8461         current_buffer if PROMPT_IN_BUFFER.
8462         (read_minibuf): If PROMPT_IN_BUFFER, insert prompt into
8463         mini-buffer and make it read-only.
8464         (Fminibuffer_complete_and_exit): If PROMPT_IN_BUFFER, use
8465         minibuffer_prompt_length instead of BEGV.
8466         (Fminibuffer_complete_word): Ditto.
8467         (Fminibuffer_complete_word): Ditto.
8469         * insdel.c (del_range_1): If PROMPT_IN_BUFFER, and start position
8470         is less than mini-buffer prompt width, use prompt width as start.
8472         * editfns.c (make_buffer_string): If PROMPT_IN_BUFFER, and start
8473         position is less than mini-buffer prompt width, use the prompt
8474         width as start.
8476         * cmds.c (Fbeginning_of_line): If PROMPT_IN_BUFFER, set point to
8477         end of prompt if applied to a mini-buffer and BEG reached.
8479 1998-01-21  Gerd Moellmann  <gerd@gnu.org>
8481         * editfns.c (make_buffer_string): If PROMPT_IN_BUFFER, add prompt
8482         length to start position.
8484         * buffer.c (Fget_buffer_create): Initialize
8485         minibuffer_prompt_length.
8486         (Fmake_indirect_buffer): Ditto.
8487         (Fkill_buffer): Ditto.
8489         * buffer.h (struct buffer): Add member minibuffer_prompt_length
8490         if PROMPT_IN_BUFFER.
8492 1998-01-19  Gerd Moellmann  <gerd@gnu.org>
8494         * xdisp.c (next_element_from_string): Make it work for arbitrary
8495         Lisp strings.
8496         (set_iterator_to_next): Advance to next overlay string only
8497         if it->string is an overlay string.
8499         * dispextern.h (struct display_iterator):
8500         next_ovstr_face_check_pos renamed next_string_face_check_pos.
8502         * xfaces.c (compute_string_char_face): Compute face for
8503         arbitrary Lisp string.  Renamed from compute_overlay_string_char_face.
8505         * xdisp.c (next_element_from_string): Renamed from
8506         next_element_from_overlay_string.
8507         (compute_face_at_iterator_string_position): Renamed from
8508         compute_face_at_iterator_overlay_string_position.
8510         * dispextern.h (struct display_iterator): Member overlay_string
8511         renamed string.
8513         * xdisp.c (next_element_from_c_string): Renamed from
8514         next_element_from_string.
8516         * dispextern.h (struct glyph_pos): Reversed meaning of
8517         overlay_string_index and string_index.
8519         * xdisp.c (next_element_from_overlay_string): Fix bug that made
8520         this function always return the first character of an overlay
8521         string.
8523 1998-01-18  Gerd Moellmann  <gerd@gnu.org>
8525         * xdisp.c (reseat_iterator): Set next_invisible_check_pos only if
8526         forced or new pos > next_invisible_check_pos.
8527         (redisplay_window): Don't try same window start if PT < window
8528         start.
8529         (move_iterator_vertically): Bug fix satisfying post-condition
8530         when ZV is reached and no newline in front.
8531         (move_iterator_vertically_backward): New implementation.
8532         (move_iterator_vertically_backward): Bug fixes.
8534         * xterm.c (XTmouse_position): Change call to min_char_bounds.
8535         * dispnew.c (adjust_frame_glyphs_for_window_redisplay): Ditto.
8536         (adjust_glyphs_for_font_change): Always adjust.
8538         * dispnew.c (struct dim): Use int.
8540         * xfaces.c (Fset_face_attribute_internal): Set face->font_name;
8541         (allocate_face): Initialize it.
8542         (load_font): Use XLoadQueryFont again instead of x_load_font.
8543         (unload_font): Use XFreeFont again.
8544         (min_char_bounds): Iterate over fonts of faces.  Use frame's
8545         font sizes as default.  Remove parameter except_last_font_p.
8547         * dispextern.h (struct face): Add font_name.
8549 1998-01-17  Gerd Moellmann  <gerd@gnu.org>
8551         * xdisp.c (move_iterator_vertically): Check post-condition.  Move
8552         to start of line if ending at ZV and no newline in front.
8553         (move_iterator_to): If to_y specified, always first move to x = 0,
8554         so that move stops at line start instead of line end.  This is
8555         probably what callers would expect to happen.
8557         * window.c (window_scroll_pixel_based): Pixel-based scrolling that
8558         can handle different line heights.
8559         (window_scroll_line_based): Formerly window_scroll.
8560         (window_scroll): Call both.
8562         * xdisp.c (start_display): Exclude code if PROMPT_IN_BUFFER.
8563         (move_iterator_in_display_line_to): Ditto.
8564         (display_line): Ditto.
8566         * minibuf.c (read_minibuf): Conditionally insert prompt into
8567         buffer instead of handling prompts specially.  Change other
8568         functions accordingly.  All such code is in #if PROMPT_IN_BUFFER.
8570         * dispnew.c (adjust_glyph_matrix): Optimize the handling of C-x 2,
8571         upper window.  Optimize calls to xrealloc if same width.
8573         * xdisp.c (redisplay_window): Don't use
8574         try_window_reusing_current_matrix if window scroll functions
8575         exist.
8577         * dispextern.h (struct display_iterator): Member
8578         redisplay_end_trigger_p removed.
8580         * dispextern.h (WINDOW_DISPLAY_PIXEL_HEIGHT_WITHOUT_MODE_LINE):
8581         Renamed to WINDOW_DISPLAY_TEXT_AREA_PIXEL_HEIGHT.
8583 1998-01-16  Gerd Moellmann  <gerd@gnu.org>
8585         * xdisp.c (move_iterator_by_lines): Optimize for truncate-lines
8586         nil.  Optimize truncate-lines t and moving backward.
8587         (move_iterator_to_previous_visible_line_start): Contains the heart
8588         of the previous set_iterator_to_previous_visible_line_end.  Don't
8589         reseat the iterator.  Used by move_iterator_by_lines.
8590         (set_iterator_to_previous_visible_line_start): Call function
8591         above.
8592         (move_iterator_in_display_line_to): Check TO_POS before doing
8593         anything else.  Otherwise to_pos == PT would move to x of PT+1.
8595         * indent.c (Fvertical_motion): Use display_iterator.
8597         * xdisp.c (move_iterator_by_lines): New function moving by screen
8598         lines.
8599         (redisplay_window): Use it.
8600         (move_iterator_to): Correct branch of to_vpos specified.
8601         (move_iterator_vertically_backward): Increment nlines after having
8602         backed up over some lines because the last line was not backed up
8603         over.
8604         (move_iterator_via_matrix): Look for it->pos in the matrix, and
8605         calculate it->vpos and it->current_y relative to this row.
8606         (move_iterator_via_matrix): Set in #if 0.  It doesn't seem to
8607         have a big effect and it is complex.
8608         (move_iterator_to): Call to move_iterator_via_matrix in #if 0.
8610 1998-01-15  Gerd Moellmann  <gerd@gnu.org>
8612         * xterm.c (x_draw_relief): Simplify drawing and draw so that lines
8613         join nicely.  Lines with widths > 2 don't join nicely under X.
8614         * xterm.h (struct x_output): Remove member relief_gc_line_width.
8615         * widget.c (setup_frame_gcs): Initialize relief GC's to line
8616         width 1; remove references to relief_gc_line_width.
8617         * xfns.c (x_make_gc): Ditto.
8619         * xfaces.c (Fset_face_attribute_internal): Set frame garbaged
8620         if relief changes.
8621         (Fset_face_attribute_internal): Use XINT instead of XFASTINT
8622         to get a relief because they can be negative.
8624         * xterm.c (x_draw_relief): Correct line drawing positions.  Pixel
8625         positions are for the middle of lines under X.
8627         * xdisp.c (try_window_id): Always search for the cursor by setting
8628         w->cursor.vpos = -1.  Search in unchanged rows at the top and
8629         bottom if cursor not found in displayed lines.
8630         (display_mode_line): First extend face, then set right shadow
8631         flag.  Otherwise the wrong glyph gets the right shadow.
8633         * dispnew.c (direct_output_for_insert): Give up if line contains
8634         a tab.  The number of spaces inserted for a tab changes if we
8635         insert glyphs in front of it.
8637         * xterm.c (x_list_fonts): Changes undone because the Lisp
8638         implementation for make-face-smaller, make-face-larger, and
8639         make-face-fixed can do without them.
8641         * xfns.c (Fx_list_fonts): Original x-list-fonts from x-list-font.c
8642         inserted.
8644         * xdisp.c (try_window_id): First compute beg_unchanged, then
8645         compare with window start pos.
8647         * xfns.c (Fx_face_fixed_p): Determine whether a face has a
8648         fixed-width font.
8649         (syms_of_xfns): defsubr for x-face-fixed-p.
8651         * xterm.c (x_erase_phys_cursor): If row containing cursor is not
8652         enabled, don't do anything because this row will be newly drawn
8653         anyway and because we can additionally no longer determine the row
8654         height.
8656         * xdisp.c (display_line): Bug fix cursor positioning.
8658         * xfns.c (x-list-fonts): Copied from x-list-fonts.c; #include
8659         removed.  x-list-fonts.c is now obsolete.
8660         (Qfixed, Qvariable): Moved here from xfaces.c.
8662 1998-01-14  Gerd Moellmann  <gerd@gnu.org>
8664         * xdisp.c (display_line): Set row->ends_at_zv_p based on
8665         FETCH_BYTE for truncated lines.
8666         (display_line): Set cursor differently.
8667         (display_line): Fixed bug setting last_pos_on_this_line wrong
8668         for truncated lines.
8670         * dispnew.c (adjust_glyph_matrix): Always adjust for frame-based
8671         redisplay.
8673         * window.c (Fsplit_window): Adjust glyphs before setting buffer.
8675         * dispnew.c (adjust_frame_glyphs_for_window_redisplay): Add
8676         assertion that character dimensions are not zero.
8678         * xterm.c (x_load_font): adjust_glyphs_for_font_change while
8679         input is blocked.
8681         * xdisp.c (decode_mode_spec): Faster implementation of line number
8682         display.
8684         * xterm.c (x_draw_row_bitmaps): Clear flags area before drawing
8685         bitmaps if bitmaps don't fill the entire area.
8686         (draw_bitmap): Draw bitmaps horizontally centered in flags area.
8688         * xterm.h (FRAME_FLAGS_BITMAP_HEIGHT): Macro giving the
8689         pixel height of flags bitmaps.
8691         * frame.h (FRAME_FLAGS_AREA_COLS): Use FRAME_X_FLAGS_AREA_COLS.
8692         (FRAME_FLAGS_AREA_WIDTH): Ditto.
8694         * xterm.h (FRAME_FLAGS_BITMAP_WIDTH): Macro giving the width
8695         in pixels of a flags area of a frame.
8696         (FRAME_X_FLAGS_AREA_WIDTH): Removed.
8697         (FRAME_X_FLAGS_AREA_COLS): Macro giving the number of columns
8698         occupied by a flags area.
8700 1998-01-13  Gerd Moellmann  <gerd@gnu.org>
8702         * xdisp.c (hscroll_window_tree): Remove test for non-nil
8703         window_end_valid.
8705         * dispnew.c (adjust_glyph_matrix): Check redisplay_p if
8706         GLYPH_DEBUG != 0.
8708         * xdisp.c (display_line): Correct wrong calculation of row->x for
8709         the case of nglyphs == 1.
8710         (hscroll_window_tree): Renamed from hscroll_windows.
8711         (hscroll_windows): New function calling hscroll_window_tree that
8712         clears desired matrices on a frame when hscroll has been changed.
8713         (redisplay_p): Global flag set during redisplay.
8714         (redisplay_internal): Set and clear redisplay_p.
8716         * xfaces.c (min_char_bounds): Add assertion that width and height
8717         are not zero at the end.  Initialize *height and *width to -1,
8718         instead of using BITS_PER_SHORT.  If font has min_bounds.width
8719         zero, use its max_bounds.width.
8721         * x-list-font.c (Fx_list_fonts): Check INTEGERP or FLOATP for
8722         width and height.
8724 1998-01-12  Gerd Moellmann  <gerd@acm.org>
8726         * dispnew.c (adjust_glyph_matrix): Do nothing if sizes haven't
8727         changed.  Don't clear desired matrices.
8729         * xdisp.c (hscroll_windows): Compute pt after setting
8730         current_buffer.
8731         (redisplay_window): Don't do cursor movement based on current
8732         matrix if just_this_one_p is zero.
8734         * x-list-font.c (Fx_list_fonts): Additional parameter fixed.
8735         specifying that fixed-width, variable-width fonts or both
8736         should be returned.
8738         * xfaces.c (Qfixed, Qvariable): Symbols for use by x-list-fonts.
8739         (syms_of_xfaces): Initialize them.
8741         * xterm.c (x_list_fonts): Include auto-scaled fonts.  Extend
8742         cached information.
8744 1998-01-11  Gerd Moellmann  <gerd@acm.org>
8746         * xdisp.c (display_mode_line): Extend face to end of line.
8748         * xdisp.c (echo_area_display): Don't call display_string with
8749         echo_area_glyphs_length == 0 which would mean infinite precision.
8750         (redisplay_internal): Adjust window_end_vpos if necessary.
8752 1998-01-07  Gerd Moellmann  <gerd@acm.org>
8754         * xdisp.c (display_line): Set it->ends_at_zv_p differently.
8756 1998-01-05  Gerd Moellmann  <gerd@acm.org>
8758         * xdisp.c (get_row_start_continuation_line_width): Removed.
8759         (init_iterator_to_row_start): Set it.current_x from row.
8760         (try_window_id): Set it.continuation_lines_width directly from
8761         row.
8763         * xdisp.c (hscroll_windows): Use w->pointm if window is not
8764         selected_window.
8765         (hscroll_windows): Center cursor in window.
8766         (hscroll_windows): Call move_iterator_in_display_line_to.
8768 1998-01-04  Gerd Moellmann  <gerd@acm.org>
8770         * xdisp.c (hscroll_windows): Check hscroll < 0.
8771         (redisplay_window): Allow quick cursor movement if overlay arrow
8772         but frame uses window-based redisplay.
8773         (display_line): Take special case for nglyphs == 1 out of #if 0.
8774         (display_line): Set row->ends_at_zv_p after the loop displaying
8775         glyphs because ZV can be in truncated text.
8776         (hscroll_windows): Use init_iterator_to_row_start.
8778         * dispnew.c (scrolling_window): Calculation of overlapping
8779         runs fixed.
8780         (row_equal_p): Compare continued_p and continuation_line_p.
8782 1998-01-02  Gerd Moellmann  <gerd@acm.org>
8784         * xterm.c (x_get_mode_line_face_gc): Renamed from
8785         x_get_modeline_face_gc.
8787         * xdisp.c (TEXT_PROP_DISTANCE_LIMIT): Max. distance from current
8788         buffer position to look for text properties.
8789         (get_face_from_cursor_pos): Use it.
8790         (compute_face_at_iterator_position): Use it.
8791         (next_element_from_buffer): Use it.
8793         * dispnew.c (scrolling_window): Decrement run's y-position
8794         when extending it backwards.
8796         * xterm.c (do_line_dance): Don't ever copy more than window height.
8798 1998-01-01  Gerd Moellmann  <gerd@acm.org>
8800         * xdisp.c (redisplay_window): Cursor motion in unchanged
8801         matrix---use MATRIX_ROW_.*_IN_MIDDLE_OF_CHAR_P.
8802         (init_iterator_to_next_row_start): Special handling of lines
8803         ending in middle of char removed.
8804         (hscroll_windows): Hscroll windows only if window_end_valid is not
8805         nil.
8806         (try_window_reusing_current_matrix): Call hscroll_windows.
8807         (init_iterator_to_row_start): Initialize iterator for display
8808         starting at a position given by a glyph_row->start.
8809         (redisplay_window): Don't use vmotion because it gives wrong
8810         results if lines are continued and variable width fonts are used.
8812         * dispextern.h (struct glyph_pos): New member dpvec_index.
8813         (MATRIX_ROW_ENDS_IN_MIDDLE_OF_CHAR_P): Test if row ends in the
8814         the middle of a character.
8815         (MATRIX_ROW_STARTS_IN_MIDDLE_OF_CHAR_P): Test if row starts in
8816         the middle of a character.
8818         * xdisp.c (set_iterator_to_next): Increment it->dpvec_index, reset
8819         it.
8820         (next_element_from_display_vector): Use it->dpvec_index.
8821         (reseat_iterator): Reset it.
8822         (init_iterator): Reset it.
8823         (setup_iterator_dpvec_from_glyph_pos): Set up it->dpvec and
8824         it->pos.dpvec_index from a glyph_pos structure.
8825         (init_iterator_from_glyph_pos): Call the function above.
8826         (reseat_iterator_to_glyph_pos): Ditto.
8828         * dispnew.c (direct_output_forward_char): Don't use this method at
8829         overlay boundaries or near invisible text.
8830         (direct_output_forward_char): Step through glyph row to find
8831         cursor position.
8833         * xterm.c (x_get_cursor_gc): Don't return cursor_gc for font ==
8834         frame font if line height differs from font height.
8836         * xdisp.c (set_iterator_to_next): Renamed from
8837         move_iterator_forward to avoid confusion with other move_.*
8838         functions.
8840         * dispextern.h (FACE_RELIEF_P): Renamed from FACE_3D_P.
8842 1997-12-31  Gerd Moellmann  <gerd@acm.org>
8844         * xterm.c (x_get_cursor_gc): Renamed from x_cursor_gc to use the
8845         same naming convention as for other GC functions.
8846         (draw_glyphs): Don't fill background when drawing a cursor and
8847         font height is less than line height.
8849 1997-12-30  Gerd Moellmann  <gerd@acm.org>
8851         * xdisp.c (init_display_iterator.*): Renamed to shorter names
8852         init_iterator_.*.
8854         * xdisp.c (move_iterator_forward): Restore it->len from
8855         it->dpvec_char_len if dpend reached.
8856         (get_next_display_element): Don't consume translated char
8857         prematurely.
8858         (display_line): Don't set this_.* variables if row is continued.
8859         (start_display): Move to start of continuation line if ending
8860         up at end of continued line.
8862         * dispextern.h (struct display_iterator): New member dpvec_char_len.
8864         * xdisp.c (move_iterator_in_display_line_to): Check TO_POS after
8865         checking TO_X and continuation lines.
8866         (get_last_unchanged_at_beg_row): If first_changed_pos is the end
8867         of a continued line, don't consider this line as unchanged because
8868         it may no longer be continued.
8870 1997-12-29  Gerd Moellmann  <gerd@acm.org>
8872         * xdisp.c (try_window_id): Catch the case that moving over
8873         continuation lines moves first_unchanged_at_end_row to a row not
8874         displaying text.
8876         * dispextern.h (struct glyph_row): New member
8877         continuation_lines_width.  Member continuation_line_p removed.
8878         (MATRIX_ROW_CONTINUATION_LINE_P): Non-zero if row displays a
8879         continuation line.
8880         * xdisp.c (display_line): Set row->continuation_lines_width.
8881         (get_row_start_continuation_line_width): Set continuation lines
8882         width of iterator from continuation lines width of glyph row.
8883         (get_row_start_continuation_line_width): Make it inline.
8884         (set_window_cursor): Make it inline.
8885         (try_window_id): Use MATRIX_ROW_CONTINUATION_LINE_P.
8886         (Fdump_redisplay_state): Ditto.
8888         * dispnew.c (update_window_line): Use MATRIX_ROW_CONTINUATION_LINE_P.
8889         * xterm.c (x_draw_row_bitmaps): Use MATRIX_ROW_CONTINUATION_LINE_P.
8891         * xdisp.c (try_window_id): Set it.hpos and it.current_x to zero
8892         after determining the continuation lines width for
8893         last_unchanged_at_beg_row.
8895         * xterm.c (x_draw_row_bitmaps): Let overlay arrow have precedence.
8897         * xdisp.c (display_mode_line): Handle 3D faces only on frames
8898         which support faces.
8899         (init_display_iterator): Ditto.
8900         (move_iterator_via_matrix): Skip over truncation glyph at the row
8901         start on terminal frames.
8902         (hscroll_windows): Choose hscroll margin differently for window
8903         system and terminal frames.
8905 1997-12-28  Gerd Moellmann  <gerd@acm.org>
8907         * xdisp.c (hscroll_windows): Change hscroll of windows.
8908         (redisplay_internal): Call it.
8910         * dispnew.c (direct_output_for_insert): Give up if a glyph
8911         doesn't fit completely on the line.
8912         (direct_output_forward_char): Give up for non-ASCII chars.
8913         (direct_output_forward_char): Set redisplay_performed_directly_p.
8915         * dispextern.h (struct display_iterator): Make first_visible_x
8916         and last_visible_x ints; this is for very long truncated lines.
8918         * xdisp.c (move_iterator_in_display_line_to): Separate check for
8919         MOVE_X_REACHED only if it->nglyphs == 0.  This fixes cursor
8920         positioning problems with the mouse.
8921         (move_iterator_in_display_line_to): Truncate lines if it->current_x
8922         >= it->last_visible_x instead of >.
8923         (display_line): Ditto.
8925         * xterm.c (draw_glyphs): Draw rectangles if font could not be
8926         loaded.
8927         (XTproduce_glyphs): Calculate pixel_width for composite chars and
8928         non-ASCII chars differently.  Always produce 1 glyph for composite
8929         chars.  If font not found, use CHARSET_WIDTH to calculate width of
8930         non-ASCII chars.
8931         (x_get_char_font_and_encoding): Return null if font could not be
8932         loaded.  Reset font to null if fontset could not be loaded.
8933         (draw_glyphs): Fill background if font not found.
8934         (draw_glyphs): Unused parameter just_foreground_p removed. New
8935         parameter composite_glyph.
8936         (draw_glyphs): Use enumeration for parameter hl.
8937         (draw_glyphs): Pass a display area relative x-position to
8938         draw_glyphs when calling it recursively for composite chars.
8940 1997-12-27  Gerd Moellmann  <gerd@acm.org>
8942         * xterm.c: Patches from handa.etl.go.jp integrated.
8943         (draw_glyphs): Don't rely on x_get_char_font_and_encoding to
8944         find a font_info.
8946         * xdisp.c (move_iterator_in_display_line_to): Check to_x
8947         for nglyphs == 1.
8949         * xterm.c (x_draw_relief): Draw relief lines.
8950         (draw_glyphs): Call x_draw_relief.
8952 1997-12-26  Gerd Moellmann  <gerd@acm.org>
8954         * xfns.c (x_make_gc): Create relief GC's.
8956         * widget.c (create_frame_gcs): Create GC's for relief drawing.
8957         (setup_frame_gcs): Initialize them.
8958         (EmacsFrameDestroy): Free them.
8960         * xdisp.c (try_window_id): Get continuation lines width if
8961         last_unchanged_at_beg_row is continued or a continuation line.
8962         (move_iterator_via_matrix): Don't do it for mini-buffer windows.
8963         (redisplay_window): Case point has changed, and it has not
8964         moved off the frame.  Don't increment row if PT equals the row
8965         end if the row ends in ZV.
8967         * xterm.c (x_draw_row_bitmaps): New function to draw bitmaps.
8968         (expose_line): Call it.
8969         (x_after_update_window_line): Call it.
8971         * xdisp.c (display_line): Reset continuation_lines_width when ZV
8972         reached.
8974         * xterm.c (x_after_update_window_line): Draw continuation line
8975         bitmap.
8977         * dispnew.c (update_window_line): Call
8978         after_update_window_line_hook when row's continuation_line_p
8979         changes.
8981         * xterm.c (draw_bitmap): Draw new bitmap CONTINUATION_LINE_BITMAP.
8983         * xdisp.c (display_line): Handle continued lines on window system
8984         frames differently since continuation glyphs are not displayed.
8985         (move_iterator_in_display_line_to): Ditto.
8986         (move_iterator_in_display_line_to): Take the mini-buffer prompt
8987         into account.
8988         (move_iterator_vertically_backward): Handle dy == 0 specially.
8989         (redisplay_window): Catch the case of small windows when
8990         recentering where moving back window_height/2 moves us beyond the
8991         top of the display area of the window.
8993 1997-12-18  Gerd Moellmann  <gerd@acm.org>
8995         * xdisp.c (move_iterator_vertically_backward): Unused parameter
8996         dvpos removed.
8998 1997-12-17  Gerd Moellmann  <gerd@acm.org>
9000         * dispnew.c (direct_output_forward_char): Correct new cursor
9001         x-position.
9003 1997-12-16  Gerd Moellmann  <gerd@acm.org>
9005         * xterm.c (x_after_update_window_line): Remove unused parameters.
9006         (XTclear_end_of_line): Clear to display_height instead of
9007         display_height - 1.
9009         * dispnew.c (set_frame_matrix_frame): Make it INLINE.
9010         (update_window_line): Call after_update_window_line_hook if
9011         rows have different y-positions, or different height.
9013 1997-12-14  Gerd Moellmann  <gerd@acm.org>
9015         * frame.h (FRAME_MODE_LINE_PIXEL_HEIGHT): Removed.
9017         * window.c (coordinates_in_window): Call frame_mode_line_height.
9019         * xterm.c (x_draw_3d_border): Removed.
9020         (x_draw_row_borders): Removed.
9022         * dispnew.c (update_window): References to
9023         FRAME_MODE_LINE_BORDER_WIDTH removed.
9025         * xterm.h (FRAME_MODE_LINE_BORDER_WIDTH): Removed.
9026         (FRAME_MODE_LINE_HEIGHT): Removed.
9028         * xterm.c (draw_3d_borders_p): Removed.
9029         (draw_glyphs): Ditto.
9030         (XTwrite_glyphs): Ditto.
9031         (expose_line): Ditto.
9032         (x_initialize): Ditto.
9034         * dispextern.h (WINDOW_DISPLAY_MODE_LINE_HEIGHT): Call
9035         frame_mode_line_height.
9037         * term.c (frame_mode_line_height): Get the pixel height of a
9038         frame's mode line.
9039         (frame_mode_line_height_hook): Hook to implement system dependent
9040         versions.
9042         * xterm.c (x_initialize): Set the hook.
9043         (XTframe_mode_line_height): X version of frame_mode_line_height.
9045         * xdisp.c (echo_area_display): Call gobble_input to flush the X
9046         output buffer.
9047         (display_string): Don't add right truncation mark if line ends in
9048         padding space.
9049         (init_display_iterator): If called with modeline_p non-zero, set
9050         face_id to 1, which is the id of the mode line face.
9052         * keyboard.c (cmd_error_internal): Write to stderr if selected
9053         frame is Vterminal_frame under X.  This is the case when a font
9054         cannot be loaded when Emacs starts.  Replace test for
9055         FRAME_MESSAGE_BUF with test for glyphs_initialized_p.
9057         * xfaces.c (compute_overlay_string_char_face): Compute the
9058         face of a character in an overlay string.
9059         * xterm.h (compute_overlay_string_char_face): Prototype.
9060         * xdisp.c (compute_face_at_iterator_overlay_string_position):
9061         Use it.
9063         * xdisp.c (set_iterator_to_next_overlay_string): Formerly
9064         set_iterator_to_next_overlay.
9065         (struct overlay_entry): Structure used to sort overlay strings.
9066         (compare_overlay_entries): Compare overlay strings.
9067         (load_iterator_with_overlay_strings): Load a chunk of overlay
9068         strings.
9069         (get_overlay_strings_at_iterator_position): Call it.
9070         (next_element_from_overlay_string): Set it->object to the overlay
9071         string.  Prepare for setting it->position to a string position.
9072         (get_overlay_strings_at_iterator_position): Renamed from
9073         get_overlays_at_iterator_position.
9074         (setup_iterator_overlay_strings_from_glyph_pos): Changed to load
9075         chunks of overlay strings.
9076         (load_overlay_strings): Renamed from load_iterator_overlay_strings.
9078         * dispextern.h (struct display_iterator): New vector
9079         overlay_strings and new member n_overlay_strings---formerly
9080         overlays and n_overlays.
9081         (struct glyph_pos): Remove after_string_p; overlay_index
9082         renamed to string_index.
9084 1997-12-13  Gerd Moellmann  <gerd@acm.org>
9086         * xdisp.c (copy_iterator): Increment n_iterator_overlay_vectors
9087         when allocating a vector.
9088         (release_iterator): Removed.
9089         (restore_iterator): Removed.
9090         (copy_iterator): Removed.
9092 1997-12-08  Gerd Moellmann  <gerd@acm.org>
9094         * xdisp.c (redisplay_window): Use make_empty_enabled_row for
9095         clearing a mini-buffer window that is not active.
9096         (redisplay_window): Do not scroll one line too early when last
9097         window line is completely visible.
9098         (init_display_iterator): Leave some room to display the cursor
9099         after the last glyph on a continued line.
9101         * xterm.h (struct x_output): trunc_area_extra renamed
9102         flags_areas_extra.
9103         (FRAME_X_FLAGS_AREA_WIDTH): Renamed from FRAME_X_TRUNC_WIDTH.
9105         * dispnew.c (update_window_line): Call
9106         after_update_window_line_hook when current row is not enabled
9107         which is the case after a frame has been cleared.
9109         * xdisp.c (display_mode_line): Reset row flags for truncation
9110         on right side for the mode line.
9112         * xterm.c (bitmap_type): Type of bitmap to display in flags
9113         area of frame.
9114         (x_after_update_window_line): Use the enum.
9115         (draw_bitmap): Ditto.
9117 1997-12-07  Gerd Moellmann  <gerd@acm.org>
9119         * xterm.c (x_clip_to_row): Include width of both flag areas.
9120         (do_line_dance): Ditto.
9121         (expose_window_tree): Ditto.
9122         * dispnew.c (update_window_line): Call
9123         after_update_window_line_hook for right truncation and continuation.
9124         * xdisp.c (init_display_iterator): Don't subtract width of
9125         continuation glyphs for window-based redisplay.
9126         * xterm.c (draw_bitmap): Draw continuation bitmap.
9127         * widget.c (set_frame_size): Double trunc_area_extra.
9128         (EmacsFrameSetCharSize): Ditto.
9129         * xfns.c (x_figure_window_size): Ditto.
9130         * xterm.c (x_set_window_size): Ditto.
9131         (x_after_update_window_line): Draw right truncation mark.
9133         * xterm.c (draw_glyphs): Bug fix buffer overrun.
9135         * window.h: Include blocker around dispextern.h removed.
9137         * eval.c (Feval): Check interrupt_input_block == 0.
9139         * dispextern.h (struct display_iterator): Former ovstr made a
9140         Lisp_Object overlay_string.  New next_ovstr_face_check_pos and
9141         next_ovstr_invisble_check_pos; check at these positions for
9142         face changes and changes in invisible text property.
9143         (struct glyph_pos): Former ovlen now overlay_string_index.
9145         * xdisp.c (setup_iterator_overlays_from_glyph_pos): Set
9146         overlay_string.
9147         (set_iterator_to_next_overlay_string): Set overlay_string and
9148         pos.overlay_string_index.
9149         (get_overlays_at_iterator_position): Use overlay_string and
9150         overlay_string_index.
9151         (next_element_from_overlay_string): Use overlay_string and
9152         overlay_string_index.
9153         (move_iterator_forward): Increment overlay_string_index.
9154         (try_window_id): Use overlay_string and overlay_string_index.
9155         (move_iterator_forward): At end of dpvec, maybe use method
9156         next_element_from_overlay_string for the case a character from an
9157         overlay string was translated via a display table.
9158         (reseat_iterator_to_string): Take a Lisp string.
9159         (display_string): Pass a Lisp string to reseat_iterator_to_string.
9160         (compute_face_at_iterator_overlay_string_position): Compute face
9161         based on text properties for an overlay string.
9162         (next_element_from_overlay_string): Check invisible and face text
9163         properties.
9165         (set_iterator_to_next_overlay_string): Restore face id before
9166         overlay strings when no more overlay strings are found to return.
9167         Initialize next_ovstr_.*check_pos for each new overlay string
9169         A line in the following paragraph was garbled for an unknown
9170         reason.  It couldn't be fully reconstructed.
9172         (compute_base_face): Made public.
9173         (merge_face_list): Ditto.
9174         (intern_computed_face): Ditto.
9176         * xdisp.c (redisplay_window): Cursor movement in unchanged
9177         window if PT > w->last_point.  Goto try_to_scroll if bottom Y
9178         of row is > instead of >= last_y.
9180         * buffer.h (overlays_at): Function prototype.
9182         * xdisp.c (reseat_iterator_to_string): Clear iterator position.
9183         * dispextern.h (GET_NEXT_DISPLAY_ELEMENT): Removed.
9185         * xdisp.c (release_iterator): Release dynamically allocated
9186         memory of a display_iterator.
9187         (copy_iterator): Copy an iterator.
9188         (restore_iterator): Restore an iterator from a backup copy.
9189         (global): Use the functions above.
9190         * window.c (Fpos_visible_in_window_p): Call release_iterator.
9191         * dispnew.c (direct_output_for_insert): Call release_iterator.
9193         * dispextern.h (struct display_iterator): Allocate overlays
9194         vector dynamically.
9196 1997-12-06  Gerd Moellmann  <gerd@acm.org>
9198         * Makefile.in (window.o): Depends on dispextern.h.
9200         * buffer.c (overlays_at): Make it work when extending vectors
9201         and an initial vector of zero size.
9203         * xdisp.c (set_iterator_to_previous_visible_line_end): Renamed
9204         from set_cursor_to_previous_visible_line_end.
9205         (set_iterator_to_next_visible_line_start): Renamed from
9206         set_cursor_to_next_visible_line_end.
9207         (set_next_iterator_stop_pos): Renamed from set_next_stop_pos.
9208         (compute_face_at_iterator_position): Renamed from
9209         compute_cursor_face.
9210         (set_iterator_to_next_overlay_string): Renamed from
9211         cursor_to_next_overlay_string.
9212         (get_overlays_at_iterator_position): Renamed from
9213         get_overlays_for_cursor.
9214         (reseat_iterator): Renamed from reseat_cursor.
9215         (setup_iterator_overlays_from_glyph_pos): Renamed from
9216         setup_overlays_from_pos.
9217         (init_string_iterator): Renamed from init_string_cursor.
9218         (get_next_display_element): Renamed from next_display_element.
9219         (move_iterator_forward): Renamed from advance_display_cursor.
9220         (get_overlays_at_iterator_position): Allocate overlays vector
9221         dynamically.
9223         * xdisp.c: display_cursor renamed display_iterator.
9224         * dispextern.h: Ditto.
9225         * dispnew.c: Ditto.
9227 1997-12-01  Gerd Moellmann  <gerd@acm.org>
9229         * window.c (mark_window_cursors_off): Function comment added.
9230         (window_topmost_p, window_rightmost_p): Removed because not used.
9232 1997-11-30  Gerd Moellmann  <gerd@acm.org>
9234         * emacs.c (main): Function prototypes removed in profiling code.
9235         Use safe_bcopy as start of text.
9237         * dispnew.c (update_frame_line): update_line -> update_frame_line;
9238         mirrored_make_current -> make_current.
9240         * xdisp.c: (store_frame_title_char): New function to store a
9241         single character for the frame title with re-allocation of
9242         frame_title_buf.
9243         (init_xdisp): Intialize frame_title_.* variables to null.
9245         * dispnew.c (quit_error_check): Removed.
9247         * eval.c (Fsignal): Call to quit_error_check removed.
9248         * keyboard.c (quit_throw_to_read_char): Ditto.
9250 1997-11-23  Gerd Moellmann  <gerd@acm.org>
9252         * xfaces.c (Fset_face_attribute_internal): Allow nil relief
9253         to mean a zero relief.
9255 1997-11-19  Gerd Moellmann  <gerd@acm.org>
9257         * dispnew.c (new_glyph_matrix): Increment glyph_matrix_count
9258         unconditionally.
9259         (glyph_matrix_count, glyph_pool_count): Define unconditionally.
9260         (free_glyph_matrix): Decrement glyph_matrix_count unconditionally.
9261         (check_glyph_memory): Define function body unconditionally.
9263 1997-11-17  Gerd Moellmann  <gerd@acm.org>
9265         * dispnew.c (scrolling_window): Alternative version of this
9266         function removed.
9268 1997-11-16  Gerd Moellmann  <gerd@acm.org>
9270         * dispnew.c (make_empty_enabled_row): Make an empty, enabled row
9271         of height CANON_Y_UNIT.
9272         * dispextern.h: Prototype for that function.
9273         * xdisp.c (echo_area_display): Don't use display_string to
9274         produce empty rows.  Use make_empty_enabled_row instead.
9276         * dispnew.c (scrolling_window): New version using diff-like
9277         algorithm activated.
9279 1997-11-15  Gerd Moellmann  <gerd@acm.org>
9281         * dispnew.c (clear_current_matrices): Clear matrix of menu_bar_window
9282         (clear_desired_matrices): Ditto.
9283         (adjust_frame_glyphs_for_window_redisplay): Use FRAME_WINDOW_WIDTH
9284         for menu_bar_window.
9286         * alloc.c (mark_object): Mark menu_bar_window of frames.
9288         * xterm.c (XTupdate_window_end): Don't display cursor if
9289         pseudo_window_p.
9291         * dispnew.c (adjust_frame_glyphs_for_window_redisplay): Don't
9292         set mini_p.
9293         (update_window): Don't set cursor if pseudo_window_p.
9295         * dispextern.h (WINDOW_WANTS_MODELINE_P): Test pseudo_window_p.
9297         * window.h (struct window): New flag pseudo_window_p set to
9298         1 for windows that aren't really part of the window tree, like
9299         menu_bar_window's of frames.
9300         * window.c (make_window): Initialize it.
9301         (replace_window): Ditto.
9302         * dispnew.c (adjust_frame_glyphs_for_window_redisplay): Ditto.
9304         * frame.c (make_frame): Initialize menu_bar_window to nil.
9306         * xterm.c (XTget_display_info): FACE_SHADOW_THICKNESS renamed
9307         FACE_RELIEF
9309         * xfaces.c (copy_face): shadow_thickness -> relief.
9310         (face_eql): Ditto.
9311         (merge_faces): Ditto.
9312         (compute_base_face): Ditto.
9313         (Fset_face_attribute_internal): Ditto.
9314         * dispextern.h (struct face): Ditto.
9316         * dispnew.c (update_frame): Update menu_bar_window of the frame if
9317         it is non-nil.
9319         * xdisp.c (display_menu_bar): Display the menu bar in
9320         f->menu_bar_window if appropriate.
9321         (display_mode_line): Use MATRIX_MODE_LINE_ROW.
9323         * dispnew.c (adjust_frame_glyphs_for_window_redisplay): Allocate
9324         dummy window and window matrices for f->menu_bar_window.
9325         (free_glyphs): Free the dummy window and its glyph matrices.
9327         * frame.h (struct frame): New member menu_bar_window.
9329 1997-11-09  Gerd Moellmann  <gerd@acm.org>
9331         * dispnew.c (scrolling_window): New version with diff-like
9332         algorithm.
9334         * xdisp.c (try_window_reusing_current_matrix): If new_start >
9335         old_start always start displaying at start of
9336         first_row_to_display.  The previous scheme failed if the last row
9337         was fully visible.
9339         * dispnew.c (update_window): Remove cost calculations.  Remove
9340         redundant preempt_count calculations.
9342         * xterm.c (x_clip_to_row): Set clipping for non-text rows
9343         differently.
9345         * dispnew.c (update_window): Use WINDOW_WANTS_MODELINE_P.
9347         * window.c (syms_of_window): Functions for marginal areas if
9348         WITH_MARGINAL_AREAS is defined.
9350         * xdisp.c (try_window_reusing_current_matrix): Trace fprintf
9351         removed.
9353         * dispnew.c (scrolling): Call line_hash_code because hash values
9354         are not set in the frame matrix.
9356         * xdisp.c (try_window_id): Fix scrolling for terminal frames.
9357         (redisplay_window): Check line_ins_del_ok before calling
9358         try_window_id.
9359         (try_window_reusing_current_matrix): Give up for terminal frames
9360         if window is not full width or we cannot insert/delete lines.
9361         (try_window_reusing_current_matrix): Fixed scrolling for terminal
9362         frames.
9364         * alloc.c (mark_glyph_matrix): Bug fix - pass pointer to
9365         Lisp_Object to mark_object.
9367         * xdisp.c (sync_frame_with_window_matrix_rows): Make frame and
9368         window rows have the same glyph pointers.
9369         (try_window_id): Call it.
9371         * alloc.c (mark_glyph_matrix): Function to mark Lisp objects in
9372         a glyph matrix.
9373         (mark_object): Call it.
9375         * xdisp.c (insert_left_trunc_glyphs): Use 0 object in glyphs for
9376         truncations.
9377         (display_line): Ditto.
9378         (display_line): Ditto for DISP_CONTINUATION.
9379         (display_line): Truncation on right: test current_x >
9380         last_visible_x.
9381         (skip_in_display_line_to): Ditto.
9382         (skip_via_matrix): Stop skipping in glyph row at face extending
9383         glyphs or at padding spaces.
9385         * dispnew.c (fill_up_glyph_row_with_spaces): Comment extended.
9387         * xdisp.c (display_line): Use glyph->object == 0 for padding
9388         glyphs.
9389         (redisplay_window): Don't let cursor move over padding
9390         spaces.
9392         * dispextern.h (struct glyph): Fix comment for object.
9394 1997-11-08  Gerd Moellmann  <gerd@acm.org>
9396         * dispextern.h (WINDOW_WANTS_MODELINE_P): Non-zero if a window
9397         has a mode line.
9398         * xdisp.c (redisplay_window): Use it.
9399         (display_mode_line): Check that window wants mode line.
9401 1997-11-03  Gerd Moellmann  <gerd@acm.org>
9403         * xdisp.c (display_menu_bar): Enable menu bar rows.
9405         * xterm.c (x_draw_hollow_cursor): X positions based on text area.
9406         (x_erase_phys_cursor): Ditto.
9407         (x_draw_bar_cursor): Ditto.
9409 1997-11-02  Gerd Moellmann  <gerd@acm.org>
9411         * dispnew.c (update_marginal_area): Update a marginal area.
9412         (update_text_area): Update text area.
9413         (update_window_line): Call both.
9415         * xterm.c (XTclear_end_of_line): Translate coordinates area
9416         dependent.
9418         * dispnew.c (updated_area): Row area being updated in
9419         update_window_line.
9420         (update_window_line): Set it.
9421         (update_marginal_area): Clear to end of line if not in text area.
9423         * window.c (Fset_window_margins): Increment
9424         windows_or_buffer_changed.  Adjust glyphs.
9426         * dispextern.h (WINDOW_TEXT_TO_FRAME_PIXEL_X): Convert text
9427         area X coordinates to frame coordinates.
9428         (WINDOW_DISPLAY_LEFT_AREA_PIXEL_WIDTH): Width of left marginal area.
9429         (WINDOW_DISPLAY_RIGHT_AREA_PIXEL_WIDTH): Same for right area.
9430         (WINDOW_DISPLAY_TEXT_AREA_PIXEL_WIDTH): Same for text area.
9432         * xterm.c (draw_glyphs): Use text area width as display width.
9434         * xdisp.c (init_display_info): Subtract widths of marginal areas
9435         from last_visible_x.
9437         * alloc.c (mark_object): Mark objects in glyphs only if they are
9438         overlays.  Mark only if current_matrix != 0.  Activate the code.
9440         * window.c (Fset_window_margins): Set margins.
9441         (Fwindow_margins): Return margin area widths.
9442         (syms_of_window): Add defsubr's.
9444         * window.h (struct window): left_margin_width, right_margin_width.
9446         * xfns.c (x_set_trunc_area_width): Set truncation pixel width
9447         and cols.
9449         * frame.h (FRAME_TRUNC_COLS): Number of columns occupied by
9450         truncation/overlay arrow area.
9451         (struct frame): trunc_area_pixel_width, and _cols.
9453         * window.c (Fsplit_window): Use it.
9455         * window.c (Fsplit_window): Set cursor vpos to -1 after
9456         splitting.
9457         (Fsplit_window): SUbtract/add FRAME_TRUNC_WIDTH for horizontally
9458         split windows.
9460         * dispnew.c (set_window_cursor_after_update): Accept out
9461         of bounds cursor positions.
9463         * xdisp.c (redisplay_internal): Check that after cursor motion
9464         within line, PT is on same line.
9466         * dispextern.h (WINDOW_DISPLAY_PIXEL_WIDTH): Don't subtract
9467         FRAME_TRUNC_WIDTH.
9469         * xterm.h (struct x_output): trunc_area_extra.
9470         (CHAR_TO_PIXEL_WIDTH): Add in trunc_area_extra.
9471         (PIXEL_TO_CHAR_WIDTH): Subtract it.
9472         * widget.c (set_frame_size): Set it.
9473         (EmacsFrameSetCharSize): Ditto.
9474         * xfns.c (x_figure_window_size): Ditto.
9475         * xterm.c (x_set_window_size): Ditto.
9477         * dispnew.c (check_matrix_invariants): First try to check window
9478         ends (in #if 0).
9480         * xdisp.c (try_window_reusing_current_matrix): Try window
9481         redisplay with different window start.
9483 1997-11-01  Gerd Moellmann  <gerd@acm.org>
9485         * window.c (make_window): Set window_end_pos/vpos.
9486         (Fsplit_window): Zero last_cursor, window_end_valid.
9487         (Fset_window_buffer): Set window_end_vpos, zero last_cursor.
9489         * dispnew.c (check_matrix_invariants): Check window_end_pos/vpos.
9491 1997-10-31  Gerd Moellmann  <gerd@acm.org>
9493         * window.c (make_window): Initialize last_cursor.
9494         (replace_window): Ditto.
9496 1997-10-29  Gerd Moellmann  <gerd@acm.org>
9498         * window.h: New member last_cursor.
9499         * dispnew.c (direct_output_for_insert): Set it.
9500         (direct_output_forward_char): Ditto.
9501         * xdisp.c (redisplay_internal): Ditto.
9503 1997-10-28  Gerd Moellmann  <gerd@acm.org>
9505         * xdisp.c (redisplay_internal): Optimization 1 change partially
9506         reverted.  Check this again later.
9507         (skip_via_matrix): Remove redundent test for
9508         MATRIX_ROW_DISPLAYS_TEXT_P.
9510 1997-10-27  Gerd Moellmann  <gerd@acm.org>
9512         * dispnew.c (update_window_line): Call
9513         after_update_window_line_hook only for interesting constellations.
9514         (free_glyph_matrix): Fix memory leak.
9516         * window.h: Include blocker WINDOW_H_INCLUDED, include
9517         dispextern.h.
9518         (struct window): phys_cursor_glyph as struct glyph.  * window.c
9519         (make_window): Initialize it.
9520         (replace_window): Ditto.
9521         * dispnew.c (free_window_matrices): Remove freeing of
9522         phys_cursor_glyph.
9523         (check_matrix_invariants): Renamed from check_current_matrix_...
9524         * xterm.c: All references to phys_cursor_glyph changed.
9526         * dispextern.h (DISPEXTERN_H_INCLUDED: New include blocker.
9528         * xfaces.c: Comment update.
9530         * window.h (struct window): Make phys_cursor_glyph a struct glyph
9531         pointer. Remove phys_cursor_ascent, descent, etc.
9532         * dispnew.c (free_window_matrices): Free it.
9533         * window.c (make_window): Allocate it.
9534         (replace_window): Ditto.
9535         * xterm.c (x_draw_phys_cursor_glyph): Draw it.
9536         (x_display_and_set_cursor): Fill it.
9537         (x_phys_cursor_in_rect_p): Use it.
9538         (x_draw_hollow_cursor): Ditto.
9539         (x_draw_bar_cursor): Ditto.
9540         (x_erase_phys_cursor): Ditto.
9542         * xdisp.c (skip_in_display_line_to): Use SET_INFO_FROM_CURSOR.
9544         * xterm.c (XTget_display_info): Handle 3D facess.
9545         (draw_glyphs): Ditto.
9547         * xdisp.c (Fdump_redisplay_state): Change interactive spec to "p".
9549         * xfaces.c (Fset_face_attribute_internal): New face attribute
9550         shadow-thickness.
9551         (copy_face): Handle shadow_thickness.
9552         (face_eql): Ditto.
9553         (merge_faces): Ditto.
9554         (compute_base_face): Ditto.
9556         * dispextern.h (struct display_cursor): New member start_of_3d_run_p.
9557         (struct display_info): Ditto.
9558         (SET_INFO_FROM_CURSOR): Transfer it to display_info.
9559         * xdisp.c (compute_cursor_face): Set it.
9560         (advance_display_cursor): Clear it.
9562         * xdisp.c (init_string_cursor): Initialize face_id to -1.
9563         (init_string_cursor): Init face_id to zero.
9565         * dispextern.h (struct face): New member shadow_thickness.
9567         * xdisp.c (compute_cursor_face): Set limit for text property
9568         search to 100.
9570         * dispnew.c (update_window_line): Try to resynch with current line
9571         to prevent mode line flickering.
9573 1997-10-26  Gerd Moellmann  <gerd@acm.org>
9575         * dispnew.c (set_window_cursor_after_update): React again
9576         on cursor_in_echo_area >= 0.
9578         * xdisp.c (echo_area_display): Clear desired matrix before
9579         displaying into it.
9580         (display_menu_bar): Clear glyph row instead of hoping it is not
9581         enabled.  This is safer.
9583         * dispnew.c (check_current_matrix_invariants): Check only
9584         visible rows.
9586         * xdisp.c (try_window_id): Handle window end setting in case of
9587         display to end of window, but only non-text lines displayed.
9589         * dispnew.c (check_current_matrix_invariants): Check nrows for zero.
9590         (check_current_matrix_invariants): Check used counts.
9592         * Revisiob v114.
9594         * dispnew.c (scrolling): Use hash codes from rows.
9596         * xdisp.c (Fdump_redisplay_state): Dump current matrix.
9598         * dispnew.c (scrolling_window): Invalidate conflicting runs.
9600 1997-10-25  Gerd Moellmann  <gerd@acm.org>
9602         * dispextern.h (struct glyph_matrix): Flag no_scrolling_p.
9603         * dispnew.c (update_window): Use it.
9604         (clear_glyph_matrix): Clear it.
9605         * xdisp.c (try_window_id): Set it.
9607         * dispextern.h (struct glyph_row): New flag ends_at_zv_p.
9609         * xdisp.c (redisplay_internal): Increment glyph positions differently.
9611         * dispextern.h: More comments etc.
9613 1997-10-24  Gerd Moellmann  <gerd@acm.org>
9615         * dispnew.c (set_window_cursor_after_update): Set cursor
9616         for cursor_in_echo_area == 0 to (0, 0).
9618         * dispextern.h (struct glyph_row): New flags continuation_line_p
9619         and displays_text_p.
9620         (MATRIX_ROW_DISPLAYS_TEXT_P): Use displays_text_p.
9621         * xdisp.c (display_line): Set them.
9622         (try_window_id): Move to start of continuation line to find out
9623         continuation_line_width.
9624         (first_unchanged_current_row): Don't retract row if continued,
9625         truncated etc.
9627         * xterm.c: Map X coordinates.
9629 1997-10-23  Gerd Moellmann  <gerd@acm.org>
9631         * dispnew.c (buffer_posn_from_coords): Translate X for right to
9632         left text.
9634         * xdisp.c (display_line): Set right_to_left_p after clearing the row.
9636         * xterm.c (XTclear_end_of_line): Respect right_to_left_p.
9638         * xdisp.c (try_window_id): Clear desired matrix if not successul.
9640         * xdisp.c (try_window_id): Call update_window_begin_hook/end_hook.
9642         * dispnew.c (update_window_begin_hook, update_winodw_end_hook):
9643         Set this to functions to be called before/after window updates.
9644         (direct_output_for_insert): Call them.
9645         (update_window): Ditto.
9646         (update_frame): Call update_begin/ update_end for windows.
9648         * xterm.c (XTupdate_window_begin): Called before window updates.
9649         (XTupdate_end): Called after window updates.
9650         (x_initialize): Set hooks to above.
9652         * xdisp.c (init_display_info): Initialize c and len of
9653         display_info.
9655         * xterm.c (x_get_char_font_and_encoding): Bug fix.  Don't load
9656         fonts more than once.
9658 1997-10-22  Gerd Moellmann  <gerd@acm.org>
9660         * xdisp.c (display_line): Handle most common case of current_x <
9661         last_visible_x separately.
9663         * dispextern.h (display_element_type): DISP_ELLIPSIS removed.
9665         * dispnew.c (update_window_line): Compare pixel widths of glyphs
9666         so that face extending space doesn't compare equal to normal space
9667         with same face.
9669         * xdisp.c (display_line): Make sure we have a position for
9670         a line end in an otherwise blank line if face is extended.
9672         * dispnew.c (direct_output_for_insert): Increment row end position.
9674         * window.c (Fpos_visible_in_window_p): Use old meaning of
9675         window_end_pos.
9677         * xdisp.c (init_display_cursor_from_glyph_pos): New.
9679         * dispextern.h (MATRIX_ROW_FIRST_POS): Use row start.
9681         * dispnew.c (increment_glyph_row_buffer_positions): Adjust
9682         start and end positions in rows.
9683         (increment_glyph_row_buffer_positions): Stop adjusting at
9684         glyphs with positions <= 0.
9686         * dispextern.h (struct glyph_pos): Structure desribing a text
9687         position including position in overlay.
9688         (struct glyph_row): Use it for start and end positions.
9689         (struct display_cursor): Use it.
9690         * xdisp.c: Use it.
9691         (display_line): Set row start and end positions.
9693         * dispnew.c (copy_row_except_pointers): Use bcopy and struct
9694         assignment.
9696 1997-10-21  Gerd Moellmann  <gerd@acm.org>
9698         * dispnew.c (update_window): Add scrolling_window again.  It's
9699         necessary for scroll_step != 0.
9701         * xdisp.c (redisplay_window): Use vmotion for scroll_step
9702         scrolling.
9704         * xdisp.c (last_unchanged_current_row): Use window_end_vpos.
9706         * xterm.c (XTupdate_end): Flush only for messages.
9708         * xdisp.c (try_window_id): Assert last_unchanged_row >=
9709         first_unchanged_row.
9711         * xterm.c (XTupdate_end): Flush if miniwindow.
9713         * dispnew.c (matrix_row_last_pos): New function.
9714         * dispextern.h (MATRIX_ROW_LAST_POS): Call it.
9715         Large comment moved to xdisp.c.
9717         * xdisp.c (redisplay_window): Bug fix: PT set to value > Z.
9718         (skip_via_matrix): Check window_end_valid instead of
9719         display_completed.
9721         * dispnew.c (scroll_glyph_matrix_range): Bug fix.
9722         (update_window): scrolling_window commented out.  It has negative
9723         effect most of the time.
9725         * xdisp.c (try_window_id): Correct parameters to
9726         scroll_glyph_matrix_range.
9728         * xterm.c (XTupdate_end): XFlush commented out.
9730         * window.h: Comments for window_end_pos/vpos.
9732         * xdisp.c (skip_to): Assert current_buffer is the buffer
9733         of the window in which we are skipping.
9735         * dispnew.c (update_window_line): Optimized clear_end_of_line.
9737         * xterm.c (draw_glyphs): Bug fix.  Return window relative X
9738         reached.
9740 1997-10-20  Gerd Moellmann  <gerd@acm.org>
9742         * dispextern.h (MATRIX_ROW_LAST_POS): Go back one glyph if this is
9743         a face extending glyph.
9745         * xdisp.c (try_window_id): Check if point will appear.
9746         (set_cursor_from_row): Set cursor position from a glyph row.
9748         * dispnew.c (update_window_line): Write entire line if hash
9749         codes of lines differ.
9751         * dispextern.h (MATRIX_ROW_EXTENDS_FACE_P): Value is non-zero
9752         if glyph row has an infinite width glyph at its end.
9754         * xdisp.c (last_unchanged_current_row): Respect partially visible
9755         lines when looking for the last row displaying text.
9756         (try_window_id): Handle partially visible lines better.
9758 1997-10-19  Gerd Moellmann  <gerd@acm.org>
9760         * dispnew.c (update_window): Remove unused variable.
9761         (update_window_line): Simplified.
9763         * xterm.c (x_get_char_font_and_encoding): Handle most common
9764         case at the beginning.
9766         * xdisp.c (advance_display_cursor): Dispatch on method and
9767         order if statements by expected call frequency.  Fixed unclosed
9768         comment.
9770         * xdisp.c (try_window_id): New implementation.
9772         * dispnew.c (increment_glyph_row_buffer_positions): Capture
9773         rows displaying a line end, only.
9775 1997-10-18  Gerd Moellmann  <gerd@acm.org>
9777         * window.c (Fpos_visible_in_window_p): Remove use of window_end_vpos.
9779 1997-10-14  Gerd Moellmann  <gerd@acm.org>
9781         * xdisp.c (display_line): Mark empty lines not corresponding to
9782         text with position -1.
9784         * xterm.c (x_erase_phys_cursor): Don't bother to erase cursor if
9785         not within window matrix bounds.
9787         * dispextern.h (struct display_cursor): New member REGION_SHOWING_P.
9788         (struct display_info): NGLYPHS_TO_IGNORE removed.
9789         * xdisp.c: References to NGLYPHS_TO_IGNORE removed.
9790         * term.c: Ditto.
9791         * xterm.c: Ditto.
9793         * xdisp.c (init_display_cursor): Set it.
9794         (display_line): Use it to set W->REGION_SHOWING.
9796         * xdisp.c (skip_via_matrix): Check for overlay arrow.
9798         * region-cache.h: functino prototypes with PROTO.
9800         * dispnew.c (buffer_posn_from_coords): Use -1 as skip position.
9802         * xdisp.c (skip_via_matrix): Check for rows that don't contain
9803         a position.
9805         * xterm.c (XTmouse_position): Calculate LAST_MOUSE_GLYPH
9806         rectangle based on minimum character bounds.
9808         * keyboard.c (make_lispy_event): Mouse clicks; don't do frame
9809         glyph position calculations.
9810         (make_lispy_movement): Use buffer_posn_from_coords and window
9811         relative coordinates.
9813         * xterm.c (construct_mouse_click): Remove #if 0 case.
9815         * dispextern.h (MATRIX_ROW_BOTTOM_Y): Return bottom pixel y of
9816         given row.
9818         * xdisp.c (skip_via_matrix): Skip using current matrix if up to
9819         date.
9820         (skip_to): Use it.
9821         (redisplay_window): Remove code skipping using current matrix.
9823 1997-10-13  Gerd Moellmann  <gerd@acm.org>
9825         * xdisp.c (redisplay_window): Use available current matrix to
9826         skip faster when only point is moved withing the window.
9828         * intervals.c: Include stdio.h.
9829         (find_interval): Trace to stderr to catch some nasty error
9830         that did not yet occur again with tracing.
9831         (set_point): Ditto.
9833         * dispnew.c (shift_glyph_matrix): Experimental code for handling
9834         cursor positioning on partially visible lines.
9835         (set_window_cursor_after_update): Ditto.
9837         * dispextern.h (MATRIX_ROW_PARTIALLY_VISIBLE_P): Bug fix.
9839         * window.h (struct window): start_y removed.
9841         * window.c (make_window): start_y removed.
9842         (replace_window): Ditto.
9844         * xdisp.c (last_max_ascent, last_max_descent):  Ascent and
9845         descent values of the last line processed by skip_to.
9846         (redisplay_window): Use them.
9847         (skip_to): Set them.
9849         * dispextern.h (struct display_cursor): New member METHOD.
9851         * xdisp.c: Use function member METHOD.
9853         * xdisp.c (set_next_stop_pos): Determine next position at which to
9854         check for face properties, invisible text properties, and overlays.
9855         (compute_cursor_face): Use it.
9856         (get_overlays_for_cursor): Ditto.
9857         (reseat_cursor): Ditto.
9858         (next_display_element): Ditto.
9860 Sun Aug 24 08:50:52 1997  Gerd Moellmann  <gerd@acm.org>
9862         * termhooks.h: Some hooks with prototypes.
9864         * term.c: Some hooks with function prototypes.
9866         * xdisp.c (reseat_cursor):  Additional argument force_p.  Avoid
9867         computing face if possible.
9869         * xdisp.c (next_display_element):  Use face from glyph from display
9870         table only if != 0.
9872         * emacs.c: FreeBSD headers for profiling removed.
9874         * dispnew.c (direct_output_for_insert): Don't use PT-1 for
9875         display cursor, use DEC_POS instread.
9877         * xfaces.c (load_font): Use x_load_font to load fonts so that
9878         all fonts are in the font table.
9879         (unload_font): Don't XFreeFont.
9881         * dispnew.c (row_equal_p): Compare ascent, descent and visible
9882         row height.
9884         * xterm.c (draw_glyphs): Use 8-bit functions if possible.
9885         (x_erase_phys_cursor): Clear only visible part of row.
9886         (x_draw_bar_cursor): Set clipping.
9887         (x_draw_hollow_cursor): Ditto.
9888         (x_display_and_set_cursor): Remove clipping.
9889         (expose_window_tree): Take trunc border into account.
9890         (x_phys_cursor_in_rect_p): Test if phys_cursor intersects a rect.
9891         (expose_window): Use it.
9893         * xdisp.c (display_string): Catch case that we are called with
9894         current_x already beyond max_x.
9895         (global): Fix usage of FRAME_WINDOW_P <-> FRAME_WINDOW_REDISPLAY_P.
9896         (init_display_info): Subtract vertical border glyph from
9897         last_visible_x.
9899         * scroll.c (scrolling_window_1): Removed.
9901         * dispnew.c (adjust_frame_glyphs): Split into two functions,
9902         based on redisplay method used.
9903         (adjust_frame_glyphs_for_frame_redisplay): Part for frame
9904         based redisplay.
9905         (adjust_frame_glyphs_for_window_redisplay): Part for purely
9906         window based redisplay.
9908         * frame.h (FRAME_WINDOW_REDISPLAY_P): Changed to not depend
9909         on data structures.
9911         * dispnew.c (adjust_glyph_matrix): Additional parameter W.
9912         Handle own storage for purely window based redisplay.
9913         (allocate_matrices_for_frame_redisplay): Formerly part of
9914         allocate_matrices.
9915         (allocate_matrices_for_window_redisplay): Ditto.
9917         * dispextern.h (struct glyph_matrix): window_top_y,
9918         window_height.
9920         * dispnew.c (allocate_matrices_for_window_redisplay): Detect
9921         and optimize some common cases of window changes.
9923         * emacs.c (main): Remove own profiling code because 0.95 now
9924         has it in.
9926 Fri Aug 22 18:46:43 1997  Gerd Moellmann  <gerd@acm.org>
9928         * xterm.c (XTupdate_end): Draw horizontal border at right position.
9929         (expose_window): Draw vertical border.
9930         (XTclear_end_of_line): Accept width <= 0 and height <= 0 but
9931         don't do anything.
9933         * xdisp.c (redisplay_internal): Set update_mode_line if paused
9934         for non full width windows only if not window redisplay.
9936         * dispnew.c (update_window_tree): Or paused_p return of called
9937         functions.
9939         * xterm.c (x_display_and_set_cursor): Return if hpos/vpos outside
9940         of window.
9942         * window.c (Fset_window_configuration): adjust_glyphs being
9943         called twice.
9944         (Fset_window_configuration): Set frame garbaged if not all
9945         leaf windows reused.
9947 1997-08-21  Gerd Moellmann  <gerd@acm.org>
9949         * dispnew.c (clear_glyph_matrix): Additional argument specifiying
9950         that rows should really be cleared.  Used for current matrices.
9952         * dispnew.c (scrolling_window):  Bug fix.
9953         (line_dance_hook):  Formerly line_dance_fn, take only one parameter.
9955         * dispextern.h (struct run): Remove current_vpos.
9957         * xterm.c (do_line_dance): Only one parameter.
9959         * xdisp.c (display_line): Set continued_p.
9961         * dispextern.h (struct glyph_row): New flag continued_p.
9962         Fix truncated_on_left_p and truncated_on_right_p to be bits.
9963         (struct glyph_row):
9965 Thu Aug 21 14:37:34 1997  Gerd Moellmann  <gerd@acm.org>
9967         * xdisp.c (skip_vertically_backward): Avoid negative vpos values
9968         when calling skip_to for continued lines.
9970         * dispnew.c (change_frame_size_1): Set frame garbaged.
9972         * xterm.c (expose_window): Check enabled_p of rows.
9974         * xdisp.c (redisplay_internal): Compare line heights before and
9975         now for redisplay optimization 2 (hit).
9976         (display_line): Set this_line_pixel_height.
9978         * xterm.c (x_draw_row_borders): Use FRAME_MODE_LINE_HEIGHT height
9979         value.
9980         (x_clip_to_row): Use MATRIX_ROW_VISIBLE_HEIGHT. Simplified.
9981         (do_line_dance): Simplified and pixel corrected.
9983         * dispnew.c (scrolling_window): Simplified.
9985         * xterm.c (x_draw_3d_border): Inset rectangle by line width.
9987         * dispnew.c (update_window): Add FRAME_MODE_LINE_BORDER_WIDTH
9988         to mode line row->x.
9990 Wed Aug 20 11:23:28 1997  Gerd Moellmann  <gerd@acm.org>
9992         * xterm.c (x_get_char_font_and_encoding): Don't let fontset
9993         override font of face.
9994         (draw_glyphs): Correct return value.
9995         (XTclear_end_of_line): Compare differently with output cursor
9996         position.
9997         (x_draw_hollow_cursor): 2 parameters, window and row.
9999         * dispnew.c (update_window_line): If rows have different height
10000         or y, write entire line.
10002         * xdisp.c (compute_line_metrics): Reset max_ascent and max_descent
10003         of info struct.
10005         * xfaces.c (Fset_face_attribute_internal): Don't call
10006         frame_update_line_height.
10007         (merge_faces): Don't use default font if new font has different
10008         size.
10010 Tue Aug 19 14:38:05 1997  Gerd Moellmann  <gerd@acm.org>
10012         * xterm.c (x_display_and_set_cursor): Use FONT_WIDTH if width
10013         unknown.  Some fonts have min_width zero.
10014         (draw_glyphs): Don't draw underlines to the end of the display
10015         line if face is merely extended to that point.
10016         (draw_glyphs): Don't assume background is filled if
10017         just_foreground_p but extending to end of line.
10019         * xterm.c (XTclear_end_of_line): Clip only to display_height - 1
10020         for partially visible last lines.
10021         (x_clip_to_row): Ditto.
10022         (x_clip_to_row): Clip to display_height-1 if y + line_height >
10023         display_height since line_height is really a line distance.
10024         (x_display_and_set_cursor): If cursor on padding glyph, use
10025         min_bounds pixel width.
10027 Mon Aug 18 09:39:18 1997  Gerd Moellmann  <gerd@acm.org>
10029         * xterm.c (x_clip_to_row):  Height value was 1 too large.
10030         (XTclear_end_of_line):  Clip to display area.
10032         * xfns.c (x_figure_window_sizes):  Add trunc border width
10033         to frame pixel width.
10035         * xdisp.c (next_display_element): Don't display overlay strings
10036         within invisible text.
10037         (skip_vertically_backward):  Skip display lines.
10039 Sat Aug 16 13:13:32 1997  Gerd Moellmann  <gerd@acm.org>
10041         * xdisp.c (x_consider_frame_titie): Don't pad with blanks.
10043         * xdisp.c (next_display_element):  Next invisible
10044         text check position computed differently.
10046         * dispextern.h (struct display_cursor): last_invisible_text_pos
10047         and display_ellipsis_for_invisible_p removed.
10049         * xdisp.c (next_display_element):  Set last_invisible_text_pos
10050         to the last position at which invisible text was found.  Don't
10051         decrement cursor.pos for newlines and cr with ellipsis.  Set
10052         dpvec for `...' due to invisible text directly.
10053         (redisplay_internal):  Don't assert that cursor is at PT after
10054         skip_to.  It may be in invisible text.
10056         * keyboard.c (make_lispy_event): For mouse clicks, use
10057         x_y_to_hpos_vpos.
10059         * xdisp.c (next_display_element):  Call get_overlays_for_cursor when
10060         next_overlay_pos is reached.  Use limit cursor.pos + 100 when
10061         checking for invisible text.
10063         * xterm.h (WINDOW_COL_PIXEL_X etc.) Removed.
10065         * dispextern.h (WINDOW_TO_FRAME_HPOS/VPOS): Moved to dispnew.c
10067         * xfns.c (x_contour_region):  Use pixel coordinates from window
10068         cursor instead of WINDOW_TO_FRAME_H/VPOS.
10070         * dispextern.h (FRAME_TO_WINDOW_HPOS, FRAME_TO_WINDOW_VPOS):
10071         Removed.
10073         * dispnew.c (frame_to_window_hpos, frame_to_window_vpos): Removed.
10075         * xterm.c (x_y_to_hpos_vpos):  Get hpos/vpos from window relative
10076         pixel coordinates.
10077         (note_mouse_highlight): Use it.
10079         * xdisp.c (echo_area_display):  Ignore calls for terminal frames
10080         under a window system.
10082         * dispnew.c (adjust_frame_glyphs): Call redraw_frame if
10083         necessary.
10084         (update_window_line): Add width of face padding glyph to
10085         displayed widths of rows.
10087         * xterm.c (x_display_and_set_cursor):  Set clipping after
10088         erasing cursor.
10090         * window.c (Fset_window_configuration): Free only those
10091         window matrices not reused.
10092         (get_leaf_windows): Build vector of leaf windows.
10093         Corrupted archive restored from v77.
10095         * xdisp.c (display_string): Stop at >= last_visible_x if truncating
10096         like display_line does.
10098         * xdisp.c (display_mode_line): Don't hscroll mode line.
10100         * xterm.c (draw_glyphs): Wrong run_width computed for horiz. split
10101         windows.
10102         (x_scroll_bar_create): #3039 Clear area below scroll bar to remove
10103         garbage between mode lines when splitting windows horiz.
10105         * dispnew.c (direct_output_for_insert): Bug fix.
10107         * dispextern.h (struct display_cursor): New member string_length.
10109         * xdisp.c (next_display_element): Return padding spaces.
10110         (init_string_cursor): Take precision and field_width
10111         (display_string): Use string cursor, skip over invisible text.
10113 Thu Aug 14 10:41:41 1997  Gerd Moellmann  <gerd@acm.org>
10115         * xterm.c (x_clip_to_row): Clip to partially visible lines.
10116         (x_display_and_set_cursor): Call it.
10117         (draw_glyphs): Call it
10118         (draw_bitmap): Call it.
10120         * dispnew.c (adjust_frame_glyphs): Optimize frame garbaging.
10121         (allocate_leaf_matrix): Return flags.
10122         (row_equal_p): Compare enabled_p.
10124         * xterm.c (x_erase_phys_cursor):  Set phys_cursor_on_p to 0
10125         for type == -1.
10127         * xterm.c (x_display_and_set_cursor): Bar cursor 1 pixel taller.
10128         (draw_glyphs):  Clip height one pixel taller.
10130         * dispnew.c (direct_output_for_insert): Give up for hscrolled
10131         mini window.
10133         * xdisp.c (display_line): Don't scroll mini prompt.
10135         * xdisp.c (echo_area_display): Call update_single_window if
10136         possible.
10138         * dispnew.c (update_window_line):  Call scrolling_window.
10139         (scrolling_window): Work on enabled desired lines only.
10140         (update_single_window): Update a single window like update_frame
10141         does for all windows.
10142         (update_window, update_window_tree): Additional argument
10143         no_scrolling_p.
10144         (update_frame): Pass no_scrolling_p to update_window_tree.
10145         (update_window): Don't call scrolling_window if no_scrolling_p.
10147         * xterm.c (x_erase_phys_cursor): Do nothing if type == -1.
10148         Erase under hollow cursor.
10149         (x_display_and_set_cursor): Do nothing if cursor glyph row
10150         not enabled.  Draw bar cursor 1 pixel smaller.
10152         * dispnew.c (adjust_frame_glyphs): Don't set frame garbaged
10153         since update will follow soon.
10155         * xdisp.c (echo_area_display): Unitialized variable.
10157         * xterm.c (draw_bitmap): Previously draw_truncation; draw
10158         overlay arrow bitmap.
10160         * xdisp.c (display_line): For truncated lines, consider everything
10161         up to the final \n as part of the line for cursor positioning.
10163         * xterm.c (draw_truncation): Take FRAME_X_TRUNC_WIDTH into account.
10164         (x_after_update_window_line): Clear trunc marks.
10166         * xterm.h (FRAME_X_TRUNC_WIDTH).
10168         * frame.h (FRAME_TRUNC_WIDTH):  Width of area at the left margin
10169         of a window reserved for truncation mark.
10171         * dispextern.h: Take FRAME_TRUNC_WIDTH into account.
10173         * dispnew.c (update_window_line): Call after_update_windwo_line-
10174         hook.
10176         * xdisp.c (display_line): Set overlay_arrow_p in row.
10178         * dispextern.h (struct glyph_row): New flag overlay_arrow_p.
10180         * xterm.c (x_after_update_window_line): Draw truncation marks.
10182         * xdisp.c (display_line): Insert truncation for lines with
10183         current_x > 0.
10185         * xterm.c (x_draw_row_borders): Convert y to frame coords.
10186         Correct y by 1.
10187         (x_display_cursor): Use default font width if width not
10188         known.
10190         * xdisp.c (echo_area_display): Set row->y.
10192         * dispnew.c (set_window_cursor_after_update): Don't assume
10193         all rows are enabled.
10195         * xdisp.c (skip_in_display_line_to): Test cursor.position instead
10196         of cursor.pos.
10197         (skip_in_display_line_to): Check cursor.position after call to
10198         next_display_element.
10200         * dispextern.h (CURSOR_AT_P): Test if cursor has reached
10201         buffer position.
10203         * xdisp.c (display_line): Set row->y here.
10204         (skip_in_display_line_to): Test for to_pos after all glyphs
10205         have been added to hpos so that hpos is at the end of all
10206         glyphs for to_pos.
10207         (start_display): Remove assertion.
10209         * dispnew.c (direct_output_forward_char): Bug fix, = instead of ==.
10210         (update_window): Don't set row->y here.
10212         * xdisp.c (next_display_element): Don't translate control chars
10213         from display table entries.
10215         * dispnew.c (direct_output_for_insert): Set cursor before
10216         update end to prevent cursor flickering.  Revert changes to
10217         setting cursor.endpos.
10219 Wed Aug 13 10:46:12 1997  Gerd Moellmann  <gerd@acm.org>
10221         * dispnew.c (direct_output_for_insert):  Don't set cursor.endpos
10222         to PT because this prevents multi-byte characters from being
10223         recognized.
10225         * xdisp.c (skip_to, display_line):  Advance cursor at end of
10226         truncated line.
10228         * xterm.c (x_draw_3d_borders): Use CapRound. Struct rect
10229         replaced by XRectangle.
10231         * dispnew.c (scrolling_window): New method.
10233         * xterm.c (do_line_dance): New implementation, new method.
10235         * xdisp.c (draw_glyphs):  Draw truncation bitmaps. Clip to
10236         visible part of line.
10238         * dispnew.c (update_window_line): Fill inverse video lines
10239         with infinite width space.
10240         (update_window): Handle completely empty matrices.
10241         (set_window_cursor_after_update): Bug fix.
10243         * xterm.c (draw_glyphs): Stop drawing at right window end.
10245         * dispnew.c (update_window_line): Don't ignore spaces, don't
10246         fill with spaces.
10248         * xdisp.c (compute_line_metrics): Stop adding glyph widths with
10249         the first glyph having width 0.
10251         * xterm.c (draw_glyphs): Let a glyph pixel with of 0 denote
10252         a glyph that extends to the end of the line.
10254         * xdisp.c (display_line): Insert one padding glyph
10256         * xdisp.c (skip_in_display_line_to): Don't subtract shift left
10257         amount from info.current_x.
10258         (display_line): Ditto.
10260         * dispnew.c (direct_output_for_insert): Correct use of cursor.x.
10261         (change_frame_size_1): Correct cursor.x if frame gets too small.
10262         (update_window_line): Start at row->x.
10264         * xdisp.c (redisplay_internal): Correct cursor.x (everwhere
10265         in xdisp.c).
10267         * xterm.c (set_output_cursor): Use window relative X/Y.
10268         (global): Use window relative output cursor x/y.
10269         (draw_glyphs): Remove y param. Pass window relative x/y.
10271         * dispnew.c (update_window): Start rows at start_y.
10272         (update_window): Don't try scrolling because it wouldn't work
10273         with variable height lines, anyway.
10275         * dispextern.h (struct glyph_row): Remove shift_left_by,
10276         add x.
10278         * window.h: (struct window): New member start_y.
10280         * window.c (replace_window): Initialize start_y.
10281         (make_window): Ditto.
10283 Tue Aug 12 14:53:04 1997  Gerd Moellmann  <gerd@acm.org>
10285         * xterm.c (draw_glyphs): Clip rows that would paint over
10286         the mode line.
10288         * dispnew.c (update_window): Take mode line border into
10289         account.
10291         * xterm.h (FRAME_MODE_LINE_BORDER_WIDTH): Number of pixels
10292         of border around mode line.
10294         * xterm.c (x_draw_row_borders): Bug fix.
10295         (x_erase_phys_cursor): Set pyhs_cursor.x/y before calling
10296         drawing functions.
10298         * xterm.c (x_draw_row_border): Experimental; draw 3d borders
10299         around modeline instead of inverting it.
10301         * xterm.c (glyph_to_pixel_coords): Use current matrix.
10303         * dispnew.c (buffer_posn_from_coords): Use SKIP_TO.  Now takes
10304         window relative pixel coordinates as arguments.
10306         * keyboard.c (make_lispy_event): Use BUFFER_POSN_FROM_COORDS
10307         with window relative pixel coordinates.  Use GLYPH_TO_PIXEL_-
10308         COORDS mit new arguments.
10310 Mon Aug 11 12:32:34 1997  Gerd Moellmann  <gerd@acm.org>
10312         * xdisp.c (start_display): Use SKIP_TO instead of SKIP_IN-
10313         DISPLAY_LINE.
10315         * keyboard.c (make_lispy_event): WINDOW_FROM_COORDINATES with
10316         pixel coords.
10317         (make_lispy_movement): Same.
10319         * xterm.c (note_mouse_highlight): Use WINDOW_FROM_COORDINATES
10320         with new parameter meaning.
10322         * window.c (Fcoordinates_in_window_p): Convert Lisp params
10323         from canon units to pixels.
10324         (coordinates_in_window): Pixel based.
10325         (Fcoordinates_in_window_p): Convert result pixel values back
10326         to canonical units.
10328         * window.h: phys_cursor_ascent + descent instead of height.
10330         * xterm.c (XTget_char_info): Use per char metrics for multi-byte
10331         chars with charset width 1.
10333         * dispnew.c (direct_output_for_insert): Set updated_row.
10335 Sat Aug  9 12:11:44 1997  Gerd Moellmann  <gerd@acm.org>
10337         * dispextern.h (struct glyph): Padding flag removed.
10339 Tue Aug  5 09:59:08 1997  Gerd Moellmann  <gerd@acm.org>
10341         * sysdep.c (reset_sys_modes): cursor_to with 4 params.
10343         * keyboard.c (interrupt_signal): Cursor_to with 4 params.
10345         * dispnew.c (update_window_line): Use pixels.
10347         * xdisp.c (compute_line_metrics): Correct pixel_width by
10348         shift_left_by.
10350         * dispextern.h (struct glyph_row): FIRST_SHIFTED_LEFT_GLYPH
10351         removed.  Remove references to it everywhere.  Reverse_p in
10352         glyph_row -> right_to_left_p.  Change references to it.
10354 Mon Aug  4 18:09:27 1997  Gerd Moellmann  <gerd@acm.org>
10356         * dispnew.c (direct_output_for_insert): Use INSERT_GLYPHS.
10358         * xterm.c (XTinsert_glyphs): Implement it.
10360         * term.c (insert_glyphs): UPDATING_FRAME may be NULL in case
10361         of a call from DIRECT_OUTPUT_FOR_INSERT.
10363         * window.h (struct cursor_pos): Keeps both matrix positions
10364         and pixel positions.
10365         (struct window): Use it.
10367         * dispnew.c (direct_output_for_insert): New version.
10369         * xdisp.c (redisplay_internal): Don't do anything if it has
10370         already be done directly.
10372         * keyboard.c (command_loop_1): Call DIRECT_OUTPUT_FOR_INSERT
10373         for any character.
10375 Thu Jul 31 15:39:10 1997  Gerd Moellmann  <gerd@acm.org>
10377         * xdisp.c (echo_area_display): Use new DISPLAY_STRING.
10379 Wed Jul 30 12:18:03 1997  Gerd Moellmann  <gerd@acm.org>
10381         * dispextern.h (struct glyph_row): MAX_ASCENT, MAX_DESCENT.
10382         (struct glyph): ASCENT, DESCENT.
10383         (MATRIX_ROW_PIXEL_HEIGHT): Pixel height of row.
10384         (GLYPH_PIXEL_HEIGHT): Pixel height of glyph.
10386         * xterm.c (XTget_display_info): Correct tab computation.
10388         * term.c (get_display_info): Correct tab computation.
10390         * dispextern.h (struct display_cursor): WHAT_FOUND, SOURCE_OBJECT.
10391         Renamed from CHAR_CURSOR.
10393 Tue Jul 29 12:52:40 1997  Gerd Moellmann  <gerd@acm.org>
10395         * xdisp.c (display_text_line): Mostly pixel oriented.
10397         * dispextern.h (struct glyph): BOX_WIDTH -> PIXEL_WIDTH.
10399         * term.c (append_intermediate_glyph): Generate padding glyphs.
10401         * xdisp.c (display_text_line): More into final direction.
10403         * xterm.c (XTget_char_info): Use WHAT field of CHAR_INFO.
10404         (XTget_char_info): Use tabs as multiples of spaces.
10406         * term.c (get_char_info): Use WHAT field of CHAR_INFO.
10407         Use tabs as multiples of spaces.
10409         * dispextern.h (struct char_info ): WHAT field.
10411         * term.c (encode_terminal_code): Don't use GLYPH_CHAR, use
10412         FAST_GLYPH_CHAR instead because GLYPH_CHAR won't remove faces.
10414 Mon Jul 28 14:23:06 1997  Gerd Moellmann  <gerd@acm.org>
10416         * dispnew.c (init_char_info): Correct TAB_WIDTH to a reasonable
10417         value.
10418         (init_char_info): Initialize with glyph row.
10420         * term.c (get_char_info): Check WANT_ELLIPSIS_P.
10422         * xterm.c (XTget_char_info): Check WANT_ELLIPSIS_P.
10424         * dispextern.h (struct char_info ): GLYPH_ROW for intermediate
10425         glyphs.
10427         * dispnew.c (init_char_info): Init GLYPH_ROW to NULL. CHAR_CURSOR
10428         moved to xdisp.c.
10430         * xdisp.c (display_text_line): Use CHAR_CURSOR.
10432         * xterm.c (x_append_intermediate_glyph): Intermediate glyph
10433         generation.
10434         (XTget_char_info): Ditto.
10436         * term.c (get_char_info): Intermediate glyph generation.
10437         (append_intermediate_glyph): Ditto.
10439 Sun Jul 27 18:57:24 1997  Gerd Moellmann  <gerd@acm.org>
10441         * dispnew.c (compute_char_cursor_face): Compute the face for a
10442         CHAR_CURSOR.
10443         (init_char_cursor): Initialize a CHAR_CURSOR.
10444         (get_char_and_advance): Get next character to display.
10446         * dispextern.h (struct char_cursor): Cursor for iterating over
10447         display text of CURRENT_BUFFER.
10449 Sat Jul 26 13:33:03 1997  Gerd Moellmann  <gerd@acm.org>
10451         * term.c (get_char_info): Set MAX_PIXEL_WIDTH in CHAR_INFO.
10453         * dispextern.h (struct char_info ): Use LISP_CHAR_TABLE for DP.
10454         New member MAX_PIXEL_HEIGHT.
10456         * xterm.c (x_per_char_metric): Get per character metrics.
10457         (XTget_char_info): More cases covered.
10459         * term.c (get_char_and_info): Get next character and character
10460         display information.
10461         (get_char_info): Get character display information.
10463         * dispextern.h: Character display information.
10465         * xterm.c (x_get_char_font_and_encoding): Get font and
10466         encode character.
10467         (XTget_char_info): Get display information about a character.
10469 Wed Jul 23 16:50:18 1997  Gerd Moellmann  <gerd@acm.org>
10471         * dispextern.h (WINDOW_DISPLAY_MODE_LINE_HEIGHT): Height is
10472         zero if window is mini-window.
10474         * xdisp.c: Include xterm.h or w32term.h for FRAME_LINE_HEIGHT.
10475         (try_window): DISPLAY_TEXT_LINE as long as Y < DISPLAY_HEIGHT.
10477         * dispnew.c (assign_row): Assign row pixel height.
10478         (clear_glyph_row): Clear pixel height.
10479         (update_window): Use PIXEL_HEIGHT.
10481         * xdisp.c (display_string): Set row pixel height temporarily.
10482         (display_text_line): Ditto.
10484         * dispextern.h (GLYPH_PIXEL_WIDTH):
10485         (GLYPH_PIXEL_HEIGHT): Get glyph pixel dimension.
10487         * frame.h (FRAME_DEFAULT_PIXEL_LINE_HEIGHT): Get height of
10488         line in default font.
10489         (FRAME_DEFAULT_GLYPH_PIXEL_WIDTH): Get width of character
10490         in default font.
10491         (FRAME_MODE_LINE_PIXEL_HEIGHT): Get height of mode line.
10493         * xterm.h (FRAME_MODE_LINE_HEIGHT): Return height of mode line
10494         in pixels.
10496         * dispnew.c (allocate_leaf_matrix): Use window pixel macros.
10498         * dispextern.h (WINDOW_DISPLAY_PIXEL_WIDTH):
10499         (WINDOW_DISPLAY_PIXEL_HEIGHT):
10500         (WINDOW_DISPLAY_MODE_LINE_HEIGHT):
10501         (WINDOW_DISPLAY_PIXEL_HEIGHT_WITHOUT_MODE_LINE):
10502         (WINDOW_DISPLAY_LEFT_EDGE_PIXEL_X):
10503         (WINDOW_DISPLAY_RIGHT_EDGE_PIXEL_X):
10504         (WINDOW_DISPLAY_TOP_EDGE_PIXEL_Y):
10505         (WINDOW_DISPLAY_BOTTOM_EDGE_PIXEL_Y): Macros to get various
10506         pixel values related to windows.
10508 Mon Jul 21 12:22:02 1997  Gerd Moellmann  <gerd@acm.org>
10510         * xterm.c (XTflash): Flash last line of frame.
10512         * dispextern.h (cursor_in_echo_area): Extern declaration.
10514         * xterm.c (dumpglyphs): 8-bit version to test if my Xserver
10515         freezes stem from 16-bit functions.
10517         * xterm.c (x_display_and_set_cursor): Don't display hollow
10518         cursor in mini windows.
10520         * window.c (replace_window): Initialize PHYS_CURSOR_TYPE.
10521         (make_window): Ditto.
10523         * xterm.c (x_erase_phys_cursor): Erase cursor image.
10524         (x_display_and_set_cursor): Merged version of X_DISPLAY_BOX_CURSOR
10525         and X_DISPLAY_BAR_CURSOR.
10526         (x_display_cursor): Use it.
10527         (x_update_window_cursor): Use it.
10529         * xdisp.c (display_text_line): Set cursor for window even if not
10530         selected.
10532         * xterm.c (x_display_bar_cursor): Use HPOS and VPOS instead
10533         of X and Y to denote matrix positions.
10534         (x_display_cursor): Ditto.
10536         * dispnew.c (scrolling_window): Scrolling for windows.
10538 Wed Jul 16 13:37:51 1997  Gerd Moellmann  <gerd@acm.org>
10540         * dispnew.c (build_frame_matrix): Work on windows with update
10541         flag set.
10542         (build_frame_matrix_from_window_tree): Ditto.
10543         (build_frame_matrix_from_leaf_window): Ditto.
10545         * xdisp.c (echo_area_display): Set MUST_BE_UPDATED_P instead of
10546         building frame matrix.
10547         (redisplay_internal): Set window update flags instead of
10548         building frame matrix.
10550         * minibuf.c (read_minibuf): Set MUST_BE_UPDATED_P instead of
10551         building frame matrix.
10553         * window.c (make_window): Initialize new members.
10554         (replace_window): Ditto.
10556         * xfns.c (Fx_create_frame): Don't set PHYS_CURSOR_X to -1.
10557         I don't believe this is really necessary.
10559         * dispnew.c (build_frame_matrix_from_leaf_window): Determine
10560         border glyph once.
10562 Tue Jul 15 13:58:33 1997  Gerd Moellmann  <gerd@acm.org>
10564         * window.c (mark_window_cursors_off): Mark all cursors in
10565         window tree off.
10567         * xterm.c (x_display_box_cursor): Window paraemter.  Use
10568         window matrix.
10569         (glyph_to_pixel_pos): Convert matrix pos -> pixels.
10570         (pixel_to_glyph_pos): Convert pixel pos -> matrix pos.
10571         (x_update_cursor): Work on windows.
10572         (x_display_bar_cursor): Ditto.
10573         (x_draw_single_glyph): Ditto.
10575         * xterm.h: Prototype for X_DISPLAY_CURSOR.
10577         * xterm.c (XTcursor_to): Void return type.  Test for
10578         UPDATED_WINDOW.  Call x_display_cursor with window.
10579         (x_display_cursor): Void return type.  Window instead of frame
10580         parameter.
10582         * window.h (WINDOW_RIGHTMOST_P, WINDOW_TOPMOST_P): Use functions below.
10584         * window.c (window_rightmost_p, window_topmost_p): Based on
10585         window tree.
10587         * dispnew.c (adjust_frame_message_buffer): Allocate with
10588         FRAME_MESSAGE_BUF_SIZE.
10590         * window.h: PHYS_CURSOR_.* added.
10592         * frame.h (struct frame): Cursor information removed.
10594         * frame.h (FRAME_SCROLL_BAR_WIDTH): Removed because unused.
10595         (FRAME_WINDOW_WIDTH_ARG): Don't add scroll bar width.
10597         * window.h (WINDOW_LEFT_MARGIN): Remove FRAME_LEFT_SCROLL_BAR.
10599         * window.c (window_internal_width): Scroll bars no longer
10600         part of window.
10602         * xterm.c (XTclear_end_of_line): FRAME_LEFT_SCROLL_BAR_WIDTH removed.
10604         * xfns.c (x_set_scroll_bar_width): FRAME_LEFT_SCROLL_BAR_WIDTH removed.
10606         * xdisp.c (echo_area_display): FRAME_LEFT_SCROLL_BAR_WIDTH removed.
10607         (redisplay_internal): Ditto.
10608         (redisplay_window): Ditto.
10609         (redisplay_window): Ditto.
10610         (display_text_line): Ditto.
10611         (display_mode_line): Ditto.
10613         * minibuf.c (read_minibuf): FRAME_LEFT_SCROLL_BAR_WIDTH removed.
10615         * dispnew.c (set_cursor_to): FRAME_LEFT_SCROLL_BAR_WIDTH removed.
10616         (direct_output_for_insert): Ditto.
10617         (direct_output_forward_char): Ditto.
10618         (update_frame_1): Ditto.
10620 Mon Jul 14 12:30:03 1997  Gerd Moellmann  <gerd@acm.org>
10622         * dispnew.c (updated_window): Set by UPDATE_WINDOW to the window
10623         being updated.
10624         (update_window): Set and clear it.
10626         * dispnew.c (update_window_line, update_window, scrolling_window):
10627         First versions.
10629         * dispnew.c (build_frame_matrix_from_leaf_window): Add vertical
10630         bar for window borders.
10631         (fill_up_glyph_row_area_with_spaces): Fill an area of a row
10632         with spaces.
10633         (fill_up_glyph_row_with_spaces): Call above function.
10635         * xdisp.c (display_text_line): Don't add vertical bar for
10636         window borders.
10637         (display_string): Ditto.
10639         * window.c (make_window): Init CURSOR_VPOS/HPOS.
10640         (replace_window): Ditto.
10642         * xterm.c (XTwrite_glyphs): Use selected window cursor position.
10644         * xfns.c (Fx_contour_region): Use selected window cursor position.
10645         (Fx_uncontour_region): Ditto.
10646         (Fx_select_region): Ditto.
10648         * frame.c (make_frame): Remove CURSOR_X/Y.
10650         * xdisp.c (redisplay_internal): Use window cursor position.
10652         * dispnew.c (update_frame_1): Use cursor position of selected
10653         window.
10654         (change_frame_size_1): Ditto.
10656         * xterm.c (XTupdate_begin): Set CURS_X/Y from selected window.
10657         (XTwrite_glyphs): Use cursor position of selected window.
10659         * xfns.c (x_set_scroll_bar_width): Set cursor pos of selected window.
10661         * dispnew.c (set_cursor_to): Set window cursor position.
10662         (direct_output_for_insert): Use window cursor position.
10663         (init_display): Don't use frame cursor position.
10665         * window.h: CURSOR_VPOS/HPOS added.
10667         * frame.h (struct frame): CURSOR_X/Y removed.
10668         (FRAME_CURSOR_X): Removed.
10669         (FRAME_CURSOR_Y): Ditto.
10671         * dispnew.c (direct_output_for_insert): LAST_POINT_X removed.
10672         (direct_output_forward_char): Ditto.
10674         * xdisp.c (redisplay_internal): LAST_POINT_X and LAST_POINT_Y removed.
10676         * window.c (make_window): LAST_POINT_X and LAST_POINT_Y removed.
10678         * window.h: LAST_POINT_X and LAST_POINT_Y removed.
10680 Sun Jul 13 14:18:24 1997  Gerd Moellmann  <gerd@acm.org>
10682         * xdisp.c: Bug fixes using SET_CURSOR with HPOS 0 instead
10683         of FRAME_LEFT_SCROLL_BAR_WIDTH.
10685         * dispextern.h: Changed function names.
10687         * dispnew.c (scrolling): Don't call SCROLLING_1 if WINDOW_SIZE
10688         < 2.
10689         (clear_window_matrices): Formerly two functions for desired
10690         and current matrix.
10691         (update_frame_1): Call CLEAR_DESIRED_MATRICES.
10692         (update_frame): Return return value from UPDATE_FRAME_1.
10694 Sat Jul 12 12:58:48 1997  Gerd Moellmann  <gerd@acm.org>
10696         * xdisp.c (try_window): Set WINDOW_END_VPOS with window relative
10697         LAST_TEXT_VPOS.
10699         * frame.c (set_menu_bar_lines): Adjust matrices.
10701         * dispnew.c (set_cursor_to): Set cursor position.
10703         * minibuf.c (read_minibuf): Build frame matrix.
10705         * xdisp.c (this_line_start_hpos): Renamed to
10706         THIS_LINE_START_WINDOW_HPOS to make it clear that this is window
10707         relative.
10708         (this_line_vpos): Renamed to THIS_LINE_WINDOW_VPOS for the same
10709         reason.
10711         * dispnew.c (build_frame_matrix): Don't clear rows of the
10712         menu bar.
10713         (clear_window_records): Clear window rows.
10714         (clear_frame_records): Clear window and frame rows.
10715         (clear_glyph_matrix): Set all rows of a matrix to empty.
10717         * xdisp.c (echo_area_display): Parameter UPDATE_FRAME_P.
10718         Update frame if set.
10719         (message2_nolog): Pass 1 to ECHO_AREA_DISPLAY.  UPDATE_FRAME
10720         removed.
10721         (redisplay_internal): Pass 0 to ECHO_AREA_DISPLAY.
10722         (redisplay_internal): Build frame matrix before UPDATE_FRAME.
10724         * dispnew.c (assign_row): Assign one glyph row to another.
10725         (mirrored_make_current): Use it.
10726         (mirror_make_current): Use it.
10727         (update_line): Rely on MIRRORED_MAKE_CURRENT to set flags and
10728         used counters for the current glyph row.
10731 Fri Jul 11 13:16:50 1997  Gerd Moellmann  <gerd@acm.org>
10733         * lisp.h: Prototype for SCAN_BUFFER.
10735         * xdisp.c (redisplay_windows): Simplified.
10737         * dispnew.c (window_to_frame_vpos): Convert window to frame vpos
10738         with debug checks.
10739         (window_to_frame_hpos): Convert window to frame hpos with checks.
10740         (frame_to_window_vpos): Convert frame to window vpos with checks.
10741         (frame_to_window_hpos): Convert frame to window hpos with checks.
10743         * dispextern.h: PRESERVE_OTHER_COLUMNS removed.
10745         * dispnew.c: PRESERVE_OTHER_COLUMNS removed.
10747         * xdisp.c (redisplay_internal): Another instance of
10748         DISPLAY_TEXT_LINE with window relative VPOS.
10749         (redisplay_internal): Remove PRESERVE_OTHER_COLUMNS.
10751         * dispnew.c (init_desired_glyphs): Do it on window matrices,
10752         only.
10754         * xdisp.c (try_window_id): Use CANCEL_WINDOW_LINE.
10755         (redisplay_internal): Ditto.
10757         * dispnew.c (cancel_window_line): Use window matrix.  Changed
10758         name to CANCEL_WINDOW_LINE.
10760         * xdisp.c (try_window_id): Use DISPLAY_TEXT_LINE with window
10761         relative VPOS.
10763         * dispextern.h (WINDOW_TO_FRAME_VPOS): Convert window vpos
10764         to frame vpos.
10765         (WINDOW_TO_FRAME_HPOS): Convert window hpos to frame hpos.
10766         (FRAME_TO_WINDOW_VPOS): Convert frame vpos to window vpos.
10767         (FRAME_TO_WINDOW_HPOS): Convert frame hpos to window hpos.
10769         * xdisp.c (try_window_id): Use ADJUST_WINDOW_CHARSTARTS with
10770         window relative VPOS.
10771         (redisplay_internal): Use ADJUST_WINDOW_CHARSTARTS with window
10772         relative VPOS.
10774         * dispnew.c (adjust_window_charstarts): Use INCREMENT_GLYPH_-
10775         MATRIX_BUFFER_POSITIONS.
10777         * xdisp.c (try_window_id): Use SCROLL_FULL_WIDTH_WINDOW.
10779         * dispextern.h: Prototype for SCROLL_FULL_WIDTH_WINDOW.
10781         * dispnew.c (scroll_frame_lines): Make it work on window
10782         matrix.  Change name to scroll_full_width_window.
10784         * xdisp.c (message2_nolog): Don't fwrite NULL message If
10785         NONINTERACTIVE.
10787 Mon Jul  7 14:44:38 1997  Gerd Moellmann  <gerd@acm.org>
10789         * dispnew.c (init_desired_glyphs): Clear both frame matrix
10790         and window matrices.
10791         (adjust_window_charstarts): Use window matrix.
10792         (cancel_my_columns): Use window matrix.
10793         (direct_output_for_insert): Use window matrix, only.
10795         * xdisp.c (display_glyphs): Extracted code from DISPLAY_STRING.
10796         (display_string): Call display_glyphs.
10797         (display_menu_bar_string): Display a string in a menu bar line.
10798         (display_menu_bar): Use DISPLAY_MENU_BAR_STRING.
10799         (display_text_line): Use window matrix.
10800         (try_window): Use window relative positions.
10802 Sun Jul  6 17:02:26 1997  Gerd Moellmann  <gerd@acm.org>
10804         * dispnew.c (adjust_frame_glyphs): Allocate window matrices from
10805         (0, 0).
10806         (allocate_leaf_matrix): Add FRAME_MENU_BAR_LINES to the height of
10807         top-most windows.
10809         * window.h (WINDOW_TOPMOST_P): Added.
10811         * xdisp.c (echo_area_display): Use PREPARE_DESIRED_ROW.
10812         (redisplay_window): Ditto.
10813         (display_text_line): Ditto.
10814         (display_menu_bar): Ditto.
10815         (display_mode_line): Ditto.
10816         (display_mode_line): Use window matrix.
10817         (display_string): Use window matrix.
10818         (display_mode_element): Ditto.
10819         (echo_area_display): Don't display if frame has no pools yet.
10820         (echo_area_display): Work with window matrix for mini window.
10821         (redisplay_window): Use window marix for mini window.
10822         (display_text_line): Assume HPOS and VPOS are window relative and
10823         use that for DISPLAY_STRING.
10825         * dispextern.h: Prototype for prepare_desired_row.
10827         * dispnew.c (prepare_desired_row): Replacement for GET_DISPLAY_LINE.
10829         * dispnew.c (adjust_window_charstarts): Always allocate window
10830         matrices.
10831         (clear_glyph_row): Only reset used counters and flags.
10833 Sat Jul  5 14:55:44 1997  Gerd Moellmann  <gerd@acm.org>
10835         * dispnew.c (scroll_frame_lines): Don't assume first scolled
10836         line is non-empty.
10837         (realloc_glyph_pool): Don't add 1 to the pool size.
10838         (adjust_glyph_matrix): Don't add 1 to pointers to glyph areas.
10840         * dispnew.c (line_hash_code): Don't use null-glyph end marker.
10841         (line_draw_cost): Ditto.
10842         (update_line): Ditto.
10843         (update_line): Use SPACE_GLYPH.
10844         (count_blanks): Additional parameter LEN.
10846         * xdisp.c (display_text_line): Use SPACE_GLYPH.
10847         (display_text_line): Don't add null-glyph end marker.
10848         (display_string): Use SPACE_GLYPH.
10849         (display_string): Don't use null-glyph end marker.
10851         * term.c (clear_end_of_line): Use SPACE_GLYPH.
10853         * dispnew.c (clear_glyph_row): Don't use null-glyph end markers.
10854         (fill_up_glyph_row_with_spaces): Ditto.
10855         (preserve_other_columns): Add SPACE_GLYPH at then end of desired
10856         rows, instead of null-glyphs.
10857         (direct_output_for_insert): Don't add null-glyph end marker.
10859         * scroll.c (do_direct_scrolling): Change algorithm to construct
10860         vector of lines assigned.  Call MIRRORED_LINE_DANCE:
10861         (do_scrolling): Ditto.
10863         * dispnew.c (mirror_line_dance): Mirror line assignments in a
10864         frame matrix in window matrices.
10865         (mirrored_line_dance): Do line assignments during scrolling.
10866         Maybe do corresponding assignments in window matrices.
10867         (check_window_matrix_pointers): Check that window rows and frame
10868         rows agree about glyph pointers.
10869         (check_matrix_pointers): Ditto.
10870         (mirrored_make_current): Make a row of a desired matrix current;
10871         maybe mirror the operation in window matrices.
10872         (mirror_make_current): Make window desired matrix row current when
10873         frame matrix row was made current.
10875 Fri Jul  4 13:27:46 1997  Gerd Moellmann  <gerd@acm.org>
10877         * dispnew.c (check_matrix_pointer_lossage): Check against
10878         pointer lossage in matrices.
10879         (get_glyph_matrix_row): Removed.
10881         * scroll.c (do_scrolling): Simplified.
10882         (do_direct_scrolling): Simplified.
10883         (scrolling_1): Pass CURRENT_MATRIX instead of FRAME to
10884         DO_.*SCROLLING.
10887         * dispnew.c (ins_del_glyph_rows): Insert/delete rows in a matrix.
10888         (rotate_vector): Removed.
10889         (rotate_pointers): Removed.
10890         (scroll_frame_lines): Simplified.
10892 Thu Jul  3 13:54:21 1997  Gerd Moellmann  <gerd@acm.org>
10894         * dispextern.h (MATRIX_ROW_SWAP_CONTENTS): Removed.
10896         * dispnew.c (increment_glyph_matrix_buffer_positions): Does
10897         what the name says.
10898         (clear_glyph_row): Make a glyph row structure empty.
10899         (make_matrix_row_current): Make a glyph row current.
10900         (make_window_matrix_row_current): Perform analogous row swaps
10901         for window matrices.
10902         (update_line): Call make_matrix_row_current.
10904 Wed Jul  2 13:43:35 1997  Gerd Moellmann  <gerd@acm.org>
10906         * dispextern.h (SET_MATRIX_ROW_ENABLED_P): Better macro name.
10907         (SET_MATRIX_ROW_INVERSE_P): Better name and HIGHLIGHT_P ->
10908         INVERSE_P.
10909         (MATRIX_ROW_INVERSE_P): Former MATRIX_ROW_HIGHLIGHT_P.
10910         (struct glyph_row): HIGHLIGHT_P -> INVERSE_P
10912         * all files: use above new names.
10914         * dispnew.c (scroll_frame_lines): Simplified.  Use
10915         SCROLL_GLYPH_MATRIX.
10916         (make_glyph_row_empty): Mark a glyph row empty.
10917         (increment_glyph_row_buffer_positions): Increment
10918         buffer positions in a glyph row.
10919         (increment_glyph_matrix_buffer_positions): Increment buffer
10920         positions in a range of rows.
10921         (scroll_glyph_matrix): Scroll a glyph matrix.
10922         (swap_glyphs_in_rows): Swap glyphs between rows.
10923         (swap_glyph_pointers): Swap pointers between rows.
10924         (glyph_row_slice_p): Return 1 if one row is a slice of another.
10925         (init_display): Initialize SPACE_GLYPH.
10926         (fill_up_glyph_row_areas_with_spaces): Fill up areas with
10927         spaces.
10929 Tue Jul  1 13:49:55 1997  Gerd Moellmann  <gerd@acm.org>
10931         * xterm.c (dumprectangle): Use vectors in glyph rows.
10933         * xdisp.c (display_text_line): Use vectors in glyph rows.
10934         (display_string): Ditto.
10936         * scroll.c (do_scrolling): Use vectors in glyph rows.
10937         (do_direct_scrolling): Ditto.
10939         * alloc.c (mark_object): Use vectors in glyph rows.
10940         Mark for all frame types.
10942         * dispnew.c (adjust_glyph_matrix): Use vectors to glyphs in
10943         glyph rows.
10944         (get_glyph_matrix_row): Ditto.
10945         (matrix_row): Ditto.
10946         (rotate_pointers): Ditto.
10947         (scroll_frame_lines): Ditto.
10948         (preserve_other_columns): Ditto.
10949         (cancel_my_columns): Ditto.
10950         (update_line): Ditto.
10951         (direct_output_for_insert): Ditto.
10953         * dispextern.h (struct glyph_row): Use a vector of pointers
10954         instead of individual members.  Use a vector of used counters.
10955         (MATRIX_ROW_SWAP_CONTENTS): Use vectors.
10956         (MATRIX_ROW_GLYPH_START): Ditto.
10957         (MATRIX_ROW_GLYPH_END): Ditto.
10958         (MATRIX_ROW_USED): Ditto.
10959         (MATRIX_ROW_SET_USED): Ditto.
10961         * dispnew.c (line_hash_code): Simplified.
10963 Mon Jun 30 20:39:38 1997  Gerd Moellmann  <gerd@acm.org>
10965         * dispnew.c: Prototype for ROTATE_VECTOR, ROTATE_POINTERS,
10966         CHANGE_FRAME_SIZE_1
10967         (preserve_other_columns): Void return.
10968         (cancel_my_columns): Void return type.
10969         (scrolling): Int return type.
10970         (do_pending_window_change): Void return type.
10971         (change_frame_size): Ditto.
10972         (bitch_at_user): Ditto.
10973         (init_display): Ditto.
10974         (syms_of_display): Ditto.
10976         * dispextern.h: add prototypes for REDRAW_FRAME,
10977         REDRAW_GARBAGED_FRAMES, CANCEL_LINE, CLEAR_FRAME_RECORDS,
10978         INIT_DESIRED_GLYPHS, SCROLL_FRAME_LINES, PRESERVE_OTHER_COLUMNS,
10979         ADJUST_WINDOW_CHARSTARTS, CANCEL_MY_COLUMNS,
10980         DIRECT_OUTPUT_FOR_INSERT, DIRECT_OUTPUT_FORWARD_CHAR,
10981         UPDATE_FRAME, SCROLLING, BUFFER_POSN_FROM_COORDS,
10982         DO_PENDING_WINDOW_CHANGE, CHANGE_FRAME_SIZE, BITCH_AT_USER,
10983         SIT_FOR, INIT_DISPLAY, SYMS_OF_DISPLAY,
10985         * dispnew.c (redraw_frame): FRAME_PTR -> struct frame.  Return
10986         void.
10987         (cancel_line): Return void.
10988         (clear_frame_records):  Return void.
10990         * dispextern.h (struct glyph): Remove GLYPH, add bit-fields.
10991         (SET_CHAR_GLYPH): Fill a character glyph.
10992         (SET_CHAR_GLYPH_FROM_GLYPH): Set a character glyph from a GLYPH.
10993         (GLYPH_FROM_CHAR_GLYPH): Construct a GLYPH from a character
10994         glyph.
10995         (CHAR_GLYPH_CHAR_CODE): Return character code of a glyph.
10996         (SET_CHAR_GLYPH_CHAR_CODE): Set character code of a glyph.
10997         (CHAR_GLYPH_FACE_ID): Return face id of a glyph.
10998         (SET_CHAR_GLYPH_FACE_ID): Set face id of a glyph.
10999         (CHAR_GLYPH_PADDING_P): Return padding flag of a glyph.
11000         (SET_CHAR_GLYPH_PADDING_P): Set padding flag.
11001         (CHAR_GLYPH_REVERSE_P): Return reversed flag.
11002         (SET_CHAR_GLYPH_REVERSE_P): Set reversed flag.
11003         (MATRIX_ROW_SWAP_CONTENTS): Swap pointers between rows.
11005         * term.c (reassert_line_highlight): Check CHARS_WASTED == 0.
11007         * window.h (struct window): Add comment that no Lisp data may
11008         come below CURRENT_MATRIX.
11010         * alloc.c (mark_object): Change window mark code to stop with
11011         member CURRENT_MATRIX.
11013 Sat Jun 28 13:54:55 1997  Gerd Moellmann  <gerd@acm.org>
11015         * scroll.c (do_scrolling): Change algorithm to use pointers.
11016         (do_direct_scrolling): Ditto.
11018         * dispnew.c (get_glyph_matrix_row): Use pointers stored in rows.
11019         (new_glyph_pool): Formerly new_FRAME_GLYPH_MATRIX.
11020         (free_glyph_pool): Formerly FREE_FRAME_GLYPH_MATRIX
11021         (realloc_glyph_pool): Formerly REALLOC_FRAME_GLYPH_MATRIX.
11022         Returns 1 if pool changed.
11023         (matrix_row): Additional check for lost pointers to glyph rows.
11024         (compute_matrices): Additional parameter DIM_P set means that no
11025         allocation should take place.  Addtional parameter
11026         ANY_WINDOWS_CHANGED_P set if any windows matrix has changed.
11027         (compute_leaf_matrix): Additional parameter CHANGED_P set to 1
11028         when window matrix changes.  Additional parameter DIM_ONLY_P set
11029         to 1 to indicate that no allocation should take place.
11030         (adjust_frame_glyphs): Construct new glyph pools and glyph
11031         matrices.  Optimize frame redraws.
11032         (free_glyphs): Free pools.
11033         (check_glyph_memory): Check pools not freed.
11034         (rotate_pointers): Rotate pointers in a vector of glyph rows.
11035         (scroll_frame_lines): Change algorithm to use pointers.
11036         (update_line): Ditto.
11038         * dispextern.h (struct glyph_row): Use pointers to areas in a row.
11039         (global): All macro names changed from prefix FRAME_MATRIX to
11040         MATRIX.
11042 Fri Jun 27 14:51:15 1997  Gerd Moellmann  <gerd@acm.org>
11044         * dispextern.h (struct glyph_pool): Replacement for former
11045         FRAME_GLYPH_MATRIX.
11046         (struct glyph_matrix): No longer contains sizes of allocated
11047         areas.
11049         * xdisp.c (redisplay_internal): Don't redisplay if frame has
11050         no glyph pools.
11052         * frame.c (make_frame): Initialize pools.
11054 Thu Jun 26 00:00:55 1997  Gerd Moellmann  <gerd@acm.org>
11056         * scroll.c (do_direct_scrolling): Don't assume that the
11057         line moving algorithm has no intermediate steps.
11058         (do_scrolling): Ditto.
11060         * Makefile.in (alloc.o): Add dependency dispextern.h.
11062         * alloc.c: Include dispextern.h for glyph definitions.
11064         * dispnew.c (get_glyph_matrix_row): Return 1 if ROW_INDEX
11065         is legal, return 0 otherwise.
11067         * window.h: Add comment that windows are marked specially.
11069         * alloc.c (mark_object): Mark windows specially.
11072 Wed Jun 25 15:22:58 1997  Gerd Moellmann  <gerd@acm.org>
11074         * dispextern.h (struct glyph): Add member OBJECT
11075         referencing a Lisp object from which a glyph was drawn.
11076         Member TEXT_POSITION renamed POSITION.
11077         * xterm.c, xdisp.c, dispnew.c: Rename TEXT_POSITION -> POSITION.
11079         * alloc.c: Include dispextern.h
11080         (mark_object): Mark objects referenced from glyphs.
11082         * frame.c (make_frame): Initialize DECODE_MODE_SPEC_BUFFER.
11084         * scroll.c (do_direct_scrolling): Remove TEMP_MATRIX.
11085         (do_scrolling): Ditto.
11087         * frame.h (struct frame): TEMP_MATRIX removed.
11088         DECODE_MODE_SPEC_BUFFER added.
11090         * window.h: TEMP_MATRIX removed.
11092         * scroll.c: OPHYS_LINES removed.
11094         * dispnew.c: OPHYS_LINES and OPHYS_LINES_LENGTH removed.
11095         FRAME_PTR -> struct frame *.
11097         * termhooks.h: Prototypes for INSERT_GLYPHS_HOOK,
11098         WRITE_GLYPHS_HOOK, DELETE_GLYPHS_HOOK,
11100         * term.c: Prototypes for INSERT_GLYPHS_HOOK,
11101         WRITE_GLYPHS_HOOK, DELETE_GLYPHS_HOOK,
11103         * xdisp.c (redisplay_internal): Remove call to VERIFY_CHARSTARTS.
11104         (do_verify_charstarts): Removed.
11106         * frame.c (Fmake_terminal_frame): Adjust glyphs.
11107         (Fdelete_frame): Free glyphs.
11108         (make_frame): Initialize matrix fields in frame.
11110         * config.in (PROTO): Added.
11112         * emacs.c (shut_down_emacs): Check glyph memory.
11114         * window.c (Fdelete_window): Free window matrices.
11115         (Fset_window_configuration): Ditto.
11116         (Fdelete_window): Adjust glyphs.
11117         (Fsplit_window): Ditto.
11118         (change_window_height): Ditto.
11119         (Fset_window_configuration): Ditto.
11120         (make_window): Initialize DESIRED_MATRIX and CURRENT_MATRIX.
11121         (replace_window): Reset DESIRED_MATRIX and CURRENT_MATRIX
11123         * Makefile.in (window.o): Add dependency window.c -> dispextern.h
11125         * window.c: Include dispextern.h
11127         * scroll.c (do_scrolling): Use new glyphs.
11128         (do_direct_scrolling): Ditto.
11130         * xdisp.c: Some function prototypes.
11131         (redisplay_internal): Don't do anything if matrices not yet set.
11132         (redisplay_internal): Use new glyphs.
11133         (try_window_id): Ditto.
11134         (copy_part_of_rope): Ditto.
11135         (display_text_line): Ditto.
11136         (display_menu_bar): Ditto.
11137         (display_mode_line): Ditto.
11138         (display_string): Ditto.
11140         * xterm.c: Prototypes for some local functions.
11141         (dumpglyphs): Use new glyphs.
11142         (XTwrite_glyphs): Ditto.
11143         (dumprectangle): Ditto.
11144         (note_mouse_highlight): Ditto.
11145         (fast_find_position): Ditto.
11146         (show_mouse_face): Ditto.
11147         (x_draw_single_glyph): Ditto.
11148         (x_display_bar_cursor): Ditto.
11149         (x_display_box_cursor): Ditto.
11150         (x_new_font): Adjust glyphs when font change.
11152         * term.c (clear_end_of_line): Use new glyphs.
11153         (write_glyphs): Ditto.
11154         (insert_glyphs): Ditto.
11156         * Makefile.in (term.o): term.c depends on dispextern.h
11158         * term.c: Include dispextern.h
11160         * dispnew.c (direct_output_forward_char): Old glyph functions
11161         removed, new inserted.
11162         (line_hash_code): Use new glyphs.
11163         (line_draw_cost): Ditto
11164         (cancel_line): Ditto
11165         (clear_frame_records): Ditto.
11166         (init_desired_glyphs): Ditto.
11167         (get_display_line): Ditto
11168         (scroll_frame_lines): Ditto.
11169         (preserve_other_columns): Ditto.
11170         (adjust_window_charstarts): Ditto.
11171         (cancel_my_columns): Ditto.
11172         (direct_output_for_insert): Ditto.
11173         (update_frame): Ditto.
11174         (quit_error_check): Made empty.
11175         (scrolling): Use new glyphs.
11176         (count_blanks): Ditto.
11177         (count_match): Ditto.
11178         (update_line): Ditto.
11179         (init_display): Adjust glyphs initially.
11180         (change_frame_size_1): Adjust glyphs.
11182         * dispextern.h: Old glyphs removed, new added.
11184         * xfaces.c (min_char_bounds): Get smallest char in loaded fonts.
11186         * xterm.h: Prototype for min_char_bounds.
11188         * window.h (struct window): Remove old glyphs, add new.
11190         * frame.h (struct frame): Remove old glyphs, add new.
11192 1999-07-20  Dave Love  <fx@gnu.org>
11194         * buffer.c (syms_of_buffer): Make
11195         default-enable-multibyte-characters a user variable.
11197 After the release of 20.4, development was split into two separate
11198 code lines.  One line contained the code for Emacs 21, and the other
11199 one the code for the 20.x releases after 20.4.  The following change
11200 log entries up to the entry ``20.4 released'' are for the 20.x code
11201 line.  Change logs above this notice are those for the 21.x code line.
11203 2000-06-13  Gerd Moellmann  <gerd@gnu.org>
11205         * Version 20.7 released.
11206         
11207 2000-06-01  Andrew Innes  <andrewi@gnu.org>
11209         * w32proc.c (w32_executable_type): Determine whether program is a
11210         GUI app.
11211         (sys_spawnve): Tell create_child whether app is a GUI app.
11212         (create_child): Don't hide window for GUI apps.
11213         (syms_of_ntproc): Update docstring for w32-start-process-show-window.
11215 2000-05-30  Andrew Innes  <andrewi@gnu.org>
11217         * w32.c (sys_socket): Revert the previous fix, and use a better
11218         approach for detecting when a socket cannot be made
11219         non-inheritable by duplicating the handle.
11221 2000-05-30  Dave Love  <fx@gnu.org>
11223         * s/irix5-0.h (LD_SWITCH_SYSTEM): Don't define to `-G 0'.
11224         (C_SWITCH_SYSTEM) [__GNUC__]: Put in #if 0.
11226 2000-05-24  Gerd Moellmann  <gerd@gnu.org>
11228         * m/iris5d.h (UNEXEC): Use unexsgi.
11230 2000-05-23  Kenichi Handa  <handa@etl.go.jp>
11232         * xdisp.c (redisplay_window): Set startp_byte (not startp) to
11233         ZV_BYTE.
11235 2000-05-23  Andrew Innes  <andrewi@gnu.org>
11237         * w32.c (sys_socket): To work around a problem with MS Proxy
11238         winsock, don't attempt to make sockets non-inheritable if the
11239         proxy winsock appears to be present.
11241 2000-05-23  Gerd Moellmann  <gerd@gnu.org>
11243         * s/gnu-linux.h (setpgrp): Don't define it here because this
11244         prevents compilation on GNU/Linux systems with glib 2.2.
11246         * callproc.c, emacs.c, sysdep.c (setpgrp) [HAVE_SETPGID]: Define
11247         as setpgid.
11248         
11249 2000-05-20  NIIBE Yutaka  <gniibe@mri.co.jp>
11250         
11251         * s/gnu-linux.h (UNIX98_PTYS) [HAVE_GRANTPT]: Define.
11252         (PTY_ITERATION, PTY_NAME_SPRINTF, PTY_OPEN, PTY_TTY_NAME_SPRINTF)
11253         [HAVE_GRANTPT]: Define.
11254         (C_SWITCH_SYSTEM): Add -D_XOPEN_SOURCE.
11256         * sysdep.c (setup_pty): Treat case that UNIX98_PTYS is defined
11257         like SYSV_PTYS.
11259         * config.in (HAVE_GRANDPT, HAVE_GETPT): New defines.
11261         * process.c (toplevel) [UNIX98_PTYS]: Include stdlib.h.
11263 2000-05-20  Gerd Moellmann  <gerd@gnu.org>
11265         * buffer.c (Fbury_buffer): Avoid trouble from burying a killed
11266         buffer.
11268         * keyboard.c (lispy_mouse_names): Variable removed.
11269         (Vlispy_mouse_stem): New variable.
11270         (syms_of_keyboard): Initialize Vlispy_mouse_stem.
11271         (make_lispy_event) <mouse_click, scroll_bar_click>: Don't abort
11272         for any mouse button number.  Increase size of mouse_syms and
11273         button_down_location as needed.  Call modify_event_symbol with
11274         different arguments.
11275         (make_lispy_event) <scroll_bar_click> [USE_TOOLKIT_SCROLL_BARS]:
11276         Call modify_event_symbol with different arguments.
11277         (make_lispy_event) <w32_scroll_bar_click> [WINDOWSNT]: Don't abort
11278         for any button number.  Call modify_event_symbol with different
11279         arguments.
11280         (modify_event_symbol): Rename NAME_ALIST to NAME_ALIST_OR_STEM.
11281         Accept a string for NAME_ALIST_OR_STEM.
11283         * fns.c (larger_vector): New function.
11285         * keyboard.c (Fclear_this_command_keys): Clear recent_keys
11286         vector, too.
11288 2000-05-16  Gerd Moellmann  <gerd@gnu.org>
11290         * frame.c (frames_bury_buffer): Don't add a buffer to the frame's
11291         buffer list that wasn't selected in that frame.
11293         * filelock.c (get_boot_time): To obtain an 8 char file name, use a
11294         2 char prefix, and call make_temp_name with second arg non-zero.
11296         * fileio.c (make_temp_name): New function, extracted from
11297         Fmake_temp_name.
11298         (Fmake_temp_name): Use it.
11300 2000-05-15  Gerd Moellmann  <gerd@gnu.org>
11302         * unexelf.c, m/iris4d.h, m/iris5d.h: Use most current development 
11303         versions.
11305 2000-05-12  Jason Rumney  <jasonr@gnu.org>
11307         * w32bdf.c (w32_BDF_TextOut): Change bytelen arg to char_len
11308         as used by callers.
11310         * w32term.c (dumpglyphs): Fill background if character goes
11311         higher or lower than normal. W32_TEXTOUT outputs chars not
11312         bytes. Handle bdf fonts when getting width of composite chars
11313         component. Allow for multibyte first glyph in composite char.
11315 2000-05-11  Jason Rumney  <jasonr@gnu.org>
11317         * w32menu.c (w32_menu_show): Call ENCODE_SYSTEM for item_name
11318         and descrip.
11320 2000-05-11  Andrew Innes  <andrewi@gnu.org>
11322         * w32.c (sys_socket): Check return value of DuplicateHandle,
11323         try to use original socket if it fails.
11325 2000-05-11  Kenichi Handa  <handa@etl.go.jp>
11327         * coding.c (code_convert_string): GCPRO str before calling
11328         temp_output_buffer_setup.
11330 2000-05-05  Gerd Moellmann  <gerd@gnu.org>
11331         
11332         * insdel.c (insert_from_buffer_1): Adjust FROM position by number
11333         of inserted characters when BUF equals the current buffer, and PT
11334         is in front of or equal to FROM.
11335         
11336 2000-05-04  Andrew Innes  <andrewi@gnu.org>
11338         * w32fns.c (w32_wnd_proc) <WM_GETMINMAXINFO>: Reduce the maximum
11339         tracking limits to fit within the Windows 9x 16-bit limit.
11341 2000-05-02  Gerd Moellmann  <gerd@gnu.org>
11343         * eval.c (Fsignal): If lisp_eval_depth or spepdl_size are near
11344         to the limits, increase the limits.
11346         * s/openbsd.h (LIBS_TERMCAP): Undefine.
11348         * process.c (send_process): Remove local variable `procname' that
11349         might become invalid when a GC happens.  Instead, access the
11350         process name slot directly.
11351         
11352         * s/freebsd.h (LIBS_TERMCAP): Define only for __FreeBSD_version
11353         <= 400000.
11355         * sysdep.c (read_intput_waiting): Add prototype.
11356         (read_input_waiting): Call read_socket_hook with 4 arguments.
11358 2000-02-26  Gerd Moellmann  <gerd@gnu.org>
11360         * Version 20.6 released.
11361         
11362 2000-02-25  Miyashita Hisashi  <himi@bird.scphys.kyoto-u.ac.jp>
11364         * ccl.c (ccl_driver) [CCL_MapMultiple]: When the mapped value is
11365         `lambda', set reg[RRR] to the map index.
11366         (ccl_driver) [CCL_MapSingle]: When the mapped value is found, set
11367         reg[RRR] to 0.  Otherwise, set it to -1.
11369 2000-02-25  Andrew Innes  <andrewi@gnu.org>
11371         * w32fns.c (w32_wnd_proc) <WM_GETMINMAXINFO>: Allow resizing
11372         the Emacs frame above the screen size.
11374 2000-02-23  Andrew Innes  <andrewi@gnu.org>
11376         * w32select.c (Fw32_get_clipboard_data): Force data to be decoded
11377         even if it doesn't contain non-ascii characters, as if it were
11378         compound text.
11380         * w32menu.c: Include charset.h and coding.h.
11381         (single_submenu, w32_menu_show) [!HAVE_MULTILINGUAL_MENU]: Encode
11382         mulitbyte strings with w32-system-coding-system before using in
11383         menus.
11385         * w32fns.c (x_set_name): Encode multibyte name with
11386         w32-system-coding-system before using as frame title.
11387         (x_set_title): Ditto.
11389         * coding.h (ENCODE_SYSTEM) [WINDOWSNT]: New macro.
11390         (DECODE_SYSTEM) [WINDOWSNT]: New macro.
11391         [WINDOWSNT]: Add extern for Vw32_system_coding_system.
11393         * fileio.c (Ffile_writable_p) [WINDOWSNT]: If a file (or
11394         directory) doesn't exist, assume it can be created regardless of
11395         whether the parent directory is writable.  This is the correct
11396         thing to do, if we are not going to check the ACLs.
11398         * w32.c (init_environment): Provide default values for all
11399         required environment variables, and always set emacs_dir based on
11400         the location of emacs.exe if it appears to be in a standard
11401         location.
11402         (init_user_info): Abort if HOME or SHELL isn't set.
11404 2000-02-23  Eli Zaretskii  <eliz@is.elta.co.il>
11406         * msdos.c (IT_write_glyphs): Allocate a screen_buf buffer as
11407         large as CODING_MODE_LAST_BLOCK requires.
11409 2000-02-20  Dave Love  <fx@gnu.org>
11411         * gmalloc.c: Don't define away `const'; config.h does that.
11413 2000-02-17  Kenichi Handa  <handa@etl.go.jp>
11415         * xdisp.c (decode_mode_spec_coding): Delete superfluous code to
11416         avoid infinite error signalling.
11418 2000-02-16  Gerd Moellmann  <gerd@gnu.org>
11420         * .gdbinit (xbacktrace, xprintsym, xreload): New commands.
11422 2000-02-15  Andrew Innes  <andrewi@gnu.org>
11424         * w32proc.c (sys_kill): Fake Ctrl-C keystroke to simulate SIGINT,
11425         and Ctrl-Break to simulate SIGQUIT (known as SIGBREAK in MSVC).
11427 2000-02-15  Gerd Moellmann  <gerd@gnu.org>
11429         * m/arm.h: New file.
11430         
11431         * s/freebsd.h (BROKEN_PTY_READ_AFTER_EAGAIN): Define.
11433         * process.c (send_process) [BROKEN_PTY_READ_AFTER_EAGAIN]:
11434         Workaround for FreeBSD bug.  Clear output queue after EAGAIN in
11435         write(2).
11437 2000-02-12  Gerd Moellmann  <gerd@gnu.org>
11439         * s/hpux10.h (HAVE_XRMSETDATABASE): Define if not already defined.
11441 2000-02-09  Kenichi Handa  <handa@etl.go.jp>
11443         * ccl.c (CCL_MAKE_CHAR): New macro.
11444         (ccl_driver) <CCL_TranslateCharacter>: Check the validity of
11445         registers by CCL_MAKE_CHAR before calling translate_char.
11446         <CCL_TranslateCharacterConstTbl> Likewise.
11447         
11448 2000-02-05  Gerd Moellmann  <gerd@gnu.org>
11450         * s/irix6-5.h: Undo previous change.
11452         * s/irix5-0.h (LD_SWITCH_SYSTEM): Define only for GCC < 2.95.
11454 2000-02-03  Gerd Moellmann  <gerd@gnu.org>
11456         * m/alpha.h: Revert to version from 20.5.
11458 2000-02-02  Kenichi Handa  <handa@etl.go.jp>
11460         * ccl.c (ccl_driver) <CCL_WriteExprRegister>: Set jump_address
11461         instead of incrementing ic directly.
11462         <CCL_WriteExprConst> Likewise.
11463         <ccl_set_expr>: Set ic to jump_address.
11465 2000-01-26  Gerd Moellmann  <gerd@gnu.org>
11467         * s/irix6-5.h [__GNUC__ && __GNUC_MINOR__ >= 95]: Undef
11468         LD_SWITCH_SYSTEM inherited from irix5-0.h.
11470 2000-01-17  Gerd Moellmann  <gerd@gnu.org>
11472         * m/news-risc.h (LD_SWITCH_MACHINE): Define differently for GCC.
11473         
11474 2000-01-03  Gerd Moellmann  <gerd@gnu.org>
11476         * s/hpux9.h (NO_EDITRES): Define even if HAVE_LIBXMU.
11478 1999-12-02  Gerd Moellmann  <gerd@gnu.org>
11480         * s/usg5-4.h (LIBS_SYSTEM): Add -lgen because that's needed
11481         for building with Motif.
11482         
11483 1999-11-22  Paul Eggert  <eggert@twinsun.com>
11485         * m/alpha.h (malloc, realloc, calloc): Remove decls;
11486         stdlib.h now does this.
11488 1999-08-21  Dave Love  <fx@gnu.org>
11490         * aix3-2-5.h (C_DEBUG_SWITCH): Use -g -O.
11491         * aix4-1.h: Likewise.
11493         * irix6-5.h (C_DEBUG_SWITCH): Set for debug and optimize.
11494         
11495 1999-12-04  Gerd Moellmann  <gerd@gnu.org>
11497         * Version 20.5 released.
11498         
11499 1999-12-04  Kenichi Handa  <handa@etl.go.jp>
11501         * coding.c (Ffind_operation_coding_system): Cancel previous change.
11503         * fileio.c (decide_coding_unwind): Renamed from
11504         set_auto_coding_unwind.
11505         (Finsert_file_contents): Make single unwind protect to call both
11506         Vset_auto_coding_function and Ffind_operation_coding_system.
11508         * insdel.c (adjust_markers_for_delete): Make it non-static.
11510 1999-12-03  Gerd Moellmann  <gerd@gnu.org>
11512         * unexelf.c (unexec): Put handling of .lit4 and .lit8 in
11513         #ifdef __sgi.
11515 1999-12-03  Andreas Schwab  <schwab@suse.de>
11517         * unexelf.c (unexec): Don't copy .got section.
11519 1999-12-03  Gerd Moellmann  <gerd@gnu.org>
11521         * fileio.c (Fwrite_region): Don't call 
11522         Vselect_safe_coding_sytem_function if noninteractive.
11524 1999-12-02  Gerd Moellmann  <gerd@gnu.org>
11526         * m/iris4d.h, m/iris5d.h: Use unexsgi.o instead of unexelf.o.
11528 1999-12-01  Dave Love  <fx@gnu.org>
11530         * emacs.c (main): Set LANG=C iff AIX3_2 defined.
11532 1999-11-28  Alexandre Oliva  <oliva@dcc.unicamp.br>
11534         * unexelf.c: Auto-detect .sbss section.
11535         (round_up): Make it static.
11536         (unexec): Declare alignment as Elf Word.  Skip ``Program
11537         segment above .bss'' test on MIPS without .sbss.
11538         Copy sections .got and .sdata1 sections.  Adjust offsets in
11539         sections .sdata, .lit4, .lit8, .got and .sdata1.
11541 1999-11-28  Alexandre Oliva  <oliva@dcc.unicamp.br>
11543         * unexelf.c: Merge IRIX debugging info patch from unexsgi.c
11544         * m/iris4d.h: Use unexelf for IRIX 5.*.
11545         * m/iris5d.h: Use unexelf for IRIX 6.*.
11547 1999-11-25  Kenichi Handa  <handa@etl.go.jp>
11549         * coding.c (Ffind_operation_coding_system): Call functions after
11550         changing the current buffer to a temporary buffer.
11552 1999-11-24  Ken'ichi Handa  <handa@gnu.org>
11554         * fileio.c (Finsert_file_contents): Set buffer-file-coding-system
11555         of the current buffer via Fset.
11557 1999-11-23  Gerd Moellmann  <gerd@gnu.org>
11559         * unexaix.c (unexec): Use unsigned instead of uintptr_t because
11560         that fails on IBM PowerPC, AIX 4.2.
11562 1999-11-22  Eli Zaretskii  <eliz@is.elta.co.il>
11564         * buffer.c (syms_of_buffer): Add %z, %Z, %m and %& to the doc
11565         string of mode-line-format.  Remove the obsolete %t.
11567 1999-11-21  Jason Rumney <jasonr@gnu.org>
11569         * w32fns.c (x_to_w32_font): Assign Y-resolution to resy
11570         instead of pixel.
11572 1999-11-19  Gerd Moellmann  <gerd@gnu.org>
11574         * unexelf.c (unexec): Put new code rounding up the bss section's
11575         sh_offset in #if 0.  Add corresponding code from 20.4 in #else.
11577 1999-11-18  Kenichi Handa  <handa@etl.go.jp>
11579         * keyboard.c (echo_char): Assure sufficient memory for
11580         push_key_description.
11582 1999-11-16  Jason Rumney  <jasonr@gnu.org>
11584         * w32console.c: Include coding.c
11585         (write_glyphs): Convert glyphs for display using
11586         terminal_coding_system instead of GLYPH_FOLLOW_ALIASES.
11588 1999-11-16  Dave Love  <fx@gnu.org>
11590         * doc.c (Fdocumentation): Remove gcpro here too.
11592 1999-11-12  Gerd Moellmann  <gerd@gnu.org>
11594         * doc.c (Fdocumentation_property): Don't GCPRO.
11596 1999-11-11  Ken'ichi Handa  <handa@gnu.org>
11598         * editfns.c (Ftranslate_region): Check the buffer multibyteness.
11600 1999-11-07  Andrew Innes  <andrewi@gnu.org>
11602         * w32fns.c (x_set_name): Coerce title string to unibyte.
11603         (x_set_title): Ditto.
11605         * w32menu.c: Undef HAVE_MULTILINGUAL_MENU.
11606         (single_submenu):
11607         (w32_menu_show) [!HAVE_MULTILINGUAL_MENU]: Coerce menu strings to
11608         unibyte.
11610         * w32.c (map_w32_filename): Force file functions to fail if the
11611         name is too long, by returning an invalid name.
11612         (open_unc_volume): Add cast.
11613         (open_unc_volume): Make argument const.
11614         (unc_volume_file_attributes): Ditto.
11616         * makefile.nt (LINK_FLAGS): Include function-level (COFF format)
11617         debug information in release builds, to get meaningful stack
11618         traces on crashes.  Also remove spurious spaces in various places,
11619         and all dependencies on lisp.h.
11621         * w32term.c (my_set_focus): Return a value;
11622         (my_set_foreground_window): Ditto.
11623         (w32_initialize): Change return type to void, and add forward
11624         declaration.
11626         * w32fns.c (Fw32_shell_execute): Fix typo in docstring.
11627         (Fw32_shell_execute): Allow OPERATION to be nil, to perform the
11628         default action.
11629         
11630 1999-11-02  Gerd Moellmann  <gerd@gnu.org>
11632         * doc.c (Fdocumentation_property): Fix bug bypassing UNGCPRO.
11634 1999-11-01  Gerd Moellmann  <gerd@gnu.org>
11636         * doc.c (Fdocumentation_property): Remove register keyword
11637         from local variable `tem'.
11639 1999-10-28  Ken'ichi Handa  <handa@gnu.org>
11641         * coding.c (code_convert_region): Update `dst' correctly.
11643 1999-10-18  Dave Love  <fx@gnu.org>
11645         * doc.c (Fdocumentation_property): Gcpro `tem`.
11647 1999-10-13  Dave Love  <fx@gnu.org>
11649         * filelock.c (lock_file): Move gcpro of `fn'.
11651 1999-10-14  Ken'ichi Handa  <handa@gnu.org>
11653         * fns.c (Fstring_as_multibyte): Call
11654         register_composite_chars_string for a multibyte string.
11656 1999-10-13  Ken'ichi Handa  <handa@gnu.org>
11658         * lread.c (Fload): Calculate bytes of filename correctly.
11659         (openp): Likewise.
11661 1999-09-29  Kenichi Handa  <handa@etl.go.jp>
11663         * category.c (modify_lower_category_set): Set default value of
11664         TABLE correctly.
11666         * coding.c (DECODE_CHARACTER_ASCII): Decode ASCII invocated to GR
11667         correctly.
11669         * minibuf.c (Fminibuffer_complete_word): Calculate string byte
11670         size correctly.
11672 1999-09-28  Richard M. Stallman  <rms@caffeine.ai.mit.edu>
11674         * keymap.c (Fsingle_key_description): Make tem big enough.
11675         (describe_buffer_bindings): Make buf big enough.
11677 1999-09-19  Miyashita Hisashi  <himi@bird.scphys.kyoto-u.ac.jp>
11679         * charset.c (str_cmpchar_id):  Before xmalloc, copy data in STR to
11680         a buffer that is safe from memory relocation.
11682 1999-09-16  Kenichi Handa  <handa@etl.go.jp>
11684         * charset.h: (register_composite_chars_region): Extern it.
11685         (register_composite_chars_string): Extern it.
11687         * charset.c (str_cmpchar_id): New argument REGISTERP.  Caller
11688         changed.
11689         (register_composite_chars_region): New function.
11690         (register_composite_chars_string): New function.
11692         * alloc.c (make_string): Call register_composite_chars_string for
11693         a multibyte string. 
11694         (make_multibyte_string): Likewise.
11695         (make_string_from_bytes): Likewise.
11696         (make_specified_string): Likewise.
11698         * buffer.c (Fset_buffer_multibyte): On setting the buffer
11699         multibyte, call register_composite_chars_region.
11701         * insdel.c (insert_1_both): Call register_composite_chars_region
11702         after the insertion.
11703         (adjust_after_replace): Likewise.
11705         * indent.c (MULTIBYTE_BYTES_WIDTH): Adjusted for the change of
11706         str_cmpchar_id.
11708 1999-09-15  Richard Stallman  <rms@gnu.org>
11710         * filelock.c (Vtemporary_file_directory): New variable.
11711         (syms_of_filelock): Set up Lisp variable.
11713 1999-09-14  Richard Stallman  <rms@gnu.org>
11715         * filelock.c (get_boot_time): Make the temp name in the proper dir.
11717 1999-09-07  Richard Stallman  <rms@gnu.org>
11719         * keymap.c (fix_submap_inheritance): Do nothing if the proper
11720         parent is an ancestor of SUBMAP; otherwise, add it as the
11721         ultimate ancestor.
11723 1999-09-06  Michael Sperber [Mr. Preprocessor]  <sperber@informatik.uni-tuebingen.de>
11725         * s/aix4-2.h (ALIGN_DATA_RELOC): Undefined to support new
11726         unexaix.c.
11728         * s/aix3-1.h (ALIGN_DATA_RELOC): Defined to support new unexaix.c.
11730 1999-09-06  Dave Love  <fx@gnu.org>
11732         * unexaix.c: New version incorporating Michael Sperber's changes
11733         from XEmacs.  Should solve problems on AIX 4.3.
11735 1999-08-13  Richard M. Stallman  <rms@gnu.org>
11737         * eval.c (run_hook_list_with_args): Gcpro `globals'.
11738         (run_hook_with_args): Likewise.
11740 1999-08-10  Richard M. Stallman  <rms@gnu.org>
11742         * window.h (struct window): New field too_small_ok.
11744         * window.c (set_window_height, set_window_width): 
11745         If window starts out "too small", set its too_small_ok flag.
11746         If window's too_small_ok flag is set, don't delete it
11747         unless it is so small it would cause a crash.
11749         * charset.h (BCOPY_SHORT): Fix typo `unsigined'.
11751 1999-08-10  Alexandre Oliva  <oliva@dcc.unicamp.br>
11753         * unexelf.c [__linux__ && __alpha__] (HAS_SBSS_SECTION): Define.
11755 1999-08-04  Andreas Schwab  <schwab@gnu.org>
11757         * insdel.c (insert_from_string_1): Check gap size against number
11758         of outgoing bytes, not incoming bytes.
11760 1999-08-01  Richard Stallman  <rms@gnu.org>
11762         * fns.c (internal_equal): Correct overlay comparison.
11764 1999-07-29  Eli Zaretskii  <eliz@gnu.org>
11766         * msdos.c (getdefdir): Don't return failure indication when
11767         _fixpath sets errno to ENOSYS.
11769 1999-07-21  Joe Ramey  <ramey@ti.com>
11771         * filelock.c (lock_if_free): Return -1 if check_lock_owner
11772         has returned -1 (lockfile exists but is not a symlink?)
11774 1999-07-14  Richard Stallman  <rms@gnu.org>
11776         * Version 20.4 released.
11778 1999-07-14  Richard Stallman  <rms@gnu.org>
11780         * filelock.c (lock_file): Do nothing if purifying.
11782 1999-07-10  Richard Stallman  <rms@gnu.org>
11784         * xterm.c (x_display_bar_cursor): Use the cursor-color
11785         to display the bar, not the cursor foreground pixel.
11787 1999-07-09  Andrew Innes  <andrewi@gnu.org>
11789         * w32console.c (w32_use_full_screen_buffer): New variable.
11790         (syms_of_ntterm): Register it.
11791         (initialize_w32_display): Set initial frame size accordingly,
11792         respecting the LINES and COLUMNS environment variables if set.
11794         * w32inevt.c (w32_console_read_socket): Use it.
11796 1999-07-07  Kenichi Handa  <handa@etl.go.jp>
11798         * callproc.c (Fcall_process): Decide coding system for decoding
11799         after we set to the target buffer.  If the output goes to a
11800         unibyte buffer, suppress character code conversion.
11802         * fileio.c (Finsert_file_contents): If reading into a unibyte
11803         buffer, suppress character code conversion.
11805         * process.c (create_process): If the output goes to a unibyte
11806         buffer, suppress character code conversion.p
11808 1999-07-07  Andreas Schwab  <schwab@gnu.org>
11810         * xdisp.c (line-number-display-limit): Doc fix.
11812 1999-07-05  Richard Stallman  <rms@gnu.org>
11814         * callproc.c (Fcall_process): Don't use initializer on coding_systems.
11815         (Fcall_process_region): Likewise.
11817 1999-07-01  Markus Rost  <markus.rost@mathematik.uni-regensburg.de>
11819         * callproc.c (init_callproc): Set exec_directory if
11820         installation_directory is non-nil, without a test of exec_path.
11822 1999-07-01  Andrew Innes  <andrewi@gnu.org>
11824         * w32xfns.c (drain_message_queue): New function.
11826         * w32term.h (drain_message_queue): Add extern.
11828         * w32proc.c (sys_select): Call MsgWaitForMultipleObjects instead
11829         of WaitForMultipleObjects when user input is allowed, so we can
11830         handle incoming window messages.  Call drain_message_queue when
11831         there are messages waiting; this ensures that windows created
11832         indirectly from the lisp thread get processed properly, and don't
11833         hang other applications by failing to respond to broadcasts.
11835 1999-07-01  Andreas Schwab  <schwab@gnu.org>
11837         * callint.c (Fcall_interactively): Ignore first element of
11838         event-symbol-elements property.
11840 1999-07-01  Richard Stallman  <rms@gnu.org>
11842         * fileio.c (Fread_file_name): Check type of DEFAULT_FILENAME.
11844 1999-07-01  Kenichi Handa  <handa@etl.go.jp>
11846         * minibuf.c (read_minibuf): Set the multibyteness of the
11847         minibuffer before inserting `initial' string.
11849 1999-06-30  Richard Stallman  <rms@gnu.org>
11851         * xfns.c (x_make_gc): Turn off GCStipple when setting up cursor_gc.
11853 1999-06-29  Richard M. Stallman  <rms@gnu.org>
11855         * emacs.c [DOUG_LEA_MALLOC] (malloc_initialize_hook):
11856         Move the handling of MALLOC_CHECK_ envvar here.
11857         (main): Moved from here.
11859 1999-06-29  Wolfram Gloger  <wmglo@dent.med.uni-muenchen.de>
11861         * emacs.c [DOUG_LEA_MALLOC] (malloc_initialize_hook): New
11862         function, assigned to the global __malloc_initialize_hook pointer.
11863         (main): Move malloc_set_state call into malloc_initialize_hook
11864         so that it happens as early as possible.
11866 1999-06-27  Richard M. Stallman  <rms@gnu.org>
11868         * keyboard.c (read_key_sequence): Properly reinitialize
11869         fkey_map after translating thru Vkey_translation_map.
11870         After translating thru Vfunction_key_map, don't reset
11871         keytrans-start to 0.
11873 1999-06-24  Geoff Voelker  <voelker@cs.washington.edu>
11875         * w32.c (get_emacs_configuration): Use GetVersionEx to
11876         handle NT5.0 correctly.  Include build number in configuration.
11877         w32heap.c (osinfo_cache): New variable.
11878         (cache_system_info): Initialize osinfo_cache.
11879         w32heap.h (osinfo_cache): Declare.
11881 1999-06-24  Richard M. Stallman  <rms@gnu.org>
11883         * casefiddle.c (casify_object): Use make_multibyte_string
11884         if we casify a multibyte string.
11886 1999-06-22  Ken'ichi Handa  <handa@gnu.org>
11888         * fileio.c: (Finsert_file_contents): In the case of REPLACE, call
11889         del_range_byte instead of del_range_1, set `inserted' to the
11890         number of characters actually inserted.
11892 1999-06-17  Dave Love  <fx@gnu.org>
11894         * coding.c (decode_coding_sjis_big5): Avoid compiler warning.
11896 1999-06-18  Paul Eggert  <eggert@twinsun.com>
11898         * filelock.c (BOOT_TIME_FILE): New macro.
11899         (get_boot_time): Use it instead of hardwiring the file name.
11900         Check BOOT_TIME_FILE only after inspecting the kernel directly.
11902 1999-06-17  Dave Love  <fx@gnu.org>
11904         * xdisp.c (invalid_eol_type): Make it unsigned.
11906 1999-06-17  Karl Heuer  <kwzh@gnu.org>
11908         * process.c (send_process): Delete unsafe/redundant assignment.
11910 1999-06-17  Jason Rumney  <jasonr@gnu.org>
11912         * w32term.c (dumprectangle): Handle wide characters properly.
11914 1999-06-16  Andrew Innes  <andrewi@gnu.org>
11916         * s/ms-w32.h (strerror): Override the default implementation of
11917         strerror, so we can map winsock error codes.
11919         * w32.c (sys_strerror): New function.
11921         * w32fns.c (w32_to_x_weight): Return "demibold" instead of "semibold".
11923 1999-06-15  Ken'ichi Handa  <handa@gnu.org>
11925         * buffer.c (syms_of_buffer): Don't make
11926         enable-multibyte-characters customizable.
11928 1999-06-15  Richard M. Stallman  <rms@gnu.org>
11930         * editfns.c (Fuser_full_name): Doc fix.
11932 1999-06-14  Tak Ota <ota@atc.sel.sony.com>
11934         * w32bdf.c: (clear_cached_bitmap_slots): Remove.
11935         (get_bitmap_with_cache): Check if CreateBitmap failed.
11936         Adjust cache size dynamically so cache is never larger than the
11937         system limit of GDI resources.
11938         Do cache clearing inline.  Move global variables to local scope.
11941 1999-06-13  Wolfgang Glas <Wolfgang.Glas@hfm.tu-graz.ac.at>
11943         * unexsgi.c (unexec): Dump the .rodata section from memory
11944         under IRIX6.5 in order to be able to unexec with gcc.
11946 1999-06-11  Greg Hudson  <ghudson@MIT.EDU>
11948         * indent.c (compute_motion): Fix boundary case.
11950 1999-06-11  Jason Rumney  <jasonr@altavista.net>
11952         * w32term.c (cancel_mouse_face): New function. See equiv
11953         changes to xterm.c on 1996-10-31.
11954         (x_set_window_size): Use cancel_mouse_face.
11955         (w32_read_socket): Use cancel_mouse_face.
11956         Update frame position when size is restored.
11958 1999-06-04  Richard M. Stallman  <rms@gnu.org>
11960         * lread.c (Vuser_init_file): New variable.
11961         (syms_of_lread): Set up Lisp variable.
11962         (Fload): Store the file name there, if var was t before.
11964 1999-06-04  Paul Eggert  <eggert@twinsun.com>
11966         * filelock.c (get_boot_time): Don't look at /proc/uptime; it
11967         doesn't work if the system date is changed, or if the system
11968         is suspended.  Look at the last-modified time of
11969         /var/run/random-seed instead.
11971 1999-06-03  Ken'ichi Handa  <handa@gnu.org>
11973         * coding.c (ENCODE_SJIS_BIG5_CHARACTER): Encode charset
11974         japanese-jisx0208-1978 correctly.
11976 1999-06-03  Andrew Innes  <andrewi@gnu.org>
11978         * unexw32.c (get_section_info) [_ALPHA_]: Force as much bss data
11979         as possible to be dumped, for safety.
11981 1999-06-02  Ken'ichi Handa  <handa@gnu.org>
11983         * coding.c (ENCODE_SJIS_BIG5_CHARACTER): Encode charset
11984         latin-jisx0201 correctly.
11986 1999-05-26  Ken'ichi Handa  <handa@gnu.org>
11988         * charset.h (Vcharset_table): Comment fixed.
11990 1999-05-24  Richard Stallman  <rms@gnu.org>
11992         * coding.c (syms_of_coding): Doc fix.
11994         * buffer.c (syms_of_buffer): Doc fix.
11996         * filelock.c (lock_if_free): After deleting a stale lock,
11997         try again to lock the file.
11999 1999-05-22  Andrew Innes  <andrewi@gnu.org>
12001         * w32inevt.c (maybe_generate_resize_event): Detect changes in the
12002         console window size.
12003         (w32_console_read_socket): Call maybe_generate_resize_event
12004         whenever input events are received, since we don't get told when
12005         the window size changes (as opposed to the buffer size, which we
12006         don't care about).
12008         * w32console.c (clear_frame): Remember that the window width might
12009         be smaller than the screen buffer width.
12010         (write_glyphs): Remove redundant variable attrs.  Use
12011         FillConsoleOutputAttribute instead of WriteConsoleOutputAttribute.
12013 1999-05-20  Andrew Innes  <andrewi@gnu.org>
12015         * w32term.c (w32_read_socket): Reset the grabbed flag when a frame gains or
12016         loses focus.
12018         * w32fns.c (w32_wnd_proc): Ensure mouse capture is released if
12019         frame loses focus, and that mouse button state is reset.  Ditto
12020         when the menu bar is activated.
12022 1999-05-18  Richard Stallman  <rms@gnu.org>
12024         * abbrev.c (Fdefine_abbrev): Doc fix.
12026 1999-05-13  Paul Eggert  <eggert@twinsun.com>
12028         * filelock.c: Fix performance bug on hosts with large
12029         /var/adm/wtmp files with no boot records.
12031         (boot_time_initialized): New var.
12032         (init_filelock): Initialize it.
12033         (get_boot_time): Use it, instead of nonzero boot_time,
12034         to test whether boot_time is initialized.
12035         Don't invoke utmp routines when dumping.
12037         (get_boot_time): First, try to get the boot time from the
12038         current utmp file, as this can be much faster.  Don't try to
12039         get the boot time from utmp and/or wtmp more than once.
12041         (get_boot_time_1): When passed null pointer, don't invoke utmpname.
12042         New arg LATEST.  All uses changed.
12044 1999-05-15  Andrew Innes  <andrewi@gnu.org>
12046         * w32term.c (dumpglyphs): Use correct colours for drawing
12047         rectangles in place of missing fonts, and make them the right
12048         size.
12050 1999-05-14  Dave Love  <fx@gnu.org>
12052         * syntax.c (Fparse_partial_sexp): Correct test for element 8 to be
12053         non-nil.
12055 1999-05-11  Andrew Innes  <andrewi@gnu.org>
12057         * w32fns.c (x_to_w32_charset): Reinstall VIETNAMESE_CHARSET
12058         definition.
12059         (w32_wnd_proc): Reinstall debugging output.
12060         (w32_wnd_proc): Reinstall SetForegroundWindow change.
12061         (syms_of_w32fns): Reinstall new initializer for
12062         Vw32_phantom_key_code.
12064         * w32fns.c (x_to_w32_charset): Do partial matching of charset
12065         names for most non-European charsets, to cope with wildcards or
12066         missing spec dates.
12067         (Fw32_send_sys_command): Post WM_SYSCOMMAND rather than sending it
12068         to avoid deadlock when activating the menu bar.
12070 1999-05-10  Ken'ichi Handa  <handa@gnu.org>
12072         * search.c (boyer_moore): Get charset base value of `untranslated'
12073         by masking by ~CHAR_FIELD3_MASK (instead of ~0xff).
12075 1999-05-10  Andreas Schwab  <schwab@gnu.org>
12077         * fileio.c (Fread_file_name): Correct handling of dollars in file
12078         names.  Protect dollars in strings put on the file-name-history.
12079         Substitute homedir by `~' also in default_filename.
12081         * xdisp.c (try_window_id): Fix computation of tab_offset when
12082         backing up over a character that is splitted across lines.
12084 1999-05-08  Kenichi HANDA  <handa@etl.go.jp>
12086         * coding.c (code_convert_region): If eol format is inconsistent,
12087         change coding->symbol to the sibling coding system of Unix like
12088         eol format.
12090 1999-05-09  Richard M. Stallman  <rms@gnu.org>
12092         * s/irix5-2.h (NO_WTMP_FILE): Define it.
12094         * filelock.c (get_boot_time): Handle NO_WTMP_FILE.
12096 1999-05-05  Andrew Innes  <andrewi@gnu.org>
12098         * w32fns.c (w32_strict_painting): New variable.
12099         (w32_wnd_proc): Use it to select repaint rules.
12100         (syms_of_w32fns): Defvar it.
12102 1999-05-04  Andrew Innes  <andrewi@gnu.org>
12104         * w32fns.c (x_to_w32_charset): Fix typo: want to map all Japanese
12105         charsets to the standard Windows charset for Japanese.
12107 1999-05-04  Ken'ichi Handa  <handa@gnu.org>
12109         * xterm.c (x_load_font): Fix typo (`>' -> `=').
12111         * ccl.h (struct ccl_program): New member stack_idx.
12113         * ccl.c (ccl_prog_stack_struct): Declare it as static.
12114         (ccl_driver): Setup stack_idx and ccl_prog correctly.  Update them
12115         before returing.
12116         (setup_ccl_program): Initialize ccl->stack_idx to 0.
12118 1999-05-03  Jason Rumney  <jasonr@altavista.net>
12120         * w32term.c (dumpglyphs): Always fill background for italic fonts.
12122 1999-05-03  Eli Zaretskii <eliz@is.elta.co.il>
12124         * dired.c (make_time): Make argument type be time_t.
12126 1999-05-02  Eli Zaretskii <eliz@is.elta.co.il>
12128         * msdos.c (unibyte_display_via_language_environment): Add extern.
12130 1999-05-02  Richard M. Stallman  <rms@gnu.org>
12132         * xdisp.c (display_text_line): Convert unibyte char to multibyte
12133         if unibyte_display_via_language_environment is set.
12134         (unibyte_display_via_language_environment):
12135         Variable moved from xfns.c and elsewhere.
12136         (syms_of_xfns): Set up Lisp var.
12138         * xfns.c (unibyte_display_via_language_environment):
12139         Variable moved to xdisp.c.
12140         (syms_of_xfns): Don't set up Lisp var here.
12142         * msdos.c (unibyte_display_via_language_environment):
12143         Variable moved to xdisp.c.
12144         (syms_of_msdos): Don't set up Lisp var here.
12146         * w32fns.c (unibyte_display_via_language_environment):
12147         Variable moved to xdisp.c.
12148         (syms_of_w32fns): Don't set up Lisp var here.
12150 1999-05-02  Andrew Innes  <andrewi@gnu.org>
12152         * s/ms-w32.h (HAVE_FSYNC): New macro.
12153          (fsync): Map to _commit.
12154          (ftruncate): Map to _chsize.
12156         * w32term.c (dumpglyphs): On Windows NT, do output in Unicode even
12157         for ASCII, if enabled, to avoid memory allocation overhead for
12158         implicit Unicode conversion.  Also, recognize that ASCII and
12159         Latin-1 have a trivial conversion to Unicode, so x_2byte_buffer
12160         already contains the Unicode characters in that case.
12161         (construct_drag_n_drop): Remove old code that was
12162         trashing the drop location.
12164         * w32select.c (Fw32_set_clipboard_data): Undo last change to add
12165         nlines to encoding_buffer_size (real bug was in a ccl program in
12166         lisp/international/coding.el).
12168         * w32reg.c (w32_get_string_resource): Check for name in current
12169         user area, and if not found look in the local machine area.
12171         * w32fns.c (w32_list_bdf_fonts): Initialize n_fonts.
12172         (Fw32_shell_execute): New function; used to support browse-url.
12173         (syms_of_w32fns): Register it.
12174         (w32_load_system_font): Force max width to be average
12175         char width for fixed-pitch fonts, to avoid unnecessary redisplay
12176         slowdown.
12177         (x_to_w32_charset): Define VIETNAMESE_CHARSET if not
12178         already defined.
12179         (syms_of_w32fns): Set Vw32_phantom_key_code to 255.
12181         * unexw32.c (get_section_info): Dump back the entire EMDATA
12182         section if we can put Emacs' initialized data in a separate
12183         section, otherwise use the my_begdata/my_edata method.
12185         * makefile.nt ($(BLD)\w32term.obj): Add dependency on w32heap.h.
12187         * coding.c (decode_eol): Set produced/consumed values to zero if
12188         src_bytes is <= 0 on entry.
12190 1999-05-02  Jason Rumney  <jasonr@altavista.net>
12192         * w32term.c (w32_write_glyphs, w32_clear_end_of_line,
12193         w32_clear_frame, clear_cursor, x_display_bar_cursor,
12194         x_display_box_cursor, x_set_window_size): Use phys_cursor_on
12195         field in frame.
12196         (do_line_dance): Updated WRT xterm.c. Use macros where possible.
12197         (dumprectangle): Take into account the width of a left-side
12198         scroll bar.
12200         * w32proc.c (sys_kill): Attach to current foreground thread
12201         when grabbing focus; necessary on NT 5.0.
12203         * w32fns.c (w32_wnd_proc) [WM_PAINT]: Use rectangle from
12204         GetUpdateRect rather than BeginPaint.
12205         (w32_wnd_proc): Attach to current foreground thread
12206         when grabbing focus; necessary on NT 5.0.
12207         (w32_wnd_proc) [W32_DEBUG_DISPLAY]: Add output for
12208         debugging display messages.
12209         (w32_to_x_charset): Put wildcard last in unknown charsets to avoid
12210         false matching.
12212 1999-05-02  Kenichi HANDA  <handa@etl.go.jp>
12214         * coding.c (setup_raw_text_coding_system): Call
12215         setup_coding_system to initialize the fields of struct
12216         coding_system correctly.
12218 1999-04-26  Kenichi HANDA  <handa@etl.go.jp>
12220         * xterm.c (x_list_fonts): Fix previous change.
12222 1999-04-26  Richard Stallman  <rms@gnu.org>
12224         * config.in (HAVE_LIBXP): Add #undef.
12225         * Makefile.in (LIB_MOTIF_EXTRA): Check HAVE_LIBXP.
12227 1999-04-12  Ken'ichi Handa  <handa@gnu.org>
12229         * xterm.c (x_list_fonts): Trap X errors so that Emacs doesn't die
12230         by them.
12232 1999-04-12  Karl Heuer  <kwzh@gnu.org>
12234         * s/freebsd.h (BSD_SYSTEM): Define for FreeBSD 4 as with FreeBSD 3.
12236 1999-04-11  Ken'ichi Handa  <handa@gnu.org>
12238         * fontset.c (Fset_fontset_font): Fix previous change.
12240 1999-04-09  Ken'ichi Handa  <handa@gnu.org>
12242         * fontset.c (Fquery_fontset): Check for fontset aliases here.
12243         (Fnew_fontset, Fset_fontset_font): Don't check for them here.
12245 1999-04-08  Richard Stallman  <rms@gnu.org>
12247         * process.c (Faccept_process_output): Check validity of PROCESS.
12249 1999-04-08  Eli Zaretskii  <eliz@gnu.org>
12251         * msdos.c (jp_kbd_translate_table): Fix the other \ key.
12253 1999-04-07  Richard Stallman  <rms@gnu.org>
12255         * xfns.c (x_set_font): Fix error message.
12257         * fontset.c (Fquery_fontset): Don't check for fontset aliases here.
12258         (Fnew_fontset, Fset_fontset_font): Check for them here.
12259          (Ffontset_info, Fnew_fontset, Fset_fontset_font):
12260         Fix error message syntax.
12262         * buffer.c (Fmake_indirect_buffer): Copy multibyte status
12263         from the base buffer.
12264         (Fset_buffer_multibyte): Copy new multibyte status
12265         into the buffer's indirect buffers.
12267 1999-04-07  Ken'ichi Handa  <handa@gnu.org>
12269         * fns.c (base64_encode_1): Don't add unnecessary newline at the
12270         tail.
12272 1999-04-06  Richard Stallman  <rms@gnu.org>
12274         * dired.c (Ffile_attributes): Doc fix.
12276         * keymap.c (Faccessible_keymaps): Really initialize i_byte.
12277         Convert 0200 to meta only in a unibyte string.
12278         (Fkey_description): Likewise.
12280         * eval.c (do_autoload): Preserve match data.
12282 1999-04-06  Kenichi HANDA  <handa@etl.go.jp>
12284         * w32fns.c (x_to_w32_font): Provide sufficient buffer to
12285         encode_coding to avoid carryover.
12287         * coding.c: Add comments for decode_coding and encode_coding.
12289         * ccl.c (ccl_driver) <CCL_ReadMultibyteChar2>: Fix bug of handling
12290         a composite character by skipping its leading code.
12291         <CCL_WriteMultibyteChar2>: Handle non-ascii single byte character
12292         correctly.
12294         * coding.c: Add comments for decode_coding and encode_coding.
12296         * ccl.c (ccl_driver) <CCL_ReadMultibyteChar2>: Fix bug of handling
12297         a composite character by skipping its leading code.
12298         <CCL_WriteMultibyteChar2>: Handle non-ascii single byte character
12299         correctly.
12301 1999-04-06  Eli Zaretskii  <eliz@gnu.org>
12303         * msdos.c (dos_rawgetc): Don't zero out c if private translation
12304         table was used.
12305         (jp_kbd_translate_table): Support C-\.
12306         (it_kbd_translate_table): Map `>' correctly.
12307         (it_keyboard): Add `>'.
12309 1999-04-06  Richard Stallman  <rms@gnu.org>
12311         * intervals.c (graft_intervals_into_buffer): Turn off
12312         inhibit_modification_hooks around calling Fset_text_properties.
12314 1999-04-05  Kenichi HANDA  <handa@etl.go.jp>
12316         * xterm.c (dumpglyphs): Be sure to fill the whole background of
12317         glyphs.
12319 1999-04-05  Eli Zaretskii  <eliz@gnu.org>
12321         * msdos.c (jp_kbd_translate_table): Fix last change.
12323 1999-04-04  Eli Zaretskii  <eliz@gnu.org>
12325         * msdos.c (struct kbd_translate): New struct, for key translation
12326         tables private to certain national keyboard layouts.
12327         (struct dos_keyboard_map): Add a pointer to a private translation
12328         table.
12329         (jp_kbd_translate_table): Private table for the Japanese
12330         keyboard.
12331         (jp_keyboard): Japanese keyboard layout.
12332         (it_kbd_translate_table): Private table for the Italian keyboard.
12333         (it_keyboard): Use it_kbd_translate_table.
12334         (keyboard_layout_list): Add the Japanese keyboard.
12335         (dos_rawgetc): Use the keyboard-private translation table, if
12336         available.
12337         (abort) [__DJGPP_MINOR__ >= 2]: Raise SIGABRT.
12339 1999-04-02  Kenichi HANDA  <handa@etl.go.jp>
12341         * xdisp.c (redisplay_window): When we call compute_motion with
12342         HPOS got from w->last_point_x, call it with DID_MOTION 1.
12343         (display_text_line): Stop the loop for processing overlay strings
12344         when we reach the right edge of the window.
12346 1999-03-31  Richard M. Stallman  <rms@gnu.org>
12348         * doc.c (get_doc_string): When UNIBYTE and DEFINITION are 0,
12349         let the data control whether string is unibyte.
12351 1999-03-30  Richard M. Stallman  <rms@gnu.org>
12353         * macros.c (Fexecute_kbd_macro): Save real_this_command.
12354         (pop_kbd_macro): Restore the saved real_this_command.
12355         (Fcall_last_kbd_macro): Set real_this_command to the macro.
12357 1999-03-26  Richard M. Stallman  <rms@gnu.org>
12359         * buffer.c (Fset_buffer_modified_p): Don't lock or unlock
12360         if buffer-file-name is nil.
12362 1999-03-25  Jason Rumney  <jasonr@altavista.net>
12364         * w32select.c (Fw32_set_clipboard_data): Take into account line
12365         ends when calculating clipboard storage needed for non-ASCII text.
12367 1999-03-25  Andrew Innes  <andrewi@gnu.org>
12369         * makefile.nt (PREPARED_HEADERS): Change name of paths.h to epaths.h.
12370         (epaths.h): Renamed from paths.h.
12371         (clean):
12372         ($(BLD)\filelock.obj):
12373         ($(BLD)\lread.obj):
12374         ($(BLD)\w32fns.obj): Renamed paths.h to epaths.h.
12376 1999-03-23  Ken'ichi Handa  <handa@gnu.org>
12378         * coding.c (encode_coding_iso2022): Initialize dummy arguments to
12379         ENCODE_ISO_CHARACTER for the previous change on this macro.
12381 1999-03-23  Kenichi Handa  <handa@etl.go.jp>
12383         * xdisp.c (decode_mode_spec_coding): Handle integer value in
12384         eoltype correctly for backward compatibility.
12386 1999-03-20  Kenichi HANDA  <handa@etl.go.jp>
12388         * coding.c (ENCODE_ISO_CHARACTER): Check validity of CHARSET.  If
12389         invalid, produce the buffer internal byte sequence without encoding.
12391 1999-03-19  Karl Heuer  <kwzh@gnu.org>
12393         * editfns.c (Fformat): Accept %i format.
12395 1999-03-17  Karl Heuer  <kwzh@gnu.org>
12397         * filelock.c (get_boot_time): Test tempname, not filename.
12399 1999-03-17  Jason Rumney <jasonr@altavista.net>
12401         * w32bdf.h: Merged patches from Meadow; introduce bitmap cache to
12402         speed display.
12404         * w32bdf.c: Merged patches from Meadow; introduce bitmap cache to
12405         speed display.
12406         (get_cached_font_char, cache_char_offset, get_bitmap_with_cache)
12407         New functions.
12408         (w32_free_bdf_font, seek_char, w32_get_bdf_glyph, w32_BDF_TextOut)
12409         Use bitmap cache.
12411         * w32fns.c (enum_font_cb2): Set the font height to be the
12412         character height, not the cell height.
12413         (Fw32_select_font): Initialize font dialog with current default font.
12414         (Vw32_system_coding_system): New variable.
12415         (w32_strict_filenames): Add comment.
12416         (w32_to_x_font): Decode font name using Vw32_system_coding_system.
12417         (x_to_w32_font): Encode font name using Vw32_system_coding_system.
12418         (syms_of_w32fns): Add w32-system-coding-system.
12420 1999-03-15  Richard M. Stallman  <rms@gnu.org>
12422         * xterm.c (XTread_socket) <ConfigureNotify>:
12423         If cursor pos is outside the new frame size, mark cursor as off.
12425 1999-03-14  Ken'ichi Handa  <handa@gnu.org>
12427         * xdisp.c (try_window_id): Initialize val.ovstring_chars_done to 0.
12429         * xterm.c (x_load_font): Trap X errors so that Emacs doesn't die
12430         by them.
12432 1999-03-14  Richard M. Stallman  <rms@gnu.org>
12434         * macros.c (Fexecute_kbd_macro): Initialize executing_macro_iterations
12435         at beginning.
12437 1999-03-14  Jason Rumney <jasonr@altavista.net>
12439         * w32fns.c (w32_strict_fontnames): New variable.
12440         (Fx_create_frame): Formatting fix.
12441         (w32_load_system_font): Keep trying to load non-existant font
12442         if w32_strict_fontnames is nil. Formatting fix.
12443         (syms_of_w32fns): Add w32-strict-fontnames.
12445         * w32term.c (W32_TEXTOUT): Do not multiply nchars by charset_dim.
12446         (dumpglyphs): Formatting fixes.
12448 1999-03-14  Geoff Voelker  <voelker@cs.washington.edu>
12450         * w32fns.c (w32_wnd_proc): Handle WM_GETMINMAXINFO message.
12452 1999-03-10  Karl Heuer  <kwzh@gnu.org>
12454         * puresize.h (BASE_PURESIZE): Increase to 505000.
12456 1999-03-09  Richard M. Stallman  <rms@gnu.org>
12458         * emacs.c (main) [CLASH_DETECTION]: Call init_filelock.
12460         * filelock.c (init_filelock): New function.
12462 1999-03-09  Dave Love  <fx@gnu.org>
12464         * fileio.c (Ffile_directory_p): Doc fix.
12466 1999-03-05  Richard M. Stallman  <rms@gnu.org>
12468         * coding.c (setup_coding_system): Check for CODING_SYSTEM = nil.
12470 1999-03-08  Richard M. Stallman  <rms@gnu.org>
12472         * filelock.c (get_boot_time): Reduce scope of #ifdef BOOT_TIME
12473         to only the part that uses get_boot_time_1.
12475 1999-03-07  Dave Love  <fx@gnu.org>
12477         * fileio.c (Finsert_file_contents): Use xfree.
12479 1999-03-06  Kenichi Handa  <handa@etl.go.jp>
12481         * Makefile.in (callproc.o, coding.o, fileio.o, msdos.o, process.o,
12482         term.o, xselect.o): Depend on ccl.h.
12484 1999-03-05  Geoff Voelker  <voelker@cs.washington.edu>
12486         * makefile.nt: Remove common multiple file compilation commands.
12488 1999-03-04  Takeshi YAMADA <yamada@cslab.kecl.ntt.co.jp>
12490         * fns.c (Fbase64_encode_string): Allocate sufficient memory for
12491         newlines added when the arg NO-LINE-BREAK is nil.
12493 1999-03-04  Karl Heuer  <kwzh@gnu.org>
12495         * search.c (Fstring_match, Fposix_string_match): Doc fix.
12497         * buffer.c (syms_of_buffer): Doc fix for case-fold-search.
12499 1999-03-04  Dave Love  <fx@gnu.org>
12501         * term.c (term_init): Use xmalloc, not malloc.
12503         * callproc.c (Fcall_process): Use xmalloc, xfree.
12505 1999-03-03  Andreas Schwab  <schwab@gnu.org>
12507         * eval.c (Fdefconst): Doc fix.
12509 1999-03-01  Kenichi Handa  <handa@etl.go.jp>
12511         * coding.c: Comment for ISO 2022 encoding mechanism modified.
12513 1999-03-01  Eli Zaretskii  <eliz@gnu.org>
12515         * w16select.c (get_clipboard_data): Always stop at the first null byte.
12517 1999-02-28  Richard M. Stallman  <rms@gnu.org>
12519         * filelock.c (get_boot_time): Support FreeBSD way to read boot-time.
12521         * cmds.c (internal_self_insert): Calculate column properly
12522         in overwrite-of-tab case.
12524 1999-02-27  Andreas Schwab  <schwab@gnu.org>
12526         * emacs.c (main) [DOUG_LEA_MALLOC]: Don't use unsetenv, it calls
12527         malloc in glibc 2.1.
12529 1999-02-26  Richard Stallman  <rms@gnu.org>
12531         * Makefile.in: paths.h and paths.in renamed to epaths.h and epaths.in.
12533         * epaths.in: Renamed from paths.in.
12534         This avoids a conflict with a system header file paths.h on GNU/Linux.
12536         * callproc.c, lread.c, w32fns.c, xfns.c, xrdb.c:
12537         Use epaths.h istead of paths.h.
12539 1999-02-26  Andreas Schwab  <schwab@gnu.org>
12541         * emacs.c (main) [DOUG_LEA_MALLOC]: Work around a bug in glibc's
12542         malloc.
12544 1999-02-25  Dave Love  <fx@gnu.org>
12546         * buffer.c (syms_of_buffer): Doc fix for enable-multibyte-characters.
12548 1999-02-25  Richard Stallman  <rms@gnu.org>
12550         * filelock.c (get_boot_time): Use WTMP_FILE for file name.
12551         (WTMP_FILE): Default definition in case not defined.
12552         (get_boot_time_1): Test that file exists before trying to read it.
12554 1999-02-25  Ken'ichi Handa  <handa@gnu.org>
12556         * keymap.c (push_key_description): If enable-multibyte-characters
12557         is nil and C is single byte, push C as is.
12559 1999-02-24  Kenichi Handa  <handa@etl.go.jp>
12561         * keymap.c (push_key_description): If enable-multibyte-characters
12562         is non-nil, try to convert unibyte character to multibyte.  For
12563         invalid multibyte character, show all bits by octal form.
12564         (Fsingle_key_description): Check the validity of charset for a
12565         generic character.
12567 1999-02-23  Richard M. Stallman  <rms@gnu.org>
12569         * fileio.c (Ffile_regular_p): Undo previous change.
12571         * eval.c (Fdefconst): Doc fix.
12573         * filelock.c (get_boot_time): Don't use BUFSIZ.
12575 1999-02-22  Andrew Innes  <andrewi@gnu.org>
12577         * makefile.nt ($(BLD)\w32bdf.obj): Add missing continuation character.
12578         (EXTRA_LINK): Do version test with strings.
12580 1999-02-22  Andreas Schwab  <schwab@gnu.org>
12582         * fns.c (Fbase64_encode_string): Fix last change.
12584         * termhooks.h (event_kind): Add user_signal.
12586         * keyboard.c (Qusr1_signal, Qusr2_signal): New variables.
12587         (syms_of_keyboard): Initialize them.
12588         (lispy_user_signals): New variable.
12589         (make_lispy_event): Handle user_signal event type.
12591         * emacs.c: Don't define Qusr1_signal and Qusr2_signal.
12592         (syms_of_emacs): Don't initialize them.
12593         (handle_USR1_signal, handle_USR2_signal): Set event type to
12594         user_signal instead of non_ascii_keystroke, and use plain integers
12595         as code instead of Lisp symbols.
12597 1999-02-21  Eli Zaretskii  <eliz@delysid.gnu.org>
12599         * fileio.c: (lstat) [!S_ISLNK]: Use stat instead of lstat.
12601 1999-02-21  Richard Stallman  <rms@gnu.org>
12603         * filelock.c (get_boot_time_1): Put this in #ifdef BOOT_TIME.
12605         * print.c (print_error_message): Don't crash if (cdr data)
12606         is not a list.
12608 1999-02-21  Eli Zaretskii  <eliz@gnu.org>
12610         * fileio.c (lstat) [!S_ISLNK]: Use stat instead of lstat.
12612 1999-02-20  Andrew Innes  <andrewi@gnu.org>
12614         * vm-limit.c (memory_warnings) [WINDOWSNT]: Reset lim_data on each
12615         run, since size can vary from run to run.
12617         * makefile.nt (EXTRA_LINK, LINK_FLAGS): Ensure base relocation
12618         data is included, to enable profiling.
12619         ($(EMACS)): Map file not needed for emacs.exe.
12621         * emacs.c (main): [!SYSTEM_MALLOC]: Call realloc and free as well
12622         as malloc before calling uninterrupt_malloc, for consistency.
12623         This also enables profiling to work on WINDOWSNT.
12625 1999-02-18  Richard Stallman  <rms@gnu.org>
12627         * Makefile.in (emacs.o): Depend on termhooks.h.
12628         (filelock.o): Depend on systime.h.
12630 1999-02-18  Ken'ichi Handa  <handa@gnu.org>
12632         * coding.c (Fdecode_sjis_char): Use %x for formatting error message.
12633         (Fdecode_big5_char): Likewise.
12635 1999-02-17  Richard Stallman  <rms@gnu.org>
12637         * insdel.c (adjust_markers_for_replace): When doing an insertion
12638         (replacing a region of zero length), handle markers at the
12639         insertion point properly.
12641 1999-02-17  Andrew Innes  <andrewi@gnu.org>
12643         * w32fns.c (Vw32_quit_key): New variable.
12644         (post_character_message): Use it.
12645         (syms_of_w32fns): DEFVAR it.
12647 1999-02-16  MORIOKA Tomohiko  <morioka@jaist.ac.jp>
12649         * fns.c (Fbase64_encode_string): New optional argument `NO_LINE_BREAK'.
12651 1999-02-16  Richard Stallman  <rms@gnu.org>
12653         * filelock.c (within_one_second): New function.
12654         (current_lock_owner): Use that.
12655         (get_boot_time): Use /proc/uptime if available.
12656         Otherwise, if nothing found in wtmp, try wtmp.1.gz and so on.
12657         (get_boot_time_1): New subroutine taken from get_boot_time.
12659 1999-02-16  Richard Stallman  <rms@gnu.org>
12661         * emacs.c (Qusr1_signal, Qusr2_signal): New variables.
12662         (syms_of_emacs): Init and staticpro them.
12663         (handle_USR1_signal): Don't run any code, just queue up an event.
12664         (handle_USR2_signal): Likewise.
12666 1999-02-16  Eli Zaretskii  <eliz@gnu.org>
12668         * dired.c (Ffile_attributes): If the file's size doesn't fit in
12669         an integer, return it as a float.  Doc string fixed.
12671 1999-02-16  Richard Stallman  <rms@gnu.org>
12673         * emacs.c (Qusr1_signal, Qusr2_signal): New variables.
12674         (syms_of_emacs): Init and staticpro them.
12675         (handle_USR1_signal): Don't run any code, just queue up an event.
12676         (handle_USR2_signal): Likewise.
12678 1999-02-15  Kenichi Handa  <handa@etl.go.jp>
12680         * coding.c (Fdecode_sjis_char, Fencode_sjis_char): Handle
12681         ASCII correctly.  Signal error on invalid characters.
12682         (Fdecode_big5_char, Fencode_big5_char): Likewise.
12684 1999-02-15  Eli Zaretskii  <eliz@gnu.org>
12686         * w16select.c (get_clipboard_data): Work around a bug in Windows95
12687         DOS box which doubles the reported size of text in the clipboard.
12689 1999-02-15  Kenichi Handa  <handa@etl.go.jp>
12691         * coding.c (decode_coding_iso2022): Don't set
12692         coding->composed_chars to 0 here.
12693         (setup_coding_system): Set coding->composed_chars to 0 here.
12695 1999-02-10  Richard Stallman  <rms@gnu.org>
12697         * fileio.c (Ffile_regular_p): Use lstat.
12699 1999-02-09  Richard Stallman  <rms@gnu.org>
12701         * unexelf.c (HAS_SBSS_SECTION): Define this in some cases.
12702         (unexec): Test this instead of specific systems.
12704         * m/macppc.h: New file.
12706 1999-02-08  Dave Love  <fx@gnu.org>
12708         * fns.c (Fyes_or_no_p, Fy_or_n_p): Doc fix.
12710 1999-02-08  Ken'ichi Handa  <handa@gnu.org>
12712         * coding.c (ccl_coding_driver): On encoding, coding->produced_char
12713         should be set to coding->produced.
12715 1999-02-07  Paul Fisher  <rao@gnu.org>
12717         * fns.c (IS_BASE64_IGNORABLE, READ_QUADRUPLET_BYTE): New macros.
12718         (base64_decode_1): Use READ_QUADRUPLET_BYTE.
12720 1999-02-07  Markus Rost  <markus.rost@mathematik.uni-regensburg.de>
12722         * editfns.c (Fformat): Doc fix.
12724 1999-02-06  Richard Stallman  <rms@gnu.org>
12726         * process.c (syms_of_process): defsubr it.
12727         (Fprocess_running_child_p): New function.
12729 1999-02-05  Andrew Innes  <andrewi@gnu.org>
12731         * w32term.c (construct_drag_n_drop): Call DraqQueryPoint before
12732         recording drop position.
12734 1999-02-05  Ken'ichi Handa  <handa@gnu.org>
12736         * coding.c (encode_coding_iso2022): Before writing out an invalid
12737         code, reset graphic planes and registers if necessary.
12739         * term.c (encode_terminal_code): Fix previous change.
12741 1999-02-04  Eli Zaretskii  <eliz@gnu.org>
12743         * w16select.c (last_clipboard_text, clipboard_storage_size): New
12744         static variables.
12745         (set_clipboard_data): Save a copy of the text we put into
12746         clipboard in last_clipboard_text.
12747         (get_clipboard_data): If the clipboard text is identical to what
12748         last_clipboard_text holds, pretend there's no data in the clipboard.
12750 1999-02-03  Richard Stallman  <rms@gnu.org>
12752         * s/gnu.h (NLIST_STRUCT): Add #undef.
12754 1999-02-03  Eli Zaretskii  <eliz@gnu.org>
12756         * w16select.c (Fw16_set_clipboard_data): When the text needs to be
12757         encoded, set its pointer and size as returned by encode_coding.
12759 1999-02-02  Ken'ichi Handa  <handa@gnu.org>
12761         * fns.c (Fset_char_table_default): To handle the case that CH is
12762         an ASCII char, use SPLIT_CHAR instead of SPLIT_NON_ASCII_CHAR.
12764 1999-02-02  Andrew Innes  <andrewi@gnu.org>
12766         * w32fns.c (syms_of_w32fns): Change default value of
12767         w32-mouse-move-interval to 0, so that the mouse wheel/rocker on
12768         some mice works properly.
12770 1999-02-02  Eli Zaretskii  <eliz@gnu.org>
12772         * w16select.c (set_clipboard_data): Correctly null-terminate the
12773         string to be put into the Windows clipboard.  Use xbuf_addr.
12775 1999-02-01  Richard Stallman  <rms@gnu.org>
12777         * buffer.c (Fset_buffer_multibyte): Error if buffer is indirect.
12779 1999-01-31  Richard Stallman  <rms@gnu.org>
12781         * process.c (process_send_signal): If CURRENT_GROUP is `lambda'
12782         then don't send the signal if the shell owns the terminal.
12783         (Finterrupt_process): Doc change.
12785 1999-01-31  Andrew Innes  <andrewi@gnu.org>
12787         * unexw32.c: (ROUND_UP_DST_AND_ZERO): New macro.
12788         (copy_executable_and_dump_data): Use it to ensure alignment slop
12789         is zeroed.
12791 1999-01-30  Andrew Innes  <andrewi@gnu.org>
12793         * w32.c (init_environment): Change argv[0] to contain the full
12794         path to Emacs.
12796         * emacs.c (main) [WINDOWSNT]: Pass argv to init_environment.
12798 1999-01-29  Ken'ichi Handa  <handa@gnu.org>
12800         * xterm.c (x_new_fontset): For ASCII font, don't use the font name
12801         returned by x_new_font (the resolved one) but use the font name
12802         set in the fontset specification.
12803         (x_load_font): For the height of font, if normarl ascent and
12804         descent value are larger than those in max_bounds field, use the
12805         former.
12807 1999-01-28  Eli Zaretskii  <eliz@gnu.org>
12809         * xdisp.c (decode_mode_spec_coding): Fix previous change.
12811 1999-01-27  Geoff Voelker  <voelker@cs.washington.edu>
12813         * makefile.nt: Use full path to temacs.exe when dumping.
12815 1999-01-27  Jason Rumney <jasonr@altavista.net>
12817         * w32fns.c (w32_load_system_font): Do not load unlisted fonts if
12818         list was reliable.
12819         (enum_fontex_cb1, enum_fontex_cb2): New functions.
12820         (w32_list_bdf_fonts): New parameter; max_names.  Callers updated.
12821         (w32_list_synthesized_fonts): New function.
12822         (w32_list_fonts): Use maxnames.  Use EnumFontFamiliesEx when
12823         available instead of EnumFontFamilies.  List synthesized fonts if
12824         Vw32_enable_italics is non-nil.
12826 1999-01-27  Richard Stallman  <rms@gnu.org>
12828         * s/ptx4.h (SETUP_SLAVE_PTY): Use the ptem module if it exists.
12829         Don't complain if ttcompat does not exist.
12831         * w32fns.c (x_set_frame_parameters): gcpro as needed.
12833 1999-01-27  Andrew Innes  <andrewi@gnu.org>
12835         * w32fns.c (w32_wnd_proc): Fix bug introduced by previous change;
12836         the lwindow, rwindow and apps keys could not be used as function
12837         keys, because they were being passed to TranslateMessage which
12838         ignores them.  Also, key was being changed to SPC.
12840         * makefile.nt: Do make version comparison as strings.
12842 1999-01-27  Eli Zaretskii  <eliz@gnu.org>
12844         * coding.c (syms_of_coding): eol-mnemonic-* variables are now
12845         strings, not characters.
12847         * coding.h: Likewise.
12849         * xdisp.c (decode_mode_spec_coding): Display the EOL type as a
12850         string.
12852 1999-01-26  Dave Love  <fx@gnu.org>
12854         * emacs.c (main): Up-date copyright.
12856 1999-01-25  Dave Love  <fx@gnu.org>
12858         * coding.c (syms_of_coding): Doc fix for inhibit-eol-conversion.
12860 1999-01-25  Andreas Schwab  <schwab@gnu.org>
12862         * eval.c (Fsignal): Move comment to avoid confusing make-docfile.
12864 1999-01-23  Richard M. Stallman  <rms@borg.ai.mit.edu>
12866         * xfns.c (x_set_frame_parameters): gcpro as needed.
12868         * window.c (Fset_window_point): If WINDOW is selected but the
12869         current buffer is not its buffer, don't use Fgoto_char.
12871 1999-01-22  Richard M. Stallman  <rms@gnu.org>
12873         * syntax.c (scan_sexps_forward): Delete duplicate code
12874         to set prev_from_syntax, above start of main loop.
12875         At startinstring, check syntax when checking for a match.
12877 1999-01-22  Jason Rumney <jasonr@altavista.net>
12879         * w32bdf.c: New file.
12880         * w32bdf.h: New file.
12881         * makefile.nt: Add w32bdf.c and w32bdf.h.
12883         * w32gui.h: Include w32bdf.h.
12884         (W32FontStruct) Add bdf element.
12886         * w32term.h (FONT_WIDTH, FONT_HEIGHT, FONT_BASE, FONT_MAX_WIDTH):
12887         Support BDF fonts.
12889         * w32term.c (W32_TEXTOUT): New macro.
12890         (dumpglyphs): Support BDF fonts.  Use W32_TEXTOUT macro.
12891         Simplify baseline calculation.  Detect SJIS by font, not glyph.
12892         Call SetTextAlign.
12893         (syms_of_w32term): Remove "jisx0212-sjis" from
12894         w32-charset-to-codepage-alist.
12895         Replace "ksc5601" with "ksc5601.1987" in w32-charset-to-codepage-alist.
12896         Add "ksc5601.1992' to w32-charset-to-codepage-alist.
12898         * w32fns.c (Vw32_bdf_filename_alist): New variable.
12899         (x_destroy_bitmap): Returns void not int.
12900         (x_set_border_pixel): Returns void.
12901         (w32_load_bdf_font): New function.
12902         (w32_load_system_font): New function, was w32_load_font.  List
12903         fonts before loading.  Explicitly set encoding for SJIS fonts.
12904         Set default_ascent to 0 as comment indicates.
12905         (w32_load_font): Call w32_load_system_font and w32_load_bdf_font.
12906         (w32_unload_font): Support BDF fonts.
12907         (w32_to_x_charset): Fix mappings to avoid wildcard mismatches.
12908         Autodetect whether to use koi8-r instead of iso8859-5.
12909         Associate "ksc5601.1987" with HANGUEL_CHARSET.
12910         Associate "ksc5601.1992" with JOHAB_CHARSET.
12911         (x_to_w32_charset): Make consistent with w32_to_x_charset.
12912         (w32_to_x_font): Add resolution.
12913         (x_to_w32_font): Use font resolution to calculate height if supplied.
12914         (w32_font_match): Handle wildcards anywhere within field.
12915         (enumfont_t): Remove unused head pointer.
12916         (enum_font_cb2): Dereference elfLogFont.
12917         (w32_list_bdf_fonts): New function.
12918         (w32_list_fonts): Use one_w32_dispay_info instead of insisting on
12919         valid frame.  Remove MessageBox.  Support BDF fonts.
12920         (Fw32_find_bdf_fonts): New function.
12921         (syms_of_w32fns): Add Vw32_bdf_filename_alist and
12922         Sw32_find_bdf_fonts.
12924 1999-01-21  Andrew Innes  <andrewi@gnu.org>
12926         * makefile.nt (temacs): Use del to delete file, not rm.
12928 1999-01-19  Richard Stallman  <rms@psilocin.ai.mit.edu>
12930         * keyboard.c (read_key_sequence): Fix previous change.
12932         * xterm.c (same_x_server): Detect treat ":0" and "unix:0"
12933         as the same.  Treat "myname:0" as the same as those two.
12935 1999-01-19  Jason Rumney <jasonr@altavista.net>
12937         * w32fns.c (x_to_w32_charset): Add iso8859-9.
12938         (w32_to_x_charset): Fix charset mappings.
12940         * w32term.c: Remove codepage macros. Remove redundant BIG5 macros.
12941         (dumpglyphs): Move definitions out of block containing goto.
12942         Remove redundant code for BIG5.
12943         Use w32_codepage_for_font instead of
12944         w32_codepage_for_charset.  Add cast to int where float
12945         operation is assigned to int.
12946         (Vw32_charset_to_codepage_alist): New variable.
12947         (w32_codepage_for_charset): Removed.
12948         (w32_codepage_for_font): New function, replacing
12949         w32_codepage_for_charset.
12950         (syms_of_w32term): Add and initialize
12951         w32-charset-to-codepage-alist.
12953 1999-01-17  Richard Stallman  <rms@psilocin.ai.mit.edu>
12955         * xselect.c (x_handle_selection_clear): Don't clear the
12956         selection if Emacs still owns it through a different display.
12958 1999-01-17  Andrew Innes  <andrewi@gnu.org>
12960         * w32proc.c: (w32_executable_type): Relax the check to identify
12961         cygwin-compiled applications, because the exact dll name varies
12962         with release.  Now only require the name to start "cygwin".
12964         * w32heap.h: (ROUND_UP):
12965         (ROUND_DOWN): New macros.
12966         (need_to_recreate_heap): Renamed to using_dynamic_heap.
12967         (init_heap): New extern.
12968         (data_region_size):
12969         (recreate_heap):
12970         (read_in_bss):
12971         (map_in_heap):
12972         (round_to_next):
12973         (w32_fatal_reload_error):
12974         (get_section_size): Obsolete externs removed.
12976         * w32heap.c: (RVA_TO_PTR): Redefine to convert RVA to address in
12977         current process.
12978         (round_to_next): Obsolete function removed.
12979         (preload_heap_section): New variable.
12980         (data_region_size): Obsolete variable removed.
12981         (allocate_heap): Modified to determine end of static heap section
12982         used during preload, and use that as initial base address for
12983         dynamic heap instead of hard-coded value.
12984         (sbrk): Remove call to allocate_heap; handled by init_heap.  Skip
12985         calls to commit or decommit pages when allocating from static heap
12986         section during preload.
12987         (recreate_heap): Obsolete function removed.
12988         (init_heap): New function to initialize internal sbrk heap
12989         variables.  Uses static heap section during preload, otherwise
12990         calls allocate_heap to reserve a heap region dynamically.
12991         (round_heap): Use ROUND_UP macro instead of round_to_next.
12993         * unexw32.c: Major rewrite to support cleaner method of dumping; a
12994         static "bss" section is used for heap space during preload, and
12995         bss data is now written to the proper section area when dumping.
12996         (need_to_recreate_heap): Renamed to using_dynamic_heap.
12997         (heap_index_in_executable): Obsolete variable removed.
12998         (data_section): New variable.
12999         (data_start_va): Renamed to data_start.
13000         (data_start_file): Obsolete variable removed.
13001         (bss_section):
13002         (extra_bss_size):
13003         (bss_section_static):
13004         (bss_start_static):
13005         (bss_size_static):
13006         (extra_bss_size_static):
13007         (heap_section): New variables.
13008         (_start): Remove code based on old unexec method.  Call init_heap
13009         to initialize sbrk heap.
13010         (close_file_data): Update size of file when closing, so that
13011         unexec doesn't have to work out exact size in advance.
13012         (get_bss_info_from_map_file):
13013         (get_section_size): Obsolete functions removed.
13014         (rva_to_section): Fix minor bug, and add a work-around for a bug
13015         in very old linkers.
13016         (offset_to_section):
13017         (relocate_offset): New functions.
13018         (OFFSET_TO_RVA):
13019         (RVA_TO_OFFSET):
13020         (RVA_TO_SECTION_OFFSET):
13021         (PTR_TO_RVA):
13022         (PTR_TO_OFFSET):
13023         (OFFSET_TO_PTR): New macros.
13024         (get_section_info): Modify to support new unexec method;
13025         determines address ranges in process that need dumping, and COFF
13026         sections where data will be dumped.  Allows for static and global
13027         bss data to be in separate ranges.  No longer relies on knowledge
13028         of section names.
13029         (copy_executable_and_dump_data_section): Renamed
13030         copy_executable_and_dump_data.  Completely rewritten to copy
13031         executable section by section, so that raw data areas can be
13032         expanded to hold dumped data as necessary.  Allows for bss data to
13033         be in same section as initialized data.  Reduces size of static
13034         heap section to that used during preload.
13035         (dump_bss_and_heap):
13036         (w32_fatal_reload_error):
13037         (read_in_bss):
13038         (map_in_heap): Obsolete functions removed.
13039         (unexec): Rounds off preload heap to nearest page rather than
13040         virtual allocation unit.  Modified to match other changes.
13042         * mem-limits.h: (get_lim_data): Use reserved_heap_size instead of
13043         data_region_size.
13045         * makefile.nt: (TEMACS_TMP): New macro.
13046         ($(TEMACS)): Output to TEMACS_TMP from link, use post-link
13047         processor to add static heap section in support of new unexec.
13049         * lastfile.c: Include config.h to pick up data layout pragmas.
13050         [WINDOWSNT]: Remove explicit pragma.
13052 1999-01-12  Kenichi Handa  <handa@etl.go.jp>
13054         * coding.c (Fdecode_sjis_char): Decode Japanese Katakana character
13055         correctly.
13056         (Fencode_sjis_char): Encode Japanese Katakana character correctly.
13058 1999-01-11  Dave Love  <fx@gnu.org>
13060         * coding.c (syms_of_coding): Doc fix for inhibit-eol-conversion.
13062 1999-01-11  Richard Stallman  <rms@psilocin.ai.mit.edu>
13064         * keyboard.c (read_key_sequence): In key-translation-map and
13065         function-key-map, handle symbol with array as fn def.
13066         In function-key-map, handle symbol with keymap as fn def,
13067         and autoloaded definitions.
13069         * puresize.h (BASE_PURESIZE): Increment to 500000.
13071         * print.c (Qtemp_buffer_setup_hook): New variable.
13072         (syms_of_print): Init and staticpro that.
13073         (temp_output_buffer_setup): Run Qtemp_buffer_setup_hook.
13075 1999-01-11  Kenichi Handa  <handa@etl.go.jp>
13077         * insdel.c (del_range_1): Call signal_after_change.
13078         (del_range_byte): Likewise.
13079         (del_range_both): Likewise.
13080         (del_range_2): Don't call signal_after_change.
13082         * xdisp.c (message_dolog): Use insert_1_both to avoid running any
13083         Lisp code here.
13085 1999-01-07  Richard Stallman  <rms@psilocin.ai.mit.edu>
13087         * eval.c (find_handler_clause): If SIG is nil (memory full error),
13088         never run the debugger, and don't bother checking the args
13089         to see whether the debugger should be run.
13091 1999-01-06  Richard Stallman  <rms@psilocin.ai.mit.edu>
13093         * keyboard.c (read_key_sequence):
13094         Tell get_keyelt to look handle autoloads.
13095         Handle symbols defined as keymaps, and autoloaded keymaps.
13097 1999-01-06  Kenichi Handa  <handa@etl.go.jp>
13099         * search.c (search_buffer): Fix previous change.
13101 1999-01-06  Eli Zaretskii  <eliz@gnu.org>
13103         * w16select.c (set_clipboard_data): Terminate the text with a null
13104         character.  Don't allow to put binary data into the clipboard.
13105         Return zero in case of success, 1 or 2 otherwise.
13106         (get_clipboard_data): Only bail out if the null character is in
13107         the last 32-byte chunk of clipboard data
13108         (Fw16_set_clipboard_data): Make ok and put_status be unsigned.  If
13109         they save binary data, print a message in the echo area saying the
13110         text was not put into the clipboard.
13112         * msdos.c (IT_write_glyphs): Move constant expression out of the loop.
13114 1999-01-06  Andreas Schwab  <schwab@gnu.org>
13116         * systty.h [__GLIBC__ >= 2]: Check __FAVOR_BSD instead of
13117         _BSD_SOURCE, the latter is always defined.
13119 1999-01-05  Richard Stallman  <rms@psilocin.ai.mit.edu>
13121         * fns.c (Frequire): Don't fail to unbind bindings.
13123 1999-01-02  Richard Stallman  <rms@psilocin.ai.mit.edu>
13125         * emacs.c (main) [DOUG_LEA_MALLOC]: Don't call r_alloc_reinit.
13127         * charset.c (Ffind_charset_region): Fix doc typo.
13129 1998-12-31  Eli Zaretskii  <eliz@mescaline.gnu.org>
13131         * msdos.c (IT_write_glyphs): Convert unibyte characters to
13132         multibyte in unibyte buffers only.
13134         * keymap.c (Fdefine_prefix_command): Accept a third argument NAME
13135         and pass it to Fmake_sparse_keymap.
13137 1998-12-29  Richard Stallman  <rms@psilocin.ai.mit.edu>
13139         * alloc.c (MMAP_MAX_AREAS): New macro.
13140         (allocate_vectorlike, make_uninit_multibyte_string): Use that.
13141         (init_alloc_once): Use that.
13143         * s/gnu-linux.h [DOUG_LEA_MALLOC] (REL_ALLOC): Undefine it.
13145         * alloc.c (lisp_malloc, lisp_free): New functions.
13146         Use them instead of malloc, xmalloc, and xfree, for Lisp objects.
13147         Don't set allocating_for_lisp in the callers; let lisp_malloc do it.
13148         (n_interval_blocks, n_float_blocks): New variable.
13149         (n_cons_blocks, n_vectors, n_symbol_blocks): New variable.
13150         (n_marker_blocks, n_string_blocks): New variable.
13151         (init_intervals, make_interval): Set a count variable.
13152         Use lisp_malloc instead of setting allocating_for_lisp.
13153         (init_float, make_float, init_cons, Fcons): Likewise.
13154         (allocate_vectorlike, init_symbol, Fmake_symbol): Likewise
13155         (init_marker, allocate_misc, init_strings): Likewise.
13156         (make_uninit_multibyte_string): Likewise.
13157         (gc_sweep, compact_strings): Decrement the count variables.
13159         * alloc.c (uninterrupt_malloc): Don't store Emacs's hooks
13160         into the old_..._hook variables.
13162 1998-12-28  Richard Stallman  <rms@psilocin.ai.mit.edu>
13164         * keyboard.c: In each active map, for each menu bar item, use only
13165         the first submap.
13166         (menu_bar_one_keymap): Initialize menu_bar_one_keymap_changed_items.
13167         (menu_bar_item): Update and test menu_bar_one_keymap_changed_items.
13168         (syms_of_keyboard): Staticpro and init it.
13170         * xmenu.c (single_keymap_panes):
13172 1998-12-28  Andrew Innes  <andrewi@delysid.gnu.org>
13174         * w32fns.c (w32_msg_pump): Ignore WM_NULL message posted to thread
13175         by complete_deferred_msg.
13176         (post_character_message): Cancel all deferred messages when
13177         quit_char is typed, in order to break out of potential deadlocks.
13178         (cancel_all_deferred_msgs): New function.
13179         (complete_deferred_msg): Don't abort if msg not found; may have
13180         been cancelled.
13181         (Fw32_reconstruct_hot_key): Use pre-interned symbols.
13182         (Fw32_send_sys_command): Wait for system command to
13183         complete before returning.
13185         * w32term.c (x_iconify_frame): Wait for frame to be iconified; do
13186         not set async_iconified flag though.
13188         * w32proc.c: (Vw32_start_process_inherit_error_mode): New variable.
13189         (create_child): Use it.
13190         (syms_of_ntproc): Defvar it.  Also fix docstrings for
13191         w32-start-process-share-console and w32-start-process-show-window.
13193         * unexw32.c (_start): Force system calls accessing unmounted
13194         devices to fail without prompting.
13196 1998-12-26  Richard Stallman  <rms@psilocin.ai.mit.edu>
13198         * emacs.c (main): Call memory_warnings and uninterrupt_malloc
13199         even when starting the dumped Emacs.
13201         * keymap.c (Fsingle_key_description): Handle (control ?x) etc.
13202         (Fkey_description): Handle lists like vectors.
13204 1998-12-21  Kenichi Handa  <handa@etl.go.jp>
13206         * callint.c (Fcall_interactively) <'C'>: Give Fread_char Qnil
13207         because of the change of the second argument of Fread_char.
13209         * charset.c (Fcharset_after): Check range.  If POS is out of
13210         range, return nil.
13212         * keyboard.c (read_char): Don't bind input-method-exit-on-first-char.
13214         * lread.c (Fread_char): Change the meaning of the second argument.
13215         (Fread_event): Likewise.
13216         (Fread_char_exclusive): Likewise.
13218         * print.c (printchar): Fix previous change.
13220         * process.c (read_process_output): Decide the multibyteness of
13221         string given to a process filter by a coding system used for
13222         decoding the process output.
13224 1998-12-21  Eli Zaretskii  <eliz@mescaline.gnu.org>
13226         * xterm.c (dumpglyphs): Don't convert 7-bit ASCII characters via
13227         nonascii-translation-table.
13228         * msdos.c (IT_write_glyphs): Likewise.
13229         * fns.c (concat): Likewise.
13230         * charset.c (unibyte_char_to_multibyte): Likewise.
13231         * insdel.c (copy_text, count_size_as_multibyte): Likewise.
13233 1998-12-21  Andreas Schwab  <schwab@delysid.gnu.org>
13235         * doc.c (Fdocumentation): Change the doc string for prefix
13236         commands to make it a complete sentence in one line.
13238 1998-12-16  Petri Kaurinkoski  <Petri.Kaurinkoski@hut.fi>
13240         * s/irix6-5.h: New file.
13241         * s/irix6-0.h (IRIX6): Define this symbol.
13242         * s/usg5-4.h (TIOCSIGSEND): Don't define this if irix6.
13243         (bcopy, bcmp, bzero): Likewise.
13244         * m/iris4d.h (LIBS_MACHINE): Leave this blank if irix6.5.
13245         (C_SWITCH_MACHINE): New value for irix6.5.
13247 1998-12-15  Richard Stallman  <rms@gnu.org>
13249         * fns.c (Fbase64_decode_region, Fbase64_decode_string):
13250         Do free malloc'd memory even in case of failure.  Use xfree, not free.
13251         (Fbase64_encode_region, Fbase64_encode_string): Use xfree, not free.
13252         (base64_decode_1): Don't fail for short lines.
13254         * print.c (printchar): Outputting multibyte characters
13255         to echo area always makes it multibyte.
13257         * search.c (search_buffer): Don't use Boyer-Moore
13258         to search for an invalid multibyte code.
13259         In unibyte case, no need to check whether there are translations
13260         in more than one charset; just set charset_base to 0.
13262 1998-12-15  Ken'ichi Handa  <handa@delysid.gnu.org>
13264         * print.c (printchar): Cancel previous change.
13266 1998-12-15  Kenichi Handa  <handa@etl.go.jp>
13268         * callproc.c: Include "ccl.h".
13269         (Fcall_process): Doc-string modified.  Set CODING_MODE_LAST_BLOCK
13270         bit in argument_coding.mode to tell encoding procedure to flush
13271         data.  While encoding arguments, if argument_coding uses CCL
13272         program, initialize it again after encoding.
13273         (Fcall_process_region): Doc-string modified.  Handle the case that
13274         NARGS is 3.
13276         * ccl.c (CCL_SUCCESS): Don't set ccl->ic.
13277         (ccl_driver) <CCL_End>: Pretend that all source text is consumed.
13278         Set `ic' to the head of this command.
13279         (ccl_driver) <CCL_ReadMultibyteChar2>: Return a single byte 8-bit
13280         code for an invalid code.
13281         (setup_ccl_program): If the arg VEC is nil, skip setting ups
13282         based on VEC.
13284         * charset.c (Qunknown): New variable.
13285         (init_charset_once): Intern and staticpro Qunknown.  Initialize
13286         all elements of Vcharset_symbol_table to Qunknown.
13287         (find_charset_in_str): New arg MULTIBYTE.  If it is zero, check
13288         unibyte characters only.  For an invalid composition sequence, set
13289         CHARSETS[1] to 1.
13290         (Ffind_charset_region): Call find_charset_in_str with an
13291         appropriate MULTIBYTE arg.  If undefined charsets are found,
13292         include `unknown' is the return value.
13293         (Ffind_charset_string): Likewise.
13294         (Fsplit_char): If CHAR is invalid, return `(unknown CHAR)'.
13295         (str_cmpchar_id): Max composite character code should be less than
13296         GENERIC_COMPOSITION_CHAR.
13298         * charset.h (find_charset_in_str): Update declaration.
13300         * coding.c (DECODE_DESIGNATION): Jump to label_invalid_code if
13301         final_char is invalid.
13302         (decode_coding): If coding->type is coding_type_ccl, call
13303         ccl_coding_driver even if SRC_BYTES is zero.
13304         (code_convert_region): Update `inserted' correctly after calling
13305         coding->post_read_conversion.  Even after the code converter
13306         consumed all source text, call it once more if it is
13307         coding_type_ccl to flush out data.
13309         * fileio.c (Finsert_file_contents): Even if INSERTED is zero, if
13310         CODING is handled by CCL program, call code_convert_region.
13312         * fns.c (string_char_to_byte): Handle invalid multibyte sequence
13313         correctly.
13314         (string_byte_to_char): Likesize.
13316         * print.c (printchar): When outputting a multibyte character to
13317         echo area, always set message_enable_multibyte to 1.
13319         * process.c (read_process_output): If NBYTES is zero and
13320         CODING_MODE_LAST_BLOCK bit is not yet set in coding->mode, set it
13321         and try decoding again.
13322         (Fprocess_send_eof): If the coding system of PROCESS
13323         requires flushing, call send_process with null-string at first.
13325         * w16select.c (Fw16_set_clipboard_data): Call find_charset_in_str
13326         with MULTIBYTE arg 0.
13327         * w32select.c (Fw32_set_clipboard_data): Likewise.
13328         * xselect.c (lisp_data_to_selection_data): Likewise.
13330 1998-11-30  Richard Stallman  <rms@psilocin.ai.mit.edu>
13332         * search.c (Freplace_match): Set OPOINT clearly for the case
13333         where point is in the middle of the text to be replaced.
13335         * xdisp.c (display_text_line): When handling HPOS < 0 after loop,
13336         if compute_motion fails to advance at all, don't back it up.
13338 1998-12-10  Geoff Voelker  <voelker@cs.washington.edu>
13340         * w32.c (w32_get_long_filename): Handle root dirs correctly.
13342         * s/ms-w32.h (LOCALTIME_CACHE): Define.
13344 1998-12-09  Richard Stallman  <rms@gnu.org>
13346         * insdel.c (insert_from_buffer_1): Properly count the size
13347         of output from conversion to multibyte even when input
13348         is split across the gap.
13350 1998-12-09  Karl Heuer  <kwzh@gnu.org>
13352         * keyboard.c: Doc fixes.
13354         * s/irix4-0.h (C_SWITCH_SYSTEM) [!__GNUC__]: Increase space.
13356 1998-12-08  Andrew Innes  <andrewi@harlequin.co.uk>
13358         * w32select.c (Fw32_get_clipboard_data): Do not delete isolated CR
13359         characters, only convert CRLF to LF.
13361 1998-12-08  Geoff Voelker  <voelker@cs.washington.edu>
13363         * makefile.nt: Do string comparision of _NMAKE_VER.
13365 1998-12-06  Eli Zaretskii  <eliz@mescaline.gnu.org>
13367         * Makefile.in (msdos.o): Depend on termchar.h, charset.h,
13368         coding.h, and disptab.h
13370         * msdos.c (Vdos_unsupported_char_glyph): New variable.
13371         (syms_of_msdos): DEFVAR_LISP it.
13372         (IT_insert_glyphs, IT_delete_glyphs): New functions which abort Emacs.
13373         (internal_terminal_init): Set up insert_glyphs_hook and
13374         delete_glyphs_hook to call them.  Explicitly set char_ins_del_ok to 0.
13375         (unibyte_display_via_language_environment): New variable.
13376         (syms_of_msdos): Devfar it.
13377         (IT_write_glyphs): Honor glyph aliasing via Vglyph_table.
13378         Encode the character codes of the glyphs according to the
13379         terminal_coding in effect.
13381 1998-12-04  Andreas Schwab  <schwab@delysid.gnu.org>
13383         * fns.c (Fstring_as_unibyte): Doc fix.
13385 1998-12-03  Andreas Schwab  <schwab@delysid.gnu.org>
13387         * charset.h: Declare char_valid_p.
13389 1998-12-03  Eli Zaretskii  <eliz@mescaline.gnu.org>
13391         * dosfns.c (dos_cleanup): Flush and fsync the termscript stream.
13393         * msdos.c (init_environment): Record the time we started up.
13394         (IT_reset_terminal_modes): Don't restore the screen if we exit too
13395         fast after startup (aka crash).
13397 1998-12-02  Geoff Voelker  <voelker@cs.washington.edu>
13399         * w32.c (check_windows_init_file): Use decode_env_path when
13400         using EMACSLOADPATH.
13402 1998-12-02  Jason Rumney  <jasonr@altavista.net>
13404         * w32term.c (dumpglyphs): Use unsigned char arrays.
13405         Use FONT_MAX_WIDTH to detect and fudge proportional fonts
13406         for various languages.
13407         Compensate for fonts that have underhangs (e.g., Thai).
13409         * w32term.h (FONT_MAX_WIDTH): New macro.
13411 1998-12-02  Andrew Innes  <andrewi@harlequin.co.uk>
13413         * keyboard.c (Qlanguage_change): New variable.
13414         (syms_of_keyboard): Init it.
13415         (kbd_buffer_get_event) [WINDOWSNT]: Generate language-change events.
13416         (lispy_function_keys) [HAVE_NTGUI]: Remove names for modifier
13417         keys; add name for Escape key; extend to 256 elements.
13418         (parse_modifiers): Make non-static.
13420         * keyboard.h (parse_modifiers): Declare prototype.
13422         * termhooks.h (event_kind) [WINDOWSNT]: Define language_change_event.
13424         * w32fns.c (w32_last_error): Fix cut+paste error.
13425         (Vw32_phantom_key_code): New variable.
13426         (Qhyper, Qsuper, Qmeta, Qalt, Qctrl, Qcontrol, Qshift): New variables.
13427         (syms_of_w32fns): Init and register them.
13428         (reset_modifiers): Use a more precise test for whether Emacs has
13429         keyboard focus.  Synchronize state of all keys that can be used as
13430         modifiers, to overcome problems arising from hot-keys.
13431         (w32_key_to_modifier): Be careful not to call intern() to avoid
13432         requiring thread synchronization.
13433         (w32_msg_pump): Handle new WM_EMACS_TOGGLE_LOCK_KEY message.
13434         (w32_wnd_proc): Ensure lock key indicator lights are updated
13435         promptly on Windows 9x, by passing key events on to the system.
13436         (w32_wnd_proc): Use Vw32_phantom_key_code to stop system
13437         responding to Windows key events when not wanted.
13438         (w32_wnd_proc): Undo the mapping of Ctrl-Pause into cancel and
13439         Ctrl-NumLock into pause by the system.
13440         (w32_wnd_proc): Don't translate key combinations containing any
13441         modifiers other than shift (and capslock).
13442         (w32_wnd_proc): Reset modifier key states when receiving focus (we
13443         can't determine the key states until we have keyboard focus).
13444         (Fw32_toggle_lock_key): New function.
13445         (syms_of_w32fns): Defsubr it.
13447         * w32inevt.c (key_event): Use Vw32_phantom_key_code.  Undo the
13448         mapping of Ctrl-Pause into cancel, and Ctrl-NumLock into pause.
13449         (w32_console_toggle_lock_key): New function.
13451         * w32term.h (WM_EMACS_TOGGLE_LOCK_KEY): New define.
13453 1998-11-30  Richard Stallman  <rms@psilocin.ai.mit.edu>
13455         * search.c (Freplace_match): Set OPOINT clearly for the case
13456         where point is in the middle of the text to be replaced.
13458         * xdisp.c (display_text_line): When handling HPOS < 0 after loop,
13459         if compute_motion fails to advance at all, don't back it up.
13461 1998-11-28  Richard Stallman  <rms@psilocin.ai.mit.edu>
13463         * xfns.c (Qouter_window_id): New variable.
13464         (syms_of_xfns): Initialize it.
13465         (x_report_frame_params): Set up outer-window-id parameter.
13467         * keymap.c (Fsingle_key_description): Fix previous change.
13469 1998-11-26  Ken'ichi Handa  <handa@delysid.gnu.org>
13471         * lisp.h (Frequire): Update declaration.
13473 1998-11-26  Kenichi Handa  <handa@etl.go.jp>
13475         * ccl.c (ccl_driver) <CCL_TranslateCharacter>: Don't suppress MSB
13476         if the charset is ascii.
13477         (ccl_driver) <CCL_TranslateCharacterConstTbl>: Likewise.
13479         * charset.c (non_ascii_char_to_string): If C has modifier bits,
13480         make an appropriate one byte string.
13481         (char_bytes): Handle the case that C is a single byte char or has
13482         modifier bits.
13484         * charset.h (CHAR_BYTES): If C has modifier bits, return 1.
13486         * cmds.c (internal_self_insert): If C has modifier bits, insert
13487         appropriate one byte char.
13489 1998-11-25  Richard Stallman  <rms@psilocin.ai.mit.edu>
13491         * fns.c (Fstring_as_unibyte, Fstring_as_multibyte):
13492         Clear text properties in the new string.
13494 1998-11-24  Felix Lee  <flee@cygnus.com>
13496         * process.c (read_process_output): Call signal_after_change.
13498 1998-11-24  Richard Stallman  <rms@psilocin.ai.mit.edu>
13500         * buffer.c (syms_of_buffer): Doc fix.
13502         * keyboard.c (syms_of_keyboard): Doc fix.
13504 1998-11-22  Richard Stallman  <rms@psilocin.ai.mit.edu>
13506         * frame.c (Fset_mouse_position): Doc fix.
13508 1998-11-20  Richard Stallman  <rms@psilocin.ai.mit.edu>
13510         * keymap.c (Fmake_keymap): Doc fix.
13512 1998-11-17  Kenichi Handa  <handa@etl.go.jp>
13514         * category.c (word_boundary_p): If C1 or C2 are composite
13515         characters, test their first components.
13517 1998-11-16  Richard Stallman  <rms@sucrose.ai.mit.edu>
13519         * window.c (temp_output_buffer_show): Around temp-buffer-show-hook,
13520         don't do save-excursion, just restore selected window.
13522         * window.c (window_loop): For UNSHOW_BUFFER,
13523         always do consider minibuffer windows.
13525 1998-11-16  Kenichi Handa  <handa@etl.go.jp>
13527         * charset.h (SINGLE_BYTE_CHAR_P): Check if C is negative or not.
13529         * charset.c (non_ascii_char_to_string): If C is negative, signal error.
13531         * lisp.h (CHAR_TABLE_REF): Check if IDX is negative or not.
13533         * s/bsdos4.h: New file.
13535 1998-11-16  Kenichi Handa  <handa@etl.go.jp>
13537         * Makefile.in (abbrev.o): Depend on charset.h
13538         (bytecode.o): Depend on charset.h.
13540         * bytecode.c: Include charset.h.
13542         * abbrev.c: Include charset.h.
13544         * syntax.h (SYNTAX_ENTRY_INT): For a composite character, check
13545         the first component.
13547 1998-11-13  Ehud Karni  <ehud@unix.simonwiesel.co.il>
13549         * m/aviion-intel.h (LIBS_MACHINE): Delete redundant definition.
13551 1998-11-11  Richard Stallman  <rms@gnu.org>
13553         * xterm.c (XTread_socket): Fix previous change in case F == 0.
13555         * s/dgux5-4-3.h (BSD_PGRPS): Add #undef.
13557         * s/dgux4.h (BROKEN_FIONREAD): #undef commented out.
13558         (INTERRUPT_INPUT): #define commented out.
13560         * m/aviion-intel.h: New file.
13562 1998-11-11  Eli Zaretskii  <eliz@delysid.gnu.org>
13564         * fns.c (MAX_ALLOCA): New macro.
13565         (Fbase64_encode_region, Fbase64_encode_string,
13566         Fbase64_decode_region, Fbase64_decode_string):  Don't allocate
13567         more than MAX_ALLOCA bytes with alloca; otherwise use xmalloc.
13569 1998-11-11  Ken'ichi Handa  <handa@delysid.gnu.org>
13571         * insdel.c (byte_combining_error): Error message improved.
13573         * charset.c (char_valid_p): Handle a composite character correctly.
13575 1998-11-11  Kenichi Handa  <handa@etl.go.jp>
13577         * charset.c (str_cmpchar_id): Check the byte sequence for
13578         composition more rigidly.
13579         (Fcompose_string): Allow DEL to be composed.  Signal error if STR
13580         contains an invalid multibyte sequence.
13582         * xterm.c (x_list_fonts): Don't change the value of maxnames.
13584 1998-11-10  Andrew Innes  <andrewi@harlequin.co.uk>
13586         * w32term.h (struct w32_display_info): New element faked_key.
13587         (WM_EMACS_SETKEYBOARDLAYOUT):
13588         (WM_EMACS_REGISTER_HOT_KEY):
13589         (WM_EMACS_UNREGISTER_HOT_KEY): New message definitions.
13590         (LEFT_WIN_PRESSED):
13591         (RIGHT_WIN_PRESSED):
13592         (APPS_PRESSED): New console keyboard modifier flags.
13594         * w32term.c (convert_to_key_event): Removed.
13595         (is_dead_key): Copied to w32fns.c.
13596         (w32_read_socket): Generate language_change_event.  Modify to work
13597         with keyboard handling changes in w32_wnd_proc.
13599         * w32proc.c (sys_kill): Set extended key flag when faking
13600         Ctrl-Break keystrokes.
13601         (Fw32_get_locale_info): Allow LONGFORM parameter to specify an
13602         arbitrary locale property using a numerical index.
13603         (Vw32_valid_codepages): New variable.
13604         (enum_codepage_fn):
13605         (Fw32_get_valid_codepages):
13606         (Fw32_get_console_codepage):
13607         (Fw32_set_console_codepage):
13608         (Fw32_get_console_output_codepage):
13609         (Fw32_set_console_output_codepage):
13610         (Fw32_get_codepage_charset):
13611         (Fw32_get_valid_keyboard_layouts):
13612         (Fw32_get_keyboard_layout):
13613         (Fw32_set_keyboard_layout): New functions, exposing Windows locale
13614         handling functions.
13615         (syms_of_ntproc): Register them.
13617         * w32inevt.c: Include w32term.h and w32heap.h.
13618         (map_keypad_keys):
13619         (Vw32_enable_caps_lock):
13620         (Vw32_enable_num_lock):
13621         (Vw32_pass_lwindow_to_system):
13622         (Vw32_pass_rwindow_to_system):
13623         (Vw32_lwindow_modifier):
13624         (Vw32_rwindow_modifier):
13625         (Vw32_apps_modifier):
13626         (Vw32_scroll_lock_modifier):
13627         (w32_key_to_modifier): Add externs.
13628         (w32_kbd_mods_to_emacs): Recognize Windows keys, Apps key, and
13629         Scroll Lock as potential modifiers; exclude numpad keys from
13630         effect by CapsLock; act on Vw32_enable_caps_lock; remove obsolete
13631         code.
13632         (is_dead_key): Copy from w32fns.c.
13633         (w32_kbd_patch_key): Comment attempt to improve handling of
13634         dead-keys, and system bug relating to same on Windows NT.  Work
13635         around the bug by calling ToUnicode and then converting to the
13636         correct codepage.
13637         (map_virt_key): Removed obsolete variable.
13638         (lispy_function_keys): Add extern.
13639         (key_event): Major rework of keyboard input handling: optionally
13640         recognize Windows keys and Apps key as modifiers; optionally treat
13641         NumLock, CapsLock and ScrollLock as function keys; let system
13642         translate keystrokes to characters to avoid system bugs relating
13643         to dead-key handling; preserve shift distinction for control
13644         characters.  Remove some obsolete code.
13646         * makefile.nt ($(BLD)\w32inevt.obj): Add dependencies on w32term.h
13647         and w32heap.h.
13649         * w32fns.c (Vw32_pass_optional_keys_to_system): Variable removed.
13650         (Vw32_pass_lwindow_to_system):
13651         (Vw32_pass_rwindow_to_system):
13652         (Vw32_lwindow_modifier):
13653         (Vw32_rwindow_modifier):
13654         (Vw32_apps_modifier):
13655         (Vw32_enable_num_lock):
13656         (Vw32_enable_caps_lock):
13657         (Vw32_scroll_lock_modifier): New variables.
13658         (modifier_set): Return toggle state for Scroll Lock.
13659         (w32_key_to_modifier): New function.  Returns chosen modifier bit
13660         for given key.
13661         (w32_get_modifiers): Returns modifier flags for
13662         non-keyboard input events.
13663         (construct_console_modifiers): Renamed from construct_modifiers;
13664         recognize Windows and Apps keys as modifiers.
13665         (w32_get_key_modifiers): New function.  Returns modifier flags for
13666         keyboard input events.
13667         (map_keypad_keys): Make non-static.  Use second arg as extended
13668         flag.
13669         (w32_grabbed_keys): New variable.
13670         (HOTKEY, HOTKEY_ID, HOTKEY_VK_CODE, HOTKEY_MODIFIERS): New macros.
13671         (register_hot_keys):
13672         (unregister_hot_keys):
13673         (lookup_vk_code):
13674         (w32_parse_hot_key):
13675         (Fw32_register_hot_key):
13676         (Fw32_unregister_hot_key):
13677         (Fw32_registered_hot_keys):
13678         (Fw32_reconstruct_hot_key): New functions to support hotkeys.
13679         (post_character_message): New function.
13680         (w32_msg_pump): Handle new messages for using hotkeys and changing
13681         keyboard layout/language.
13682         (w32_wnd_proc): Major rework of keyboard input handling:
13683         optionally recognize Windows keys and Apps key as modifiers;
13684         optionally treat NumLock, CapsLock and ScrollLock as function
13685         keys; let system translate keystrokes to characters to avoid
13686         system bugs relating to dead-key handling; preserve shift
13687         distinction for control characters; forward keyboard
13688         layout/language changes to lisp; detect and convert hot-key events
13689         to normal keystrokes.
13690         (syms_of_w32fns): Register new functions and variables.
13691         (w32_last_error): New function for use in debugging.
13693 1998-11-10  Kenichi Handa  <handa@etl.go.jp>
13695         * category.h (CATEGORY_SET): Adjusted for the change of
13696         cmpchar_component.
13697         (CATEGORY_SET): Likewise.
13699         * charset.c (cmpchar_component): New arg NOERROR.  Check
13700         composition char ID more strictly.
13701         (Fcmpchar_component): Call cmpchar_component with NOERROR arg zero.
13702         (Fcmpchar_cmp_rule): If CHARACTER should be composed relatively,
13703         return 255.
13704         (Fcompose_string): Signal error if STR contains a rule-based
13705         composition character.
13707         * charset.h (cmpchar_component): Proto-type adjusted.
13709 1998-11-09  Kenichi Handa  <handa@etl.go.jp>
13711         * charset.c (string_to_non_ascii_char): Return correct length for
13712         a charset of dimension 2 and composition character.
13714 1998-11-08  Richard Stallman  <rms@sucrose.ai.mit.edu>
13716         * keymap.c (Fsingle_key_description): Handle generic characters.
13718         * process.c (Fprocess_status): Doc fix.
13720 1998-11-06  Ken'ichi Handa  <handa@delysid.gnu.org>
13722         * charset.c (init_charset_once): Fix previous change.
13724 1998-11-06  Kenichi Handa  <handa@etl.go.jp>
13726         * charset.c (string_to_non_ascii_char): Fix previous change.
13727         (char_valid_p): Check the validity of CHARSET by CHARSET_DEFINED_P.
13729         * charset.h (SPLIT_NON_ASCII_CHAR): Check dimension of an invalid
13730         character correctly.
13731         (STRING_CHAR): Handle an invalid charater correctly.
13733 1998-11-05  Kenichi Handa  <handa@etl.go.jp>
13735         * charset.c (string_to_non_ascii_char): Fix previous change.
13737         * charset.h (MAKE_NON_ASCII_CHAR): Check validity of CHARSET.
13739         * editfns.c (Fstring_to_char): Don't return a multibyte character
13740         if STRING is a unibyte string.
13742         * indent.c (MULTIBYTE_BYTES_WIDTH): Check validity of a multibyte
13743         character.
13745         * xdisp.c (display_text_line): Check validity of a multibyte character.
13746         (display_string): Likewise.  Handle an invalid character correctly.
13748 1998-11-05  Karl Heuer  <kwzh@gnu.org>
13750         * insdel.c (Fcombine_after_change_execute): Return nil, not junk.
13751         If nothing to do, return immediately.
13752         (syms_of_insdel): Initialize combine_after_change_buffer.
13754 1998-11-05  Richard Stallman  <rms@gnu.org>
13756         * xterm.c (XTread_socket): ButtonPress clears f->mouse_moved.
13758 1998-11-04  Geoff Voelker  <voelker@cs.washington.edu>
13760         * w32term.c (w32_enable_unicode_output): Rename from
13761         w32_no_unicode_output.
13762         (w32_use_unicode_for_codepage, syms_of_w32term): Use new name
13763         and new semantics.
13765 1998-11-04  Jason Rumney  <jasonr@altavista.net>
13767         * w32fns.c (w32_list_fonts): Report an error if a frame has not
13768         been created yet.
13770         * w32term.c (dumpglyphs): Use FRAME_FONT for w32_fill_area.
13772 1998-11-04  Kenichi Handa  <handa@etl.go.jp>
13774         * charset.c (string_to_non_ascii_char): Change the check for the
13775         varidity of multibyte form.
13776         (update_charset_table): Check validity of BYTES.  Don't set
13777         bytes_by_char_head here.
13778         (init_charset_once): Set bytes_by_char_head completely.
13780         * frame.c (do_switch_frame): Cancel previous change.
13782         * print.c (print_string): Check validity of a character.
13783         (print): Likewise.
13785         * sysdep.c [nec_ews_svr4]: Extern *_sobuf.
13787         * m/ews4800.h, s/ux4800.h: New files.
13789 1998-11-03  Theodore Jump <tjump@tertius.com>
13791         * makefile.nt: Compile multiple source files when possible.
13793         * w32faces.c (Qmouse_face): Replace definition with extern decl.
13795 1998-11-03  Andrew Innes  <andrewi@delysid.gnu.org>
13797         * w32.c (stat): GetFileInformationByHandle can legitimately fail,
13798         so don't rely on it succeeding.
13800         * w32fns.c (x_to_w32_font): Specify DEFAULT_CHARSET in the w32
13801         LOGFONT struct if x font doesn't specify the charset.
13802         (x_to_w32_charset): Change >= to == when testing results of
13803         stricmp.
13805 1998-11-02  Richard Stallman  <rms@sucrose.ai.mit.edu>
13807         * fns.c (Frequire): New arg NOERROR.
13809 1998-11-02  Andrew Innes  <andrewi@harlequin.co.uk>
13811         * fileio.c (Fsubstitute_in_file_name) [DOS_NT]: Fix typo.
13813 1998-10-31  Richard Stallman  <rms@psilocin.ai.mit.edu>
13815         * xfaces.c (Qmouse_face): Replace definition with extern decl.
13816         (syms_of_xfaces): Initialization deleted.
13818         * textprop.c (Qmouse_face): Variable definition moved here.
13819         (syms_of_textprop): Initialize it.
13821         * data.c (set_internal): For built-in maybe-local vars,
13822         when BINDFLAG is set, do not mark them as local.
13824 1998-10-31  Ken'ichi Handa  <handa@delysid.gnu.org>
13826         * insdel.c (replace_range): Fix previous change.
13828 1998-10-31  Kenichi Handa  <handa@etl.go.jp>
13830         * editfns.c (Fsubst_char_in_region): Fix previous change.
13831         (Ftranslate_region): Fix previous change.
13833         * fns.c (Fbase64_decode_region): Fix previous change.
13835         * frame.c (do_switch_frame): Update minibuf_window if necessary.
13837         * insdel.c (byte_combining_error): New function.
13838         (CHECK_BYTE_COMBINING_FOR_INSERT): Call byte_combining_error.
13839         (insert_from_string_1): Set *(GPT_ADDR) to 0 before calling
13840         CHECK_BYTE_COMBINING_FOR_INSERT.
13841         (insert_from_buffer_1): Likewise.
13842         (adjust_after_replace): Check the posibility of inhibitted byte
13843         combining correctly.
13844         (replace_range): Before signaling an error for inhibitted byte
13845         combining, recover the buffer in a safe state.
13846         (del_range_2): Check the posibility of inhibitted byte combining
13847         correctly.
13849 1998-10-30  Andreas Schwab  <schwab@delysid.gnu.org>
13851         * xselect.c (Vselection_coding_system): Doc fix.
13853         * fns.c (Fbase64_encode_region): Use SET_PT_BOTH instead of SET_PT
13854         when we have both char and byte position.  Fix type clashes.
13856         * eval.c (Fsignal): Use a separate format string when passing
13857         error message string to fatal, in case it contains %'s.
13859         * editfns.c (Fchar_after): Fix type clashes.
13861         * charset.c (Fchar_bytes): Doc fix.
13862         (char_bytes): Fix returned value to match returned type.
13863         (syms_of_charset): Fix type clash in initialisation of
13864         Vauto_fill_chars.
13866 1998-10-29  Geoff Voelker  <voelker@cs.washington.edu>
13868         * w32console.c (initialize_w32_display): Use buffer coords
13869         instead of buffer size (which may be larger than the window).
13871         * fileio.c (init_fileio_once): New function.
13873         * emacs.c (main): Invoke init_fileio_once.
13875 1998-10-28  Paul Eggert  <eggert@twinsun.com>
13877         * xterm.c (XTread_socket): Check the returned value of
13878         XmbLookupString more carefully.
13880 1998-10-28  Kenichi Handa  <handa@etl.go.jp>
13882         * coding.c (DECODE_CHARACTER_ASCII): Check validity of inserted code.
13883         (DECODE_CHARACTER_DIMENSION1): Likewise.
13884         (DECODE_CHARACTER_DIMENSION2): Likewise.
13885         (decode_coding_sjis_big5): Check the 2nd byte of SJIS correctly.
13887         * editfns.c (Fsubst_char_in_region): Fix previous change.
13888         (Ftranslate_region): Fix previous change.
13890         * insdel.c (check_markers): Check if markers are at character boundry.
13891         (adjust_markers_for_insert): Fix previous change.
13892         (count_combining_before): Don't limit the check at BEGV.
13893         (count_combining_after): Don't limit the check at ZV.
13894         (CHECK_BYTE_COMBINING_FOR_INSERT): New macro.
13895         (insert_1_both): Call CHECK_BYTE_COMBINING_FOR_INSERT.
13896         (insert_from_string_1): Likewise.
13897         (insert_from_buffer_1): Likewise.
13898         (adjust_after_replace): Inhibit bytes combined across region
13899         boundary.  Update end_unchanged correctly.
13900         (replace_range): Call CHECK_BYTE_COMBINING_FOR_INSERT.  Update
13901         end_unchanged correctly.
13902         (del_range_2): Inhibit bytes combined across region boundary.
13903         Update end_unchanged correctly.
13905 1998-10-27  Geoff Voelker  <voelker@cs.washington.edu>
13907         * w32.c (check_windows_init_file): Also look in load path specified
13908         in environment.
13910         * w32console.c (Fset_message_beep): Recognize 'silent.
13911         (w32_sys_ring_bell): Do nothing for the 'silent sound.
13913         * w32fns.c (w32_color_map_lookup): Remove duplicate definition.
13915         * w32select.c (Vnext_selection_coding_system): New variable.
13916         (syms_of_w32select): DEFVAR_LISP it.
13917         (Fw32_set_clipboard_data): Use Vnext_selection_coding_system if
13918         non-nil.  Always convert multibyte strings.
13919         (Fw32_get_clipboard_data): Use Vnext_selection_coding_system if
13920         non-nil.  Always convert a string that includes non-ASCII characters.
13922 1998-10-27  Richard Stallman  <rms@psilocin.ai.mit.edu>
13924         * fns.c (Fbase64_decode_string): Doc fix.
13925         (Fbase64_decode_region, Fbase64_encode_string Fbase64_encode_region):
13926         Likewise.
13928 1998-10-27  Dave Love  <fx@gnu.org>
13930         * fns.c (Fbase64_decode_region, Fbase64_encode_region): Fix
13931         newline in doc string.
13933 1998-10-27  Kenichi Handa  <handa@etl.go.jp>
13935         * editfns.c (Fsubst_char_in_region): Correctly handle the case
13936         that byte combining before happens.
13937         (Ftranslate_region): Likewise.
13939         * insdel.c (adjust_after_replace): Correctly handle the case that
13940         both byte combining before and byte combining after happen.
13941         (replace_range): Likewise.
13943 1998-10-26  Kenichi Handa  <handa@etl.go.jp>
13945         * category.c (syms_of_category): Doc-string modified.
13947         * coding.c (code_convert_region): Kill the work buffer created by
13948         pre-write-conversion.
13950 1998-10-25  Jason Rumney  <jasonr@altavista.net>
13952         * emacs.c (main) [HAVE_NTGUI]: Invoke syms_of_fontset().
13954 1998-10-23  Kenichi Handa  <handa@etl.go.jp>
13956         * coding.c (code_convert_region): While preserving the orignal
13957         point, pay attention to the byte combining problem.
13959         * fns.c (Fbase64_decode_region): Pay attention to the byte
13960         combining problem.
13962         * insdel.c (adjust_markers_for_insert): Adjust markers by taking
13963         combined_before_bytes and combined_after_bytes into account.
13964         (count_combining_after): Handle the case that LENGTH is zero.
13965         (adjust_after_replace): Record deletion at correct buffer
13966         position.  Handle the case that LEN is zero.
13967         (replace_range): Record deletion at correct buffer position.
13968         (del_range_2): Call adjust_makers_for_replace to adjust makers for
13969         combined bytes.
13971 1998-10-21  Richard Stallman  <rms@psilocin.ai.mit.edu>
13973         * alloc.c (Fgarbage_collect): Block input around most of the function.
13975 1998-10-21  Kenichi Handa  <handa@etl.go.jp>
13977         * coding.c (setup_coding_system): Fix setting up
13978         coding->spec.ccl.valid_codes for CCL based coding system.
13979         (code_convert_region): Set point to FROM before inserting the
13980         result of pre-write-funciton.  Preserve original point.
13981         (code_convert_string): If coding->type is coding_type_ccl, do
13982         conversion even if the length of conversion region is zero.
13984         * fontset.c: Include frame.h before fontset.h.
13985         (list_fonts_func): Fix prototype.
13987         * frame.c: Include frame.h before fontset.h.
13989         * xterm.c: Likewise.
13991 1998-10-21  Jason Rumney  <jasonr@altavista.net>
13993         * x-list-font.c (Fx_list_fonts): Access frame parameters throught
13994         general macros.   Don't call x_list_font directory, instead call a
13995         function set in list_fonts_func.
13997         * fontset.h (list_fonts_func): Fix prototype.
13999 1998-10-20  Jason Rumney  <jasonr@altavista.net>
14001         * makefile.nt (w32fns.c): Add x-list-font.c to dependancies.
14003         * w32faces.c: Update comments referring to obsolete structs.
14004         (allocate_face, copy_face, face_eql, load_font,
14005         Fpixmap_spec_p, free_frame_faces, new_computed_face,
14006         frame_update_line_height, merge_faces, compute_base_face,
14007         Fset_face_attribute_internal): Use fontset support based on xfaces.c.
14009         * w32fns.c: (Vx_pixel_size_width): New global variable.
14010         (unibyte_display_via_language_environment): New global variable.
14011         (x_set_font): Add support for setting fontsets.
14012         (Fx_create_frame): Add check_w32(). Initialize fontsets.  Fix
14013         font names to match xlfd-tight-regexp.
14014         (w32_load_font): Rewrite based on x_load_font.
14015         (x_to_w32_charset, w32_to_x_charset): Add character sets.  Use
14016         `iso8859-1' rather than `ansi'.
14017         (w32_to_x_font): Remove `-' from font name.  Remove the `-' off the
14018         end. Move charset into `charset registry' field.
14019         (enum_font_cb2): Check charsets match.  Include width in font list.
14020         (w32_list_fonts): Rewrite based on x_list_fonts.
14021         Moved from w32term.c to have access to enumfont_t struct.
14022         (Fx_list_fonts): w32 specific version eliminated.  Include
14023         `x-list-fonts.c'.
14024         (w32_get_font_info, w32_query_font, w32_find_ccl_program): New
14025         functions for fontset support - adapted from x_ equivalents.
14026         (syms_of_w32fns): New lisp variables initialised.  Function
14027         pointers for fontset.c set up.
14029         * w32term.c: Include fontset.h.  Define codepage macros.
14030         Add ENCODE_BIG5 macro from coding.c.
14031         (w32_no_unicode_output): New variable.
14032         (w32_codepage_for_charset, w32_use_unicode_for_codepage): New
14033         functions.
14034         (BUILD_WCHAR_T, BYTE1, BYTE2): New macros.
14035         (dumpglyphs): Rewrite based on xterm.c equivalent.
14036         (x_new_font): Use functionality provided in fontset.c.
14037         (x_new_fontset): New function based on the one in xterm.c.
14038         (syms_of_w32term): Add w32-no-unicode-output flag.
14040         * w32term.h: Remove redundant font_info struct definition.
14041         (Vx_pixel_size_width_font_regexp,
14042         unibyte_display_via_language_environment): Declare variables.
14043         (w32_list_fonts, w32_get_font_info, w32_query_font, w32_load_font):
14044         Declare functions.
14045         (w32_output): New fields font_baseline and fontset.
14046         (FRAME_FONTSET, FRAME_W32_FONT_TABLE): New macros.
14048         * w32xfns.c: Include charset.h and fontset.h.
14050 1998-10-20  Richard Stallman  <rms@psilocin.ai.mit.edu>
14052         * syntax.c (syms_of_syntax): Fix the setup of Qscan_error.
14054 1998-10-20  Eli Zaretskii  <eliz@mescaline.gnu.org>
14056         * msdos.c (mouse_init): Reset the button press/release info of the
14057         mouse driver.
14058         (mouse_preempted): New variable.
14059         (dos_rawgetc): Don't generate mouse events if mouse is preempted.
14060         (XMenuActivate): Preempt the mouse during menu-handling loop.
14061         Release the current time slice while idling in the menu-handling
14062         loop.  Leave the loop only if the user pressed, then released the
14063         same button.  Discard all mouse events that are pending in the
14064         event queue before exiting.
14066 1998-10-19  Richard Stallman  <rms@psilocin.ai.mit.edu>
14068         * editfns.c (Fformat): Increase buffer size for floating format.
14070 1998-10-17  Kenichi Handa  <handa@etl.go.jp>
14072         * charset.c (Vauto_fill_chars, Qauto_fill_chars): New variables.
14073         (syms_of_charset): Staticpro and initialize Qauto_fill_chars.
14074         Declare auto-fill-chars as a Lisp variable and initialize it.
14076         * charset.h (Vauto_fill_chars): Extern it.
14078         * cmds.c (internal_self_insert): Check Vauto_fill_chars.
14080 1998-10-16  Kenichi Handa  <handa@etl.go.jp>
14082         * casefiddle.c (casify_object): Use make_string instead of
14083         make_specified_string to cope with byte-combining situation.
14085         * coding.c (decode_coding_iso2022): Set coding->fake_multibyte to
14086         1 when encountered with a code of the range 0x80..0x9F.
14088 1998-10-14  Eli Zaretskii  <eliz@mescaline.gnu.org>
14090         * callproc.c (Fcall_process) [MSDOS]: Use $TMPDIR instead of
14091         trying $TMP and $TEMP, since the former is always set in msdos.c.
14092         (Fcall_process_region) [DOS_NT]: When looking for a place to put
14093         the temporary files, check $TMPDIR as well.
14095 1998-10-14  Richard Stallman  <rms@psilocin.ai.mit.edu>
14097         * process.c (exec_sentinel, read_process_output):
14098         Restore waiting_for_user_input_p after running Lisp code.
14100         * keyboard.c (parse_menu_item): Avoid initialization for Lisp_Object.
14101         (command_loop): Likewise.
14103 1998-10-14  Kenichi HANDA  <handa@etl.go.jp>
14105         * data.c (Faset): Fix previous change.
14107         * fns.c (Ffillarray): Fix previous change.
14109         * insdel.c (adjust_markers_for_combining): This function deleted.
14110         (adjust_markers_for_replace): Correctly adjust marker positions.
14111         Don't record these adjustment because they were recorded already.
14112         (combine_bytes): Don't adjust markers here.
14114 1998-10-13  Richard Stallman  <rms@psilocin.ai.mit.edu>
14116         * minibuf.c (Fdisplay_completion_list): Put on mouse-face properties.
14118 1998-10-12  Richard Stallman  <rms@psilocin.ai.mit.edu>
14120         * keyboard.c (Fclear_this_command_keys): New function.
14121         (syms_of_keyboard): defsubr it.
14123         * macros.c (Fexecute_kbd_macro): Set real_this_command.
14125 1998-10-12  Kenichi Handa  <handa@etl.go.jp>
14127         * ccl.c (CCL_DECODE_SJIS, CCL_ENCODE_SJIS): Swap the definitions.
14129         * charset.c (Fstring): Call make_string instead of
14130         make_string_from_bytes.
14131         (Ffind_charset_region): Include `composition' in the returned list
14132         if the region contains any composite characters.
14133         (Ffind_charset_string): Include `composition' in the returned list
14134         if the string contains any composite characters.
14135         (find_charset_in_str): Handle CMPCHARP arg correctly.
14137         * coding.c (shrink_decoding_region): If a charset other than ascii
14138         is initially designated to G0, don't shrink the region.
14139         (shrink_encoding_region): Likewise.
14141         * data.c (Faset): If ARRAY is a multibyte string, pay attention to
14142         byte-combining situation.
14144         * fns.c (clear_string_char_byte_cache): New function.
14145         (Ffillarray): Handle multibyte string correctly.
14147         * lisp.h (clear_string_char_byte_cache): Extern it.
14149         * xselect.c (lisp_data_to_selection_data): Call
14150         find_charset_in_str with CMPCHARP arg 0.
14151         * w16select.c (Fw16_set_clipboard_data): Likewise.
14152         * w32select.c (Fw32_set_clipboard_data): Likewise.
14154 1998-10-11  Richard Stallman  <rms@psilocin.ai.mit.edu>
14156         * keyboard.c (parse_menu_item): For top level of menu bar,
14157         accept ordinary commands, and treat them just like a keymap.
14159 1998-10-11  Richard Stallman  <rms@sucrose.ai.mit.edu>
14161         * xdisp.c (redisplay_window): Clear w->window_end_valid
14162         before running the window-scroll-functions hook, if appropriate.
14164 1998-10-10  Richard Stallman  <rms@psilocin.ai.mit.edu>
14166         * data.c (Fstring_to_number): Don't recognize floating point
14167         if base is not 10.
14169         * window.c (window_loop): New alternative CHECK_ALL_WINDOWS.
14170         (check_all_windows): New function for debugging tests.
14171         (syms_of_window): Initialize it.
14173         * window.c (Qwindow_configuration_p): New variable.
14174         (Fwindow_configuration_frame): New function.
14175         (syms_of_window): defsubr it.
14176         (Fset_window_configuration): Return t if frame is live.
14177         Use Qwindow_configuration_p.
14179         * xfns.c (check_x_display_info): Don't use selected_frame
14180         if it is dead.
14182 1998-10-09  Geoff Voelker  <voelker@cs.washington.edu>
14184         * w32fns.c (x_create_bitmap_from_file): Skip special files.
14186 1998-10-08  Kenichi Handa  <handa@etl.go.jp>
14188         * buffer.h (inhibit_modification_hooks): Extern it.
14190         * buffer.c (inhibit_modification_hooks): New variable.
14191         (init_buffer_once): Initialize inhibit_modification_hooks to 0.
14193         * charset.c (invalid_character): Prepend `0' to octal
14194         representation.  Give error sufficient args.
14196         * coding.c (code_convert_region): Set inhibit_modification_hooks
14197         to 1 before calling Fset_text_properties.
14199         * insdel.c (signal_before_change): If inhibit_modification_hooks
14200         is nonzero, do nothing.
14201         (signal_after_change): Likewise.
14203 1998-10-08  Emilio Lopes  <Emilio.Lopes@Physik.TU-Muenchen.DE>
14205         * process.c: Doc fixes.
14207 1998-10-08  Richard Stallman  <rms@sucrose.ai.mit.edu>
14209         * syntax.c (scan_lists): Bring FROM back into range BEGV...ZV.
14211 1998-10-07  Geoff Voelker  <voelker@cs.washington.edu>
14213         * w32.c (init_ntproc): Check for Windows init file.
14214         (term_ntproc): Do not check for it here.
14216 1998-09-28  Kenichi Handa  <handa@etl.go.jp>
14218         * coding.c (check_composing_code): Fix previous change.  Now it
14219         alwasy returns 0 or -1.
14220         (decode_coding_iso2022): Adjusted for the above change.
14221         (encode_coding_iso2022): When encoding the last block, flush out
14222         tailing garbage bytes.
14223         (setup_coding_system): Delete unnecessary code.
14224         (shrink_decoding_region): Check translation table.  If ASCII
14225         should be translated, give up shrinking.
14226         (shrink_encoding_region): Likewise.
14227         (SHRINK_CONVERSION_REGION_THRESHHOLD): New macro.
14228         (SHRINK_CONVERSION_REGION): New macro.
14229         (code_convert_region): Call SHRINK_CONVERSION_REGION.  Delete text
14230         properties here.
14231         (code_convert_region): In the case of encoding, always calulate
14232         correct character number.
14233         (code_convert_string): Call SHRINK_CONVERSION_REGION.
14234         (code_convert_region1): Don't delete text properties here.
14236         * insdel.c (adjust_after_replace): Don't delete text properties here.
14238         * term.c (encode_terminal_code): Handle raw 8-bit codes correctly.
14240 1998-09-27  Richard Stallman  <rms@psilocin.ai.mit.edu>
14242         * emacs.c (sort_args): Fill extra space with NULL ptrs.
14244 1998-09-26  Kenichi Handa  <handa@etl.go.jp>
14246         * coding.h (struct coding_system): New member composed_chars.
14248         * coding.c (check_composing_code): If the current composing
14249         sequence doesn't end properly, return -1.
14250         (DECODE_CHARACTER_ASCII): Update coding->composed_chars.
14251         (DECODE_CHARACTER_DIMENSION1): Likewise.
14252         (decode_coding_iso2022): Check validity of a composing sequence.
14253         (code_convert_string): If the length of text to be converted is
14254         shrunk to zero, don't perform code conversion.
14255         (shrink_decoding_region): Fix previous change.
14257         * editfns.c (Fformat): Check format control characters.
14259 1998-09-25  Kenichi Handa  <handa@etl.go.jp>
14261         * coding.c (decode_eol): While decoding DOS-like eol, handle a
14262         single CR code correctly.
14263         (shrink_decoding_region) <CODING_CATEGORY_IDX_ISO_7 or
14264         CODING_CATEGORY_IDX_ISO_7_TIGHT>: Skip also 8-bit codes.
14266 1998-09-23  Geoff Voelker  <voelker@cs.washington.edu>
14268         * w32fns.c (w32_color_map_lookup): New function.
14269         (x_to_w32_color): Approximate colors ending in numbers if necessary.
14271 1998-09-22  Kenichi Handa  <handa@etl.go.jp>
14273         * ccl.c (ccl_driver): Report correct CCL program counter on error.
14275         * xmenu.c (single_submenu) [! HAVE_MULTILINGUAL_MENU]: Make
14276         strings unibyte.
14277         (xmenu_show) [! HAVE_MULTILINGUAL_MENU]: Likewise.
14279 1998-09-22  Kenichi Handa  <handa@etl.go.jp>
14281         * callint.c (Fcall_interactively): Don't use input method when
14282         reading a character in the case of `c' code letter.
14284 1998-09-21  Dave Love  <fx@gnu.org>
14286         * editfns.c (Fsave_restriction): Doc fix.
14288 1998-09-21  Richard Stallman  <rms@gnu.org>
14290         * lread.c (build_load_history): Do add to Vload_history
14291         even when dumping Emacs.
14293 1998-09-18  Kenichi Handa  <handa@etl.go.jp>
14295         * ccl.c (CCL_WRITE_CHAR): Don't use bcopy.
14296         (ccl_driver): If BUFFER-MAGNIFICATION of the CCL program is 0,
14297         cause error if the program is going to output some bytes.  When
14298         outputing a string to notify an error, check the case that
14299         DST_BYTES is zero.
14301         * coding.h (CODING_FINISH_INTERRUPT): New macro.
14303         * coding.c (ccl_coding_driver): If ccl_driver is interrupted by a
14304         user or the CCL program executed an invalid command, return
14305         CODING_FINISH_INTERRUPT.
14306         (code_convert_region): Pay attention to the converters return
14307         value CODING_FINISH_NORMAL and CODING_FINISH_INTERRUPT.
14309 1998-09-16  Kenichi Handa  <handa@etl.go.jp>
14311         * coding.c (code_convert_region): Update beg_unchanged and
14312         end_unchanged after we delete the source text.
14314         * insdel.c (adjust_markers_for_replace): Don't adjust a byte
14315         position if it is FROM.
14316         (adjust_markers_for_combining): New function.
14317         (combine_bytes): Call adjust_markers_for_combining instead of
14318         adjust_markers_for_replace.
14319         (adjust_after_replace): Record deletion of combining after bytes
14320         with the correct position.
14321         (replace_range): Likewise.  Record the actual deletion after
14322         recoding deletions of combining bytes.
14324         * xdisp.c (message_log_check_duplicate): Count byte length of the
14325         latest message correctly.
14327 1998-09-12  Richard Stallman  <rms@gnu.org>
14329         * xdisp.c (redisplay_internal): Use TEMP_SET_PT_BOTH
14330         instead of SET_PT_BOTH.
14331         (try_window_id, display_text_line): Likewise.
14333 1998-09-12  Karl Heuer  <kwzh@gnu.org>
14335         * data.c (Fmake_local_variable): Doc fix.
14337 1998-09-10  Dave Love  <fx@gnu.org>
14339         * print.c (Fwith_output_to_temp_buffer): Doc fix.
14341 1998-09-10  Richard Stallman  <rms@gnu.org>
14343         * s/irix6-0.h (TIOCSIGSEND): Add #undef.
14344         (bcopy, bcmp, bzero): Add #undef.
14346         * keyboard.c (command_loop_1): When switching to selected window's bfr,
14347         first exit if selected frame is dead (no live frames remain).
14348         (read_key_sequence): Likewise.
14350 1998-09-10  Karl Heuer  <kwzh@gnu.org>
14352         * emacs.c (main): Mention --display and --eval in help.
14354 1998-09-07  Paul Eggert  <eggert@twinsun.com>
14356         * editfns.c (emacs_memftime): New function.
14357         (Fformat_time_string): Use it to handle null bytes in formats
14358         correctly.
14360 1998-09-08  Kenichi Handa  <handa@etl.go.jp>
14362         * charset.c (Ffind_charset_region): Optimization for unibyte buffer.
14363         (Ffind_charset_string): For unibyte string, return (ascii).
14365         * editfns.c (Fsubst_char_in_region): Call replace_range with the
14366         arg MARKERS 1.
14368         * insdel.c (adjust_after_replace): Don't add combining bytes to
14369         the args given to adjust_point.  Handle correctly the case that
14370         there are both before and after combining bytes.
14371         (replace_range): Likewise.
14373 1998-09-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14375         * fns.c (base64_decode_1, base64_encode_1): New functions.
14376         (Fbase64_decode_string, Fbase64_encode_string): New functions.
14377         (Fbase64_decode_region, Fbase64_encode_region): New functions.
14379 1998-09-07  Karl Heuer  <kwzh@gnu.org>
14381         * eval.c (error): After enlarging buffer, write to it, not to buf.
14383         * fns.c (Fwidget_put): Return VALUE instead of garbage.
14385 1998-09-07  Kenichi Handa  <handa@etl.go.jp>
14387         * charset.h (STRING_CHAR_AND_LENGTH): Return correct value in
14388         ACTUAL_LEN even if LEN is too short to have a valid multibyte form.
14389         (STRING_CHAR_AND_CHAR_LENGTH): Likewise.
14391         * coding.c (ccl_coding_driver): Always calculate correct mulibyte
14392         chars in produced byte sequence.
14393         (Ffind_operation_coding_system): Doc-string fixed.
14395         * insdel.c (count_combining_after): Check also preceding bytes at
14396         POS if all characters in STRING are not character head.
14398 1998-09-06  Paul Eggert  <eggert@twinsun.com>
14400         * editfns.c (Fformat_time_string, Fdecode_time, Fcurrent_time_zone):
14401         Don't assume that localtime and gmtime return non-NULL.
14403 1998-09-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14405         * fns.c (Fbase64_decode_string, Fbase64_encode_string,
14406         base64_decode_1, Fbase64_decode_region, Fbase64_encode_region):
14407         New functions.
14409 1998-09-06  Richard Stallman  <rms@gnu.org>
14411         * editfns.c (Fformat): Detect incomplete format spec at string's end.
14413         * lread.c (Fload): Handle case where openp finds a magic file
14414         but it has no `load' handler or that handler calls `load'.
14415         If FOUND != FILE, find FOUND's handler even if inhibited for FILE.
14417 1998-09-04  Dave Love  <fx@gnu.org>
14419         * buffer.c (enable-multibyte-characters): Doc fix.
14421 1998-09-02  Geoff Voelker  <voelker@cs.washington.edu>
14423         * w32heap.c (allocate_heap): Define NTHEAP_PROBE_BASE by default.
14425 1998-09-01  Kenichi Handa  <handa@etl.go.jp>
14427         * editfns.c (Ftranspose_regions): Use BYTE_POS_ADDR to get an
14428         address in buffer from byte-position.
14430 1998-09-01  Eli Zaretskii  <eliz@delysid.gnu.org>
14432         * w16select.c (Vnext_selection_coding_system): New variable.
14433         (syms_of_win16select): DEFVAR_LISP it.  No need to staticpro
14434         Vselection_coding_system.
14435         (Fw16_set_clipboard_data): Always convert multibyte strings.  Use
14436         Vnext_selection_coding_system if non-nil.
14437         (Fw16_get_clipboard_data): Always convert a string that includes
14438         non-ASCII characters. Use Vnext_selection_coding_system if
14439         non-nil.
14441 1998-08-31  Andrew Innes  <andrewi@harlequin.co.uk>
14443         * w32fns.c (w32_wnd_proc): Always zero button_state when releasing
14444         mouse capture.
14446 1998-08-31  Kenichi Handa  <handa@etl.go.jp>
14448         * xterm.c (x_load_font): If SIZE is 0, don't use a name
14449         x_list_font returns.
14451 1998-08-31  Paul Eggert  <eggert@twinsun.com>
14453         * lread.c (read1): Don't assume that atof ("-0.0") yields +0.0.
14454         Handle leading '-' uniformly for zeros, infinities, and NaNs.
14456 1998-08-31  Eli Zaretskii  <eliz@delysid.gnu.org>
14458         * msdos.c (IT_cmgoto): When tracking echo area messages with the
14459         cursor, save and restore previous cursor position in the
14460         minibuffer.
14462 1998-08-31  Kenichi Handa  <handa@etl.go.jp>
14464         * charset.c (unibyte_char_to_multibyte):
14465         Vnonacii_translation_table will convert a 7-bit charcater.
14466         (multibyte_char_to_unibyte): Handle the case that
14467         Vnonacii_translation_table converts a multibyte charcater to a
14468         unibyte charcter of less than 128.
14469         (init_charset_once): Initialize nonascii_insert_offset and
14470         Vnonacii_translation_table.
14472         * coding.c (decode_coding): Even if SRC_BYTES is zero, try
14473         processing if CODING requires flushing.
14474         (encode_coding): Likewise.
14475         (code_convert_region): Likewise.
14476         (code_convert_string): Likewise.
14478         * fns.c (concat): If Vnonascii_translation_table is non-nil, try
14479         to convert a character less than 160 to multibyte.
14480         * insdel.c (copy_text): Likewise.
14481         (count_size_as_multibyte): Likewise.
14482         * xterm.c (dumpglyphs): Likewise.
14484 1998-08-29  Paul Eggert  <eggert@twinsun.com>
14486         * data.c (arith_driver, float_arith_driver): Compute (- x) by
14487         using negation, not subtraction; this makes a difference with
14488         IEEE floating point arithmetic (and also if integer arithmetic
14489         is ones' complement or signed-magnitude!).
14491 1998-08-29  Karl Heuer  <kwzh@gnu.org>
14493         * xfns.c (x_create_bitmap_from_file): Fail immediately if magic.
14495 1998-08-28  Ken'ichi Handa  <handa@delysid.gnu.org>
14497         * charset.c (Fchar_bytes): Add \n\ in doc-string.
14499 1998-08-28  Paul Eggert  <eggert@twinsun.com>
14501         * s/sol2-4.h (NOT_USING_MOTIF): New macro.
14502         (LD_SWITCH_SYSTEM_TEMACS): Put /usr/dt/lib in the link library
14503         path only if we're not building with Motif.
14505 1998-08-28  Kenichi Handa  <handa@etl.go.jp>
14507         * insdel.c (adjust_after_replace): Fix the code to record undo
14508         information for the case that `before combining' happens.  Remove
14509         text properties which are added to the new text by
14510         offset_intervals.
14512         * coding.c (code_convert_region1): Remove all text properties of
14513         the region.
14515 1998-08-28  Kenichi Handa  <handa@etl.go.jp>
14517         * charset.h (CHAR_BYTES): New macro.
14519         * charset.c (Fchar_bytes): Now always return 1.
14520         (char_bytes): New function.
14522         * editfns.c (Fposition_bytes): If the arg POSITION is out of
14523         range, return nil.
14524         (Fbyte_to_position): If the arg BYTEPOS is out of range, return
14525         nil.
14527         * data.c (Faset): Use macro CHAR_BYTES instead of Fchar_bytes.
14528         * fns.c (concat): Likewise.
14529         * insdel.c (count_size_as_multibyte): Likewise.
14530         * xdisp.c (message_dolog): Likewise.
14532 1998-08-27  Kenichi Handa  <handa@etl.go.jp>
14534         * coding.c (detect_coding_iso2022): Handle ESC N and ESC O
14535         correctly.  They are for SS2 and SS3 respectively.
14536         (ccl_coding_driver): Fix previous change.
14538 1998-08-26  Paul Eggert  <eggert@twinsun.com>
14540         * xterm.c (fixup_locale): New function.  For now, it resets
14541         LC_TIME to "C" (reverting the 1998-08-07 change), and also
14542         resets LC_MESSAGES to "C".
14543         (x_term_init): Use it to fix up the locale after setlocale
14544         (LC_ALL, "").
14546 1998-08-26  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
14548         * xterm.c (x_calc_absolute_position): Cast argument to XFree, in
14549         case it was prototyped the old way.
14551 1998-08-25  Kenichi Handa  <handa@etl.go.jp>
14553         * xterm.c (x_list_fonts): Work-around for the case XGetAtomName
14554         returns a null string.  This happens when dxpc 3.7 is being used.
14556 1998-08-24  Andreas Schwab  <schwab@delysid.gnu.org>
14558         * keyboard.c (input-method-previous-message): Doc fix.
14560         * coding.c (file-coding-system-alist,
14561         select-safe-coding-system-function): Doc fix.
14563 1998-08-23  Kenichi HANDA  <handa@etl.go.jp>
14565         * coding.c (detect_coding_iso2022): Don't check the byte length of
14566         succeeding codes (0xa0..0xFF) if the codes follows single shift
14567         code (SS2 or SS3).
14569 1998-08-21  Ken'ichi Handa  <handa@delysid.gnu.org>
14571         * coding.c (detect_coding_system): If detect_eol_type returns
14572         CODING_EOL_INCONSISTENT, set eol_type to CODING_EOL_UNDECIDED
14573         correctly.
14575 See ChangeLog.7 for earlier changes.