Doc fixes.
[emacs.git] / src / ChangeLog
blobc6e170ec30b01d8ec1868a43c874e29c3d023616
1 2000-03-26  Gerd Moellmann  <gerd@gnu.org>
3         * xterm.c (x_display_and_set_cursor): Choose cursor depending
4         on buffer-local value of cursor_type.
5         (x_draw_bar_cursor): Add parameter WIDTH.
7         * buffer.c (reset_buffer): Initialize buffer's cursor_type.
8         (init_buffer_once): Set default cursor_type value to t.
9         Mark cursor_type as local everywhere.
10         (syms_of_buffer): New per-buffer variable cursor-type.
12         * buffer.h (struct buffer): Remove member local_var_flags,
13         add local_flags.
14         (MAX_BUFFER_LOCAL_VARS): New macro.
15         (BUFFER_LOCAL_VAR_OFFSET, BUFFER_LOCAL_VAR_IDX)
16         (BUFFER_HAS_LOCAL_VALUE_P, SET_BUFFER_HAS_LOCAL_VALUE_P)
17         (BUFFER_LOCAL_IDX, BUFFER_LOCAL_DEFAULT_VALUE, BUFFER_LOCAL_VALUE)
18         (BUFFER_LOCAL_SYMBOL, BUFFER_LOCAL_TYPE): New macros.
20         * print.c (print_object): Use new macros for per-buffer
21         variables.
23         * category.c (Fset_category_table): Use new macros for per-buffer
24         variables.
26         * buffer.c (buffer_permanent_local_flags): Make a char array.
27         (max_buffer_local_idx): New variable.
28         (reset_buffer_local_variables, Fbuffer_local_variables): Rewritten
29         for new handling of per-buffer variables.
30         (buffer_slot_type_mismatch): Use new macros for per-buffer vars.
31         (init_buffer_once): Initialize per-buffer vars differently.
32         Set max_buffer_local_idx.
34         * syntax.c (Fset_syntax_table): Use new macros for per-buffer
35         variables.
37         * lread.c (defvar_per_buffer): Use new macros for per-buffer
38         variables.
40         * data.c (do_symval_forwarding, store_symval_forwarding)
41         (find_symbol_value, set_internal, default_value, Fset_default)
42         (Fkill_local_variable, Flocal_variable_p): Use new macros for
43         per-buffer variables.
45         * Makefile.in (bootstrap-emacs): Use `mv -f' instead of `mv'.
47 2000-03-24  Gerd Moellmann  <gerd@gnu.org>
49         * xterm.c (x_term_init): Unblock input around call1 of
50         Qvendor_specific_keysyms.
52         * syntax.c (open_paren_in_column_0_is_defun_start): New variable.
53         (find_defun_start): Consider an open parenthesis in column 0
54         a defun start only if open_paren_in_column_0_is_defun_start is set.
55         (syms_of_syntax): New variable open-paren-in-column-0-is-defun-start.
57 2000-03-24  Stefan Monnier  <monnier@cs.yale.edu>
59         * eval.c (Fautoload): Add entry in load-history (if after dump).
60         * lread.c (load-history): Update docstring.
62 2000-03-24  Gerd Moellmann  <gerd@gnu.org>
64         * indent.c (Fvertical_motion): Always use the current buffer.
65         Temporarily change the window's buffer, if necessary.
67 2000-03-23  Gerd Moellmann  <gerd@gnu.org>
69         * xterm.c (fast_find_position): Make sure not to consider rows
70         not visible in the window.
72 2000-03-22  Stefan Monnier  <monnier@cs.yale.edu>
74         * regex.c (enum syntaxcode): Provide default for non-Emacs.
75         (re_compile_fastmap, re_match_2_internal): Undo Dave's previous fix.
77 2000-03-22  Jason Rumney  <jasonr@gnu.org>
79         * w32menu.c (single_submenu): Set help string to NULL if none.
80         (w32_menu_show): Set help string correctly.
81         (add-menu-item): Set help string in MIIM_DATA for menu item.
82         Load SetMenuItemInfoA explicitly.
83         (w32_menu_display_help): New function.
84         
85         * w32fns.c (w32_wnd_proc): Handle WM_MENUSELECT message.
86         (QCdata): Moved to xdisp.c.
88         * w32term.c (w32_read_socket): Handle WM_MENUSELECT message.
89         (Vw32_charset_to_codepage_alist): Removed.
90         (Vw32_charset_info_alist): New variable.
91         (Qw32_charset_[ansi, default, symbol, shiftjis, hangul, gb2312,
92         chinesebig5, oem, easteurope, turkish, baltic, russian, arabic,
93         greek, hebrew, thai, johab, mac, unicode]): New symbols.
94         (x_produce_glyphs): Remove out of date #ifdef 0'd section. Replace
95         with TODO comment.
96         (w32_codepage_for_font): Use Vw32_charset_info_alist.
97         (syms_of_w32term): Remove Vw32_charset_to_codepage_alist.
98         Define Vw32_charset_info_alist and w32_charset symbols.
100 2000-03-22  Jason Rumney  <jasonr@gnu.org>
102         * makefile.nt (w32bdf.obj): Update dependencies.
104         * w32bdf.c: Include frame.h and dispextern.h before fontset.h.
106         * w32fns.c: Include fontset.h after dispextern.h.
107         (Fx_create_frame): Do not create fontset.
108         (w32_load_system_font): Doc fix.
109         (Fx_close_connection): Free full_name if it is not shared.
111         * w32term.c: Include fontset.h after dispextern.h.
112         (x_get_glyph_face_and_encoding): New parameter two_byte_p. Callers
113         updated.
114         (w32_per_char_metric): If PCM is invalid, delete and return NULL.
115         (x_get_char_and_face_encoding): Use FACE_FOR_CHAR to get face_id.
116         (w32_font_is_double_byte): New function, needs body.
117         (x_append_glyph): Set glyph->glyph_not_available_p.
118         (x_produce_glyphs): Set it->glyph_not_available_p.  Don't set
119         it->charset.  If it->multibyte_p is zero and it->c is a multibyte
120         character, convert it to a unibyte character.
121         (struct glyph_string): Delete member `charset'.
122         (W32_TEXTOUT): Temporarily remove charset_dim until another way of
123         calculating it is found.
124         (x_set_mouse_face_gc): Call FACE_FOR_CHAR to get face_id.  Handle
125         the case that per char metric is not available correctly.
126         (x_fill_glyph_string): Handle the case that the specific glyph is
127         not available correctly.
128         (BUILD_CHAR_GLYPH_STRINGS): Don't set s->charset.
129         (BUILD_COMPOSITE_GLYPH_STRING): Likewise.
130         (x_new_font): Call FS_LOAD_FONT, not fs_load_font.
131         (x_new_fontset): Call fontset_ascii to get ASCII font name of the
132         fontset.  Don't call FS_LOAD_FONT.
134 2000-03-22  Ken Raeburn  <raeburn@gnu.org>
136         * intervals.h (NULL_INTERVAL): Cast to INTERVAL type.
137         (INT_LISPLIKE): New macro.
138         (NULL_INTERVAL_P): Use it.
139         (INTERVAL_HAS_PARENT, INTERVAL_HAS_OBJECT, SET_INTERVAL_PARENT,
140         SET_INTERVAL_OBJECT, INTERVAL_PARENT, COPY_INTERVAL_PARENT,
141         GET_INTERVAL_OBJECT, INTERVAL_PARENT_OR_NULL): New macros.
143         * alloc.c (make_interval, gc_sweep): Use new macros; eliminate all
144         explicit references to "parent" field of struct interval and
145         associated unclean type conversions.
146         * intervals.c (create_root_interval, root_interval, rotate_right,
147         rotate_left, balance_possible_root_interval, split_interval_right,
148         split_interval_left, interval_start_pos, find_interval,
149         next_interval, previous_interval, update_interval,
150         adjust_intervals_for_insertion, delete_node, delete_interval,
151         adjust_intervals_for_deletion, merge_interval_right,
152         merge_interval_left, reproduce_tree, graft_intervals_into_buffer,
153         copy_intervals_to_string): Likewise.
154         * intervals.h (AM_LEFT_CHILD, AM_RIGHT_CHILD, RESET_INTERVAL):
155         Likewise.
156         * syntax.c (update_syntax_table): Likewise.
158         * intervals.c (reproduce_tree_obj): New function, like
159         reproduce_tree but takes a Lisp_Object for the parent.  Declare
160         with prototype.
161         (graft_intervals_into_buffer): Use it when appropriate.
162         (reproduce_tree): Declare with prototype.
163         (balance_possible_root_interval): Check that the parent is a lisp
164         object before trying to examine its type.
166 2000-03-22  Gerd Moellmann  <gerd@gnu.org>
168         * xfaces.c (lface_same_font_attributes_p): Compare font attributes
169         as strings only if both are known to be strings.
171         * s/openbsd.h (LIBS_TERMCAP): Undef.
173 2000-03-21  Stefan Monnier  <monnier@cs.yale.edu>
175         * regex.c (CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
176         definitions for non-Emacs compilation.
177         (enum re_opcode_t): Remove (not)wordchar and move (not)syntaxspec
178         outside of `#ifdef emacs'.
179         (print_partial_compiled_pattern): Update.
180         (regex_compile): Use (not)syntaxspec(Sword) instead of (not)wordchar.
181         (re_compile_fastmap): Merge handling of charset and charset_not (for
182         emacs and non-emacs compilation as well).
183         Similarly for (not)categoryspec and (not)syntaxspec.
184         Don't use the fastmap when reaching `anychar' since the added
185         complexity is not justified.
186         (re_match_2_internal): Merge (not)wordchar (emacs and non-emacs)
187         and (not)syntaxspec.  Merge (not)categoryspec.
189 2000-03-22  Kenichi Handa  <handa@etl.go.jp>
191         * dispextern.h [!HAVE_WINDOW_SYSTEM] (FACE_SUITABLE_FOR_CHAR_P,
192         FACE_FOR_CHAR): Define them differently for the configuration of
193         --without-x.
195 2000-03-21  Dave Love  <fx@gnu.org>
197         * fontset.c (Fset_fontset_font, Ffontset_font): Fix newlines in
198         doc string.
200 2000-03-21  Gerd Moellmann  <gerd@gnu.org>
202         * xfaces.c (check_lface_attrs) [GLYPH_DEBUG]: Fix syntax error.
203         (lface_fully_specified_p): Don't check contents of
204         LFACE_FONT_INDEX because that attribute is optional.
205         (realize_x_face): Remove now unwarranted xassert.
207 2000-03-21  Kenichi HANDA  <handa@etl.go.jp>
209         The following changes are to make font selection based on
210         characters, not charset.  In addition, they recover fontset
211         facilities while utilizing the new font selection mechanism.
213         * Makefile.in (fontset.o): Depend on dispextern.h.
215         * alloc.c (mark_face_cache): Don't mark face->registry.
217         * dispextern.h (struct glyph): New member glyph_not_available_p.
218         Use 22 bits for face_id.
219         (enum lface_attribute_index): Add LFACE_FONT_INDEX.
220         (struct face): Delete member registry, new member ascii_face.
221         (FACE_SUITABLE_FOR_CHAR_P): Renamed from
222         FACE_SUITABLE_FOR_CHARSET_P.  Caller changed.
223         (FACE_FOR_CHAR): Renamed from FACE_FOR_CHARSET.  Caller changed.
224         (struct it): Delete member charset, new member
225         glyph_not_available_p.
227         * fontset.h (FONT_NOT_OPENED, FONT_NOT_FOUND): Macros removed.
228         (struct fontset_info, struct fontset_data): Structs removed.
229         (allloc_fontset_data, free_fontset_data, fs_regiser_fontset,
230         Vglobale_fontset_alist, font_idx_temp): Externs removed.
231         (fs_load_font, fs_query_fontset): Adjusted for new argument.
232         (fs_free_face_fontset, fontset_font_pattern,
233         face_suitable_for_char_p, face_for_char,
234         make_fontset_for_ascii_face): Extern them.
235         (FS_LOAD_FONT): Adjusted for the change of fontset implementation.
236         (FS_LOAD_FACE_FONT): New macro.
238         * fontset.c: All codes rewritten or adjusted for the change of
239         fontset implementation.  Now fontset is represented by char table.
240         (Vglobal_fontset_alist, font_idx_temp, my_strcasetbl): Variables
241         removed.
242         (my_strcasecmp): Function removed.
243         (Vfontset_table, next_fontset_id, Vdefault_fontset): New
244         variables.
245         (AREF, ASIZE): New macros.
246         (FONTSET_FROM_ID, FONTSET_ID, FONTSET_NAME, FONTSET_FRAME,
247         FONTSET_ASCII, FONTSET_BASE, BASE_FONTSET_P, FONTSET_REF,
248         FONTSET_REF_VIA_BASE, FONTSET_SET): New macros.
249         (fontset_ref, fontset_ref_via_base, fontset_set, make_fontset,
250         fontset_id_valid_p, font_family_registry, fontset_name,
251         fontset_ascii, free_face_fontset, face_suitable_for_char_p,
252         face_for_char, make_fontset_for_ascii_face, fontset_font_pattern):
253         New functions.
254         (fs_load_font): New arg FACE.  Caller changed.
255         (fs_query_fontset): Argument changed.  Caller changed.
256         (Fquery_fontset): call fs_query_fontset.
257         (fs_register_fontset, alloc_fontset_data, free_fontset_data):
258         Functions removed.
259         (clear_fontset_elements, check_registry_encoding,
260         check_fontset_name): New functions.
261         (syms_of_fontset): Set char-table-extra-slots property of fontset
262         to 3.  Staticpro and initialize Vfontset_table and
263         Vdefault_fontset.  Defsubr fontset_font and fontset_list.
265         * frame.h (struct frame): Member `fontset_data' removed.
266         (FRAME_FONTSET_DATA): Macro removed.
268         * frame.c (make_frame): Don't allocate f->fontset_data.
269         (Fdelete_frame): Don't free f->fontset_data.
271         * msdos.c (XMenuActivate): Args to lookup_derived_face changed.
273         * xdisp.c (charset_at_position): Function removed.
274         (init_iterator): Don't set member charset of struct `it'.
275         (handle_face_prop, reseat_to_string, set_iterator_to_next,
276         next_element_from_display_vector, insert_left_trunc_glyphs):
277         Likewise.
278         (face_before_or_after_it_pos): Call FACE_FOR_CHAR, not
279         FACE_FOR_CHARSET.
280         (get_next_display_element, append_space,
281         extend_face_to_end_of_line): Likewise.
283         * xfaces.c (Qx_charset_registry, Vface_default_registry):
284         Variables removed.
285         (clear_font_table, frame_update_line_height, load_face_font):
286         Adjusted for the change of fontset implementation.
287         (load_face_fontset_font): Function removed.
288         (pixel_point_size): New function.
289         (font_list): Argument type changed.  Caller changed.
290         (LFACE_FONT): New macro.
291         (check_lface_attrs): Check attr[LFACE_FONT_INDEX].
292         (set_lface_from_font_name): Type of arg FONTNAME is changed to
293         Lisp_Object.  Determine the font name by actually loading a font
294         by the specified pattern.  Set LFACE_FONT (lface) to the specified
295         pattern.  Even if a font is not found, don't try alternatives.
296         (Finternal_set_lisp_face_attribute): Handle `font' slot in lface.
297         (set_font_frame_param): If `font' is specified in lface, use it.
298         (Finternal_get_lisp_face_attribute): Handle `font' slot in lface.
299         (lface_same_font_attributes_p): Likewise.
300         (make_realized_face): Arguent changed.  Caller changed.  Set
301         face->ascii_face to face itself.
302         (free_realized_face): Free face->fontset if face is for ASCII.
303         (face_suitable_for_iso8859_1_p, face_suitable_for_charset_p,
304         deduce_unibyte_registry, x_charset_registry): Functions removed.
305         (free_realized_multibyte_face): New function.
306         (lookup_face, lookup_named_face, lookup_derived_face): Argument
307         changed.  Caller changed.
308         (try_font_list): Argument type changed.
309         (face_fontset): Check `font' slot of ATTRS, not `family' slot.
310         (choose_face_font): Argument changed.  Handle fontset properly.
311         (choose_face_fontset_font): Function removed.
312         (realize_default_face, realize_named_face): Don't remove the
313         former face here.
314         (realize_face): Argument changed.  Caller changed.  Remove face
315         with the arg former_face_id in advance.  Load font for the new
316         face.
317         (realize_x_face): Argument changed.  Caller changed.  For a
318         multibyte character, share fontset with base_face.  For a single
319         byte character, make a new realized fontset.  Don't load a font
320         here.
321         (realize_tty_face): Argument changed.  Caller changed.
322         (compute_char_face): Call FACE_FOR_CHAR, not FACE_FOR_CHARSET.
323         (face_at_buffer_position): Don't check multibyte_p for returning
324         DEFAULT_FACE_ID.
325         (face_at_string_position): Call FACE_SUITABLE_FOR_CHAR_P, not
326         FACE_SUITABLE_FOR_CHARSET_P.
327         (syms_of_xfaces): Remove code for Qx_charset_registry and
328         Vface_default_registry.
330         * xterm.c: Include fontset.h after dispextern.h.  Undo the changes
331         related to PER_CHAR_METRIC done by Gerd on 2000-03-03.
332         (x_per_char_metric): Don't try FONT->default_char.  Even if
333         pcm->width is zero, glyph bits may exist.
334         (x_encode_char): Always initialize char2b->byte1.
335         (x_get_char_face_and_encoding): Call FACE_FOR_CHAR to get face_id.
336         (x_get_glyph_face_and_encoding): New arg two_byte_p.  Caller
337         changed.
338         (x_append_glyph): Set glyph->glyph_not_available_p.
339         (x_produce_glyphs): Set it->glyph_not_available_p.  Don't set
340         it->charset.  Handle the case that per char metric is not
341         available.  If it->multibyte_p is zero and it->c is a multibyte
342         character, convert it to a unibyte character.
343         (struct glyph_string): Delete member `charset'.
344         (x_set_mouse_face_gc): Call FACE_FOR_CHAR to get face_id.  Handle
345         the case that per char metric is not available correctly.
346         (x_fill_glyph_string): Handle the case that the specific glyph is
347         not available correctly.
348         (BUILD_CHAR_GLYPH_STRINGS): Don't set s->charset.
349         (BUILD_COMPOSITE_GLYPH_STRING): Likewise.
350         (x_new_font): Call FS_LOAD_FONT, not fs_load_font.
351         (x_new_fontset): Call fontset_ascii to get ASCII font name of the
352         fontset.  Don't call FS_LOAD_FONT.
354         * xfns.c (Fx_create_frame): Don't cal fs_register_fontset.
355         (x_create_tip_frame): Likewise.
356         (Fx_close_connection): Free full_name of font_info.
358         * fns.c (optimize_sub_char_table): New function.
359         (Foptimize_char_table): New function.
360         (syms_of_fns): Defsubr Soptimize_char_table.
362 2000-03-20  Gerd Moellmann  <gerd@gnu.org>
364         * buffer.c (Fset_buffer_modified_p): Set update_mode_lines
365         only if buffer is displayed in some window.
367         * xdisp.c (handle_single_display_prop): Initialize local `value'.
368         (try_window_reusing_current_matrix): Don't call scroll run
369         function if run's current and desired position are the same;
370         this prevents cursor flickering.
372 2000-03-19  Stefan Monnier  <monnier@cs.yale.edu>
374         * regex.h (RE_TRANSLATE. RE_TRANSLATE_P): Moved to regex.c.
376         * regex.c (RE_STRING_CHAR): New macro.
377         (GET_CHAR_AFER_2): Remove.
378         (RE_TRANSLATE, RE_TRANSLATE_P): New macros moved from regex.h.
379         (enum re_opcode_t): Remove on_failure_jump_exclusive.
380         (print_partial_compiled_pattern, re_compile_fastmap)
381         (re_match_2_internal): Remove on_failure_jump_exclusive.
382         (regex_compile): Turn optimizable P+ loops into PP*, so that the
383         optimization only need to work for * (ie. can use of_keep_string_jump).
384         Remove the special case for .*\n since it is now covered by the general
385         optimization.
386         (re_search_2): Don't bother with `room'.
387         (skip_one_char): New function.
388         (skip_noops): Simplify since `memory' is not needed any more.
389         (mutually_exclusive_p): Restructure slightly to use `switch' and
390         add handling for "all" remaining cases.
391         (re_match_2_internal): Change on_failure_jump_smart to use
392         on_failure_keep_string_jump (and redirect the end-of-loop jump)
393         rather than on_failure_jump_exclusive.
395 2000-03-19  Gerd Moellmann  <gerd@gnu.org>
397         * xfns.c (select_visual): Don't set dpyinfo->n_planes to the
398         number of bits per RGB because it's everywhere used as the depth
399         of the visual.
401         * term.c (calculate_costs): Remove code dealing with X frames.
403 2000-03-19  Richard M. Stallman  <rms@caffeine.ai.mit.edu>
405         * lread.c (syms_of_lread): Doc fix for load-convert-to-unibyte.
407 2000-03-18  Gerd Moellmann  <gerd@gnu.org>
409         * lread.c (read_integer): Unread the last char not consumed.
411 2000-03-17  Gerd Moellmann  <gerd@gnu.org>
413         * xterm.c (x_update_window_cursor): Don't update in frames
414         which are in the process of being deleted.
416 2000-03-16  Gerd Moellmann  <gerd@gnu.org>
418         * Makefile.in (mostlyclean): Add `*.core'.
419         (clean): Add `bootstrap-emacs'.
421         * lread.c (read_integer): New function.
422         (read1): Support read syntax #o, #x, #b, #r.
424 2000-03-15  Stefan Monnier  <monnier@cs.yale.edu>
426         * regex.c (re_match_2): Fix string shortening (to fit `stop') to
427         make sure POINTER_TO_OFFSET gives the same value before and after
428         PREFETCH.  Use `dfail' to guarantee "atomic" matching.
429         (PTR_TO_OFFSET): Use POINTER_TO_OFFSET.
430         (debug): Now only active if > 0 rather than if != 0.
431         (DEBUG_*): Update for the new meaning of `debug'.
432         (print_partial_compiled_pattern): Add missing `succeed' case.  Use
433         CHARSET_* macros in the charset(_not) branch.  Fix off-by-two bugs
434         in `succeed_n', `jump_n' and `set_number_at'.
435         (store_op1, store_op2, insert_op1, insert_op2)
436         (at_begline_loc_p, at_endline_loc_p): Add prototype.
437         (group_in_compile_stack): Move to after its arg's types are
438         declared and add a prototype.
439         (PATFETCH): Define in terms of PATFETCH_RAW.
440         (GET_UNSIGNED_NUMBER): Add the usual `do { ... } while(0)'
441         wrapper.
442         (QUIT): Redefine as a nop except for NTemacs.
443         (regex_compile): Handle intervals {,M} as if it was {0,M}.  Fix
444         indentation of the greedy-op and shy-group code.
445         (at_(beg|end)line_loc_p): Fix argument's types.
446         (re_compile_fastmap): Ifdef out failure_stack_ptr to shut up gcc.
447         (re_search_2): Use POS_AS_IN_BUFFER.  Simplify `room' computation.
448         (MATCHING_IN_FIRST_STRING): Remove.
449         (re_match_2): Use POS_AS_IN_BUFFER.  Ifdef out failure_stack_ptr
450         to shut up gcc.  Use FIRST_STRING_P and POINTER_TO_OFFSET.  Use
451         QUIT unconditionally.
453 2000-03-15  Gerd Moellmann  <gerd@gnu.org>
455         * minibuf.c (Fminibuffer_complete): Set point to ZV if finding
456         a sole completion.
458         * process.c (send_process): Add a hint that the function
459         can call Lisp code to its comment.
461         * lread.c (load_dangerous_libraries): New variable.
462         (Vbytecomp_version_regexp): New variable.
463         (safe_to_load_p): New function.
464         (Fload): Handle files not compiled with Emacs specially.
465         (syms_of_lread): New Lisp variable load-dangerous-libraries.
467 2000-03-14  Gerd Moellmann  <gerd@gnu.org>
469         * lisp.h (free_frame_xic) [HAVE_X_I18N]: Add missing semicolon.
471         * xterm.c (xim_close_dpy, xim_initialize): Use X11R6-style XIM
472         support functions only if HAVE_X11R6_XIM is defined.
473         (xim_instantiate_callback): Define only if HAVE_X11R6_XIM.
475         * s/sol2.h (INHIBIT_X11R6_XIM): Define.
477         * xfns.c (X_I18N_INHIBITED): Don't define.
478         (create_frame_xic): Remove conditional compilation on
479         X_I18N_INHIBITED.
480         (x_kill_gs_process, x_window): Use FRAME_X_VISUAL.
482         * config.in (HAVE_X_I18N): Moved here from xterm.h.
483         (HAVE_X11R6_XIM): Define.
485         * xterm.h (HAVE_X_I18N) [HAVE_X11R6]: Moved to config.in.
487         * xterm.c (x_term_init): Add support for X resource `synchronous'.
488         If set, call XSynchronize.
490 2000-03-13  Stefan Monnier  <monnier@cs.yale.edu>
492         * regex.c: Declare a new type `re_char' used throughout the code
493         for the string char type.  It's `const unsigned char' to match the
494         rest of Emacs.  Consistently make sure all pointers to strings use
495         it and make sure all pointers into the pattern use `unsigned
496         char'.
497         (re_match_2_internal): Use `PREFETCH+STRING_CHAR' instead of
498         GET_CHAR_AFTER_2.  Also merge wordbound and notwordbound to reduce
499         code duplication.
501         * charset.h (GET_CHAR_AFTER_2): Remove.
502         (GET_CHAR_BEFORE_2): Use unsigned chars, like everywhere else.
504 2000-03-12  Ken Raeburn  <raeburn@gnu.org>
506         * Makefile.in (temacs): Evaluate ALL_LDFLAGS into a temporary
507         variable before the invocation of YMF_PASS_LDFLAGS, in case both
508         of them try to use backquotes.
510 2000-03-12  Dave Love  <fx@gnu.org>
512         * unexelf.c: Restore changes of 1999-10-19.
513         (unexec): Don't adjust bss for sbss type SHT_PROGBITS; otherwise
514         fix its type and alignment; copy it from current process.
516 2000-03-12  Gerd Moellmann  <gerd@gnu.org>
518         * atimer.c (cancel_atimer): Break out of the loop as soon as timer
519         has been found.  Fix bug not computing timer's predecessor.
521         * fileio.c (Fread_file_name): Handle case that DIR contains a 
522         file name.
524         * window.c (Fsave_window_excursion): Doc fix.
526         * xfns.c (x_defined_color): Rewritten to use
527         x_allocate_nearest_color.
529 2000-03-12  Eli Zaretskii  <eliz@is.elta.co.il>
531         * msdos.c (vga_installed): New function, code moved from
532         dos_set_window_size.
533         (Qbar, Qcursor_type, outside_cursor): New variables.
534         (syms_of_msdos): Intern and staticpro them.
535         (dos_ttraw) [__DJGPP__ >= 2, !HAVE_X_WINDOWS]: Save the cursor
536         shape used outside Emacs when called for the first time.
537         (dos_ttcooked) [__DJGPP__ >= 2, !HAVE_X_WINDOWS]: Restore the
538         cursor shape used outside Emacs.
539         (msdos_set_cursor_shape, IT_set_cursor_type): New functions.
540         (IT_frame_up_to_date): Call IT_set_cursor_type, in case the cursor
541         type has changed.
542         (IT_set_frame_parameters): Call IT_set_cursor_type if the frame
543         parameters specify the cursor.  Make qreverse a global
544         variable (renamed to Qreverse).
546 2000-03-09  Gerd Moellmann  <gerd@gnu.org>
548         * fns.c (Fy_or_n_p): Cancel busy-cursor.
550 2000-03-08  Stefan Monnier  <monnier@cs.yale.edu>
552         This is a big redesign of failure-stack and register handling, prompted
553         by bugs revealed when trying to add shy-groups.  Overall, what happened
554         is that loops are now structured a little differently, groups can be
555         shy and the code is a little simpler.
557         * regex.h: Update the copyright.
558         (RE_SHY_GROUPS): New value.
559         (RE_UNMATCHED_RIGHT_PAREN_ORD): Renumber.
560         (RE_SYNTAX_EMACS): Add RE_SHY_GROUPS.
562         * regex.c (enum re_opcode_t): Remove jump_past_alt,
563         maybe_pop_jump, push_dummy_failure and dumy_failure_jump.  Add
564         on_failure_jump_(exclusive, loop and smart).  Also fix the comment
565         for (start|stop)_memory since they now only take one argument (the
566         second has becomes unnecessary).
567         (print_partial_compiled_pattern): Adjust for changes in
568         re_opcode_t.
569         (print_compiled_pattern): Use %ld to printf long ints and flush to
570         make debugging a little easier.
571         (union fail_stack_elt): Make the integer unsigned.
572         (struct fail_stack_type): Add a `frame' element.
573         (INIT_FAIL_STACK): Init `frame' as well.
574         (POP_PATTERN_OP): New macro for re_compile_fastmap.
575         (DEBUG_PUSH, DEBUG_POP): Remove.
576         (NUM_REG_ITEMS): Remove.
577         (NUM_NONREG_ITEMS): Adjust.
578         (FAILURE_PAT, FAILURE_STR, NEXT_FAILURE_HANDLE)
579         (TOP_FAILURE_HANDLE): New macros for the cycle detection.
580         (ENSURE_FAIL_STACK): New macro for PUSH_FAILURE_(REG|POINT).
581         (PUSH_FAILURE_REG, POP_FAILURE_REG, CHECK_INFINITE_LOOP): New
582         macros.
583         (PUSH_FAILURE_POINT): Don't push registers any more.  The pattern
584         address pushed is not the destination of the jump but the source
585         of it instead.
586         (NUM_FAILURE_ITEMS): Remove.
587         (POP_FAILURE_POINT): Adapt to the new stack structure (i.e. pop
588         registers before the actual failure point).  Don't hardcode any
589         meaning for str==NULL anymore.
590         (union register_info_type, REG_MATCH_NULL_STRING_P, IS_ACTIVE)
591         (MATCHED_SOMETHING, EVER_MATCHED_SOMETHING, SET_REGS_MATCHED):
592         Remove.
593         (REG_UNSET_VALUE): Use NULL (why not?).
594         (compile_range): Remove declaration since it doesn't exist.
595         (struct compile_stack_elt_t): Remove inner_group_offset.
596         (old_reg(start|end), reg_info, reg_dummy, reg_info_dummy): Remove.
597         (regex_grow_registers): Remove dead code.
598         (FIXUP_ALT_JUMP): New macro.
599         (regex_compile): Add shy-groups Change loops to use
600         on_failure_jump_smart&jump instead of
601         on_failure_jump&maybe_pop_jump.  Change + loops to eliminate the
602         initial (dummy_failure_)jump.  Remove c1_base (looks like unused
603         variable to me).  Use `jump' instead of `jump_past_alt' and don't
604         bother with push_dummy_failure in alternatives since it is now
605         unnecessary.  Use FIXUP_ALT_JUMP.  Eliminate a useless `#ifdef
606         emacs' for (re)allocating the stack.
607         (re_compile_fastmap): Remove dead variables i and num_regs.  Exit
608         from loop when bufp->can_be_null rather than jumping to `done'.
609         Avoid jumping backwards so as to ensure termination.  Use
610         PATTERN_STACK_EMPTY and POP_PATTERN_OP.  Improved handling of
611         backreferences.  Remove dead code in handling of `anychar'.
612         (skip_noops, mutually_exclusive_p): New functions taken from the
613         handling of `maybe_pop_jump' in re_match_2_internal.  Slightly
614         improve mutually_exclusive_p to handle ".+\n".
615         (lowest_active_reg, highest_active_reg,
616         NO_(LOWEST|HIGHEST)_ACTIVE_REG) Remove.
617         (re_match_2_internal): Use %p instead of 0x%x when printf'ing
618         ptrs.  Don't SET_REGS_MATCHED anymore.  Remove many dead
619         variables.  Push register (in `start_memory') on the stack rather
620         than storing it in old_reg(start|end).  Remove the cycle detection
621         from `stop_memory', replaced by the use of on_failure_jump_loop
622         for greedy loops.  Add code for the new on_failure_jump_<foo>.
623         Remove ad-hoc code in `on_failure_jump' to push more registers in
624         the case of a loop.  Take out code from `maybe_pop_jump' into
625         separate functions and adapt it to the semantics of
626         `on_failure_jump_smart'.  Remove jump_past_alt, dummy_failure_jump
627         and push_dummy_failure.  Remove dummy_failure handling and
628         handling of `failures to jump to on_failure_jump' (this last one
629         was already dead code, it seems).
630         (group_match_null_string_p, alt_match_null_string_p)
631         (common_op_match_null_string_p): Remove.
633 2000-03-08  Dave Love  <fx@gnu.org>
635         * config.in: Don't depend on __STDC__ for volatile.
636         Add POINTER_TYPE, PTR, PROTOTYPES.
638         * hftctl.c, strftime.c: Use PROTOTYPES.
639         * eval.c (find_handler_clause): Likewise.
641         * mem-limits.h: Use POINTER_TYPE.
643         * lisp.h (P_): Define based on PROTOTYPES, not __STDC__.
644         (memory_warnings): Declare using POINTER_TYPE.
646 2000-03-08  Gerd Moellmann  <gerd@gnu.org>
648         * xfns.c (x_set_cursor_type): If ARG is nil, give frame no cursor.
650         * xdisp.c (display_echo_area): Temporarily inhibit garbage
651         collection.
653         * xfns.c: Remove obsolete code in #if 0.
654         (Fx_focus_frame): New function.
656 2000-03-07  Miyashita Hisashi  <himi@bird.scphys.kyoto-u.ac.jp>
658         * coding.c (coding_category_name): Add coding-category-utf-8,
659         coding-category-utf-16-be, coding-category-utf-16-le.
660         (UTF_8_1_OCTET_P, UTF_8_EXTRA_OCTET_P, UTF_8_2_OCTET_LEADING_P,
661         UTF_8_3_OCTET_LEADING_P, UTF_8_4_OCTET_LEADING_P,
662         UTF_8_5_OCTET_LEADING_P, UTF_8_6_OCTET_LEADING_P): New macros.
663         (detect_coding_utf_8): New function.
664         (UTF_16_INVALID_P, UTF_16_HIGH_SURROGATE_P
665         UTF_16_LOW_SURROGATE_P): New macros.
666         (detect_coding_utf_16): New function
667         (detect_coding_mask): When priorities are specified, skip any
668         categories that have `nil' coding-system.  Fix bug of returning
669         wrong mask when PRIORITIES is specified and detect_coding_XXX()
670         returns a mask not set in PRIORITIES.
671         (detect_eol_type_in_2_octet_form): New function.
672         (detect_eol): selects detect_eol_type_XXX to call according to
673         cooding->category_idx.
674         (detect_coding_system): Remove `nil' coding-system in the result.
675         (Fupdate_coding_systems_internal): Update all coding-categories.
677         * coding.h (CODING_CATEGORY_IDX_UTF_8,
678         CODING_CATEGORY_IDX_UTF_16_BE, CODING_CATEGORY_IDX_UTF_16_LE): New
679         macros.
680         (CODING_CATEGORY_IDX_RAW_TEXT, CODING_CATEGORY_IDX_BINARY,
681         CODING_CATEGORY_IDX_MAX): Adjusted for the above macros.
682         CODING_CATEGORY_IDX_UTF_16_LE.
683         (CODING_CATEGORY_MASK_UTF_8, CODING_CATEGORY_MASK_UTF_16_BE,
684         CODING_CATEGORY_MASK_UTF_16_LE): New macros.
685         (CODING_CATEGORY_MASK_ANY): Include the above macros.
686         (CODING_CATEGORY_MASK_UTF_16_BE_LE): New macro.
688 2000-03-07  Gerd Moellmann  <gerd@gnu.org>
690         * doc.c (Fdocumentation_property): If value is not a string,
691         and doesn't refer to etc/DOC, evaluate it to obtain a string.
693         * xterm.c (x_connection_closed) [USE_X_TOOLKIT]: Don't try to
694         close the display with XtCloseDisplay.  This caused a bus error
695         on OpenWindows.
697         * minibuf.c (Fminibuffer_complete): Move point to ZV when input is
698         complete but not unique.
700 2000-03-06  Gerd Moellmann  <gerd@gnu.org>
702         * process.c (send_process): Remove local variable `procname' that
703         might become invalid when a GC happens.  Instead, access the
704         process name slot directly.
706         * xfns.c (x_set_menu_bar_lines_1): Adjust window's orig_top and
707         orig_height if set.
709         * frame.c (set_menu_bar_lines_1): Adjust window's orig_top and
710         orig_height if set.
712 2000-03-06  Eli Zaretskii  <eliz@is.elta.co.il>
714         * msdos.c (IT_note_mouse_highlight): Return immediately if frame's
715         glyph matrices have been freed.
717 2000-03-05  Gerd Moellmann  <gerd@gnu.org>
719         * Makefile.in (tags): Include ../lwlib/TAGS in TAGS.
720         (bootstrap-temacs): Set LC_ALL to C like for temacs.
722         * xfns.c (QCdata): Moved to xdisp.c.
724         * xdisp.c (QCdata): Moved here from xfns.c.
725         (syms_of_xdisp): Initialize QCdata.
727         * frame.h (FRAME_INTERNAL_BORDER_WIDTH) [!HAVE_X_WINDOWS]: Define.
729         * window.c (coordinates_in_window): Use
730         FRAME_INTERNAL_BORDER_WIDTH_SAFE instead of
731         FRAME_INTERNAL_BORDER_WIDTH.
733         * xdisp.c (try_window_id): Recompute unchanged information if
734         it is obviously invalid.
736         * xterm.c (x_term_init): Create a colormap if not using the
737         default visual.
739         * xterm.h (select_visual): Change prototype.
741         * xfns.c (select_visual): Rewritten.  Recognize user-specified
742         visual classes.
743         (visual_classes): New variable.
745 2000-03-04  Gerd Moellmann  <gerd@gnu.org>
747         * xfns.c (x_defined_color, x_set_mouse_color, lookup_rgb_color)
748         (lookup_pixel_color, x_laplace, x_build_heuristic_mask)
749         (png_load): Access colormap of frame using FRAME_X_COLORMAP.
750         (x_decode_color): Don't handle allocation of white and black
751         specially.
752         (x_window) [USE_X_TOOLKIT]: Set XtNvisual, XtNdepth, and
753         XtNcolormap resources.
754         (x_window) [!USE_X_TOOLKIT]: Pass colormap to XCreateWindow.
755         (Fx_create_frame): Initialize color members of x_output structure.
756         (xpm_load): Pass colormap to XPM lib.
758         * xfaces.c (x_free_colors): Access colormap of frame using
759         FRAME_X_COLORMAP.  Be paranoid about freeing black and white
760         when default colormap is used.
762         * xterm.c (x_term_init): Set Colormap member of x_display_info
763         structure.  Copy colormap if resource `privateColormap' is
764         specified (PseudoColor only).
765         (x_setup_relief_color): Access colormap of frame using
766         FRAME_X_COLORMAP.
768         * xterm.h (struct x_display_info): Add Colormap member `cmap'.
769         (FRAME_X_COLORMAP, FRAME_X_VISUAL): New macros.
771 2000-03-04  Jason Rumney  <jasonr@gnu.org>
773         * xfaces.c Change many FRAME_X... macros to FRAME_WINDOW... or
774         other non-platform-specific equivalents.
775         [WINDOWSNT]: Include w32term.h, fontset.h and define X
776         specific functions and macros as their w32 equivalents where
777         non-platform-specifics are not available.
778         [HAVE_X_WINDOWS]: Change most of these to HAVE_WINDOW_SYSTEM.
779         (x_create_gc, x_free_gc) [WINDOWSNT]: Add W32 versions.
780         (clear_font_table) [WINDOWSNT]: Call w32_unload_font.
781         (frame_update_line_height): Use macros to access f->output_data.
782         (defined_color): Remove FIXME comments; fixed.
783         (x_face_list_fonts, prepare_face_for_display): Put X specifics
784         into #ifdef blocks. Add WINDOWSNT blocks.
785         (Fx_list_fonts): Use macros for accessing font data.
786         (set_lface_from_font_name): Different default fonts for X and
787         WINDOWSNT.
788         (font_scalable_p) [WINDOWSNT]: Treat wildcard XLFD_AVGWIDTH as
789         scalable for backward compatibility.
790         (realize_tty_face) [MSDOS]: Do the same for WINDOWSNT.
791         (syms_of_xfaces) [WINDOWSNT]: Allow scalable fonts by default.
793         * emacs.c (main) [HAVE_NTGUI]: Call syms_of_xfaces instead of
794         syms_of_w32faces.
796         * makefile.nt (w32faces.obj): Remove.
797         (xfaces.obj): Add.
799 2000-03-03  Jason Rumney  <jasonr@gnu.org>
801         * keyboard.c (make_lispy_event): Call buffer_posn_from_coords with
802         correct parameters.
804 2000-03-03  Ken Raeburn  <raeburn@gnu.org>
806         * unexelf.c (PT_LOAD, SHT_*, SHN_*) [__NetBSD__]: Only provide
807         standard ELF definitions here if the system header does not.
809 2000-03-03  Gerd Moellmann  <gerd@gnu.org>
811         * xterm.c (PER_CHAR_METRIC): Removed.
812         (x_per_char_metric_1, x_default_char): New functions.
813         (x_per_char_metric): If font's default char is invalid, return
814         metrics of a suitably chosen usable default char.
815         (x_draw_glyph_string_foreground): If font has an invalid default
816         char, replace occurrences of unprintable chars with a suitably
817         chosen usable default char.
819 2000-03-02  Gerd Moellmann  <gerd@gnu.org>
821         * xterm.c (note_mouse_highlight): Return quickly if frame's
822         glyph matrices have been freed.
824         * dispnew.c (free_glyphs): Block input while freeing matrices.
826         * xfns.c (x_clear_image, x_kill_gs_process): Use x_free_colors.
828         * xterm.c (x_alloc_lighter_color, x_setup_relief_color): Use
829         x_free_colors.
831         * dispextern.h (x_free_colors): Add prototype.
833         * xfaces.c (x_free_colors): New function.
834         (unload_color, free_face_colors): Use it.
836 2000-03-02  Eli Zaretskii  <eliz@is.elta.co.il>
838         * msdos.h (FRAME_INTERNAL_BORDER_WIDTH): Define to zero.
840         * window.c [MSDOS]: Include msdos.h.
842 2000-03-02  Dave Love  <fx@gnu.org>
844         * m/powerpcle.h, m/sparc.h: Don't set C_OPTIMIZE_SWITCH.
846         * m/mips-siemens.h, m/news-r6.h, m/news-risc.h, m/tekxd88.h: Don't
847         set C_OPTIMIZE_SWITCH for gcc.
849 2000-03-02  Kenichi Handa  <handa@etl.go.jp>
851         * coding.c (coding_save_composition): Be sure to allocate
852         composition data area in coding even if there's no composition in
853         the current run.
855 2000-03-01  Jason Rumney  <jasonr@gnu.org>
857         * w32term.c: Equivalent changes to those made to xterm.c on
858         2000-02-25 and 2000-02-24.
860         * w32fns.c: Equivalent changes to those made to xfns.c on
861         2000-02-25 and 2000-02-21.
863         * sysdep.c: [WINDOWSNT]: Use sys_read and sys_write to ensure
864         correct line-end convention is followed.
866         * w32menu.c [HAVE_BOXES]: Remove #undef.
867         (single_keymap_panes): Remove code for simulating checkmarks.
868         (single_menu_item): Remove notbuttons_ptr argument. Callers changed.
869         Remove code for drawing simulated checkmarks.
870         (w32_menu_show): make unibyte help string correctly.
871         (add_menu_item): draw standard Windows checkmarks. Draw radio
872         buttons as radio buttons if possible.
874 2000-03-01  Gerd Moellmann  <gerd@gnu.org>
876         * sysdep.c (start_of_text): Don't define this function for NetBSD
877         with ELF.
879         * m/pmax.h (START_FILES, CANNOT_DUMP) [__NetBSD__ || __OpenBSD__]: 
880         Don't define.
881         (UNEXEC) [__NetBSD__ || __OpenBSD__]: Define to unexelf.o.
882         (LINKER): Don't undef if __NetBSD__ is defined.
884         * m/mips.h (LINKER) [__NetBSD__ || __OpenBSD__]: Don't define.
886         * fileio.c [__NetBSD__]: Define `unix'.
888         * xfns.c (start_busy_cursor): Allow floats for busy-cursor-delay.
890 2000-02-29  Gerd Moellmann  <gerd@gnu.org>
892         * atimer.c (start_atimer): Don't abort when timers are stopped.
893         (append_atimer_lists): New function.
894         (cancel_atimer, stop_other_atimers, run_all_atimers): Handle
895         arbitrary lists of stopped and running atimers.
897         * atimer.c (cancel_atimer): Handle canceling an atimer when
898         some timers are stopped.
900         * xfns.c (cancel_busy_cursor): Set busy_cursor_atimer to null
901         after canceling it.
903         * fns.c (maybe_resize_hash_table): Handle case of new size
904         coming out as being the same as old size.
906 2000-02-27  Jason Rumney  <jasonr@gnu.org>
908         * makefile.nt: Add atimer.h to dependencies.
909         * w32.c (init_environment): Set Vw32_num_mouse_buttons here.
910         * w32console.c: Only disable window system features for dispextern.h
911         (initialize_w32_display): Build a display info for the console.
912         * w32faces.c (tty_defined_color): Apply xfaces.c change from 02-17.
913         * w32fns.c (w32_wnd_proc) [WM_LBUTTON_DOWN, WM_RBUTTON_DOWN,
914         WM_LBUTTON_UP, WM_RBUTTON_UP]: Do not treat 4 or more button mice
915         as 2 button mice.
916         * w32gui.h (struct W32FontStruct): Revert last change after change
917         to xdisp.c.
918         * w32menu.c (single_submenu): Set up help string.
919         [!HAVE_MULTILINGUAL_MENU]: Don't overwrite item_name with descrip.
920         (w32_dialog_show): Set up help string.
921         * w32term.c (w32_display_info_for_display): Remove unused function.
922         (w32_draw_bitmap): Use pre-built bitmaps.
923         (w32_initialize_display_info): New function to initialize parts of
924         display info that are common to both GUI and console frames.
925         (w32_term_init): Use w32_initialize_display_info. Do not set
926         Vw32_num_mouse_buttons here, as it is not called for console
927         frames.  Build bitmaps for indicating truncated lines etc.
928         (x_delete_display): Destroy pre-built bitmaps.
929         * xdisp.c (handle_single_display_prop): Use FONT_HEIGHT macro.
930         (echo_area_display): Change HAVE_X_WINDOWS to HAVE_WINDOW_SYSTEM.
932 2000-02-27  Dave Love  <fx@gnu.org>
934         * lisp.h: Add a bunch of prototypes.
936 2000-02-26  Kenichi Handa  <handa@etl.go.jp>
938         * keyboard.c (read_char): Set `usec' correctly.
940 2000-02-25  Miyashita Hisashi  <himi@bird.scphys.kyoto-u.ac.jp>
942         * ccl.c (ccl_driver) [CCL_MapMultiple]: When the mapped value is
943         `lambda', set reg[RRR] to the map index.
944         (ccl_driver) [CCL_MapSingle]: When the mapped value is found, set
945         reg[RRR] to 0.  Otherwise, set it to -1.
947 2000-02-25  Gerd Moellmann  <gerd@gnu.org>
949         * emacs.c (main): Remove code snippet commented out with `//'.
951 2000-02-25  Richard M. Stallman  <rms@caffeine.ai.mit.edu>
952         
953         * fileio.c (Ffile_symlink_p): If result starts with a `/'
954         and contains a `:', prepend `/:'.
956         * window.c (select_window_1): If selected_window is nil,
957         don't "swap out" the buffer's point.
958         (Fset_window_configuration): Set selected_window to nil
959         before calling Fselect_window.
960         (unshow_buffer): Don't set point in buffer from window's point
961         if another more recently selected window also shows the buffer.
963 2000-02-25  Gerd Moellmann  <gerd@gnu.org>
965         * keyboard.c (recursive_edit_1): Cancel busy-cursor.
967         * xfns.c (inhibit_busy_cursor, busy_count): Removed.
968         (Fx_show_busy_cursor, Fx_hide_busy_cursor): Removed.
969         (busy_cursor_atimer, busy_cursor_shown_p, Vbusy_cursor_delay): New
970         variables.
971         (DEFAULT_BUSY_CURSOR_DELAY): New define.
972         (start_busy_cursor, cancel_busy_cursor, show_busy_cursor)
973         (hide_busy_cursor): New functions.
974         (syms_of_xfns): DEFVAR_LISP Vbusy_cursor_delay.
976         * minibuf.c (read_minibuf): Cancel busy-cursor.
978         * keyboard.c (command_loop_1): Call start_busy_cursor before
979         Fcommand_execute and cancel_busy_cursor after it.
980         (timer_check): Remove busy-cursor code.
981         (Fread_key_sequence, Fread_key_sequence_vector): Start/cancel busy
982         cursor timer.
984         * process.c (wait_reading_process_input): Remove busy-cursor code.
986         * eval.c (Fsignal): Call cancel_busy_cursor instead of
987         Fx_hide_busy_cursor.
989         * dispextern.h (Fx_show_busy_cursor, Fx_hide_busy_cursor):
990         Remove prototyoes.
991         (start_busy_cursor, cancel_busy_cursor): Add prototypes.
993         * lisp.h (Fx_hide_busy_cursor): Remove prototype.
995         * xterm.c (XTread_socket): Remove busy-cursor code.
997         * dispnew.c (flush_stdout) [GLYPH_DEBUG]: New function.
998         (build_frame_matrix_from_leaf_window): Put code handling
999         glyph row's not being a slice of a frame row in #if 0.
1000         (sync_window_with_frame_matrix_rows): New function.
1001         (frame_row_to_window): New function.
1002         (mirror_line_dance): Handle copies between windows.
1004         * lread.c (Fload): Use `xfree' instead of `free'.
1005         (init_obarray): Use `xmalloc' instead of `malloc'.
1007         * window.c (Fset_window_buffer): Set WINDOW to the window
1008         after decoding.
1009         (coordinates_in_window): Take frame's internal border width
1010         into account.
1012 2000-02-24  Gerd Moellmann  <gerd@gnu.org>
1014         * xterm.c (x_display_and_set_cursor): Display cursor of
1015         non-selected windows depending on the setting of
1016         cursor_in_non_selected_windows.
1018         * xdisp.c (cursor_in_non_selected_windows): New variable.
1019         (syms_of_xdisp): DEFVAR_BOOL it.
1021 2000-02-23  Gerd Moellmann  <gerd@gnu.org>
1023         * data.c (Fstring_to_number): If number is greater than what
1024         fits into an integer, return a float.
1026         * eval.c (specbind): Remove references to
1027         keyword_symbols_constant_flag.
1029         * data.c (keyword_symbols_constant_flag): Removed.
1030         (Fmakunbound, set_internal, syms_of_data): Remove references to
1031         keyword_symbols_constant_flag.
1033         * bytecode.c (Fbyte_code): Remove keyword_symbols_constant_flag.
1035 2000-02-23  Kenichi Handa  <handa@etl.go.jp>
1037         * syntax.c (multibyte_syntax_as_symbol): New variable.
1038         (syms_of_syntax): Declare it as a Lisp variable.
1039         (SYNTAX_WITH_MULTIBYTE_CHECK): New macro.
1040         (scan_lists): If both sexpflag and multibyte_syntax_as_symbol are
1041         nonzero, treat all multibyte characters as symbol.
1042         (init_syntax_once): Give syntax `word' to all multibyte
1043         characters.
1045 2000-02-22  Eli Zaretskii  <eliz@is.elta.co.il>
1047         * frame.c (Fdelete_frame): Don't let echo_area_window remain on
1048         a deleted frame.
1050 2000-02-21  Gerd Moellmann  <gerd@gnu.org>
1052         * frame.c (Fmouse_position): GCPRO retval instead of x and y.
1054         * xfns.c (x_window_to_frame, x_any_window_to_frame)
1055         (x_non_menubar_window_to_frame): Check the busy-cursor window.
1057 2000-02-21  Dave Love  <fx@gnu.org>
1059         * frame.c (Vmouse_position_function): New variable.
1060         (Fmouse_position): Use it.
1061         (syms_of_frame): Install it.
1063         * charset.c (find_charset_in_str): Fix use of `c' instead of `c1'.
1065 2000-02-20  Gerd Moellmann  <gerd@gnu.org>
1067         * fileio.c (Finsert_file_contents): Unbind the binding of
1068         standard-output done by temp_output_buffer_setup.
1070         * eval.c (funcall_lambda): Don't bind Qmocklisp_arguments unless
1071         Vmocklisp_arguments is nil.  Inline Fcar and Fcdr.
1072         (specbind, unbind_to): Handle most common case of non-constant
1073         symbol with trivial value specially.
1075         * bytecode.c (Fbyte_code) <Bvarset>: Inline most common case.
1077 2000-02-20  Richard M. Stallman  <rms@caffeine.ai.mit.edu>
1079         * data.c (Fmake_variable_buffer_local): Doc fix.
1080         Init found_for_buffer to 0.
1081         (Fmake_variable_frame_local): If the variable has already
1082         been buffer-local, set the check_frame field.
1084 2000-02-20  Eli Zaretskii  <eliz@is.elta.co.il>
1086         * msdos.c (IT_write_glyphs): Allocate a larger screen_buf as data
1087         produced for CODING_MODE_LAST_BLOCK requires.
1089 2000-02-18  Dave Love  <fx@gnu.org>
1091         * keyboard.c (echo_keystrokes): Remove declaration.
1092         (Vecho_keystrokes) New variable.
1093         (read_char, record_menu_key, read_key_sequence): Use it to allow
1094         use of float value.
1095         (syms_of_keyboard): Change Vecho_keystrokes declaration.
1097         * lread.c: Undef feature selection macros before defining.
1099 2000-02-18  Gerd Moellmann  <gerd@gnu.org>
1101         * data.c (let_shadows_buffer_binding_p): Ignore specbindings
1102         for symbols other than the symbol in question.
1104 2000-02-17  Dave Love  <fx@gnu.org>
1106         * s/sol2.h (C_DEBUG_SWITCH): Define to allow optimization.
1108 2000-02-17  Gerd Moellmann  <gerd@gnu.org>
1110         * emacs.c (main): Use #if GC_MARK_STACK instead of #ifdef.
1112         * alloc.c (enum mem_type): Compile unconditionally.
1114 2000-02-17  Eli Zaretskii  <eliz@is.elta.co.il>
1116         * xfaces.c (tty_defined_color): Don't return faulire indication
1117         for unspecified-fg and unspecified-bg pseudo-colors.
1119 2000-02-17  Gerd Moellmann  <gerd@gnu.org>
1121         * alloc.c (mark_object): Don't mark symbol names in pure space.
1122         (gc_sweep): Don't unmark symbol names in pure space.
1124         * lisp.h (GC_USE_GCPROS_AS_BEFORE, GC_MAKE_GCPROS_NOOPS)
1125         (GC_MARK_STACK_CHECK_GCPROS, GC_USE_GCPROS_CHECK_ZOMBIES)
1126         [GC_MARK_STACK]: New defines.
1127         (GCPRO1, GCPRO2, GCPRO3, GCPRO4, GCPRO5, UNGCPRO) 
1128         [GC_MARK_STACK == GC_MAKE_GCPROS_NOOPS]: Define as no-ops.
1130         * emacs.c (main) [GC_MARK_STACK]: Initialize stack_base.
1132         * buffer.c (Fget_buffer_create, Fmake_indirect_buffer): Use
1133         allocate_buffer instead of xmalloc.
1135         * alloc.c (toplevel): Include setjmp.h.
1136         (PURE_POINTER_P): New define.
1137         (enum mem_type) [GC_MARK_STACK]: New enumeration.
1138         (Vdead) [GC_MARK_STACK]: New variable.
1139         (lisp_malloc): Add parameter TYPE, call mem_insert if
1140         GC_MARK_STACK is defined.
1141         (allocate_buffer): New function.
1142         (lisp_free) [GC_MARK_STACK]: Call mem_delete. 
1143         (free_float) [GC_MARK_STACK]: Set type to Vdead.
1144         (free_cons) [GC_MARK_STACK]: Set car to Vdead.
1145         (stack_base, mem_root, mem_z) [GC_MARK_STACK]: New variables.
1146         (MEM_NIL) [GC_MARK_STACK]: New define.
1147         (struct mem_node) [GC_MARK_STACK]: New structure.
1148         (mem_init, mem_find, mem_insert, mem_delete, mem_insert_fixup)
1149         (mem_delete_fixup, mem_rotate_left, mem_rotate_right)
1150         (live_string_p, live_cons_p, live_symbol_p, live_float_p)
1151         (live_misc_p, live_vector_p, live_buffer_p, mark_memory)
1152         (mark_stack) [GC_MARK_STACK]: New functions.
1153         (Fgarbage_collect) [GC_MARK_STACK]: Call mark_stack.
1154         (clear_marks): Removed.
1155         (gc_sweep): Set free conses' car, free floats' type, free
1156         symbols' function to Vdead.  Use lisp_free to free buffers.
1157         (init_alloc_once): Initialize Vdead.
1158         (survives_gc_p): Return non-zero for pure objects.
1160         * alloc.c: Add comments throughout the file.
1162         * atimer.c (stop_other_atimers): Don't call cancel_atimer because
1163         that unblocks alarms.
1165         * alloc.c, bytecode.c, data.c, dispnew.c, ecrt0.c, editfns.c,
1166         emacs.c, floatfns.c, fns.c, lread.c, print.c, config.in, lisp.h,
1167         Makefile.in: Remove `LISP_FLOAT_TYPE' and `standalone'.
1169         * frame.c (make_frame): Set frame initiallly to `garbaged'.
1170         
1171 2000-02-17  Kenichi Handa  <handa@etl.go.jp>
1173         * xdisp.c (decode_mode_spec_coding): Delete superfluous code to
1174         avoid infinite error signaling.  Allocate sufficient memory for
1175         eol_str in the case that eoltype is Lisp_Int.
1177 2000-02-17  Stefan Monnier  <monnier@cs.yale.edu>
1179         * syntax.c (Fforward_comment): Undo the previous change, since cc-mode
1180         depends on the previous behavior.
1182 2000-02-16  Gerd Moellmann  <gerd@gnu.org>
1184         * sysdep.c (vfork) [!HAVE_VFORK]: Removed.
1186 2000-02-15  Gerd Moellmann  <gerd@gnu.org>
1188         * s/freebsd.h (BROKEN_PTY_READ_AFTER_EAGAIN): Define.
1190         * process.c (send_process) [BROKEN_PTY_READ_AFTER_EAGAIN]:
1191         Workaround for FreeBSD bug.  Clear output queue after EAGAIN in
1192         write(2).
1194 2000-02-15  Richard M. Stallman  <rms@gnu.org>
1196         * data.c (set_internal): Don't make variable buffer-local
1197         if within a let-binding for the same buffer.
1198         (let_shadows_buffer_binding_p): New function.
1200         * eval.c (specbind): For buffer-local value,
1201         record the current buffer also.
1202         (unbind_to): Cope with that change.
1204 2000-02-15  Gerd Moellmann  <gerd@gnu.org>
1206         * window.c (Fsave_window_excursion): Doc fix.
1208 2000-02-15  Stefan Monnier  <monnier@cs.yale.edu>
1210         * syntax.c (back_comment): Make sure we only consider comment-starters
1211         of the relevant style and return -1 in case of a failure to find the
1212         beginning of the comment.
1213         (Fforward_comment): If back_comment fails, go back to the position just
1214         after the comment-end.
1215         (scan_lists): Add comment describing a very minor bug.
1217 2000-02-14  Stefan Monnier  <monnier@cs.yale.edu>
1219         * minibuf.c (Ftry_completion, Fall_completions): Add a reference to
1220         `completion-regexp-list' in the docstring.
1222 2000-02-14  Dave Love  <fx@gnu.org>
1224         * xfaces.c (tty_defined_color): Declare color_idx unsigned long.
1226 2000-02-14  Stefan Monnier  <monnier@cs.yale.edu>
1228         * regex.h (RE_SYNTAX_EMACS): Add RE_CHAR_CLASSES and RE_INTERVALS
1229         to Emacs' syntax.  Also fix the comment about set/not-set meanings
1230         since Emacs syntax is not the value 0 any more.
1231         * search.c (compile_pattern_1): Remove RE_CHAR_CLASSES from the syntax
1232         since it's now part of RE_SYNTAX_EMACS.
1234 2000-02-12  Dave Love  <fx@gnu.org>
1236         * frame.h (SELECTED_FRAME): Use NULL, not 0 to avoid warnings on
1237         Alpha.
1239 2000-02-12  Gerd Moellmann  <gerd@gnu.org>
1241         * xdisp.c (syms_of_xdisp): Doc fix for scroll-conservatively.
1243 2000-02-12  Dave Love  <fx@gnu.org>
1245         * s/aix3-2.h, s/osf-1.h: Define C_DEBUG_SWITCH for non-gcc.
1247         * s/ux4800.h, s/umips.h, s/umax.h, s/sol2.h, s/sco5.h, s/rtu.h:
1248         * s/ptx4.h, s/umax.h, s/dgux.h, s/bsd4-2.h, s/bsd4-3.h:
1249         * s/hpux.h: Don't define HAVE_VFORK.
1251         * s/gnu-linux.h: Don't define HAVE_VFORK or HAVE_SYS_SIGLIST.
1253         * s/nextstep.h: Don't define HAVE_ALLOCA.
1255         * config.in: Add vfork bits.
1257 2000-02-12  Gerd Moellmann  <gerd@gnu.org>
1259         * process.c (Fopen_network_stream) [POLL_FOR_INPUT]: Register
1260         unwind function to undo the effect of stopping atimers.
1262         * keyboard.c (bind_polling_period): Stop all timers except
1263         poll_timer.
1265         * atimer.c (stopped_atimers): New variable.
1266         (stop_other_atimers, run_all_atimers, unwind_stop_other_atimers):
1267         New functions.
1269         * atimer.h (stop_other_atimers, run_all_atimers)
1270         (unwind_stop_other_atimers): Add function prototypes.
1271         
1272         * s/hpux10.h (HAVE_XRMSETDATABASE): Define if not already defined.
1274 2000-02-11  Ken Raeburn  <raeburn@gnu.org>
1276         * Makefile.in (LIBX): Link in tiff library before jpeg, since tiff
1277         library may depend on jpeg.
1278         (atimer.o): Depends on atimer.c.
1280 2000-02-11  Kenichi Handa  <handa@etl.go.jp>
1282         * insdel.c (del_range_1): Call update_compositions.
1283         (del_range_both): Call update_compositions just once..
1285 2000-02-10  Dave Love  <fx@gnu.org>
1287         * xfns.c (create_frame_xic): Fix initialization of automatic
1288         aggregates for pcc.
1290 2000-02-09  Kenichi Handa  <handa@etl.go.jp>
1292         * ccl.c (CCL_MAKE_CHAR): New macro.
1293         (ccl_driver) <CCL_TranslateCharacter>: Check the validity of
1294         registers by CCL_MAKE_CHAR before calling translate_char.
1295         <CCL_TranslateCharacterConstTbl> Likewise.
1297 2000-02-08  Dave Love  <fx@gnu.org>
1299         * lread.c (__EXTENSIONS__): Define.
1301 2000-02-08  Gerd Moellmann  <gerd@gnu.org>
1303         * puresize.h (BASE_PURESIZE): Increase to 650000.
1305 2000-02-07  Eli Zaretskii  <eliz@is.elta.co.il>
1307         * msdos.c (XMenuActivate): Turn off the cursor after displaying
1308         the help message.
1310 2000-02-07  Eli Zaretskii <eliz@is.elta.co.il>
1312         * s/msdos.h (INTERNAL_TERMINAL): Add capabilities se, so, us, ue,
1313         md, mh, mb, mr, and me to the fake termcap entry.
1315 2000-02-06  Ken Raeburn  <raeburn@gnu.org>
1317         * sound.c (sound_cleanup): Don't call device close routine if the
1318         function pointer is null.
1320 2000-02-06  Andrew Innes  <andrewi@gnu.org>
1322         * dispextern.h: Change HAVE_X_WINDOWS to HAVE_WINDOW_SYSTEM,
1323         around image definitions and prototypes.
1324         (gamma_correct) [WINDOWSNT]: New prototype.
1326         * w32term.c (x_make_frame_visible): Replace call to
1327         input_poll_signal with poll_for_input.
1329         * window.c [WINDOWSNT]: Include w32term.h.
1331         * xdisp.c [WINDOWSNT]: Include w32term.h.
1333         * makefile.nt: Add dependencies on w32gui.h.
1334         (OBJ1): Include atimer.obj.
1335         ($(BLD)\atimer.obj): New dependency rule.
1337         * w32.c (sigmask): New function (does nothing).
1338         (sigunblock): Ditto.
1340         * frame.c [WINDOWSNT]: Include w32term.h.
1342         * w32gui.h (struct W32FontStruct): Add ascent and descent slots.
1344         * lread.c (syms_of_lread): Fix literal newlines.
1346         * emacs.c (USAGE): Split into USAGE1 and USAGE2, to work-around
1347         the string constant limit (2048 bytes) in MSVC.
1348         (main): Ditto.
1350 2000-02-05  INOUE Seiichiro <inoue@ainet.or.jp>
1352         * xterm.c (x_display_and_set_cursor) [HAVE_X_I18N]: Set pre-edit
1353         area.
1354         (x_display_cursor) [HAVE_X_I18N]: Don't set it here.
1355         (XTread_socket) [HAVE_X_I18N]: <KeyPress, KeyRelease>: Don't
1356         dispatch the event.
1358 2000-02-04  Dave Love  <fx@gnu.org>
1360         * fileio.c: Remove some unused vars.
1361         (_GNU_SOURCE): Define (for euidaccess).
1363         * lread.c (_XOPEN_SOURCE): Declare (for ftello).
1365         * minibuf.c (read_minibuf_noninteractive): Remove undeclared
1366         gcpro1, gcpro2.
1367         (read_minibuf): Deal with allow_props correctly.
1369 2000-02-03  Eli Zaretskii  <eliz@is.elta.co.il>
1371         * s/msdos.h (SYSTEM_PURESIZE_EXTRA): Enlarge to 60000.
1373 2000-02-03  Ken Raeburn  <raeburn@gnu.org>
1375         * search.c (compile_pattern): If a cache entry has a nil regexp,
1376         fill in that entry instead of clobbering a previously cached
1377         string regexp.
1379 2000-02-02  Ken Raeburn  <raeburn@gnu.org>
1381         * puresize.h (BASE_PURESIZE): Increase to 610000.
1383 2000-02-02  Gerd Moellmann  <gerd@gnu.org>
1385         * frame.c (Fframe_parameters): Add GCPRO because tty_color_name
1386         can GC.
1388 2000-02-02  Kenichi Handa  <handa@etl.go.jp>
1390         * ccl.c (ccl_driver) <CCL_WriteExprRegister>: Set jump_address
1391         instead of incrementing ic directly.
1392         <CCL_WriteExprConst> Likewise.
1393         <ccl_set_expr>: Set ic to jump_address.
1395         * fileio.c (e_write): Fix the handling of
1396         CODING_FINISH_INSUFFICIENT_SRC.
1398 2000-02-01  Dave Love  <fx@gnu.org>
1400         * editfns.c (Fpropertize): Doc fix.
1402         * process.c (Fstart_process): Doc fix.
1404         * eval.c: Fix various doc strings not to duplicate information
1405         from help-manyarg-func-alist.
1407         * window.c (Fset_window_margins): Don't make interactive.  Doc
1408         fix.
1410         * doc.c (Vhelp_manyarg_func_alist): New variable.
1411         (Fdocumentation): Use it.
1412         (syms_of_doc): Define it.
1414 2000-01-31  Gerd Moellmann  <gerd@gnu.org>
1416         * xterm.c (xim_open_dpy): Remove unused local variable.
1418         * emacs.c (USAGE): Use term `display options' instead of `X
1419         options'.
1421         * xdisp.c (Ftrace_to_stderr) [GLYPH_DEBUG]: New function.
1422         (syms_of_xdisp) [GLYPH_DEBUG]: Defsubr it.
1424         * fns.c (sweep_weak_table): New function.
1425         (sweep_weak_hash_tables): Use it.  Keep on marking until there
1426         is no more change.
1428 2000-01-30  Gerd Moellmann  <gerd@gnu.org>
1430         * xterm.c (x_delete_display): Update next_noop_dpyinfo to ensure
1431         that XTread_socket does not crash by trying to call XNoOp on a
1432         closed display.
1433         
1434 2000-01-30  Jason Rumney  <jasonr@gnu.org>
1436         * w32inevt.c (get_frame, w32_console_mouse_position, mouse_moved_to):
1437         Change selected_frame to SELECTED_FRAME ().
1438         (w32_console_mouse_position): Remove #ifndef MULE from around
1439         `insist' parameter.
1441         * makefile.nt: Remove dosfns.obj.
1443         * term.c (term_init) [WINDOWSNT]: Initialize TN_max_colors.
1445         * w32fns.c (w32_defined_color): Check for valid frame before
1446         applying gamma correction. Eliminate dependency on frame elsewhere.
1447         (w32_load_system_font): Switch FIXED_PITCH and VARIABLE_PITCH.
1448         (w32_to_x_font): Use resx and resy not height_in and width_in.
1449         (x_to_w32_font): Doc fix.
1450         (xlfd_strip_height): New function to strip and return font height.
1451         (w32_font_match): Compare height separately from rest of xlfd
1452         spec, using xlfd_strip_height.
1454         * w32term.c (w32_term_init): Swap resx and height_in, resy and
1455         width_in. Use w32_defined_color in place of defined_color.
1457         * w32faces.c: Merge more of DOS and X specifics in preparation for
1458         merge with xfaces.c.
1459         (defined_color): Remove FIXME comment.
1460         (tty_color_name): Provide w32-specific function.
1461         (realize_tty_face): Handle FACE_TTY_DEFAULT*_COLOR specially.
1463         * w32console.c (turn_on_face, turn_off_face): Removed.
1464         (w32_face_attributes): New function.
1465         (Global_variables): Reduce scope where possible.
1466         (clear_frame, ins_del_lines, scroll_line): Use char_attr_normal as
1467         fill attribute.
1468         (hl_mode): Don't modify text attributes.
1469         (write_glyphs): Don't do anything if len <= 0. Use
1470         w32_face_attributes to get attributes for drawing. Write
1471         terminating codes using char_attr_normal.
1472         (reset_terminal_modes, set_terminal_modes): Turn off highlight.
1473         (update_begin, update_end): Likewise.
1474         (vga_stdcolor_name): New function.
1475         (initialize_w32_display): Remove char_attr_reverse and char_attr.
1476         (Fset_screen_color): Remove char_attr_reverse.
1478 2000-01-29  Gerd Moellmann  <gerd@gnu.org>
1480         * xfns.c (xic_set_preeditarea): Take window parameter and
1481         window-relative pixel-positions.
1483         * xterm.c (x_display_cursor): Set XIC pre-edit area only if window
1484         is its frame's selected window.
1485         (xim_instantiate_callback): Likewise.
1487         * xfns.c (x_create_im): Removed.
1488         (DEFAULT_STYLE, DEFAULT_FONT): Removed.
1489         (supported_xim_styles): Renamed from supported_styles.
1490         (best_xim_style): Renamed from best_style.
1491         (create_frame_xic): Renamed from xic_create_frame.
1492         (free_frame_xic): Renamed from xic_destroy_frame.
1493         
1494 2000-01-29  INOUE Seiichiro <inoue@ainet.or.jp>
1496         * xterm.c (XTread_socket) [HAVE_X_I18N]: If event is for none of
1497         our frames, call XFilterEvent with 2nd parameter `None'.
1498         (XTread_socket) <KeyPress> [HAVE_X_I18N]: Handle XmbLookupString
1499         returning XBufferOverflow.
1500         (XTread_socket) <ConfigureNotify> [HAVE_X_I18N]: Set XIC status
1501         area.
1502         (x_display_cursor) [HAVE_X_I18N]: Set XIC pre-edit area.
1503         (x_new_fontset) [HAVE_X_I18N]: Create XIC status area fontset.
1504         (xim_destroy_callback, xim_open_dpy, xim_instantiate_callback)
1505         (xim_initialize, xim_close)
1506         [HAVE_X_I18N && HAVE_X11R6]: New functions.
1507         (x_destroy_window) [HAVE_X_I18N]:  Call xic_destroy_frame.
1508         (x_term_init) [HAVE_X_I18N]: Call xim_initialize.
1509         (x_delete_display) [HAVE_X_I18N]: Call xim_close.
1511         * xterm.h (struct x_display_info) [HAVE_X_I18N]: Add members `xim'
1512         and `xim_styles'.
1513         (struct x_output) [HAVE_X_I18N]: Remove member `xim', add
1514         `xic_style' and `xic_xfs'.
1515         (FRAME_MENUBAR_HEIGHT, FRAME_X_XIM, FRAME_X_XIM_STYLES)
1516         (FRAME_XIC_STYLE, FRAME_XIC_FONTSET): New macros.
1517         (FRAME_XIM): Removed.
1519         * xfns.c (supported_styles): New variable.
1520         (DEFAULT_STYLE, DEFAULT_FONT): New macros
1521         (xic_create_xfontset, best_style, xic_create_frame)
1522         (xic_destroy_frame, xic_set_preeditarea, xic_set_statusarea)
1523         (xic_set_xfontset): New functions.
1525 2000-01-28  Dave Love  <fx@gnu.org>
1527         * s/irix6-5.h: Revert last change after change to irix5-0.h.
1529         * m/iris4d.h (C_SWITCH_MACHINE): Don't use -G0.
1531 2000-01-28  Gerd Moellmann  <gerd@gnu.org>
1533         * buffer.c (Fother_buffer): Don't call Fset_buffer_major_mode
1534         for *scratch* if it already existed.
1536         * emacs.c (USAGE): New macro.
1537         (main): Use it to display usage information.
1539 2000-01-27  Eli Zaretskii  <eliz@is.elta.co.il>
1541         Support for the menu-help feature:
1543         * msdos.h: Change prototypes of XMenuAddSelection and
1544         XMenuActivate.
1546         * msdos.c (IT_clear_end_of_line): Print the extent of the cleared
1547         part of the line to the termscript file.
1548         (IT_clear_to_end): Clear the entire line, not just its beginning.
1549         (menu_help_message, prev_menu_help_message): New variables.
1550         (IT_menu_make_room): Make room for the help_text member.
1551         (IT_menu_display): New argument disp_help; all callers changed.
1552         If disp_help is non-zero, store the help text of the active menu
1553         item in menu_help_message.
1554         (XMenuAddPane): Initialize the help_text member to NULL.
1555         (XMenuAddSelection): New argument help_text.  Store it in the
1556         XMenu structure.
1557         (XMenuActivate): New argument help_callback.  If the value of
1558         menu_help_message has changed since the last time, display the
1559         menu help message text while waiting for the mouse to move.  Clear
1560         the echo area before exiting.
1561         (XMenuDestroy): Free the help_text member.
1563 2000-01-27  Gerd Moellmann  <gerd@gnu.org>
1565         * xmenu.c (xmenu_show) [!USE_X_TOOLKIT]: Pass help to
1566         XMenuAddSelection.  Pass help callback to XMenuActivate.
1567         (menu_help_callback) [!USE_X_TOOLKIT]: New function.
1569 2000-01-27  Eli Zaretskii  <eliz@is.elta.co.il>
1571         * atimer.c (start_atimer) [!HAVE_SETITIMER]: Use EMACS_SET_SECS
1572         and EMACS_SET_USECS.
1574 2000-01-26  Dave Love  <fx@gnu.org>
1576         * editfns.c (Fchar_after, Fchar_before): Doc fix.
1578         * bytecode.c (Fbyte_code): Use {BEFORE,AFTER}_POTENTIAL_GC where
1579         an error may be signalled.
1581 2000-01-26  Gerd Moellmann  <gerd@gnu.org>
1583         * s/irix6-5.h [__GNUC__ && __GNUC_MINOR__ >= 95]: Undef
1584         LD_SWITCH_SYSTEM inherited from irix5-0.h.
1586         * bytecode.c (Fbyte_code) [BYTE_CODE_SAFE]: Fix typo.
1588 2000-01-25  Gerd Moellmann  <gerd@gnu.org>
1590         * charset.c (Fstring): If there is a multibyte char among
1591         the args, always return a multibyte string.
1593 2000-01-25  Gerd Moellmann  <gerd@gnu.org>
1595         * sysdep.c (sys_select): Turn atimers off and on instead of
1596         recording and restoring old alarm handler
1598         * process.c (toplevel): Include atimer.h.
1599         (create_process_1): Rewritten.
1600         (create_process): Use atimers instead of alarm.
1601         (wait_reading_process_input) [hpux]: Turn atimers off instead
1602         of turning off SIGALRM.
1603         (wait_reading_process_input): Turn off atimers instead off
1604         calling stop_polling.
1606         * emacs.c (main): Call init_atimer.
1608         * keyboard.c (toplevel): Include systime.h and atimer.h.
1609         (polling_for_input): Removed because unused.
1610         (input_poll_signal) [POLL_FOR_INPUT]: Removed.
1611         (poll_timer): New variable.
1612         (poll_for_input, poll_for_input_1): New functions.
1613         (start_polling, stop_polling): Rewritten.
1615         * keyboard.h (polling_for_input): Removed.
1616         
1617         * atimer.h, atimer.c: New files.
1619         * Makefile.in (obj): Add atimer.o.
1620         (atimer.o): New target.
1622         * blockinput.h (pending_atimers): Add extern declaration.
1623         (UNBLOCK_INPUT): Rewritten.  Handle pending atimers.
1625         * lisp.h (popup_activated_flag): Add extern declaration.
1627         * xmenu.c (popup_activated_flag): Make externally visible.
1628         (popup_activate_callback) [USE_MOTIF]: Increment
1629         popup_activated_flag.
1630         (popup_deactivate_callback) [USE_MOTIF]: Decrement it.
1632         * xterm.c (toplevel): Include atimer.h.
1633         (toolkit_scroll_bar_interaction): New variable.
1634         (Fxt_process_timeouts): Removed.
1635         (x_process_timeouts): New function.
1636         (xt_action_hook): Clear toolkit_scroll_bar_interaction.
1637         (x_send_scroll_bar_event): Set toolkit_scroll_bar_interaction.
1638         (x_make_frame_visible): Call poll_for_input_1 instead of
1639         input_poll_signal.  Don't call alarm.
1640         (x_initialize): Install timer calling x_process_timeouts.
1641         
1642 2000-01-24  Dave Love  <fx@gnu.org>
1644         * s/irix5-0.h: Don't set LD_SWITCH_SYSTEM -- we use unexelf now.
1645         Don't use -cckr -- apparently not now necessary.
1647 2000-01-24  Eli Zaretskii  <eliz@is.elta.co.il>
1649         * msdos.c (IT_menu_display): Truncate long menu lines at the right
1650         screen boundary.
1652 2000-01-23  Jason Rumney  <jasonr@gnu.org>
1654         * w32fns.c (w32_defined_color): Apply gamma correction before
1655         trying to map to the palette.
1656         (w32_wnd_proc) [WM_ERASE_BACKGROUND]: Pass device context of frame
1657         to w32_clear_rect.
1659         * w32term.c (w32_fill_rect): Do not try to deal with NULL hdc
1660         here. Callers changed to always pass real device context.
1661         (w32_draw_bitmap): Likewise.
1662         (w32_get_glyph_overhangs): Likewise.
1663         (w32_draw_box_rect): Make use of s->hdc rather than getting a new
1664         one.
1665         (w32_set_vertical_scroll_bar): Pass correct HWND parameters to
1666         pfnSetScrollInfo and SetScrollRange.
1667         (x_get_char_face_and_encoding): Don't turn iso8859-1 characters
1668         back into MULE characters after decoding them.
1669         (x_get_glyph_face_and_encoding): Likewise.
1670         (w32_per_char_metric): Use GetCharExtentPoint32W as fallback when
1671         GetCharABCWidthsW fails, since this is defined on Windows 9x.
1672         (x_produce_glyphs): Calculate per char metrics for a character
1673         that we know exists in default font when font_not_found_p is true.
1675 2000-01-22  Jason Rumney <jasonr@gnu.org>
1677         * makefile.nt (intervals.obj, composite.obj): New modules.
1678         (composite.h): Added as dependency where appropriate.
1680         * w32gui.h (XGCValue): New struct for emulating X GCs.
1682         * w32term.h (XCharStruct): New struct for emulating X.
1684         * w32console.c (turn_on_face, turn_off_face): New functions.
1685         (change_line_highlight): New prototype for new redisplay.
1686         (write_glyphs): Support multibyte text. Support faces.
1688         * w32faces.c: Complete rewrite for new redisplay based on new
1689         xfaces.c.
1691         * w32fns.c: Use SELECTED_FRAME macro in place of selected_frame
1692         throughout. struct frame * in place of FRAME_PTR.
1693         Skeleton support for images, toolbars, tooltips from xfns.c.
1694         (Fx_create_frame): Use system default for default scroll bar
1695         width.
1696         (w32_get_arg): Renamed from x_get_arg.
1697         (Fx_file_dialog): New function.
1698         (w32_list_fonts): Check cache before asking system.
1699         (Vw32_enable_synthesized_fonts): New variable.
1700         (Vw32_enable_italics): Obsolete, removed.
1702         * w32inevt.c (get_frame, w32_console_mouse_position, mouse_moved_to):
1703         Use SELECTED_FRAME macro.
1705         * w32menu.c: Add skeleton support for help strings on menus.
1706         (add_menu_item): Native checkbox and radio support added, but not
1707         yet enabled due to bugs.
1708         (push_menu_item): Add parameters type, selection and help.
1709         Callers updated.
1710         Formatting changes to reduce unnecessary diffs with xmenu.c.
1712         * w32select.c (Fw32_set_clipboard_data): Update call to
1713         find_charset_in_str.
1715         * w32term.c: Complete rewrite for new redisplay based on new
1716         xterm.c with necessary sections merged back in from old w32term.c.
1718 2000-01-21  Richard M. Stallman  <rms@gnu.org>
1720         * data.c (set_internal): Further fix in same criterion.
1722 2000-01-20  Richard M. Stallman  <rms@gnu.org>
1724         * data.c (set_internal): Fix the criteria for whether
1725         to swap out the old cached binding.
1727 2000-01-19  Dave Love  <fx@gnu.org>
1729         * lread.c: (syms_of_lread) [user-init-file]: Doc change.
1731 2000-01-18  Kenichi Handa  <handa@etl.go.jp>
1733         * regex.c (re_compile_fastmap): While checking a range table for
1734         `charset', skip flag bits for a character class correctly.
1736 2000-01-17  Gerd Moellmann  <gerd@gnu.org>
1738         * m/news-risc.h (LD_SWITCH_MACHINE): Define differently for GCC.
1740         * xfns.c (x_window): Call lw_create_widget with new parameter
1741         list.
1743         * widget.c (EmacsFrameSetCharSize): Change size of children first
1744         because of problems with main window geometry management under
1745         Lesstif.
1747         * xmenu.c (enum menu_item_idx): New enumeration replacing defines
1748         MENU_ITEMS_ITEM_.*.
1749         (MENU_ITEMS_ITEM_HELP): New enumerator.
1750         (push_menu_item): Add parameter HELP.  Record help in menu_items.
1751         (single_menu_item, single_submenu, list_of_items): Call
1752         push_menu_item with new parameter.
1753         (single_submenu): Set help string in widget value.
1754         (menu_highlight_callback): New function.
1755         (set_frame_menubar): Call lw_create_widget with new
1756         parameter list.
1757         (xmenu_show, xdialog_show): Ditto.
1759 2000-01-13  Gerd Moellmann  <gerd@gnu.org>
1761         * sound.c (Fplay_sound): Improve doc string.
1763 2000-01-11  Richard M. Stallman  <rms@gnu.org>
1765         * lisp.h (set_internal): Enter the new arg.
1767         * eval.c (specbind): Record buffer-local variables specially,
1768         indicating which buffer's binding was saved.
1769         (unbind_to): Restore buffer-local variables specially
1770         in the proper buffer.
1772         * data.c (set_internal): New arg BUF.
1773         
1774         * eval.c (specbind, unbind_to): Pass new arg to set_internal.
1775         * data.c (Fset): Pass new arg to set_internal.
1776         * bytecode.c (Fbyte_code): Pass new arg to set_internal.
1777         
1778 2000-01-11  Gerd Moellmann  <gerd@gnu.org>
1780         * .gdbinit: Adapt to new strings.  Add xbacktrace, xreload,
1781         xprintsym.
1783 2000-01-11  Richard M. Stallman  <rms@gnu.org>
1785         * minibuf.c (Ftry_completion): Doc fix.
1787 2000-01-11  Gerd Moellmann  <gerd@gnu.org>
1789         * keyboard.c (Fclear_this_command_keys): Clear recent_keys
1790         vector, too.
1792 2000-01-11  Andreas Schwab  <schwab@suse.de>
1794         * coding.c (code_convert_region): Initialize total_skip.
1796 2000-01-08  Dave Love  <fx@gnu.org>
1798         * eval.c (Fuser_variable_p): Check customizability too.
1800 2000-01-07  Gerd Moellmann  <gerd@gnu.org>
1802         * minibuf.c (Fcompleting_read): Doc fix.
1804 2000-01-05  Gerd Moellmann  <gerd@gnu.org>
1806         * s/freebsd.h (C_SWITCH_SYSTEM): Add -I /usr/local/include and
1807         -L /usr/local/lib.
1809         * xfns.c (x_create_im): New function to set IM and IC of a frame.
1810         Check that input style is supported before trying to create an
1811         IC for it.
1812         (x_window): Call x_create_im.
1813         
1814 2000-01-04  Gerd Moellmann  <gerd@gnu.org>
1816         * xfns.c (current_gif_memory_src): New variable.
1817         (gif_load): Record the address of the current memory source
1818         in current_gif_memory_src.
1819         (gif_read_from_memory): Use current_gif_memory_src.
1821         * systime.h (EMACS_GET_TIME, EMACS_ADD_TIME, EMACS_SUB_TIME): Give
1822         macros statement form.
1824         * sound.c (struct sound): Renamed from struct sound_file.
1825         (struct sound): Add members `data' and `header_size'.
1826         (enum sound_attr): Add SOUND_DATA.
1827         (current_sound, current_sound_device): Variables renamed from
1828         sound_file and sound_device.
1829         (parse_sound): Parse :data.
1830         (parse_sound): Handle sound data in strings.
1831         (find_sound_type): Function renamed from find_sound_file_type.
1832         (wav_init, au_init): Fail if sound's header_size is smaller than 
1833         needed header size.
1834         (wav_play, au_play): Play sounds from string data.
1836         * puresize.h (BASE_PURE_SIZE): Increase to 600000.
1838         * lisp.h: Add prototype for allocate_string_data.
1840         * alloc.c (Fgarbage_collect): Return number of live and free
1841         strings.
1843         * alloc.c (mark_buffer): Remove code in #if 0.
1844         (gc_sweep): Ditto.
1845         (UNMARK_BALANCE_INTERVALS): Give the macro statement form.
1846         (strings_consed): New variable.
1847         (allocate_string): Set it.
1848         (syms_of_alloc): Add DEFVAR_INT for strings_consed.
1849         (Fmemory_use_counts): Return strings_consed.  Use Flist.
1851         * alloc.c: General cleanup in comments etc.  Remove conditional
1852         compilation for `standalone'.
1854         * lisp.h (struct Lisp_String): Make DATA member `unsigned char *'.
1856         * alloc.c (MARK_STRING, UNMARK_STRING, STRING_MARKED_P):
1857         (GC_STRING_BYTES, GC_STRING_CHARS): New macros.
1858         (DONT_COPY_FLAG): Removed.
1859         (SBLOCK_SIZE, LARGE_STRING_BYTES): New macros.
1860         (struct sdata, struct sblock): New
1861         (struct string_block): Rewritten.
1862         (STRINGS_IN_STRING_BLOCK): New macro.
1863         (oldest_sblock, current_sblock, total_strings, total_free_strings)
1864         (large_sblocks, string_blocks, string_free_list): New variables.
1865         (NEXT_FREE_LISP_STRING, SDATA_OF_STRING, SDATA_SIZE): New macros.
1866         (init_strings): Rewritten.
1867         (allocate_string, allocate_string_data, compact_small_strings)
1868         (free_large_strings, sweep_strings): New functions.
1869         (STRING_BLOCK_SIZE, STRING_BLOCK_OUTSIZE)
1870         (struct string_block_head, current_string_block)
1871         (first_string_block, large_string_blocks, STRING_FULLSIZE)
1872         (STRING_PAD): Removed.
1873         (make_uninit_multibyte_string, make_pure_string): Rewritten.
1874         (Fgarbage_collect): Don't set mark bit in large strings.
1875         (mark_object): Mark strings differently.  Mark symbol names
1876         differently.
1877         (survives_gc_p): Test marked strings differently.
1878         (gc_sweep): Sweep strings differently, unmark strings in 
1879         symbol names.
1880         (compact_strings): Removed.
1882 2000-01-04  Eli Zaretskii  <eliz@is.elta.co.il>
1884         * xfaces.c (syms_of_xfaces): defsubr Scolor_gray_p and
1885         Scolor_supported_p even if HAVE_X_WINDOWS is not defined.
1887 2000-01-04  Kenichi Handa  <handa@etl.go.jp>
1889         * fileio.c (Finsert_file_contents): Signal error if visiting file
1890         in a non-empty buffer. 
1892         * term.c (encode_terminal_code): Fix the previous change.
1894 2000-01-03  Gerd Moellmann  <gerd@gnu.org>
1896         * xfaces.c (syms_of_xfaces): Change Sface_color_gray_p to
1897         Scolor_gray_p, Sface_color_supported_p to Scolor_supported_p.
1899         * s/hpux9.h (NO_EDITRES): Define even if HAVE_LIBXMU.
1901 2000-01-03  Eli Zaretskii  <eliz@is.elta.co.il>
1903         * xdisp.c (handle_single_display_prop) [HAVE_WINDOW_SYSTEM]: No
1904         need to test for MSDOS frames.
1906 2000-01-03  Eli Zaretskii  <eliz@is.elta.co.il>
1908         * dosfns.c (unspecified_colors): Remove.
1909         (msdos_stdcolor_idx): Use global variables unspecified_fg and
1910         unspecified_bg.
1911         (msdos_stdcolor_name): Return strings for unspecified fore- and
1912         back-ground colors.
1914         * xfaces.c (Qunspecified_fg, Qunspecified_bg): Remove.
1915         (syms_of_xfaces): Remove their staticpro's.
1916         (tty_color_name): Return Lisp strings for unspecified fore- and
1917         back-ground colors.
1918         (Finternal_set_lisp_face_attribute): Remove the special treatment
1919         for Qunspecified_{f,b}g.
1920         (realize_default_face): Replace Qunspecified_{f,b}g with a Lisp
1921         string.
1923 2000-01-03  Gerd Moellmann  <gerd@gnu.org>
1925         * xdisp.c (reseat_at_next_visible_line_start): Position before
1926         newline only if ending up on a newline.
1927         (next_element_from_ellipsis): Return success.  Handle case of
1928         displaying no ellipsis.  Fix case of ellipsis defined in display
1929         table.
1930         (next_element_from_buffer): Return 0 if next_element_from_ellipsis
1931         returns 0.
1933 2000-01-03  Eli Zaretskii  <eliz@is.elta.co.il>
1935         * xfaces.c (Fcolor_gray_p): Renamed from face-color-gray-p.
1936         (Fcolor_supported_p): Renamed from face-color-supported-p.
1938 2000-01-02  Eli Zaretskii  <eliz@is.elta.co.il>
1940         * xfaces.c (tty_defined_color): Pass frame to tty-color-desc.  The
1941         list of colors renamed to tty-defined-color-alist.
1942         (tty_color_name): Pass the frame to tty-color-by-index.
1943         (realize_tty_face): tty-color-alist is now a function which
1944         accepts the frame as argument.
1946         * term.c (Ftty_display_color_p): Accept an optional argument
1947         FRAME.
1949 2000-01-02  Eli Zaretskii  <eliz@is.elta.co.il>
1951         * term.c (insert_glyphs): Pass glyph, not &glyph, to
1952         encode_terminal_code.
1954 2000-01-02  Eli Zaretskii  <eliz@is.elta.co.il>
1956         * dispnew.c (mode_line_string): Support termcap frames as well.
1958 2000-01-01  Gerd Moellmann  <gerd@gnu.org>
1960         * syntax.c (Fforward_word): Undo previous change.
1962         * editfns.c (Fconstrain_to_field): Don't constrain if
1963         inhibit-field-text-motion is non-nil.
1964         (Fline_beginning_position): Undo previous change.
1965         (Fline_end_position): Ditto.
1967         * syntax.c (Fforward_word): Notice field boundaries only if
1968         inhibit-field-text-motion is nil.
1970         * lisp.h: Add extern declaration for Vinhibit_field_text_motion.
1972         * editfns.c (Vinhibit_field_text_motion): New variable.
1973         (inhibit-field-text-motion): New DEFVAR_LISP.
1974         (Fline_beginning_position, Fline_end_position): Notice field
1975         boundaries only if inhibit-field-text-motion is nil.
1977         * xfns.c (x_create_x_image_and_pixmap): Remove parameter FILE.
1978         All calls adjusted.
1979         (x_build_heuristic_mask): Likewise.
1980         (xbm_load_image_from_file): Change error output.
1981         (xbm_load, xpm_load, pbm_load, png_load, jpeg_load, tiff_load)
1982         (gif_load, gs_load, x_kill_gs_process): Ditto.
1984         * xfns.c (gif_load): Avoid sign extension and thus out of bounds
1985         color indices when accessing raster pixels.
1986         (gif_image_p, png_image_p, jpeg_image_p, tiff_image_p): Allow only
1987         one of :file or :data.
1988         (enum pbm_keyword_index): Add PBM_DATA.
1989         (pbm_format): Add :data.
1990         (pbm_image_p): Allow either :file or :data.
1991         (pbm_read_file): New function.
1992         (pbm_scan_number): Rewritten to read from string.
1993         (pbm_load): Support :data.
1995 1999-12-31  Gerd Moellmann  <gerd@gnu.org>
1997         * xfns.c: New image functions adapted to Emacs conventions.
1998         (png_load, tiff_load, jpeg_load, gif_load): Always GCPRO local
1999         variable `file'.
2001 1999-12-31  William M. Perry  <wmperry@aventail.com>
2003         * xfns.c (jpeg_format): Added the :data keyword
2004         (jpeg_image_p): JPEG is valid with :file _or_ :data
2005         (jpeg_memory_src): Defined new JPEG image source to read from a
2006         memory buffer.
2007         (jpeg_load): Pay attention to the :data keyword if specified.
2008         Instantiates a jpeg_memory_src instead of jpeg_stdio_src if
2009         found.
2010         (png_format): Added the :data keyword
2011         (png_image_p): PNG is valid with :file _or_ :data
2012         (png_read_from_memory): New PNG read function to read from a
2013         memory buffer.
2014         (png_load): Pay attention to the :data keyword if specified.  Uses
2015         png_set_read_fn() instead of png_init_io() if specified.
2016         (tiff_format): Added the :data keyword for TIFF images.
2017         (tiff_image_p): TIFF is valid with :file _or_ :data
2018         (tiff_read_from_memory): Defined new TIFF I/O functions to read
2019         from a memory buffer.
2020         (tiff_load): Pay attention to the :data keyword if specified.
2021         Uses TIFFClientOpen() instead of TIFFOpen() if specified.
2022         (gif_format): Added the :data keyword
2023         (gif_image_p): GIF is valid with :file _or_ :data
2024         (gif_read_from_memory): New GIF input function to read from a
2025         memory buffer.
2026         (gif_load): Pay attention to the :data keyword.  Uses DGifOpen()
2027         instead of DGifOpenFileName() if specified.
2029 1999-12-31  Gerd Moellmann  <gerd@gnu.org>
2031         * xdisp.c (next_element_from_buffer): Change assertion at the end
2032         because it doesn't hold when there's an overlay string at the end
2033         from which we deliver an image.
2035 1999-12-30  Eli Zaretskii  <eliz@is.elta.co.il>
2037         * msdos.c (IT_update_begin): Don't dereference members of struct
2038         window for deleted windows.
2040 1999-12-30  Gerd Moellmann  <gerd@gnu.org>
2042         * abbrev.c (Fexpand_abbrev): If expanding an abbrev which has only
2043         a hook, and the hook has a non-nil `no-self-insert' property, let
2044         the return value of the hook specify whether an expansion took
2045         place.  If it returns nil, no expansion has been performed.
2047         * xterm.c (x_make_frame_visible): Wait for frame becoming visible
2048         differently.
2050 1999-12-30  Eli Zaretskii  <eliz@is.elta.co.il>
2052         * msdos.c (IT_write_glyphs): Track last changes to struct glyph.
2054 1999-12-29  Eli Zaretskii  <eliz@is.elta.co.il>
2056         * dispnew.c (mode_line_string): Support MS-DOS frames.
2058 1999-12-29  Gerd Moellmann  <gerd@gnu.org>
2060         * eval.c (syms_of_eval): Initialize debugger_may_continue.
2062 1999-12-29  Kenichi Handa  <handa@etl.go.jp>
2064         * process.c (read_process_output): Fix the args CHARPOS and LENINS
2065         to signal_after_change.
2067 1999-12-28  Eli Zaretskii  <eliz@is.elta.co.il>
2069         * msdos.c (dos_set_window_size) [__DJGPP__ > 1]: If the frame
2070         dimensions changed, invalidate the mouse highlight info.
2071         (disable_mouse_highlight, help_echo, previous_help_echo): New
2072         variables.
2073         (IT_set_mouse_pointer, show_mouse_face, clear_mouse_face)
2074         (fast_find_position, IT_note_mode_line_highlight)
2075         (IT_note_mouse_highlight): New functions.
2076         (IT_update_begin): If the redisplay affects the window where the
2077         mouse highlight is, clear the highlight.  If the frame where the
2078         highlight was displayed was killed, invalidate the highlight
2079         info.
2080         (IT_update_end): Reset the highlight flag.  Reset the mouse
2081         highlight-defer flag.
2082         (IT_frame_up_to_date): New function, if mouse highlight was
2083         deferred due to GC, do it now.
2084         (internal_terminal_init): Initialize mouse-highlight related
2085         members of the_only_x_display.  Assign IT_frame_up_to_date to
2086         frame_up_to_date_hook.
2087         (dos_rawgetc): If the mouse moved, update mouse highlight.  If
2088         help_echo changed value, generate a HELP_EVENT event.
2089         (syms_of_msdos): Staticpro help_echo and previous_help_echo.
2091         * msdos.h (struct display_info): New.
2092         (struct x_output): Add the display_info member.
2093         (FRAME_X_DISPLAY_INFO): New macro.
2095 1999-12-28  Gerd Moellmann  <gerd@gnu.org>
2097         * xdisp.c (try_window_id): Compute BEG_UNCHANGED and END_UNCHANGED
2098         if MODIFF > 1.
2099         (dump_glyph_row): Adapt to changes in struct glyph.
2101         * buffer.c (modify_overlay): Always compute unchanged info.
2103 1999-12-27  Kenichi Handa  <handa@etl.go.jp>
2105         * dispextern.h (FACE_FROM_ID): Cast the arg ID to `unsigned'.
2107 1999-12-27  Kenichi Handa  <handa@etl.go.jp>
2109         The following changes are to use more bits for face IDs.
2111         * lisp.h (GLYPH): Defined as `int', not `unsigned int'.  Now the
2112         lowest 8 bits are single byte character code, the bits above are
2113         face ID.
2114         (GLYPH_MASK_FACE, GLYPH_MASK_CHAR): Adjusted for the change
2115         above.
2116         (FAST_MAKE_GLYPH, FSST_GLYPH_FACE): Likewise.
2117         (GLYPH_MASK_REV_DIR, GLYPH_MASK_PADDING): Macros deleted.
2119         * charset.h (CHAR_BYTES): Use ((1 << CHARACTERBITS) - 1) instead
2120         of GLYPH_MASK_CHAR.
2122         * charset.c (char_bytes): Use ((1 << CHARACTERBITS) - 1) instead
2123         of GLYPH_MASK_CHAR.
2125         * dispextern.h (struct glyph): Make face_id and padding_p the top
2126         level members.  Change members in union `u'.
2127         (GLYPH_EQUAL_P): Check also members face_id and padding_p.
2128         (GLYPH_CHAR_AND_FACE_EQUAL_P): New macro.
2129         (SET_CHAR_GLYPH): Adjusted for the change of struct glyph.
2130         (CHAR_GLYPH_PADDING_P): Likewise.
2131         (GLYPH_FROM_CHAR_GLYPH): Likewise.  Always return -1 for multibyte
2132         characters.
2134         * dispnew.c (line_hash_code, direct_output_for_insert): Adjusted
2135         for the change of struct glyph.
2136         (line_draw_cost): Adjusted for the change of
2137         GLYPH_FROM_CHAR_GLYPH.
2138         (count_match): Use macro GLYPH_CHAR_AND_FACE_EQUAL_P.
2140         * term.c (encode_terminal_code): Adjusted for the change of struct
2141         glyph and GLYPH_FROM_CHAR_GLYPH.
2142         (write_glyphs, insert_glyphs, append_glyph): Adjusted for the
2143         change of struct glyph.
2145         * xdisp.c: All codes adjusted for the change of struct glyph.
2147         * xterm.c: All codes adjusted for the change of struct glyph.
2149 1999-12-27  Kenichi Handa  <handa@etl.go.jp>
2151         * composite.h (struct composition): Change the order of declaring
2152         members to reduce the byte size of the structure.
2154 1999-12-25  Gerd Moellmann  <gerd@gnu.org>
2156         * search.c (looking_at_1): Reset immediate_quit before modifying
2157         global data.
2159 1999-12-24  Kenichi Handa  <handa@etl.go.jp>
2161         * process.c (read_process_output): Fix the arg FROM to
2162         update_compositions.
2164 1999-12-22  Richard M. Stallman  <rms@gnu.org>
2166         * search.c (Freplace_match): For nonliteral replacement in buffer,
2167         construct all the new text first, then insert all at once.
2169 1999-12-22  Dave Love  <fx@gnu.org>
2171         * xfns.c (Fx_show_tip): Gcpro `timeout' too.
2173 1999-12-22  Gerd Moellmann  <gerd@gnu.org>
2175         * xfns.c (Fx_create_frame): Move x_default_parameter calls that
2176         lead to size changes to after the X window has been created.
2178         * xfaces.c (realize_x_face): Don't use uninitialized local
2179         variable in xassert.
2181 1999-12-22  Kenichi Handa  <handa@etl.go.jp>
2183         * xfaces.c (face_color_supported_p): Check by tty_defined_color
2184         only when the frame is not for a window system.
2186 1999-12-22  Gerd Moellmann  <gerd@gnu.org>
2188         * buffer.c (Fset_buffer_multibyte): Arrange for a thorough
2189         redisplay after changing the multibyteness of a buffer.
2191         * xterm.c (XTread_socket): At the beginning of the loop, pass the
2192         frame's X window to XFilterEvent instead of None because that's
2193         the X window for which the IC was created.  This makes dead
2194         accents work when the pointer is not in Emacs' frame.
2195         (XTread_socket) <KeyPress>: Don't call XFilterEvent here.
2197 1999-12-20  Dave Love  <fx@gnu.org>
2199         * xfns.c (Fx_show_tip): Add missing UNGCPRO.
2201 1999-12-19  Gerd Moellmann  <gerd@gnu.org>
2203         * eval.c (debugger_may_continue): New variable.
2204         (syms_of_eval): Add a DEFVAR_BOOL for it.
2205         (call_debugger): Bind it.
2207 1999-12-19  Eli Zaretskii  <eliz@is.elta.co.il>
2209         * msdos.c (IT_set_face): Don't swap face colors when highlight or
2210         fp->tty_reverse_p is set, unless the computed colors are identical
2211         to frame colors.  Print both original and computed colors to
2212         termscript file.
2213         (IT_write_glyphs): Track the changes in handling of composite
2214         characters.
2215         (IT_set_frame_parameters): Don't set frame colors from
2216         unspecified-fg and unspecified-bg pseudo-colors.
2218 1999-12-17  Dave Love  <fx@gnu.org>
2220         * data.c (Fkeywordp): New function.
2221         (syms_of_data): Install it.
2223 1999-12-16  Eli Zaretskii  <eliz@is.elta.co.il>
2225         * xfaces.c (tty_defined_color): Fix last change.
2227 1999-12-15  Gerd Moellmann  <gerd@gnu.org>
2229         * xdisp.c (redisplay_window) <optional new window start>: Check
2230         that window start is in [BEGV..ZV].
2232 1999-12-15  Eli Zaretskii  <eliz@is.elta.co.il>
2234         * dispextern.h (FACE_TTY_DEFAULT_FG_COLOR)
2235         (FACE_TTY_DEFAULT_BG_COLOR):  New macros.
2237         * xfaces.c (Qunspecified_fg, Qunspecified_bg): New variables.
2238         (syms_of_xfaces): Initialize and staticpro them.
2239         (tty_defined_color): If the color name is unspecified-fg or
2240         unspecified-bg, return FACE_TTY_DEFAULT_FG_COLOR and
2241         FACE_TTY_DEFAULT_BG_COLOR, respectively, as the pixel value.
2242         (tty_color_name): If the color pixel value is either
2243         FACE_TTY_DEFAULT_FG_COLOR or FACE_TTY_DEFAULT_BG_COLOR, return
2244         Qunspecified_fg or Qunspecified_bg, respectively.
2245         (Finternal_set_lisp_face_attribute): Allow values Qunspecified_fg
2246         and Qunspecified_bg for foreground and background colors.
2247         (realize_default_face): If the foreground and background colors
2248         are not specified, default to Qunspecified_fg and Qunspecified_bg.
2249         (realize_tty_face): By default, set the face colors to
2250         FACE_TTY_DEFAULT_FG_COLOR and FACE_TTY_DEFAULT_BG_COLOR.
2251         [MSDOS]: Handle FACE_TTY_DEFAULT_FG_COLOR and
2252         FACE_TTY_DEFAULT_BG_COLOR when face colors are not defined.
2253         Reverse the colors if the default colors were reversed.
2255         * dispnew.c (init_display): Initialize the frame pixels of the
2256         initial frame to FACE_TTY_DEFAULT_FG_COLOR and
2257         FACE_TTY_DEFAULT_BG_COLOR.
2259         * term.c (turn_on_face): If the default fore- and background
2260         colors are reversed, enter inverse video mode.  Don't send color
2261         escape sequences for unspecified foreground and background colors.
2262         (turn_off_face): Handle unspecified-fg and unspecified-bg colors.
2264         * dosfns.c (unspecified_colors): New variable.
2265         (msdos_stdcolor_idx): Handle unspecified-fg and unspecified-bg
2266         color names, return FACE_TTY_DEFAULT_FG_COLOR and
2267         FACE_TTY_DEFAULT_BG_COLOR, respectively.
2268         (msdos_stdcolor_name): Handle FACE_TTY_DEFAULT_FG_COLOR and
2269         FACE_TTY_DEFAULT_BG_COLOR, return Qunspecified_fg and
2270         Qunspecified_bg, respectively.
2272         * msdos.c (IT_set_face): Support FACE_TTY_DEFAULT_FG_COLOR and
2273         FACE_TTY_DEFAULT_BG_COLOR as pixel values.
2275 1999-12-15  Kenichi Handa  <handa@etl.go.jp>
2277         * coding.c (code_convert_region): Fix the secoding arg to
2278         update_compositions.
2280 1999-12-15  Kenichi Handa  <handa@etl.go.jp>
2282         The following changes are for the new composition mechanism.  We
2283         have deleted `composition' charset and composite characters,
2284         instead introduced a special text property `composition'.
2286         * Makefile.in (INTERVAL_SRC): Include composite.h.
2287         (INTERVAL_OBJ): Include composite.o.
2288         (SOME_MACHINE_OBJECTS): Include composite.o.
2289         (casefiddle.o) (dispnew.o) (indent.o) (process.o) (search.o)
2290         (syntax.o) (window.o) (xdisp.o) (xfaces.o) (xterm.o) (print.o):
2291         Depend on composite.h.
2292         (doc.o): Depend on charset.h.
2293         (keyboard.o) (textprop.o) (intervals.o): Depend on INTERVAL_SRC.
2294         (composite.o): New target.
2295         
2296         * alloc.c (Fmake_string): Adjusted for the change of CHAR_STRING.
2298         * callproc.c (Fcall_process): Call code_convert_string to encode
2299         arguments.  Use CODING_REQUIRE_DECODING to check if the process
2300         output should be decoded.
2302         * casefiddle.c: Include composite.h.
2303         (casify_object): Use MAX_MULTIBYTE_LENGTH to allocate memory for a
2304         multibyte character.  Adjusted for the change of CHAR_STRING.
2305         (casify_region): Likewise.  Call update_compositions.
2307         * category.h (CATEGORY_SET): Delete codes for a composite
2308         character.
2310         * category.c (word_boundary_p): Delete codes for a composite
2311         character.
2312         (Fmake_category_table): New function.
2313         (syms_of_category): Defsubr it.
2315         * ccl.c (CCL_WRITE_CHAR): Adjusted for the change of CHAR_STRING.
2316         (ccl_driver): Delete codes for a composite character.
2318         * charset.h: In this entry, just `Modified' means that codes for a
2319         composite character is deleted.
2320         (LEADING_CODE_COMPOSITION) (CHARSET_COMPOSITION)
2321         (charset_composition) (MIN_CHAR_COMPOSITION)
2322         (MAX_CHAR_COMPOSITION) (GENERIC_COMPOSITION_CHAR)
2323         (COMPOSITE_CHAR_P) (MAKE_COMPOSITE_CHAR) (COMPOSITE_CHAR_ID)
2324         (PARSE_COMPOSITE_SEQ) (PARSE_CHARACTER_SEQ): Deleted.
2325         (MAX_CHAR) (CHARSET_VALID_P) (CHARSET_DEFINED_P) (CHARSET_AT)
2326         (FIRST_CHARSET_AT) (SAME_CHARSET_P) (MAKE_NON_ASCII_CHAR)
2327         (PARSE_MULTIBYTE_SEQ) (SPLIT_NON_ASCII_CHAR) (CHAR_PRINTABLE_P):
2328         Modified.
2329         (SPLIT_STRING): Call split_string, not split_non_ascii_string.
2330         (CHAR_STRING): Delete WORKBUF argument.  Call char_string, not
2331         non_ascii_char_to_string.
2332         (STRING_CHAR): Call string_to_char, not string_to_non_ascii_char.
2333         (STRING_CHAR_AND_LENGTH): Likewise.
2334         (FETCH_CHAR_ADVANCE): New macro.
2335         (MAX_COMPONENT_COUNT) (struct cmpchar_info): Deleted.
2336         (MAX_MULTIBYTE_LENGTH): New macro.
2337         (MAX_LENGTH_OF_MULTI_BYTE_FORM): Deleted.
2338         (find_charset_in_str): Argument adjusted.
2339         (CHAR_LEN): Modified.
2340         
2341         * charset.c: In this entry, just `Modified' means that codes for a
2342         composite character is deleted.
2343         (Qcomposition) (leading_code_composition)
2344         (charset_composition) (min_composite_char) (cmpchar_table)
2345         (cmpchar_table_size) (n_cmpchars): Deleted.
2346         (SPLIT_COMPOSITE_SEQ): Deleted.
2347         (SPLIT_MULTIBYTE_SEQ): Modified.
2348         (char_to_string): Renamed from non_ascii_char_to_string.
2349         Modified.
2350         (string_to_char): Renamed from string_to_non_ascii_char.
2351         (split_string): Renamed from split_non_ascii_string.
2352         (char_printable_p) (Fsplit_char)
2353         (Ffind_charset_region) (Ffind_charset_string) (char_valid_p)
2354         (char_bytes) (Fchar_width) (strwidth): Modified.
2355         (find_charset_in_str): Argument CMPCHARP deleted.  Modified.
2356         (Fstring): Adjusted for the change of CHAR_STRING.  Modified.
2357         (hash_string) (CMPCHAR_HASH_TABLE_SIZE) (cmpchar_hash_table)
2358         (CMPCHAR_HASH_SIZE) (CMPCHAR_HASH_USED) (CMPCHAR_HASH_CMPCHAR_ID)
2359         (str_cmpchar_id) (cmpchar_component) (Fcmpcharp)
2360         (Fcmpchar_component) (Fcmpchar_cmp_rule) (Fcmpchar_cmp_rule_p)
2361         (Fcmpchar_cmp_count): Deleted.
2362         (Fcompose_string): Implemented by Emacs Lisp in composite.el.
2363         (init_charset_once): Modified.
2364         (syms_of_charset): Modified.
2366         * cmds.c (internal_self_insert): Adjusted for the change of
2367         CHAR_STRING.
2369         * coding.h (emacs_code_class_type): Delete the member
2370         EMACS_leading_code_composition.
2371         (COMPOSING_NO) (COMPOSING_WITH_RULE_HEAD) (COMPOSING_NO_RULE_HEAD)
2372         (COMPOSING_WITH_RULE_TAIL) (COMPOSING_NO_RULE_TAIL)
2373         (COMPOSING_WITH_RULE_RULE) (COMPOSING_HEAD_P)
2374         (COMPOSING_WITH_RULE_P): Macros deleted.
2375         (COMPOSITION_DATA_SIZE) (COMPOSITION_DATA_MAX_BUNCH_LENGTH): New
2376         macros.
2377         (struct composition_data): New structure.
2378         (CODING_FINISH_INSUFFICIENT_CMP): New macro.
2379         (struct coding_system): New members composition_rule_follows,
2380         cmp_data, cmp_data_start, cmp_data_index.
2381         (coding_save_composition) (coding_free_composition_data)
2382         (coding_adjust_composition_offset): Extern them.
2384         * coding.c: Include composite.h.
2385         (DECODE_CHARACTER_ASCII): Don't handle composition here.
2386         (DECODE_CHARACTER_DIMENSION1): Likewise.  Don't check the validity
2387         of multibyte code here.
2388         (DECODE_CHARACTER_DIMENSION2): Likewise.
2389         (detect_coding_emacs_mule): Change the case label from
2390         EMACS_leading_code_composition to 0x80.
2391         (detect_coding_iso2022): Handle new composition sequence.
2392         (DECODE_ISO_CHARACTER): Likewise.
2393         (check_composing_code): Deleted.
2394         (coding_allocate_composition_data): New function.
2395         (CODING_ADD_COMPOSITION_START) (CODING_ADD_COMPOSITION_END)
2396         (CODING_ADD_COMPOSITION_COMPONENT) (DECODE_COMPOSITION_START)
2397         (DECODE_COMPOSITION_END) (DECODE_COMPOSITION_RULE): New macros.
2398         (decode_coding_iso2022): Handle new composition sequence.
2399         (ENCODE_ISO_CHARACTER): Don't check composition here.
2400         (ENCODE_COMPOSITION_RULE) (ENCODE_COMPOSITION_START): New macros.
2401         (ENCODE_COMPOSITION_NO_RULE_START)
2402         (ENCODE_COMPOSITION_WITH_RULE_START): Deleted.
2403         (ENCODE_COMPOSITION_END): Handle new composition sequence.
2404         (ENCODE_COMPOSITION_FAKE_START): New macro.
2405         (encode_coding_iso2022): Handle new composition sequence.
2406         (ENCODE_SJIS_BIG5_CHARACTER): Delete superfluous `;' at the tail.
2407         (encode_coding_sjis_big5): Ignore composition.
2408         (setup_coding_system): Initialize new members of struct
2409         coding_system.  Enable composition only when the coding system has
2410         `composition' property t.
2411         (coding_free_composition_data) (coding_adjust_composition_offset)
2412         (coding_save_composition) (coding_restore_composition): New
2413         functions.
2414         (code_convert_region): Call coding_save_composition for encoding
2415         and coding_allocate_composition_data for decoding.  Don't skip
2416         ASCII characters if we handle composition on encoding.  Call
2417         signal_after_change with Check_BORDER.
2418         (code_convert_string): Call coding_save_composition for encoding
2419         and coding_allocate_composition_data for decoding.  Don't skip
2420         ASCII characters if we handle composition on encoding.
2421         (code_convert_string1): Set Vlast_coding_system_used after calling
2422         code_convert_string.
2423         (code_convert_string_norecord): Disable composition.
2424         (Fset_terminal_coding_system_internal): Likewise.
2425         (Fset_safe_terminal_coding_system_internal): Likewise.
2426         (Fset_keyboard_coding_system_internal): Likewise.
2427         (init_coding_once): Set emacs_code_class[0x80] to
2428         EMACS_invalid_code.
2430         * composite.h: New file.
2432         * composite.c: New file.
2434         * data.c (Faref): Delete codes for a composite character..
2435         (Faset): Likewise.  Adjusted for the change of CHAR_STRING.
2437         * dispextern.h (enum glyph_type): New member COMPOSITE_GLYPH.
2438         (struct glyph): Add new sub-structure cmp to the union `u'.
2439         (enum display_element_type): New member IT_COMPOSITION.
2440         (enum prop_idx): New member COMPOSITION_PROP_IDX.
2441         (struct it): New members cmp_id, cmp_len.
2443         * dispnew.c (direct_output_forward_char): Check point moving into
2444         or out of a composition.  If so, give up direct method.
2446         * doprnt.c (doprnt1): Adjusted for the change of CHAR_STRING.
2448         * editfns.c (Fchar_to_string): Adjusted for the change of
2449         CHAR_STRING.
2450         (general_insert_function): Likewise.
2451         (Finsert_char): Likewise.
2452         (Fsubst_char_in_region): Likewise.  Call update_compositions.
2453         (Ftranslate_region): Call update_compositions.
2454         (Ftranspose_regions): Call update_compositions.
2456         * emacs.c (main): Call syms_of_composite.
2458         * fileio.c (Fsubstitute_in_file_name): Adjusted for the change of
2459         CHAR_STRING.
2460         (Finsert_file_contents): Set Vlast_coding_system_used before
2461         calling signal_after_change.  Call update_compositions if some
2462         texts are inserted..
2463         (Fwrite_region): Adjusted for the change of a_write and e_write.
2464         (a_write): Argument changed.  Work based on character position,
2465         not byte position.
2466         (e_write): Argument changed.  Handle new way of composition.
2468         * fns.c (Flength): The length of char-table is MAX_CHAR.
2469         (concat): Adjusted for the change of CHAR_STRING.
2470         (Ffillarray): Adjusted for the change of CHAR_STRING.
2471         (Fset_char_table_default): Delete codes for a composite character.
2472         (hash_put): Return hash index.
2474         * fontset.h (struct font_info): New member vertical_centering.
2475         (Vvertical_centering_font_regexp): Extern it.
2477         * fontset.c (Vvertical_centering_font_regexp): New variable.
2478         (syms_of_fontset): Declare it as a Lisp variable and initialize.
2479         Set Vignore_relative_composition to nil.
2480         (fs_load_font): Initialize `vertical_centering' of struct
2481         font_info.
2483         * indent.c (check_composition): New function.
2484         (MULTIBYTE_BYTES_WIDTH): Call STRING_CHAR_AND_LENGTH with
2485         MAX_MULTIBYTE_LENGTH, not MAX_LENGTH_OF_MULTI_BYTE_FORM.
2486         (current_column_1): Handle new way of composition.
2487         (Fmove_to_column): Likewise.
2488         (compute_motion): Likewise.
2490         * insdel.c (copy_text): Adjusted for the change of CHAR_STRING.
2491         (insert_char): Likewise.
2492         (insert): Call update_compositions.
2493         (insert_and_inherit): Likewise.
2494         (insert_before_markers): Likewise.
2495         (insert_before_markers_and_inherit): Likewise.
2496         (insert_from_string): Likewise.
2497         (insert_from_string_before_markers): Likewise.
2498         (insert_from_buffer): Likewise.
2499         (replace_range): Likewise.
2500         (count_combining_composition): Deleted.
2501         (count_combining_before): Delete codes for a composite character.
2502         (count_combining_after): Likewise.
2503         (del_range_1): Call update_compositions.
2504         (del_range_byte): Likewise.
2505         (del_range_both): Likewise.
2506         (Fcombine_after_change_execute): Likewise.
2508         * intervals.h: Include composite.h.
2509         (get_property_and_range): Extern it.
2510         (Vtext_property_default_nonsticky): Extern it.
2511         
2512         * intervals.c (adjust_intervals_for_insertion): To check stickines
2513         of properties, pay attention to text-property-default-nonsticky.
2514         (merge_properties_sticky): Likewise.
2515         (get_property_and_range): New function.
2517         * keyboard.c (Vdisable_point_adjustment): New variable.
2518         (Vglobal_disable_point_adjustment): New variable.
2519         (syms_of_keyboard): Declare them as Lisp variables.
2520         (command_loop_1): Check them and call adjust_point_for_property if
2521         necessary.
2522         (adjust_point_for_property): New function.
2524         * keymap.c (push_key_description): Adjusted for the change of
2525         CHAR_STRING.
2526         (Ftext_char_description): Likewise.
2528         * lisp.h (QCtest, QCweakness, Qequal): Extern them.
2529         (hash_put): Adjusted for the change of the definition.
2530         (signal_after_change): Likewise.
2531         (check_point_in_composition): Extern it.
2533         * lread.c (readchar): Adjusted for the change of CHAR_STRING.
2534         Delete a code that handles an invalid too-long multibyte sequence
2535         because we are now sure that we never encounter with such a
2536         sequence.
2537         (read_multibyte): Use macro MAX_MULTIBYTE_LENGTH, not
2538         MAX_LENGTH_OF_MULTI_BYTE_FORM.
2539         (init_obarray): Likewise.
2540         (read1): Likewise.  Adjusted for the change of CHAR_STRING.
2542         * print.c (printchar): Adjusted for the change of CHAR_STRING.
2544         * process.c: Include composite.h.
2545         (read_process_output): Call update_compositions.
2547         * regex.c (regex_compile): Adjusted for the change of CHAR_STRING.
2549         * search.c (search_buffer): Adjusted for the change of CHAR_STRING.
2551         * syntax.h (SYNTAX_ENTRY_INT): Delete codes for a composite
2552         character.
2554         * term.c (encode_terminal_code): Delete codes for a composite
2555         character.  Adjusted for the change of CHAR_STRING.
2556         (produce_glyphs): When called, it->what can be IT_COMPOSITION.
2557         Delete codes for a composite character.
2559         * textprop.c (Vtext_property_default_nonsticky): New variable
2560         (syms_of_textprop): Declare it as a Lisp variable.
2562         * window.c (Frecenter): Clear all caches of compositions.
2564         * xdisp.c (it_props): Add an entry for composition.
2565         (face_before_or_after_it_pos): For composition, check face of a
2566         character after the composition.
2567         (handle_composition_prop): New function.
2568         (get_next_display_element): Adjusted for the change of
2569         CHAR_STRING.
2570         (set_iterator_to_next): Handle the case that it->method ==
2571         next_element_from_composition.
2572         (next_element_from_composition): New function.
2573         (message_dolog): Adjusted for the change of CHAR_STRING.
2574         (set_message_1): Likewise.
2575         (check_point_in_composition): New function.
2576         (reconsider_clip_changes): If point moved into or out of
2577         composition, set b->clip_changed to 1 to force updating of the
2578         screen.
2579         (disp_char_vector): Delete codes for a composite character.
2580         (decode_mode_spec_coding): Adjusted for the change of CHAR_STRING.
2582         * xfaces.c (choose_face_fontset_font): Delete codes for a
2583         composite character.
2584         (realize_x_face): Likewise.  Change a place to set local variable
2585         `f' to avoid a bug of GCC 2.8.1 on Solaris.
2587         * xfns.c: Include intervals.h.
2588         (syms_of_xfns): Make `display' property nonsticky by default.
2590         * xselect.c (lisp_data_to_selection_data): Adjusted for the change
2591         for find_charset_in_str.
2593         * xterm.h (struct x_output): Change member font_baseline to
2594         baseline_offset.
2596         * xterm.c (x_append_glyph): Setup members of struct glyph properly
2597         for composition.
2598         (x_append_composite_glyph): New function.
2599         (VCENTER_BASELINE_OFFSET): New macro.
2600         (x_produce_glyphs): If it->what == IT_COMPOSITION, setup members
2601         of struct it for the composition.  Cache pixel offsets in the
2602         struct composition.  Delete codes for a composite character.
2603         Handle Vignore_relative_composition in composition code.
2604         (struct glyph_string): Delete member cmpcharp, add new member cmp.
2605         (x_set_cursor_gc): Check s->cmp, not s->cmpcharp.
2606         (x_compute_glyph_string_overhangs): Likewise.
2607         (x_get_glyph_overhangs): Delete codes for a composite character.
2608         (x_right_overwritten): Check s->cmp, not s->cmpcharp.
2609         (x_draw_glyph_string_background): Likewise.  Delete codes for
2610         checking s->gidx for a composition.
2611         (x_draw_glyph_string_foreground): Delete code for a composite
2612         character.
2613         (x_draw_composite_glyph_string_foreground): New function.
2614         (x_draw_glyph_string_box): Check s->cmp, not s->cmpcharp.
2615         (x_draw_glyph_string): Handle the case of COMPOSITE_GLYPH.
2616         (struct work): Deleted.
2617         (x_fill_composite_glyph_string): Argument changed.  Mostly
2618         rewritten for that.
2619         (x_fill_glyph_string): Don't check CHARSET_COMPOSITION.
2620         (BUILD_CHAR_GLYPH_STRINGS): Don't handle composition here.
2621         (BUILD_COMPOSITE_GLYPH_STRING): New macro.
2622         (BUILD_GLYPH_STRINGS): For composition, call
2623         BUILD_COMPOSITE_GLYPH_STRING.
2624         (x_new_font): Initialize f->output_data.x->baseline_offset, not
2625         f->output_data.x->font_baseline.
2627 1999-12-14  Gerd Moellmann  <gerd@gnu.org>
2629         * xterm.c (show_mouse_face): Don't use updated_area, use
2630         TEXT_AREA.
2632 1999-12-12  Richard M. Stallman  <rms@gnu.org>
2634         * minibuf.c (Fall_completions): Doc fix.
2636 1999-12-12  Richard M. Stallman  <rms@gnu.org>
2638         * macros.c (Fstart_kbd_macro): Handle case where last-kbd-macro
2639         has been changed by the Lisp code.
2641 1999-12-12  Gerd Moellmann  <gerd@gnu.org>
2643         * xfns.c: Indentation fixes.
2645 1999-12-10  Stefan Monnier  <monnier@cs.yale.edu>
2647         * xterm.c (x_initialize): Only setup xaw3d_* if they've been declared.
2649 1999-12-10  Gerd Moellmann  <gerd@gnu.org>
2651         * frame.h (FRAME_FOREGROUND_PIXEL, FRAME_BACKGROUND_PIXEL)
2652         [!MSDOS && !WINDOWSNT && !macintosh]: Moved here from xterm.h.
2654         * xterm.h (FRAME_FOREGROUND_PIXEL, FRAME_BACKGROUND_PIXEL): Moved
2655         to frame.h.
2657 1999-12-09  Stefan Monnier  <monnier@cs.yale.edu>
2659         * keyboard.c (Qratio): New symbol.
2660         (scroll_bar_parts): Add `Qratio' to it.
2661         (syms_of_keyboard): Init `Qratio'.
2662         * termhooks.h (scroll_bar_part): Add `scroll_bar_move_ratio'.
2663         * xterm.c (#includes): Allow compilation with only Xaw.
2664         (xaw3d_arrow_scroll, xaw3d_pick_top): New variables.
2665         (xt_action_hook): Replace XAW3D by XAW.
2666         (xaw3d_jump_callback): Renamed to xaw_jump_callback.
2667         (xaw_jump_callback): Renamed from xaw3d_jump_callback.
2668         Determine epsilon dynamically and don't try to be too clever.
2669         (xaw3d_scroll_callback): Renamed to xaw_scroll_callback.
2670         (xaw_scroll_callback): Renamed from xaw3d_scroll_callback.
2671         Handle both Xaw3d with arrow-scrollbars and with Xaw-style
2672         scrollbar (using `ratio').
2673         (x_create_toolkit_scroll_bar): Try to detect which style of Xaw3d
2674         scrollbar we have so as to set it up more optimally and to fix
2675         xaw3d_arrow_scroll and xaw3d_pick_top.
2676         (x_set_toolkit_scroll_bar_thumb): Try to maintain 2 spare pixels at the
2677         bottom of the Xaw3d scrollbar, to work around its tendency to refuse
2678         shrinking the thumb.  Also make sure that `XawScrollbarSetThumb'
2679         is not ignored, using a major gross hack.
2680         (x_initialize): Init default values for xaw3d_arrow_scroll and
2681         xaw3d_pick_top.
2683 1999-12-09  Dave Love  <fx@gnu.org>
2685         * frame.h: (PIX_TYPE) [! HAVE_X_WINDOWS]: Define PIX_TYPE.
2687 1999-12-08  Gerd Moellmann  <gerd@gnu.org>
2689         * eval.c: Remove conditional compilation on `standalone'.
2690         (call_debugger): When entering the debugger while redisplaying,
2691         reset redisplaying_p, and go back to the top-level if the debugger
2692         returns.
2694 1999-12-07  Gerd Moellmann  <gerd@gnu.org>
2696         * xfaces.c (x_set_menu_resources_from_menu_face): Make sure
2697         basic faces are realized before trying to use face `menu'.
2699         * window.c (delete_window): Block input for the time window
2700         matrices are being changed.
2702 1999-12-07  Dave Love  <fx@gnu.org>
2704         * lread.c (Fintern_soft): Fix newlines in doc string.
2706 1999-12-07  Alexandre Oliva  <oliva@dcc.unicamp.br>
2708         * unexelf.c: Include <syms.h>, not <sym.h> on IRIX.  Removed
2709         duplicate definition of ElfW.
2710         (find_section): Copied from unexsgi.c.
2711         (unexec): Use find_section.  Adjust whitespace.  Initialize
2712         new_data2_offset based on old_data, not sbss (this fixes a bug on
2713         IRIX6).  Change #ifdef __mips to __sgi, since it's IRIX-specific.
2714         Adjust test for presence of .mdebug section to the new return
2715         value of find_section.
2716         
2717 1999-12-07  Gerd Moellmann  <gerd@gnu.org>
2719         * unexelf.c: Merge changes from 20.5.
2720         (unexec): Handle .lit4 and .lit8 unconditionally.
2722         * m/iris4d.h (UNEXEC) [USG5_4]: Use unexelf.o instead of
2723         unexsgi.o again.
2724         
2725         * m/iris5d.h (UNEXEC): Likewise.
2727 1999-12-06  Stefan Monnier  <monnier@cs.yale.edu>
2729         * editfns.c (Fdelete_and_extract_region): New function.
2730         (syms_of_editfns): Register it.
2731         * insdel.c (del_range): Update del_range_1 call.
2732         (del_range_1, del_range_2): Add a ret_string argument to
2733         request that the deleted text be returned.
2734         (del_range_byte, del_range_both): Update del_range_2 call.
2735         * lisp.h (del_range_1, del_range_2): Change prototype
2736         * casefiddle.c (casify_region): Update del_range_1 call.
2737         * coding.c (code_convert_region): Update del_range_2 call.
2738         * fileio.c (Finsert_file_contents): Update del_range_2 call.
2740 1999-12-06  Gerd Moellmann  <gerd@gnu.org>
2742         * xfaces.c (set_lface_from_font_name): Fix incomplete merge.
2744 1999-12-04  Hrvoje Niksic  <hniksic@iskon.hr>
2746         * lread.c (Fintern_soft): Accept a symbol argument.
2747         
2748 1999-12-06  Eli Zaretskii  <eliz@is.elta.co.il>
2750         * s/msdos.h (SYSTEM_PURESIZE_EXTRA): Reduce to 40000.
2752         * insdel.c (adjust_markers_for_delete): Fix last change.
2754 1999-12-06  Eli Zaretskii  <eliz@is.elta.co.il>
2756         Changes for automatic remapping of X colors on terminal frames:
2758         * xfaces.c (XColor) [!HAVE_X_WINDOWS]: Provide a typedef for non-X
2759         frames.
2760         (Vface_tty_color_alist): Remove.
2761         (tty_defined_color): New function.
2762         (defined_color): Rewrite to support any type of frame.
2763         (tty_color_name): New function.
2764         (face_color_supported_p, Fface_color_gray_p,
2765         Fface_color_supported_p): Support non-X frames.
2766         (load_color): Enclose the color name in quotes, in the log
2767         messages.  Remove DOS-specific version of load_color.
2768         (realize_tty_face): Take the supported colors from
2769         tty-color-alist.  Support translation of X colors to the closest
2770         tty color, for both MSDOS and tty frames.
2771         [MSDOS]: Don't invert face colors if they were taken from the
2772         frame colors.
2773         (Fface_register_tty_color, Fface_clear_tty_colors): Remove.
2775         * frame.h (struct x_output) [!MSDOS, !WINDOWSNT, !HAVE_X_WINDOWS]:
2776         Define a mostly empty surrogate.
2777         (tty_display): Declare.
2779         * frame.c (make_terminal_frame) [!macintosh]: Don't use
2780         tty_display.
2781         (Fframe_parameters): Don't invert colors of non-FRAME_WINDOW_P
2782         frames when the frame's param_alist includes 'reverse.
2783         (tty_display): Define.
2784         (make_terminal_frame) [!MSDOS]: Assign &tty_display to the
2785         output_data.x member.
2786         (Fframe_parameters): Return foreground and background color names
2787         on tty frames as well, in addition to MSDOS frames.
2789         * msdos.h (DisplayWidth, DisplayHeight): Changes for Lisp_Object
2790         selected_frame.
2791         (struct x_output): Remove unused members; document who uses each
2792         member.
2793         (FRAME_PARAM_FACES, FRAME_N_PARAM_FACES, FRAME_DEFAULT_PARAM_FACE,
2794         FRAME_MODE_LINE_PARAM_FACE, FRAME_COMPUTED_FACES,
2795         FRAME_N_COMPUTED_FACES, FRAME_SIZE_COMPUTED_FACES,
2796         FRAME_DEFAULT_FACE, FRAME_MODE_LINE_FACE, unload_color): Remove
2797         unused macro definintions.
2799         * msdos.c (IT_set_frame_parameters): Don't call
2800         recompute_basic_faces, the next redisplay will, anyway.
2801         (x_current_display): Remove unused variable.
2802         Many functions: changes for Lisp_object selected_frame.
2803         (IT_set_face): If the tty_reverse_p flag is set for the face,
2804         reverse the foreground and background colors.
2805         (Fmsdos_remember_default_colors): New function.
2806         (syms_of_msdos): Defsubr it.
2807         (IT_set_frame_parameters): Use initial_screen_colors[] when
2808         creating a new frame.  If the frame parameters include 'reverse,
2809         swap the foreground and background colors.
2810         (internal_terminal_init): Initialize initial_screen_colors to -1.
2811         (syms_of_msdos): Add DEFVAR_BOOL for x-stretch-cursor, to shut up
2812         cus-start.el.
2814         * Makefile.in (lisp, shortlisp): Add lisp/term/tty-colors.elc.
2816         * xfns.c (x_defined_color): Rename from defined_color.  All
2817         callers changed.
2818         (Fxw_color_defined_p): Renamed from Fx_color_defined_p;
2819         all callers changed.
2820         (Fxw_color_values): Renamed from Fx_color_values; all callers
2821         changed.
2822         (Fxw_display_color_p): Renamed from Fx_display_color_p; all
2823         callers changed.
2824         (x_window_to_frame, x_any_window_to_frame,
2825         x_non_menubar_window_to_frame, x_menubar_window_to_frame,
2826         x_top_window_to_frame): Use !FRAME_X_P instead of
2827         f->output_data.nothing.
2828         * xterm.h (x_defined_color): Rename from defined_color.
2830         * w32fns.c (x_window_to_frame): Use FRAME_W32_P instead of
2831         f->output_data.nothing.
2832         (Fxw_color_defined_p): Renamed from Fx_color_defined_p;
2833         all callers changed.
2834         (Fxw_color_values): Renamed from Fx_color_values; all callers
2835         changed.
2836         (Fxw_display_color_p): Renamed from Fx_display_color_p; all
2837         callers changed.
2839         * dispextern.h (tty_color_name): Add prototype.
2841         * xmenu.c (menubar_id_to_frame): Use FRAME_WINDOW_P instead of
2842         f->output_data.nothing.
2843         * w32menu.c (menubar_id_to_frame): Likewise.
2844         * w32term.h (w32_output): Declare.
2846         * dosfns.c (Qmsdos_color_translate): Remove.
2847         (msdos_stdcolor_name): Now returns a Lisp_Object.
2848         * dosfns.h (Qmsdos_color_translate): Remove.
2850         * s/msdos.h (INTERNAL_TERMINAL): Add entries for color support.
2852 1999-12-06  Kenichi Handa  <handa@etl.go.jp>
2854         * fileio.c (decide_coding_unwind): Renamed from
2855         set_auto_coding_unwind.
2856         (Finsert_file_contents): Make single unwind protect to call both
2857         Vset_auto_coding_function and Ffind_operation_coding_system.
2859         * insdel.c (adjust_markers_for_delete): Make it non-static.
2861 1999-12-04  Stefan Monnier  <monnier@cs.yale.edu>
2863         * regex.c (regex_compile): Recognize *?, +? and ?? as non-greedy
2864         operators and handle them properly.
2865         * regex.h (RE_ALL_GREEDY): New option.
2866         (RE_UNMATCHED_RIGHT_PAREN_ORD): Moved to the end where alphabetic
2867         sorting would put it.
2868         (RE_SYNTAX_AWK, RE_SYNTAX_GREP, RE_SYNTAX_EGREP)
2869         (_RE_SYNTAX_POSIX_COMMON): Use the new option to keep old behavior.
2871 1999-12-04  Dave Love  <d.love@dl.ac.uk>
2873         * m/arm.h: New file.
2875 1999-12-03  Dave Love  <fx@gnu.org>
2877         * editfns.c (Fmessage_or_box): Use use_dialog_box.
2879 1999-12-02  Gerd Moellmann  <gerd@gnu.org>
2881         * s/usg5-4.h (LIBS_SYSTEM): Add -lgen because that's needed
2882         for building with Motif.
2884         * m/iris4d.h (UNEXEC) [USG5_4]: Use unexsgi.o instead of
2885         unexelf.o.
2886         
2887         * m/iris5d.h (UNEXEC): Use unexsgi.o instead of unexelf.o.
2889 1999-12-01  Dave Love  <fx@gnu.org>
2891         * emacs.c (main): Set LANG=C iff AX3_2 defined.
2893 1999-11-28  Gerd Moellmann  <gerd@gnu.org>
2895         * systime.h (EMACS_TIME_CMP, EMACS_TIME_EQ, EMACS_TIME_NE)
2896         (EMACS_TIME_GT, EMACS_TIME_GE, EMACS_TIME_LT,EMACS_TIME_LE): New
2897         macros.
2899         * config.in (HAVE_SETITIMER, HAVE_UALARM): New.
2901 1999-11-28  eliz  <eliz@dlpx1>
2903         * emacs.c (synchronize_locale): Avoid compiler warnings about
2904         pointer type mismatch.
2906 1999-11-28  Gerd Moellmann  <gerd@gnu.org>
2908         * window.c (Fwindow_end): Don't call temp_set_pt_both with
2909         out of range position.
2911         * xterm.c (XTread_socket) <ClientMessage, Xatom_Scrollbar>: 
2912         Switch off busy-cursor by setting inhibit_busy_cursor to 2.
2914 1999-11-28  Eli Zaretskii  <eliz@is.elta.co.il>
2916         * charset.c (Fmake_char_internal): Print the charset ID when
2917         signalling an error.
2919         * emacs.c (synchronize_locale): Avoid compiler warnings about
2920         pointer type mismatch.
2922 1999-11-26  Richard M. Stallman  <rms@gnu.org>
2924         * editfns.c (Fdelete_field): Make it noninteractive.  Return nil.
2926 1999-11-26  Gerd Moellmann  <gerd@gnu.org>
2928         * puresize.h (BASE_PURESIZE): Increase to 550000.
2930         * textprop.c (set_text_properties): New function.  Like
2931         Fset_text_properties, but with additional parameter
2932         SIGNAL_AFTER_CHANGE_P.  If that is nil, don't signal after
2933         changes.
2934         (Fset_text_properties): Use it.
2936         * insdel.c (insert_1_both): Call set_text_properties with last
2937         parameter nil so that no after changes will be signaled.
2939         * lisp.h: Add prototype for set_text_properties.
2941         * xfaces.c (set_lface_from_font_name): Fix previous change.
2942         (recompute_basic_faces): Change assert to abort.
2944 1999-11-25  Dave Love  <fx@gnu.org>
2946         * fns.c (Fnthcdr, Fnreverse): Inline cdr.
2947         (Fmember, Fdelq, Fdelete): Inline car.
2948         (Fy_or_n_p): Doc fix.
2950 1999-11-25  Gerd Moellmann  <gerd@gnu.org>
2952         * xfaces.c (set_lface_from_font_name): New parameter may_fail_p.
2953         Callers changed.  If specified font name is bogus, and may_fail_p
2954         is not set, try to use a reasonable default.
2956         * dispnew.c (direct_output_for_insert): Set glyph row's
2957         displays_text_p flag.  Correct window's window_end_vpos if
2958         necessary.
2960 1999-11-25  Paul Eggert  <eggert@twinsun.com>
2962         * emacs.c (fixup_locale): Don't bother to record initial locale.
2963         (synchronize_locale): If the desired locale is nil,
2964         treat it as if it were the empty string,
2965         so that we set the locale from the environment.
2967 1999-11-25  Kenichi Handa  <handa@etl.go.jp>
2969         * fileio.c (Finsert_file_contents): Set buffer-file-coding-system
2970         of the current buffer via Fset.
2972 1999-11-24  Dave Love  <fx@gnu.org>
2974         * xfns.c: Don't duplicate Qdisplay definition done elsewhere.
2976         * xfaces.c: Don't duplicate Qmode_line definition done elsewhere.
2978         * xfns.c: Don't duplicate Qdisplay definition done elsewhere.
2980 1999-11-24  Gerd Moellmann  <gerd@gnu.org>
2982         * lisp.h (enum pvec_type): Put PVEC_FLAG in #if 0.
2984         * emacs.c (PVEC_FLAG): New variable.
2986 1999-11-23  Gerd Moellmann  <gerd@gnu.org>
2988         * unexaix.c (unexec): Use unsigned instead of uintptr_t because
2989         that fails on IBM PowerPC, AIX 4.2.
2990         
2991 1999-11-22  Eli Zaretskii  <eliz@is.elta.co.il>
2993         * buffer.c (syms_of_buffer): Add %z, %Z, %m and %& to the doc
2994         string of mode-line-format.  Remove the obsolete %t.
2996 1999-11-22  Gerd Moellmann  <gerd@gnu.org>
2998         * dispnew.c (direct_output_for_insert): Increment glyph positions
2999         for glyphs from buffer text only.
3001         * emacs.c (gdb_valbits, gdb_gctypebits, gdb_emacs_intbits)
3002         (gdb_data_seg_bits): New variables.
3003         
3004         * lisp.h (enum gdb_lisp_params): Put in #if 0, since it doesn't
3005         work on systems not allowing enumerators > INT_MAX, and it
3006         won't work if EMACS_INT is long long.
3008 1999-11-22  Paul Eggert  <eggert@twinsun.com>
3010         Port to SunOS 4.1.x again.  Help out with Alpha port.
3011         Rename messages-locale to system-messages-locale,
3012         and likewise for time-locale.
3013         
3014         * callproc.c (strerror): Remove decl.
3015         * fileio.c (strerror): Likewise.
3016         * process.c (strerror): Likewise.
3017         * emacs.c (strerror): Likewise.
3018         (Vsystem_messages_locale): Renamed from Vmessages_locale.
3019         All uses changed.
3020         (Vprevious_system_messages_locale): Likewise, from
3021         Vprevious_messages_locale.
3022         (Vsystem_time_locale): Likewise, from Vtime_locale.
3023         (Vprevious_system_time_locale): Likewise, from Vprevious_time_locale.
3024         (ABORT_RETURN_TYPE): New macro.
3025         (abort): Return type is now ABORT_RETURN_TYPE.
3026         (main): Always invoke init_signals, even if POSIX_SIGNALS is not
3027         defined.
3028         (syms_of_emacs): messages-locale -> system-messages-locale,
3029         previous-messages-locale -> previous-system-messages-locale,
3030         time-locale -> system-time-locale,
3031         previous-time-locale -> previous-system-time-locale.
3033         * gmalloc.c (PP, __ptr_t): Assume ANSI C if STDC_HEADERS is defined.
3034         (const): Do not define; that's config.h's job.
3035         (<limits.h>): Include if HAVE_LIMITS_H is defined.
3036         (CHAR_BIT): Move test for definedness outside of limits.h condition.
3037         (<stddef.h>): Include if STDC_HEADERS is defined.
3038         (FREE_RETURN_TYPE): New macro.
3039         (free): Return type is now FREE_RETURN_TYPE.
3041         * lisp.h (synchronize_system_time_locale): Renamed from
3042         synchronize_time_locale.  All uses changed.
3043         (synchronize_system_messages_locale): Likewise, from
3044         synchronize_messages_locale.
3046         * m/alpha.h (malloc, realloc, calloc): Remove decls;
3047         stdlib.h now does this.
3049         * process.c (sys_siglist): Remove.
3051         * s/sunos4-0.h (ABORT_RETURN_TYPE, FREE_RETURN_TYPE):
3052         New macros.
3054         * syntax.c (scan_sexps_forward): Use abort, not assert.
3056         * sysdep.c (my_sys_siglist): New var.
3057         (sys_siglist): New macro.  Remove old initialized vars of same name.
3058         (init_signals): Initialize sys_siglist.
3060         * xfns.c (abort): Remove decl; stdlib.h now does this.
3062 1999-11-18  Dave Love  <fx@gnu.org>
3064         * filelock.c: Add forward declaration for get_boot_time_1.
3066         * dispnew.c (Finternal_show_cursor_p): Fix doc string.
3068 1999-11-18  Gerd Moellmann  <gerd@gnu.org>
3070         * buffer.h (struct buffer_text): Add comment about moving
3071         buffer text if REL_ALLOC is defined.
3073 1999-11-18  Kenichi Handa  <handa@etl.go.jp>
3075         * lisp.h (KEY_DESCRIPTION_SIZE): New macro.
3077         * keyboard.c (echo_char): Use KEY_DESCRIPTION_SIZE to check free
3078         memory for push_key_description.
3080         * keymap.c (Fsingle_key_description): Use KEY_DESCRIPTION_SIZE to
3081         allocate memory for push_key_description.
3082         (describe_buffer_bindings): Likewise.
3084 1999-11-17  Gerd Moellmann  <gerd@gnu.org>
3086         * xfns.c (Fx_show_busy_cursor): Doc-fix.
3087         (Fx_hide_busy_cursor): Ditto.
3089 1999-11-17  Marco Walther <walther@siemens-pyramid.com>
3091         * unexsni.c (unexec): Handle .rel.dyn section.
3093 1999-11-16  Dave Love  <fx@gnu.org>
3095         * doc.c (Fdocumentation): Remove gcpro here too.
3097 1999-11-16  Gerd Moellmann  <gerd@gnu.org>
3099         * keyboard.c (command_loop_1): Remove no_redisplay.
3101 1999-11-16  Richard M. Stallman  <rms@gnu.org>
3103         * print.c (PRINTPREPARE): Don't call setup_echo_area_for_printing
3104         in noninteractive.
3106 1999-11-14  Gerd Moellmann  <gerd@gnu.org>
3108         * xdisp.c (ensure_echo_area_buffers): New.
3109         (with_echo_area_buffer): Use it.
3110         (setup_echo_area_for_printing): Ditto.
3112         * buffer.c (indicate-empty-lines): Doc-fix.
3114 1999-11-12  Gerd Moellmann  <gerd@gnu.org>
3116         * term.c (term_init): If "op" isn't available, don't support color
3117         because we can't switch back to the default foreground and
3118         background.
3120         * doc.c (Fdocumentation_property): Remove GCPRO because
3121         Fsubstitute_command_keys gcpro's the string.
3123 1999-11-12  Kenichi Handa  <handa@etl.go.jp>
3125         * editfns.c (Ftranslate_region): Check the buffer multibyteness.
3127 1999-11-11  Gerd Moellmann  <gerd@gnu.org>
3129         * print.c, keymap.c, indent.c, insdel.c, keyboard.c, intervals.c,
3130         lread.c, textprop.c, undo.c, emacs.c, lisp.h, intervals.h,
3131         buffer.h, config.in, Makefile.in: Remove USE_TEXT_PROPERTIES.
3133 1999-11-10  Gerd Moellmann  <gerd@gnu.org>
3135         * xfns.c (QCuser_data): Removed.
3136         (syms_of_xfns): Initialization of QCuser_data removed.
3137         (parse_image_spec): Don't handle :user-data specially.  Allow
3138         unknown keys.  Remove parameter ALLOW_OTHER_KEYS.
3139         (xbm_image_p, xbm_load, xpm_image_p, pbm_image_p, png_image_p)
3140         (tiff_image_p, jpeg_image_p, gif_image_p, gs_image_p): Call
3141         parse_image_spec accordingly.
3143 1999-11-09  Richard M. Stallman  <rms@gnu.org>
3145         * cmds.c (Fbeginning_of_line): Doc fix.
3146         (Fend_of_line): Doc fix.
3148         * editfns.c (Fline_beginning_position): If N is not 1,
3149         pass t to Fconstrain_to_field for ESCAPE-FROM-EDGE.
3151         * syntax.c (Fforward_word): Handle fields even if would have hit
3152         an edge of the buffer.  Return nil if affected by fields.
3154 1999-11-09  Richard M. Stallman  <rms@gnu.org>
3156         * editfns.c (preceding_pos): Function deleted.
3157         (text_property_stickiness): Decrement POS directly.
3158         Fix a confusion that used PT instead of POS.
3160         * editfns.c (find_field): Properly handle the case
3161         of a field boundary where `field' inherits from neither side.
3163         * editfns.c (Ffield_beginning, Ffield_end): Doc fixes.
3164         (Ferase_field, Ffield_string, Ffield_string_no_properties): Doc fixes.
3166 1999-11-08  Gerd Moellmann  <gerd@gnu.org>
3168         * bytecode.c (Fbyte_code) <BinsertN, Bcall>: Do the
3169         BEFORE_POTENTIAL_GC before DISCARD.
3171 1999-11-07  Gerd Moellmann  <gerd@gnu.org>
3173         * alloc.c (Fgarbage_collect): Call unmark_byte_stack.
3175         * lisp.h: Add prototype for unmark_byte_stack.
3177         * bytecode.c (mark_byte_stack): Use XMARKBIT and XMARK.
3178         (unmark_byte_stack): Renamed from relocate_byte_pcs.  Use
3179         XUNMARK.
3181         * xdisp.c (resize_mini_window): Fix computation of needed
3182         mini-window height.
3184         * alloc.c, buffer.c, editfns.c, xdisp.c: Remove conditional
3185         compilation on USE_TEXT_PROPERTIES.
3187         * Fbyte_code: Use block statements in cases and declare v1 and v2
3188         locally there.  Rearrange case statements so that those most
3189         frequently executed come first.  Avoid goto's in frequently
3190         executed cases.
3192 1999-11-05  Gerd Moellmann  <gerd@gnu.org>
3194         * bytecode.c (Fbyte_code): Use BEFORE_POTENTIAL_GC and
3195         AFTER_POTENTIAL_GC around internal_catch.
3197         * alloc.c (Fgarbage_collect): Call mark_byte_stack and
3198         relocate_byte_pcs.
3199         (init_alloc_once, init_alloc): Set byte_stack_list to null.
3201         * eval.c (struct catchtag): Add member byte_stack.
3202         (internal_catch, Fcondition_case, internal_condition_case)
3203         (internal_condition_case_1): Save value of byte_stack_list in
3204         catchtag.
3205         (unwind_to_catch): Restore byte_stack_list from catchtag.
3207         * lisp.h: Add prototypes for new functions in bytecode.c.
3208         Add extern declaration for byte_stack_list.
3210         * bytecode.c (struct byte_stack): New.
3211         (byte_stack_list, mark_byte_stack, relocate_byte_pcs): New
3212         (BEFORE_POTENTIAL_GC, AFTER_POTENTIAL_GC): New.
3213         (FETCH, PUSH, POP, DISCARD, TOP, MAYBE_GC): Rewritten.
3214         (HANDLE_RELOCATION): Removed.
3215         (Fbyte_code): Use byte_stack structures.
3217         * filelock.c (Ffile_locked_p): Make FILENAME a required argument.
3219         * buffer.c (syms_of_buffer): Extend documentation of
3220         mode-line-format.
3222 1999-11-04  Gerd Moellmann  <gerd@gnu.org>
3224         * editfns.c (Fdelete_field): Renamed from Ferase_field.
3226         * minibuf.c (do_completion, Fminibuffer_complete_word): Use
3227         Ferase_field instead of Fdelete_field.
3229 1999-11-03  Gerd Moellmann  <gerd@gnu.org>
3231         * dispnew.c (Finternal_show_cursor): Change it to set the
3232         cursor on/off, not toggle its state.
3233         (Finternal_show_cursor_p): New.
3234         (syms_of_display): Defsubr Sinternal_show_cursor_p.
3236 1999-11-03  Dave Love  <fx@gnu.org>
3238         * charset.c (split_non_ascii_string): Define return value.
3240 1999-11-03  Gerd Moellmann  <gerd@gnu.org>
3242         * minibuf.c (string_to_object): New.
3243         (read_minibuf_noninteractive): New.
3244         (read_minibuf): Call read_minibuf_noninteractive if
3245         noninteractive.  Use string_to_object.
3247         * doc.c (Fdocumentation_property): Fix bug bypassing UNGCPRO.
3249 1999-11-02  Dave Love  <fx@gnu.org>
3251         * gnu-linux.h: Use SIGCHLD, not SIGCLD (not in glibc 2.1).
3253         * process.c: Define _GNU_SOURCE before config.h to get strsignal
3254         declared with glibc2.
3256 1999-11-02  Gerd Moellmann  <gerd@gnu.org>
3258         * lisp.h (QUIT): Give it statement form.
3260 1999-11-02  Dave Love  <fx@gnu.org>
3262         * eval.c (init_eval): Conditionalize declaration of gcpro_level.
3264 1999-11-02  Gerd Moellmann  <gerd@gnu.org>
3266         * xfns.c (QCuser_data): New.
3267         (syms_of_xfns): Initialize QCuser_data.
3268         (parse_image_spec): Ignore :user-data DATA properties.
3270         * xdisp.c (display_line): Set charpos of first glyph in blank
3271         lines not corresponding to any text to -1, even if no glyphs are
3272         filled in in that line.
3274 1999-11-01  Gerd Moellmann  <gerd@gnu.org>
3276         * xfns.c (png_load) [PNG_READ_sRGB_SUPPORTED]: Put code using 
3277         png_get_sRGB in #ifdef.
3279         * dispnew.c (Finternal_show_cursor): Renamed from Fshow_cursor.
3280         (syms_of_display): Use the new name.
3282         * textprop.c (verify_interval_modification): Signal text-read-only
3283         instead of calling error.
3285         * data.c (Qtext_read_only): New built-in error.
3286         (syms_of_data): Initialize it.
3288         * lisp.h: Add extern declaration for Qtext_read_only.
3290         * syntax.c: Remove whitespace after open or in front of closing
3291         parentheses.
3293 1999-11-01  Richard M. Stallman  <rms@gnu.org>
3295         * Makefile.in (w16select.o, sound.o): Don't depend on lisp.h.
3297 1999-10-31  Gerd Moellmann  <gerd@gnu.org>
3299         * xdisp.c (resize_mini_window): Compute needed height differently.
3301         * fns.c (Flength): Unroll loop over lists.
3303         * xdisp.c (append_space): Return non-zero if space was appended.
3304         (display_line): Set charpos of first glyph to -1 only if that
3305         glyph is the space added by append_glyph.
3307 1999-10-30  Richard M. Stallman  <rms@gnu.org>
3309         * print.c (strout): Consider `noninteractive' and use stdout
3310         only when PRINTCHARFUN is t.
3312         * lisp.h (struct gcpro) [DEBUG_GCPRO]: New field `level'.
3313         (gcpro_level): Declare it extern.
3314         [DEBUG_GCPRO] (GCPRO1, GCPRO2, GCPRO3, GCPRO4, GCPRO5):
3315         Alternate definitions that set `level' and increment `gcpro_level'.
3316         [DEBUG_GCPRO] (UNGCPRO): Alternate definition that checks gcpro_level.
3318         * eval.c [DEBUG_GCPRO] (gcpro_level): New variable.
3319         (init_eval) [DEBUG_GCPRO]: Initialize it.
3320         (unwind_to_catch) [DEBUG_GCPRO]: Set gcpro_level
3321         from remaining gcprolist.
3323 1999-10-29  Kenichi Handa  <handa@etl.go.jp>
3325         * coding.c (code_convert_region): Update `dst' correctly.
3327 1999-10-28  Gerd Moellmann  <gerd@gnu.org>
3329         * fns.c (Fmemq, Fassq, Frassq, assq_no_quit, Fassoc)
3330         (Frassoc): Rewritten.
3332 1999-10-27  Noah Friedman  <friedman@splode.com>
3334         * s/gnu-linux.h [HAVE_DEV_PTMX]: Redefine FIRST_PTY_LETTER to 'z'.
3335         Define PTY_NAME_SPRINTF.
3336         Redefine PTY_TTY_NAME_SPRINTF.
3337         * config.in: Add undef for HAVE_DEV_PTMX.
3339 1999-10-26  Richard M. Stallman  <rms@gnu.org>
3341         * regex.c (POP_FAILURE_POINT): Use failure_id.integer
3342         as arg to DEBUG_POP and DEBUG_PRINT.
3344 1999-10-27  Richard M. Stallman  <rms@gnu.org>
3346         * data.c (Qad_activate_internal): Renamed from Qad_activate.
3347         (Ffset): Call Qad_activate_internal.
3348         (syms_of_data): Initialize Qad_activate_internal.
3350 1999-10-27  Gerd Moellmann  <gerd@gnu.org>
3352         * xdisp.c (echo_area_display) [HAVE_X_WINDOWS]: Do nothing if
3353         Vterminal_frame is selected and Vwindow_system is non-nil.
3355 1999-10-26  Gerd Moellmann  <gerd@gnu.org>
3357         * xdisp.c (echo_area_display): Put previous change in #if 0.
3359         * emacs.c (standard_args): Add `file' as synonym for `visit',
3360         `execute' as synonym for `eval'.
3361         (main): Add new options to usage message.
3363 1999-10-25  Gerd Moellmann  <gerd@gnu.org>
3365         * data.c (Qhash_table): New.
3366         (Ftype_of): Return it for hash tables.
3367         (syms_of_data): Initialize Qhash_table.
3369 1999-10-25  Richard M. Stallman  <rms@gnu.org>
3371         * regex.c (POP_FAILURE_POINT): Extract failure_id as an integer.
3373 1999-10-24  Ken Raeburn  <raeburn@gnu.org>
3375         * alloc.c: Undef HIDE_LISP_IMPLEMENTATION before including
3376         lisp.h.
3378         * buffer.c (Fbuffer_list, Fget_file_buffer, get_truename_buffer,
3379         Fbuffer_local_variables, Fother_buffer, record_buffer,
3380         set_buffer_internal_1, Fbury_buffer, Fkill_all_local_variables,
3381         swap_out_buffer_local_variables, overlays_at, overlays_in,
3382         overlay_touches_p, overlay_strings, recenter_overlay_lists,
3383         fix_overlays_in_range, fix_overlays_before, Foverlay_get,
3384         Foverlay_put, report_overlay_modification, evaporate_overlays):
3385         Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member
3386         references.
3387         * data.c (Fcar, Fcar_safe, Fcdr, Fcdr_safe, Fsetcar, Fsetcdr,
3388         swap_in_symval_forwarding, set_internal, default_value,
3389         Fset_default, Fmake_variable_buffer_local, Fmake_local_variable,
3390         Fmake_variable_frame_local, Flocal_variable_p,
3391         Flocal_variable_if_set_p, arithcompare, Fzerop, cons_to_long,
3392         Fnumber_to_string, float_arith_driver, Fadd1, Fsub1): Likewise.
3393         * dispnew.c (Fframe_or_buffer_changed_p): Likewise.
3394         * emacs.c (main): Likewise.
3395         * fontset.c (fs_load_font, fs_register_fontset,
3396         CACHED_FONTSET_NAME, CACHED_FONTSET_REGEX, Fquery_fontset,
3397         Fnew_fontset, Fset_fontset_font): Likewise.
3398         * frame.c (do_switch_frame, next_frame, prev_frame,
3399         other_visible_frames, Fdelete_frame, Fvisible_frame_list):
3400         Likewise.
3401         * keyboard.c (read_char, help_char_p, event_to_kboard,
3402         kbd_buffer_get_event, timer_start_idle, timer_check,
3403         make_lispy_event, apply_modifiers, reorder_modifiers,
3404         Fevent_convert_list, lucid_event_type_list_p, menu_bar_items,
3405         menu_bar_one_keymap, menu_item_eval_property_1, parse_menu_item,
3406         tool_bar_items, read_char_x_menu_prompt, read_key_sequence,
3407         Fcommand_execute, Fexecute_extended_command): Likewise.
3408         * minibuf.c (read_minibuf, get_minibuffer, Ftry_completion,
3409         Fall_completions): Likewise.
3410         * window.c (Fset_window_margins): Likewise.
3412         * callint.c (quotify_args): Don't explicitly use struct
3413         Lisp_Cons, use Lisp_Object and XCAR/XCDR instead.
3415         * s/netbsd.h (HAVE_GETLOADAVG): Define as 1.
3416         (UNEXEC, START_FILES, LIB_STANDARD, LIB_GCC): Define ELF versions,
3417         if __ELF__ is defined.
3419 1999-10-24  Gerd Moellmann  <gerd@gnu.org>
3421         * window.c (Fnext_window): Add a QUIT in the loop.
3423 1999-10-23  Gerd Moellmann  <gerd@gnu.org>
3425         * Makefile.in (bootstrap, bootstrap-emacs, bootstrap-temacs): 
3426         New targets.
3428 1999-10-22  Dave Love  <fx@gnu.org>
3430         * emacs.c (main): Enable profiling conditional on __linux also.
3432 1999-10-20  Gerd Moellmann  <gerd@gnu.org>
3434         * xrdb.c (x_load_resources): Set default resources for resource
3435         classes instead of for the specific Emacs.
3437 1999-10-19  Gerd Moellmann  <gerd@gnu.org>
3439         * s/freebsd.h (HAVE_GETLOADAVG): Define as 1 because config.h
3440         defines it that way.
3441         
3442         * xdisp.c (echo_area_display) [HAVE_X_WINDOWS]: Do nothing
3443         if selected_frame is equal to Vterminal_frame.
3445 1999-10-19  Paul Eggert  <eggert@twinsun.com>
3446         
3447         Add support for large files, 64-bit Solaris, system locale codings.
3448         
3449         * Makefile.in (emacs): Set the LC_ALL environment variable to "C"
3450         when dumping, so that the dumped Emacs doesn't have stray locale info.
3451         (dired.o): Depend on systime.h.
3452         (editfns.o): Depend on coding.h.
3454         * alloc.c, buffer.c, callproc.c, ccl.c, charset.c, coding.c, data.c,
3455         dispnew.c, editfns.c, emacs.c, filelock.c, floatfns.c, hftctl.c,
3456         keyboard.c, process.c, sysdep.c, unexelf.c, unexhp9k800.c,
3457         unexsunos4.c, vmsfns.c, vmsgmalloc.c, w32faces.c, w32menu.c, w32term.c,
3458         w32xfns.c, xfaces.c, xfns.c, xmenu.c, xterm.c:
3459         Include <config.h> before any system include files.
3461         * alloc.c, buffer.c, ccl.c, data.c, editfns.c, emacs.c, eval.c,
3462         fileio.c, filelock.c, frame.c, insdel.c, keymap.c, lread.c,
3463         m/alpha.h, print.c, search.c, sysdep.c, xdisp.c, xfaces.c, xfns.c,
3464         xmenu.c, xterm.c:
3465         Do not include <stdlib.h>, as <config.h> does this now.
3467         * callproc.c (Fcall_process):
3468         Synchronize messages locale before invoking strerror.
3469         Decode resulting string with locale-coding-system.
3471         * coding.c (Vlocale_coding_system): New var.
3472         (syms_of_coding): Adjust to above change.
3473         (emacs_strerror): New function.
3475         * coding.h (emacs_strerror, Vlocale_coding_system): New decls.
3476         
3477         * config.in (HAVE_STDIO_EXT_H, HAVE_TM_GMTOFF, HAVE___FPENDING,
3478         HAVE_FTELLO, HAVE_GETLOADAVG, HAVE_MBLEN, HAVE_MBRLEN,
3479         HAVE_STRSIGNAL): New macros.
3480         (BITS_PER_LONG): Default to 64 if _LP64 is defined.
3481         <stdlib.h>: Include if HAVE_STDLIB_H is defined and NOT_C_CODE isn't.
3483         * dired.c: Include "systime.h".
3484         (Ffile_attributes): Do not cast s.st_size to int; this loses
3485         information if int is 32 bits but st_size and EMACS_INT are larger.
3486         Treat large device numbers like large inode numbers.
3488         * dispnew.c (PENDING_OUTPUT_COUNT): Use __fpending if available.
3490         * editfns.c: Include coding.h.
3491         (emacs_strftime): Remove decl.
3492         (emacs_strftimeu): New decl.
3493         (emacs_memftimeu): Renamed from emacs_memftime; new arg UT.
3494         Use emacs_strftimeu instead of emacs_strftime.
3495         (Fformat_time_string): Convert format string using
3496         Vlocale_coding_system, and convert result back.  Synchronize time
3497         locale before invoking lower level function.  Invoke
3498         emacs_memftimeu, passing ut, instead of emacs_memftime.
3499         
3500         * emacs.c: Include <locale.h> if HAVE_SETLOCALE is defined.
3501         (Vmessages_locale, Vprevious_messages_locale, Vtime_locale,
3502         Vprevious_time_locale): New variables.
3503         (main): Invoke setlocale early, so that initial error messages are
3504         localized properly.  But skip locale-setting if LC_ALL is "C".
3505         Fix up locale when it's safe to do so.
3506         (fixup_locale): Moved here from xterm.c.
3507         (synchronize_locale, synchronize_time_locale,
3508         synchronize_messages_locale): New functions.
3509         (syms_of_emacs): Accommodate above changes.
3511         * fileio.c (report_file_error): Convert strerror output according
3512         to Vlocale_coding_system.
3513         (Finsert_file_contents): Check for arithmetic overflow in
3514         computations that depend on file size.  Report IO errors
3515         with emacs_strerror, not strerror.
3517         * fns.c (Fgethash): Declare dflt parameter.
3519         * gmalloc.c: Do not define const to nothing if HAVE_CONFIG_H
3520         is defined; that's config.h's job.
3522         * lisp.h (EMACS_INT, BITS_PER_EMACS_INT, EMACS_UINT): If _LP64,
3523         default these values to long, BITS_PER_LONG, and unsigned long.
3524         (VALBITS, MARKBIT, XINT): Do not assume 32-bit EMACS_INT.
3525         (PNTR_COMPARISON_TYPE): Default to EMACS_UINT, not to unsigned int.
3526         (code_convert_string_norecord, fixup_locale,
3527         synchronize_messages_locale, synchronize_time_locale,
3528         emacs_open, emacs_close, emacs_read, emacs_write): New decls.
3529         All Emacs callers of open, close, read, write changed to use
3530         emacs_open, emacs_close, emacs_read, emacs_write.
3532         * lread.c (file_offset, file_tell): New macros.  All uses of ftell
3533         changed to file_tell.
3534         (saved_doc_string_position, prev_saved_doc_string_position): Now
3535         of type file_offset.
3536         (init_lread): Do not fix locale here; fixup_locale now does this.
3538         * m/amdahl.h, s/usg5-4.h:
3539         (NSIG): Remove.
3540         (NSIG_MINIMUM): New macro.
3542         * m/cydra5.h, m/dpx2.h, m/mips.h, m/pfa50.h, m/sps7.h, m/stride.h,
3543         m/ustation.h, s/gnu-linux.h, s/hpux.h, s/iris3-5.h, s/iris3-6.h,
3544         s/umips.h, s/usg5-4.h:
3545         (SIGIO): Do not undef.
3546         (BROKEN_SIGIO): New macro.
3548         * m/ustation.h:
3549         (SIGTSTP): Do not undef.
3550         (BROKEN_SIGTSTP): New macro.
3552         * s/gnu-linux.h:
3553         (SIGPOLL, SIGURG): Do not undef.
3554         (BROKEN_SIGPOLL, BROKEN_SIGURG): New macros.
3556         * s/ptx4.h:
3557         (SIGINFO): Do not undef.
3558         (BROKEN_SIGINFO): New macros.
3559         
3560         * m/delta.h, s/ptx.h, s/template.h: Doc fix.
3562         * mktime.c, strftime.c: Update to glibc 2.1.2 version, with
3563         some Emacs-related changes merged.
3565         * print.c (float_to_string): Prepend "-" to representation of a
3566         NaN if the NaN is negative.
3568         * process.c (sys_siglist): Omit if HAVE_STRSIGNAL.
3569         (wait_reading_process_input): Use emacs_strerror, not strerror.
3570         
3571         * process.c (status_message, sigchld_handler): Synchronize locale,
3572         then use strsignal istead of sys_siglist.
3573         * w32proc.c (sys_wait): Likewise.
3574         
3575         * s/aix3-1.h, s/bsd4-1.h, s/dgux.h, s/gnu-linux.h, s/hiuxmpp.h,
3576         s/hpux.h, s/iris3-5.h, s/iris3-6.h, s/irix3-3.h, s/osf1.h, s/rtu.h,
3577         s/sunos4-1.h, s/unipl5-0.h, s/unipl5-2.h, s/usg5-0.h, s/usg5-2-2.h,
3578         s/usg5-2.h, s/usg5-3.h, s/xenix.h:
3579         (open, close, read, write, INTERRUPTIBLE_OPEN,
3580         INTERRUPTIBLE_CLOSE, INTERRUPTIBLE_IO): Remove.
3582         * s/sol2-5.h (_LARGEFILE_SOURCE, _FILE_OFFSET_BITS): New macros.
3584         * sysdep.c (sys_read, sys_write, read, write, sys_close, close,
3585         sys_open, open): Remove.
3586         (emacs_open, emacs_close, emacs_read, emacs_write): Always define;
3587         the old INTERRUPTIBLE_OPEN, INTERRUPTIBLE_CLOSE, and INTERRUPTIBLE_IO
3588         macros are no longer used.
3589         (emacs_open): Renamed from sys_open.  Merge BSD4_1 version.
3590         (emacs_close): Renamed from sys_close.
3591         (emacs_read): Renamed from sys_read.
3592         (emacs_write): Renamed from sys_write.
3593         (sys_siglist): Do not declare if HAVE_STRSIGNAL.
3594         (dup2): Do not print error on failure; the real dup2 doesn't.
3595         (strsignal): New function, defined if !HAVE_STRSIGNAL.
3597         * syssignal.h (SIGINFO): Undef if defined and if BROKEN_SIGINFO
3598         is defined.
3599         (SIGIO, SIGPOLL, SIGTSTP, SIGURG): Likewise.
3600         (NSIG): If less than NSIG_MINIMUM, define to NSIG_MINIMUM.
3601         (strsignal): Declare if !HAVE_STRSIGNAL.
3603         * unexelf.c (ElfBitsW, ELFSIZE, ElfExpandBitsW): New macros.
3604         (ElfW): Define in terms of ElfExpandBitsW.
3606         * w32proc.c (sys_siglist): Remove decl.
3608         * xdisp.c (decode_mode_spec): 3rd arg is int, not char, to comply
3609         with ANSI C.
3610         (display_string): Declare face_string_pos arg.
3612         * xfns.c (Fx_show_tip): Declare timeout param.
3614         * xterm.c: No need to include locale.h.
3615         (x_alloc_lighter_color, x_setup_relief_color):
3616         Pass arg as double, not float, for compatibility with ANSI C.
3617         (fixup_locale): Move to emacs.c.
3618         (x_term_init): Do not setlocale or fixup locale; the main program
3619         does this now.
3621 1999-10-18  Dave Love  <fx@gnu.org>
3623         * doc.c (Fdocumentation_property): Gcpro `tem'.
3625 1999-10-18  Kenichi Handa  <handa@etl.go.jp>
3627         * lread.c (Fload): Calculate bytes of filename correctly.
3628         (openp): Likewise.
3630 1999-10-18  Keisuke Nishida  <kxn30@po.cwru.edu>
3632         * print.c (print_preprocess): In case print-circle is nil,
3633         add OBJ to Vprint_number_table only when OBJ is a symbol.
3635 1999-10-18  Kenichi Handa  <handa@etl.go.jp>
3637         * coding.c (code_convert_string): Add record_unwind_protect to
3638         assure setting inhibit_pre_post_conversion back to zero.  Take
3639         care of the multibyteness of the working buffer.
3641         * coding.c (inhibit_pre_post_conversion): New variable.
3642         (setup_coding_system): If inhibit_pre_post_conversion is nonzero,
3643         ignore post-read-conversion and pre-write-conversion property of
3644         the coding system.
3645         (code_convert_region_unwind): New function.
3646         (code_convert_region): Set inhibit_pre_post_conversion to 1 while
3647         running pre-write-conversion and post-read-conversion.
3648         (code_convert_string): Likewise.
3650 1999-10-17  Miles Bader  <miles@gnu.org>
3652         * editfns.c: Doc fix.
3654 1999-10-17  Miles Bader  <miles@gnu.org>
3656         * editfns.c (Fconstrain_to_field): Make sure we don't violate the
3657         argument preconditions of find_before_next_newline in the case
3658         where both ONLY_IN_LINE and ESCAPE_FROM_EDGE are set and OLD_POS
3659         was indeed at the edge.
3661 1999-10-17  Miles Bader  <miles@gnu.org>
3663         * minibuf.c (Fminibuffer_complete_and_exit): Supply value for new
3664         ESCAPE_FROM_EDGE parameter to Ffield_beginning.
3666         * editfns.c (text_property_eq, text_property_stickiness): Don't
3667         use initializers for auto variables of type Lisp_Object.
3668         (find_field): Likewise.  Use braces around nested ifs.
3669         (Fline_end_position): Store the raw eol in a variable, so that the
3670         final expression doesn't look so ugly.
3671         (Fconstrain_to_field): Doc fix.
3672         (preceding_pos): Renamed from `preceeding_pos'.
3673         (text_property_stickiness, find_field): Call preceding_pos,
3674         not preceeding_pos.
3676 1999-10-17  Miles Bader  <miles@gnu.org>
3678         * editfns.c (Ffield_string_no_properties): New function.
3679         (text_property_stickiness, preceeding_pos): New functions.
3680         (Ffield_string): Remove PROPS parameter.
3681         (find_field): Add MERGE_AT_BOUNDARY parameter.
3682         Rewrite to use stickiness of `field' property to resolve
3683         ambiguous cases.
3684         (Ffield_beginning, Ffield_end): Add ESCAPE_FROM_EDGE parameter.
3685         (Fconstrain_to_field): Likewise.
3686         (syms_of_editfns): Init Sfield_string_no_properties.
3687         (Ffield_string, Ferase_field, Ffield_end): 
3688         Supply new MERGE_AT_BOUNDARY argument to find_field.
3689         (Fline_beginning_position, Fline_end_position): Supply new
3690         ESCAPE_FROM_EDGE parameter to Fconstrain_to_field.
3691         Pass a value of Qt for the ONLY_IN_LINE argument to
3692         Fconstrain_to_field (only matters if N != 1).
3693         * syntax.c (Fforward_word): Supply new ESCAPE_FROM_EDGE parameter
3694         to Fconstrain_to_field.
3696         * minibuf.c (Fminibuffer_complete_word): Use
3697         Ffield_beginning to find the prompt end.
3699 1999-10-17  Miles Bader  <miles@gnu.org>
3701         * editfns.c (Fconstrain_to_field): Add get/set-current-point
3702         behavior when NEW_POS is nil.
3703         (find_field): Use XSETFASTINT instead of make_number.
3704         * minibuf.c (Fminibuffer_complete_and_exit): Test for an empty
3705         input string by seeing where the field begins, instead of
3706         looking at text-properties.
3708 1999-10-17  Miles Bader  <miles@gnu.org>
3710         * editfns.c (Qfield): New variable.
3711         (find_field, Ferase_field, Ffield_string,
3712         Ffield_beginning, Ffield_end, Fconstrain_to_field): New functions.
3713         (Fline_beginning_position, Fline_end_position): Constrain to any field.
3714         (make_buffer_string_both): Remove minibuffer-prompt hack.
3715         (syms_of_editfns): Initialize Qfield, and subr entries for
3716         field functions above.
3717         * minibuf.c (read_minibuf): Don't save minibuffer prompt length on
3718         minibuf_save_list.
3719         Don't initialize minibuffer prompt length.
3720         Wrap prompt text-properties around the entire prompt.
3721         Add 'prompt text-property to prompt.
3722         Get final value with Ffield_string instead of make_buffer_string.
3723         (read_minibuf_unwind): Don't restore minibuffer prompt length from
3724         minibuf_save_list.
3725         (do_completion): Get minibuffer input with Ffield_string
3726         instead of Fbuffer_string.
3727         Erase minibuffer input with Ferase_field instead of erase_buffer.
3728         (Fminibuffer_complete_and_exit): Likewise.
3729         Test whether buffer is empty by looking for the 'prompt text
3730         property at the end.
3731         Set prompt length by looking for the end of the prompt text property,
3732         and save prompt length for later use (since there is no longer a
3733         buffer variable to get it from).
3734         (Fminibuffer_prompt_width, Fminibuffer_prompt_end): Functions removed.
3735         (syms_of_minibuf): Remove initializations of
3736         Sminibuffer_prompt_width and Sminibuffer_prompt_end.
3737         * buffer.h (struct buffer): Remove prompt_end_charpos field.
3738         * buffer.c (Fget_buffer_create, Fmake_indirect_buffer, Fkill_buffer): 
3739         Don't initialize prompt_end_charpos field.
3740         * syntax.c (Fforward_word): Likewise.
3741         Constrain to any field.
3743 1999-10-16  Gerd Moellmann  <gerd@gnu.org>
3745         * window.c (enum save_restore_action): New.
3746         (save_restore_orig_size): Change parameter list.  Add
3747         functionality to check for valid orig_top and orig_height members
3748         in a window tree.
3749         (grow_mini_window): Call save_restore_orig_size with new parameter
3750         list.
3751         (shrink_mini_window): Restore old window sizes only if old
3752         size information is valid in all windows in a window tree.
3753         
3754 1999-10-15  Gerd Moellmann  <gerd@gnu.org>
3756         * xmenu.c (set_frame_menubar): Don't call
3757         x_set_menu_resources_from_menu_face here.
3758         (update_frame_menubar): Call x_set_menu_resources_from_menu_face.
3760         * xfns.c (gif_load): Fix handling of interlaced GIFs.
3762 1999-10-14  Dave Love  <fx@gnu.org>
3764         * xdisp.c (handle_fontified_prop): GCPRO `pos'.
3766 1999-10-14  Gerd Moellmann  <gerd@gnu.org>
3768         * process.c (Fopen_network_stream): Don't loop if gethostbyname
3769         fails and h_errno is TRY_AGAIN.
3771 1999-10-13  Dave Love  <fx@gnu.org>
3773         * filelock.c (lock_file): Move gcpro of `fn'.
3775 1999-10-10  Gerd Moellmann  <gerd@gnu.org>
3777         * keyboard.c (auto-save-interval): Fix documentation.
3778         
3779 1999-10-09  Richard M. Stallman  <rms@gnu.org>
3781         * print.c (print): When removing objects from Vprint_number_table,
3782         only scan the newly added objects.
3783         (print_preprocess): If OBJ is a gensym, and print-continuous-numbering,
3784         unconditionally force it to stay in the table.
3786 1999-10-09  Gerd Moellmann  <gerd@gnu.org>
3788         * xfns.c (prepare_image_for_display): Don't try to load image if
3789         loading it failed before.
3790         (lookup_image, prepare_image_for_display): Remember if loading the
3791         image failed.
3792         (xpm_load): Add missing UNBLOCK_INPUT.
3794         * dispextern.h (struct image): New member load_failed_p.
3796 1999-10-08  Stefan Monnier  <monnier@cs.yale.edu>
3798         * fileio.c (Fmake_temp_name): Add a reference to `make-temp-file'
3799         in the docstring.
3801 1999-10-08  Gerd Moellmann  <gerd@gnu.org>
3803         * xterm.c (XTread_socket) <ClientMessage, WM_TAKE_FOCUS>:
3804         Don't call XSetInputFocus because that can generate additional
3805         FocusIn events.
3806         
3807 1999-10-07  Jeffrey C Honig <jch@bsdi.com>
3809         * bsdos4.h [HAVE_LIBNCURSES]: Define TERMINFO and LIBS_TERMCAP.
3811 1999-10-07  Richard M. Stallman  <rms@gnu.org>
3813         * process.c (wait_reading_process_input): When trying to suck
3814         input from one process, for accept-process-output,
3815         exit that loop if we get EAGAIN or EWOULDBLOCK.
3817 1999-10-07  Gerd Moellmann  <gerd@gnu.org>
3819         * xfaces.c (Qbitmap_spec_p): Replaces Qpixmap_spec_p.
3820         (Fbitmap_spec_p): Replaces Fpixmap_spec_p.
3821         (load_pixmap): Use Fbitmap_spec_p and Qbitmap_spec_p instead of
3822         Fpixmap_spec_p and Qpixmap_spec_p.
3823         (load_face_colors, check_lface_attrs,
3824         merge_face_vector_with_property,
3825         Finternal_set_lisp_face_attribute): Use Fbitmap_spec_p.
3826         (syms_of_xfaces): Initialize Qbitmap_spec_p, defsubr
3827         Fbitmap_spec_p.
3829 1999-10-07  Gerd Moellmann  <gerd@gnu.org>
3831         * xdisp.c (display_menu_bar): Use MENU_FACE_ID instead of
3832         MODE_LINE_FACE_ID.
3834         * xfaces.c (toplevel) [USE_MOTIF]: Include some Motif headers.
3835         (struct x_resources) [USE_X_TOOLKIT]: New.
3836         (xm_apply_resources, xm_set_menu_resources_from_menu_face)
3837         [USE_MOTIF]: New.
3838         (xl_apply_resources, xl_set_menu_resources_from_menu_face)
3839         [USE_LUCID]: New.
3840         (x_set_menu_resources_from_menu_face) [USE_X_TOOLKIT]: New.
3841         (Qmenu): New.
3842         (syms_of_xfaces): Initialize Qmenu.
3843         (realize_basic_faces): Realize face `menu'.
3844         (resolve_face_name): New.
3845         (lface_from_face_name): Use it.
3846         (Finternal_set_lisp_face_attribute): Ditto.
3847         (Fpixmap_spec_p): Rewritten.  Extend doc string.
3849         * xmenu.c (set_frame_menubar, xmenu_show): Call
3850         x_set_menu_resources_from_menu_face.
3852         * dispextern.h (enum face_id): Add MENU_FACE_ID.
3853         (toplevel): Include X11/Intrinsic.h.
3855 1999-10-03  Ken'ichi Handa  <handa@gnu.org>
3857         * coding.c (DECODE_CHARACTER_ASCII): Decode ASCII invocated to GR
3858         correctly.
3860 1999-09-30  Kenichi Handa  <handa@etl.go.jp>
3862         * category.c (modify_lower_category_set): Set default value of
3863         TABLE correctly.
3865         * minibuf.c (Fminibuffer_complete_word): Calculate string byte
3866         size correctly.
3868 1999-09-29  Gerd Moellmann  <gerd@gnu.org>
3870         * editfns.c (Fpropertize): Renamed from Fproperties.
3872 1999-09-29  Gerd Moellmann  <gerd@gnu.org>
3874         * xdisp.c (resize_mini_window): Do nothing if frame is an X
3875         frame that hasn't been initialized yet.
3877 1999-09-28  Richard M. Stallman  <rms@gnu.org>
3879         * keymap.c (Fsingle_key_description): Make tem big enough.
3880         (describe_buffer_bindings): Make buf big enough.
3882 1999-09-27  Richard M. Stallman  <rms@gnu.org>
3884         * intervals.c (get_local_map): Use indirect_function,
3885         not Findirect_function.
3887 1999-09-27  Dave Love  <fx@gnu.org>
3889         * cm.h: Remove unneeded declaration of ospeed.
3891 1999-09-26  Gerd Moellmann  <gerd@gnu.org>
3893         * lisp.h (toplevel): Add prototype for
3894         next_single_char_property_change.
3896         * textprop.c (next_single_char_property_change): New.
3898         * xdisp.c (display_prop_end, invisible_text_between_p): Use
3899         next_single_char_property_change.
3901 1999-09-25  Gerd Moellmann  <gerd@gnu.org>
3903         * editfns.c (Fproperties): New.
3904         (syms_of_editfns): Defsubr it.
3906         * xfns.c (lookup_image): Set image's timestamp because it's
3907         used when we look it up.
3909 1999-09-23  Gerd Moellmann  <gerd@gnu.org>
3911         * window.c (enlarge_window): Add window parameter instead of using
3912         selected_window.
3913         (Fdisplay_buffer): Call it with window parameter instead of
3914         setting selected_window.
3915         (Fenlarge_window, Fshrink_window): Ditto.
3916         (shrink_mini_window): If there is no recorded height and position
3917         info, resize mini-window to height 1.
3919         * xfns.c (image_error): Use add_to_log.
3921         * xfaces.c (load_pixmap): Call add_to_log without frame parameter.
3922         (load_face_font_or_fontset, load_color,
3923         merge_face_vector_with_property): Ditto.
3925         * dispextern.h: Add prototype for add_to_log.
3927         * xfaces.c (add_to_log): Move to xdisp.c.
3929         * xdisp.c (add_to_log): Moved from xfaces.c.  Remove frame
3930         parameter.
3932 1999-09-23  Gerd Moellmann  <gerd@gnu.org>
3934         * xterm.c (XTread_socket) <MotionNotify>: Change #ifdef
3935         USE_X_TOOLKIT to #ifdef USE_TOOLKIT_SCROLL_BARS.
3937         * xdisp.c (resize_mini_window): Use grow_mini_window and
3938         shrink_mini_window.
3940         * window.c (window_min_size): Add parameter ignore_fixed_p.
3941         (change_window_height): Call window_min_size with new parameter.
3942         (shrink_window_lowest_first, save_restore_orig_size,
3943         grow_mini_window, shrink_mini_window): New.
3944         (make_window, replace_window): Initialize orig_top and
3945         orig_height.
3946         (enlarge_window): Renamed from change_window_height.  Make it
3947         static.
3948         (Fdisplay_buffer, Fenlage_window, Fshrink_window): Call
3949         enlarge_window instead of change_window_height.
3951         * window.h (struct window): New members orig_top, orig_height.
3952         (toplevel): Add prototypes for grow_mini_window and
3953         shrink_mini_window.  Remove prototype for change_window_height.
3955 1999-09-21  Eli Zaretskii  <eliz@gnu.org>
3957         * frame.c (frame_name_fnn_p): Fix previous change.
3959 1999-09-20  Gerd Moellmann  <gerd@gnu.org>
3961         * minibuf.c (toplevel): Move include of stdio.h to other includes.
3963         * dispnew.c (direct_output_for_insert): Cast arguments to
3964         safe_bcopy to char *.
3966         * lread.c (readchar): Remove unused variables.
3967         (read_filtered_event, read1, Fmapatoms): Ditto.
3968         (toplevel): Include intervals.h.
3970         * eval.c (Fsignal): Remove unused variables.
3971         (Fcommandp, do_autoload): Ditto.
3973         * lisp.h: Add prototype for safe_bcopy, fatal.
3975         * editfns.c (init_editfns): Remove unused variables.
3976         (Fgoto_char, Fchar_after, Fformat): Ditto.
3977         (message_text, message_length): Put in #ifndef HAVE_MENUS.
3979         * data.c (find_symbol_value): Remove unused variables.
3980         (Faref, Fstring_to_number): Ditto.
3981         (toplevel): Include stdio.h.
3982         (Fnumber_to_string): Cast XINT to long for %ld.
3984         * casefiddle.c (casify_object): Remove unused variables.
3985         (casify_region): Ditto.
3987         * filelock.c (get_boot_time): Put local variable used in 
3988         conditinally compiled section in #ifdef.
3989         (toplevel): Include stdio.h.
3991         * keymap.c (Flookup_key, Faccessible_keymaps, describe_vector,
3992         keys_of_keymap, syms_of_keymap): Remove unused variables.
3994 1999-09-20  Gerd Moellmann  <gerd@gnu.org>
3996         * xdisp.c (sync_frame_with_window_matrix_rows): Disable frame rows
3997         whose corresponding window rows have been disabled in
3998         try_window_id.
4000 1999-09-20  Gerd Moellmann  <gerd@gnu.org>
4002         * xdisp.c (compute_window_start_on_continuation_line): Handle case
4003         that window start is out of range.
4004         (handle_display_prop, handle_single_display_prop): Replace
4005         marginal area specifications like `left-margin' with `(margin
4006         left-margin)'.
4007         (Qmargin): New.
4008         (syms_of_xdisp): Initialize Qmargin.
4010 1999-09-19  Gerd Moellmann  <gerd@gnu.org>
4012         * syntax.c (update_syntax_table, find_defun_start, back_comment,
4013         describe_syntax, skip_chars): Remove unused variables.
4014         (back_comment, forw_comment): Add braces to if-statement with
4015         if-else as dependent statement.
4017         * process.c (list_processes_1): Remove unused variables.
4018         (Fopen_network_stream, create_process): Add parentheses to
4019         conditional expressions.
4020         (create_process): Put declaration of sigchld in #if 0.
4021         (Fopen_network_stream): Removed unused variables.
4022         (Fopen_network_stream, wait_reading_process_input,
4023         wait_reading_process_input, send_process, send_process): Ditto.
4024         (toplevel): Add prototypes for set_waiting_for_input and
4025         keyboard_bit_set.
4027         * abbrev.c (Fexpand_abbrev): Remove unused variables.
4029         * textprop.c (Fset_text_properties): Remove unused variables.
4030         (text_property_list, verify_interval_modification,
4031         interval_has_all_properties): Ditto.
4033         * callproc.c (toplevel) [HAVE_UNISTD_H]: Include unistd.h.
4034         (Fcall_process): Remove unused variable.
4036         * keyboard.c (Frecursive_edit): Remove unused variable.
4037         (command_loop_1, safe_run_hooks, kbd_buffer_get_event,
4038         timer_check, make_lispy_event, menu_bar_items,
4039         menu_bar_one_keymap, menu_bar_item, parse_menu_item,
4040         parse_tool_bar_item, read_char_x_menu_prompt, read_key_sequence,
4041         kbd_buffer_get_event, make_lispy_event, read_char_x_menu_prompt,
4042         read_key_sequence): Ditto.  Fread_key_sequence,
4043         Fread_key_sequence_vector, Fsuspend_emacs): Ditto.
4044         (read_key_sequence) [GOBBLE_FIRST_EVENT]: Put local variables only
4045         used when GOBBLE_FIRST_EVENT is defined in #ifdef
4046         (Fexecute_extended_command): Cast XINT to long for %ld.
4047         (toplevel) [HAVE_UNISTD_H]: Include unistd.h.
4048         (toplevel): Include sys/types.h.
4050         * lisp.h (RETURN_UNGCPRO): Use do-while (0) idiom.
4051         (toplevel): Add prototypes for stuff_char, and
4052         code_convert_string_norecord.
4054 1999-09-19  Gerd Moellmann  <gerd@gnu.org>
4056         * buffer.h: Add prototype for r_re_alloc.
4058         * insdel.c (copy_text): Removed unused variables.
4059         (count_combining_after, count_combining_after, insert_1_both,
4060         insert_from_string_1, insert_from_buffer_1, check_markers): Ditto.
4061         (adjust_after_replace, replace_range): Add parentheses to logical
4062         expressions.  Remove unused variables.
4063         (CHECK_BYTE_COMBINING_FOR_INSERT): Add parentheses to logical
4064         expression.
4066         * alloc.c (Fgarbage_collect): Remove unused variable.
4067         (compact_strings): Add parentheses around assignments in
4068         conditional context.
4069         (toplevel): Put declaration of unused function clear_marks
4070         in #if 0 like its definition.
4072         * lisp.h: Add prototype for shrink_regexp_cache,
4073         sweep_weak_hash_tables.
4075 1999-09-19  Dave Love  <fx@gnu.org>
4077         * process.c (Fopen_network_stream): Use strerror, not gai_strerror.
4079         * doc.c (read_bytecode_char): Declare arg.
4081         * lisp.h: Declare Fcurrent_message, Fmake_temp_name,
4082         read_bytecode_char, Fx_hide_busy_cursor, getloadavg.
4084 1999-09-18  Richard Stallman  <rms@gnu.org>
4086         * xdisp.c (echo_area_display): Turn off code that returned
4087         without doing anything when using a terminal frame.
4089 1999-09-17  Richard M. Stallman  <rms@gnu.org>
4091         * unexelf.c (unexec): Don't get confused by a short section
4092         just before the bss section.
4094 1999-09-16  Gerd Moellmann  <gerd@gnu.org>
4096         * emacs.c (main): Remove unused variables.
4097         (sort_args, Fkill_emacs, Fkill_emacs): Ditto.
4099         * lisp.h: Add prototype for uninterrupt_malloc, memory_warnings,
4100         init_fileio_once, syms_of_sound, init_xfns, init_fns
4101         init_sound, check_message_stack.
4103         * emacs.c (toplevel) [HAVE_UNISTD_H]: Include unistd.h.
4105         * intervals.c (rotate_right, rotate_left): Add braces to avoid
4106         ambiguous else warning.
4107         (split_interval_left): Remove unused variables.
4108         (previous_interval, adjust_intervals_for_deletion,
4109         set_point_both, set_point_both, set_intervals_multibyte_1): Ditto.
4110         (icount, idepth, zero_length): Move into #if 0 section below
4111         original position where these are used.
4113         * buffer.h [REL_ALLOC]: Add prototypes for r_alloc and r_alloc_free.
4115         * buffer.c (Fkill_buffer): Remove unused variables.
4116         (Fkill_buffer, overlays_at, overlays_in, recenter_overlay_lists,
4117         fix_overlays_in_range, Fmove_overlay, Fprevious_overlay_change,
4118         init_buffer_once, (syms_of_buffer): Ditto.
4120         * xrdb.c (get_fallback): Remove unused variable.
4121         (x_load_resources): Ditto.  Put local variable used for Motif only
4122         in #ifdef USE_MOTIF.
4124 1999-09-16  Gerd Moellmann  <gerd@gnu.org>
4126         * minibuf.c (read_minibuf): Remove unused variables.
4127         (read_minibuf, Fread_buffer, scmp, Fcompleting_read): Ditto.
4128         (do_completion): Move assignment out of conditional context.
4129         (Fdisplay_completion_list): Add parentheses to conditional expression.
4131         * cm.c (toplevel) [HAVE_TERMCAP_H]: Include termcap.h.
4133         * lisp.h: Add prototype for no_switch_window.
4135         * window.c (Fset_window_buffer): Remove unused variables.
4136         (Fset_window_margins): Ditto.
4138         * xdisp.c (resize_mini_window): Temporarily set the selected
4139         window's or Vminibuf_scroll_window's height to "fixed" around
4140         the call the change_window_height.
4142         * window.c (window_fixed_size_p): Check window's height_fixed_p
4143         flag.
4145         * window.h (struct window): New member height_fixed_p.
4147         * dispnew.c (direct_output_forward_char): Don't use this method
4148         if showing a message or a message was just cleared because we
4149         might need to resize the mini-window.
4151 1999-09-16  Gerd Moellmann  <gerd@gnu.org>
4153         * frame.c (Fdelete_frame): Correct local variable pointing to
4154         selected frame after selecting new frame.
4156 1999-09-15  Richard Stallman  <rms@gnu.org>
4158         * puresize.h (BASE_PURESIZE): Increase to 525000.
4160         * filelock.c (Vtemporary_file_directory): New variable.
4161         (syms_of_filelock): Set up Lisp variable.
4163 1999-09-15  Gerd Moellmann  <gerd@gnu.org>
4165         * term.c (OUTPUT_IF, OUTPUT1_IF): Use do-while.
4166         (encode_terminal_code): Remove unused variables.
4167         (turn_off_face): Ditto.
4168         (toplevel): Include termcap.h if HAVE_TERMCAP_H.
4170         * dispnew.c (update_frame_line): If writing whole desired line,
4171         don't clear to end of line if already at the end.
4173 1999-09-15  Gerd Moellmann  <gerd@gnu.org>
4175         * xdisp.c (resize_mini_window): Don't report changed window
4176         height if it actually hasn't changed.
4178         * widget.c (set_frame_size, EmacsFrameSetCharSize):  Remove 
4179         unused variables.
4180         (mark_shell_size_user_specified): Put in #if 0 because not used.
4181         (create_frame_gcs): Put in #if 0 because currently unused.
4182         (first_frame_p): Ditto.
4184         * xmenu.c (single_menu_item, Fx_popup_menu, Fx_popup_menu,
4185         single_submenu, update_frame_menubar, set_frame_menubar,
4186         free_frame_menubar, xmenu_show, xdialog_show): Remove unused
4187         variables.
4189         * print.c (PRINTFULLP): Removed because it is no longer used and
4190         is misleading.
4191         (Ferror_message_string): Remove unused variables.
4192         (print_object): Cast argument of sprintf to long for `%ld'
4193         specifier.  Remove unused variable.
4195 1999-09-14  Gerd Moellmann  <gerd@gnu.org>
4197         * sound.c (Fplay_sound): Remove usused variables.
4198         (be2hs): Put in #if 0 because it's currently not used.
4200 1999-09-14  Ken Raeburn  <raeburn@gnu.org>
4202         * print.c (Ferror_message_string, print_error_message,
4203         print_object): Use XCAR, XCDR and XFLOAT_DATA instead of explicit
4204         member access.
4206 1999-09-14  Gerd Moellmann  <gerd@gnu.org>
4208         * frame.h (CHECK_FRAME, CHECK_LIVE_FRAME): Put code in do-while.
4210         * frame.c (Fnext_frame): Remove unused variable(s).
4211         (Fprevious_frame, Fmouse_pixel_position, frame_name_fnn_p): Ditto.
4212         (store_frame_param): Add parentheses to conditional expression.
4213         (Fmodify_frame_parameters): Remove unused variables.
4214         (Fmodify_frame_parameters, Fset_frame_size, Fset_frame_position):
4215         Ditto.
4217         * xfns.c (x_set_background_color): Remove unused variable(s).
4218         (x_set_border_pixel): Ditto.
4219         (x_set_menu_bar_lines): Put local variable used only for
4220         non-toolkit case in #ifdef/#endif.
4221         (x_figure_window_size): Remove unused variable(s).
4222         (x_figure_window_size, x_window, lookup_image, 
4223         xbm_read_bitmap_file_data, x_build_heuristic_mask, pbm_load,
4224         png_load, jpeg_load, gif_load, x_create_tip_frame,
4225         x_create_tip_frame, Fx_show_tip, x_set_border_pixel): Ditto.
4227         * xterm.c (x_scroll_bar_handle_click): Compile only if
4228         not USE_TOOLKIT_SCROLL_BARS.
4229         (x_scroll_bar_set_handle, x_scroll_bar_note_movement): Ditto.
4231         * dispextern.h: Add prototypes for gamma_correct and
4232         x_kill_gs_process.
4234         * xterm.c (x_produce_glyphs): Remove unused variable(s).
4235         (x_alloc_nearest_color_for_widget, note_tool_bar_highlight,
4236         x_set_toolkit_scroll_bar_thumb): Ditto.
4237         (x_scroll_bar_create): Move local variable to the
4238         conditionally compiled section of code where it is used.
4239         (x_scroll_bar_create): Remove unused variable(s).
4240         (x_scroll_bar_remove, XTread_socket): Ditto.
4241         (XTread_socket) <ConfigureNotify>: Move variables used for
4242         non-toolkit case into conditionally compiled section of code.
4244         * window.h (freeze_window_starts): Fix typo in prototype.
4246         * xdisp.c (display_echo_area_1, try_window_id): Remove unused
4247         variable(s).
4249         * lisp.h: Add prototype for debug_print.
4251         * dispextern.h (xassert) [GLYPH_DEBUG]: Change definition
4252         to use do-while.
4254         * fns.c (SXHASH_COMBINE): Add missing parentheses.
4255         (Fchar_table_range, Fset_char_table_default, mapcar1,
4256         Fyes_or_no_p, sweep_weak_hash_tables): Remove unused variable(s).
4258         * lisp.h: Add prototype for getloadavg.
4260 1999-09-14  Andreas Schwab  <schwab@gnu.org>
4262         * process.c (Fopen_network_stream): Avoid socket decriptor leak.
4264         * lisp.h: Declare close_file_unwind.
4266 1999-09-14  Richard Stallman  <rms@gnu.org>
4268         * filelock.c (get_boot_time): Make the temp name in the proper dir.
4270 1999-09-13  Gerd Moellmann  <gerd@gnu.org>
4272         * xdisp.c (redisplay_window): Make sure start_at_line_beg
4273         is always set correctly.
4275 1999-09-13  Dave Love  <fx@gnu.org>
4277         * xdisp.c (move_it_in_display_line_to): Make type consistent with
4278         declaration.
4280 1999-09-13  Gerd Moellmann  <gerd@delysid.gnu.org>
4282         * xdisp.c (QCfile): Move here from xfns.c.
4283         (syms_of_xdisp): Initialize it.
4284         (message2_nolog): Change for Lisp_Object selected_frame.
4285         (message3_nolog, message_with_string, message,
4286         setup_echo_area_for_printing, truncate_echo_area,
4287         prepare_menu_bars, redisplay_internal, Fdump_tool_bar_row): Ditto.
4289 1999-09-13  Dave Love  <fx@gnu.org>
4291         * xterm.c: Don't continue #define args for benefit of old cc.
4292         (xt_action_hook): Indent #error for benefit of K&R cc.
4294 1999-09-13  Gerd Moellmann  <gerd@delysid.gnu.org>
4296         * xterm.c (XTcursor_to): Change for Lisp_Object selected_frame.
4297         (x_clear_frame, XTring_bell, XTmouse_position, XTread_socket): Ditto.
4298         (XRINGBELL): Removed.
4300 1999-09-13  Dave Love  <fx@gnu.org>
4302         * xfns.c (x_put_x_image): Make type consistent with declaration.
4304         * fns.c (Fmake_hash_table): Fix string continuation.
4306 1999-09-13  Gerd Moellmann  <gerd@delysid.gnu.org>
4308         * xfns.c (QCfile): Moved to xdisp.c.
4309         (syms_of_xfns): Don't initialize QCfile.
4310         (check_x_frame): Change for Lisp_Object selected_frame.
4311         (check_x_display_info, x_get_resource_string): Ditto.
4313 1999-09-13  Gerd Moellmann  <gerd@gnu.org>
4315         * minibuf.c (choose_minibuf_frame): Don't try to set the
4316         mini-buffer window's buffer, if the buffer is invalid.
4318         * xfns.c (QCfile): Moved to xdisp.c.
4319         (syms_of_xfns): Don't initialize QCfile.
4321         * xdisp.c (QCfile): Move here from xfns.c.
4322         (syms_of_xdisp): Initialize it.
4324         * lisp.h (selected_frame): Add external declaration.
4326         * xselect.c (x_own_selection): Change for Lisp_Object selected_frame.
4327         (Fx_store_cut_buffer_internal): Ditto.
4328         (Fx_rotate_cut_buffers_internal): Ditto.
4330         * xfaces.c (frame_or_selected_frame): Change for Lisp_Object
4331         selected_frame.
4332         (Finternal_set_lisp_face_attribute): Ditto.
4333         (Finternal_get_lisp_face_attribute): Ditto.
4334         (Finternal_lisp_face_empty_p): Ditto.
4335         (Fdump_face): Ditto.
4337         * term.c (OUTPUT): Change for Lisp_Object selected_frame.
4338         (OUTPUT_IF, ring_bell, set_terminal_modes, reset_terminal_modes,
4339         set_terminal_window, set_scroll_region, reassert_line_highlight,
4340         change_line_highlight, cursor_to, raw_cursor_to, clear_to_end,
4341         clear_end_of_line, clear_end_of_line_raw, clear_end_of_line_raw,
4342         encode_terminal_code, write_glyphs, term_init): Ditto.
4344         * sysdep.c (reset_sys_modes): Change for Lisp_Object selected_frame.
4345         (kbd_input_ast, read_input_waiting): Ditto.
4347         * minibuf.c (choose_minibuf_frame): Change for Lisp_Object
4348         selected_frame.
4349         (read_minibuf): Ditto.
4351         * keyboard.c (command_loop_1): Change for Lisp_Object
4352         selected_frame.
4353         (cmd_error_internal, command_loop_1, read_char,
4354         kbd_buffer_get_event, read_avail_input,
4355         read_char_minibuf_menu_prompt, read_key_sequence, Fsuspend_emacs,
4356         interrupt_signal, quit_throw_to_read_char): Ditto.
4358         * fontset.c (Ffont_info): Change for Lisp_Object selected_frame.
4359         (Ffontset_info): DItto.
4361         * emacs.c (handle_USR1_signal): Change for Lisp_Object selected_frame.
4363         * dispnew.c (selected_frame): Make it a Lisp_Object.
4364         (adjust_frame_glyphs_initially): Change for Lisp_Object selected_frame.
4365         (direct_output_for_insert, direct_output_forward_char,
4366         init_display): Ditto.
4368         * data.c (swap_in_symval_forwarding): Change for Lisp_Object
4369         selected_frame.
4370         (set_internal): Ditto.
4372         * buffer.c (Fother_buffer): Change for Lisp_Object selected_frame.
4373         (record_buffer): Ditto.
4375         * frame.c (Fmake_terminal_frame): Use SELECTED_FRAME.
4376         (do_switch_frame): Change for Lisp_Object selected_frame.
4377         (Fselected_frame): Ditto.
4378         (Fframe_first_window): Use SELECTED_FRAME.
4379         (Fframe_root_window): Change for Lisp_Object selected_frame.
4380         (Fframe_selected_window, Fset_frame_selected_window, Fnext_frame,
4381         Fprevious_frame, other_visible_frames, Fdelete_frame,
4382         Fmouse_position, Fmouse_pixel_position, Fmake_frame_visible,
4383         Fmake_frame_invisible, Ficonify_frame, Fraise_frame, Flower_frame,
4384         Fframe_parameters, Fmodify_frame_parameters, Fframe_char_height,
4385         Fframe_char_width, Fframe_pixel_height, Fframe_pixel_width,
4386         Fset_frame_height, Fset_frame_width): Ditto.
4388 1999-09-13  Gerd Moellmann  <gerd@gnu.org>
4390         * xdisp.c (message2_nolog): Change for Lisp_Object selected_frame.
4391         (message3_nolog, message_with_string, message,
4392         setup_echo_area_for_printing, truncate_echo_area,
4393         prepare_menu_bars, redisplay_internal, Fdump_tool_bar_row): Ditto.
4395         * xmenu.c (Fx_popup_menu): Change for Lisp_Object selected_frame.
4396         (Fx_popup_dialog): Ditto.
4398         * xfns.c (check_x_frame): Change for Lisp_Object selected_frame.
4399         (check_x_display_info, x_get_resource_string): Ditto.
4401         * xterm.c (XTcursor_to): Change for Lisp_Object selected_frame.
4402         (x_clear_frame, XTring_bell, XTmouse_position, XTread_socket): Ditto.
4403         (XRINGBELL): Removed.
4405         * window.c (Fminibuffer_window): Change for Lisp_Object
4406         selected_frame.
4407         (Fwindow_at, Fprevious_window, window_loop, select_window_1,
4408         display_buffer_1, Fdisplay_buffer, temp_output_buffer_show,
4409         Fcurrent_window_configuration, init_window_once): Ditto.
4411         * frame.h (SELECTED_FRAME): New.
4413 1999-09-12  Ken Raeburn  <raeburn@gnu.org>
4415         * category.c (word_boundary_p): Use XCAR and XCDR.
4416         * ccl.c (ccl_driver, resolve_symbol_ccl_program,
4417         Fregister_code_conversion_map): Likewise.
4418         * coding.c (setup_coding_system, detect_coding_system,
4419         Ffind_operation_coding_system, Fset_coding_priority_internal):
4420         Likewise.
4421         * doc.c (get_doc_string, Fdocumentation,
4422         store_function_docstring): Likewise.
4423         * editfns.c (save_restriction_restore): Likewise.
4424         * eval.c (Fcond, Fmacroexpand, Fcondition_case, wants_debugger,
4425         skip_debugger, find_handler_clause, Fautoload, Fapply,
4426         run_hook_with_args, run_hook_list_with_args, Ffetch_bytecode):
4427         Likewise.
4428         * fileio.c (Ffind_file_name_handler, Finsert_file_contents,
4429         Fwrite_region, do_auto_save_unwind, Fdo_auto_save,
4430         Fread_file_name): Likewise.
4431         * filelock.c (unlock_all_files): Likewise.
4432         * insdel.c (Fcombine_after_change_execute): Likewise.
4433         * intervals.c (adjust_intervals_for_insertion): Likewise.
4434         * keymap.c (get_keymap_1, Fkeymap_parent, Fset_keymap_parent,
4435         Fset_keymap_parent, fix_submap_inheritance, access_keymap,
4436         store_in_keymap, Fcopy_keymap, define_as_prefix,
4437         current_minor_maps, Faccessible_keymaps,
4438         accessible_keymaps_char_table, Fkey_description,
4439         Fwhere_is_internal, where_is_internal_2, where_is_internal_1,
4440         describe_buffer_bindings, describe_map_tree, shadow_lookup,
4441         describe_map): Likewise.
4442         * lread.c (Fload, load_unwind, close_load_descs, read_vector,
4443         read_list, init_lread): Likewise.
4444         * search.c (Fmatch_data): Likewise.
4445         * sunfns.c (Fsun_menu_internal): Likewise.
4446         * syntax.c (describe_syntax): Likewise.
4447         * undo.c (record_insert, record_delete, Fundo_boundary,
4448         truncate_undo_list): Likewise.
4449         * vmsproc.c (child_sig): Likewise.
4451         * editfns.c (Fformat): Use XFLOAT_DATA.
4453 1999-09-12  Gerd Moellmann  <gerd@gnu.org>
4455         * keyboard.c (command_loop_1): Resize mini-window to the
4456         exact size of a message displayed, if any.
4458         * xdisp.c (resize_mini_window): Add parameter exact_p.  Resize
4459         to exact size if exact_p is non-zero.
4460         (display_echo_area_1): Call resize_mini_window with
4461         new parameter.
4462         (redisplay_internal): Ditto.
4463         (resize_echo_area_axactly): New.
4465         * minibuf.c (read_minibuf_unwind): Call resize_mini_window with
4466         new parameter.
4468         * dispextern.h: Change prototype of resize_mini_window.
4469         Add prototype for resize_echo_area_axactly.
4471         * xfaces.c (Fx_family_fonts): Replaces Fx_font_list.
4472         (syms_of_xfaces): Defsubr accordingly.
4474         * xdisp.c (hscroll_window_tree): Choose cursor row from
4475         desired or current matrix.
4476         (redisplay_internal): Hscroll before updating.
4478 1999-09-12  Gerd Moellmann  <gerd@gnu.org>
4480         * syntax.c (Fforward_word): Use prompt_end_charpos instead
4481         of minibuffer_prompt_length.
4483         * minibuf.c (read_minibuf): Use prompt_end_charpos instead
4484         of minibuffer_prompt_length.
4485         (read_minibuf_unwind): Ditto.
4486         (Fminibuffer_complete_and_exit): Ditto.
4487         (Fminibuffer_complete_word): Ditto.
4488         (Fminibuffer_prompt_end): Ditto.
4490         * editfns.c (Fbuffer_string): Use prompt_end_charpos instead
4491         of minibuffer_prompt_length.
4492         (Fline_beginning_position): Ditto.
4494         * buffer.c (Fget_buffer_create): Use prompt_end_charpos instead
4495         of minibuffer_prompt_length.
4496         (Fmake_indirect_buffer): Ditto.
4497         (Fkill_buffer): Ditto.
4498         (Ferase_buffer): Ditto.
4500         * buffer.h (prompt_end_charpos): Replaces
4501         minibuffer_prompt_length.
4503         * minibuf.c (read_minibuf): Return mini-buffer contents 
4504         without the prompt.
4506         * editfns.c (make_buffer_string_both): Take out the code
4507         to handle mini-buffer prompts.
4508         (Fbuffer_string): Handle the prompt here, instead.
4510         * xfaces.c (lface_from_face_name): Resolve face aliases.
4511         (Qmode_line): Replaces Qmodeline.
4512         (realize_basic_faces): Use Qmode_line.
4513         (syms_of_xfaces): Initialize Qmode_line.
4515 1999-09-12  Gerd Moellmann  <gerd@gnu.org>
4517         * minibuf.c (read_minibuf): Set minibuf_prompt_width to the
4518         current column after inserting prompt.
4519         (Fminibuffer_prompt_width): Return minibuf_prompt_width.
4521         * xfaces.c (Qframe_update_face_colors): New.
4522         (syms_of_xfaces): Initialize call.
4523         (update_face_from_frame_parameter): Call that function when
4524         the frame's background changes.
4526 1999-09-12  Richard Stallman  <rms@gnu.org>
4528         * insdel.c (del_range_1): Don't treat minibuffer prompt specially.
4530 1999-09-12  Ken Raeburn  <raeburn@gnu.org>
4532         * alloc.c (Fcons, pure_cons, Fpurecopy, Fgarbage_collect,
4533         mark_object, mark_buffer): Use XCAR and XCDR.
4534         * bytecode.c (Fbyte_code): Likewise.
4535         * callint.c (Fcall_interactively, Fprefix_numeric_value):
4536         Likewise.
4537         * callproc.c (Fcall_process, Fcall_process_region, child_setup,
4538         getenv_internal): Likewise.
4539         * dired.c (file_name_completion): Likewise.
4540         * fns.c (Fsafe_length, concat, Fcopy_alist, Fmember, Fmemq, Fassq,
4541         assq_no_quit, Fassoc, Frassq, Frassoc, Fdelq, Fdelete, Freverse,
4542         Fplist_get, Fplist_put, internal_equal, mapcar1): Likewise.
4543         * indent.c (Fcompute_motion): Likewise.
4544         * process.c (decode_status, Fprocess_status, Fprocess_exit_status,
4545         list_processes_1, Fstart_process, Fopen_network_stream,
4546         wait_reading_process_input, read_process_output_call,
4547         kill_buffer_processes, sigchld_handler, exec_sentinel_unwind,
4548         status_notify, wait_reading_process_input): Likewise.
4549         * textprop.c (PLIST_ELT_P, property_value, set_properties,
4550         extend_property_ranges): Likewise.
4551         * w32faces.c (Fpixmap_spec_p, merge_face_list): Likewise.
4552         * w32fns.c (x_window_to_frame, x_set_frame_parameters,
4553         x_report_frame_params, x_set_cursor_type, x_icon_type,
4554         x_figure_window_size, Fx_create_frame, w32_load_system_font,
4555         w32_load_font, enum_font_cb2, w32_list_bdf_fonts, w32_list_fonts,
4556         w32_list_synthesized_fonts, w32_find_ccl_program, Fx_list_fonts,
4557         Fw32_find_bdf_fonts, w32_find_bdf_fonts_in_dir,
4558         x_display_info_for_name, Fx_display_list): Likewise.
4559         * w32menu.c (menubar_id_to_frame, single_keymap_panes,
4560         Fx_popup_menu, Fx_popup_dialog): Likewise.
4561         * w32proc.c (Fw32_set_keyboard_layout): Likewise.
4562         * w32term.c (x_window_to_scroll_bar, w32_read_socket,
4563         w32_term_init, x_delete_display): Likewise.
4564         * xfns.c (x_window_to_frame, x_any_window_to_frame,
4565         x_non_menubar_window_to_frame, x_menubar_window_to_frame,
4566         x_top_window_to_frame, x_set_frame_parameters,
4567         x_report_frame_params, x_set_cursor_type, x_icon_type,
4568         x_figure_window_size, Fx_create_frame, x_display_info_for_name,
4569         Fx_display_list, x_create_tip_frame): Likewise.
4570         * xmenu.c (menubar_id_to_frame, single_keymap_panes,
4571         Fx_popup_menu, Fx_popup_dialog): Likewise.
4572         * xselect.c (x_own_selection, x_get_local_selection,
4573         x_handle_selection_request, x_handle_selection_clear,
4574         x_clear_frame_selections, wait_for_property_change_unwind,
4575         wait_for_property_change, x_handle_property_notify,
4576         copy_multiple_data, x_get_foreign_selection,
4577         lisp_data_to_selection_data, clean_local_selection_data,
4578         x_handle_selection_notify, Fx_get_selection_internal,
4579         x_disown_buffer_selections): Likewise.
4580         * xterm.c (x_window_to_scroll_bar, XTread_socket, x_list_fonts,
4581         x_load_font, x_find_ccl_program, x_term_init, x_delete_display):
4582         Likewise.
4584         * alloc.c (make_float, make_pure_float, Fpurecopy): Use
4585         XFLOAT_DATA.
4586         * bytecode.c (Fbyte_code): Likewise.
4587         * floatfns.c (extract_float, Fexpt, Fabs, rounding_driver,
4588         fmod_float): Likewise.
4590 1999-09-11  Richard Stallman  <rms@gnu.org>
4592         * xdisp.c (run_window_scroll_functions): If hook functions switch
4593         buffers, switch back after.
4595 1999-09-11  Ken Raeburn  <raeburn@gnu.org>
4597         * charset.h (GET_TRANSLATION_TABLE): Use XCDR.
4598         * frame.h (FOR_EACH_FRAME): Use XCAR and XCDR.
4599         (PIXEL_X_FROM_CANON_X, PIXEL_Y_FROM_CANON_Y): Use XFLOAT_DATA.
4600         * keyboard.h (EVENT_HEAD, EVENT_START, EVENT_END, POSN_WINDOW,
4601         POSN_BUFFER_POSN, POSN_WINDOW_POSN, POSN_TIMESTAMP): Use XCAR and
4602         XCDR.
4603         * syntax.h (SYNTAX, SYNTAX_WITH_FLAGS, SYNTAX_MATCH): Use XCAR and
4604         XCDR.
4606 1999-09-10  Richard Stallman  <rms@gnu.org>
4608         * xterm.c (XTread_socket): In XSetInputFocus, use RevertToParent,
4609         not RevertToPointerRoot.
4610         (XTset_vertical_scroll_bar) [!USE_TOOLKIT_SCROLL_BARS]:
4611         Fix the code to clear around the scroll bar.
4613 1999-09-10  Keisuke Nishida  <kxn30@po.cwru.edu>
4615         * print.c: Support print-circle and related features.
4616         (Vprint_gensym_alist): Removed.
4617         (Vprint_circle, Vprint_continuous_numbering, print_number_index
4618         Vprint_number_table): New variables.
4619         (PRINT_NUMBER_OBJECT, PRINT_NUMBER_STATUS): New macros.
4620         (PRINTPREPARE, PRINTFINISH): Don't set Vprint_gensym_alist.
4621         (print, print_preprocess, print_preprocess_string, print_object):
4622         New/modified functions with print-circle feature.  Use
4623         Vprint_number_table instead of Vprint_gensym_alist for print-gensym.
4624         (syms_of_print): Defined new Lisp variables `print-circle',
4625         `print-continuous-numbering', `print-number-table'.
4627 1999-09-10  Gerd Moellmann  <gerd@gnu.org>
4629         * xfns.c (x_build_heuristic_mask): Accept a list `(R G B)'
4630         as background color specification instead of an integer.
4631         (image-cache-eviction-delay): Replaces image-eviction-seconds.
4632         (Vimage_cache_eviction_delay): Replaces Vimage_eviction_seconds.
4633         (clear_image_cache, syms_of_xfns): Use it.
4634         (Qpostscript): Replaces Qghostscript.
4635         (gs_type): Use it.
4636         (gs_image_p): Ditto.
4637         (syms_of_xfns): Initialize Qpostscript.
4639 1999-09-10  Richard Stallman  <rms@gnu.org>
4641         * buffer.c (Ferase_buffer): Don't erase the minibuffer prompt.
4643 1999-09-09  Richard Stallman  <rms@gnu.org>
4645         * editfns.c (Fline_beginning_position): Handle minibuffer prompt here.
4647         * cmds.c (Fbeginning_of_line): Don't handle minibuffer prompt here.
4649 1999-09-09  Gerd Moellmann  <gerd@gnu.org>
4651         * fns.c (Fmakehash): Accept just one optional argument TEST.
4653         * xfns.c (QCindex): New.
4654         (syms_of_xfns): Initialize QCindex.
4655         (gif_load): Use it instead of `:image'.
4657 1999-09-09  Richard Stallman  <rms@gnu.org>
4659         * fileio.c (Fwrite_region): Finish renaming CONFIRM to MUSTBENEW.
4660         (Fwrite_region) [DOS_NT]: Handle `excl' here too.
4662 1999-09-08  Gerd Moellmann  <gerd@gnu.org>
4664         * xdisp.c (Qwhen): Replaces QCwhen.
4665         (syms_of_xdisp): Initialized it instead of QCwhen.
4666         (handle_single_display_prop): Use it instead of QCwhen.
4668 1999-09-08  Ken'ichi Handa  <handa@gnu.org>
4670         * charset.c (translate_char): Reset MSBs of arguments of
4671         MAKE_CHAR.
4672         (CHAR_COMPONENTS_VALID_P): Fix for ASCII.
4674 1999-09-08  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4676         * editfns.c (Fbufsize): Accept an extra BUFFER parameter.
4678         * fns.c (Fbase64_decode_region): Don't place point outside of the
4679         current accessible portion.
4681 1999-09-07  Richard Stallman  <rms@gnu.org>
4683         * keymap.c (fix_submap_inheritance): Do nothing if the proper
4684         parent is an ancestor of SUBMAP; otherwise, add it as the
4685         ultimate ancestor.
4687 1999-09-07  Gerd Moellmann  <gerd@gnu.org>
4689         * xdisp.c (handle_single_display_prop): Change conditional
4690         display property to `:when FORM . VALUE'.
4692 1999-09-07  Richard Stallman  <rms@gnu.org>
4694         * fileio.c (Fwrite_region): Doc fix.
4696 1999-09-07  Stefan Monnier  <monnier@cs.yale.edu>
4698         * fileio.c (Qexcl): New variable.
4699         (report_file_error): Handle EEXIST specially.
4700         (Fwrite_region): Special handling for CONFIRM = `excl'.
4701         (syms_of_fileio): Initialize Qexcl.
4703 1999-09-07  Gerd Moellmann  <gerd@gnu.org>
4705         * xfns.c (x_set_foreground_color): Call
4706         update_face_from_frame_parameter.
4707         (x_set_background_color): Ditto.
4708         (x_set_mouse_color): Ditto.
4709         (x_set_cursor_color): Ditto.
4710         (x_set_border_color): Ditto.
4711         (x_set_scroll_bar_foreground): Ditto.
4712         (x_set_scroll_bar_background): Ditto.
4714         * xfaces.c (recompute_basic_faces): Clear face cache.
4715         (Finternal_set_lisp_face_attribute): Modify frame parameters
4716         if attributes of certain faces are changed.
4717         (update_face_from_frame_parameter): New.
4719         * xfaces.c (realize_basic_faces): Realize new basic faces.
4721         * dispextern.h (SCROLL_BAR_FACE_ID, BORDER_FACE_ID,
4722         CURSOR_FACE_ID, MOUSE_FACE_ID): New.
4724         * xfaces.c (Qscroll_bar, Qcursor, Qborder, Qmouse): New.
4725         (syms_of_xfaces): Intialize new symbols.
4727         * fns.c (Fmakehash): Take one argument, test, make all the
4728         rest keyword arguments.
4730         * window.c (Fset_window_margins): Make window the first argument.
4731         (set_window_buffer): Call Fset_window_margins with window as first
4732         argument.
4734 1999-09-07  Gerd Moellmann  <gerd@gnu.org>
4736         * xfaces.c (Qfringe): Replaces Qmargin.
4738 1999-09-07  Kenichi Handa  <handa@etl.go.jp>
4740         * charset.h: Lots of comments fixed.
4741         (PARSE_MULTIBYTE_SEQ): Make it work also for ASCII string.
4742         (STRING_CHAR_AND_CHAR_LENGTH): This macro removed.
4744         * charset.c : Lots of comments fixed.
4745         (SPLIT_MULTIBYTE_SEQ): Make it work also for ASCII string.
4746         (CHAR_COMPONENTS_VALID_P): Name changed from
4747         CHAR_COMPONENT_VALID_P.  Caller changed.
4749 1999-09-06  Richard Stallman  <rms@gnu.org>
4751         * insdel.c (syms_of_insdel): Define Lisp variable
4752         inhibit-modification-hooks.
4754 1999-09-06  Michael Sperber [Mr. Preprocessor]  <sperber@informatik.uni-tuebingen.de>
4756         * s/aix4-2.h (ALIGN_DATA_RELOC): Undefined to support new
4757         unexaix.c.
4759         * s/aix3-1.h (ALIGN_DATA_RELOC): Defined to support new unexaix.c.
4761 1999-09-06  Dave Love  <fx@gnu.org>
4763         * unexaix.c: New version incorporating Michael Sperber's changes
4764         from XEmacs.  Should solve problems on AIX 4.3.
4766         * lread.c (Vbyte_boolean_vars): New variable.
4767         (defvar_bool, syms_of_lread): Use it.
4769 1999-09-05  Richard Stallman  <rms@gnu.org>
4771         * minibuf.c (read_minibuf): Put all three properties on the
4772         same range, the whole prompt.
4774 1999-09-05  Gerd Moellmann  <gerd@gnu.org>
4776         * sound.c (Qplay_sound_functions): Replaces Qplay_sound_hook.
4777         (Fplay_sound, syms_of_sound): Use it.
4778         (parse_sound): Allow float volume values in the range [0, 1].
4779         (Fplay_sound): Ditto.
4781         * window.c (Fset_window_vscroll): Make window the first argument,
4782         amount to scroll the second.  Take non-negative vscroll as
4783         argument.
4784         (Fwindow_vscroll): Return non-negative vscroll.
4786         * xfns.c (Fx_show_tip): Improve documentation.
4788 1999-09-05  Gerd Moellmann  <gerd@gnu.org>
4790         * buffer.c, buffer.h, dispextern.h, dispnew.c, keyboard.c,
4791         window.c, xdisp.c, xfaces.c, xterm.c, keyboard.h: Change
4792         `top-line' and `top_line' to `header-line' and `header_line'.
4793         Likewise for similar spellings.
4795 1999-09-05  Gerd Moellmann  <gerd@gnu.org>
4797         * xdisp.c (row_containing_pos): New.
4798         (try_window_id): Use it.
4800         * alloc.c, dispextern.h, dispnew.c, frame.c, frame.h, keyboard.c,
4801         lisp.h, termhooks.h, window.c xdisp.c, xfaces.c, xfns.c, xterm.c:
4802         Change spelling of `toolbar' to `tool_bar' or `tool-bar'.
4803         Likewise for upper-case etc.
4805 1999-09-05  Gerd Moellmann  <gerd@gnu.org>
4807         * xterm.c (XTset_vertical_scroll_bar) [!USE_TOOLKIT_SCROLL_BARS]:
4808         Fix reference to renamed variable.
4810 1999-09-04  Gerd Moellmann  <gerd@gnu.org>
4812         * window.c (Qwindow_size_fixed): Replaces Qfixed_window_size.
4813         (window_fixed_size_p): Use Qwindow_size_fixed instead of 
4814         Qfixed_window_size.
4815         (syms_of_window): Ditto.
4817         * fns.c (Fmakehash): Exchange optional test and size arguments.
4819 1999-09-03  Gerd Moellmann  <gerd@gnu.org>
4821         * xterm.c (XTset_vertical_scroll_bar): Block input when clearing
4822         under newly created scroll bar.
4823         (expose_window): If window is not yet fully initialized, do
4824         nothing.  This can happen when toolkit scroll bars are used and a
4825         window is split.  Reconfiguring the scroll bars will generate an
4826         expose for a newly created window.
4828         * frame.h (struct frame): New member `gamma'.
4830         * xfns.c: Include math.h.  Add extern declaration for atof in case
4831         we don't see one.
4832         (Qscreen_gamma): New.
4833         (struct x_frame_parm_table): Add prototypes, add
4834         x_set_screen_gamma.
4835         (gamma_correct): New function.
4836         (defined_color): Call it.
4837         (x_set_screen_gamma): New.
4838         (x_set_title): Add parameter old_value.
4839         (RES_TYPE_FLOAT): New.
4840         (x_get_arg): Handle RES_TYPE_FLOAT.
4841         (Fx_create_frame): Call x_default_parameter for `screen-gamma'.
4842         (lookup_pixel_color): Change call to x_alloc_nearest_color to
4843         new prototype.
4844         (lookup_rgb_color): Ditto.
4845         (syms_of_xfns): Initialize Qscreen_gamma.
4847         * xterm.c (x_alloc_nearest_color_for_widget) [USE_X_TOOLKIT]:
4848         New.  Allocate color for lwlib widgets.
4849         (x_alloc_nearest_color): Change parameter list include the
4850         frame on which to allocate colors.  Gamma-correct colors.
4851         (x_alloc_lighter_color): Call x_alloc_lighter_color with new
4852         parameter list.
4854         * xterm.h: Change protorype of x_alloc_nearest_color.
4856 1999-09-03  Richard Stallman  <rms@gnu.org>
4858         * callproc.c: Delete the system-independent include of stdlib.h
4859         (leaving only the one in the WINDOWSNT conditional).
4861 1999-09-03  Andrew Choi  <choi@cs.hku.hk>
4863         * callproc.c (call-process) [macintosh]: Call mac_run_command in
4864         sysdep.c.  The Mac code is modeled after the DOS code.
4865         
4866         * dispextern.h [macintosh]: Include macterm.h to define substitute X
4867         Window types and macros.
4869         * frame.h: Do nothing if included a second time.
4870         (enum output_method): Add mac_output frame type.
4871         (union output_data): Add new alternative `mac'.
4872         (FRAME_MAC_P): New macro.
4873         
4874         * frame.c (Fframep) [macintosh]: Handle mac frame type.
4875         (syms_of_frame_1): Initialize Qmac.
4876         (make_terminal_frame) [macintosh]: Initialize output_data.mac fields.
4877         (Fmake_terminal_frame) [macintosh]: Add an alternate error check.
4878         (Fmodify_frame_parameters) [macintosh]: Call
4879         mac_set_frame_parameter in macterm.c.
4880         
4881         * keyboard.c [macintosh]: Set KBD_BUFFER_SIZE to a smaller value
4882         (512) because Mac compilers limit local data of a function to 32K.
4883         
4884         * make-docfiles.c: Correctly handle input files with Mac-style
4885         eol's.
4886         
4887         * sysdep.c: Define numerous routines to emulate Unix system calls.
4888         
4889         * xfaces.c: on MacOS, define the set of colors listed in rgb.txt
4890         file of an X Window environment.
4891         
4892         * xfaces.c: on MacOS, define the Lisp functions x-display-color-p,
4893         x-display-grayscale, x-color-defined-p, and x-color-values.
4894         
4895         * sysdep.c [macintosh] (stat, fstat, mkdir, rmdir, utime, access)
4896         (open, creat, unlink, read, write, rename, fopen, pause, alarm)
4897         (signal, sleep, gmtime, localtime, ctime, time, index, mktemp)
4898         (getpwuid, getpwnam, dup, dup2, isatty, getgid, getegid, getuid)
4899         (geteuid, getpid, getenv, uname, opendir, closedir, readdir, getwd.):
4900         New functions, replacing POSIX features.
4901         
4902         * sysdep.c [macintosh] (Mac2UnixPathname, Unix2MacPathname, CheckAlarm)
4903         (InitMyPasswd, GetTempDirName, mystrchr, mystrtok, mystrcpy):
4904         (InitEmacsPasswdDir, run_mac_command): New subroutines.
4906         * sysdep.c [macintosh] (targetTicks, alarm_signal_func, myPasswdName)
4907         (myPasswd, emacsPasswdDir, emacsPasswd, myPasswdInited, mask)
4908         (myPasswdDir, TempDirName, sys_siglist): New variables.
4910         * sysdep.c [macintosh] (execvp, wait, croak, fork, kill, sigsetmask)
4911         (sigblock, request_sigio, unrequest_sigio, setpgrp, pipe, symlink)
4912         (link, lstat, readlink, umask, chmod, sbrk, fsync, ioctl):
4913         Define empty stubs so Emacs will link.
4915 1999-09-03  Gerd Moellmann  <gerd@gnu.org>
4917         * xdisp.c: Use XCAR and XCDR instead of XCONS.
4919         * window.h: New member frozen_window_start_p.
4921         * window.c (foreach_window, foreach_window_1): New.
4922         (freeze_window_start, freeze_window_starts): New.
4923         (make_window): Initialize frozen_window_start_p.
4924         (replace_window): Ditto.
4925         (Fset_window_point): Remove references to deleted variables.
4926         (Fset_window_start): Ditto.
4928         * xdisp.c (Vresize_mini_config, resize_mini_frame,
4929         resize_mini_initial_height): Removed.
4930         (syms_of_xdisp): Remove references to these variables.
4931         (resize_mini_window): Don't save window configuration, freeze
4932         window starts instead.  Enlarge window until displaying an empty
4933         buffer, then shrink it.  Make the function externally visible.
4934         (redisplay_window): Treat frozen window start like forced start,
4935         but accept point outside of the window.
4937         * dispextern.h: Add function prototype for resize_mini_window.
4939         * minibuf.c (read_minibuf_unwind): Resize mini-window when
4940         reaching minibuf_level 0.
4942         * lisp.h: Remove extern declarations for variables deleted from
4943         xdisp.c.
4945         * dispnew.c (adjust_frame_glyphs): Remove reference to
4946         Vresize_mini_config.
4948 1999-09-03  Gerd Moellmann  <gerd@gnu.org>
4950         * xfns.c (x_set_scroll_bar_width): Change conditional compilation
4951         to USE_TOOLKIT_SCROLL_BARS.
4953         * xterm.c (x_scroll_bar_create): Don't clear under scroll bar
4954         here.
4955         (XTset_vertical_scroll_bar): Clarify position computations.  Clear
4956         under newly created scroll bar.  Put toolkit scroll bars in the
4957         middle of the area reserved for the scroll bar.
4959 1999-09-03  Kenichi Handa  <handa@etl.go.jp>
4961         The following changes are for the new handling of mulitbyte
4962         sequence.  Now, except for a composite character, no multibyte
4963         character in string/buffer has trailing garbage bytes.  For
4964         instance, the length of string "\201\300\300" is now 2, the first
4965         character is Latin-1 A-grave, the second is raw \300.
4967         * charset.h (MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
4968         are negative.
4969         (MAKE_CHAR): Don't set MSBs of C1 and C2 to 0.
4970         (VALID_MULTIBYTE_CHAR_P): This macro deleted.
4971         (PARSE_COMPOSITE_SEQ): New macro.
4972         (PARSE_CHARACTER_SEQ): New macro.
4973         (PARSE_MULTIBYTE_SEQ): New macro. 
4974         (CHAR_PRINTABLE_P): New macro.
4975         (STRING_CHAR): Adjusted for the change of string_to_non_ascii_char.
4976         (STRING_CHAR_AND_LENGTH): Likewise.
4977         (STRING_CHAR_AND_CHAR_LENGTH): Define it as STRING_CHAR_AND_LENGTH.
4978         (INC_POS): Use the macro PARSE_MULTIBYTE_SEQ.
4979         (DEC_POS, BUF_INC_POS, BUF_DEC_POS): Likewise,
4981         * charset.c (SPLIT_COMPOSITE_SEQ): New macro.
4982         (SPLIT_CHARACTER_SEQ): New macro.
4983         (SPLIT_MULTIBYTE_SEQ): New macro.
4984         (CHAR_COMPONENT_VALID_P): New macro.
4985         (non_ascii_char_to_string): Generate a multibyte sequence as far
4986         as possible.
4987         (string_to_non_ascii_char): The 4th arg exclude_tail_garbage is
4988         deleted.  Caller changed.  Use the macro SPLIT_MULTIBYTE_SEQ.
4989         (split_non_ascii_string): Likewise.
4990         (multibyte_form_length): Use the macro PARSE_MULTIBYTE_SEQ.
4991         (char_printable_p): New function.
4992         (translate_char): Check character by NATNUMP instead of INTEGERP.
4993         (unibyte_char_to_multibyte): Call char_valid_p instead of
4994         VALID_MULTIBYTE_CHAR_P.
4995         (Fmake_char_internal): Check the arguments more rigidly.
4996         (Fcharset_after): Use the macro SPLIT_MULTIBYTE_SEQ.
4997         (char_valid_p): Check the validity by CHAR_COMPONENT_VALID_P.
4998         (Fmultibyte_char_to_unibyte): Check the validity of character by
4999         CHAR_VALID_P.
5000         (chars_in_text): Call multibyte_chars_in_text.
5001         (multibyte_chars_in_text): Use the macro PARSE_MULTIBYTE_SEQ.
5002         (Fcompose_string): Use the macro STRING_CHAR_AND_LENGTH instead of
5003         STRING_CHAR_AND_CHAR_LENGTH (which is obsolete now).
5005         * data.c (Faset): Adjust the way to check byte-combining
5006         possibility for the new handling of multibyte sequence.
5008         * editfns.c (Fsubst_char_in_region): Likewise.
5010         * fns.c (count_combining): Use the macro PARSE_MULTIBYTE_SEQ.
5011         (string_char_to_byte): Likewise.
5012         (string_byte_to_char): Likewise.
5014         * indent.c (MULTIBYTE_BYTES_WIDTH): Delete the 2nd arg C.  Use the
5015         macro STRING_CHAR_AND_LENGTH.  Caller changed.
5017         * insdel.c (count_combining_composition): New function.
5018         (count_combining_before): Adjust the way to check byte-combining
5019         possibility for the new handling of multibyte sequence.  Call
5020         count_combining_composition for a composite character.
5021         (count_combining_after): Likewise.
5023         * print.c (print_string): Use the macro STRING_CHAR_AND_LENGTH.
5024         (print): Likewise.
5026         * dispextern.h (struct it): Change the size of the member
5027         `ctl_chars'.
5029         * xdisp.c (get_next_display_element): Display incomplete multibyte
5030         sequence (e.g. \222\300) by octal form.
5032 1999-09-02  Gerd Moellmann  <gerd@gnu.org>
5034         * xterm.h (VERTICAL_SCROLL_BAR_WIDTH_TRIM): Change from 2 to 0.
5036         * fns.c (Fhash_table_weakness): Replaces Fhash_table_weak.
5037         (cmpfn_eql, sxhash): Use XFLOAT_DATA.
5039 1999-09-02  Gerd Moellmann  <gerd@gnu.org>
5041         * buffer.c (set_buffer_internal): Never set
5042         windows_or_buffers_changed.
5044         * xdisp.c (try_window_id): Reset first_unchanged_at_end_row
5045         if we have displayed to the bottom of the window.
5047         * syntax.c (Fforward_word): Stop at a mini-buffer prompt end
5048         in both directions.  Extend documentation.
5050 1999-09-01  Gerd Moellmann  <gerd@gnu.org>
5052         * minibuf.c (read_minibuf): Flush display after setting cursor to
5053         column 0.
5055 1999-08-31  Gerd Moellmann  <gerd@gnu.org>
5057         * s/freebsd.h (__FreeBSD_version): Don't define it if it is
5058         already defined.  This avoids a warning from buffer.c.
5060 1999-08-30  Gerd Moellmann  <gerd@gnu.org>
5062         * xterm.h (FRAME_X_FLAGS_AREA_COLS): Define it as the total width
5063         of both margins.
5064         (FRAME_X_FLAGS_AREA_WIDTH): Likewise.
5065         (FRAME_X_LEFT_FLAGS_AREA_WIDTH): New.
5066         (FRAME_X_RIGHT_FLAGS_AREA_WIDTH): New.
5068         * frame.h (FRAME_WINDOW_WIDTH_ARG): Add in FRAME_FLAGS_AREA_COLS
5069         once instead of twice.
5070         (FRAME_LEFT_FLAGS_AREA_WIDTH): New.
5072         * xterm.c: Remove unused bitmaps.
5073         (continued_bits, continuation_bits, overlay_bits): Change images.
5074         (x_draw_vertical_border): Use FRAME_X_RIGHT_FLAGS_AREA_WIDTH
5075         instead of FRAME_X_FLAGS_AREA_WIDTH.
5076         (x_after_update_window_line): Ditto.
5077         (x_draw_bitmap): Likewise.
5078         (x_draw_row_bitmaps): Likewise.
5079         (x_draw_glyph_string_box): Likewise.
5080         (x_draw_glyphs): Likewise.
5081         (x_scroll_run): Likewise.
5082         (expose_window_tree): Likewise.
5083         (note_mode_line_highlight): Likewise.
5084         (XTset_vertical_scroll_bar): Likewise.
5085         (x_clip_to_row): Likewise.
5086         (x_set_window_size): Likewise.
5088         * xfns.c (x_figure_window_size): Use FRAME_FLAGS_AREA_COLS instead
5089         of 2 * that value.
5091         * xdisp.c (window_box_width): Use FRAME_FLAGS_AREA_COLS instead of
5092         2 * that value.
5093         (window_box_left): Use FRAME_LEFT_FLAGS_AREA_WIDTH instead of
5094         FRAME_FLAGS_AREA_WIDTH.
5096         * window.c (coordinates_in_window): Use
5097         FRAME_LEFT_FLAGS_AREA_WIDTH instead of FRAME_FLAGS_AREA_WIDTH.
5098         (window_internal_width): Subtract FRAME_FLAGS_AREA_WIDTH once
5099         instead of twice.
5101         * widget.c (set_frame_size): Set flags_area_extra to 
5102         FRAME_FLAGS_AREA_WIDTH instead of 2 * that width.
5103         (EmacsFrameSetCharSize): Ditto.
5105         * dispnew.c (mode_line_string): Add FRAME_LEFT_FLAGS_AREA_WIDTH
5106         instead of FRAME_FLAGS_AREA_WIDTH.
5108         * dispextern.h (WINDOW_DISPLAY_PIXEL_WIDTH): Subtract
5109         FRAME_FLAGS_AREA_COLS once.
5110         (WINDOW_DISPLAY_LEFT_EDGE_PIXEL_X): Add
5111         FRAME_LEFT_FLAGS_AREA_WIDTH instead of FRAME_FLAGS_AREA_WIDTH.
5113 1999-08-30  Gerd Moellmann  <gerd@gnu.org>
5115         * freebsd.h (C_SWITCH_SYSTEM): Added to let configure find headers
5116         in /usr/X11R6/include which are checked for with AC_CHECK_HEADER.
5118 1999-08-30  Gerd Moellmann  <gerd@gnu.org>
5120         * fns.c (QCweakness): Replaces QCweak.
5121         (Fmake_hash_table): Ditto.
5122         (Fmakehash): Ditto.
5123         (syms_of_fns): Ditto.
5125 1999-08-29  Richard Stallman  <rms@gnu.org>
5127         * search.c (compile_pattern_1): Enable RE_CHAR_CLASSES for regexp.
5129         * sysdep.c (read_input_waiting): Pass read_socket_hook just 4 args.
5131         * syntax.h (SYNTAX_COMMENT_NESTED, SYNTAX_FLAGS_COMMENT_NESTED):
5132         Add support for nested comments.
5134         * syntax.c (Fforward_comment, scan_lists, scan_sexps_forward):
5135         Consolidate the forward comment code into the new `forw_comment'.
5136         (forw_comment): New subroutine.  Added support for nested comments.
5137         (lisp_parse_state, back_comment, Fmodify_syntax_entry)
5138         (Fparse_partial_sexp): Add support for nested comments.
5140 1999-08-28  Ken Raeburn  <raeburn@gnu.org>
5142         * lisp.h (struct Lisp_Cons, XCAR, XCDR, struct Lisp_Float): Change
5143         names of structure elements if HIDE_LISP_IMPLEMENTATION is
5144         defined, to help detect code that uses knowledge of the Lisp
5145         internals that it shouldn't have.
5146         (XFLOAT_DATA): New macro.
5148 1999-08-25  Gerd Moellmann  <gerd@gnu.org>
5150         * syntax.c (Fforward_word): If in a mini-buffer and moving
5151         backwards, stop in front of the prompt to prevent accidentially
5152         moving into the read-only prompt.
5154         * window.c (Frecenter): Clear frame if called with nil or no arg.
5156         * xdisp.c (resize_mini_window): Don't resize if
5157         Vmax_mini_window_height is nil.  Otherwise, use a default if
5158         Vmax_mini_window_height is not ot a number.
5159         (syms_of_xdisp): Extend documentation of Vmax_mini_window_height.
5161 1999-08-25  Alexandre Oliva  <oliva@dcc.unicamp.br>
5163         * unexelf.c: Merge IRIX debugging info patch from unexsgi.c
5164         * m/iris4d.h: Use unexelf for IRIX 5.*.
5165         * m/iris5d.h: Use unexelf for IRIX 6.*.
5166         * unexsgi.c: Deleted.
5168         * unexelf.c: Auto-detect .sbss section.
5169         (round_up): Make it static.
5170         (unexec): Declare alignment as Elf Word.  Skip ``Program
5171         segment above .bss'' test on MIPS without .sbss.
5172         Copy sections .got and .sdata1 sections.  Adjust offsets in
5173         sections .sdata, .lit4, .lit8, .got and .sdata1.
5175 1999-08-25  Gerd Moellmann  <gerd@gnu.org>
5177         * xdisp.c (try_window_id): Remove typo.
5179 1999-08-24  Gerd Moellmann  <gerd@gnu.org>
5181         * xdisp.c (try_window_id): Recognize case that PT == ZV and in
5182         unchanged text at the bottom when computing the cursor position.
5183         (message3_nolog): Raise frame only if minibuffer_auto_raise is
5184         set.
5186         * lisp.h (PVEC_TYPE_MASK): Add the bit for hash tables.
5188 1999-08-24  Gerd Moellmann  <gerd@gnu.org>
5190         * xfaces.c (Qmargin): Replacement for Qbitmap_area.
5191         (realize_basic_faces): Replace Qmargin for Qbitmap_area.
5192         (syms_of_xfaces): Ditto.
5194         * window.c (Fset_window_point): Reset Vresize_mini_config.
5195         (Fset_window_start): Ditto.
5196         (set_window_buffer): Ditto.
5198         * dispnew.c (adjust_frame_glyphs): Reset Vresize_mini_config.
5200         * xdisp.c (redisplay_window): Don't ever test just_this_one_p
5201         before calling try_window.
5202         (echo_area_display): If height has changed, update other windows.
5203         (resize_mini_frame, resize_mini_initial_height): New.
5204         (resize_mini_window): Save/restore window configuration
5205         differently.
5207         * lisp.h (Vresize_mini_config, resize_mini_frame, 
5208         resize_mini_initial_height): Add extern declarations.
5210         * xterm.c (expose_window_tree): Fix typo CANON_Y_UNIT to
5211         CANON_X_UNIT.
5213         * xfns.c [HAVE_JPEG]: Work around a warning about HAVE_STDLIB_H
5214         being redefined in jconfig.h.
5216 1999-08-23  Ken'ichi Handa  <handa@gnu.org>
5218         * coding.h: Include "ccl.h" instead of "../src/ccl.h".
5220 1999-08-22  Gerd Moellmann  <gerd@gnu.org>
5222         * alloc.c (mark_glyph_matrix): Mark strings only.
5224         * xdisp.c (redisplay_internal): Clear garbaged frames after
5225         resizing mini-window.
5227 1999-08-22  Gerd Moellmann  <gerd@gnu.org>
5229         * xdisp.c (unwind_with_echo_area_buffer): Use
5230         set_buffer_internal_1 instead of set_buffer_internal.
5231         (with_echo_area_buffer): Ditto.
5233         * buffer.c (set_buffer_internal): Set windows_or_buffers_changed
5234         only if buffer is displayed somewhere.
5236         * buffer.h (BUF_COMPUTE_UNCHANGED): New.
5238         * insdel.c (gap_left): Use BUF_COMPUTE_UNCHANGED.
5239         (gap_right): Ditto.
5240         (modify_region): Ditto.
5242         * buffer.c (modify_overlay): Use BUF_COMPUTE_UNCHANGED.
5244         * xdisp.c (Vresize_mini_config): New.
5245         (resize_mini_window): Use it to save restore original window
5246         configuration
5247         (syms_of_xdisp): Initialize it.
5249         * buffer.h (struct buffer): Add prevent_redisplay_optimizations_p.
5251         * dispextern.h (struct glyph_matrix): Add buffer, begv, and zv.
5253         * xdisp.c (reconsider_clip_changes): New.
5254         (redisplay_internal, redisplay_window): Call it.
5255         (mark_window_display_accurate, redisplay_internal): Set current
5256         matrix' buffer, begv, zv.
5258         * window.c (Fset_window_hscroll): Set
5259         prevent_redisplay_optimizations_p instead of clip_changed.
5260         (Fset_window_hscroll): Ditto.
5261         (temp_output_buffer_show): Ditto.
5262         (Fset_window_vscroll): Ditto.
5264         * buffer.c (reset_buffer): Set clip_changed to 0 and
5265         prevent_redisplay_optimizations_p to 1.
5266         (Fget_buffer_create): Set prevent_redisplay_optimizations_p to 1.
5268         * buffer.h (BUF_UNCHANGED_MODIFIED, UNCHANGED_MODIFIED,
5269         BUF_OVERLAY_UNCHANGED_MODIFIED, OVERLAY_UNCHANGED_MODIFIED,
5270         BUF_BEG_UNCHANGED, BEG_UNCHANGED, BUF_END_UNCHANGED,
5271         END_UNCHANGED): New.
5272         (struct buffer_text):  Add beg_unchanged, end_unchanged,
5273         unchanged_modified, overlay_unchanged_modified.
5275         * window.h (beg_unchanged, end_unchanged, unchanged_modified,
5276         overlay_unchanged_modified): Removed.
5277         (with_echo_area_unwind_data): Don't save beg/end_unchanged.
5278         (unwind_with_echo_area_buffer): Don't restore them.
5279         (debug_beg_unchanged, debug_end_unchanged) [GLYPH_DEBUG]: Removed.
5280         (text_outside_line_unchanged_p, redisplay_internal,
5281         try_scrolling): Use/set buffer-specific beg/end_unchanged.
5282         (redisplay_window): Let try_window_id be called if more than one
5283         window is displayed.  Use/set buffer-specific beg/end_unchanged.
5284         (get_last_unchanged_at_beg_row, get_first_unchanged_at_end_row,
5285         try_window_id):
5286         Use buffer-specific beg/end_unchanged.
5288         * window.h (beg_unchanged, end_unchanged, unchanged_modified,
5289         overlay_unchanged_modified): Remove extern declarations.
5291         * keyboard.c (command_loop_1):  Set beg/end_unchanged per
5292         buffer.
5294         * insdel.c (gap_left): Compute beg/end_unchanged per buffer.
5295         (gap_right): Ditto.
5296         (adjust_after_replace): Likewise.
5297         (replace_range, del_range_2, modify_region): Likewise.
5299         * dispnew.c (direct_output_for_insert):  Set beg_unchanged
5300         and unchanged_modified per buffer.
5302         * coding.c (code_convert_region): Compute beg/end_unchanged per
5303         buffer.
5305         * buffer.c (modify_overlay): Compute beg/end_unchanged
5306         per buffer.
5307         (Fget_buffer_create): Initialize new members of the buffer 
5308         structure.
5310 1999-08-22  Gerd Moellmann  <gerd@gnu.org>
5312         * lisp.h: Add prototype for copy_hash_table and Fcopy_hash_table.
5314         * fns.c (Qkey, Qvalue): Renamed from Qkey_weak, and Qvalue_weak.
5315         (Qkey_value_weak):  Removed.
5316         (make_hash_table): Use nil, `key', `value', t for weakness.
5317         (Fmake_hash_table): Ditto.
5318         (copy_hash_table): New.
5319         (Fcopy_hash_table): New.
5321 1999-08-22  Gerd Moellmann  <gerd@gnu.org>
5323         * xfns.c: Call change_frame_size and do_pending_window_change with
5324         new parameter.  
5326 1999-08-21  Gerd Moellmann  <gerd@gnu.org>
5328         * xdisp.c (resize_mini_window): Do it for truncate-lines t as
5329         well.
5330         (redisplay_internal): Resize mini-window only if text might 
5331         have changed.
5332         (display_echo_area): Reset displayed echo_area_buffer to nil
5333         at the end if we're displaying a nil message.
5335 1999-08-21  Gerd Moellmann  <gerd@gnu.org>
5336         
5337         * fns.c (hash_lookup): Test with EQ before calling key comparion
5338         function.
5339         (hash_remove): Ditto.
5340         (cmpfn_eq): Removed.
5341         (cmpfn_eql): Don't test with EQ.
5342         (cmpfn_equal): Ditto.
5343         (make_hash_table): Set comparison function for `eq' to null.
5345         * buffer.c, cmds.c, editfns.c, indent.c, insdel.c, buffer.h:
5346         Remove conditional compilation on NO_PROMPT_IN_BUFFER.
5348         * dispextern.h (NO_PROMPT_IN_BUFFER): Removed.
5350         * window.c, widget.c, process.c, keyboard.c, frame.c, xdisp.c,
5351         xterm.c: Call change_frame_size and do_pending_window_change with
5352         new parameter.
5354         * dispnew.c (do_pending_window_change): Add parameter `safe'.
5355         (change_frame_size): Ditto.
5356         (change_frame_size_1): Ditto.  Deley size changes if redisplaying
5357         and not called from a safe place.
5358         (window_change_signal): Call change_frame_size with new parameter.
5360         * dispextern.h: Change prototypes for do_pending_window_change
5361         and change_frame_size.
5363         * xfaces.c (face_at_buffer_position): Don't xassert that
5364         window's buffers equals current_buffer; this is not the 
5365         case during echo area display.
5367 1999-08-21  Gerd Moellmann  <gerd@gnu.org>
5369         * xdisp.c, minibuf.c: Remove conditional compilation on
5370         NO_PROMPT_IN_BUFFER.
5372         * minibuf.c (Fminibuffer_prompt_end): New.
5373         (syms_of_minibuf): Defsubr it.  Remove
5374         minibuffer-prompt-in-buffer.
5375         (Fminibuffer_prompt_width): Return 0 if not in mini-buffer.
5376         Extend documentation.
5378         * xdisp.c (get_next_display_element): Display \r as ^M.
5380         * xterm.c (x_scroll_bar_create) [USE_TOOLKIT_SCROLL_BARS]: Clear
5381         under scroll bar widget.
5383 1999-08-21  Gerd Moellmann  <gerd@gnu.org>
5385         * xdisp.c (minibuffer_scroll_overlap): Removed because not used
5386         anywhere.
5387         (unwind_redisplay): Return nil.
5388         (clear_garbaged_frames): New.
5389         (redisplay_internal): Use it.
5390         (echo_area_display): Ditto.
5391         (resize_mini_window): Mew.
5392         (display_echo_area_1): Use it to resize echo area window.
5393         (redisplay_internal): Use it to resize active mini-window.
5395         * dispextern.h, lisp.h: Add function prototypes.
5397         * dispnew.c (set_window_cursor_after_update): Do the 
5398         cursor_in_echo_area case only for a mini-window showing
5399         a message.  Don't let cursor end up after the end of a row.
5401         * xdisp.c (echo_area_glyphs, echo_area_message,
5402         echo_area_glyphs_length, previous_echo_glyphs,
5403         previous_echo_area_message, previous_echo_area_glyphs_length):
5404         Removed.
5405         (Vmessage_stack, echo_area_buffer, echo_buffer,
5406         display_last_displayed_message_p, Vwith_echo_area_save_vector): New.
5407         (message2_nolog): Use set_message and clear_message.
5408         (message3): Rename parameter len to nbytes to make clear what
5409         it is.
5410         (message3_nolog): Ditto.  Use set_message and clear_message.
5411         (update_echo_area): Rewritten.
5412         (with_echo_area_buffer): New.
5413         (with_echo_area_buffer_unwind_data, unwind_with_area_buffer): New.
5414         (setup_echo_area_for_printing): New.
5415         (display_echo_area, display_echo_area_1): New.
5417         (current_message, current_message_1): New.
5418         (push_message, restore_message, pop_message, 
5419         check_message_stack): New.
5420         (truncate_echo_area): Rewritten.
5421         (truncate_message_1): New.
5422         (set_message, set_message_1, clear_message): New.
5423         (echo_area_display): Rewritten.
5424         (redisplay_internal): Check for needed echo area update
5425         differently.
5426         (redisplay_preserve_echo_area): Rewritten.
5427         (redisplay_window): Check for mini-window displaying echo area 
5428         message differently.
5429         (syms_of_xdisp): Initialize Vmessage_stack and echo area buffers.
5430         Remove initialzation of removed variables.
5431         (init_xdisp): Remove references to removed variables.
5433         * dispnew.c (adjust_frame_message_buffer): Removed references
5434         to echo_area_glyphs and previous_echo_glyphs.
5435         (direct_output_for_insert): Check for mini-window displaying
5436         echo area message differently.
5437         (update_frame): Likewise.
5438         (set_window_cursor_after_update): Likewise.  In echo area,
5439         don't try to set cursor on rows that aren't enabled.
5441         * print.c: Remove conditional compilation on `standalone'.
5442         (glyph_len, str_to_glyph_cpy, str_to_glyph_ncpy,
5443         glyph_to_str_cpy):  Remove that section because GLYPHs are no 
5444         longer used in that way.
5445         (PRINTDECLARE): Add multibyte.
5446         (PRINTPREPARE, PRINTFINISH): Handle printcharfun t differently.
5447         (printbufidx): Removed.
5448         (printchar, strout): Rewritten.
5450         * keyboard.c (ok_to_echo_at_next_pause): Make it a pointer to
5451         a struct kboard.
5452         (echo_kboard): New.
5453         (echo_now): Set echo_kboard to the current kboard.
5454         (cancel_echoing): Set echo_kboard to null.
5455         (cmd_error_internal): Use clear_message, remove references
5456         to echo_area_glyphs and echo_area_message.
5457         (command_loop_1): Check for echo area messages differently.
5458         (read_char): Likewise.
5459         (record_menu_key): Use clear_message.
5460         (Fexecute_extended_command):  Check for echo area messages
5461         differently.  Use push_message, restore_message, pop_message.
5463         * alloc.c (Fgarbage_collect): Use push_message, restore_message,
5464         pop_message.
5466         * emacs.c (shut_down_emacs): Call check_message_stack.
5468         * lisp.h: Add function prototypes and extern declarations for
5469         new functions and variables.
5471         * fileio.c (Fdo_auto_save): Use push_message, restore_message,
5472         pop_message.
5474         * minibuf.c (read_minibuf): Use clear_message instead of 
5475         setting echo_area_glyphs.
5476         (Fminibuffer_completion_help): Ditto.
5478         * editfns.c (Fcurrent_message): Rewritten.
5480         * frame.c, window.h: Remove references to echo_area_glyphs
5481         and previous_echo_glyphs.
5483 1999-08-21  Dave Love  <fx@gnu.org>
5485         * aix3-2-5.h (C_DEBUG_SWITCH): Use -g -O.
5486         * aix4-1.h: Likewise.
5488         * irix6-5.h (C_DEBUG_SWITCH): Set for debug and optimize.
5490 1999-08-20  Gerd Moellmann  <gerd@gnu.org>
5492         * xfns.c: Remove tiff34 prefix from include.
5494 1999-08-20  Dave Love  <fx@gnu.org>
5496         * cm.c: Revert previous change.
5498 1999-08-19  Gerd Moellmann  <gerd@gnu.org>
5500         * xterm.c (XTset_vertical_scroll_bar): Fix previous change.  Clear
5501         under scroll bar with width FRAME_SCROLL_BAR_COLS.
5503 1999-08-18  Dave Love  <fx@gnu.org>
5505         * callproc.c, filelock.c, insdel.c, sysdep.c, xmenu.c: Use
5506         stdlib.h.
5508         * doprnt.c: Use stdlib.h, unistd.h.
5510         * config.in: Add HAVE_TERMCAP_H.
5512         * cm.c: Use termcap.h.
5514 1999-08-18  Gerd Moellmann  <gerd@gnu.org>
5516         * xfns.c (x_window) [USE_X_TOOLKIT]: Remove test for
5517         FRAME_X_WINDOW (f) being null at the of the function.  If widgets
5518         cannot be created we will already have crashed earlier.  Call
5519         lw_set_main_areas with a null menu-bar widget, so that we have
5520         a reasonable default.
5521         (Fx_create_frame): Rearranged so that Lisp errors during frame
5522         initialization cause less damage.  Initialize menu bar widget
5523         here.
5525 1999-08-18  Gerd Moellmann  <gerd@gnu.org>
5526         
5527         * dispnew.c (update_frame_line): Fix previous change.  If writing
5528         whole line clear to end of frame.
5530 1999-08-17  Gerd Moellmann  <gerd@gnu.org>
5532         * window.c (Fcoordinates_in_window_p): Return `left-bitmap-area'
5533         and `right-bitmap-area' if position is in the bitmap areas.  This
5534         avoids an error when clicking on the bitmap areas.  Instead, they
5535         are currently treated like clicks inside the window.
5536         (coordinates_in_window): Return 5 and 6 for bitmap areas.
5537         (Qleft_bitmap_area, Qright_bitmap_area): New.
5538         (syms_of_window): Initialize new symbols.
5540         * dispnew.c (update_frame_line): If writing whole line,
5541         don't write trailing spaces unless we must.
5543         * xdisp.c (unwind_redisplay): New.  Resets flag redisplaying_p.
5544         (redisplay_internal): Register unwind_redisplay with
5545         register_unwind_protect.
5546         (try_window_reusing_current_matrix): If new start > old start,
5547         give up if start pos of first reusable row is not equal to new
5548         start.
5550         * eval.c (Fsignal): Don't reset redisplaying_p here.
5552         * xterm.c (expose_area): If row extends face to end of line,
5553         write the whole line.
5555 1999-08-16  Gerd Moellmann  <gerd@gnu.org>
5557         * dispextern.h (struct it): Remove member
5558         show_trailing_whitespace_p.
5560         * dispnew.c (direct_output_for_insert): Use
5561         Vshow_trailing_whitespace instead of former iterator member
5562         show_trailing_whitespace_p.
5563         (direct_output_forward_char): Don't do it if hightlighting
5564         trailing whitespace.
5566         * xdisp.c (Qshow_trailing_whitespace): Removed.
5567         (Vshow_trailing_whitespace): Added.
5568         (init_iterator): Remove initialization code for
5569         show_trailing_whitespace_p.
5570         (redisplay_internal): Don't try cursor movement in this_line
5571         if showing trailing whitespace.
5572         (redisplay_window): Likewise for cursor movement in current
5573         matrix and try_window_id.
5574         (try_window_reusing_current_matrix): Likewise.
5575         (trailing_whitespace_p): Return 0 if trailing whitespace is
5576         in front of point.
5577         (display_line): Use Vshow_trailing_whitespace instead of
5578         former iterator member show_trailing_whitespace_p.
5579         (syms_of_xdisp): Add DEFVAR_LISP for show-trailing-whitespace.
5581 1999-08-16  Gerd Moellmann  <gerd@gnu.org>
5583         * window.c (Fpos_visible_in_window_p): Rewritten.
5585         * xfaces.c (add_to_log): Renamed from display_message.
5586         Don't display messages in echo area.
5588         * xterm.c (x_draw_glyph_string_box): Use the background width
5589         of the glyph string for the width of the box.
5591 1999-08-16  Stefan Monnier  <monnier@cs.yale.edu>
5593         * syntax.c (Fforward_comment): Set comstyle for Scomment_fence.
5595 1999-08-16  Geoff Voelker  <voelker@cs.washington.edu>
5597         * xfns.c, w32fns.c (x_set_frame_parameters): Set foreground and
5598         background first, and then set other parameters that might
5599         depend upon their new values.
5601 1999-08-15  Gerd Moellmann  <gerd@gnu.org>
5603         * xfaces.c (Vfont_list_limit): New.
5604         (syms_of_xfaces): Make it a user-variable.
5605         (DEFAULT_FONT_LIST_LIMIT): New.
5606         (sorted_font_list): If Vfont_list_limit is an integer > 0, list
5607         maximally that number of fonts, otherwise use
5608         DEFAULT_FONT_LIST_LIMIT.
5609         (Fx_font_family_list): Bind `font-list-limit' to higher values 
5610         until we have all fonts.
5611         (Fxfont_list): Additionally return the full names of fonts and
5612         their registry and encoding.
5614         * xterm.c (XTset_vertical_scroll_bar) [USE_TOOLKIT_SCROLL_BARS]: 
5615         Simplify clearing "under" scroll bar.
5617         * window.c (Qfixed_window_size): New.
5618         (syms_of_window): Initialiaze it.
5619         (check_all_windows): Add return type void.
5620         (window_fixed_size_p): New.  Return non-zero if window
5621         is fixed-size.
5622         (window_min_size_1): New.
5623         (window_min_size): Handle fixed-size windows.
5624         (size_window): New. Rewritten combination of set_window_height and
5625         set_window_width that handles fixed-size windows.
5626         (set_window_height): Call it.
5627         (set_window_width): Call it.
5628         (Fsplit_window): Give an error on attempt to split a fixed-size
5629         window.
5630         (change_window_height): Partly rewritten to handle fixed-size
5631         windows.
5633 1999-08-13  Wolfgang Rupprecht  <wolfgang@wsrcc.com>
5635         * process.c (Fopen_network_stream): Fix previous change.
5637 1999-08-13  Karl Heuer  <kwzh@gnu.org>
5639         * xdisp.c (line_number_display_limit_width): New var.
5640         (decode_mode_spec): Use it instead of hardcoded value.
5641         (syms_of_xdisp): Defvar it.
5643 1999-08-13  Richard M. Stallman  <rms@gnu.org>
5645         * eval.c (run_hook_list_with_args): Gcpro `globals'.
5646         (run_hook_with_args): Likewise.
5648         * window.h (struct window): New field too_small_ok.
5650         * window.c (set_window_height, set_window_width): 
5651         If window starts out "too small", set its too_small_ok flag.
5652         If window's too_small_ok flag is set, don't delete it
5653         unless it is so small it would cause a crash.
5655 1999-08-13  Gerd Moellmann  <gerd@gnu.org>
5657         * window.c (MINSIZE): Removed.
5658         (window_min_size): New.
5659         (set_window_height): Use window_min_size.
5660         (change_window_height): Ditto.
5662 1999-08-12  Gerd Moellmann  <gerd@gnu.org>
5664         * indent.c (vmotion): Don't add in mini-buffer prompt width
5665         if prompts are inserted into mini-buffer.
5667 1999-08-12  Wolfgang Rupprecht  <wolfgang@wsrcc.com>
5669         * config.in: Add HAVE_GETADDRINFO.
5670         * process.c (Fopen_network_stream): Use getaddrinfo.
5672 1999-08-11  Gerd Moellmann  <gerd@gnu.org>
5674         * xdisp.c (get_overlay_arrow_glyph_row): Set the charpos of
5675         glyphs to -1.
5677         * xdisp.c (face_before_or_after_it_pos): If position after
5678         or before iterator's current position in the buffer is out
5679         of bounds, return the iterator's original face id.
5681         * dispnew.c (mirror_make_current): If desired row isn't enabled,
5682         just swap glyphs pointers between current and desired row.
5683         (build_frame_matrix_from_leaf_window) [GLYPH_DEBUG]: Copy
5684         desired matrix method string to current matrix.
5686 1999-08-11  Kenichi Handa  <handa@etl.go.jp>
5688         * lisp.h (CHAR_MODIFIER_MASK): New macro.
5690         * lread.c (read_escape): For Control modifier, pay attention to
5691         multibyte character.
5692         (read1): Likewise.  Singal error or a multibyte character which
5693         has a modifer bit.  Check validity of Shift modifer.
5695         * charset.c (non_ascii_char_to_string): Handle modifier bits as
5696         the same as Lisp reader.
5698 1999-08-10  Richard M. Stallman  <rms@gnu.org>
5700         * charset.h (BCOPY_SHORT): Fix typo `unsigined'.
5702 1999-08-10  Alexandre Oliva  <oliva@dcc.unicamp.br>
5704         * unexelf.c [__linux__ && __alpha__] (HAS_SBSS_SECTION): Define.
5706 1999-08-10  Eli Zaretskii  <eliz@gnu.org>
5708         * msdos.c (IT_set_face): Abort if the default face is not realized
5709         and cached.
5710         (IT_write_glyphs): Reset the screen face to the default face
5711         before writing glyphs.
5713         * xfaces.c (realize_default_face) [MSDOS]: Don't take default
5714         colors from the frame here.
5715         (realize_tty_face) [MSDOS]: Do it here.  Update the face
5716         attributes with the actual name of the color taken from the
5717         frame.
5719         * dosfns.c (msdos_stdcolor_name): Remove const from return value.
5720         * dosfns.h (msdos_stdcolor_name): Ditto for the prototype.
5722         * frame.c (Fframe_parameters): Swap foreground and background
5723         colors returned in frame parameters if the frame has reverse in
5724         its parameter alist.
5725         (Fmake_terminal_frame): Make a unique copy of face_alist for
5726         each frame.
5728 1999-08-07  Richard Stallman  <rms@gnu.org>
5730         * buffer.c (Fprevious_overlay_change): Just return
5731         the answer obtained from overlays_at.
5733         * xfns.c (xpm_load) [!XpmAllocCloseColors]:
5734         Use XpmCloseness and attrs.closeness instead.
5736 1999-08-06  Richard Stallman  <rms@gnu.org>
5738         * lread.c (Feval_buffer): New arg DO_ALLOW_PRINT.
5740 1999-08-06  Geoff Voelker  <voelker@cs.washington.edu>
5742         * dired.c (directory_files_internal, Fdirectory_files_and_attributes, 
5743         Ffile_attributes_lessp): New functions.
5744         (Fdirectory_files): Use directory_files_internal.
5745         (syms_of_dired): Initialize Fdirectory_files_and_attributes,
5746         Ffile_attributes_lessp.
5748         * w32.c (stat): Check for directory ending in separator when
5749         doing readdir fast path.
5751         * w32fns.c (x_set_icon_type): Support setting frame icons.
5752         * w32term.c (x_bitmap_icon): New function.
5753         (x_make_frame_visible, x_iconify_frame): Invoke x_bitmap_icon.
5754         
5755 1999-08-06  Gerd Moellmann  <gerd@gnu.org>
5757         * xdisp.c (set_iterator_to_next): After delivering a character
5758         from a display vector, restore face and charset to what they were
5759         before the display vector was processed.
5761 1999-08-06  Gerd Moellmann  <gerd@gnu.org>
5763         * xdisp.c (reseat_at_next_visible_line_start): New parameter
5764         on_newline_p.
5765         (set_iterator_to_next):  After delivering last char
5766         from display vector, reseat on next visible line start if 
5767         dpvec_char_len < 0.
5768         (next_element_from_buffer): Set dpvec_char_len to -1 for
5769         selective display.
5771 1999-08-06  Gerd Moellmann  <gerd@gnu.org>
5773         * xdisp.c (compute_line_metrics): If first line's physical ascent
5774          is larger than its logical ascent, use the physical ascent, and
5775          make the row taller.  Set row's overlapping_p flag.
5777         * dispnew.c (redraw_overlapping_rows): Use flag overlapping_p.
5778         (direct_output_for_insert): Ditto.
5780         * dispextern.h (struct glyph_row): Add overlapping_p.
5782         * xterm.c (x_draw_phys_cursor_glyph): Redraw overlaps.
5784         * dispextern.h (MATRIX_ROW_OVERLAPS_PRED_P): New.
5785         (MATRIX_ROW_OVERLAPS_SUCC_P): New.
5787         * dispnew.c (direct_output_for_insert): Don't use this method if
5788         row is overlapped by others.
5789         (update_text_area): Write full line if current line is overlapped.
5790         (redraw_overlapped_rows): New.
5791         (update_window): Call it.
5792         (redraw_overlapping_rows): New.
5793         (update_window): Call it.
5794         (scrolling_window): Make sure overlapped_p flag in current rows is
5795         unchanged.
5796         (row_equal_p): Take rows overlapped_p flag into account.
5798         * dispextern.h (struct glyph_row): Add flag overlapped_p.
5800         * xterm.c (x_fix_overlapping_area): New.
5801         (x_redisplay_interface): Add x_fix_overlapping_area.
5803         * dispnew.c (adjust_glyphs): Block input while adjusting matrices.
5805 1999-08-06  Gerd Moellmann  <gerd@gnu.org>
5807         * xterm.c (x_draw_glyphs): Add parameter overlaps_p.
5808         (struct glyph_string): Add member for_overlaps_p.
5809         (x_get_glyph_string_clip_rect): If glyph string draws foreground
5810         of overlapping rows, clip to window bottom.
5811         (x_fill_glyph_string): Add parameter overlaps_p.
5812         (x_fill_composite_glyph_string): Ditto.
5813         (BUILD_GLYPH_STRINGS): Ditto.
5814         (BUILD_CHAR_GLYPH_STRINGS): Ditto.
5815         (x_draw_glyph_string): Don't draw anything but the foreground
5816         if glyph string draws row overlaps.
5818         * dispnew.c (direct_output_for_insert): Don't use this
5819         optimization for rows that overlap others.
5820         (update_window_line): Return non-zero if display has changed.
5821         (update_text_area): Ditto.
5822         (update_window): Record if display has been changed.
5824         * dispextern.h (MATRIX_ROW_OVERLAPPING_P): New.
5826         * dispextern.h (struct redisplay_interface): Add
5827         fix_overlapping_area.
5829         * xterm.c (x_append_glyph): Set glyph flag overlaps_vertically_p.
5831         * dispextern.h (struct glyph): Add overlaps_vertically_p.
5833         * xterm.c (x_produce_image_glyph): Compute iterator's physical
5834         ascent and descent.
5835         (x_produce_stretch_glyph): Ditto.
5836         (x_produce_glyphs): Ditto.
5838         * xdisp.c (init_iterator): Reset physical line height info
5839         after producing special glyphs.
5840         (display_toolbar_line): Set physical line height info.
5841         (compute_line_metrics): Ditto.
5842         (display_line): Ditto.
5843         (display_string): Ditto.
5845         * term.c (produce_glyphs): Set iterator's physical height
5846         information.
5848         * dispnew.c (blank_row): Compute glyph row's physical height.
5849         (row_equal_p): Take physical row heights into account.
5850         (direct_output_for_insert): Ditto.
5851         (update_text_area): Ditto.
5853         * dispextern.h (struct glyph_row): Add phys_ascent and
5854         phys_height.
5855         (struct it): Add phys_ascent, phys_descent, max_phys_ascent,
5856         max_phys_descent.
5858 1999-08-04  Stefan Monnier  <monnier@cs.yale.edu>
5860         * buffer.c (switch_to_buffer_1): New subroutine, taken out from
5861         Fswitch_to_buffer.
5862         (no_switch_buffer): New function.
5863         (Fswitch_to_buffer): Call them.  Don't get confused
5864         by "same-window" buffers in a dedicated frame.
5866         * window.c (display-buffer): Don't get confused
5867         by "same-window" buffers in a dedicated frame.
5869 1999-08-04  Andreas Schwab  <schwab@gnu.org>
5871         * insdel.c (insert_from_string_1): Check gap size against number
5872         of outgoing bytes, not incoming bytes.
5874 1999-08-03  Tom Breton  <tob@world.std.com>
5876         * lread.c (read1): Added circular reading code to #N=.
5877         (SUBSTITUTE): New macro.
5878         (seen_list): New variable.
5879         (substitute_object_in_subtree): New function.
5880         (substitute_object_recurse): New function.
5881         (substitute_in_interval): New function.
5883 1999-08-02  Eli Zaretskii  <eliz@gnu.org>
5885         * Makefile.in (frame.o, sysdep.o, xfaces.o): Depend on dosfns.h.
5887         * frame.c (make_terminal_frame): Don't call init_frame_faces if
5888         noninteractive, for termcap frames as well.
5890         * sysdep.c (init_sys_modes): Call init_frame_faces for termcap
5891         frames.
5893 1999-08-01  Richard Stallman  <rms@gnu.org>
5895         * fns.c (internal_equal): Correct overlay comparison.
5897 1999-07-31  Richard M. Stallman  <rms@gnu.org>
5899         * xfns.c (x_set_internal_border_width): 
5900         Call do_pending_window_change.  Don't block input, don't call XFlush.
5901         (x_set_vertical_scroll_bars): Call do_pending_window_change.
5902         (x_set_scroll_bar_width, x_set_font): Likewise.
5904         * frame.c (Fset_frame_height): Call do_pending_window_change.
5905         (Fset_frame_width, Fset_frame_size): Likewise.
5907         * xterm.c (x_set_window_size): When calling change_frame_size,
5908         specify 1 for DELAY.
5910         * widget.c (EmacsFrameSetCharSize): Don't call
5911         do_pending_window_change here.
5913 1999-07-30  Dave Love  <fx@gnu.org>
5915         * config.in: Add HAVE_STDLIB_H.
5917 1999-07-30  Richard M. Stallman  <rms@gnu.org>
5919         * process.c (create_process): Detect failure of `pipe'.
5921 1999-07-30  Keisuke Nishida  <kei@psn.net>
5923         * alloc.c (allocate_vectorlike): Add missing increment.
5925         * data.c (Fdefalias): Call Ffset instead of duplicating code.
5927         * keymap.c (get_keymap_1, get_keyelt): Check the type of OBJECT
5928         before calling indirect_function.
5930 1999-07-30  Eli Zaretskii  <eliz@gnu.org>
5932         * dispextern.h (load_color, lookup_derived_face): Declare
5933         prototypes.
5935         * dispnew.c (init_display) [MSDOS]: Don't initialize frame faces,
5936         it will be done later.
5938         * frame.c (make_terminal_frame) [MSDOS]: Don't call
5939         init_frame_faces if non-interactive.
5940         (Fframe_parameters) [MSDOS]: Replace indexing into colornames[]
5941         array with a call to msdos_stdcolor_name.  The font name is now
5942         "ms-dos", consistent with realize_tty_face.
5944         * keyboard.c (cmd_error_internal): Don't kill Emacs if this is an
5945         MSDOS frame.
5947         * window.c (Fset_window_configuration) [MSDOS]: Don't call
5948         x_set_toolbar_lines.
5950         * xfaces.c (load_color): Remove static from definition and remove
5951         prototype.
5952         [MSDOS]: Add a DOS-specific version of load_color.
5953         (lookup_face): Replace FRAME_TERMCAP_P with !FRAME_WINDOW_P.
5954         (lookup_derived_face): New function.
5955         (realize_default_face): Support MSDOS frames.
5956         [MSDOS]: If fore/background colors are unspecified, inherit them
5957         from the frame.
5958         (realize_face): Support MSDOS frames.
5959         (realize_tty_face): Support MSDOS frames.
5960         [MSDOS]: If the face color is not in Vface_tty_color_alist, call
5961         load_color to try to find a suitable approximation.  If the face
5962         is inverse-video, swap the foreground and background colors.
5964         * dosfns.c (msdos_stdcolor_name, msdos_stdcolor_idx): New
5965         functions.
5967         * dosfns.h (msdos_stdcolor_name, msdos_stdcolor_idx): Declare.
5969         * msdos.h: Remove redundant declarations (most of them are now in
5970         dispextern.h).
5972         * msdos.c (IT_set_face): Rewritten for the new redisplay engine.
5973         Use default frame colors if the face doesn't specify them; invert
5974         the colors if highlight is ON.
5975         (IT_write_glyphs): Rewritten for the new redisplay engine.
5976         (IT_change_line_highlight): Add (unused) parameter Y, since that's
5977         how the hook is called by term.c.
5978         (IT_copy_glyphs): New function, copies an area of the display in
5979         video RAM.
5980         (IT_insert_glyphs): Rewritten to DTRT instead of aborting, since
5981         redisplay now calls it even if char_ins_del_ok is zero.
5982         (IT_set_frame_parameters): Prototype changed.  Calls the new
5983         load_color.  Puts the new fore/background colors into the default
5984         face on current frame.
5985         (IT_menu_display): Rewritten to handle the new struct glyph
5986         instead of a char array.
5987         (XMenuActivate): Call lookup_derived_face to create and use
5988         special faces for the pop-up and drop-down menus.
5990 1999-07-29  Gerd Moellmann  <gerd@gnu.org>
5992         * xterm.c (x_set_toolkit_scroll_bar_thumb): Don't call
5993         XawScrollbarSetThumb if thumb parameters haven't changed because
5994         that function apparently isn't optimized for this case.
5996 1999-07-29  Eli Zaretskii  <eliz@gnu.org>
5998         * msdos.c (getdefdir): Don't return failure indication when
5999         _fixpath sets errno to ENOSYS.
6001 1999-07-28  Gerd Moellmann  <gerd@gnu.org>
6003         * xdisp.c (string_char_and_length): New.  Use it everywhere
6004         instead of STRING_CHAR_AND_LENGTH in xdisp.c.
6006 1999-07-28  Kenichi Handa  <handa@etl.go.jp>
6008         * fns.c (count_combining): New function.
6009         (struct textprop_rec): New structure.
6010         (concat): Copy text properties correctly when byte combining
6011         occurs.
6013 1999-07-28  Gerd Moellmann  <gerd@gnu.org>
6015         * xterm.c (x_setup_relief_color): Don't try smart color allocation
6016         if display is mono.
6017         (x_draw_row_bitmaps): If face has stipple, don't switch
6018         to foreground color for clearing areas, and set the fill style.
6020         * xfaces.c (load_face_colors): Load background color if setting
6021         stipple, too.
6022         (prepare_face_for_display): Use FillOpaqueStippled instead of 
6023         FillStippled.
6025 1999-07-26  Ken'ichi Handa  <handa@gnu.org>
6027         * xterm.c (x_find_ccl_program): Add casting.
6029         * w32fns.c (w32_find_ccl_program): Add casting.
6031 1999-07-27  Gerd Moellmann  <gerd@gnu.org>
6033         * dispextern.h (struct glyph_row): Flag internal_border_p removed.
6035         * xfns.c (x_create_tip_frame): Don't set bitmapIcon resource
6036         because this will try to access a nonexisting widget.
6038 1999-07-26  Markus Rost  <rost@gnu.org>
6040         * fns.c (Fgethash): Fix order of variables (patch by gerd). 
6041         (Fputhash): Ditto.
6042         (Fremhash): Ditto.
6044 1999-07-26  Gerd Moellmann <gerd@gnu.org>
6045         
6046         * widget.c (EmacsFrameSetCharSize): Don't add XtNborderWidth
6047         value to frame width and height.
6049         * xterm.c (x_get_glyph_string_clip_rect): Take internal border
6050         into account for full-width windows.  Don't add scroll bar width
6051         to width of clip rect.
6052         (x_draw_glyph_string_box): Add 1 to right x of full width lines.
6053         (x_set_glyph_string_background_width): Add 1 to background width.
6054         (x_draw_glyphs): Take internal border into account for full-width
6055         lines.
6057 1999-07-26  Richard M. Stallman  <rms@gnu.org>
6059         * xfns.c (x_set_mouse_color): Always unload the old color.
6060         Don't allow nil as color value.
6061         (x_set_cursor_color, x_set_background_color, x_set_foreground_color): 
6062         Always unload the old color.
6064         * indent.c (Fmove_to_column): Extend end of line only if FORCE is t.
6066 1999-07-26  Karl Heuer  <kwzh@gnu.org>
6068         * fns.c (Fy_or_n_p): Doc fix.
6070 1999-07-26  Kenichi Handa  <handa@etl.go.jp>
6072         * ccl.h (setup_ccl_program): The type is changed to `int'.
6074         * ccl.c (ccl_driver) <CCL_Call>: Now CCL program ID to call may be
6075         stored in the following CCL code.  Adjusted for the change of
6076         Vccl_program_table.
6077         (resolve_symbol_ccl_program): Adjusted for the new style of
6078         embedded symbols (SYMBOL . PROP) in CCL compiled code.   Return Qt
6079         is resolving failed.
6080         (ccl_get_compiled_code): New function.
6081         (setup_ccl_program): Function type changed from `void' to `int'.
6082         Resolve symbols in CCL_PROG.
6083         (Fccl_program_p): New function.
6084         (Fccl_execute): Get compiled CCL code by just calling
6085         setup_ccl_program.
6086         (Fccl_execute_on_string): Likewise.
6087         (Fregister_ccl_program): Adjusted for the change of
6088         Vccl_program_table.
6090         * coding.c (setup_coding_system): Get compiled CCL code by just
6091         calling setup_ccl_program.
6093         * xterm.c (x_find_ccl_program): Get compiled CCL code by just
6094         calling setup_ccl_program.
6096         * w32fns.c (w32_find_ccl_program): Get compiled CCL code by just
6097         calling setup_ccl_program.
6099 1999-07-23  Gerd Moellmann  <gerd@gnu.org>
6101         * xfaces.c (frame_update_line_height): Just use the height of the
6102         frame's fontset or font, instead of taking face fonts into
6103         account.
6105         * xdisp.c (get_next_display_element): Display DEL as `^?'.
6107 1999-07-23  Richard M. Stallman  <rms@gnu.org>
6109         * window.c (Fsplit_window): For default size, round up for left window.
6111 1999-07-21  Joe Ramey  <ramey@ti.com>
6113         * filelock.c (lock_if_free): Return -1 if check_lock_owner
6114         has returned -1 (lockfile exists but is not a symlink?).
6116 1999-07-20  Gerd Moellmann  <gerd@gnu.org>
6118         * xterm.c (x_draw_bar_cursor): Use scratch_cursor_gc to
6119         because of a change in cursor_gc made in 20.4.
6121 1999-07-19  Gerd Moellmann  <gerd@gnu.org>
6123         * xterm.c (x_calc_absolute_position): Subtract menu bar height
6124         for YNegative, if using X toolkit.
6126         * xfns.c (x_real_positions): Don't subtract window borders 
6127         from positions returned.
6129 1999-07-17  Gerd Moellmann  <gerd@gnu.org>
6131         * xrdb.c (x_load_resources): Set double-click time defaults
6132         for Motif list boxes from double-click-time.
6134         * fns.c (Vhash_table_tests): Remvoed.
6135         (Qhash_table_test): New.
6136         (syms_of_fns): Initialize Qhash_table_test.
6137         (Fmake_hash_table): Look up user-defined tests in symbol prop
6138         `hash-table-test'.
6139         (Fdefine_hash_table_test): Store test and hash function as
6140         symbol prop `hash-table-test'.
6141         (make_hash_table): Add parameters user_test and user_hash.
6143         * window.c (set_window_buffer): Set window margins for tty
6144         frames, too.
6145         (Fset_window_margins): Ditto.
6147         * term.c (append_glyph): Use glyph area of iterator instead of
6148         always TEXT_AREA.
6150         * dispnew.c (update_frame_1): Add left margin width to cursor
6151         hpos.
6152         (direct_output_for_insert): Ditto.
6153         (direct_output_forward_char): Ditto.
6155         * dispnew.c (adjust_glyph_matrix): Set glyph matrix' top_line_p.
6157         * dispextern.h (struct glyph_matrix): Add top_line_p.
6159 1999-07-16  Gerd Moellmann  <gerd@gnu.org>
6161         * frame.h (FRAME_WINDOW_REDISPLAY_P): Removed.  Use FRAME_WINDOW_P
6162         instead.
6164         * fns.c (cmpfn_eq): Add hash code parameters.
6165         (cmpfn_eql): Ditto.
6166         (cmpfn_equal): Ditto, and compare hash codes before calling Fequal.
6167         (cmpfn_user_defined): Likewise.
6169 1999-07-15  Gerd Moellmann  <gerd@gnu.org>
6171         * lisp.h (DEFAULT_REHASH_THRESHOLD): Changed to 0.8.
6173         * fns.c (maybe_resize_hash_table): Correct computation of
6174         index vector size.
6175         (make_hash_table): Ditto.
6176         (Fmakehash): New.
6178         * xdisp.c (echo_area_display): Don't call redraw_garbaged_frames.
6180         * alloc.c (gc_sweep): Call sweep_weak_hash_tables.
6181         (survives_gc_p): Make it externally visible.
6182         (mark_object): Ditto.
6184         * fns.c (remove_hash_entry): Removed.
6185         (sweep_weak_hash_tables): New.
6187         * print.c (print): Print more information about hash tables.
6189         * xfns.c (image_spec_hash): Removed.
6190         (lookup_image): Use sxhash instead of image_spec_hash.
6191         (image_spec_equal_p): Removed.
6192         (lookup_image): Use Fequal instead of image_spec_equal_p.
6194 1999-07-14  Gerd Moellmann  <gerd@gnu.org>
6196         * lisp.h (P_): Moved to top of file.
6198         * fns.c (make_hash_table): Set new members.
6200         * alloc.c (mark_object): Mark hash table's user_hash_function.
6201         Mark index vector for weak hash tables.
6203         * lisp.h (struct Lisp_Hash_Table): Add user_cmp_function,
6204         user_hash_function, cmpfn, and hashfn.
6206         * fns.c (build_hash): Removed.
6207         (hash_test): Removed.
6208         (cmpfn_eq, cmpfn_eql, cmpfn_equal, cmpfn_user_defined): New.
6209         (hashfn_eq, hashfn_eql, hashfn_equal, hashfn_user_defined): New.
6211 1999-07-13  Gerd Moellmann  <gerd@gnu.org>
6213         * alloc.c (survives_gc_p): New.
6215         * print.c (print): Add hash table handling.
6217         * alloc.c (mark_object): Add code to mark hash tables.
6219         * lisp.h (GC_HASH_TABLE_P): New.
6221         * emacs.c (main): Call init_fns.
6223         * fns.c (init_fns): New.
6225         * fns.c: Add hash table implementation.
6227         * lisp.h (PVEC_HASH_TABLE): New.
6228         (struct Lisp_Hash_Table): New.
6229         (XHASH_TABLE): New.
6230         (XSET_HASH_TABLE): New.
6231         (HASH_TABLE_P): New.
6232         (CHECK_HASH_TABLE): New.
6233         (DEFAULT_HASH_SIZE): New.
6234         (DEFAULT_REHASH_THRESHOLD): New.
6235         (DEFAULT_REHASH_SIZE): New.
6237         * xterm.c (x_draw_glyphs): Add parameters real_start and real_end.
6238         (x_write_glyphs): Compute overwritten cursor using real start
6239         and end positions of display.
6240         (x_insert_glyphs): Ditto.
6242 1999-07-10  Gerd Moellmann  <gerd@gnu.org>
6244         * keyboard.c (read_char): Use message3_nolog to show help-echo.
6246         * dispnew.c (blank_row): Add y-position as parameter.  Compute
6247         visible height.
6249         * xdisp.c (next_element_from_string): Give padding spaces
6250         a position of -1.
6252         * dispnew.c (adjust_glyph_matrix): Some work to support 
6253         marginals areas on tty frames in a future version.
6254         (allocate_matrices_for_frame_redisplay): Ditto.
6256         * xdisp.c (display_line): At ZV, set glyph row's displays_text_p
6257         to zero if number of glyphs in the row is <= 1.
6259 1999-07-09  Gerd Moellmann  <gerd@gnu.org>
6261         * dispnew.c (buffer_posn_from_coords): Take left marginal area
6262         into account.
6264         * xdisp.c (handle_display_prop): Don't reset area if handing
6265         a property from a string that came from a `display' property.
6266         (handle_single_display_prop): Don't handle recursive `display'
6267         properties.
6268         (handle_single_display_prop): Handle some display property
6269         forms for terminal frames.
6270         (Qimage): Moved here from xfns.c.
6272         * dispextern.h (struct it): New field string_from_display_prop_p.
6274         * xterm.c (x_clip_to_row): Don't let clip_rect include top
6275         line.
6277 1999-07-08  Gerd Moellmann  <gerd@gnu.org>
6279         * xdisp.c (handle_single_display_prop): Handle `:when FORM'.
6281         * window.c (set_window_buffer): Set window's vscroll to zero.
6283         * xdisp.c (QCwhen): New.
6284         (display_prop_end): New.
6285         (handle_single_display_prop): Use it.
6286         (debug_method_add): Print buffer name if tracing.
6287         (try_window_reusing_current_matrix): Compute visible height
6288         of reused rows.  Fix cursor position calculation in case of
6289         top-line.
6291         * dispextern.h (struct redisplay_interface): Add parameter
6292         cursor_on_p to update_window_end_hook.
6294         * xterm.c (x_update_window_end): Add parameter cursor_on_p.
6296 1999-07-07  Gerd Moellmann  <gerd@gnu.org>
6298         * xdisp.c (redisplay_internal): Ensure that redisplayinp_p 
6299         doesn't become negative when decrementing it.
6301         * eval.c (Fsignal): Reset redisplaying_p to zero.
6303         * xdisp.c (try_window_reusing_current_matrix): Call hooks
6304         for window update.
6305         (try_window_id): Ditto.
6307         * xterm.c (x_clear_end_of_line): Handle top-line correctly.
6308         (x_scroll_run): Ditto.
6309         (any_help_event_p): New.
6310         (x_initialize): Set it to zero.
6311         (XTread_socket): Clear help echo only if any_help_event_p.
6313         * xdisp.c (init_iterator): Set top_line_p.
6314         (start_display): Use correct initial y if top-line is present.
6315         (make_cursor_line_fully_visible): Bug fixes for top-line.
6316         (try_scrolling): Ditto.
6317         (try_window_reusing_current_matrix): Ditto.
6319         * dispextern.h (struct it): Add top_line_p.
6321         * dispnew.c (shift_glyph_matrix): Move some computations out
6322         of the loop.
6324         * dispnew.c (margin_glyphs_to_reserve): Use NUMBERP and 
6325         XFLOATINT.
6327 1999-07-06  Gerd Moellmann  <gerd@gnu.org>
6329         * dispnew.c (update_frame_1): When setting cursor in echo area,
6330         skip only over padding spaces at the end.
6332         * xfaces.c (realize_tty_face): Set face's font_name field to
6333         "tty".
6335         * term.c (update_end): Turn cursor on only if selected window's
6336         cursor_off_p flag is not set.
6338 1999-07-05  Gerd Moellmann  <gerd@gnu.org>
6340         * term.c (TS_cursor_visible): Renamed from TS_visual_mode.
6341         (TS_cursor_normal): Renamed from TS_end_visual_mode.
6342         (TS_cursor_invisible):  New.
6343         (term_init): Initialize TS_cursor_invisible.
6344         (tty_hide_cursor): New.
6345         (tty_show_cursor): New.
6346         (update_end): Show tty cursor.
6347         (update_begin): Hide tty cursor to prevent cursor flickering
6348         during redisplays triggered by timers (stealth fontification).
6350         * keyboard.c (make_lispy_event) <TOOLBAR_EVENT>: Apply modifiers.
6352         * xterm.c (XTread_socket) [USE_MOTIF] <KeyPress>: Catch events
6353         in scroll bars.
6354         (x_handle_toolbar_click): Set modifier bits.
6356 1999-07-04  Gerd Moellmann  <gerd@gnu.org>
6358         * keyboard.c (kbd_store_ptr): Declare it as a volatile pointer
6359         instead of a pointer to a volatile input_event.
6360         (kbd_buffer_store_event): Remove volatile modifier from 
6361         declaration of local variable `sp'.
6362         (Fdiscard_input): Don't cast when assigning kbd_store_ptr
6363         to kbd_fetch_ptr.
6365 1999-07-03  Gerd Moellmann  <gerd@gnu.org>
6367         * xdisp.c (try_window_id): Set beg_unchanged and end_unchanged
6368         only if buffer is modified.  Return quickly if changes are
6369         above window start.
6371 1999-07-02  Gerd Moellmann  <gerd@gnu.org>
6373         * dispextern.h (HSCROLL_WINDOWS): Removed.
6375         * xdisp.c (mark_window_display_accurate): Don't set
6376         w->region_showing.
6377         (redisplay_internal): Don't call redraw_garbaged_frames.
6379 1999-07-01  Gerd Moellmann  <gerd@gnu.org>
6381         * xdisp.c (echo_area_display): Don't display truncation marks
6382         for messages because 20.4 doesn't do it either.
6383         (redisplay_window): Case same window start.  Instead of giving
6384         up when cursor is partially visible, make it fully visible.
6385         (mark_window_display_accurate): Some cleanup.  Record window's
6386         last cursor information.
6387         (debug_method_add): Improved.
6388         (redisplay_internal): Record last cursor info only if not
6389         consider_all_windows_p.
6391         * dispnew.c (update_window): Update top line after scrolling.
6392         (blank_row): Renamed from make_empty_enabled_row.
6393         (increment_glyph_row_buffer_positions): Increment positions
6394         in buffers, only.
6396         * window.c (Fcoordinates_in_window_p): Add top-line to doc
6397         string.
6399 1999-06-30  Gerd Moellmann  <gerd@gnu.org>
6401         * dispnew.c (update_window): Check that updated row is visible.
6403         * xterm.c (x_draw_row_bitmaps): Check for invisible rows at
6404         top of window differently.
6406         * xdisp.c (try_window_reusing_current_matrix): Don't do it
6407         if region is showing.
6409         * dispnew.c (adjust_glyph_matrix): Check w->vscroll when
6410         avoiding matrix reallocation.  Set window_vscroll in matrix.
6412         * dispextern.h (struct glyph_matrix): Add member window_vscroll.
6414         * xdisp.c (debug_method_add): New.
6415         (debug_redisplay_method): Removed.
6416         (try_window_reusing_current_matrix): Handle case where old
6417         window start is the same as new window start.
6419         * dispextern.h (struct glyph_matrix) [GLYPH_DEBUG]: Make `method'
6420         an array instead of a pointer.
6422         * xfns.c (Fx_show_tip): Undo previous change.
6424         * xterm.c (x_append_glyph): Clear glyph->u.val.
6426         * dispextern.h (struct glyph): Increase size of face_id bit-field
6427         for CHAR_GLYPH to 12.
6429 1999-06-29  Gerd Moellmann  <gerd@gnu.org>
6431         * xfaces.c (x_charset_registry): Make it externally visible.
6433 1999-06-28  Gerd Moellmann  <gerd@gnu.org>
6435         * dispnew.c (update_window): Use mode_line_p flag of rows 
6436         instead of WINDOW_WANTS_MODELINE_P.
6438         * xterm.c (clear_mouse_face): Make externally visible.
6440         * xfns.c (Fx_show_tip): Clear mouse face before showing tip.
6442         * xterm.c (expose_line): Handle exposure of top-lines.
6444         * xterm.c (XTframe_up_to_date): Don't call note_mouse_highlight
6445         if mouse_face_mouse_frame is null.
6447         * xdisp.c (redisplay_window): If window is echo_area_window,
6448         and update_mode_line is set, update menubar and toolbar.
6450         * dispnew.c (space_glyph): Set its charpos to -1.
6451         (update_frame_1): Ignore trailing padding spaces.
6453         * xdisp.c (next_element_from_c_string): Set position of padding
6454         glyphs to -1.
6456 1999-06-27  Gerd Moellmann  <gerd@gnu.org>
6458         * xfns.c (x_laplace_read_row): Use XQueryColors instead of
6459         XQueryColor.
6461         * xdisp.c (display_menu_bar): Remove unwarranted assertion.
6462         (set_cursor_from_row): Skip over glyphs having a null object at
6463         the start of rows.
6464         (insert_left_trunc_glyphs): Use charpos < 0 to indicate truncation
6465         glyphs.
6466         (handle_invisible_prop): Compute next change only when needed.
6467         (handle_face_prop): Don't correct DEFAULT_FACE_ID if in the mode
6468         line.
6470 1999-06-26  Gerd Moellmann  <gerd@gnu.org>
6472         * xrdb.c (x_load_resources): Don't set resource for double-click
6473         time.
6475         * xdisp.c (try_window_id): Return quickly if all changes are
6476         below the window's current matrix end.
6478         * dispextern.h (MATRIX_ROW_PARTIALLY_VISIBLE_P): Remove window
6479         parameter.
6481         * xdisp.c (try_window_reusing_current_matrix): Set no_scrolling_p
6482         in desired not in current matrix.
6483         (try_window_reusing_current_matrix): Rotate matrices starting
6484         at start_vpos instead of 0.
6486         * xterm.c (expose_window): Use window_text_bottom_y.
6487         (fast_find_position): Ditto.
6489         * xdisp.c (redisplay_window): Use window_text_bottom_y.
6490         (try_window_reusing_current_matrix): Ditto.
6491         (get_last_unchanged_at_beg_row): Ditto.
6492         (init_iterator): Ditto.
6494         * dispnew.c (allocate_matrices_for_window_redisplay): Allocate one
6495         more row.
6496         (check_matrix_invariants): Use window_text_bottom_y.
6497         (update_window): Ditto.
6498         (scrolling_window): Ditto.
6500         * xdisp.c (window_text_bottom_y): New.
6502 1999-06-25  Gerd Moellmann  <gerd@gnu.org>
6504         * xterm.c (XTread_socket): Set mouse_face_frame to zero after
6505         clearing mouse face.
6506         (XTread_socket) <EnterNotify> [LESSTIF_VERSION]: If
6507         event.xcrossing.focus is not set, and focus is in the menu bar,
6508         set focus frame as if event.xcrossing.focus were set.
6510 1999-06-24  Gerd Moellmann  <gerd@gnu.org>
6512         * keyboard.c (make_lispy_event): Handle mouse on top lines.
6513         * keyboard.c (make_lispy_movement): Ditto.
6515         * window.c (coordinates_in_window): Return 4 if on top line.
6516         (Fcoordinates_in_window_p): Return `top-line' if on top line.
6518         * xdisp.c (window_box_height): Subtract top line height.
6519         (window_box): Add top line height to top y position if top line
6520         exists.
6521         (init_iterator): If base_face_id is TOP_LINE_FACE_ID, set row to
6522         the top line row of the window.  Set initial y-position to
6523         window's top line height plus delta.
6524         (start_display): Choose start glyph row depending on whether
6525         window has a top line.
6526         (try_scrolling): Take top line height into account for aggressive
6527         scrolling.
6528         (compute_window_start_on_continuation_line): Take top line into
6529         account.
6530         (redisplay_window): Ditto.  If top line height has changed, 
6531         trigger a new redisplay.
6532         (try_window_reusing_current_matrix): Take top line into account.
6533         (find_last_row_displaying_text): Ditto.
6534         (get_last_unchanged_at_beg_row): DItto.
6535         (try_window_id): Ditto.
6536         (compute_line_metrics): Ditto.
6538         * dispnew.c (shift_glyph_matrix): Compute visible row height
6539         taking top line of window into account.
6540         (update_window): Update top line.  If scrolling_window detects
6541         that all rows are equal, only set cursor.
6542         (update_window_line): Call after_update_window_line_hook if
6543         mode_line_p flag of rows has changed.
6544         (scrolling_window): Add parameter top_line_p.  Return -1 if
6545         all rows are equal.
6546         (mode_line_string): Add parameter mode_line_p.  Handle strings
6547         in top lines.
6549         * dispextern.h (MATRIX_TOP_LINE_ROW): New.
6550         (MATRIX_FIRST_TEXT_ROW): New.
6551         (MATRIX_ROW_PARTIALLY_VISIBLE_P): Use row's visible_height.
6552         (MATRIX_ROW_PARTIALLY_VISIBLE_AT_TOP_P): New.
6553         (MATRIX_ROW_PARTIALLY_VISIBLE_AT_BOTTOM_P): New.
6554         (MATRIX_TOP_LINE_HEIGHT): New.
6555         (CURRENT_MODE_LINE_HEIGHT): Use estimate_mode_line_height.
6556         (CURRENT_TOP_LINE_HEIGHT): New.
6557         (DESIRED_TOP_LINE_HEIGHT): New.
6558         (WINDOW_DISPLAY_TOP_LINE_HEIGHT): New.
6559         (WINDOW_DISPLAY_HEIGHT_NO_MODE_LINE): Replaces
6560         WINDOW_DISPLAY_TEXT_AREA_PIXEL_HEIGHT.
6561         (WINDOW_DISPLAY_TEXT_HEIGHT): New.
6563         * xterm.c (x_after_update_window_line): Don't draw bitmaps for top
6564         lines.
6565         (x_draw_row_bitmaps): Take top line into account when clearing
6566         bitmap area.
6567         (x_estimate_mode_line_height): Replacement for
6568         x_frame_mode_line_height.
6569         (x_get_glyph_string_clip_rect): Take top line into account.
6570         (x_clear_end_of_line): Ditto.
6571         (note_mode_line_highlight): Add parameter mode_line_p.  Handle
6572         top lines.
6573         (note_mouse_highlight): Call note_mode_line_highlight for top lines.
6574         (x_erase_phys_cursor): Take top line into account.
6576         * xdisp.c (window_box_height): Subtract top line height if
6577         window wants a top line.
6578         (display_mode_lines): New.
6579         (redisplay_window): Call it.
6580         (display_mode_line): Add parameters face_id and format.
6582         * dispextern.h (CURRENT_TOP_LINE_HEIGHT): New.
6583         (MATRIX_TOP_LINE_HEIGHT): New.
6585         * xterm.c (x_frame_mode_line_height): Add parameter face_id.
6587         * term.c (estimate_mode_line_height): Renamed from
6588         frame_mode_line_height.  Add parameter face_id.
6589         (estimate_mode_line_height_hook): Renamed from
6590         frame_mode_line_height_hook.
6591         (produce_special_glyphs_hook): Removed.
6592         (produce_glyphs_hook): Removed.
6594 1999-06-23  Gerd Moellmann  <gerd@gnu.org>
6596         * dispextern.h (WINDOW_WANTS_TOP_LINE_P): New.
6597         (struct glyph_row): Add mode_line_p.
6599         * xfaces.c (realize_basic_faces): Realize face `top-line'.
6600         (Qtop_line): New.
6601         (syms_of_xfaces): Initialize Qtop_line.
6603         * dispextern.h (TOP_LINE_FACE_ID): New.
6605         * buffer.c (init_buffer_once): Set default for
6606         top_line_format to nil.
6607         (init_buffer_once): Init top_line_format.
6608         (default-top-line-format): New.
6609         (top-line-format): New buffer-local variable.
6611         * buffer.h: Add top_line_format.
6613         * xdisp.c (overlay_arrow_changed_p): Removed because not used.
6615 1999-06-17  Dave Love  <fx@gnu.org>
6617         * xfns.c: Move the PNG section before the JPEG one to avoid
6618         problems surrounding setjmp.h/png.h on GNU/Linux.
6619         
6620 1999-06-17  Gerd Moellmann  <gerd@gnu.org>
6622         * xfns.c (x_kill_gs_process): Don't free colors.
6624 1999-06-17  Dave Love  <fx@gnu.org>
6626         * s/gnu-linux.h: Zap spurious ~.
6628 1999-06-16  Gerd Moellmann  <gerd@gnu.org>
6630         * xfns.c (gif_load): Improve multi-image support.
6632 1999-06-15  Gerd Moellmann  <gerd@gnu.org>
6634         * xfns.c (gif_load): Support multi-image files.
6636         * Makefile.in (LIBGIF): Use libungif.
6638         * configure.in (HAVE_GIF): Use libungif instead of libgif
6639         because the former doesn't contain patented compression code.
6641         * xdisp.c (compute_window_start_on_continuation_line): Don't
6642         do it if line start is too far away from window start.
6644 1999-06-14  Gerd Moellmann  <gerd@gnu.org>
6646         * buffer.c (init_buffer_once): Set buffer_local_flags for
6647         scroll_*_aggressively.
6648         (syms_of_buffer): Add DEFVAR_PER_BUFFER for scroll-*-aggressively.
6649         (init_buffer_once): Set defaults for these variables.
6650         (syms_of_buffer): Add default-scroll-*-aggressively.
6652         * buffer.h (scroll_up_aggressively): New.
6653         (scroll_down_aggressively):  New.
6655         * Makefile.in (LIBPNG): Add -lz -lm in case we're linking with
6656         a static PNG library.
6658         * configure.in (HAVE_PNG): Add -lz -lm when checking for PNG lib
6659         in case it's a static library.
6661         * Makefile.in (ctagsfiles): Split so that files starting
6662         with an `x' are found before files starting with `w32'.
6663         (ctagsfiles1): New.
6664         (ctagsfiles2): New.
6665         (TAGS): Use ctagsfiles[12] instead of ctagsfiles.
6667         * xdisp.c (compute_window_start_on_continuation_line): New.
6668         (redisplay_window): Use it.
6669         (INFINITY): New.
6670         (reseat_to_string): Use it.
6671         (hscroll_window_tree): Ditto.
6672         (compute_window_start_on_continuation_line): Ditto.
6673         (redisplay_window): Don't force display with a new window start.
6675 1999-06-06  Gerd Moellmann  <gerd@gnu.org>
6677         * xfns.c (x_report_frame_params): Don't report `outer-window-id'
6678         if widget not present.
6680         * xdisp.c (prepare_menu_bars): Ignore tooltip frame.
6682 1999-06-04  Gerd Moellmann  <gerd@gnu.org>
6684         * xfaces.c (recompute_basic_faces)[GLYPH_DEBUG]: Check return
6685         value of realize_basic_faces.
6686         (load_face_font_or_fontset): Store full font name in face.
6687         (realize_default_face): Use full font name.
6689         * xterm.c (x_produce_glyphs): Set member char_to_display.
6690         (x_append_glyph): Store char_to_display in glyphs.
6692         * dispextern.h (struct it): Add char_to_display.
6694         * xfns.c (x_set_font): Don't call face-set-after-frame-default
6695         if faces haven't been initialized.
6696         (Fx_create_frame): Call face-set-after-frame-default after
6697         faces have been initialized, and widget has been created.
6699         * puresize.h (BASE_PURESIZE): Increased.
6701 1999-06-01  Gerd Moellmann  <gerd@gnu.org>
6703         * xfaces.c (set_lface_from_font_name): Add parameter force_p.
6704         (Finternal_set_lisp_face_attribute): If frame is t when
6705         :font attribute is set, use the selected frame.
6706         (clear_face_cache): Add parameter clear_fonts_p.
6707         (Fclear_face_cache): Add optional parameter thorougly.
6709         * xfaces.c (face_numeric_value): Return -1 if symbol is not
6710         in table.
6711         (Fclear_face_cache): New.
6712         (choose_face_fontset_font): If fontset doesn't contain font
6713         pattern for the given charset, use CHARSET_ASCII.
6714         (Finternal_set_lisp_face_attribute): Fix handling of nil
6715         stipple attribute.
6716         (Finternal_set_lisp_face_attribute): Fix handling of changing
6717         font-related face attributes of the default face.
6718         (set_lface_from_font_name): Set only attributes that aren't
6719         specified.
6721 1999-05-31  Gerd Moellmann  <gerd@gnu.org>
6723         * xfaces.c (SCALABLE_FONTS): Define this to enable scalable
6724         font support.
6725         (Vscalable_fonts_allowed) [SCALABLE_FONTS]: New.
6726         (x_face_list_fonts): Add parameter scalable_fonts_p.  Handle
6727         scalable fonts depending on the setting of SCALABLE_FONTS.
6728         (first_font_matching): List more than one font to find the
6729         first non-scalable matching font.
6730         (sorted_font_list): Let x_face_list_fonts return scalable fonts
6731         depending on SCALABLE_FONTS.
6732         (better_font_p): New parameter compare_pt_p.  If zero, don't
6733         compare point sizes of fonts.
6734         (exact_face_match_p) [SCALABLE_FONTS]: New.
6735         (build_scalable_font_name) [SCALABLE_FONTS]: New.
6736         (may_use_scalable_font_p) [SCALABLE_FONTS]: New.
6737         (best_matching_font) [SCALABLE_FONTS]: Handle scalable fonts.
6738         (syms_of_xfaces):  Add scalable-fonts-allowed.
6740 1999-05-26  Gerd Moellmann  <gerd@gnu.org>
6742         * xfns.c (png_load): Let PNG lib handle gamma.  Construct
6743         mask only if image contains simple transparency information.
6744         Otherwise, combine image with frame background color.
6746         * configure.in (--with-png, HAVE_PNG): New.
6748         * config.in (HAVE_PNG): New.
6750         * Makefile.in: Add PNG library.
6752         * xfns.c: Add PNG support.
6754 1999-05-25  Gerd Moellmann  <gerd@gnu.org>
6756         * xdisp.c (init_xdisp): Initialize echo_area_message and
6757         previous_echo_area_message to nil.
6759         * keyboard.c (read_char): Rename local variable echo_area_message
6760         because it shadows the global one.
6762 1999-05-05  Gerd Moellmann  <gerd@gnu.org>
6764         * xterm.c (note_mode_line_highlight): Restructured.
6766         * window.c (coordinates_in_window): Handle windows that don't have
6767         a mode line because their buffer's mode-line-format is nil.
6768         Recognize the mode line under x positions that correspond to
6769         flags areas and left scroll bar.
6771 1999-05-02  Dave Love  <fx@gnu.org>
6773         * xterm.c (note_mouse_highlight): Separate help-echo processing
6774         from check on mouse-face so that it works generally.
6776 1999-04-21  Gerd Moellmann  <gerd@gnu.org>
6778         * sound.c (Fplay_sound): Run hook play-sound-hook.
6779         (Qplay_sound_hook): New.
6781 1999-04-20  Gerd Moellmann  <gerd@gnu.org>
6783         * xdisp.c (update_echo_area): Handle echo_area_message.
6785 1999-04-19  Gerd Moellmann  <gerd@gnu.org>
6787         * editfns.c (Fmessage): Use message3.
6789         * print.c (printchar): Set echo_area_message to nil.
6790         (strout): Ditto.
6792         * minibuf.c (read_minibuf): Reset echo message strings to nil.
6793         (Fminibuffer_completion_help): Ditto.
6795         * keyboard.c (cmd_error_internal): Set echo_areA_message.
6796         (command_loop_1): Test echo_areA_message.
6797         (read_char): Ditto.
6798         (record_menu_key): Set echo_area_message to nil.
6799         (Fexecute_extended_command): Test echo_area_message.
6800         (Fexecute_extended_command): Handle echo_area_message.
6802         * fileio.c (Fdo_auto_save): Handle the case that echo_area_message
6803         is set.
6805         * editfns.c (Fcurrent_message): If echo_area_message is set,
6806         return a substring of that string.
6808         * dispnew.c (direct_output_for_insert): Test echo_area_message
6809         in addition to echo_area_glyphs.
6810         (set_window_cursor_after_update): Ditto.
6811         (update_frame_1): Ditto.
6813         * alloc.c (Fgarbage_collect): Use message3_nolog to display
6814         old Lisp message string.
6816         * xdisp.c (echo_area_message): New.
6817         (previous_echo_area_message): New.
6818         (syms_of_xdisp): Initialize and staticpro new variables.
6819         (echo_area_display): Display echo_area_message if set.
6820         (message2_nolog): Set echo_area_message and
6821         previous_echo_area_message.
6822         (echo_area_display): Set previous_echo_area_message.
6823         (redisplay_internal): Display echo area if echo_area_message
6824         or previous_echo_area_message are set.
6825         (redisplay_preserve_echo_area): Test/set echo_area_message and
6826         previous_echo_area_message.
6827         (redisplay_window): Test echo_area_message.
6828         (message3_nolog): New.
6829         (message3): New.
6831         * editfns.c (Fformat): Add text properties to the result string
6832         from properties of the format string and properties of string
6833         arguments.
6835         * textprop.c (text_property_list): New.
6836         (add_text_properties_from_list): New.
6837         (extend_property_ranges): New.
6839 1999-03-29  Gerd Moellmann  <gerd@gnu.org>
6841         * xfaces.c (Qraised, Qsunken, QCshadow): Removed.
6842         (QCline_width, QCstyle, Qpressed_button, Qreleased_button): New.
6843         Use these symbols for the box face attribute instead of the
6844         removed ones.
6846 1999-03-12  Gerd Moellmann  <gerd@gnu.org>
6848         * xfaces.c (realize_tty_face): Don't set alt_char_p of face.
6849         Correct wrong test for slant.
6851 1999-03-10  Gerd Moellmann  <gerd@gnu.org>
6853         * xfaces.c: Use `unspecified' for unspecified face attributes,
6854         use t and nil for on/off.
6856 1999-03-06  Gerd Moellmann  <gerd@gnu.org>
6858         * buffer.c (syms_of_buffer): Extend doc string of
6859         mode-line-format.
6861         * xfaces.c (x_face_list_fonts): New parameter try_alternatives_p.
6862         (first_font_matching): New.
6863         (set_lface_from_font_name): Use it if font name is a pattern.
6864         (font_field_wildcard_p): Removed.
6866         * dispnew.c (shift_glyph_matrix): Add `window' parameter.
6867         Recompute visible height of rows.
6869         * xterm.c (note_mouse_highlight): Reorder code for help-echo.
6870         Don't accept non-strings for help-echo from overlays.
6872 1999-03-04  Dave Love  <fx@gnu.org>
6874         * xterm.c (note_mouse_highlight): Check overlays for help-text
6875         property.
6876         (XTread_socket): Fix compiler warning.
6877         
6878 1999-03-05  Gerd Moellmann  <gerd@gnu.org>
6880         * xterm.c (note_mouse_highlight): Don't restrict number of 
6881         overlay to 10.  Call overlays_at so that it doesn't try to
6882         extend the vector.
6884         * xdisp.c (compute_line_metrics): Compute glyph row's visible
6885         height.
6887         * dispnew.c (row_equal_p): Compare visible row height, only.
6888         (update_text_area): Draw whole line if visible heights of
6889         rows differ.
6890         (update_window_line): Call after_update_window_line_hook
6891         if visible row height has changed.
6893         * dispextern.h (MATRIX_ROW_VISIBLE_HEIGHT): Removed.
6894         (struct glyph_row): New member visible_height.
6896         * xfaces.c (font_field_wildcard_p): New.
6897         (set_lface_from_font_name): Remove parameter force_p.  Accept
6898         font names containing wildcards.
6900 1999-03-04  Gerd Moellmann  <gerd@gnu.org>
6902         * xterm.c (x_after_update_window_line): Clear internal border
6903         when windows_or_buffers_changed.
6905         * dispextern.h (WINDOW_WANTS_MODELINE_P): Return zero if window's
6906         buffer has a nil mode_line_format.
6908 1999-03-03  Gerd Moellmann  <gerd@gnu.org>
6910         * xterm.c (x_setup_relief_colors): Use either background color
6911         or specified color.
6913         * xfaces.c (realize_x_face): Set face->use_box_color_for_shadows_p.
6915         * dispextern.h (struct face): Add use_box_color_for_shadows_p.
6917         * xterm.c (x_draw_box_rect): New.
6918         (x_draw_glyph_string_box): Renamed from
6919         x_draw_glyph_string_relief.  Call x_draw_box_rect.
6921         * xfns.c (QCrelief): New.
6922         (syms_of_xfns): Initialize it.
6924         * dispextern.h (struct glyph): Rename left_shadow_p to
6925         left_box_line_p, right_shadow_p to right_box_line_p.
6926         (MAX_RELIEF_THICKNESS): Removed.
6927         (struct it): Rename members having `relief' in their names
6928         to contain `box' instead.
6930         * xfaces.c (realize_x_face): Handle new box attribute values.
6931         (QCrelief, Qbox): Removed.
6932         (QCshadow, QCcolor, Qraised, Qsunken): New.
6933         (syms_of_xfaces): Initialize new symbols.
6935 1999-03-02  Gerd Moellmann  <gerd@gnu.org>
6937         * dispextern.h (LFACE_RELIEF_INDEX): Removed.
6939         * xfaces.c (LFACE_RELIEF): Removed.
6940         (merge_face_vector_with_property): Remove handling of `:relief'.
6941         (Finternal_set_lisp_face_attribute): Ditto.
6942         (Finternal_set_lisp_face_attribute_from_resource): Ditto.
6943         (Finternal_get_lisp_face_attribute): Ditto.
6944         (realize_default_face): Ditto.
6945         (lface_hash): Don't compute hash from relief.
6947         * dispextern.h (struct face): Replace member `relief' by
6948         `box_line_width'.  Add member `box'.
6949         (face_box_type): New.
6951         * xterm.c (x_produce_glyphs): If face has overline, add overline
6952         thickness + 1 to ascent.
6954 1999-03-01  Gerd Moellmann  <gerd@gnu.org>
6956         * xterm.c (x_draw_glyph_string): Draw underline, overline,
6957         strike-through, and boxes.
6958         (x_draw_glyph_string_underline): Removed.
6960         * xfaces.c (QCoverline, QCstrike_through, QCbox): New.
6961         (Qoverline, Qstrike_through, Qbox): New.
6962         (syms_of_xfaces): Define these symbols.
6963         (check_lface_attrs): Add checks for overline, strike-through,
6964         and box.
6965         (Finternal_set_lisp_face_attribute): Set new attributes.
6966         (LFACE_OVERLINE, LFACE_STRIKE_THROUGH, LFACE_BOX): New.
6967         (load_color): Handle new attributes.
6968         (realize_x_face): Ditto.
6969         (merge_face_vector_with_property): Ditto.
6970         (free_face_colors): Ditto.
6971         (Finternal_set_lisp_face_attribute_from_resource): Ditto.
6972         (Finternal_get_lisp_face_attribute): Ditto.
6973         (Finternal_lisp_face_attribute_values): Ditto.
6975         * dispextern.h (lface_attribute_index): Add enumerators for
6976         overstrike, strike-through, and box.
6977         (struct face): Add members for overline, strike-through, and
6978         box.
6980 1999-02-17  Dave Love  <fx@gnu.org>
6982         * s/gnu-linux.h s/gnu.h s/irix5-0.h s/netbsd.h s/sco4.h s/sco5.h
6983         s/template.h (NARROWPROTO): Define on the basis of relevant X cf
6984         files.
6986 1999-02-16  Gerd Moellmann  <gerd@gnu.org>
6988         * keyboard.c (toolbar_items): Call access_keymap with third
6989         parameter 1, so that we don't get inherited toolbar item
6990         definitions.
6992         * xdisp.c (redisplay_internal): In optimization 1, don't decrement
6993         the window end vpos when in empty first line of window.
6995 1999-02-15  Gerd Moellmann  <gerd@gnu.org>
6997         * xfaces.c (set_font_frame_param): New.
6998         (Finternal_set_lisp_face_attribute): Call it.
7000 Sun Feb 14 10:54:02 1999  Masatake Yamato  <masata-y@is.aist-nara.ac.jp>
7002         * xfaces.c (Finternal_set_lisp_face_attribute_from_resource):
7003         Accept specifications of color for underline.
7005 1999-02-13  Gerd Moellmann  <gerd@gnu.org>
7007         * xfaces.c (Finternal_set_lisp_face_attribute): If parameter
7008         `frame' is t, operate on face defaults for new frames.  If it
7009         is nil, operate on the selected frame.
7011 1999-02-12  Gerd Moellmann  <gerd@gnu.org>
7013         * dispnew.c (check_matrix_invariants): Put it in #if 0.
7014         (update_window): Put the call to check_matrix_invariants in #if 0.
7016 Sun Feb  7 09:58:49 1999  Masatake Yamato  <masata-y@is.aist-nara.ac.jp>
7018         * dispextern.h: Remove all else block of UNDERLINE_COLOR.
7019         Remove definition of UNDERLINE_COLOR.
7021 Mon Jan  4 04:43:41 1999  Masatake Yamato  <masata-y@is.aist-nara.ac.jp>
7023         * xfaces.c (free_face_colors): Free the color for underline.
7025         * xterm.c (x_draw_glyph_string_underline): Set the color for underline
7026         to the GC.
7028 Sun Jan  3 08:41:10 1999  Masatake Yamato  <masata-y@is.aist-nara.ac.jp>
7030         * dispextern.h  (UNDERLINE_COLOR): Defined.
7031         (struct face): Added two new members.
7032         underline_color, underline_defaulted_p.
7034         * xfaces.c (merge_face_vector_with_property): 
7035         (check_lface_attrs): Accept the string value for underline.
7036         (Finternal_set_lisp_face_attribute): Likewise. 
7038         * xfaces.c (load_color): Change the last argument type to enum
7039         lface_attribute_index from int. And addec code for underling coloring.
7040         (load_face_colors): Pass LFACE_*_INDEX to load_color.
7041         
7042 1999-02-12  Gerd Moellmann  <gerd@gnu.org>
7044         * xfns.c (Fx_image_header): Removed.
7046 1999-02-07  Gerd Moellmann  <gerd@gnu.org>
7048         * xterm.c: Don't include <bitmaps/gray>.
7049         (x_term_init): Use gray_bitmap_width and gray_bitmap_height.
7051         * xfns.c (Fx_image_header): Add missing `\n\'.
7052         (gray_bitmap_width, gray_bitmap_height, gray_bitmap_bits): New.
7054 1999-02-01  Gerd Moellmann  <gerd@gnu.org>
7056         * xterm.c (x_scroll_bar_create): Set background pixel from
7057         specified scroll bar color.
7058         (x_scroll_bar_set_handle): Use scroll bar foreground color.
7060         * xfns.c (x_set_scroll_bar_foreground): Remove all scroll bars.
7061         (x_set_scroll_bar_background): Ditto.
7063         * xterm.c (x_create_toolkit_scroll_bar): Set scroll bar colors.
7065         * xfns.c (x_default_scroll_bar_color_parameter): New.
7066         (Fx_create_frame): Call it.
7068 1999-01-31  Gerd Moellmann  <gerd@gnu.org>
7070         * xfns.c (Fx_create_frame): Initialize scroll bar pixel color
7071         values in x_output structure.  
7072         (Qscroll_bar_foreground, Qscroll_bar_background): New.
7073         (syms_of_xfns): Initialize these symbols.
7075         * xterm.h (struct x_output): Add scroll bar pixel colors.
7077         * xfns.c (x_frame_parms): Add entries for scroll bar colors.
7078         (x_set_scroll_bar_foreground): New.
7079         (x_set_scroll_bar_background): New.
7081 1999-01-12  Gerd Moellmann  <gerd@gnu.org>
7083         * xdisp.c (handle_single_display_prop): New.
7084         (handle_display_prop): Call it.
7085         (handle_raise_prop): Removed.
7086         (handle_height_prop): Removed.
7087         (handle_space_width_prop): Removed.
7088         (handle_face_prop): Remove handling of raised text.
7089         (handle_display_prop): Do it here.
7091         * dispextern.h (DISPLAY_PROP_IDX): Replaces GLYPH_PROP_IDX.
7092         (RAISE_PROP_IDX): Removed.
7093         (HEIGHT_PROP_IDX): Removed.
7094         (SPACE_WIDTH_PROP_IDX): Removed.
7096         * xdisp.c (Qdisplay): Replaces Qglyph.
7097         (handle_display_prop): Formerly handle_glyph_prop.
7099 1999-01-11  Gerd Moellmann  <gerd@gnu.org>
7101         * xdisp.c (reseat_to_string): Set position in display vector to -1.
7102         (handle_stop): Set position in display vector to -1.  Don't
7103         check overlay strings when set up to deliver characters from a
7104         display vector.
7105         (set_iterator_to_next): At the end of a run of characters from a
7106         display vector, check whether the display vector display replaces
7107         the display of a character.
7109 1999-01-05  Gerd Moellmann  <gerd@gnu.org>
7111         * xfaces.c (init_frame_faces): Don't realize faces if frame's
7112         X window hasn't been created yet.
7114 1998-12-06  Gerd Moellmann  <gerd@gnu.org>
7116         * sound.c: New.
7118 1998-12-04  Gerd Moellmann  <gerd@gnu.org>
7120         * config.in (HAVE_SOUND): New.
7122         * emacs.c (main): Call syms_of_sound and init_sound.
7124         * Makefile.in (obj): Add sound.o.
7126         * configure.in: Add checks for machine/soundcard.h and sys/soundcard.h.
7128         * config.in (HAVE_MACHINE_SOUNDCARD_H): New.
7129         (HAVE_SYS_SOUNDCARD_H): New.
7131 1998-12-03  Gerd Moellmann  <gerd@gnu.org>
7133         * buffer.h (struct buffer): indicate_empty_lines renamed from
7134         indicate_zv_lines.
7136         * buffer.c (indicate-empty-lines): Renamed from indicate_zv_lines.
7137         (default-indicate-zv-lines): Likewise.
7139         * dispextern.h (struct glyph_row): Rename indicate_zv_line_p
7140         to indicate_empty_line_p.
7142         * xdisp.c (reseat_at_next_visible_line_start): Reset method
7143         to next_element_from_buffer.
7145         * frame.c (make_frame): Set n_current_toolbar_items to 0.
7147         * xdisp.c (handle_face_prop): Allow symbols of the form `N+'
7148         and `N-'.
7150         * xfns.c (xbm_scan): New.
7151         (xbm_read_hexint): Removed.
7152         (xbm_read_bitmap_file_data): Use xbm_scan.
7154         * fileio.c (Finsert_file_contents): Prevent redisplay optimizations.
7156 1998-12-02  Gerd Moellmann  <gerd@gnu.org>
7158         * xfns.c (xbm_read_hexint): New.
7159         (xbm_read_bitmap_file_data): New.
7160         (xbm_load_image_from_file): Call xbm_read_bitmap_file_data
7161         instead of XReadBitmapFileData.
7163         * xdisp.c (handle_raise_prop): Compute voffset from current font.
7165         * xfaces.c (face_with_height): New.
7167         * xdisp.c (eval_handler): Renamed from eval_mode_handler.
7168         (eval_form): Renamed from eval_mode_element.
7169         (handle_face_prop): Use it.
7170         (Qheight): Replaces Qsmaller.
7171         (handle_height_prop): Replaces handle_smaller_prop.
7172         (handle_face_prop): If iterator's font_height is not an 
7173         integer, evaluate it to get the font height to use.
7175         * dispextern.h (HEIGHT_PROP_IDX): Replaces SMALLER_PROP_IDX.
7176         (struct it): Use `font_height' instead of `smaller'.
7178 1998-12-01  Gerd Moellmann  <gerd@gnu.org>
7180         * xdisp.c (reseat_1): New.
7181         (reseat): Call it.
7182         (move_it_vertically_backward): Ditto.
7183         (redisplay_window): Don't abort when cursor not found in recenter.
7185 1998-11-30  Gerd Moellmann  <gerd@gnu.org>
7187         * xdisp.c (reseat_at_next_visible_line_start): When not
7188         currently delivering display elements from the current buffer,
7189         restore buffer position first.
7190         (init_from_display_pos): Don't set IT's position from the
7191         position passed to this function.
7193 1998-11-28  Gerd Moellmann  <gerd@gnu.org>
7195         * config.in (PROTO): Removed.
7197         * xterm.h: Change PROTO to P_.
7199 1998-11-26  Gerd Moellmann  <gerd@gnu.org>
7201         * xterm.c (take_vertical_position_into_account): New.
7202         (x_produce_image_glyph): Call it.
7203         (x_produce_stretch_glyph): Ditto.
7204         (x_produce_glyphs): Ditto.
7205         (x_fill_glyph_string): Adjust base line for glyph's voffset.
7206         (x_fill_composite_glyph_string): Ditto.
7207         (x_fill_image_glyph_string): Ditto.
7208         (x_fill_stretch_glyph_string): Ditto.
7210         * xdisp.c (display_line): Always compute row height from
7211         max_ascent and max_descent.
7213         * dispextern.h (struct glyph): Add voffset.
7214         (struct it): Replace height by descent, max_height by max_descent.
7216         * xterm.c (x_append_glyph): Set voffset
7217         (x_append_stretch_glyph): Ditto.
7218         (x_produce_image_glyph): Ditto.
7219         (x_produce_glyphs): Take voffset into account.
7220         (x_produce_image_glyph): Ditto.
7221         (x_produce_stretch_glyph): Ditto.
7223         * dispextern.h (struct it): Add voffset.
7224         * xdisp.c (push_it): Save voffset.
7225         (pop_it): Restore it.
7227         * xdisp.c (it_props): Add entry for `raise'.
7228         (handle_raise_prop): New.
7230         * dispextern.h (RAISE_PROP_IDX): New.
7232         * xdisp.c (Qraise): New.
7233         (syms_of_xdisp): Define Qraised.
7235         * xterm.c (x_scroll_bar_move): Clear to the left and right
7236         of toolkit scroll bars differently.
7237         (x_scroll_bar_move): Removed.
7238         (XTset_vertical_scroll_bar): Move code from x_scroll_bar_move here.
7240         * dispextern.h: Make it compilable --with-x=no.
7241         * alloc.c: Ditto.
7242         * emacs.c: Ditto.
7243         * dispnew.c: Ditto.
7244         * keyboard.c: Ditto.
7245         * term.c: Ditto.
7246         * xdisp.c: Ditto.
7247         * xfaces.c: Ditto.
7248         * xfns.c: Ditto.
7249         * xmenu.c: Ditto.
7251 1998-11-25  Gerd Moellmann  <gerd@gnu.org>
7253         * xterm.c (XTread_socket): Cancel help-echo when leaving frame.
7255 1998-11-24  Gerd Moellmann  <gerd@gnu.org>
7257         * xterm.c (x_set_toolkit_scroll_bar_thumb): When dragging,
7258         update slider size, only.
7259         (xm_scroll_callback): Set dragging member of the scroll bar.
7260         (xt_action_hook): Reset last_scroll_bar_part.
7261         (XTredeem_scroll_bar): Reset bar->dragging to nil.
7263         * xfns.c (Fx_hide_busy_cursor): Don't try to hide busy cursor
7264         window on newly created frames that don't have one.
7266 1998-11-23  Gerd Moellmann  <gerd@gnu.org>
7268         * xdisp.c (restore_overlay_strings): Removed.
7269         (restore_dpvec): Removed.
7270         (init_from_display_pos): Inline both functions above.
7272         * xfns.c (IMAGE_NON_NEGATIVE_INTEGER_VALUE): New.
7273         (parse_image_spec): Handle it.
7274         (xbm_format): Use it.
7275         (xpm_format): Ditto.
7276         (pbm_format): Ditto.
7277         (jpeg_format): Ditto.
7278         (tiff_format): Ditto.
7279         (gif_format): Ditto.
7280         (gs_format): Ditto.
7282         * xdisp.c (set_window_cursor): Removed.
7283         (redisplay_internal): Case cursor motion in cursor line of
7284         selected window; use set_cursor_from_row.
7286 1998-11-22  Gerd Moellmann  <gerd@gnu.org>
7288         * widget.c (EmacsFrameSetCharSize): Take widget's border width
7289         into account.
7291 1998-11-21  Gerd Moellmann  <gerd@gnu.org>
7293         * xterm.c (expose_frame): Redraw menu bar window.
7295         * xdisp.c (display_menu_bar): Record hpos instead of x-position
7296         in menu item.
7298         * dispnew.c (change_frame_size_1): Use FRAME_TOP_MARGIN instead
7299         of FRAME_TOOLBAR_LINES.  Use `f' instead of `frame'.
7301         * widget.c (set_frame_size): Use FRAME_SCROLL_BAR_COLS
7302         to determine vertical_scroll_bar_extra.
7303         (EmacsFrameSetCharSize): Ditto.
7304         * xfns.c (x_figure_window_size): Ditto.
7306         * xterm.c (x_draw_row_bitmaps): Draw in `bitmap-area' face.
7307         (x_draw_bitmap): Ditto.
7309         * dispextern.h (face_id): New id BITMAP_AREA_FACE_ID.
7310         * xfaces.c (realize_basic_faces): Realize it.
7312 1998-11-20  Gerd Moellmann  <gerd@gnu.org>
7314         * xmenu.c (xmenu_show): Add workaround for remaining button grab
7315         under LessTif   Use the widget of the frame as parent for the 
7316         menu, again.
7318 1998-11-19  Gerd Moellmann  <gerd@gnu.org>
7320         * xterm.c (XTread_socket): Inhibit busy cursor for EnterNotify.
7321         When EnterNotify, don't generate a mouse movement event if
7322         notification is from a busy-cursor child window.
7324         * xterm.h (struct x_output): Add busy_window, remove cursor.
7326         * xfns.c (Fx_show_busy_cursor): Formerly Fx_display_busy_cursor.
7327         Use a transparent window to display the busy-cursor.
7328         (Fx_hide_busy_cursor): Formerly Fx_undisplay_busy_cursor.
7330 1998-11-17  Gerd Moellmann  <gerd@gnu.org>
7332         * xdisp.c (check_window_end): New, for debugging.
7333         (CHECK_WINDOW_END): New.
7334         (try_window_id): Use it.
7336         * xterm.c (process_expose_from_menu): Return int.
7338         * keyboard.c (kbd_buffer_get_event): Set flag to prevent recording
7339         TOOLBAR_EVENT events in last_nonmenu_event.
7341 1998-11-16  Gerd Moellmann  <gerd@gnu.org>
7343         * xdisp.c (redisplay_window): If windows_or_buffers_changed,
7344         window end isn't reliable, so set window_end_valid to nil.
7345         (redisplay_internal): If overlay arrow has changed, set
7346         windows_or_buffers_changed to redisplay thoroughly.
7348         * dispnew.c (adjust_glyph_matrix): Invalidate window end, if
7349         necessary.
7351         * xfns.c (file_dialog_cb): New.
7352         (Fx_file_dialog): New.
7353         * fileio.c (Fread_file_name): Call it.
7355         * xrdb.c (x_load_resources): Add default resoures for file 
7356         selection dialog.
7358 1998-11-14  Gerd Moellmann  <gerd@gnu.org>
7360         * xterm.c (note_mouse_highlight): Don't highlight when popup
7361         is active.
7363         * keyboard.c (timer_check): Inhibit busy cursor around calls to
7364         timer-event-handler.  This busy cursor tends to be anoying if
7365         fontifying stealthily.
7367         * dispnew.c (direct_output_for_insert): Give up if current row
7368         contains trailing whitespace.
7370 1998-11-13  Gerd Moellmann  <gerd@gnu.org>
7372         * dispextern.h (prop_idx): Add FONTIFIED_PROP_IDX.
7374         * xdisp.c (handle_fontified_prop): New.
7375         (Vfontification_functions): New.
7376         (Qfontification_functions): New.
7377         (it_props): Add handle_fontified_prop.
7379 1998-11-12  Gerd Moellmann  <gerd@gnu.org>
7381         * xmenu.c (xmenu_show): Use the frame's edit_widget as parent.
7382         Otherwise, under LessTif, after the popup has gone, all button
7383         press events come in for the frame's widget, and release events
7384         come in for the edit_widget.
7385         * xterm.c (XTread_socket): Remove workaround for that problem.
7386         (x_set_toolkit_scroll_bar_thumb): Add workaround for LessTif
7387         XmScrollBarSetValues.
7388         (SET_SAVED_MENU_EVENT): Give it statement form.
7390         * xfaces.c (display_message): If waiting_for_input, don't display
7391         the message.
7393         * window.c (scroll_command): If not acting on current_buffer,
7394         make redisplay consider all windows.
7396         * xfns.c (Fx_hide_tip): Return t if tooltip was open.
7398         * xdisp.c (handle_glyph_prop): Set it->object for images to
7399         the object having the glyph property.
7401         * xterm.c (x_draw_row_bitmaps): Don't draw if row is completely
7402         invisible.
7404 1998-11-11  Gerd Moellmann  <gerd@gnu.org>
7406         * xterm.h (struct x_display_info): Add gray pixmap.  * xterm.c
7407         (x_term_init): Create the gray pixmap.
7408         (x_setup_relief_color): Use it.
7409         (x_get_glyph_string_clip_rect): Draw a toolbar window over the
7410         internal border at the top of a frame.
7411         (x_init_glyph_string): Likewise.
7412         (x_draw_glyph_string_relief): Correct right x by 1 pixel for 
7413         full-width lines.
7414         (XTflash): Don't flash the toolbar window.
7416         * xterm.c (XTread_socket): Workaround for LessTif popup menus
7417         in case of ButtonPress events.
7419 1998-11-10  Gerd Moellmann  <gerd@gnu.org>
7421         * xrdb.c (x_load_resources): Add grey background colors as
7422         defaults for menus, scroll bars, and dialogs.
7424         * insdel.c (prepare_to_modify_buffer): Move setting
7425         windows_or_buffers_changed from modify_region here.
7427         * xfns.c (Fx_show_tip): Inhibit redisplay.
7428         (Fx_hide_tip): Ditto.
7429         (Fx_image_header): New.
7431 1998-11-09  Gerd Moellmann  <gerd@gnu.org>
7433         * dispnew.c (clear_window_matrices): Set window_end_valid to nil
7434         when clearing current window matrices.
7436 1998-11-08  Gerd Moellmann  <gerd@gnu.org>
7438         * xdisp.c (handle_glyph_prop): Don't set an iterator's buffer
7439         position from a string position.  Use the right end position
7440         if the property spans a whole overlay string.
7442 1998-11-07  Gerd Moellmann  <gerd@gnu.org>
7444         * xmenu.c (menubar_selection_callback): Remove workaround for
7445         Lesstif not calling XmNpopdownCallback because it doesn't
7446         handle the case where users don't select any menu item.
7448         * insdel.c (modify_region): Set windows_or_buffers_changed.
7450         * buffer.c (set_buffer_internal): Don't set
7451         windows_or_buffers_changed.
7453         * xmenu.c (HAVE_BOXES): Define if USE_X_TOOLKIT.
7455         * xmenu.c (menubar_selection_callback): Add workaround for
7456         Lesstif not calling XmNpopdownCallback.
7458         * xdisp.c (eval_mode_element): New.
7459         (eval_mode_handler): New.
7460         (display_mode_element): Use eval_mode_element.
7462         * xdisp.c (display_mode_element): Allow `(:eval FORM)'.
7463         Remove code looking at text props of default value.
7465         * xmenu.c (HAVE_BOXES): Define if using Lucid menus.
7467 1998-11-06  Gerd Moellmann  <gerd@gnu.org>
7469         * xmenu.c (single_submenu): Set button_type of menu to 
7470         BUTTON_TYPE_NONE.
7471         (single_submenu): Likewise for panes and menu items.
7472         (set_frame_menubar): Set button_type of menu bar to none.
7473         (xmenu_show): Likewise.
7474         (single_submenu): Set widget values selected slot.
7475         (xmenu_show): Likewise.
7477         * xmenu.c (push_menu_item): Add parameters `type' and
7478         `selected'. Store it in menu_items.
7479         (MENU_ITEMS_ITEM_TYPE): New.
7480         (MENU_ITEMS_ITEM_SELECTED): New.
7481         (MENU_ITEMS_ITEM_LENGTH): Increase by two.
7483         * xfns.c (clear_image_cache): Get the current time, before
7484         doing anything.
7485         (cache_image): Set prev pointer of next image.
7486         (clear_image_cache): Clear current matrices if any image was
7487         freed.
7489         * xterm.c (XTread_socket): Set inhibit_busy_cursor.
7491         * xfns.c (x_set_cursor): New.
7492         (Fx_display_busy_cursor): New.
7493         (Fx_undisplay_busy_cursor): New.
7495         * xterm.h (struct x_output): Add busy_cursor.
7497         * xfns.c (Vx_busy_pointer_shape): New.
7498         (x_set_mouse_color): Create busy cursor.
7500         * process.c (wait_reading_process_input): Show and hide busy
7501         cursor.
7503         * keyboard.c (command_loop_1): Display busy cursor.
7505         * eval.c (Fsignal): Hide busy cursor.
7507         * buffer.c (set_buffer_internal): Don't set
7508         windows_or_buffers_changed.
7510         * xterm.c (redo_mouse_highlight): New.
7512 1998-11-04  Gerd Moellmann  <gerd@gnu.org>
7514         * xfns.c (x_create_x_image_and_pixmap): Add depth parameter.
7515         (x_build_heuritic_mask): New.
7516         (lookup_image): Call it.
7518         * xterm.c (note_toolbar_highlight): Always set up help_echo.
7519         (previous_help_echo): New.
7520         (XTread_socket): Generate help event with nil message when
7521         leaving a region with help-echo.
7522         (note_mouse_highlight): Handle `help-echo' over text.
7523         (XTread_socket): Dispatch VisibilityNotify, CirculateNotify,
7524         CirculateRequest.
7525         (clear_mouse_face): Don't clear if tooltip is shown.
7526         (XTread_socket): Redo mouse-highlight after tooltip is gone.
7527         Avoid SET_FRAME_GARBAGED when tooltip is mapped.
7529         * keyboard.c (Vshow_help_function): New.
7530         (read_char): Use it.
7532 1998-11-03  Gerd Moellmann  <gerd@gnu.org>
7534         * xfns.c (x_create_tip_frame): New.
7535         (Fx_show_tip): New.
7536         (Fx_hide_tip): New.
7538         * xterm.c (x_destroy_window): Handle case that we don't have 
7539         a widget.
7541         * dispextern.h (struct glyph_row): Rename no_marginal_areas_p
7542         to full_width_p.  Add internal_border_p.
7544 1998-11-02  Gerd Moellmann  <gerd@gnu.org>
7546         * xterm.c (note_mode_line_highlight): Check the charpos of
7547         the glyph under the mouse pointer before accessing text
7548         properties at that position.
7550 1998-11-01  Gerd Moellmann  <gerd@gnu.org>
7552         * xterm.c (x_draw_image_relief): Handle toolbar_button_relief.
7554         * xdisp.c (auto-raise-toolbar-buttons): New.
7555         (build_desired_toolbar_string): Handle the flag.
7556         (toolbar-button-margin): New.
7557         (toolbar-button-relief): New.
7558         (build_desired_toolbar_string): Use margin and relief.
7560         * xterm.c (x_set_toolkit_scroll_bar_thumb): Remove workaround
7561         for FreeBSD.
7562         (note_mode_line_highlight): New.
7563         (note_mouse_highlight): Call it.
7565 1998-10-31  Gerd Moellmann  <gerd@gnu.org>
7567         * s/freebsd.h (NARROWPROTO): New.
7569         * xdisp.c (display_string): New parameter face_string.
7570         (display_mode_element): When displaying a symbol with a string
7571         value, use text properties from the symbol's default value, maybe.
7573         * xrdb.c (x_load_resources): Add font defaults for menus and
7574         dialogs.
7576 1998-10-30  Gerd Moellmann  <gerd@gnu.org>
7578         * xfns.c (Fx_create_frame): Try 12pt Courier font first.
7580 1998-10-29  Gerd Moellmann  <gerd@gnu.org>
7582         * xterm.c (x_produce_glyphs): Fix bug causing glyphs to be
7583         produced for characters with codes < 32 under certain
7584         circumstances.
7586         * xdisp.c (redisplay_window): Handle values of PT in front
7587         of invisible, intangible text.
7588         (try_window_id): Set overlay_arrow_seen to zero before 
7589         displaying lines.
7590         (display_mode_element): Assign to glyphs written for a mode
7591         line spec `%x' as object the Lisp format string, as position
7592         the position of the `%' in that string.
7593         (display_string): If displaying a C string, optionally get
7594         the face to use from a Lisp string.
7596         * xterm.c (expose_window_tree): Include mode line height.
7598         * xfns.c (Fx_create_frame): Add toolbar height to frame height.
7600 1998-10-27  Gerd Moellmann  <gerd@gnu.org>
7602         * xterm.c (note_mouse_highlight): Change mouse pointer shape
7603         over mode line.
7605 1998-10-26  Gerd Moellmann  <gerd@gnu.org>
7607         * window.c (coordinates_in_window): Use CURRENT_MODE_LINE_HEIGHT.
7609         * xdisp.c (redisplay_window): If mode line height has changed,
7610          arrange for a thorough immediate redisplay using the correct mode
7611          line height.
7612          (window_box_height): Use CURRENT_MODE_LINE_HEIGHT.
7614         * dispextern.h (MATRIX_MODE_LINE_HEIGHT): New.
7615         (CURRENT_MODE_LINE_HEIGHT): New.
7616         (DESIRED_MODE_LINE_HEIGHT): New.
7618         * keyboard.c (make_lispy_event): Add string and string position
7619         info to mouse-click events.
7620         (read_key_sequence): Handle `local-map' property of mode line
7621         strings.
7623         * keyboard.h (POSN_STRING): New.
7625 1998-10-25  Gerd Moellmann  <gerd@gnu.org>
7627         * dispnew.c (mode_line_string): Mew.
7629         * xterm.c (xt_action_hook): New.
7630         (x_create_toolkit_scroll_bar): Add action hook.
7631         (xm_scroll_callback): Implement dragging.
7633         * keyboard.c (Qend_scroll): New.
7634         (scroll_bar_parts): Add it.
7636         * termhooks.h (scroll_bar_end_scroll): New.
7638         * xterm.c (XTread_socket): Bug fix.
7640 1998-10-24  Gerd Moellmann  <gerd@gnu.org>
7642         * xdisp.c (redisplay_window): Finish scroll bars after
7643         redisplaying toolbar.
7645         * keyboard.c (scroll_bar_parts): Add Qtop and Qbottom.
7646         (syms_of_keyboard): Add Qbottom.
7648         * termhooks.h (scroll_bar_to_top): New.
7649         (scroll_bar_to_bottom): New.
7651         * xdisp.c (redisplay_window): Always resize toolbar window if
7652         auto_resize_toolbar_p is non-zero.
7653         (auto_resize_toolbar_p): Renamed from auto_resize_toolbar.
7654         (window_box): New.
7655         (window_box_height): New.
7656         (window_box_width): New.
7657         (window_box_left): New.
7658         (window_box_right): New.
7659         (window_box_edges): New.
7661 1998-10-23  Gerd Moellmann  <gerd@gnu.org>
7663         * xterm.c (x_set_toolkit_scroll_bar_thumb): Kluge for call to
7664         XawScrollbarSetThumb in FreeBSD.
7665         (x_create_toolkit_scroll_bar): Set resource "beNiceToColormap"
7666         to true.
7668         * window.c (get_phys_cursor_glyph): Return null if cursor vpos
7669         is out of range.
7671         * xterm.c (x_create_toolkit_scroll_bar): Set scroll_bar_pixel.
7672         (x_term_init): Initialize it.
7674         * xterm.h (struct x_display_info): Add scroll_bar_pixel.
7676         * xterm.c (x_create_toolkit_scroll_bar): Set LessTif scroll bar's
7677         cursor.
7679 1998-10-22  Gerd Moellmann  <gerd@gnu.org>
7681         * keyboard.c (make_lispy_event): Handle scroll_bar_click
7682         differently when using toolkit scroll bars.
7684         * xterm.c (x_send_scroll_bar_event): New.
7685         (x_scroll_bar_to_input_event): New.
7686         (xaw3d_scroll_callback): New.
7687         (xaw3d_jump_callback): New.
7688         (xm_scroll_callback): New.
7689         (x_toolkit_scroll_p): New.
7690         (XTread_socket): Handle scroll bar client message.
7691         (x_term_init): Initialize Xatom_Scrollbar.
7692         (x_scroll_bar_create): Set cursor.
7693         (xm_scroll_callback):
7694         (x_create_toolkit_scroll_bar): New.
7695         (x_set_toolkit_scroll_bar_thumb): New.
7696         (x_scroll_bar_create): Call x_create_toolkit_scroll_bar.
7697         (XTset_vertical_scroll_bar): Call x_set_toolkit_scroll_bar_thumb.
7699         * xterm.h (struct x_display_info): Add Xatom_Scrollbar.
7701 1998-10-21  Gerd Moellmann  <gerd@gnu.org>
7703         * xterm.c (x_scroll_bar_remove): Handle toolkit scroll bars.
7704         (XTread_socket): Don't handle mouse button events for scroll bars
7705         if using toolkit scroll bars.
7706         (XTset_vertical_scroll_bar): Set thumb size and position for
7707         Athena scroll bar.
7709         * xterm.h (scroll_bar): Add x_widget_low and x_widget_high.
7711         * xterm.c (XTread_socket): Dispatch expose event to widget
7712         if using toolkit scroll bars.
7713         (x_scroll_bar_expose): Make no-op for toolkit scroll bars.
7714         (x_scroll_bar_create): Create and show a scroll bar widget 
7715         if using toolkit scroll bars.
7716         (x_scroll_bar_move): Handle tookit scroll bars.
7718         * Makefile.in (LIBW): Use Xaw3d if present.
7720         * configure.in (USE_TOOLKIT_SCROLL_BARS): New.
7721         (HAVE_XAW3D): New.
7722         
7723         * config.in (USE_TOOLKIT_SCROLL_BARS): New.
7724         (HAVE_XAW3D): New.
7726         * xterm.c (XTset_vertical_scroll_bar): Correct position of 
7727         right vertical scroll bar.
7729 1998-10-20  Gerd Moellmann  <gerd@gnu.org>
7731         * xfns.c (xpm_load): Support reading XPM images from string
7732         buffers containing data in the same format as an XPM file.
7733         Support `:color-symbols'.
7734         (xpm_format): Add `:data'.
7735         (xpm_keyword_index): Add XPM_DATA.
7736         (syms_of_xfns): Add `:color-symbols'.
7737         (xpm_keyword_index): Add XPM_COLOR_SYMBOLS.
7738         (xpm_valid_color_symbols_p): New.
7739         (xpm_image_p): Call it.
7741         * xdisp.c (build_desired_toolbar_string): Add `:algorithm'
7742         attribute to the image if item is not enabled.
7744         * xfns.c (x_laplace): New.
7745         (x_laplace_read_row): New.
7746         (x_laplace_write_row): New.
7747         (lookup_image): Handle common image attributes here.  New
7748         attribute `:algorithm'.
7750         * xfaces.c (clear_face_cache): Call clear_image_cache.
7752         * xterm.c (x_inverted_image_mask): Removed.
7753         (x_draw_image_foreground_1): New.
7754         (x_draw_image_glyph_string): Draw images with mask to a temporary
7755         pixmap to reduce flickering.
7757         * xdisp.c (redisplay_toolbar): Handle auto-resize-toolbars.
7758         (display_toolbar_line): Remove parameter `margin'.
7760 1998-10-19  Gerd Moellmann  <gerd@gnu.org>
7762         * xdisp.c (toolbar_lines_needed): New.
7763         (auto-resize-toolbars): New.
7765         * xfns.c (cache_image): Correct call to xrealloc.
7767         * dispnew.c (Fset_toolbar_height): Removed.
7769         * xdisp.c (init_xdisp): Use FRAME_TOP_MARGIN instead of
7770         FRAME_MENU_BAR_LINES.
7772         * window.c (Fdelete_other_windows): Use FRAME_TOP_MARGIN
7773         instead of FRAME_MENU_BAR_LINES.
7774         (check_frame_size): Ditto.
7776         * dispnew.c (adjust_frame_glyphs_initially): Use FRAME_TOP_MARGIN
7777         instead of FRAME_MENU_BAR_LINES.
7778         (adjust_frame_glyphs_for_frame_redisplay): Ditto.
7779         (build_frame_matrix): Ditto.
7780         (change_frame_size_1): Ditto.
7782         * frame.h (FRAME_TOOLBAR_LINES): New.
7783         (FRAME_TOP_MARGIN): New.
7785         * window.c (struct save_window_data): Add frame_toolbar_lines.
7786         (Fset_window_configuration): Handle toolbar lines.
7787         (Fcurrent_window_configuration): Save toolbar lines.
7789         * frame.c (syms_of_frame_1): Add Qtoolbar_lines.
7791         * xfns.c (Fx_create_frame): Add default parameter for toolbar.
7793         * frame.h (struct frame): Rename top_margin to toolbar_lines.
7795         * xfns.c (x_frame_parms): Add `toolbar-lines'.
7796         (x_set_toolbar_lines): New.
7798         * keyboard.c (cmd_error_internal): Bug fix.
7800         * xterm.c: Remove double include of syssignal.h.
7802 1998-10-18  Gerd Moellmann  <gerd@gnu.org>
7804         * xterm.c (x_toolbar_item): New.
7805         (x_handle_toolbar_click): Use it.
7806         (note_toolbar_highlight): Use it.
7808         * keyboard.c (syms_of_keyboard): Staticpro toolbar_item_properties
7809         and toolbar_items_vectors.
7811         * xterm.c (help_echo): New.
7812         (draw_glyphs_face): Add DRAW_IMAGE_RAISED and DRAW_IMAGE_SUNKEN.
7813         (x_set_glyph_string_gc): Handle them.
7814         (x_after_update_window_line): Don't do anything in pseudo-windows.
7815         (x_produce_image_glyph): Take image margin and face relief into
7816         account.
7817         (x_get_glyph_string_clip_rect): Handle pseudo-windows.
7818         (x_draw_glyph_string_background): Optimize case when face has
7819         relief.
7820         (x_setup_relief_color): Take frame instead of glyph string
7821         parameter.
7822         (x_draw_relief_rect): New.
7823         (x_draw_glyph_string_relief): Call it.
7824         (x_draw_image_glyph_string_foreground): Handle margin and image
7825         relief.
7826         (x_draw_image_glyph_string_background): Ditto.
7827         (expose_frame): Redraw toolbar window.
7828         (expose_window): Don't draw cursor for pseudo-windows.
7829         (x_y_to_hpos_vpos): Handle pseudo-windows.
7830         (frame_to_window_pixel_xy): New.
7831         (note_mouse_highlight): Call note_toolbar_highlight.
7832         (x_handle_toolbar_click): New.
7833         (note_toolbar_highlight): New.
7834         (show_mouse_face): Change int parameter `hl' to parameter of
7835         type enum draw_glyphs_face.  Handle image highlighting.
7836         (XTread_socket): Return a HELP_EVENT input event if help_echo is
7837         non-nil.  Use x_handle_toolbar_click.
7839         * termhooks.h (event_kind): Add HELP_EVENT, TOOLBAR_EVENT.
7841         * xfns.c (image_value_type): Add IMAGE_INTEGER_VALUE,
7842         IMAGE_BOOL_VALUE.
7843         (parse_image_spec): Handle them.
7844         (image_spec_value): Additional parameter found.
7845         (free_image): Remove image from the vector `images' of the 
7846         image cache.
7847         (clear_image_cache): Additional parameter force_p.
7848         (Fclear_image_cache): New.
7849         (x_find_image_file): New.
7850         (xbm_load): Handle `:margin' and `:relief'.  Use
7851         x_find_image_file.
7852         (xpm_load): Likewise.
7853         (pbm_load): Likewise.
7854         (jpeg_load): Likewise.
7855         (tiff_load): Likewise.
7856         (gif_load): Likewise.
7858         * keyboard.c (Qhelp_echo): New symbol.
7859         (read_char): Handle `toolbar' and `help_echo' events.
7860         (kbd_buffer_get_event): Handle HELP_ECHO input event.
7861         (make_lispy_event): Handle TOOLBAR_EVENT.
7862         (toolbar_items): New.
7863         (process_toolbar_item): New.
7864         (PROP): New.
7865         (init_toolbar_items): New.
7866         (append_toolbar_item): New.
7867         (read_char_x_menu_prompt): Handle `toolbar' event.
7868         (read_key_sequence): Ditto.
7870         * xfaces.c (Qtoolbar): New.
7871         (realize_basic_faces): Realize `toolbar' face.
7872         (face_at_string_position): Remove parameter modeline_p, add
7873         base_face_id.
7875         * xfns.c (xbm_load_image_from_file): Don't use Xmu function
7876         to read data.
7878 1998-10-17  Gerd Moellmann  <gerd@gnu.org>
7880         * xdisp.c (init_iterator): Replace parameter modeline_p with
7881         base_face_id.
7882         (next_element_from_string): Call get_next_display_element
7883         recursively after handling text properties.
7884         (prepare_menu_bars): Call update_toolbar.
7885         (update_toolbar): New.
7886         (build_desired_toolbar_string): New.
7887         (display_toolbar_line): New.
7888         (redisplay_toolbar): New.
7889         (toolbar_item_info): New.
7890         (redisplay_window): Call redisplay_toolbar.
7891         (Fdump_toolbar_row): New.  Defined if compiled with GLYPH_DEBUG.
7893         * dispnew.c (clear_current_matrices): Clear matrices of toolbar
7894         window.
7895         (clear_desired_matrices): Ditto.
7896         (adjust_frame_glyphs_for_window_redisplay): Make toolbar window.
7897         (free_glyphs): Free matrices of toolbar window.
7898         (update_frame): Update toolbar window.
7899         (change_frame_size_1): Take toolbar into account.
7900         (Fset_toolbar_height): New.
7902         * dispextern.h (struct it): Remove member modeline_p, add
7903         base_face_id.
7904         (struct image): Add members relief and margin.
7905         (IMAGE_ASCENT): Include margin in height.
7907 1998-10-14  Gerd Moellmann  <gerd@gnu.org>
7909         * xfns.c (Fclear_image_cache): New.
7911         * xfaces.c (realize_basic_faces): Realize toolbar face.
7912         (face_at_string_position): Remove parameter modeline_p, add
7913         base_face_id.
7915         * dispextern.h (enum face_id): Add TOOLBAR_FACE_ID.
7917 1998-10-13  Gerd Moellmann  <gerd@gnu.org>
7919         * keyboard.c (syms_of_keyboard): Intern `:help'.
7921 1998-10-12  Gerd Moellmann  <gerd@gnu.org>
7923         * xterm.c (note_toolbar_highlight): New.
7924         (note_mouse_highlight): Call it.
7926         * window.c (window_from_coordinates): Additional parameter toolbar_p.
7927         (coordinates_in_window): Handle toolbar window.
7929         * keyboard.c (toolbar_items): New.
7930         (process_toolbar_item): New.
7931         (parse_toolbar_item): New.
7932         (init_toolbar_items): New.
7933         (append_toolbar_item): New.
7935         * dispextern.h (enum toolbar_item_idx): New.
7936         (enum toolbar_item_image): New.
7938         * frame.h (struct frame): Add toolbar-related members.
7940         * xfaces.c (face_at_string_position): Remove assertion that
7941         current_buffer == window's buffer.  This is not the case when
7942         called for the toolbar window.
7944         * frame.c (make_frame): Initialize toolbar members.
7946         * alloc.c (mark_object): Mark toolbar data of frames.
7948         * frame.h (struct frame): Add toolbar-related members
7949         toolbar_window, desired_toolbar_items, current_toolbar_items,
7950         desired_toolbar_string, current_toolbar_string,
7951         n_desired_toolbar_items, n_current_toolbar_items.  Add
7952         window_height.
7954         * xterm.c (x_after_update_window_line): Don't draw bitmap
7955         areas for pseudo-windows.
7956         (expose_frame): Handle toolbar window.
7957         (expose_window): Don't do cursor stuff for pseudo-windows.
7959         * xdisp.c (display_menu_bar): Correct calls to init_iterator.
7961 1998-10-11  Gerd Moellmann  <gerd@gnu.org>
7963         * frame.c (make_frame): Initialize toolbar_window.
7965         * alloc.c (mark_object): Make the toolbar window.
7967         * dispnew.c (update_frame): Update frame's toolbar_window.
7968         (clear_current_matrices): Likewise.
7969         (clear_desired_matrices): Likewise.
7970         (adjust_frame_glyphs_for_window_redisplay): Make toolbar_window.
7971         (free_glyphs): Free the toolbar window and its matrices.
7973         * frame.h (struct frame): Add toolbar_window.
7975         * xterm.c (x_draw_glyph_string_relief): Handle mouse-face
7976         with relief.
7978 1998-10-10  Gerd Moellmann  <gerd@gnu.org>
7980         * dispnew.c (buffer_posn_from_coords): Don't screw up if 
7981         window start is not in the range BEGV..ZV.
7983 1998-10-09  Gerd Moellmann  <gerd@gnu.org>
7985         * xdisp.c (try_scrolling): Experimentally handle the case
7986         that scroll-preserve-screen-position is set to `always'.
7988         * window.c (Vscroll_preserve_screen_position): Replacement for
7989         scroll_preserve_screen_position.
7991 1998-10-08  Gerd Moellmann  <gerd@gnu.org>
7993         * dispnew.c: Don't initialize auto structs; the HP/UX compiler
7994         doesn't like it.
7995         * xdisp.c: Ditto.
7997         * xdisp.c (make_cursor_line_fully_visible): Adjust this_line_y.
7999 1998-10-06  Gerd Moellmann  <gerd@gnu.org>
8001         * minibuf.c (Fminibuffer_complete_word): Fix computation of 
8002         i_byte when prompts are inserted into minibuffers.
8004         * dispextern.h (FRAME_INTERNAL_BORDER_WIDTH_SAFE): New.
8005         (WINDOW_DISPLAY_LEFT_EDGE_PIXEL_X): Use it.
8006         (WINDOW_DISPLAY_TOP_EDGE_PIXEL_Y): Ditto.
8008 1998-10-04  Gerd Moellmann  <gerd@gnu.org>
8010         * xdisp.c (make_cursor_line_fully_visible): New.
8011         (try_scrolling): New.
8012         (redisplay_window): Move scrolling code to try_scrolling.
8013         (make_cursor_line_fully_visible): Handle case of window too small
8014         to show a single line.
8015         (redisplay_window): Case forced window start---use
8016         make_cursor_line_fully_visible.
8017         (redisplay_window): Case cursor movement via current matrix.
8018         If ending up on a partially visible line, make it fully visible
8019         instead of recentering.
8020         (try_scrolling): Additional parameter scroll_smoothly.
8022         * xterm.c (x_draw_bitmap): Don't XClearArea under the pixmap.
8024 1998-09-28  Gerd Moellmann  <gerd@gnu.org>
8026         * window.c (window_scroll_pixel_based): Bug fix: vpos used
8027         instead of y-position for scroll-preserved-screen-position.
8029 1998-09-07  Gerd Moellmann  <gerd@gnu.org>
8031         * dispnew.c (update_frame_line): If current row is not enabled,
8032         write the whole line.
8034 1998-09-06  Gerd Moellmann  <gerd@gnu.org>
8036         * lisp.h (HAVE_FACES): Removed.
8038         * dispextern.h (HAVE_FACES): Removed.
8040         * config.in (HAVE_FACES): Removed.
8042         * dispnew.c (HAVE_FACES): Removed.
8044         * xdisp.c (HAVE_FACES): Removed.
8046         * xfaces.c (HAVE_FACES): Removed.
8048 1998-09-05  Gerd Moellmann  <gerd@gnu.org>
8050         * xdisp.c (init_iterator): If face_change_count is non-zero,
8051         free realized faces.
8053         * xfaces.c (free_all_realized_faces): Make it externally visible.
8054         (Finternal_set_lisp_face_attribute): Increment
8055         windows_or_buffers_changed.
8057         * dispnew.c (direct_output_for_insert): Give up if
8058         face_change_count is non-zero.
8059         (direct_output_forward_char): Ditto.
8061         * xfaces.c (face_change_count): New.
8063 1998-09-04  Gerd Moellmann  <gerd@gnu.org>
8065         * xterm.c (x_draw_bar_cursor): Don't draw if cursor hpos is out
8066         of range.
8068 1998-09-03  Gerd Moellmann  <gerd@gnu.org>
8070         * term.c (Ftty_display_color_p): New.
8072 1998-09-02  Gerd Moellmann  <gerd@gnu.org>
8074         * xfaces.c (Ftty_defined_colors): New.
8076         * xterm.c (x_produce_glyphs): Fix computation of
8077         contains_overlapping_glyphs_p for ASCII.
8079         * dispnew.c (Fshow_cursor): Don't change cursor state while
8080         redisplaying.
8081         (direct_output_for_insert): If a glyph with lbearing or rbearing
8082         is among the new glyphs, set row flag contains_overlapping_glyph_p.
8084 1998-09-01  Gerd Moellmann  <gerd@gnu.org>
8086         * term.c (OUTPUT_IF): Make replacement text have statement form.
8087         (OUTPUT1_IF): Ditto.
8088         (TS_italic_mode, TS_end_italic_mode): Removed.
8089         (TS_bold_mode): Removed.
8090         (TS_underscore_mode, TS_end_underscore_mode): Removed.
8091         (TS_enter_bold_mode, TS_enter_dim_mode, TS_enter_blink_mode): New.
8092         (TS_enter_reverse_mode): New.
8093         (TS_enter_underline_mode, TS_exit_underline_mode): New.
8094         (TN_magic_cookie_glitch_ul): New.
8095         (TS_enter_alt_charset_mode, TS_exit_alt_charset_mode): New.
8096         (TS_exit_attribute_mode): New.
8097         (TN_max_colors, TN_max_pairs, TS_orig_pairs): New.
8098         (TS_set_foreground, TS_set_background): New.
8099         (reset_terminal_modes): Switch colors back to default.
8100         (write_glyphs): Turn face on before writing text, turn it off
8101         afterwards.
8102         (insert_glyphs): Ditto.
8103         (term_init): Initialize new terminal capability variables.
8104         (turn_on_face): Turn a face on.
8105         (turn_off_face): Turn a face off.
8107         * lisp.h (MAKE_GLYPH): Remove test for frame type.
8108         (GLYPH_CHAR): Ditto.
8109         (GLYPH_FACE): Ditto.
8111         * xfaces.c (Vface_tty_color_alist): New.
8112         (face-register-tty-color): New.
8113         (face-clear-tty-colors): New.
8115         * dispextern.h (FACE_TTY_DEFAULT_COLOR): New.
8116         (struct it): Remove member faces_p since we now always have faces.
8118 1998-08-31  Gerd Moellmann  <gerd@gnu.org>
8120         * dispextern.h (struct face): Add tty appearance flags.
8122         * xdisp.c (init_iterator): Always handle faces.
8123         (extend_face_to_end_of_line): Handle tty frames.
8125         * dispnew.c (clear_glyph_matrix): Allow a null matrix to be
8126         passed in.
8128 1998-08-30  Gerd Moellmann  <gerd@gnu.org>
8130         * xfaces.c (realize_default_face): Use empty strings to indicate
8131         that the face should use the default foreground/background
8132         color of the terminal.  Fill font-related attributes with 
8133         appropriate values for tty frames.
8135         * emacs.c (main): Call syms_of_xfaces before init_window_once.
8137         * xfaces.c (realize_default_face): If face `default' is not
8138         yet known, create it.
8140         * frame.c (make_terminal_frame): Call init_frame_faces
8141         unconditionally.
8143         * xfaces.c (init_frame_faces): Make it work for tty frames.
8144         (free_frame_faces): Ditto.
8145         (clear_face_cache): Ditto.
8146         (recompute_basic_faces): Ditto.
8147         (Fframe_face_alist): Ditto.
8148         (free_realized_face): Ditto.
8149         (prepare_face_for_display): Ditto.
8150         (clear_face_gcs): Ditto.
8151         (lookup_face): Ditto.
8152         (smaller_face): Ditto.
8153         (realize_default_face): Ditto.
8154         (realize_face): Ditto.
8155         (realize_face): Dispatch to functions depending on the frame type.
8156         (realize_x_face): X way of realizing faces.
8157         (realize_tty_face): TTY way of realizing faces.
8159 1998-08-29  Gerd Moellmann  <gerd@gnu.org>
8161         * xfaces.c (realize_face): Remove parameter unibyte_registry,
8162         compute it instead.
8163         (lookup_face): Remove local variable unibyte_registry.
8165 1998-08-22  Gerd Moellmann  <gerd@gnu.org>
8167         * xterm.c (x_draw_glyph_string_relief): Draw top and bottom lines
8168         1 pixel longer.
8170         * xdisp.c (face_before_or_after_it_pos): Fix computation 
8171         of face in buffer.
8173         * editfns.c (make_buffer_string_both): If prompt in buffer,
8174         prevent start > end.
8176         * indent.c (Fvertical_motion): Set current_buffer to window's
8177         buffer if it isn't already.
8179 1998-08-21  Gerd Moellmann  <gerd@gnu.org>
8181         * dispextern.h (GLYPH_DEBUG): Use default 0.
8183         * xdisp.c (it_props): New member `smaller'.
8184         (init_iterator): Initialize it.
8185         (Qsmaller): New.
8186         (push_it): Save value of `smaller' value on the stack.
8187         (pop_it): Restore `smaller' from the stack.
8188         (handle_smaller_prop): New.
8189         (handle_face_prop): Use `smaller' text property to select a
8190         suitable face.
8192         * dispextern.h (SMALLER_PROP_IDX): New.
8193         (struct it): Add member `smaller'.
8195         * xfaces.c (smaller_face): New.
8197         * frame.h (FRAME_WINDOW_WIDTH_ARG): Add bitmap area widths.
8199         * dispnew.c (allocate_matrices_for_window_redisplay): Compute
8200         total pixel width of window differently.
8202         * xdisp.c (init_iterator): Compute width of mode line differently.
8204         * dispextern.h (WINDOW_DISPLAY_PIXEL_WIDTH): Subtract width
8205         of bitmap areas.
8207         * window.c (Fsplit_window): Include width of bitmap areas in
8208         window width.
8209         (window_internal_width): Subtract width of bitmap areas from
8210         total width.
8212 1998-08-18  Gerd Moellmann  <gerd@gnu.org>
8214         * xdisp.c: Functions reordered for better readability.
8216         * dispnew.c (update_text_area): Handle glyphs with arbitrary
8217         lbearing.
8218         (update_window_tree): Parameter no_scrolling_p removed.
8219         (update_single_window): Ditto.
8221         * xterm.c (x_get_char_font_and_encoding): Renamed to
8222         x_get_char_face_and_encoding.
8224         * dispnew.c (update_text_area): Don't call get_glyph_overhangs
8225         if end of current row reached.
8227         * xterm.c (x_get_glyph_face_and_encoding): New.
8228         (x_get_glyph_overhangs): Call it.
8230         * xdisp.c (Qshow_trailing_whitespace): New.
8231         (Qtrailing_whitespace): New.
8232         (enum prop_handled): New.
8233         (struct props, it_props): New.
8234         (next_overlay_change): New.  Works like Fnext_overlay_change
8235         but doesn't use xmalloc.
8236         (handle_stop): Restructured.
8237         (face_before_or_after_it_pos): Case iteration over a string: fix
8238         handling of face before current position.
8240 1998-08-16  Gerd Moellmann  <gerd@gnu.org>
8242         * dispnew.c (adjust_glyph_matrix): Don't optimize matrix
8243         reallocation matrix if fonts_changed_p.
8244         (update_text_area): Handle glyphs with lbearing.
8246 1998-08-14  Gerd Moellmann  <gerd@gnu.org>
8248         * xdisp.c (struct props): New.
8249         (it_props): New.
8250         (compute_prop_info): New.
8251         (handle_stop): New.
8253         * textprop.c (validate_interval_range): Make it externally
8254         visible.
8256         * dispnew.c (direct_output_for_insert): Remove calls
8257         to compute_stop_pos.
8259         * dispextern.h (struct it): Remove check_charpos,
8260         next_overlay_pos.  Add what_changes.
8262 1998-08-10  Gerd Moellmann  <gerd@gnu.org>
8264         * xterm.c (note_mouse_highlight): Set BEGV_BYTE, ZV_BYTE.
8266         * xfaces.c (Vx_unibyte_registry_and_encoding): Removed.  Use
8267         face_default_registry instead.
8269         * syntax.c (scan_sexps_forward): Set up syntax table before
8270         jumping to initial state label.
8272 1998-08-09  Gerd Moellmann  <gerd@gnu.org>
8274         * dispnew.c (check_matrix_invariants): Handle case of row end pos
8275         >= ZV specially.
8277 1998-08-08  Gerd Moellmann  <gerd@gnu.org>
8279         * xdisp.c (redisplay_window): Case cursor movement---if cursor
8280         ends up in partially visible row, try to scroll.  Case forced
8281         window start---handle windows not tall enough to show a single
8282         line.
8284         * window.h (struct window): Member dy renamed vscroll.
8286         * xterm.c (x_list_fonts): Re-activate suppression of scalable
8287         fonts.
8288         (x_draw_stretch_glyph_string): Set clipping if using GC that
8289         hasn't set it yet.
8291         * xdisp.c (redisplay_window): Case forced window start -
8292         don't let cursor end on partially visible row.  Use desired
8293         matrix to find a suitable PT if it doesn't appear.
8294         (decode_mode_spec): Merged with 20.2.97.
8295         (try_window_reusing_current_matrix): Give up if old or
8296         new display is vscrolled.
8297         (redisplay_window): Reset vscrolling if forced window start,
8298         or if recentering.
8300 1998-08-06  Gerd Moellmann  <gerd@gnu.org>
8302         * xfaces.c (realize_default_face): Use the fontset name instead of
8303         the alias for the family attribute of the default face because we
8304         can't easily determine a good alias from fontset-alias-alist.
8305         (face_fontset): Use Fquery_fontset to find the fontset.
8306         (font_list): Additional pattern parameter.
8307         (try_font_list): Ditto.
8308         (set_lface_from_font_name): Set face family from font foundry
8309         and family.
8310         (font_list): If family contains a hyphen, build pattern differently.
8312 1998-08-05  Gerd Moellmann  <gerd@gnu.org>
8314         * xfaces.c (free_realized_faces): Increment windows_or_buffers_-
8315         changed instead of setting the frame garbaged.
8317         * xfaces.c (lface_equal_p): Don't assume equal Lisp types for
8318         all attribute values.  This is wrong if values are unspecified,
8319         i.e. nil.
8321         * xdisp.c (try_window_id): Give up if window start changed.
8323         * xfaces.c (make_realized_face): Store registry as Lisp object.
8324         (load_face_font_or_fontset): Compute registry of a face
8325         differently.  Make it `eq' to Vx_unibyte_registry_and_encoding if
8326         possible.
8328         * dispextern.h (FACE_SUITABLE_FOR_CHARSET_P): Compare registries
8329         differently.
8331         * alloc.c (mark_face_cache): Mark the registry member of faces.
8333         * dispextern.h (struct face): Make registry a Lisp string.
8335 1998-08-04  Gerd Moellmann  <gerd@gnu.org>
8337         * xterm.c (x_get_char_font_and_encoding): Additional parameter
8338         multibyte_p.  Handle unibyte text.
8339         (x_append_glyph): Set the multibyte_p flag of glyphs.
8340         (x_produce_image_glyph): Ditto.
8341         (x_append_stretch_glyph): Ditto.
8342         (x_produce_glyphs): Handle unibyte text like ASCII.
8344         * xdisp.c (push_it): Save the multibyte flag of an iterator on the
8345         stack.
8346         (pop_it): Restore it.
8347         (face_before_or_after_it_pos): Handle the case that the string or
8348         buffer is unibyte.
8349         (get_overlay_strings): Set the multibyte flag of the iterator if
8350         the new overlay string is multibyte.
8351         (get_glyph_property): Likewise.
8352         (get_next_display_element): Don't check for charset changes in
8353         unibyte text.
8354         (append_space): Compute face differently for unibyte text.
8355         (extend_face_to_end_of_line): Don't return quickly if face has
8356         stipple.
8358         * xfaces.c (load_face_font_or_fontset): Store registry and
8359         encoding of the font in the registry member of the face.
8360         (make_realized_face): Additional parameter `registry'.
8361         (free_realized_face): Free the registry of a realized face.
8362         (face_suitable_for_charset_p): Function form of the macro
8363         with the same name in uppercase.
8364         (lookup_face): Use Vx_unibyte_registry_and_encoding if charset < 0.
8365         (choose_face_font): New parameter unibyte_registry.
8366         (choose_face_fontset_font): Ditto.
8367         (realize_default_face): Remember the registry and encoding of
8368         the specified frame font in Vx_unibyte_registry_and_encoding.
8369         (face_at_buffer_position): Handle unibyte.
8370         (face_at_string_position): Likewise.
8371         (realize_face): New parameter unibyte_registry.  
8372         (compute_char_face): Handle the unibyte case.
8374         * dispextern.h (struct glyph): Add bit multibyte_p.
8375         (struct face): New member registry holding the registry and
8376         encoding of the X font of the face.
8377         (FACE_UNIBYTE_P): Value is non-zero if face is for unibye text.
8378         (enum face_id): Add BASIC_FACE_ID_SENTINEL.
8379         (FACE_SUITABLE_FOR_CHARSET_P): Handle charset < 0 meansing unibyte
8380         text.
8381         (struct iterator_stack_entry): Add multibyte_p.
8383         * xdisp.c (string_pos): Use string_char_to_byte.
8384         (char_charset): Removed.
8386 1998-08-03  Gerd Moellmann  <gerd@gnu.org>
8388         * xterm.c (x_draw_image_glyph_string_foreground): Draw a
8389         rectangle for a block cursor over an image without a mask.
8390         (x_stretch_block_cursor): Added.  Non-zero means don't draw
8391         a block cursor over a stretch as wide as that stretch.
8392         (x_draw_stretch_glyph_string): Use it.
8393         (x_draw_hollow_cursor): Ditto.
8395         * minibuf.c (read_minibuf): Use minibuf_prompt instead of prompt.
8396         (read_minibuf): Add front-sticky text property for prompt.
8398         * xdisp.c (char_charset): Return charset of a character,
8399         depending on whether or not multi-byte characters are enabled.
8401         * xfaces.c (Fset_face_charset_registry): Removed.
8402         (x_charset_registry): Determine registry from charset plist.
8404 1998-08-02  Gerd Moellmann  <gerd@gnu.org>
8406         * xdisp.c (get_next_display_element): Don't check for charset
8407         changes if multi-byte characters are not enabled.
8408         
8409         * xdisp.c (echo_area_display): Use the flush function from the
8410         redisplay interface.  
8411         * keyboard.c (detect_input_pending_run_timers): Likewise.
8413         * dispextern.h (produce_*glyphs_hook): Removed.
8414         * term.c (produce_*glyphs): Ditto.
8415         (cursor_to): Remove pixel position parameters.
8417         * dispnew.c: Remove hooks for window-based redisplay, introduce
8418         a redisplay interface structure.
8420         * xterm.c (x_per_char_metric): Return default char metrics if per
8421         char metric exists but contains a zero width.  Adobe Courier seems
8422         to contain such characters.
8424         * xdisp.c (compute_line_metrics): Compute the width of rows
8425         without stopping at glyphs with zero width.
8427 1998-08-01  Gerd Moellmann  <gerd@gnu.org>
8429         * xdisp.c (display_mode_line): If nothing was displayed at all,
8430         display a space.
8431         (hscroll_window_tree): Don't subtract 1 from target point if equal
8432         to ZV and window is not the selected window.
8434         * dispnew.c (check_matrix_invariants): Remove check for window
8435         start at BEGV or after newline.  This happens in rare cases
8436         intentionally.
8438 1998-07-31  Gerd Moellmann  <gerd@gnu.org>
8440         * xfaces.c (x_charset_registry): Use STRING_BYTES.
8441         (syms_of_xfaces): Add Vface_default_registry.
8442         (x_charset_registry): Use it.
8444         * xdisp.c (run_window_scroll_functions): Run window scroll functions.
8445         (redisplay_window): Use it.
8447         * dispnew.c (update_text_area): Handle lbearing of deleted text
8448         by backing up one character.
8450 1998-07-30  Gerd Moellmann  <gerd@gnu.org>
8452         * dispnew.c (adjust_glyph_matrix): Use a different check to 
8453         decide to do nothing.
8455         * xfaces.c (face_at_string_position): Additional parameter
8456         mode_line_p.  If non-zero, merge with the mode line face
8457         instead of the default face.
8458         * dispextern.h (struct it): Add mode_line_p.
8459         * xdisp.c (init_iterator): Set it.
8460         (compute_face_in_string): Use it.
8461         (face_before_or_after_it_pos): Handle strings.
8462         (get_next_display_element): Don't look for relief end in C strings.
8463         (next_element_from_string): Deliver string position instead of
8464         buffer position.
8466         * xterm.c (x_flush): Flush X output buffer.
8467         (XTflash): Use it.
8469         * xfaces.c (lface_from_face_name): Renamed from lface_from_symbol.
8470         Allow strings as face names.
8472         * xfns.c (forall_images_in_image_cache): Check that frame is
8473         alive.
8475         * widget.c (EmacsFrameDestroy): Remove call to free_frame_faces;
8476         it's also called from x_destroy_window.  Since this function is
8477         called from X, freeing stuff allocated with xmalloc is dangerous
8478         here, anyway.
8480         * xfaces.c (free_realized_faces): Don't clear current matrices
8481         of a frame being destroyed.
8483         * frame.c (make_frame): Call set_window_buffer instead of 
8484         Fset_window_buffer.
8486         * window.c (set_window_buffer): Extracted from Fset_window_buffer,
8487         with an additional argument specifying whether or not hooks may
8488         be called.
8489         (Fset_window_buffer): Call it.
8491         * dispnew.c (clear_desired_matrices): Check that frame has
8492         a valid root window before clearing matrices in the window tree.
8493         (clear_current_matrices): Ditto.
8494         (clear_window_matrices): If GLYPH_DEBUG, check that hchild and
8495         vchild are valid windows if not nil.
8497         * xfaces.c (merge_face_vector_with_property): Allow :reverse-video
8498         for :inverse-video.
8499         (Finternal_set_lisp_face_attribute): Ditto.
8500         (Finternal_set_lisp_face_attribute_from_resource): Ditto.
8501         (Finternal_get_lisp_face_attribute): Ditto.
8502         (Finternal_lisp_face_attribute_values): Ditto.
8503         (syms_of_xfaces): Define the symbol `:reverse-video'.
8505         * xdisp.c (get_glyph_property): Renamed from
8506         fill_iterator_from_glyph_property.
8507         (next_element_from_buffer): Handle case that no `glyph' property
8508         was found correctly.
8509         (display_line): Extend face to end of line only if we have faces.
8511 1998-07-29  Gerd Moellmann  <gerd@gnu.org>
8513         * dispnew.c (Fshow_cursor): Renamed from blink_cursor.  Take
8514         additional window argument.
8516         * xdisp.c (reseat_at_previous_visible_line_start): Renamed from
8517         set_iterator_to_previous_visible_line_start.
8518         (reseat_at_next_visible_line_start): Likewise.
8519         (compute_stop_pos): Renamed from set_iterator_stop_pos.
8520         (face_before_or_after_it_pos): Renamed from get_face_at_it_pos.
8521         (compute_face_in_buffer): Renamed from
8522         compute_face_at_iterator_position.
8523         (compute_face_in_string): Renamed from
8524         compute_face_at_iterator_string_position.
8525         (get_space_width): Renamed from get_iterator_space_width.
8526         (next_overlay_string): Renamed from
8527         set_iterator_to_next_overlay_string.
8528         (get_overlay_strings): Renamed from
8529         get_overlay_strings_at_iterator_position.
8530         (restore_overlay_strings): Renamed from
8531         setup_overlay_strings_from_glyph_pos.
8532         (restore_dpvec): Renamed from setup_iterator_dpvec_from_glyph_pos.
8533         (init_from_display_pos): Renamed from init_iterator_from_glyph_pos.
8534         (init_to_row_start): Renamed from init_iterator_to_row_start.
8535         (init_to_row_end): Formerly init_iterator_to_next_row_start.
8537         * xterm.c: Merge with 20.2.97.
8538         (x_produce_glyphs): Use x_append_stretch_glyph for tabs.
8540         * dispextern.h (struct glyph): Replace text_pos position with
8541         simple charpos.
8543         * xdisp.c (this_line_start_pos): Use struct text_pos.
8544         (this_line_end_pos): Renamed from .*endpos; use struct text_pos.
8545         (enum move_it_result): Renamed from move_iterator_result.
8546         (string_pos_nchars_ahead): Compute text_pos in a string from a
8547         known text_pos plus a character delta.
8548         (string_pos): Compute text_pos in string from charpos.
8549         (c_string_pos): Likewise for a C string.
8550         (number_of_chars): Return number of characters in a possibly
8551         multi-byte C string.
8552         (check_it): Renamed from check_iterator.  Check that charpos and
8553         bytepos are in sync.
8554         (push_it): Renamed from save_iterator_settings.
8555         (pop_it): Renamed from restore_iterator_settings.
8556         (move_it_.*): Renamed from move_iterator_.*.
8557         (charset_at_position): Take charpos/bytepos into account.
8558         (back_to_previous_line_start): Set iterator to previous line start.
8559         (forward_to_next_line_start): Set iterator to next line start.
8560         (back_to_previous_visible_line_start): Renamed from 
8561         move_iterator_previous_visible_line_start.
8562         (set_iterator_to_next_visible_line_start): Handle charpos/bytepos.
8563         (get_face_at_it_pos): Renamed from get_face_from_cursor_pos.
8564         Handle charpos/bytepos.
8565         (compute_face_at_iterator_position): Handle charpos/bytepos.
8566         (compute_face_at_iterator_string_position): Likewise.
8567         (get_iterator_space_width): Likewise.
8568         (load_overlay_strings): Likewise.
8569         (get_overlay_strings_at_iterator_position): Likewise.
8570         (reseat_iterator): Take a text_pos position argument.
8571         (setup_iterator_overlay_strings_from_glyph_pos): Handle charpos/
8572         bytepos.
8573         (init_iterator): Take additional bytepos parameter.
8574         (reseat_iterator_to_string): Handle charpos/bytepos.
8575         (start_display): Take a text_pos parameter.  Handle charpos/bytepos.
8576         (next_element_from_string): Handle charpos/bytepos.
8577         (next_element_from_c_string): Likewise.
8578         (fill_iterator_from_glyph_property): Likewise.
8579         (next_element_from_buffer): Likewise.
8580         (set_iterator_to_next): Increment charpos and bytepos of an iterator.
8581         (move_iterator_in_display_line_to): Handle charpos/bytepos.
8582         (move_it_to): Likewise.
8583         (move_it_vertically_backward): Likewise.
8584         (move_it_vertically): Likewise.
8585         (move_it_by_lines): Likewise.
8586         (hscroll_window_tree): Likewise.
8587         (redisplay_internal): Likewise.
8588         (set_cursor_from_row): Likewise.
8589         (redisplay_window): Likewise.
8590         (try_window): Take a text_pos parameter.  Handle charpos/bytepos.
8591         (try_window_reusing_current_matrix): Handle charpos/bytepos.
8592         (get_first_unchanged_at_end_row): Compute and return delta_bytes.
8593         (try_window_id): Handle charpos/bytepos.
8594         (Ftrace_redisplay_toggle): Return Qnil.
8595         (get_overlay_arrow_glyph_row): Handle charpos/bytepos.
8596         (insert_left_trunc_glyphs): Likewise.
8598         * dispnew.c: `Merge' with 20.2.97 (it's really too different to
8599         do a real merge).
8600         (increment_glyph_matrix_buffer_positions): Add parameter delta_bytes.
8601         (increment_glyph_row_buffer_positions): Ditto.
8602         (copy_glyph_row_contents): Ditto.
8603         (check_matrix_invariants): Add additional checks for charpos/
8604         bytepos consistency.
8605         (direct_output_for_insert): Changed for charpos/bytepos.
8606         (buffer_posn_from_coords): Likewise.  Put code dealing with 
8607         `direction-reversed' in #if 0.
8609         * xterm.h: Merge with 20.2.97.
8610         
8611         * frame.h: Merge with 20.2.97.
8613         * window.h: Merge with 20.2.97.  Add window_end_bytepos.
8615         * dispextern.h (MATRIX_ROW_START_CHARPOS): Get charpos of a row
8616         start.
8617         (MATRIX_ROW_START_BYTEPOS): Likewise for the byte position.
8618         (MATRIX_ROW_END_CHARPOS): Likewise for the row end.
8619         (MATRIX_ROW_END_BYTEPOS): Likewise for the row end byte position.
8620         (struct it): Various members renamed from .*pos to .*charpos.
8621         (IT_CHARPOS): Access current buffer character position of an
8622         iterator.
8623         (IT_BYTEPOS): Access current buffer byte position of an iterator.
8624         (IT_STRING_CHARPOS): Access current string character position of
8625         an iterator.
8626         (IT_STRING_BYTEPOS): Access current string byte position of
8627         an iterator.
8628         (globally): Add function prototypes from 20.2.97.
8630         * everywhere: Use P_ instead of PROTO for function prototypes
8631         because everyone else seems to use P_.
8633         * dispextern.h (struct text_pos): Structure describing a charpos/
8634         bytepos position in text.
8635         (BYTEPOS): Access the byte position part of a text_pos.
8636         (CHARPOS): Likewise for the character position.
8637         (SET_TEXT_POS): Set a text_pos from a character and byte position.
8638         (INC_TEXT_POS, DEC_TEXT_POS): Increment/decrement a text position.
8639         (SET_TEXT_POS_FROM_MARKER): Set a text_pos from a marker.
8640         (SET_MARKER_FROM_TEXT_POS): Set a marker from a text_pos.
8641         (TEXT_POS_EQUAL_P): Compare two text_pos structures for equality.
8642         (struct display_pos): Renamed from glyph_pos. Use struct text_pos
8643         for buffer and string positions.
8644         (struct glyph): Use text_pos.
8645         (struct it): Renamed from display_iterator.  Use text_pos.
8647 1998-07-23  Gerd Moellmann  <gerd@gnu.org>
8649         * xfns.c (x_kill_gs_process): Get image colors from XImage of a
8650         pixmap.
8652 1998-07-21  Gerd Moellmann  <gerd@gnu.org>
8654         * dispextern.h (struct glyph_row): New flag indicate_zv_line_p.
8655         * xterm.c (x_draw_row_bitmaps): Use it.
8656         * dispnew.c (row_equal_p): Ditto.
8657         (update_window_line): Ditto.
8659         * xfns.c (prepare_image_for_display): Don't set loading_failed_p
8660         flag of images.
8662         * dispextern.h (struct image): Removed member loading_failed_p.
8663         It's probably better to have the chance to try to load an image
8664         again.
8666 1998-07-20  Gerd Moellmann  <gerd@gnu.org>
8668         * xterm.c (x_draw_bitmap): Draw bitmap for empty lines ending
8669         at ZV if `indicate-zv-lines' is non-nil.
8670         (x_draw_row_bitmaps): Compute bitmap for `indicate-zv-lines'.
8672         * dispnew.c (row_equal_p): Compare displays_text_p and
8673         ends_at_zv_p flags of rows.
8674         (update_window_line): Ditto.
8676         * buffer.h (struct buffer): New member indicate_zv_lines.
8678         * buffer.c (init_buffer_once): Add default for `indicate-zv-lines'.
8679         (init_buffer_once): New variable `default-indicate-zv-lines'.
8680         (syms_of_buffer): New buffer-local varianle `indicate-zv-lines'.
8682         * xdisp.c (redisplay_window): Don't try moving the cursor
8683         if current glyph row w->last_cursor.vpos isn't enabled.
8685         * xterm.c (bitmap_type): Add ZV_LINE_BITMAP.
8687         * window.c (Fset_window_vscroll): Allow only negative scroll
8688         values.  Others don't seem to make sense, and this way it's easy
8689         to restore a vscroll of zero.
8691         * xterm.c (x_inverted_image_mask): Check that pixmap could be
8692         allocated.
8693         (x_draw_image_glyph_string_background): Don't clip if pixmap
8694         could not be created.
8696         * xfns.c (xbm_load_image_from_file): Check that pixmap could
8697         be created.
8698         (xbm_load): Ditto.
8699         (gs_load): Ditto.
8701         * xterm.c (x_get_glyph_overhangs): Take image and stretch
8702         glyphs into account.
8704         * xfaces.c (realize_default_face): Don't set font family of
8705         the default face from the fontset alias name for `fontset-startup'.
8707         * xfns.c (gs_load): Pass frame's pixel foreground and background
8708         color to the Lisp loader.
8710 1998-07-19  Gerd Moellmann  <gerd@gnu.org>
8712         * xfns.c (tiff_image_p, tiff_load): Support TIFF images via
8713         libtiff34.
8715         * configure.in (--with-tiff, HAVE_TIFF): Added.
8717         * config.in (HAVE_TIFF): Added.
8719         * Makefile.in (LIBTIFF): Added.
8721         * xfns.c (jpeg_image_p, jpeg_load): Support JPEG images.
8723         * Makefile.in (LIBJPEG): Added.
8725         * xfns.c (resource_types): Enumerators renamed to RES_TYPE_NUMBER,
8726         RES_TYPE_BOOLEAN etc. because of conflict of `boolean' with
8727         jpeglib.h.
8729         * configure.in (HAVE_JPEG, --with-jpeg): Added.  On systems 
8730         where the library is installed in /usr/local/lib, e.g. FreeBSD,
8731         configure must be run with `--x-includes=/usr/X11R6/include:
8732         /usr/local/include --x-libraries=/usr/X11R6/lib:/usr/local/lib'.
8734 1998-07-18  Gerd Moellmann  <gerd@gnu.org>
8736         * config.in (HAVE_JPEG): Added.
8738         * xfns.c (ct_init): Initialize color table used to map RGB colors
8739         from images to X pixel colors.
8740         (ct_free): Free color table.
8741         (ct_lookup): Look an RGB color up.
8742         (ct_allocated_colors): Get vector of allocated colors.
8743         (pbm_image_p): Test if image specification is a valid PPM 
8744         image specification.
8745         (pbm_scan_number): Scan a decimal ASCII number from a file.
8746         (pbm_load): Load a PPM image.
8748         * window.c (Fset_window_vscroll): Adjust glyph matrix if
8749         necessary.  Take canonical character units as parameter.
8750         (Fwindow_vscroll): Return canonical character units.
8752         * dispnew.c (allocate_matrices_for_window_redisplay): Add negative
8753         w->dy to display height for which glyph rows must be allocated.
8755 1998-07-17  Gerd Moellmann  <gerd@gnu.org>
8757         * xfaces.c (face_at_string_position): Merge in region face
8758         so that it won't overwrite the font in the region.
8759         (face_at_buffer_position): Ditto.
8760         (realize_basic_faces): Don't realize region face.
8762         * dispextern.h (enum face_id): REGION_FACE_ID removed.
8764         * xterm.c (x_set_glyph_string_background_width): Don't let
8765         cursor face extend to end of line.
8767         * xdisp.c (append_space): If adding space of default face,
8768         make sure glyph ist produced with right face.
8770         * xterm.c (x_clear_glyph_string_rect): Draw a rectangle in the
8771         background color of a glyph string.
8772         (x_draw_glyph_string_background): Call it.
8773         (x_draw_glyph_string_bg_rect): Ditto.
8774         (x_draw_stretch_glyph_string): Ditto.
8776 1998-07-15  Gerd Moellmann  <gerd@gnu.org>
8778         * xdisp.c (init_iterator): Initialize it->current_y to the
8779         window's vscroll w->dy.
8781         * window.c (Fwindow_vscroll): Return number of pixels window
8782         is vscrolled smoothly.
8783         (Fset_window_vscroll): Set the number.
8785         * xdisp.c (move_iterator_to): Recognize case MOVE_TO_POS and
8786         to_pos in truncated part of a line.
8788 1998-07-14  Gerd Moellmann  <gerd@gnu.org>
8790         * xdisp.c (move_iterator_in_display_line_to): If very first glyph
8791         doesn't fit on the line, truncate it, despite truncate_lines nil.
8792         (display_line): Ditto.
8794         * xfns.c: Experimental support for Ghostscript images.
8796         * xterm.c (x_term_init): Initialize new atoms DONE and PAGE.
8797         (XTread_socket): React on events from Ghostscript.
8798         (expose_frame): If width or height are zero, redraw entire frame.
8799         (XTread_socket): Call expose_frame after receiving event from
8800         Ghostscript.
8802         * xterm.h (struct x_display_info): Add atoms DONE and PAGE
8803         for Ghostscript support.
8805         * xdisp.c (redisplay_internal): Return quickly if called
8806         recursively.
8808         * alloc.c (NSTATICS): Increased to 1024.
8810 1998-07-08  Gerd Moellmann  <gerd@gnu.org>
8812         * xterm.c (x_append_stretch_glyph): Append a stretch glyph to an
8813         iterator's glyph row.
8814         (x_produce_stretch_glyph): Call it.
8815         (x_produce_glyphs): Handle `space-width' property; call
8816         x_append_stretch_glyph.
8818         * xdisp.c (syms_of_xdisp): Add symbol `space-width' used as a text
8819         property.
8820         (get_iterator_space_width): Determine value of `space-width'
8821         property at iterator's position.
8822         (reseat_iterator): Call it.
8823         (next_element_from_string): Ditto.
8824         (next_element_from_buffer): Ditto.
8825         (init_iterator): Initialize space_width of iterator.
8826         (redisplay_internal): Don't goto end_of_redisplay if PT hasn't
8827         moved, but cursor blinks.
8828         (redisplay_internal): Set w->last_cursor_off_p after update.
8830         * dispextern.h (enum iterator_prop_idx): Add SPACE_WIDTH_PROP_IDX.
8831         (struct display_iterator): Add new member space_width.
8833         * window.h (struct window): Add last_cursor_off_p.
8835 1998-07-07  Gerd Moellmann  <gerd@gnu.org>
8837         * Saved.
8839         * window.c (Fpos_visible_in_window_p): Case window not up to
8840         date---return nil if iterator hasn't reached position.
8842 1998-07-06  Gerd Moellmann  <gerd@gnu.org>
8844         * xdisp.c (text_outside_line_unchanged_p): Fix case that
8845         overlays have changed.
8846         (redisplay_window): Case cursor movement.  Don't try it if
8847         last_cursor.vpos is out of range.
8849         * xdisp.c (set_cursor_from_row): Set this_line_.* variables.  This
8850         way, the display optimization for the line containing the cursor
8851         is used more frequently, esp. when we have a blinking cursor.
8852         (display_line): Don't set this_line_.* variables.
8854         * xterm.c (x_redraw_cursor): Removed.
8855         (x_display_and_set_cursor): Set cursor type depending on
8856         cursor_off_p flag of window.
8858         * dispnew.c (redraw_cursor_hook): Removed.
8859         (Fblink_cursor): Additional parameter on_p to set the cursor_off_p
8860         member of the selected window.
8862         * xfaces.c (Fface_font): Added for compatibility with 20.2.
8864         * xterm.c (x_y_to_hpos_vpos): Return null if not over text.
8865         Return glyph area under x/y.
8866         (note_mouse_highlight): Use x_y_to_hpos_vpos in its new form.
8868         * keyboard.c (detect_input_pending_run_timers): Call gobble_input
8869         after redisplaying.
8871 1998-07-05  Gerd Moellmann  <gerd@gnu.org>
8873         * xdisp.c (text_outside_line_unchanged_p): Test if changes
8874         are all outside of a line of text.
8875         (redisplay_internal): Use it.
8877 1998-06-30  Gerd Moellmann  <gerd@gnu.org>
8879         * xdisp.c (next_element_from_buffer): After skipping over
8880         invisible text, look for the `glyph' property.
8881         (set_iterator_stop_pos): Ignore check positions in front
8882         of an iterator's current position.
8884         * xterm.c (show_mouse_face): Don't act on rows that don't exist
8885         anymore or which are marked as not having valid contents.
8887         * xfaces.c (Finternal_set_lisp_face_attribute): Don't free
8888         realized faces if new attribute value is equal to old value.
8890 1998-06-29  Gerd Moellmann  <gerd@gnu.org>
8892         * xfaces.c (Finternal_make_lisp_face): Increment
8893         lface_id_to_name_size when lface_id_to_name is reallocated.
8895 1998-06-27  Gerd Moellmann  <gerd@gnu.org>
8897         * xdisp.c (set_iterator_stop_pos): Compute initial stop_pos
8898         as minimum of endpos and overlay_pos.
8899         (load_overlay_strings): Set next_overlay_pos of iterator to
8900         -1 if we don't have to check for more overlay strings.
8902 1998-05-09  Gerd Moellmann  <gerd@gnu.org>
8904         * xdisp.c (set_iterator_to_next_visible_line_start): Don't
8905         do anything if iterator is at ZV because scan_buffer doesn't
8906         work otherwise.
8908         * xterm.c (x_encode_char): Inline it.
8909         (x_get_char_font_and_encoding): Simplified.
8910         (x_per_char_metric): Inline it.
8912         * xterm.c (x_draw_glyph_string_relief): Use clipping.
8914         * xdisp.c (get_next_display_element): Check for end of relief
8915         face moved here from next_element_from_buffer.
8917         * xterm.c (x_produce_image_glyph): Add relief thickness.
8918         (x_produce_stretch_glyph): Ditto.
8920 1998-05-08  Gerd Moellmann  <gerd@gnu.org>
8922         * xdisp.c (fill_iterator_from_glyph_property): Handle glyph
8923         property value (space :width WIDTH :height HEIGHT :ascent ASCENT).
8925         * xterm.c (x_produce_stretch_glyph): Produce a stretch glyph
8926         from a glyph property.
8927         (x_produce_glyphs): Use it.
8929         * xdisp.c (set_iterator_to_next): Handle next_element_from_stretch.
8931         * xterm.c (x_produce_image_glyph): Add to current_x only if 
8932         in text area.
8933         (x_produce_glyphs): Ditto.
8935         * xdisp.c (display_line): Compute row height from glyphs in 
8936         marginal areas.
8938         * xterm.c (x_draw_image_glyph_string_background): Draw 
8939         background of an image glyph string.
8940         (x_draw_glyph_string_bg_rect): Draw a rectangular region of 
8941         the background of a glyph string.
8942         (x_draw_image_glyph_string_foreground): Draw the foreground of
8943         an image glyph string.
8944         (x_inverted_image_mask): Return the inverted mask of an image.
8946         * xfns.c (x_draw_image): Removed.
8948         * dispextern.h (struct image_type): Remove drawing function.
8950         * xfaces.c (load_face_colors): Swap colors if face is inverse.
8952         * xdisp.c (get_next_display_element): In marginal areas, translate
8953         newlines, tabs, etc. like normal control characters.
8955         * xfaces.c (Fface_color_supported_p): Transpose parameters frame
8956         and color.
8957         (free_realized_faces): Set frame garbaged.
8959         * xfaces.c (syms_of_xfaces): Add defsubr for
8960         internal-lisp-face-attribute-values.
8962 1998-05-07  Gerd Moellmann  <gerd@gnu.org>
8964         * xterm.c (x_produce_image_glyph): Don't add glyph if area is
8965         full.
8966         (x_produce_image_glyph): Set IT->nglyphs to 1.
8967         (x_draw_image_glyph_string): Use inverted mask to draw background.
8969         * dispextern.h (struct image_type): Additional clipping rect
8970         parameters for drawing functions.
8972         * xterm.c (x_get_glyph_string_clip_rect): Get clip rect for 
8973         a glyph string.
8974         (x_draw_image_glyph_string): Use it and pass the rect to the
8975         image drawing function.
8977         * xdisp.c (fill_iterator_from_glyph_property): Use position of
8978         first character with `glyph' property as image position.  Set
8979         iterator back to that position as long as the image hasn't been
8980         consumed with set_iterator_to_next.
8981         (set_cursor_from_row): Accept when glyph with given position is
8982         not found in the row.  Set cursor x to end of line in that case,
8983         so that we can hscroll.
8984         (redisplay_internal): Correct computation of delta by which
8985         positions have changed in redisplay optimization for cursor
8986         row of selected window.
8988         * xdisp.c (display_line): Remove start_pos.
8989         (display_line): Fix bug preventing display optimization for 
8990         cursor line of selected window.
8991         (next_element_from_buffer): Avoid XSETBUFFER, use it->w->buffer
8992         instead.
8994         * dispnew.c (update_text_area): Use GLYPH_EQUAL_P.
8995         (update_text_area): Take glyph pixel width into account
8996         when trying to find a resync point.
8997         (row_equal_p): Compare glyphs in all areas.
8999 1998-05-06  Gerd Moellmann  <gerd@gnu.org>
9001         * xterm.c (x_produce_glyphs): Don't add glyph if area is full.
9003         * dispextern.h (struct glyph_row): Use unsigned hash value.
9005         * xdisp.c (display_line): Simplified and made faster by setting
9006         the cursor with set_cursor_from_row.
9007         (set_cursor_from_row): Handle rows of desired matrix.
9009 1998-05-05  Gerd Moellmann  <gerd@gnu.org>
9011         * xdisp.c (set_cursor_from_row): Don't put cursor on glyphs
9012         with type != CHAR_GLYPH.
9013         (fill_iterator_from_glyph_property): Return void.  Set
9014         method to next_element_from_image.
9015         (next_element_from_image): Dummy function for delivering a
9016         single image id.
9017         (set_iterator_to_next): Add method next_element_from_image.
9018         (redisplay_window): When recentering, and cursor vpos is -1
9019         after display, assume middle of window is in first line displayed
9020         in window, and display again.
9021         (fill_iterator_from_glyph_property): Assign image glyph 
9022         the position of the first character having the glyph property.
9024         * dispextern.h (IMAGE_ASCENT): Compute ascent of image.
9025         * xfns.c (x_draw_image): Use it.
9026         * xterm.c (x_produce_image_glyph): Use it.
9028         * xterm.c (x_produce_image_glyph): Set iterator's pixel_width.
9030         * Makefile.in: Extraneous #define of LIBXPM removed.
9032         * xterm.c (x_produce_glyphs): Produce a STRETCH_GLYPH for tabs.
9033         (x_fill_stretch_glyph_string): Fill a glyph string from a 
9034         stretch glyph.
9035         (x_compute_glyph_string_overhangs): Compute overhangs only
9036         for text glyph strings.
9037         (x_draw_stretch_glyph_string): Draw a stretch glyph string.
9038         (x_draw_glyph_string): Call it.
9040         * dispextern.h (glyph_type): Add STRETCH_GLYPH.
9041         (struct glyph): Add sub-structure for stretchable glyphs.
9042         (GLYPH_EQUAL_P): Compare glyph type and u.val.
9044         * xdisp.c (get_overlay_arrow_glyph_row): Put face code into
9045         #ifdef HAVE_FACES.
9047         * xterm.c (x_produce_glyphs): Use ASCII face for spaces of a TAB.
9049         * xdisp.c (fill_iterator_from_glyph_property): Renamed from
9050         setup_iterator_from_glyph_property.  Don't do it for terminal
9051         frames.
9053         * xterm.c (x_produce_image_glyph): Produce glyph for image
9054         that can't be loaded.
9056         * xfns.c (lookup_image): If image can't be loaded, set its
9057         width and height so that we can draw a rectangle.
9058         (x_draw_image): Draw a rectangle for images that don't have
9059         a pixmap.
9060         (make_image): Set hash value.
9061         (image_spec_equal_p): Use image_spec_value.
9063         * xterm.c (expose_frame): Don't try to redraw if basic faces
9064         haven't benn realized yet.
9065         (x_draw_image_glyph_string): Fill background only if image 
9066         is not as tall as row.
9068 1998-05-04  Gerd Moellmann  <gerd@gnu.org>
9070         * Makefile.in (LIBXPM): If not already defined, define to -lXpm.
9071         (LIBX)[HAVE_X11]: Add LIBXPM.
9073         * xfns.c (xpm_image_p): Implementation of image type functions
9074         for XPM.
9075         (xpm_load): Ditto.
9077         * dispextern.h (struct image): Add mask pixmap for XPM.
9079         * xfns.c (x_draw_image): Handle images with masks.
9081         * configure.in: --with-xpm added.  Code detecting -lXpm added.
9083         * config.in: Add HAVE_XPM.
9085         * xfns.c (xbm_draw): Removed.
9086         (x_draw_image): Default implementation for drawing images.
9087         (xbm_keyword_index): Remove XBM_DEPTH.
9088         (xbm_format): Remove `:depth'.
9089         (xbm_image_spec_from_file): Removed to reduce consing.
9090         (xbm_load_image_from_file): Added for the same reason. 
9092         * xterm.c (x_fill_image_glyph_string): Don't set ybase of 
9093         glyph string.
9094         (x_draw_image_glyph_string): Pass ybase to image draw function.
9096         * xfns.c (make_image): Set default baseline.
9098         * xterm.c (x_produce_image_glyph): Compute ascent of image
9099         from its height and baseline percentage.
9101         * xfns.c (xbm_keyword_index): Add XBM_BASELINE.
9102         (xbm_format): Add description for `:baseline'.
9103         (xbm_image_spec_from_file): Add keywords from original spec to
9104         result.
9105         (xbm_load): Set baseline of image.
9106         (xbm_image_p): Check range for baseline.
9108         * dispextern.h (struct image): Add member baseline.
9110         * xdisp.c (dump_glyph_matrix): Handle image glyphs.
9112         * term.c (produce_glyphs): Change assertion to allow DISP_IMAGE.
9114         * xdisp.c (get_next_display_element): Do character translations
9115         only if delivering characters.
9117 1998-05-03  Gerd Moellmann  <gerd@gnu.org>
9119         * dispextern.h (ITERATOR_AT_END_OF_LINE_P): Test for 
9120         DISP_CHARACTER.
9122         * xterm.c (x_produce_image_glyph): Poduce image glyphs.
9123         (x_produce_glyphs): Call x_produce_glyphs for DISP_IMAGE.
9125 1998-05-02  Gerd Moellmann  <gerd@gnu.org>
9127         * xfns.c (prepare_image_for_display): Set image timestamp.
9128         (clear_image_cache): Clear images if image's timestamp +
9129         Vimage_eviction_seconds is > now.
9130         (syms_of_xfns): New variables image-eviction-seconds, and
9131         image-types.
9132         (add_image_format): Add to image-types.
9133         (xbm_load): Support new image spec format.
9134         (x_alloc_image_color): Allocate a color for an image.
9136         * dispextern.h (struct image): Add timestamp.
9138         * xfns.c (xbm_image_p): Allow bool-vectors, vectors of strings and
9139         vectors of bool-vectors.
9140         (xbm_lisp_object_from_file): Build new format image spec.
9142 1998-05-01  Gerd Moellmann  <gerd@gnu.org>
9144         * xfaces.c (init_frame_faces): Initialize image cache.
9145         (free_frame_faces): Free it.
9147         * xterm.c (x_delete_display): Don't free image cache.
9149         * emacs.c (main): Call init_xfns.
9151 1998-04-30  Gerd Moellmann  <gerd@gnu.org>
9153         * alloc.c (mark_object): Mark objects in image cache.
9155         * xfns.c (x_set_internal_border_width): Correct call to 
9156         widget_store_internal_border_width.
9158         * widget.c (widget_store_internal_border): Return void.
9160         * xfns.c (x_destroy_bitmap): Use xfree instead of free.  Return
9161         void.
9162         (init_x_parm_symbols): Return void.
9163         (x_report_frame_params): Ditto.
9164         (x_set_border_pixel): Ditto.
9165         (syms_of_xfns): Ditto.
9166         (x_destroy_all_bitmaps): Use xfree instead of free.
9168         * xterm.h (FRAME_X_IMAGE_CACHE): Access the image cache of a frame.
9170         * xterm.c (x_term_init): Initialize image_cache of display info.
9171         (x_delete_display): Free image cache.
9173         * xterm.h (struct x_display_info): Add image_cache.
9175         * xfns.c (make_image_cache): Allocate a new image cache.
9176         (free_image_cache): Free an image cache.
9177         (make_image): Allocate an image.
9178         (free_image): Free an image.
9180         * dispextern.h (struct image): Structure describing an image.
9181         (struct image_cache): Structure describing an image cache.
9183 1998-04-29  Gerd Moellmann  <gerd@gnu.org>
9185         * xdisp.c (check_iterator_glyph_property): Return int.  Value is
9186         non-zero if iterator is filled with something to return.
9187         (next_element_from_buffer): Immediately return if
9188         setup_iterator_from_glyph_prop has filled iterator with pixmap.
9189         (next_element_from_string): Likewise.
9191         * xfaces.c (load_pixmap): Allow to pass null for W_PTR and H_PTR.
9193         * dispextern.h (struct glyph): Add pixmap_id.
9194         (display_element_type): Add DISP_PIXMAP.
9196         * xmenu.c (popup_get_selection): Use xmalloc/xfree instead of
9197         malloc/free.
9199         * xfaces.c (clear_font_table): Free fonts not used by fontsets.
9200         (clear_face_cache): Call it.
9202         * xterm.c (x_query_font): Don't look at empty font table slots.
9203         (x_compute_min_glyph_bounds): Likewise.
9204         (x_term_init): Initialize font_table to null.
9205         (x_load_font): Change allocation of font_info structures so
9206         that it is possible to free fonts.
9208         * xfns.c (Fx_close_connection): Use xfree instead of free. 
9209         Only free fonts from filled font table entries.
9211         * xfaces.c (best_matching_font): Support use of scalable fonts.
9212         (Fface_scalable_fonts_mode): Toggle use of scalable fonts.
9214         * xterm.h (struct x_display_info): Remove screen_dpi, add resx
9215         and resy.
9216         * xterm.c (x_term_init): Compute resx and resy.
9218         * xfaces.c (split_font_name): Don't reject scalable fonts.
9220         * xterm.c (x_list_fonts): Set code exclusing scalable fonts 
9221         in #if 0.
9223         * xfaces.c (xlfd_point_size): Return 0 for fonts whose real
9224         point size cannot be determined.
9226         * xterm.h (FRAME_SMALLEST_CHAR_WIDTH): Return smallest character
9227         width over all fonts on a frame.
9228         (FRAME_SMALLEST_FONT_HEIGHT): Likewise for font height.
9229         * dispnew.c (adjust_frame_glyphs_for_window_redisplay): Use these
9230         macros.
9232         * xterm.c (x_font_min_bounds): Moved here from xfaces.c.
9233         (x_compute_min_char_bounds): Formerly min_char_bounds in xfaces.c.
9234         (x_load_font): Use x_compute_min_char_bounds.
9236         * xterm.h (struct x_display_info): New members smallest_char_width
9237         and smallest_font_height.
9239 1998-04-28  Gerd Moellmann  <gerd@gnu.org>
9241         * dispextern.h (PREPARE_FACE_FOR_DISPLAY): Call function with
9242         the same name if GC of face is zero.
9244         * dispextern.h (struct face): Member non_ascii_gc removed.
9246         * xterm.c (x_get_char_font_and_encoding): Return face's font
9247         for characters < 0177 in default face.  Prepare face for 
9248         display before returning it.
9249         (x_produce_glyphs): Use it->charset.
9250         (x_get_char_font_and_encoding): Simplified.
9251         (x_encode_char): Remove parameter `font'.
9253         * xfaces.c (choose_face_font): If registry from charset symbol
9254         doesn't contain a `-', make it a pattern by appending "*-*".
9256         * xdisp.c (check_iterator_glyph_property): Adjust limit for
9257         glyph_check_pos computation to character boundary.
9259 1998-04-27  Gerd Moellmann  <gerd@gnu.org>
9261         * fontset.h (FONT_INFO_FROM_ID): Return null if ID is invalid.
9263         * xfaces.c (ascii_face_of_lisp_face): Get the id of the realized
9264         ASCII face for a given Lisp face id.
9266         * xdisp.c (set_iterator_stop_pos): Take glyph_check_pos into
9267         account.
9268         (reseat_iterator): Set glyph_check_pos. Handle case where 
9269         new position is < original position.
9270         (check_iterator_glyph_property): Handle glyph property in strings.
9271         (next_element_from_string): Call above function.
9272         (next_element_from_display_vector): Handle faces in glyphs.
9273         (get_next_display_element): Set face_id of glyphs for
9274         control chars to zero.
9276         * Makefile.in (term.o): Add dependency on dispextern.h.
9278         * xdisp.c (syms_of_xdisp): Add symbol `glyph'.
9279         (display_line): Handle marginal areas.
9280         (move_iterator_in_display_line_to): Likewise.
9282         * xfaces.c (Finternal_make_lisp_face): Assign Lisp faces an id.
9284         * xfaces.c (face_at_buffer_position): Don't merge with nil
9285         text property.
9286         (face_at_string_position): Ditto.
9288         * dispextern.h (struct display_iterator): Use a stack of saved
9289         values instead of saving check positions etc. individually.
9291         * xdisp.c (set_iterator_to_next): If end of Lisp string reached,
9292         maybe pop the iterator's stack.
9293         (save_iterator_settings): Push a value on iterator's stack.
9294         (get_overlay_strings_at_iterator_position): Use it.
9295         (restore_iterator_settings): Pop the stack.
9296         (set_iterator_to_next_overlay_string): Use it.
9298         * xfaces.c (try_font_list): Use alternative font families.
9300 1998-04-26  Gerd Moellmann  <gerd@gnu.org>
9302         * xfaces.c (Fset_face_font_sort_order): Set the order in which
9303         font selection matches fonts.
9304         (Fface_font_sort_order): Return the font sort order.
9305         (best_matching_font): Find best matching font based on sort order.
9306         (cmp_font_names): Sort by given sort order.
9308         * dispextern.h (struct display_iterator): New member faces_p.
9309         * xdisp.c (init_iterator): Initialize it->faces_p.
9310         (compute_face_at_iterator_string_position): Use it.
9311         (compute_face_at_iterator_position): Use it.
9312         (init_iterator): Use it.
9313         (display_mode_line): Ditto.
9315         * xdisp.c (get_next_display_element): Put code choosing a face
9316         when the charset changes in #ifdef HAVE_FACES.
9318         * dispextern.h (FACE_FOR_CHARSET): Replacement for function 
9319         lookup_face_for_charset.
9321         * xfaces.c (free_font_names): Renamed from free_split_font_names.
9322         (free_all_realized_faces): Renamed from remove_all_realized_faces.
9324 1998-04-25  Gerd Moellmann  <gerd@gnu.org>
9326         * xfaces.c (best_matching_font): Return the name of the best
9327         matching font in an array of font_name structures.
9328         (choose_face_font): Use it.
9329         (choose_face_fontset_font): Use it.
9330         (find_best_weight_font): If final font found has same weight as
9331         the font we started with, return the original font because it is a
9332         better match for the resolution of the display.
9333         (find_best_slant_font): Likewise.
9334         (merge_face_vector_with_property): Check more invalid attribute
9335         values.
9336         (lface_suitable_for_charset_p): Replaced by a macro with the same
9337         name in upper-case.
9339 1998-04-24  Gerd Moellmann  <gerd@gnu.org>
9341         * dispextern.h (struct face): Member
9342         fontset_chosen_for_realization_p removed.
9344         * xfaces.c (cache_face): If face->fontset >= 0, add face to the
9345         end of the collision list, so that we find more specific faces
9346         first.
9347         (lookup_face_for_charset): Look up a new face if face->fontset >=
9348         0, and charset != CHARSET_COMPOSITION.
9350         * xfaces.c (split_font_name): Return zero if point size of font
9351         couldn't be computed.
9352         (realize_default_face): Use ASCII font of a fontset to determine
9353         font-related attributes of the default face.
9354         (face_fontset): Return fontset id for face family.
9355         (font_list): Additional parameter font_pattern.  If non-nil,
9356         return fonts matching that pattern.
9358 1998-04-23  Gerd Moellmann  <gerd@gnu.org>
9360         * xfaces.c (choose_face_fontset): If new fontset cannot be
9361         constructed, or fontset name cannot be split, return the id of the
9362         standard fontset.
9364         * xterm.c (XTframe_up_to_date): Check that frame is an X frame.
9365         When Emacs starts, it may be called for the initial frame which
9366         isn't an X frame.
9368         * dispextern.h (struct face): New members foreground_defaulted_p,
9369         background_defaulted_p.
9370         (struct face): Members `mask' and `cache' removed.
9372         * xfaces.c (load_color): Set them.
9373         (free_face_colors): Check them.
9374         (xlfd_point_size): Return -1 if resolution or point size of 
9375         font unknown.
9377         * xfaces.c (free_font): Removed.
9378         (load_face_font_or_fontset): Renamed from load_font.
9379         (load_face_font_or_fontset): Use message2 instead of signalling.
9380         (load_color): Likewise.
9381         (load_pixmap): Likewise.
9383         * xterm.h (struct x_display_info): Add screen_dpi.
9384         * xterm.c (x_term_init): Initialize it.
9385         * xfaces.c (xlfd_point_size): Use it.
9386         (split_font_name): Compute numeric XLFD_RESY.
9387         (cmp_font_names): Make fonts with an y-resolution more 
9388         similar to that of the frame appear first in the result.
9390         * xfaces.c (cache_face): If fontset_chosen_for_realization_p
9391         is set for the face to cache, add it to the end of the collision
9392         list.
9393         (try_font_list): If fonts for given family and registry cannot
9394         be found, first try to keep the registry, and choose a different
9395         family.
9396         (choose_face_font): Allow nfonts == 0.
9397         (try_font_list): Give up if no font matches given registry.
9399 1998-04-22  Gerd Moellmann  <gerd@gnu.org>
9401         * xterm.c (x_get_char_font_and_encoding): Get font_info from
9402         font info id of the face.
9404         * xfaces.c (load_font): Set font_info_id.
9405         (realize_face): Ditto.
9407         * dispextern.h (struct face): Change member font_info to
9408         font_info_id.
9410         * fontset.h (FONT_INFO_ID): Build an ID from a font_info pointer.
9411         (FONT_INFO_FROM_ID): Get a font_info pointer from an ID.
9413         * xdisp.c (extend_face_to_end_of_line): If IT's current charset
9414         isn't ASCII, get the ASCII face before adding a space.
9415         (append_space): Likewise.
9416         (insert_left_trunc_glyphs): Initialize truncate_it's charset
9417         to -1 so that it will compute the right face for the truncation
9418         glyphs.
9420         * xfaces.c (realize_face): Set
9421         face->fontset_chosen_for_realization_p.
9422         (lookup_face_for_charset): If fontset wasn't specified originally
9423         and new charset != CHARSET_COMPOSITION, get a new face for that
9424         charset.
9426         * dispextern.h (struct face): New member
9427         fontset_chosen_for_realization_p_specified_p.  Set to 1 when
9428         realize_face has chosen a fontset to display composite characters
9429         for a Lisp face not specifying a fontset.
9431         * xdisp.c (extend_face_to_end_of_line): Move tests for default
9432         face and line already filled here.  Don't do anything if current
9433         face hasn't a relief or has a background equal to the frame
9434         background.
9436         * xfaces.c (split_font_name): Additional parameter numeric_p.
9437         Don't compute numeric values if it is non-zero.
9438         (choose_face_fontset): Call split_font_name with numeric_p == 0.
9439         (choose_face_fontset): Print a message if fontset contains a 
9440         font whose name cannot be split into fields.
9442 1998-04-21  Gerd Moellmann  <gerd@gnu.org>
9444         * xfaces.c (try_font_list): Try to load a list of fonts, 
9445         possibly using less restrictive patterns.
9446         (choose_face_font): Use it.
9448         * xterm.c (x_get_char_font_and_encoding): For charset !=
9449         CHARSET_ASCII use font_info of face if face hasn't a fontset set.
9451         * dispextern.h (struct face): New member font_info.
9453         * xfaces.c (load_font): Use FS_LOAD_FONT to load fonts for faces
9454         specifying a fontset as well as those not having a fontset.
9455         (free_font): Make it empty.
9456         (realize_face): Use changed load_font.
9458         * xterm.c (x_get_char_font_and_encoding): If face doesn't
9459         fit for charset, get the right one.
9461         * xfaces.c (load_font): Take frame and name parameter, return
9462         font.
9463         (free_font): Likewise.
9464         (split_font_name): Compute numeric values for height, swidth etc.
9465         (cmp_font_names): Use them.
9466         (find_best_width_font): Ditto.
9467         (find_best_height_font): Ditto.
9468         (find_best_weight_font): Ditto.
9469         (find_best_slant_font): Ditto.
9470         (lface_hash): Add weight, slant, swidth and relief to hash value.
9471         (lface_equal_p): Make it faster.
9472         (lface_from_symbol): Use assq_no_quit.
9473         (Fnote_default_face_changed): Removed.
9474         (cmp_font_names): Use strcmp instead of xstricmp.
9475         (face_charset_registries): Removed.
9477 1998-04-20  Gerd Moellmann  <gerd@gnu.org>
9479         * frame.h (CHECK_FRAME): Give this macro a statement form.
9480         (CHECK_LIVE_FRAME): Ditto.
9482         * xfaces.c (find_best_width_font): Find the best matching font
9483         for a given width.
9484         (find_best_height_font): Likewise for height.
9485         (find_best_weight_font): Likewise for weight.
9486         (find_best_slant_font): Likewise for slant.
9487         (choose_face_font): Use them.
9488         (get_lface_attributes): Always return frame-local face attrs.
9489         (Finternal_merge_in_global_face): Merge local face with 
9490         global face attributes.
9492         * xfaces.c (check_lface_attrs, check_lface): Check consistency of
9493         Lisp face attributes.
9495 1998-04-19  Gerd Moellmann  <gerd@gnu.org>
9497         * xfaces.c (Finternal_set_lisp_face_attribute): Add :bold
9498         and :italic for compatibility.
9499         (Finternal_set_lisp_face_attribute_from_resource): Handle
9500         :bold and :italic.  Handle boolean resource values for 
9501         :underline and :italic.
9503         * xfns.c (display_x_get_resource): Make it externally visible.
9505         * xfaces.c (lface_from_symbol): Take a frame as parameter.
9506         If that frame is non-null, return the frame-local face.
9507         (Finternal_make_lisp_face): Additional frame argument.
9508         (lface_attributes): Get face attributes from global and frame-local
9509         definitions.
9510         (Finternal_lisp_face_equal_p): Additional frame argument.
9511         (merge_lisp_face_vector_with_property): Ditto.
9512         (Frealize_basic_faces): Removed.
9513         (Finternal_get_lisp_face_attribute): Additional frame argument.
9514         (Finternal_lisp_face_p): Ditto.
9515         (load_color) [MSDOS]: Removed because it isn't clear how
9516         to do this for MS-DOS.
9518         * xfaces.c (lface_from_symbol): Get global face definition
9519         from face-global-alist.
9521         * xfaces.c (Finternal_set_lisp_face_attribute): Allow `t'
9522         as values for :underline and :inverse-video.
9523         (Finternal_set_lisp_face_attribute): Allow nil values.
9525 1998-04-17  Gerd Moellmann  <gerd@gnu.org>
9527         * xfaces.c (Finternal_make_lisp_face): Return Lisp face vector.
9529         * xfaces.c (syms_of_xfaces): Add Vall_faces.
9530         (Finternal_make_lisp_face): Add new face to Vall_faces.
9532         * xdisp.c (echo_area_display): Remove code recomputing faces.
9533         (redisplay_internal): Ditto.
9534         (init_iterator): Do it here.
9536         * xfaces.c (choose_face_font): Check that swidth doesn't change
9537         for subusequent attributes.
9538         (xlfd_point_size): Return int.
9540         * xdisp.c (redisplay_internal, echo_area-display): If realized
9541         faces have been cleared, call recompute_basic_faces.
9543         * xfaces.c (recompute_basic_faces): Free realized faces.  Reset
9544         face_attributes_changed_p.
9545         (remove_all_realized_faces): Remove all realized faces on 
9546         all frames.
9547         (Finternal_set_lisp_face_attribute): Call remove_all_realized_faces.
9549         * xdisp.c (redisplay_internal): If face attributes have been
9550         changed since the last redisplay, recompute basic faces.
9551         (echo_area_display): Ditto.
9553         * xfaces.c (clear_face_gcs): Renamed from clear_realized_face_cache.
9555         * xfaces.c (min_char_bounds): If face cache not yet present,
9556         don't try to get font dimensions from faces.
9558         * xterm.c (x_frame_mode_line_height): If face cache not present
9559         set, return default height.
9561         * alloc.c (mark_face_cache): Check for null faces.  Correct
9562         index bug.
9564         * dispextern.h (struct face): Renamed from struct rface.  Member
9565         underline renamed underline_p.  Make it a bit-field.
9567         * xfaces.c (init_frame_faces): Allocate face cache.
9568         (free_frame_faces): Free face cache.
9569         (recompute_basic_faces): Realize basic faces only if face cache is
9570         allocated, i.e. after init_frame_faces has been called.
9572         * frame.c (make_frame): Initialze face cache with null.
9574         * xfaces.c (same_size_fonts): Removed.
9576         * xterm.c (x_set_glyph_string_gc): Add post-condition 
9577         s->gc != 0.
9578         (x_set_mouse_face_gc): Ditto.
9579         (x_set_mode_line_face_gc): Ditto.
9581         * xfaces.c (realize_default_face): Return int.  Value is 
9582         zero if frame params don't contain enough information to 
9583         realize the default face.
9584         (realize_basic_faces): Ditto.
9585         (init_frame_faces): Realize basic faces.
9587         * xfns.c (x_set_font): First store real font name in frame
9588         parameters, then call recompute_basic_faces.
9590         * xfaces.c (recompute_basic_faces): Call realize_basic_faces.
9592 1998-04-16  Gerd Moellmann  <gerd@gnu.org>
9594         * xfaces.c (syms_of_xfaces): Correct calls to defsubr.
9596         * xfns.c (Fx_face_fixed_p): Removed.
9597         (Fx_list_fonts): Moved to xfaces.c.
9599         * xfaces.c (compute_face_at_buffer_pos): Renamed to
9600         face_at_buffer_position.  Parameter charset removed; always
9601         compute face for CHARSET_ASCII.
9602         (face_at_string_position): Renamed from
9603         compute_face_at_string_pos. Parameter charset removed; always
9604         compute for CHARSET_ASCII.
9605         (lookup_face_for_charset): Take frame parameter instead of 
9606         face_cache.
9607         (lookup_face): Ditto.
9608         (compute_char_face): Renamed from compute_glyph_face.
9610         * xdisp.c (init_iterator): Initialize charset member.
9611         (reseat_iterator_to_string): Ditto.
9612         (get_charset_at_buffer_position): Determine charset at
9613         buffer position in current_buffer.
9614         (reseat_iterator): Call above function.
9615         (compute_face_at_iterator_position): Call
9616         compute_face_at_buffer_pos.
9617         (compute_face_at_iterator_string_position): Call
9618         compute_face_at_string_pos.
9619         (get_face_from_id): Removed.
9620         (get_face_from_cursor_pos): Call compute_face_at_buffer_pos.
9621         Call get_charset_at_buffer_position.
9622         (reseat_iterator): Determine face if charset at pos differs
9623         from iterator's charset.
9624         (reseat_iterator_to_glyph_pos): Removed.
9626         * xfaces.c (compute_face_at_bufpos): Remove parameter charset.
9627         Determine charset from buffer position.
9628         (compute_string_char_face): Renamed to compute_face_at_string_pos.
9629         (compute_face_at_bufpos): Renamed to compute_face_at_buffer_pos.
9631         * dispextern.h (struct display_iterator): Add member charset.
9633 1998-04-15  Gerd Moellmann  <gerd@gnu.org>
9635         * xfaces.c (compute_char_face): Removed.
9637         * xdisp.c (get_overlay_arrow_glyph_row): Use compute_glyph_face
9638         with new parameter list.
9640         * xfaces.c (region_face): Removed.
9641         (allocate_face): Removed.
9642         (copy_face): Ditto.
9643         (face_eql): Removed.
9644         (intern_face): Removed.
9645         (clear_face_cache): Removed.
9646         (load_font): Ditto.
9647         (unload_font): Ditto.
9648         (load_color): Ditto.
9649         (unload_color): Ditto.
9650         (new_computed_face): Ditto.
9651         (intern_computed_face): Ditto.
9652         (ensure_face_ready): Ditto.
9653         (merge_faces): Ditto.
9654         (compute_base_face): Ditto.
9655         (merge_face_list): Ditto.
9656         (Fmake_face_internal): Removed.
9657         (Fset_face_attribute_internal): Ditto.
9658         (face_name_id_number): Removed.
9659         (Fframe_face_alist): Ditto.
9660         (Fset_frame_face_alist): Ditto.
9661         (Finternal_next_face_id): Ditto.
9663         * xterm.h (struct x_output): Remove computed_faces, and
9664         param_faces.  Remove macros accessing them.
9666         * xfaces.c: Entirely new face implementation added.
9668 1998-04-11  Gerd Moellmann  <gerd@gnu.org>
9670         * dispextern.h (struct glyph_pos): Member `bufpos' renamed
9671         `charpos'.
9673 1998-04-10  Gerd Moellmann  <gerd@gnu.org>
9675         * xterm.c (x_scroll_bar_move): Clear only regions not covered by
9676         scroll bar window to reduce flickering.  Clear entire height.
9678         * xdisp.c (move_iterator_vertically_backward): Set iterator's
9679         current_x and hpos to zero after moving to previous line
9680         start.
9682 1998-04-03  Gerd Moellmann  <gerd@gnu.org>
9684         * frame.h (FRAME_FACE_CACHE): Access to a frame's face cache.
9686         * xfaces.c (xlfd_point_size): Compute relative point size of
9687         fonts from font and frame resolution.
9688         (sort_fonts): New function to sort fonts, temporarily setting
9689         font_frame to the frame in effect.
9690         (xlfd_point_size): Take additional frame parameter to be able
9691         to get at the display's resolution.
9693         * xterm.c (x_setup_relief_colors): Use WHITE_PIX_DEFAULT and
9694         BLACK_PIX_DEFAULT.
9695         (x_setup_relief_color): Use FRAME_X_SCREEN instead of default
9696         screen of display.
9698 1998-03-31  Gerd Moellmann  <gerd@gnu.org>
9700         * xfaces.c (choose_face_fontset): Instantiate fontsets.
9702         * fontset.h: Add external declarations for Vfontset_alias_alist
9703         and Vglobal_fontset_alist.
9705         * xfaces.c (merge_lisp_face_vector_with_property): Simplified.
9706         (realize_default_face): If frame parameters contain an artificial
9707         font name naming a fontset, set the family of the default face to
9708         the fontset name given by the registry.
9710         * Makefile.in (alloc.o): Add dependency to dispextern.h.
9712 1998-03-22  Gerd Moellmann  <gerd@gnu.org>
9714         * alloc.c (mark_object): Add function prototype.  Add cast to
9715         Lisp_Object pointer in call to mark_object for symbol names
9716         because this otherwise gives a warning from gcc 2.8.1.
9717         (mark_face_cache): Mark Lisp objects in realized faces.
9719 1998-03-19  Gerd Moellmann  <gerd@gnu.org>
9721         * frame.h (struct frame): Add member face_cache.
9723         * alloc.c (mark_object): Mark face cache.
9724         (mark_face_cache): Mark Lisp faces in face cache of frame.
9726         * frame.c (make_frame): Initialize face_cache.
9727         (Fdelete_frame): Free it.
9729 1998-03-18  Gerd Moellmann  <gerd@gnu.org>
9731         * xfaces.c: Very first skeleton of functions for face realization,
9732         face merging, face cache etc.
9734         * dispextern.h (struct rface): Realized faces.  Will replace
9735         struct face when tested.
9736         (struct face_cache): Realized face caches.
9738         * xdisp.c (init_iterator): Initialize area member of display
9739         iterator.
9741 1998-03-17  Gerd Moellmann  <gerd@gnu.org>
9743         * xterm.c (x_append_glyph): Use it->area to store glyphs.
9745         * dispextern.h (struct display_iterator): New member area.
9747         * xterm.c (note_overwritten_text_cursor): Note when the text
9748         cursor of a window is overwritten.
9750         * xdisp.c (set_cursor_from_row): If PT is not found in the
9751         row, display the cursor at the start of the row.
9753         * dispnew.c (direct_output_forward_char): Call
9754         set_cursor_from_row.
9756         * xdisp.c (setup_iterator_overlay_strings_from_glyph_pos): If
9757         position is not in an overlay string, set iterator's position and
9758         method explicitly so.
9759         (set_cursor_from_row): Correct cursor position calculation. 
9760         Make it externally visible.
9761         (redisplay_window): Call set_cursor_from_row so that there is only
9762         one place where the cursor position is calculated from a current
9763         row.
9765         * dispextern.h (struct display_iterator): New member
9766         overlay_strings_at_end_processed_p.
9768         * xdisp.c (check_iterator): Perform sanity checks on
9769         display_iterators.
9770         (next_element_from_buffer): Check for overlay strings at ZV.
9772 1998-03-16  Gerd Moellmann  <gerd@gnu.org>
9774         * buffer.c (init_buffer_once): Add left_margin_width and
9775         right_margin_width to buffer_local_flags.
9777         * dispnew.c (margin_glyphs_to_reserve): Function computing
9778         number of glyphs to reserve for a marginal area.
9779         (adjust_glyph_matrix): Call it.
9780         (adjust_frame_glyphs_for_frame_redisplay): Return if frame
9781         is not alive.
9783         * window.c (Fset_window_margins): Allow floats.
9785         * buffer.c (syms_of_buffer): Add buffer-local variables
9786         left-margin-width and right-margin-width.  Add defaults
9787         default-left-margin-width and default-right-margin-width.
9789         * buffer.h (struct buffer): New members left_margin_width
9790         and right_margin_width.
9792         * window.c (Fset_window_margins): Make window the last and
9793         optional argument.
9795         * xterm.c (x_draw_glyphs): Compute x-positions for rows with
9796         flag no_marginal_areas_p differently.
9797         (x_clear_end_of_line): Ditto.
9798         (x_draw_glyph_string_relief): Compute width of relief differently
9799         for rows with flag no_marginal_areas_p.
9801         * dispnew.c (update_window_line): Update marginal areas only
9802         for rows that don't have no_marginal_areas_p set.
9804         * xdisp.c (display_mode_line): Set row's flag no_marginal_areas_p.
9805         (display_menu_bar): Ditto.
9807         * dispextern.h (struct glyph_row): New member no_marginal_areas_p.
9809         * dispnew.c (adjust_glyph_matrix): Compute glyph pointers for
9810         marginal areas in window-based redisplay.
9812         * dispextern.h (struct glyph_matrix): New members
9813         left_margin_glyphs and right_margin_glyphs.
9815 1998-03-15  Gerd Moellmann  <gerd@gnu.org>
9817         * minibuf.c (read_minibuf_unwind): Return Lisp_Object.
9819         * charset.c (non_ascii_char_to_string): Use char type parameters
9820         because the function is used that way from outside.  Use unsigned
9821         char internally.
9823         * window.c (change_window_height): Return void.
9824         (make_dummy_parent): Return void.
9825         (init_window_once): Return void.
9826         (syms_of_window): Ditto.
9827         (keys_of_window): Ditto.
9828         (delete_window): Correct return with and without value.
9830         * buffer.c (record_buffer): Return void.
9832         * marker.c (unchain_marker): Return void.
9834         * window.c (unshow_buffer): Return void.
9835         (replace_window): Ditto.
9836         (delete_window): Ditto.
9838         * term.c (delete_glyphs_hook): Void return type.
9839         (ring_bell_hook): Ditto.
9840         (set_terminal_window_hook): Ditto.
9842         * sysdep.c (init_sigio): Return void.
9844         * xterm.c (x_set_window_size): Return void.
9845         (x_calc_absolute_position): Ditto.
9846         (x_set_offset): Ditto.
9847         (x_focus_on_frame): Ditto.
9848         (x_unfocus_frame): Ditto.
9849         (x_make_frame_visible): Ditto.
9850         (x_make_frame_invisible): Ditto.
9851         (x_iconify_frame): Ditto.
9852         (x_destroy_window): Ditto.
9853         (x_wm_set_window_state): Ditto.
9854         (x_wm_set_icon_pixmap): Ditto.
9855         (x_wm_set_icon_position): Ditto.
9856         (x_initialize): Ditto.
9857         (x_error_quitter): Ditto.
9858         (x_destroy_window): Use xfree instead of free.
9860         * keyboard.c (clear_waiting_for_input): Return void.
9862         * xterm.c (x_wm_set_size_hint): Return void.
9863         (x_raise_frame): Ditto.
9864         (refreshicon): Ditto.
9865         (x_error_catcher): Ditto.
9866         (x_clear_errors): Ditto.
9868         * keyboard.c (record_asynch_buffer_change): Return void.
9870         * xterm.c (XTroï\0ðoï\0ðÃâ\0ðoï\0ðoï\0ðTÿ\0ðLá\0ðoï\0ðterminal_window): Ditto.
9871         (x_lower_frame): Ditto.
9872         (x_scroll_bar_clear): Ditto.
9873         (XTflash): Add default case in switch for -Wall.
9874         (construct_mouse_click): Return Qnil.
9875         (cancel_mouse_face): Return void.
9876         (x_queue_event): Use xmalloc instead of malloc.
9877         (x_unqueue_events): Use xfree instead of free.
9879         * ccl.c (ccl_driver): Return int.
9881         * keyboard.c (stop_polling): Return void.
9882         (start_polling): Ditto.
9884         * term.c (keys): Add braces in initializer list for -Wall.
9886         * sysdep.c (tabs_safe_p): Return int.
9887         (init_baud_rate): Return void.
9889         * xterm.c (x_draw_bitmap): Add default case.
9890         (x_setup_relief_colors): Use DefaultScreen instead of
9891         DefaultScreenOfDisplay.
9892         (x_delete_glyphs): Return void.
9893         (construct_menu_click): Put in #if 0 because it isn't called.
9895         * xdisp.c (load_overlay_strings): Remove extraneous argument
9896         in call to qsort.
9897         (get_overlay_arrow_glyph_row): Add missing return value.
9899         * window.c (set_window_height): Return void.
9900         (set_window_width): Ditto.
9902         * sysdep.c (request_sigio): Return void.
9903         (unrequest_sigio): Ditto.
9904         (get_frame_size): Ditto.
9906         * scroll.c (scroll_cost): Return int.
9907         (do_line_insertion_deletion_costs): Return void.
9909         * frame.c (Fdelete_frame): Use xfree instead of free.
9911         * fileio.c (report_file_error): Return void.
9913         * dispnew.c: Make compilable with -Wall.
9914         * term.c: Ditto.
9916         * charset.h (CHAR_LEN): Moved here from dispextern.h.
9918 1998-03-14  Gerd Moellmann  <gerd@gnu.org>
9920         * xterm.c (x_scroll_bar_move): Clear under scroll bar if height is
9921         increased.
9922         (x_setup_relief_color): Free color only for appropriate visual
9923         classes.
9925         * xterm.c (expose_window): Fix calculation of intersection of mode
9926         line rectangle with exposed rectangle.
9928         * xdisp.c (redisplay_window): Don't do cursor movement based
9929         on current matrix if w->last_point is not valid.
9931 1998-03-09  Gerd Moellmann  <gerd@gnu.org>
9933         * xterm.c (expose_line): Redraw mode line and menu lines
9934         differently because they reach into the scroll bar area.
9936         * xdisp.c (redisplay_window): If redisplaying with same window
9937         start, don't accept cursor on partially visible line.
9939 1998-03-08  Gerd Moellmann  <gerd@gnu.org>
9941         * xterm.c (x_set_glyph_string_clipping): Set clip rectangle
9942         for wider mode lines.
9943         (x_draw_glyph_string_relief): Use larger rectangle for mode lines.
9945         * xdisp.c (init_iterator): Increase last_visible_x by vertical
9946         scroll bar width for mode lines.
9948         * dispnew.c (allocate_matrices_for_window_redisplay): Include
9949         vertical scroll bar width in width calculation so that we can
9950         display mode lines wider.
9952         * xdisp.c (redisplay_window): Restore buffers before returning
9953         when fonts have changed.
9955         * dispnew.c (update_window): Mark invisible rows in the current
9956         matrix invalid.
9958         * xdisp.c (try_window_id): Force update of first row displayed
9959         at window end.
9960         (dump_glyph_matrix): Extracted from Fdump_glyph_matrix.
9962 1998-03-05  Gerd Moellmann  <gerd@gnu.org>
9964         * dispextern.h (struct glyph_row): Member max_ascent renamed
9965         ascent.  Member max_descent replaced by height.
9966         (struct display_iterator): Member max_descent replaced by height.
9967         (MATRIX_ROW_PIXEL_HEIGHT): Removed.
9969         * xterm.c (x_alloc_lighter_color): Don't free colors if visual
9970         class makes it unnecessary or dangerous.
9972         * xdisp.c (redisplay_window): Case only point has changed, and
9973         point has moved forward.  Move forward over overlay strings.
9974         (display_line): Don't set cursor if first glyph from PT is part of
9975         a continuation line.
9977 1998-02-21  Gerd Moellmann  <gerd@gnu.org>
9979         * xdisp.c (start_display): When computing continuation lines
9980         width, add current_x to the continuation lines width because
9981         move_iterator_to will stop in front of the buffer position moved
9982         to.
9984 1998-02-20  Gerd Moellmann  <gerd@gnu.org>
9986         * xdisp.c (redisplay_window): Don't try try_window_id if
9987         windows_or_buffers_changed.
9989         * xterm.c (x_alloc_lighter_color): Try both factor and delta to
9990         determine a color.
9991         (x_setup_relief_color): Allocate/ change one relief.
9992         (x_setup_relief_colors): Call above function.
9994         * xterm.h (struct relief): New structure type holding relief info:
9995         GCs, colors, and whether colors are allocated.
9997         * xterm.c (x_alloc_lighter_color): If multiplying by factor 
9998         produces the same color, try adding a delta to RGB values.
9999         (x_setup_relief_colors): Free color cells.
10001         * xterm.h (struct x_output): New members white_relief_pixel, 
10002         black_relief_pixel holding the foreground colors allocated for
10003         relief GCs.  New members white_allocated_p, black_allocated_p.
10005         * xterm.c (x_scroll_run): Don't set updated_window to null.
10006         This resets updated_window when called from scrolling_window.
10008         * dispextern.h (scroll_run_hook): Renamed from line_dance_hook.
10009         
10010         * xterm.c (x_scroll_run): Additional window parameter.  Set
10011         and reset updated_window.
10013         * dispnew.c (line_dance_hook): Additional window parameter.
10015         * xdisp.c (try_window_reusing_current_matrix): Don't call
10016         update_window_begin/end here.  The end function would display the
10017         cursor on a wrong position and the additional functionality of
10018         update_window_begin is not needed anyway.  Just set
10019         updated_window.
10020         (try_window_id): Ditto.
10022         * dispnew.c (Fblink_cursor): Remove call to detect_input_pending.
10023         Don't redraw cursor during redisplay.
10025         * xterm.c (x_scroll_run): Renamed from do_line_dance.
10027         * xdisp.c (redisplay_window): For window-based redisplay, alway
10028         try try_window_id.
10030         * xterm.c (struct glyph_string): New member two_byte_p that is
10031         non-zero if 16-bit drawing functions must be used.
10032         (x_fill_composite_glyph_string): Set it.
10033         (x_fill_glyph_string): Set it.
10034         (x_draw_glyph_string_foreground): Use it.
10035         (x_draw_vertical_border): Make line 1 pixel less tall.
10036         (x_draw_row_bitmaps): Decrease width of area cleared on the left
10037         side by 1 pixel if window is not right-most hasn't vertical scroll
10038         bars.
10039         (x_draw_phys_cursor_glyph): Do nothing if phys_cursor.hpos is
10040         out of bounds.
10041         (x_draw_glyph_string_foreground): Use XDrawImageStringX if
10042         hl == DRAW_CURSOR.
10044         * xdisp.c (start_display): Check that window start is at line
10045         start if GLYPH_DEBUG != 0.
10047         * window.c (window_scroll_pixel_based): Move assertion to
10048         start_display.
10050 1998-02-19  Gerd Moellmann  <gerd@gnu.org>
10052         * xterm.c (x_redraw_cursor): Don't redraw the cursor if the 
10053         frame hasn't the focus.
10055         * window.c (make_window): Initialize dy.
10056         (replace_window): Ditto.
10058         * window.h (window): New member dy specifying the amount by which
10059         a window is scrolled "smoothly".
10061         * xterm.c (x_set_glyph_string_clipping): Don't use glyph string's
10062         y-position because it can be negative. 
10063         (x_draw_row_bitmaps): Don't clear with negative y-position like
10064         above.
10065         (x_clear_end_of_line): Same theme as above.
10067         * xterm.c (x_alloc_nearest_color): Allocate a color or, if no
10068         exact match exists, the nearest existing color.  Patterned after
10069         defined_color.
10070         (x_alloc_lighter_color): Allocate a color that is lighter or
10071         darker than a given color by a specified factor.
10072         (x_setup_relief_colors): Set up relief line colors based on 
10073         the background color of a glyph string face.
10074         (x_draw_glyph_string_relief): Call x_setup_relief_colors.
10076         * xfns.c (x_make_gc): Don't allocate relief GCs.
10077         * widget.c (create_frame_gcs): Don't allocate relief GCs.
10078         (setup_frame_gcs): Don't change relief GCs.
10080         * xterm.h (struct x_output): New member relief_background giving
10081         the background pixel color for which relief GCs can be used.
10082         Set by x_setup_relief_colors.
10084         * xterm.c (x_draw_glyph_string_relief): Draw relief differently
10085         for mode and menu lines.
10087         * xdisp.c (set_next_iterator_stop_pos): No longer static.
10089         * dispnew.c (direct_output_for_insert): Call
10090         set_next_iterator_stop_pos after having changed it2.endpos.
10092 1998-02-17  Gerd Moellmann  <gerd@gnu.org>
10094         * dispnew.c (update_window): Work on selected_window, only.
10096         * xterm.c (x_erase_phys_cursor): Return quickly if physical cursor
10097         hpos is >= number of glyphs in the cursor row.
10099         * xdisp.c (try_window_id): Bug fix; update_window_end was not
10100         called.
10102 1998-02-16  Gerd Moellmann  <gerd@gnu.org>
10104         * xdisp.c (init_iterator): Increase last_visible_x for mode lines
10105         and menu lines.
10107         * dispnew.c (allocate_matrices_for_window_redisplay): Allocate
10108         enough glyphs to display a mode line or menu line which draws over
10109         flags areas.
10111         * xterm.c (XTset_vertical_scroll_bar): Use
10112         WINDOW_DISPLAY_TEXT_AREA_PIXEL_HEIGHT instead of
10113         VERTICAL_SCROLL_BAR_PIXEL_HEIGHT.
10114         (x_draw_glyphs): Draw over flags areas when drawing a mode line 
10115         or menu.
10116         (x_set_glyph_string_clipping): Set clipping differently if drawing
10117         a mode line or menu line.
10119         * xterm.h (VERTICAL_SCROLL_BAR_PIXEL_HEIGHT): Removed.
10121         * xterm.c (expose_line): Don't draw bitmaps for mode lines and
10122         menu lines.
10123         (x_scroll_bar_create): Don't clear flags areas.
10124         (x_draw_row_bitmaps): Clear visible row height, only.
10126         * dispnew.c (Fblink_cursor): Moved here from xdisp.c.
10128 1998-02-15  Gerd Moellmann  <gerd@gnu.org>
10130         * dispnew.c (direct_output_for_insert): When checking for tabs in
10131         the line, set it2.endpos to ZV.
10132         
10133         * window.h (struct window): New member cursor_off_p.
10134         * xterm.c (x_redraw_cursor): Implementation of redraw_cursor_hook
10135         for X.
10136         * dispnew.c (redraw_cursor_hook): If non-null, function that can
10137         be called to display or erase the cursor.
10138         * xdisp.c (Fblink_cursor): Blink the cursor of a specified window
10139         or selected_window.
10141         * xterm.h (text_cursor_kinds): Enumerators changed to uppercase.
10143         * dispnew.c (update_window_line): Special handling of inverse
10144         lines in #if 0 removed.
10146         * xterm.c (x_write_glyphs): Renamed from XTwrite_glyphs.
10147         (x_insert_glyphs): Renamed from XTinsert_glyphs.
10148         (x_clear_frame): Renamed from XTclear_frame.
10149         (x_clear_end_of_line): Renamed from XTclear_end_of_line.
10150         (x_ins_del_lines): Renamed from XTins_del_lines.
10151         (x_change_line_height): Renamed from XTchange_line_height.
10152         (x_delete_glyphs): Renamed from XTdelete_glyphs.
10153         (x_clear_cursor): Renamed from clear_cursor.
10154         (x_update_begin): Renamed from XTupdate_begin.
10155         (x_update_end): Renamed from XTupdate_end.
10156         (x_update_window_begin): Renamed from XTupdate_window_begin.
10157         (x_update_window_end): Renamed from XTupdate_window_end.
10158         (x_frame_mode_line_height): Renamed from XTframe_mode_line_height.
10159         (x_produce_glyphs): Renamed from XTproduce_glyphs.
10160         (x_produce_special_glyphs): Renamed from XTproduce_special_glyphs.
10161         (x_produce_special_glyphs): Implementation in #if 0 removed.
10163         * xdisp.c (Fdump_redisplay_state): Display row's fill_line_p
10164         flag in the dump.
10166         * dispnew.c (update_text_area): Handling of glyphs with pixel
10167         width zero removed.  Decrement desired stop pos if desired row
10168         fills its line.
10170         * xterm.c (x_fill_glyph_string): Handling of glyphs with pixel
10171         width zero removed.
10172         (BUILD_GLYPH_STRINGS): Set glyph string flag
10173         extends_to_end_of_line_p based on row's flag fill_line_p and face
10174         background and stipple.  Make sure it works for composite characters.
10176         * xdisp.c (extend_face_to_end_of_line): Set the glyph row flag
10177         fill_line_p.  For window-based redisplay, add a space only if
10178         the row is empty so that we know the face to draw.
10180         * dispextern.h (struct glyph_row): New flag fill_line_p.  Non-zero
10181         means draw the face of the last glyph in the text area to the
10182         right end of the text area.
10184         * xdisp.c (init_iterator): Show region in window mini-buffer
10185         window refers to.
10187         * dispextern.h (struct display_iterator): Redundant member 
10188         region_showing_p removed.  Test for region_beg > 0 instead.
10190         * dispnew.c (update_text_area): Clear to end of line if cursor is
10191         beyond the end of the desired line.  Necessary because we don't
10192         have a phys_cursor_glyph with which to erase the cursor.  We don't
10193         have one because this method of drawing a cursor doesn't work with
10194         lbearing/rbearing.
10196         * xterm.c (XTinsert_glyphs): Block input.
10198 1998-02-14  Gerd Moellmann  <gerd@gnu.org>
10200         * xterm.c (x_set_cursor_gc): Don't use cursor_gc for composite
10201         glyph strings.
10202         (x_draw_glyph_string_background): Fill background with background
10203         pixel for the first glyph of a composite character.
10205         * xdisp.c (try_window): Change return type to int.  Value is zero
10206         if fonts were loaded during redisplay.
10207         (redisplay_window): Return if fonts have been loaded during
10208         redisplay.
10209         (append_space): New parameter default_face_p.
10211 1998-02-13  Gerd Moellmann  <gerd@gnu.org>
10213         * dispnew.c (adjust_glyph_matrix): In case of optimizing C-x 2,
10214         don't let a partially visible line in a current matrix stay
10215         enabled.
10217 1998-02-09  Gerd Moellmann  <gerd@gnu.org>
10219         * minibuf.c (read_minibuf): Put access to minibuffer_prompt_length
10220         in #if PROMPT_IN_BUFFER.
10222         * xdisp.c (display_line): If row ends in ZV, make the space
10223         that is added to place the cursor on it appear in default face.
10225         * xterm.c (expose_area): New function redrawing a single 
10226         glyph row area.
10227         (expose_line): Use it to redraw all areas of a row.
10229         * dispextern.h (move_operation_enum): New enum
10230         move_operation_enum.
10232         * window.c (window_scroll_pixel_based): Remove now unnecessary
10233         code that made sure that it->current_y doesn't become negative.
10235         * xdisp.c (move_iterator_in_display_line_to): New parameter
10236         op.  Special meaning of to_pos <= 0 and to_x < 0 removed.
10237         (move_iterator_to): Ditto.
10239         * dispextern.h (struct glyph_matrix): New member window_width.
10241         * dispnew.c (adjust_glyph_matrix): Set window_width.  Optimize
10242         case of changing window height.
10244         * xterm.c (x_draw_row_bitmaps): Don't clear vertical window
10245         border to the left. 
10247         * dispextern.h (struct glyph_row): Remove right_to_left_p.  RMS
10248         says this aspect of Emacs is currently redesigned.
10250         * xterm.c (x_clip_to_row): Subtract 1 from clip width if we
10251         have to draw a vertical border.
10253         * window.c (window_scroll_pixel_based): When scrolling down by
10254         screen-fulls, make sure it.current_y doesn't get negative because
10255         this would confuse move_iterator_vertically.
10257         * xdisp.c (move_iterator_vertically_backward): Bug fix for
10258         the case continuation lines are involved.
10259         (try_window_id): Don't set the cursor into scroll margins.
10261 1998-02-08  Gerd Moellmann  <gerd@gnu.org>
10263         * xterm.c (x_append_glyph): Don't compute left_overhang and
10264         right_overhang.
10265         (XTproduce_glyphs): left_overhang and right_overhang removed.
10266         Set it->glyph_row->contains_overlapping_glyphs_p.
10268         * xdisp.c (Fdump_redisplay_state): Output of glyph->left_overhang
10269         and right_overhang removed.
10271         * dispextern.h (struct glyph_row): New member
10272         contains_overlapping_glyphs_p used to optimize glyph drawing.
10273         (struct display_iterator): left_overhang and right_overhang
10274         removed.
10275         (struct glyph): Ditto.
10277         * xterm.c (x_draw_relief): Removed.
10278         (x_draw_bitmap): Renamed from draw_bitmap.
10279         (x_draw_glyphs): Completely new implementation of draw_glyphs
10280         capable of handling arbitrary lbearing and rbearing values.
10281         Several sub-functions not mentioned here.
10283 1998-01-30  Gerd Moellmann  <gerd@gnu.org>
10285         * xterm.c (x_erase_phys_cursor): Clear area under the cursor only
10286         if displaying hollow box cursor.  draw_glyphs should handle 
10287         other cases.
10288         (draw_glyphs): Move start to the left and end to the right if they
10289         overlap with previous or following characters.  
10290         (draw_glyphs): If background is cleared for hl == DRAW_CURSOR,
10291         make sure XDrawString uses function GXset.  Otherwise the 
10292         character under the cursor would be invisible.
10293         (x_draw_bar_cursor): Don't draw over previous character if it
10294         has right_overhang.
10296         * window.c (get_phys_cursor_glyph): Return the glyph under a
10297         window's physical cursor.
10298         
10299         * xterm.c (x_draw_hollow_cursor): Use get_phys_cursor_glyph.
10300         (x_draw_bar_cursor): Ditto.
10301         (x_erase_phys_cursor): Ditto.
10302         (x_phys_cursor_in_rect_p): Ditto.
10303         (x_display_and_set_cursor): Remove reference to w->phys_cursor_glyph.
10305         * window.c (make_window): Remove reference to phys_cursor_glyph.
10306         (replace_window): Ditto.
10308         * window.h (struct window): Remove phys_cursor_glyph.  There is
10309         now always a glyph present for placing the cursor on it in 
10310         each glyph row, even at the end of a line.
10312         * xdisp.c (append_space): Function to add a space to an iterators
10313         glyph row.
10314         (display_line): Add spaces at the end of lines that are used to
10315         place the cursor on them.
10316         (compute_line_metrics): If row consists of a space only that was
10317         added to place the cursor on it, use that space's height as the 
10318         line height.
10320 1998-01-29  Gerd Moellmann  <gerd@gnu.org>
10322         * xdisp.c (Fdump_redisplay_state): Dump left and right overhang of
10323         glyphs.
10325 1998-01-28  Gerd Moellmann  <gerd@gnu.org>
10327         * xterm.c (x_append_glyph): Set overhang of glyph from iterator.
10328         (XTproduce_glyphs): Set it->left_overhang and it->right_overhang.
10330         * dispextern.h (struct glyph): Add left_overhang and
10331         right_overhang.  
10332         (struct display_iterator): Ditto.
10334         * dispnew.c (direct_output_for_insert): Give up if newly inserted
10335         glyphs have different ascent or descent than original row.
10337         * xdisp.c (compute_line_metrics): Compute row->max_ascent and
10338         row->max_descent only if unknown.
10339         (display_line): Compute row->max_ascent and row->max_descent.
10340         (display_string): Ditto.
10342         * window.h (struct window): New members phys_cursor_ascent and
10343         phys_cursor_descent.  
10345         * xterm.c (x_phys_cursor_in_rect_p): Use them.
10346         (x_draw_hollow_cursor): Ditto.
10347         (x_erase_phys_cursor): Ditto.
10348         (x_display_and_set_cursor): Set them.
10349         (x_append_glyph): Don't set glyph members that were removed.
10351         * dispextern.h (struct glyph): Members ascent, descent,
10352         contributes_to_line_height_p removed.
10354 1998-01-25  Gerd Moellmann  <gerd@gnu.org>
10356         * dispextern.h (DEFAULT_FACE_ID, MODE_LINE_FACE_ID): Symbolic
10357         names for face ids of frame default face and mode line face.
10359         * xdisp.c (compute_face_at_iterator_string_position): If
10360         displaying a mode line use MODE_LINE_FACE_ID instead of
10361         DEFAULT_FACE_ID.
10363         * xdisp.c (reseat_iterator_to_string): Additional parameter start.
10364         (display_string): Ditto, additional parameter lisp_string.
10365         (display_line): Call display_string with Lisp mini-buffer prompt
10366         string.
10367         (display_menu_bar): Call display_string with Lisp string.
10368         (display_mode_element): Ditto.
10369         (next_element_from_string): Make it work for non-overlay Lisp
10370         strings with field width and precision.
10372         * minibuf.c (minibuffer-prompt-in-buffer): Bound if
10373         PROMPT_IN_BUFFER.
10375         * xfaces.c (compute_string_char_face): Fix face computation
10376         for overlay strings.
10378         * xdisp.c (struct overlay_entry): Add member after_string_p.
10379         (load_overlay_strings): Simplify.
10381         * window.c (delete_window): Defer glyph matrix adjustment.
10382         (Fsplit_window): Ditto.
10383         (change_window_height): Ditto.
10384         (Fset_window_configuration): Ditto.
10385         (Fset_window_margins): Ditto.
10386         * frame.c (set_menu_bar_lines): Ditto.
10387         (Fmake_terminal_frame): Ditto.
10388         * dispnew.c (change_frame_size_1): Ditto.
10390 1998-01-24  Gerd Moellmann  <gerd@gnu.org>
10392         * xdisp.c (move_iterator_vertically_backward): Change algorithm.
10394         * dispnew.c (direct_output_for_insert): Give up if start 
10395         position has overlay strings.
10397         * xdisp.c (display_line): Don't set cursor if row ends in middle
10398         of overlay string.
10399         (Fdump_redisplay_state): Print complete row start and end
10400         position.
10401         (redisplay_window): Cursor movement when matrix hasn't changed---
10402         if PT < last_point, maybe move forward if row ends at PT and
10403         in middle of char.
10405         * minibuf.c (read_minibuf): Save the value of
10406         minibuffer_prompt_length in minibuf_save_list.
10407         (read_minibuf_unwind): Restore minibuffer_prompt_length.
10409         * xdisp.c (redisplay_window): Add assertion for cursor movement
10410         case, PT < last_point.
10411         (move_iterator_in_display_line_to): If to_pos specified, move
10412         over before-strings.
10414         * dispextern.h (MATRIX_ROW_STARTS_IN_MIDDLE_OF_CHAR_P): Test
10415         start.string_index > 0.
10417         * xdisp.c (redisplay_internal): Adjust glyphs if fonts_changed_p
10418         is set.  Retry redisplay if fonts_changed_p is set before update.
10420         * xterm.c (x_load_font): Set fonts_changed_p.
10422         * xfaces.c (Fset_face_attribute_internal): Set fonts_changed_p.
10424         * dispnew.c (adjust_glyphs_for_font_change): Removed.
10426         * xdisp.c (try_window): Check fonts_changed_p.
10427         (try_window_reusing_current_matrix): Ditto.
10428         (try_window_id): Ditto.
10430         * dispnew.c (adjust_glyphs_for_font_change): Set fonts_changed_p.
10431         (fonts_changed_p): Flag indicating a font change since the last
10432         glyph matrix adjustment.
10434         * xterm.c (x_per_char_metric): Use font->max_bounds as
10435         char metric of the font's default char if the default char
10436         hasn't per char metric itself.
10438         * xfaces.c (Fset_face_attribute_internal): Adjust glyphs
10439         for font change.
10440         (min_char_bounds): Check face->font != NULL.
10441         (font_min_bounds): Return minimum font metrics.  Capture the 
10442         case of invalid min_bounds contents.
10443         (min_char_bounds): Call font_min_bounds.
10445 1998-01-22  Gerd Moellmann  <gerd@gnu.org>
10447         * xdisp.c (start_display): Don't set it->prompt_width if
10448         PROMPT_IN_BUFFER.
10449         (move_iterator_in_display_line_to): Ditto.
10450         (display_line): Don't display prompt via display_string if
10451         PROMPT_IN_BUFFER.
10453         * minibuf.c (Fminibuffer_prompt_width): Return value from
10454         current_buffer if PROMPT_IN_BUFFER.
10455         (read_minibuf): If PROMPT_IN_BUFFER, insert prompt into 
10456         mini-buffer and make it read-only.
10457         (Fminibuffer_complete_and_exit): If PROMPT_IN_BUFFER, use
10458         minibuffer_prompt_length instead of BEGV.
10459         (Fminibuffer_complete_word): Ditto.
10460         (Fminibuffer_complete_word): Ditto.
10462         * insdel.c (del_range_1): If PROMPT_IN_BUFFER, and start position
10463         is less than mini-buffer prompt width, use prompt width as start.
10465         * editfns.c (make_buffer_string): If PROMPT_IN_BUFFER, and start
10466         position is less than mini-buffer prompt width, use the prompt
10467         width as start.
10469         * cmds.c (Fbeginning_of_line): If PROMPT_IN_BUFFER, set point to
10470         end of prompt if applied to a mini-buffer and BEG reached.
10472 1998-01-21  Gerd Moellmann  <gerd@gnu.org>
10474         * editfns.c (make_buffer_string): If PROMPT_IN_BUFFER, add prompt
10475         length to start position.
10477         * buffer.c (Fget_buffer_create): Initialize
10478         minibuffer_prompt_length.
10479         (Fmake_indirect_buffer): Ditto.
10480         (Fkill_buffer): Ditto.
10482         * buffer.h (struct buffer): Add member minibuffer_prompt_length
10483         if PROMPT_IN_BUFFER.
10485 1998-01-19  Gerd Moellmann  <gerd@gnu.org>
10487         * xdisp.c (next_element_from_string): Make it work for arbitrary
10488         Lisp strings.
10489         (set_iterator_to_next): Advance to next overlay string only
10490         if it->string is an overlay string.
10492         * dispextern.h (struct display_iterator):
10493         next_ovstr_face_check_pos renamed next_string_face_check_pos.
10495         * xfaces.c (compute_string_char_face): Compute face for 
10496         arbitrary Lisp string.  Renamed from compute_overlay_string_char_face.
10498         * xdisp.c (next_element_from_string): Renamed from
10499         next_element_from_overlay_string.
10500         (compute_face_at_iterator_string_position): Renamed from 
10501         compute_face_at_iterator_overlay_string_position.
10503         * dispextern.h (struct display_iterator): Member overlay_string
10504         renamed string.
10506         * xdisp.c (next_element_from_c_string): Renamed from
10507         next_element_from_string.
10509         * dispextern.h (struct glyph_pos): Reversed meaning of
10510         overlay_string_index and string_index.
10512         * xdisp.c (next_element_from_overlay_string): Fix bug that made
10513         this function always return the first character of an overlay
10514         string.
10516 1998-01-18  Gerd Moellmann  <gerd@gnu.org>
10518         * xdisp.c (reseat_iterator): Set next_invisible_check_pos only if
10519         forced or new pos > next_invisible_check_pos.
10520         (redisplay_window): Don't try same window start if PT < window
10521         start.
10522         (move_iterator_vertically): Bug fix satisfying post-condition
10523         when ZV is reached and no newline in front.
10524         (move_iterator_vertically_backward): New implementation.
10525         (move_iterator_vertically_backward): Bug fixes.
10527         * xterm.c (XTmouse_position): Change call to min_char_bounds.
10528         * dispnew.c (adjust_frame_glyphs_for_window_redisplay): Ditto.
10529         (adjust_glyphs_for_font_change): Always adjust.
10531         * dispnew.c (struct dim): Use int.
10533         * xfaces.c (Fset_face_attribute_internal): Set face->font_name;
10534         (allocate_face): Initialize it.
10535         (load_font): Use XLoadQueryFont again instead of x_load_font.
10536         (unload_font): Use XFreeFont again.
10537         (min_char_bounds): Iterate over fonts of faces.  Use frame's
10538         font sizes as default.  Remove parameter except_last_font_p.
10540         * dispextern.h (struct face): Add font_name.
10542 1998-01-17  Gerd Moellmann  <gerd@gnu.org>
10544         * xdisp.c (move_iterator_vertically): Check post-condition.  Move
10545         to start of line if ending at ZV and no newline in front.
10546         (move_iterator_to): If to_y specified, always first move to x = 0,
10547         so that move stops at line start instead of line end.  This is
10548         probably what callers would expect to happen.
10550         * window.c (window_scroll_pixel_based): Pixel-based scrolling that
10551         can handle different line heights.
10552         (window_scroll_line_based): Formerly window_scroll.
10553         (window_scroll): Call both.
10555         * xdisp.c (start_display): Exclude code if PROMPT_IN_BUFFER.
10556         (move_iterator_in_display_line_to): Ditto.
10557         (display_line): Ditto.
10559         * minibuf.c (read_minibuf): Conditionally insert prompt into
10560         buffer instead of handling prompts specially.  Change other
10561         functions accordingly.  All such code is in #if PROMPT_IN_BUFFER.
10563         * dispnew.c (adjust_glyph_matrix): Optimize the handling of C-x 2,
10564         upper window.  Optimize calls to xrealloc if same width.
10566         * xdisp.c (redisplay_window): Don't use
10567         try_window_reusing_current_matrix if window scroll functions
10568         exist.
10570         * dispextern.h (struct display_iterator): Member
10571         redisplay_end_trigger_p removed.
10573         * dispextern.h (WINDOW_DISPLAY_PIXEL_HEIGHT_WITHOUT_MODE_LINE):
10574         Renamed to WINDOW_DISPLAY_TEXT_AREA_PIXEL_HEIGHT.
10576 1998-01-16  Gerd Moellmann  <gerd@gnu.org>
10578         * xdisp.c (move_iterator_by_lines): Optimize for truncate-lines
10579         nil.  Optimize truncate-lines t and moving backward.
10580         (move_iterator_to_previous_visible_line_start): Contains the heart
10581         of the previous set_iterator_to_previous_visible_line_end.  Don't
10582         reseat the iterator.  Used by move_iterator_by_lines.
10583         (set_iterator_to_previous_visible_line_start): Call function
10584         above.
10585         (move_iterator_in_display_line_to): Check TO_POS before doing
10586         anything else.  Otherwise to_pos == PT would move to x of PT+1.
10588         * indent.c (Fvertical_motion): Use display_iterator.
10590         * xdisp.c (move_iterator_by_lines): New function moving by screen
10591         lines.
10592         (redisplay_window): Use it.
10593         (move_iterator_to): Correct branch of to_vpos specified.
10594         (move_iterator_vertically_backward): Increment nlines after having
10595         backed up over some lines because the last line was not backed up
10596         over.
10597         (move_iterator_via_matrix): Look for it->pos in the matrix, and
10598         calculate it->vpos and it->current_y relative to this row.
10599         (move_iterator_via_matrix): Set in #if 0.  It doesn't seem to 
10600         have a big effect and it is complex.
10601         (move_iterator_to): Call to move_iterator_via_matrix in #if 0.
10603 1998-01-15  Gerd Moellmann  <gerd@gnu.org>
10605         * xterm.c (x_draw_relief): Simplify drawing and draw so that lines
10606         join nicely.  Lines with widths > 2 don't join nicely under X.
10607         * xterm.h (struct x_output): Remove member relief_gc_line_width.
10608         * widget.c (setup_frame_gcs): Initialize relief GC's to line
10609         width 1; remove references to relief_gc_line_width.
10610         * xfns.c (x_make_gc): Ditto.
10612         * xfaces.c (Fset_face_attribute_internal): Set frame garbaged
10613         if relief changes.
10614         (Fset_face_attribute_internal): Use XINT instead of XFASTINT
10615         to get a relief because they can be negative.
10617         * xterm.c (x_draw_relief): Correct line drawing positions.  Pixel
10618         positions are for the middle of lines under X.
10620         * xdisp.c (try_window_id): Always search for the cursor by setting
10621         w->cursor.vpos = -1.  Search in unchanged rows at the top and
10622         bottom if cursor not found in displayed lines.
10623         (display_mode_line): First extend face, then set right shadow 
10624         flag.  Otherwise the wrong glyph gets the right shadow.
10626         * dispnew.c (direct_output_for_insert): Give up if line contains
10627         a tab.  The number of spaces inserted for a tab changes if we
10628         insert glyphs in front of it.
10630         * xterm.c (x_list_fonts): Changes undone because the Lisp
10631         implementation for make-face-smaller, make-face-larger, and
10632         make-face-fixed can do without them.
10634         * xfns.c (Fx_list_fonts): Original x-list-fonts from x-list-font.c
10635         inserted.
10637         * xdisp.c (try_window_id): First compute beg_unchanged, then
10638         compare with window start pos.
10640         * xfns.c (Fx_face_fixed_p): Determine whether a face has a
10641         fixed-width font.
10642         (syms_of_xfns): defsubr for x-face-fixed-p.
10644         * xterm.c (x_erase_phys_cursor): If row containing cursor is not
10645         enabled, don't do anything because this row will be newly drawn
10646         anyway and because we can additionally no longer determine the row
10647         height.
10649         * xdisp.c (display_line): Bug fix cursor positioning.
10651         * xfns.c (x-list-fonts): Copied from x-list-fonts.c; #include
10652         removed.  x-list-fonts.c is now obsolete.
10653         (Qfixed, Qvariable): Moved here from xfaces.c.
10655 1998-01-14  Gerd Moellmann  <gerd@gnu.org>
10657         * xdisp.c (display_line): Set row->ends_at_zv_p based on
10658         FETCH_BYTE for truncated lines.
10659         (display_line): Set cursor differently.
10660         (display_line): Fixed bug setting last_pos_on_this_line wrong
10661         for truncated lines.
10663         * dispnew.c (adjust_glyph_matrix): Always adjust for frame-based
10664         redisplay.
10666         * window.c (Fsplit_window): Adjust glyphs before setting buffer.
10668         * dispnew.c (adjust_frame_glyphs_for_window_redisplay): Add
10669         assertion that character dimensions are not zero.
10671         * xterm.c (x_load_font): adjust_glyphs_for_font_change while
10672         input is blocked.
10674         * xdisp.c (decode_mode_spec): Faster implementation of line number
10675         display.
10677         * xterm.c (x_draw_row_bitmaps): Clear flags area before drawing
10678         bitmaps if bitmaps don't fill the entire area.
10679         (draw_bitmap): Draw bitmaps horizontally centered in flags area.
10681         * xterm.h (FRAME_FLAGS_BITMAP_HEIGHT): Macro giving the 
10682         pixel height of flags bitmaps.
10684         * frame.h (FRAME_FLAGS_AREA_COLS): Use FRAME_X_FLAGS_AREA_COLS.
10685         (FRAME_FLAGS_AREA_WIDTH): Ditto.
10687         * xterm.h (FRAME_FLAGS_BITMAP_WIDTH): Macro giving the width
10688         in pixels of a flags area of a frame.
10689         (FRAME_X_FLAGS_AREA_WIDTH): Removed.
10690         (FRAME_X_FLAGS_AREA_COLS): Macro giving the number of columns
10691         occupied by a flags area.
10693 1998-01-13  Gerd Moellmann  <gerd@gnu.org>
10695         * xdisp.c (hscroll_window_tree): Remove test for non-nil
10696         window_end_valid.
10698         * dispnew.c (adjust_glyph_matrix): Check redisplay_p if
10699         GLYPH_DEBUG != 0.
10701         * xdisp.c (display_line): Correct wrong calculation of row->x for
10702         the case of nglyphs == 1.
10703         (hscroll_window_tree): Renamed from hscroll_windows.
10704         (hscroll_windows): New function calling hscroll_window_tree that
10705         clears desired matrices on a frame when hscroll has been changed.
10706         (redisplay_p): Global flag set during redisplay.
10707         (redisplay_internal): Set and clear redisplay_p.
10709         * xfaces.c (min_char_bounds): Add assertion that width and height
10710         are not zero at the end.  Initialize *height and *width to -1,
10711         instead of using BITS_PER_SHORT.  If font has min_bounds.width
10712         zero, use its max_bounds.width.
10714         * x-list-font.c (Fx_list_fonts): Check INTEGERP or FLOATP for
10715         width and height.
10717 1998-01-12  Gerd Moellmann  <gerd@acm.org>
10719         * dispnew.c (adjust_glyph_matrix): Do nothing if sizes haven't
10720         changed.  Don't clear desired matrices.
10722         * xdisp.c (hscroll_windows): Compute pt after setting
10723         current_buffer.
10724         (redisplay_window): Don't do cursor movement based on current
10725         matrix if just_this_one_p is zero.
10727         * x-list-font.c (Fx_list_fonts): Additional parameter fixed.
10728         specifying that fixed-width, variable-width fonts or both 
10729         should be returned.
10731         * xfaces.c (Qfixed, Qvariable): Symbols for use by x-list-fonts.
10732         (syms_of_xfaces): Initialize them.
10734         * xterm.c (x_list_fonts): Include auto-scaled fonts.  Extend
10735         cached information.
10737 1998-01-11  Gerd Moellmann  <gerd@acm.org>
10739         * xdisp.c (display_mode_line): Extend face to end of line.
10741         * xdisp.c (echo_area_display): Don't call display_string with
10742         echo_area_glyphs_length == 0 which would mean infinite precision.
10743         (redisplay_internal): Adjust window_end_vpos if necessary.
10745 1998-01-07  Gerd Moellmann  <gerd@acm.org>
10747         * xdisp.c (display_line): Set it->ends_at_zv_p differently.
10749 1998-01-05  Gerd Moellmann  <gerd@acm.org>
10751         * xdisp.c (get_row_start_continuation_line_width): Removed.
10752         (init_iterator_to_row_start): Set it.current_x from row.
10753         (try_window_id): Set it.continuation_lines_width directly from
10754         row.
10756         * xdisp.c (hscroll_windows): Use w->pointm if window is not
10757         selected_window.
10758         (hscroll_windows): Center cursor in window.
10759         (hscroll_windows): Call move_iterator_in_display_line_to.
10761 1998-01-04  Gerd Moellmann  <gerd@acm.org>
10763         * xdisp.c (hscroll_windows): Check hscroll < 0.
10764         (redisplay_window): Allow quick cursor movement if overlay arrow
10765         but frame uses window-based redisplay.
10766         (display_line): Take special case for nglyphs == 1 out of #if 0.
10767         (display_line): Set row->ends_at_zv_p after the loop displaying
10768         glyphs because ZV can be in truncated text.
10769         (hscroll_windows): Use init_iterator_to_row_start.
10771         * dispnew.c (scrolling_window): Calculation of overlapping
10772         runs fixed.
10773         (row_equal_p): Compare continued_p and continuation_line_p.
10775 1998-01-02  Gerd Moellmann  <gerd@acm.org>
10777         * xterm.c (x_get_mode_line_face_gc): Renamed from
10778         x_get_modeline_face_gc.
10780         * xdisp.c (TEXT_PROP_DISTANCE_LIMIT): Max. distance from current
10781         buffer position to look for text properties.
10782         (get_face_from_cursor_pos): Use it.
10783         (compute_face_at_iterator_position): Use it.
10784         (next_element_from_buffer): Use it.
10786         * dispnew.c (scrolling_window): Decrement run's y-position
10787         when extending it backwards.
10789         * xterm.c (do_line_dance): Don't ever copy more than window height.
10791 1998-01-01  Gerd Moellmann  <gerd@acm.org>
10793         * xdisp.c (redisplay_window): Cursor motion in unchanged
10794         matrix---use MATRIX_ROW_.*_IN_MIDDLE_OF_CHAR_P.
10795         (init_iterator_to_next_row_start): Special handling of lines
10796         ending in middle of char removed.
10797         (hscroll_windows): Hscroll windows only if window_end_valid is not
10798         nil.
10799         (try_window_reusing_current_matrix): Call hscroll_windows.
10800         (init_iterator_to_row_start): Initialize iterator for display
10801         starting at a position given by a glyph_row->start.
10802         (redisplay_window): Don't use vmotion because it gives wrong
10803         results if lines are continued and variable width fonts are used.
10805         * dispextern.h (struct glyph_pos): New member dpvec_index.  
10806         (MATRIX_ROW_ENDS_IN_MIDDLE_OF_CHAR_P): Test if row ends in the
10807         the middle of a character.
10808         (MATRIX_ROW_STARTS_IN_MIDDLE_OF_CHAR_P): Test if row starts in 
10809         the middle of a character.
10811         * xdisp.c (set_iterator_to_next): Increment it->dpvec_index, reset
10812         it.
10813         (next_element_from_display_vector): Use it->dpvec_index.
10814         (reseat_iterator): Reset it.
10815         (init_iterator): Reset it.
10816         (setup_iterator_dpvec_from_glyph_pos): Set up it->dpvec and
10817         it->pos.dpvec_index from a glyph_pos structure.
10818         (init_iterator_from_glyph_pos): Call the function above.
10819         (reseat_iterator_to_glyph_pos): Ditto.
10821         * dispnew.c (direct_output_forward_char): Don't use this method at
10822         overlay boundaries or near invisible text.
10823         (direct_output_forward_char): Step through glyph row to find
10824         cursor position.
10826         * xterm.c (x_get_cursor_gc): Don't return cursor_gc for font == 
10827         frame font if line height differs from font height.
10829         * xdisp.c (set_iterator_to_next): Renamed from
10830         move_iterator_forward to avoid confusion with other move_.*
10831         functions.
10833         * dispextern.h (FACE_RELIEF_P): Renamed from FACE_3D_P.
10835 1997-12-31  Gerd Moellmann  <gerd@acm.org>
10837         * xterm.c (x_get_cursor_gc): Renamed from x_cursor_gc to use the
10838         same naming convention as for other GC functions.
10839         (draw_glyphs): Don't fill background when drawing a cursor and
10840         font height is less than line height.
10842 1997-12-30  Gerd Moellmann  <gerd@acm.org>
10844         * xdisp.c (init_display_iterator.*): Renamed to shorter names
10845         init_iterator_.*.
10847         * xdisp.c (move_iterator_forward): Restore it->len from
10848         it->dpvec_char_len if dpend reached.
10849         (get_next_display_element): Don't consume translated char
10850         prematurely.
10851         (display_line): Don't set this_.* variables if row is continued.
10852         (start_display): Move to start of continuation line if ending
10853         up at end of continued line.
10855         * dispextern.h (struct display_iterator): New member dpvec_char_len.
10857         * xdisp.c (move_iterator_in_display_line_to): Check TO_POS after
10858         checking TO_X and continuation lines.
10859         (get_last_unchanged_at_beg_row): If first_changed_pos is the end
10860         of a continued line, don't consider this line as unchanged because
10861         it may no longer be continued.
10863 1997-12-29  Gerd Moellmann  <gerd@acm.org>
10865         * xdisp.c (try_window_id): Catch the case that moving over
10866         continuation lines moves first_unchanged_at_end_row to a row not
10867         displaying text.
10869         * dispextern.h (struct glyph_row): New member
10870         continuation_lines_width.  Member continuation_line_p removed.
10871         (MATRIX_ROW_CONTINUATION_LINE_P): Non-zero if row displays a 
10872         continuation line.
10873         * xdisp.c (display_line): Set row->continuation_lines_width.
10874         (get_row_start_continuation_line_width): Set continuation lines
10875         width of iterator from continuation lines width of glyph row.
10876         (get_row_start_continuation_line_width): Make it inline.
10877         (set_window_cursor): Make it inline.
10878         (try_window_id): Use MATRIX_ROW_CONTINUATION_LINE_P.
10879         (Fdump_redisplay_state): Ditto.
10880         
10881         * dispnew.c (update_window_line): Use MATRIX_ROW_CONTINUATION_LINE_P.
10882         * xterm.c (x_draw_row_bitmaps): Use MATRIX_ROW_CONTINUATION_LINE_P.
10884         * xdisp.c (try_window_id): Set it.hpos and it.current_x to zero
10885         after determining the continuation lines width for
10886         last_unchanged_at_beg_row.
10888         * xterm.c (x_draw_row_bitmaps): Let overlay arrow have precedence.
10890         * xdisp.c (display_mode_line): Handle 3D faces only on frames
10891         which support faces.
10892         (init_display_iterator): Ditto.
10893         (move_iterator_via_matrix): Skip over truncation glyph at the row
10894         start on terminal frames.
10895         (hscroll_windows): Choose hscroll margin differently for window
10896         system and terminal frames.
10898 1997-12-28  Gerd Moellmann  <gerd@acm.org>
10900         * xdisp.c (hscroll_windows): Change hscroll of windows.
10901         (redisplay_internal): Call it.
10903         * dispnew.c (direct_output_for_insert): Give up if a glyph 
10904         doesn't fit completely on the line.
10905         (direct_output_forward_char): Give up for non-ASCII chars.
10906         (direct_output_forward_char): Set redisplay_performed_directly_p.
10908         * dispextern.h (struct display_iterator): Make first_visible_x
10909         and last_visible_x ints; this is for very long truncated lines.
10911         * xdisp.c (move_iterator_in_display_line_to): Separate check for
10912         MOVE_X_REACHED only if it->nglyphs == 0.  This fixes cursor
10913         positioning problems with the mouse.
10914         (move_iterator_in_display_line_to): Truncate lines if it->current_x
10915         >= it->last_visible_x instead of >.
10916         (display_line): Ditto.
10918         * xterm.c (draw_glyphs): Draw rectangles if font could not be
10919         loaded.
10920         (XTproduce_glyphs): Calculate pixel_width for composite chars and
10921         non-ASCII chars differently.  Always produce 1 glyph for composite
10922         chars.  If font not found, use CHARSET_WIDTH to calculate width of
10923         non-ASCII chars.
10924         (x_get_char_font_and_encoding): Return null if font could not be
10925         loaded.  Reset font to null if fontset could not be loaded.
10926         (draw_glyphs): Fill background if font not found.
10927         (draw_glyphs): Unused parameter just_foreground_p removed. New
10928         parameter composite_glyph.
10929         (draw_glyphs): Use enumeration for parameter hl.
10930         (draw_glyphs): Pass a display area relative x-position to 
10931         draw_glyphs when calling it recursively for composite chars.
10933 1997-12-27  Gerd Moellmann  <gerd@acm.org>
10935         * xterm.c: Patches from handa.etl.go.jp integrated.
10936         (draw_glyphs): Don't rely on x_get_char_font_and_encoding to
10937         find a font_info.
10939         * xdisp.c (move_iterator_in_display_line_to): Check to_x
10940         for nglyphs == 1.
10942         * xterm.c (x_draw_relief): Draw relief lines.
10943         (draw_glyphs): Call x_draw_relief.
10945 1997-12-26  Gerd Moellmann  <gerd@acm.org>
10947         * xfns.c (x_make_gc): Create relief GC's.
10949         * widget.c (create_frame_gcs): Create GC's for relief drawing.
10950         (setup_frame_gcs): Initialize them.
10951         (EmacsFrameDestroy): Free them.
10953         * xdisp.c (try_window_id): Get continuation lines width if 
10954         last_unchanged_at_beg_row is continued or a continuation line.
10955         (move_iterator_via_matrix): Don't do it for mini-buffer windows.
10956         (redisplay_window): Case point has changed, and it has not 
10957         moved off the frame.  Don't increment row if PT equals the row
10958         end if the row ends in ZV.
10960         * xterm.c (x_draw_row_bitmaps): New function to draw bitmaps.
10961         (expose_line): Call it.
10962         (x_after_update_window_line): Call it.
10964         * xdisp.c (display_line): Reset continuation_lines_width when ZV
10965         reached.
10967         * xterm.c (x_after_update_window_line): Draw continuation line
10968         bitmap.
10970         * dispnew.c (update_window_line): Call
10971         after_update_window_line_hook when row's continuation_line_p
10972         changes.
10974         * xterm.c (draw_bitmap): Draw new bitmap CONTINUATION_LINE_BITMAP.
10976         * xdisp.c (display_line): Handle continued lines on window system
10977         frames differently since continuation glyphs are not displayed.
10978         (move_iterator_in_display_line_to): Ditto.
10979         (move_iterator_in_display_line_to): Take the mini-buffer prompt
10980         into account.
10981         (move_iterator_vertically_backward): Handle dy == 0 specially.
10982         (redisplay_window): Catch the case of small windows when
10983         recentering where moving back window_height/2 moves us beyond the
10984         top of the display area of the window.
10986 1997-12-18  Gerd Moellmann  <gerd@acm.org>
10988         * xdisp.c (move_iterator_vertically_backward): Unused parameter
10989         dvpos removed.
10991 1997-12-17  Gerd Moellmann  <gerd@acm.org>
10993         * dispnew.c (direct_output_forward_char): Correct new cursor
10994         x-position.
10996 1997-12-16  Gerd Moellmann  <gerd@acm.org>
10998         * xterm.c (x_after_update_window_line): Remove unused parameters.
10999         (XTclear_end_of_line): Clear to display_height instead of
11000         display_height - 1.
11002         * dispnew.c (set_frame_matrix_frame): Make it INLINE.
11003         (update_window_line): Call after_update_window_line_hook if 
11004         rows have different y-positions, or different height.
11006 1997-12-14  Gerd Moellmann  <gerd@acm.org>
11008         * frame.h (FRAME_MODE_LINE_PIXEL_HEIGHT): Removed.
11010         * window.c (coordinates_in_window): Call frame_mode_line_height.
11012         * xterm.c (x_draw_3d_border): Removed.
11013         (x_draw_row_borders): Removed.
11015         * dispnew.c (update_window): References to
11016         FRAME_MODE_LINE_BORDER_WIDTH removed.
11018         * xterm.h (FRAME_MODE_LINE_BORDER_WIDTH): Removed.
11019         (FRAME_MODE_LINE_HEIGHT): Removed.
11021         * xterm.c (draw_3d_borders_p): Removed.
11022         (draw_glyphs): Ditto.
11023         (XTwrite_glyphs): Ditto.
11024         (expose_line): Ditto.
11025         (x_initialize): Ditto.
11027         * dispextern.h (WINDOW_DISPLAY_MODE_LINE_HEIGHT): Call
11028         frame_mode_line_height.
11030         * term.c (frame_mode_line_height): Get the pixel height of a
11031         frame's mode line.
11032         (frame_mode_line_height_hook): Hook to implement system dependent
11033         versions.  
11034         
11035         * xterm.c (x_initialize): Set the hook.
11036         (XTframe_mode_line_height): X version of frame_mode_line_height.
11038         * xdisp.c (echo_area_display): Call gobble_input to flush the X
11039         output buffer.
11040         (display_string): Don't add right truncation mark if line ends in
11041         padding space.
11042         (init_display_iterator): If called with modeline_p non-zero, set
11043         face_id to 1, which is the id of the mode line face.
11045         * keyboard.c (cmd_error_internal): Write to stderr if selected
11046         frame is Vterminal_frame under X.  This is the case when a font
11047         cannot be loaded when Emacs starts.  Replace test for
11048         FRAME_MESSAGE_BUF with test for glyphs_initialized_p.
11050         * xfaces.c (compute_overlay_string_char_face): Compute the
11051         face of a character in an overlay string.
11052         * xterm.h (compute_overlay_string_char_face): Prototype.
11053         * xdisp.c (compute_face_at_iterator_overlay_string_position): 
11054         Use it.
11056         * xdisp.c (set_iterator_to_next_overlay_string): Formerly
11057         set_iterator_to_next_overlay.
11058         (struct overlay_entry): Structure used to sort overlay strings.
11059         (compare_overlay_entries): Compare overlay strings.
11060         (load_iterator_with_overlay_strings): Load a chunk of overlay
11061         strings.
11062         (get_overlay_strings_at_iterator_position): Call it.
11063         (next_element_from_overlay_string): Set it->object to the overlay
11064         string.  Prepare for setting it->position to a string position.
11065         (get_overlay_strings_at_iterator_position): Renamed from
11066         get_overlays_at_iterator_position.
11067         (setup_iterator_overlay_strings_from_glyph_pos): Changed to load
11068         chunks of overlay strings.
11069         (load_overlay_strings): Renamed from load_iterator_overlay_strings.
11071         * dispextern.h (struct display_iterator): New vector
11072         overlay_strings and new member n_overlay_strings---formerly
11073         overlays and n_overlays.  
11074         (struct glyph_pos): Remove after_string_p; overlay_index 
11075         renamed to string_index.
11077 1997-12-13  Gerd Moellmann  <gerd@acm.org>
11079         * xdisp.c (copy_iterator): Increment n_iterator_overlay_vectors
11080         when allocating a vector.
11081         (release_iterator): Removed.
11082         (restore_iterator): Removed.
11083         (copy_iterator): Removed.
11085 1997-12-08  Gerd Moellmann  <gerd@acm.org>
11087         * xdisp.c (redisplay_window): Use make_empty_enabled_row for
11088         clearing a mini-buffer window that is not active.
11089         (redisplay_window): Do not scroll one line too early when last
11090         window line is completely visible.
11091         (init_display_iterator): Leave some room to display the cursor
11092         after the last glyph on a continued line.
11094         * xterm.h (struct x_output): trunc_area_extra renamed
11095         flags_areas_extra.
11096         (FRAME_X_FLAGS_AREA_WIDTH): Renamed from FRAME_X_TRUNC_WIDTH.
11098         * dispnew.c (update_window_line): Call
11099         after_update_window_line_hook when current row is not enabled
11100         which is the case after a frame has been cleared.
11102         * xdisp.c (display_mode_line): Reset row flags for truncation
11103         on right side for the mode line.
11105         * xterm.c (bitmap_type): Type of bitmap to display in flags
11106         area of frame.
11107         (x_after_update_window_line): Use the enum.
11108         (draw_bitmap): Ditto.
11110 1997-12-07  Gerd Moellmann  <gerd@acm.org>
11112         * xterm.c (x_clip_to_row): Include width of both flag areas.
11113         (do_line_dance): Ditto.
11114         (expose_window_tree): Ditto.
11115         * dispnew.c (update_window_line): Call
11116         after_update_window_line_hook for right truncation and continuation.
11117         * xdisp.c (init_display_iterator): Don't subtract width of
11118         continuation glyphs for window-based redisplay.
11119         * xterm.c (draw_bitmap): Draw continuation bitmap.
11120         * widget.c (set_frame_size): Double trunc_area_extra.
11121         (EmacsFrameSetCharSize): Ditto.
11122         * xfns.c (x_figure_window_size): Ditto.
11123         * xterm.c (x_set_window_size): Ditto.
11124         (x_after_update_window_line): Draw right truncation mark.
11126         * xterm.c (draw_glyphs): Bug fix buffer overrun.
11128         * window.h: Include blocker around dispextern.h removed.
11130         * eval.c (Feval): Check interrupt_input_block == 0.
11131         
11132         * dispextern.h (struct display_iterator): Former ovstr made a
11133         Lisp_Object overlay_string.  New next_ovstr_face_check_pos and
11134         next_ovstr_invisble_check_pos; check at these positions for
11135         face changes and changes in invisible text property.
11136         (struct glyph_pos): Former ovlen now overlay_string_index.
11138         * xdisp.c (setup_iterator_overlays_from_glyph_pos): Set
11139         overlay_string.
11140         (set_iterator_to_next_overlay_string): Set overlay_string and
11141         pos.overlay_string_index.
11142         (get_overlays_at_iterator_position): Use overlay_string and
11143         overlay_string_index.
11144         (next_element_from_overlay_string): Use overlay_string and
11145         overlay_string_index.
11146         (move_iterator_forward): Increment overlay_string_index.
11147         (try_window_id): Use overlay_string and overlay_string_index.
11148         (move_iterator_forward): At end of dpvec, maybe use method
11149         next_element_from_overlay_string for the case a character from an
11150         overlay string was translated via a display table.
11151         (reseat_iterator_to_string): Take a Lisp string.
11152         (display_string): Pass a Lisp string to reseat_iterator_to_string.
11153         (compute_face_at_iterator_overlay_string_position): Compute face
11154         based on text properties for an overlay string.
11155         (next_element_from_overlay_string): Check invisible and face text
11156         properties.
11157         (set_iterator_to_next_overlay_string): Restore face id before
11158         overlay strings when no more overlay strings are found to return.
11159         Initialize next_ovstr_.*check_pos for each new overlay string
11160         roï\0ðoï\0ðÃâ\0ðoï\0ðoï\0ðTÿ\0ðLá\0ðoï\0ðase_face): Made public.
11161         (merge_face_list): Ditto.
11162         (intern_computed_face): Ditto.
11164         * xdisp.c (redisplay_window): Cursor movement in unchanged 
11165         window if PT > w->last_point.  Goto try_to_scroll if bottom Y
11166         of row is > instead of >= last_y.
11168         * buffer.h (overlays_at): Function prototype.
11170         * xdisp.c (reseat_iterator_to_string): Clear iterator position.
11171         * dispextern.h (GET_NEXT_DISPLAY_ELEMENT): Removed.
11173         * xdisp.c (release_iterator): Release dynamically allocated 
11174         memory of a display_iterator.
11175         (copy_iterator): Copy an iterator.
11176         (restore_iterator): Restore an iterator from a backup copy.
11177         (global): Use the functions above.
11178         * window.c (Fpos_visible_in_window_p): Call release_iterator.
11179         * dispnew.c (direct_output_for_insert): Call release_iterator.
11181         * dispextern.h (struct display_iterator): Allocate overlays
11182         vector dynamically.
11184 1997-12-06  Gerd Moellmann  <gerd@acm.org>
11186         * Makefile.in (window.o): Depends on dispextern.h.
11188         * buffer.c (overlays_at): Make it work when extending vectors
11189         and an initial vector of zero size.
11191         * xdisp.c (set_iterator_to_previous_visible_line_end): Renamed
11192         from set_cursor_to_previous_visible_line_end.
11193         (set_iterator_to_next_visible_line_start): Renamed from
11194         set_cursor_to_next_visible_line_end.
11195         (set_next_iterator_stop_pos): Renamed from set_next_stop_pos.
11196         (compute_face_at_iterator_position): Renamed from
11197         compute_cursor_face.
11198         (set_iterator_to_next_overlay_string): Renamed from
11199         cursor_to_next_overlay_string.
11200         (get_overlays_at_iterator_position): Renamed from
11201         get_overlays_for_cursor.
11202         (reseat_iterator): Renamed from reseat_cursor.
11203         (setup_iterator_overlays_from_glyph_pos): Renamed from
11204         setup_overlays_from_pos.
11205         (init_string_iterator): Renamed from init_string_cursor.
11206         (get_next_display_element): Renamed from next_display_element.
11207         (move_iterator_forward): Renamed from advance_display_cursor.
11208         (get_overlays_at_iterator_position): Allocate overlays vector 
11209         dynamically.
11211         * xdisp.c: display_cursor renamed display_iterator.
11212         * dispextern.h: Ditto.
11213         * dispnew.c: Ditto.
11215 1997-12-01  Gerd Moellmann  <gerd@acm.org>
11217         * window.c (mark_window_cursors_off): Function comment added.
11218         (window_topmost_p, window_rightmost_p): Removed because not used.
11220 1997-11-30  Gerd Moellmann  <gerd@acm.org>
11222         * emacs.c (main): Function prototypes removed in profiling code.
11223         Use safe_bcopy as start of text.
11225         * dispnew.c (update_frame_line): update_line -> update_frame_line;
11226         mirrored_make_current -> make_current.
11228         * xdisp.c: (store_frame_title_char): New function to store a
11229         single character for the frame title with re-allocation of
11230         frame_title_buf.
11231         (init_xdisp): Intialize frame_title_.* variables to null.
11233         * dispnew.c (quit_error_check): Removed.
11235         * eval.c (Fsignal): Call to quit_error_check removed.
11236         * keyboard.c (quit_throw_to_read_char): Ditto.
11238 1997-11-23  Gerd Moellmann  <gerd@acm.org>
11240         * xfaces.c (Fset_face_attribute_internal): Allow nil relief
11241         to mean a zero relief.
11243 1997-11-19  Gerd Moellmann  <gerd@acm.org>
11245         * dispnew.c (new_glyph_matrix): Increment glyph_matrix_count
11246         unconditionally.
11247         (glyph_matrix_count, glyph_pool_count): Define unconditionally.
11248         (free_glyph_matrix): Decrement glyph_matrix_count unconditionally.
11249         (check_glyph_memory): Define function body unconditionally.
11251 1997-11-17  Gerd Moellmann  <gerd@acm.org>
11253         * dispnew.c (scrolling_window): Alternative version of this
11254         function removed.
11256 1997-11-16  Gerd Moellmann  <gerd@acm.org>
11258         * dispnew.c (make_empty_enabled_row): Make an empty, enabled row
11259         of height CANON_Y_UNIT.
11260         * dispextern.h: Prototype for that function.
11261         * xdisp.c (echo_area_display): Don't use display_string to 
11262         produce empty rows.  Use make_empty_enabled_row instead.
11264         * dispnew.c (scrolling_window): New version using diff-like
11265         algorithm activated.
11266         
11267 1997-11-15  Gerd Moellmann  <gerd@acm.org>
11269         * dispnew.c (clear_current_matrices): Clear matrix of menu_bar_window
11270         (clear_desired_matrices): Ditto.
11271         (adjust_frame_glyphs_for_window_redisplay): Use FRAME_WINDOW_WIDTH
11272         for menu_bar_window.
11274         * alloc.c (mark_object): Mark menu_bar_window of frames.
11276         * xterm.c (XTupdate_window_end): Don't display cursor if
11277         pseudo_window_p.
11279         * dispnew.c (adjust_frame_glyphs_for_window_redisplay): Don't
11280         set mini_p.
11281         (update_window): Don't set cursor if pseudo_window_p.
11283         * dispextern.h (WINDOW_WANTS_MODELINE_P): Test pseudo_window_p.
11285         * window.h (struct window): New flag pseudo_window_p set to
11286         1 for windows that aren't really part of the window tree, like
11287         menu_bar_window's of frames.
11288         * window.c (make_window): Initialize it.
11289         (replace_window): Ditto.
11290         * dispnew.c (adjust_frame_glyphs_for_window_redisplay): Ditto.
11292         * frame.c (make_frame): Initialize menu_bar_window to nil.
11294         * xterm.c (XTget_display_info): FACE_SHADOW_THICKNESS renamed
11295         FACE_RELIEF
11297         * xfaces.c (copy_face): shadow_thickness -> relief.
11298         (face_eql): Ditto.
11299         (merge_faces): Ditto.
11300         (compute_base_face): Ditto.
11301         (Fset_face_attribute_internal): Ditto.
11302         * dispextern.h (struct face): Ditto.
11304         * dispnew.c (update_frame): Update menu_bar_window of the frame if
11305         it is non-nil.
11307         * xdisp.c (display_menu_bar): Display the menu bar in
11308         f->menu_bar_window if appropriate.
11309         (display_mode_line): Use MATRIX_MODE_LINE_ROW.
11311         * dispnew.c (adjust_frame_glyphs_for_window_redisplay): Allocate
11312         dummy window and window matrices for f->menu_bar_window.
11313         (free_glyphs): Free the dummy window and its glyph matrices.
11315         * frame.h (struct frame): New member menu_bar_window.
11317 1997-11-09  Gerd Moellmann  <gerd@acm.org>
11319         * dispnew.c (scrolling_window): New version with diff-like
11320         algorithm.
11322         * xdisp.c (try_window_reusing_current_matrix): If new_start >
11323         old_start always start displaying at start of
11324         first_row_to_display.  The previous scheme failed if the last row
11325         was fully visible.
11327         * dispnew.c (update_window): Remove cost calculations.  Remove
11328         redundant preempt_count calculations.
11330         * xterm.c (x_clip_to_row): Set clipping for non-text rows
11331         differently.
11333         * dispnew.c (update_window): Use WINDOW_WANTS_MODELINE_P.
11335         * window.c (syms_of_window): Functions for marginal areas if 
11336         WITH_MARGINAL_AREAS is defined.
11338         * xdisp.c (try_window_reusing_current_matrix): Trace fprintf 
11339         removed.
11341         * dispnew.c (scrolling): Call line_hash_code because hash values
11342         are not set in the frame matrix.
11344         * xdisp.c (try_window_id): Fix scrolling for terminal frames.
11345         (redisplay_window): Check line_ins_del_ok before calling
11346         try_window_id.
11347         (try_window_reusing_current_matrix): Give up for terminal frames
11348         if window is not full width or we cannot insert/delete lines.
11349         (try_window_reusing_current_matrix): Fixed scrolling for terminal
11350         frames.
11352         * alloc.c (mark_glyph_matrix): Bug fix - pass pointer to
11353         Lisp_Object to mark_object.
11355         * xdisp.c (sync_frame_with_window_matrix_rows): Make frame and
11356         window rows have the same glyph pointers.
11357         (try_window_id): Call it.
11359         * alloc.c (mark_glyph_matrix): Function to mark Lisp objects in
11360         a glyph matrix.
11361         (mark_object): Call it.
11363         * xdisp.c (insert_left_trunc_glyphs): Use 0 object in glyphs for
11364         truncations.
11365         (display_line): Ditto.
11366         (display_line): Ditto for DISP_CONTINUATION.
11367         (display_line): Truncation on right: test current_x >
11368         last_visible_x.
11369         (skip_in_display_line_to): Ditto.
11370         (skip_via_matrix): Stop skipping in glyph row at face extending
11371         glyphs or at padding spaces.
11373         * dispnew.c (fill_up_glyph_row_with_spaces): Comment extended.
11375         * xdisp.c (display_line): Use glyph->object == 0 for padding
11376         glyphs.
11377         (redisplay_window): Don't let cursor move over padding
11378         spaces.
11380         * dispextern.h (struct glyph): Fix comment for object.
11382 1997-11-08  Gerd Moellmann  <gerd@acm.org>
11384         * dispextern.h (WINDOW_WANTS_MODELINE_P): Non-zero if a window
11385         has a mode line.
11386         * xdisp.c (redisplay_window): Use it.
11387         (display_mode_line): Check that window wants mode line.
11389 1997-11-03  Gerd Moellmann  <gerd@acm.org>
11391         * xdisp.c (display_menu_bar): Enable menu bar rows.
11393         * xterm.c (x_draw_hollow_cursor): X positions based on text area.
11394         (x_erase_phys_cursor): Ditto.
11395         (x_draw_bar_cursor): Ditto.
11397 1997-11-02  Gerd Moellmann  <gerd@acm.org>
11399         * dispnew.c (update_marginal_area): Update a marginal area.
11400         (update_text_area): Update text area.
11401         (update_window_line): Call both.
11403         * xterm.c (XTclear_end_of_line): Translate coordinates area
11404         dependent.
11406         * dispnew.c (updated_area): Row area being updated in
11407         update_window_line.
11408         (update_window_line): Set it.
11409         (update_marginal_area): Clear to end of line if not in text area.
11411         * window.c (Fset_window_margins): Increment
11412         windows_or_buffer_changed.  Adjust glyphs.
11414         * dispextern.h (WINDOW_TEXT_TO_FRAME_PIXEL_X): Convert text
11415         area X coordinates to frame coordinates.
11416         (WINDOW_DISPLAY_LEFT_AREA_PIXEL_WIDTH): Width of left marginal area. 
11417         (WINDOW_DISPLAY_RIGHT_AREA_PIXEL_WIDTH): Same for right area.
11418         (WINDOW_DISPLAY_TEXT_AREA_PIXEL_WIDTH): Same for text area.
11420         * xterm.c (draw_glyphs): Use text area width as display width.
11422         * xdisp.c (init_display_info): Subtract widths of marginal areas
11423         from last_visible_x.
11425         * alloc.c (mark_object): Mark objects in glyphs only if they are
11426         overlays.  Mark only if current_matrix != 0.  Activate the code.
11428         * window.c (Fset_window_margins): Set margins.
11429         (Fwindow_margins): Return margin area widths.
11430         (syms_of_window): Add defsubr's.
11432         * window.h (struct window): left_margin_width, right_margin_width.
11434         * xfns.c (x_set_trunc_area_width): Set truncation pixel width
11435         and cols.
11437         * frame.h (FRAME_TRUNC_COLS): Number of columns occupied by
11438         truncation/overlay arrow area.
11439         (struct frame): trunc_area_pixel_width, and _cols.
11441         * window.c (Fsplit_window): Use it.
11443         * window.c (Fsplit_window): Set cursor vpos to -1 after
11444         splitting.
11445         (Fsplit_window): SUbtract/add FRAME_TRUNC_WIDTH for horizontally
11446         split windows.
11448         * dispnew.c (set_window_cursor_after_update): Accept out
11449         of bounds cursor positions. 
11451         * xdisp.c (redisplay_internal): Check that after cursor motion
11452         within line, PT is on same line.
11454         * dispextern.h (WINDOW_DISPLAY_PIXEL_WIDTH): Don't subtract
11455         FRAME_TRUNC_WIDTH.
11457         * xterm.h (struct x_output): trunc_area_extra.
11458         (CHAR_TO_PIXEL_WIDTH): Add in trunc_area_extra.
11459         (PIXEL_TO_CHAR_WIDTH): Subtract it.
11460         * widget.c (set_frame_size): Set it.
11461         (EmacsFrameSetCharSize): Ditto.
11462         * xfns.c (x_figure_window_size): Ditto.
11463         * xterm.c (x_set_window_size): Ditto.
11465         * dispnew.c (check_matrix_invariants): First try to check window
11466         ends (in #if 0).
11468         * xdisp.c (try_window_reusing_current_matrix): Try window
11469         redisplay with different window start.
11471 1997-11-01  Gerd Moellmann  <gerd@acm.org>
11473         * window.c (make_window): Set window_end_pos/vpos.
11474         (Fsplit_window): Zero last_cursor, window_end_valid.
11475         (Fset_window_buffer): Set window_end_vpos, zero last_cursor.
11477         * dispnew.c (check_matrix_invariants): Check window_end_pos/vpos.
11479 1997-10-31  Gerd Moellmann  <gerd@acm.org>
11481         * window.c (make_window): Initialize last_cursor.
11482         (replace_window): Ditto.
11484 1997-10-29  Gerd Moellmann  <gerd@acm.org>
11486         * window.h: New member last_cursor.
11487         * dispnew.c (direct_output_for_insert): Set it.
11488         (direct_output_forward_char): Ditto.
11489         * xdisp.c (redisplay_internal): Ditto.
11491 1997-10-28  Gerd Moellmann  <gerd@acm.org>
11493         * xdisp.c (redisplay_internal): Optimization 1 change partially
11494         reverted.  Check this again later.
11495         (skip_via_matrix): Remove redundent test for
11496         MATRIX_ROW_DISPLAYS_TEXT_P. 
11498 1997-10-27  Gerd Moellmann  <gerd@acm.org>
11500         * dispnew.c (update_window_line): Call
11501         after_update_window_line_hook only for interesting constellations.
11502         (free_glyph_matrix): Fix memory leak.
11504         * window.h: Include blocker WINDOW_H_INCLUDED, include
11505         dispextern.h.
11506         (struct window): phys_cursor_glyph as struct glyph.  * window.c
11507         (make_window): Initialize it.
11508         (replace_window): Ditto.  
11509         * dispnew.c (free_window_matrices): Remove freeing of
11510         phys_cursor_glyph.
11511         (check_matrix_invariants): Renamed from check_current_matrix_...
11512         * xterm.c: All references to phys_cursor_glyph changed.
11514         * dispextern.h (DISPEXTERN_H_INCLUDED: New include blocker.
11516         * xfaces.c: Comment update.
11518         * window.h (struct window): Make phys_cursor_glyph a struct glyph
11519         pointer. Remove phys_cursor_ascent, descent, etc.
11520         * dispnew.c (free_window_matrices): Free it.
11521         * window.c (make_window): Allocate it.
11522         (replace_window): Ditto.
11523         * xterm.c (x_draw_phys_cursor_glyph): Draw it.
11524         (x_display_and_set_cursor): Fill it.
11525         (x_phys_cursor_in_rect_p): Use it.
11526         (x_draw_hollow_cursor): Ditto.
11527         (x_draw_bar_cursor): Ditto.
11528         (x_erase_phys_cursor): Ditto.
11530         * xdisp.c (skip_in_display_line_to): Use SET_INFO_FROM_CURSOR.
11532         * xterm.c (XTget_display_info): Handle 3D facess.
11533         (draw_glyphs): Ditto.
11535         * xdisp.c (Fdump_redisplay_state): Change interactive spec to "p".
11537         * xfaces.c (Fset_face_attribute_internal): New face attribute
11538         shadow-thickness.
11539         (copy_face): Handle shadow_thickness.
11540         (face_eql): Ditto.
11541         (merge_faces): Ditto.
11542         (compute_base_face): Ditto.
11544         * dispextern.h (struct display_cursor): New member start_of_3d_run_p.
11545         (struct display_info): Ditto.
11546         (SET_INFO_FROM_CURSOR): Transfer it to display_info.
11547         * xdisp.c (compute_cursor_face): Set it.
11548         (advance_display_cursor): Clear it.
11550         * xdisp.c (init_string_cursor): Initialize face_id to -1.
11551         (init_string_cursor): Init face_id to zero.
11553         * dispextern.h (struct face): New member shadow_thickness.
11555         * xdisp.c (compute_cursor_face): Set limit for text property 
11556         search to 100.
11558         * dispnew.c (update_window_line): Try to resynch with current line
11559         to prevent mode line flickering.
11561 1997-10-26  Gerd Moellmann  <gerd@acm.org>
11563         * dispnew.c (set_window_cursor_after_update): React again 
11564         on cursor_in_echo_area >= 0.
11566         * xdisp.c (echo_area_display): Clear desired matrix before
11567         displaying into it.
11568         (display_menu_bar): Clear glyph row instead of hoping it is not
11569         enabled.  This is safer.
11571         * dispnew.c (check_current_matrix_invariants): Check only
11572         visible rows.
11574         * xdisp.c (try_window_id): Handle window end setting in case of
11575         display to end of window, but only non-text lines displayed.
11577         * dispnew.c (check_current_matrix_invariants): Check nrows for zero.
11578         (check_current_matrix_invariants): Check used counts.
11580         * Revisiob v114.
11582         * dispnew.c (scrolling): Use hash codes from rows.
11584         * xdisp.c (Fdump_redisplay_state): Dump current matrix.
11586         * dispnew.c (scrolling_window): Invalidate conflicting runs.
11588 1997-10-25  Gerd Moellmann  <gerd@acm.org>
11590         * dispextern.h (struct glyph_matrix): Flag no_scrolling_p.
11591         * dispnew.c (update_window): Use it.
11592         (clear_glyph_matrix): Clear it.
11593         * xdisp.c (try_window_id): Set it.
11595         * dispextern.h (struct glyph_row): New flag ends_at_zv_p.
11597         * xdisp.c (redisplay_internal): Increment glyph positions differently.
11599         * dispextern.h: More comments etc.
11601 1997-10-24  Gerd Moellmann  <gerd@acm.org>
11603         * dispnew.c (set_window_cursor_after_update): Set cursor
11604         for cursor_in_echo_area == 0 to (0, 0).
11606         * dispextern.h (struct glyph_row): New flags continuation_line_p
11607         and displays_text_p.
11608         (MATRIX_ROW_DISPLAYS_TEXT_P): Use displays_text_p.
11609         * xdisp.c (display_line): Set them.
11610         (try_window_id): Move to start of continuation line to find out
11611         continuation_line_width.
11612         (first_unchanged_current_row): Don't retract row if continued,
11613         truncated etc.
11615         * xterm.c: Map X coordinates.
11617 1997-10-23  Gerd Moellmann  <gerd@acm.org>
11619         * dispnew.c (buffer_posn_from_coords): Translate X for right to
11620         left text.
11622         * xdisp.c (display_line): Set right_to_left_p after clearing the row.
11624         * xterm.c (XTclear_end_of_line): Respect right_to_left_p.
11626         * xdisp.c (try_window_id): Clear desired matrix if not successul.
11628         * xdisp.c (try_window_id): Call update_window_begin_hook/end_hook.
11630         * dispnew.c (update_window_begin_hook, update_winodw_end_hook):
11631         Set this to functions to be called before/after window updates.
11632         (direct_output_for_insert): Call them.
11633         (update_window): Ditto.
11634         (update_frame): Call update_begin/ update_end for windows.
11636         * xterm.c (XTupdate_window_begin): Called before window updates.
11637         (XTupdate_end): Called after window updates.
11638         (x_initialize): Set hooks to above.
11640         * xdisp.c (init_display_info): Initialize c and len of
11641         display_info.
11643         * xterm.c (x_get_char_font_and_encoding): Bug fix.  Don't load
11644         fonts more than once.
11646 1997-10-22  Gerd Moellmann  <gerd@acm.org>
11648         * xdisp.c (display_line): Handle most common case of current_x <
11649         last_visible_x separately.
11651         * dispextern.h (display_element_type): DISP_ELLIPSIS removed.
11653         * dispnew.c (update_window_line): Compare pixel widths of glyphs
11654         so that face extending space doesn't compare equal to normal space
11655         with same face.
11657         * xdisp.c (display_line): Make sure we have a position for
11658         a line end in an otherwise blank line if face is extended.
11660         * dispnew.c (direct_output_for_insert): Increment row end position.
11662         * window.c (Fpos_visible_in_window_p): Use old meaning of 
11663         window_end_pos.
11665         * xdisp.c (init_display_cursor_from_glyph_pos): New.
11667         * dispextern.h (MATRIX_ROW_FIRST_POS): Use row start.
11669         * dispnew.c (increment_glyph_row_buffer_positions): Adjust
11670         start and end positions in rows.
11671         (increment_glyph_row_buffer_positions): Stop adjusting at
11672         glyphs with positions <= 0.
11674         * dispextern.h (struct glyph_pos): Structure desribing a text
11675         position including position in overlay. 
11676         (struct glyph_row): Use it for start and end positions.
11677         (struct display_cursor): Use it.
11678         * xdisp.c: Use it.
11679         (display_line): Set row start and end positions.
11681         * dispnew.c (copy_row_except_pointers): Use bcopy and struct
11682         assignment.
11684 1997-10-21  Gerd Moellmann  <gerd@acm.org>
11686         * dispnew.c (update_window): Add scrolling_window again.  It's
11687         necessary for scroll_step != 0.
11689         * xdisp.c (redisplay_window): Use vmotion for scroll_step
11690         scrolling.
11692         * xdisp.c (last_unchanged_current_row): Use window_end_vpos.
11694         * xterm.c (XTupdate_end): Flush only for messages.
11696         * xdisp.c (try_window_id): Assert last_unchanged_row >=
11697         first_unchanged_row.
11699         * xterm.c (XTupdate_end): Flush if miniwindow.
11701         * dispnew.c (matrix_row_last_pos): New function.
11702         * dispextern.h (MATRIX_ROW_LAST_POS): Call it.
11703         Large comment moved to xdisp.c. 
11705         * xdisp.c (redisplay_window): Bug fix: PT set to value > Z.
11706         (skip_via_matrix): Check window_end_valid instead of
11707         display_completed.
11709         * dispnew.c (scroll_glyph_matrix_range): Bug fix.
11710         (update_window): scrolling_window commented out.  It has negative
11711         effect most of the time.
11713         * xdisp.c (try_window_id): Correct parameters to
11714         scroll_glyph_matrix_range.
11716         * xterm.c (XTupdate_end): XFlush commented out.  
11718         * window.h: Comments for window_end_pos/vpos.
11720         * xdisp.c (skip_to): Assert current_buffer is the buffer
11721         of the window in which we are skipping.
11723         * dispnew.c (update_window_line): Optimized clear_end_of_line.
11725         * xterm.c (draw_glyphs): Bug fix.  Return window relative X
11726         reached.
11728 1997-10-20  Gerd Moellmann  <gerd@acm.org>
11730         * dispextern.h (MATRIX_ROW_LAST_POS): Go back one glyph if this is
11731         a face extending glyph.
11733         * xdisp.c (try_window_id): Check if point will appear.  
11734         (set_cursor_from_row): Set cursor position from a glyph row.
11736         * dispnew.c (update_window_line): Write entire line if hash
11737         codes of lines differ.
11739         * dispextern.h (MATRIX_ROW_EXTENDS_FACE_P): Value is non-zero
11740         if glyph row has an infinite width glyph at its end.
11742         * xdisp.c (last_unchanged_current_row): Respect partially visible
11743         lines when looking for the last row displaying text.
11744         (try_window_id): Handle partially visible lines better.
11746 1997-10-19  Gerd Moellmann  <gerd@acm.org>
11748         * dispnew.c (update_window): Remove unused variable.
11749         (update_window_line): Simplified.
11751         * xterm.c (x_get_char_font_and_encoding): Handle most common
11752         case at the beginning.
11754         * xdisp.c (advance_display_cursor): Dispatch on method and
11755         order if statements by expected call frequency.  Fixed unclosed
11756         comment.
11758         * xdisp.c (try_window_id): New implementation.
11760         * dispnew.c (increment_glyph_row_buffer_positions): Capture
11761         rows displaying a line end, only.
11763 1997-10-18  Gerd Moellmann  <gerd@acm.org>
11765         * window.c (Fpos_visible_in_window_p): Remove use of window_end_vpos.
11767 1997-10-14  Gerd Moellmann  <gerd@acm.org>
11769         * xdisp.c (display_line): Mark empty lines not corresponding to
11770         text with position -1.
11772         * xterm.c (x_erase_phys_cursor): Don't bother to erase cursor if
11773         not within window matrix bounds.
11775         * dispextern.h (struct display_cursor): New member REGION_SHOWING_P.
11776         (struct display_info): NGLYPHS_TO_IGNORE removed.
11777         * xdisp.c: References to NGLYPHS_TO_IGNORE removed.
11778         * term.c: Ditto.
11779         * xterm.c: Ditto.
11781         * xdisp.c (init_display_cursor): Set it.
11782         (display_line): Use it to set W->REGION_SHOWING.
11784         * xdisp.c (skip_via_matrix): Check for overlay arrow.
11786         * region-cache.h: functino prototypes with PROTO.
11788         * dispnew.c (buffer_posn_from_coords): Use -1 as skip position.
11790         * xdisp.c (skip_via_matrix): Check for rows that don't contain
11791         a position.
11793         * xterm.c (XTmouse_position): Calculate LAST_MOUSE_GLYPH 
11794         rectangle based on minimum character bounds.
11796         * keyboard.c (make_lispy_event): Mouse clicks; don't do frame
11797         glyph position calculations.
11798         (make_lispy_movement): Use buffer_posn_from_coords and window
11799         relative coordinates.
11801         * xterm.c (construct_mouse_click): Remove #if 0 case.
11803         * dispextern.h (MATRIX_ROW_BOTTOM_Y): Return bottom pixel y of
11804         given row.
11806         * xdisp.c (skip_via_matrix): Skip using current matrix if up to 
11807         date. 
11808         (skip_to): Use it.
11809         (redisplay_window): Remove code skipping using current matrix.
11811 1997-10-13  Gerd Moellmann  <gerd@acm.org>
11813         * xdisp.c (redisplay_window): Use available current matrix to
11814         skip faster when only point is moved withing the window.
11816         * intervals.c: Include stdio.h.  
11817         (find_interval): Trace to stderr to catch some nasty error
11818         that did not yet occur again with tracing.
11819         (set_point): Ditto.
11821         * dispnew.c (shift_glyph_matrix): Experimental code for handling
11822         cursor positioning on partially visible lines.
11823         (set_window_cursor_after_update): Ditto.
11825         * dispextern.h (MATRIX_ROW_PARTIALLY_VISIBLE_P): Bug fix.
11827         * window.h (struct window): start_y removed.
11829         * window.c (make_window): start_y removed.
11830         (replace_window): Ditto.
11832         * xdisp.c (last_max_ascent, last_max_descent):  Ascent and 
11833         descent values of the last line processed by skip_to.
11834         (redisplay_window): Use them.
11835         (skip_to): Set them.
11837         * dispextern.h (struct display_cursor): New member METHOD.
11839         * xdisp.c: Use function member METHOD.
11841         * xdisp.c (set_next_stop_pos): Determine next position at which to
11842         check for face properties, invisible text properties, and overlays.
11843         (compute_cursor_face): Use it.
11844         (get_overlays_for_cursor): Ditto.
11845         (reseat_cursor): Ditto.
11846         (next_display_element): Ditto.
11848 Sun Aug 24 08:50:52 1997  Gerd Moellmann  <gerd@acm.org>
11850         * termhooks.h: Some hooks with prototypes.
11852         * term.c: Some hooks with function prototypes.
11853         
11854         * xdisp.c (reseat_cursor):  Additional argument force_p.  Avoid
11855         computing face if possible.
11857         * xdisp.c (next_display_element):  Use face from glyph from display
11858         table only if != 0.
11860         * emacs.c: FreeBSD headers for profiling removed.
11862         * dispnew.c (direct_output_for_insert): Don't use PT-1 for 
11863         display cursor, use DEC_POS instread. 
11865         * xfaces.c (load_font): Use x_load_font to load fonts so that
11866         all fonts are in the font table. 
11867         (unload_font): Don't XFreeFont.
11869         * dispnew.c (row_equal_p): Compare ascent, descent and visible
11870         row height.
11872         * xterm.c (draw_glyphs): Use 8-bit functions if possible.
11873         (x_erase_phys_cursor): Clear only visible part of row.
11874         (x_draw_bar_cursor): Set clipping.
11875         (x_draw_hollow_cursor): Ditto.
11876         (x_display_and_set_cursor): Remove clipping.
11877         (expose_window_tree): Take trunc border into account.
11878         (x_phys_cursor_in_rect_p): Test if phys_cursor intersects a rect.
11879         (expose_window): Use it.
11881         * xdisp.c (display_string): Catch case that we are called with
11882         current_x already beyond max_x.
11883         (global): Fix usage of FRAME_WINDOW_P <-> FRAME_WINDOW_REDISPLAY_P.
11884         (init_display_info): Subtract vertical border glyph from
11885         last_visible_x.
11887         * scroll.c (scrolling_window_1): Removed.
11889         * dispnew.c (adjust_frame_glyphs): Split into two functions,
11890         based on redisplay method used.
11891         (adjust_frame_glyphs_for_frame_redisplay): Part for frame
11892         based redisplay.
11893         (adjust_frame_glyphs_for_window_redisplay): Part for purely
11894         window based redisplay.
11896         * frame.h (FRAME_WINDOW_REDISPLAY_P): Changed to not depend
11897         on data structures.
11899         * dispnew.c (adjust_glyph_matrix): Additional parameter W.
11900         Handle own storage for purely window based redisplay.
11901         (allocate_matrices_for_frame_redisplay): Formerly part of
11902         allocate_matrices.  
11903         (allocate_matrices_for_window_redisplay): Ditto.
11905         * dispextern.h (struct glyph_matrix): window_top_y,
11906         window_height.
11908         * dispnew.c (allocate_matrices_for_window_redisplay): Detect
11909         and optimize some common cases of window changes.
11911         * emacs.c (main): Remove own profiling code because 0.95 now
11912         has it in.
11914 Fri Aug 22 18:46:43 1997  Gerd Moellmann  <gerd@acm.org>
11916         * xterm.c (XTupdate_end): Draw horizontal border at right
11917         position.
11918         (expose_window): Draw vertical border.
11919         (XTclear_end_of_line): Accept width <= 0 and height <= 0 but
11920         don't do anything.
11922         * xdisp.c (redisplay_internal): Set update_mode_line if paused
11923         for non full width windows only if not window redisplay.
11925         * dispnew.c (update_window_tree): Or paused_p return of called
11926         functions.
11928         * xterm.c (x_display_and_set_cursor): Return if hpos/vpos outside
11929         of window.
11931         * window.c (Fset_window_configuration): adjust_glyphs being
11932         called twice.
11933         (Fset_window_configuration): Set frame garbaged if not all
11934         leaf windows reused.
11936 1997-08-21  Gerd Moellmann  <gerd@acm.org>
11938         * dispnew.c (clear_glyph_matrix): Additional argument specifiying
11939         that rows should really be cleared.  Used for current matrices.
11941         * dispnew.c (scrolling_window):  Bug fix.
11942         (line_dance_hook):  Formerly line_dance_fn, take only one 
11943         parameter.
11945         * dispextern.h (struct run): Remove current_vpos.
11947         * xterm.c (do_line_dance): Only one parameter.
11949         * xdisp.c (display_line): Set continued_p.
11951         * dispextern.h (struct glyph_row): New flag continued_p.
11952         Fix truncated_on_left_p and truncated_on_right_p to be bits.
11953         (struct glyph_row): 
11955 Thu Aug 21 14:37:34 1997  Gerd Moellmann  <gerd@acm.org>
11957         * xdisp.c (skip_vertically_backward): Avoid negative vpos values
11958         when calling skip_to for continued lines.
11960         * dispnew.c (change_frame_size_1): Set frame garbaged.
11962         * xterm.c (expose_window): Check enabled_p of rows.
11964         * xdisp.c (redisplay_internal): Compare line heights before and
11965         now for redisplay optimization 2 (hit).
11966         (display_line): Set this_line_pixel_height.
11968         * xterm.c (x_draw_row_borders): Use FRAME_MODE_LINE_HEIGHT height
11969         value.
11970         (x_clip_to_row): Use MATRIX_ROW_VISIBLE_HEIGHT. Simplified.
11971         (do_line_dance): Simplified and pixel corrected.
11973         * dispnew.c (scrolling_window): Simplified.
11975         * xterm.c (x_draw_3d_border): Inset rectangle by line width.
11977         * dispnew.c (update_window): Add FRAME_MODE_LINE_BORDER_WIDTH
11978         to mode line row->x.
11980 Wed Aug 20 11:23:28 1997  Gerd Moellmann  <gerd@acm.org>
11982         * xterm.c (x_get_char_font_and_encoding): Don't let fontset
11983         override font of face.
11984         (draw_glyphs): Correct return value.
11985         (XTclear_end_of_line): Compare differently with output cursor
11986         position.
11987         (x_draw_hollow_cursor): 2 parameters, window and row.
11989         * dispnew.c (update_window_line): If rows have different height
11990         or y, write entire line.
11992         * xdisp.c (compute_line_metrics): Reset max_ascent and max_descent
11993         of info struct.
11995         * xfaces.c (Fset_face_attribute_internal): Don't call 
11996         frame_update_line_height.
11997         (merge_faces): Don't use default font if new font has different
11998         size.
12000 Tue Aug 19 14:38:05 1997  Gerd Moellmann  <gerd@acm.org>
12002         * xterm.c (x_display_and_set_cursor): Use FONT_WIDTH if width
12003         unknown.  Some fonts have min_width zero.
12004         (draw_glyphs): Don't draw underlines to the end of the display
12005         line if face is merely extended to that point.
12006         (draw_glyphs): Don't assume background is filled if
12007         just_foreground_p but extending to end of line.
12009         * xterm.c (XTclear_end_of_line): Clip only to display_height - 1
12010         for partially visible last lines.
12011         (x_clip_to_row): Ditto.
12012         (x_clip_to_row): Clip to display_height-1 if y + line_height >
12013         display_height since line_height is really a line distance.
12014         (x_display_and_set_cursor): If cursor on padding glyph, use
12015         min_bounds pixel width.
12017 Mon Aug 18 09:39:18 1997  Gerd Moellmann  <gerd@acm.org>
12019         * xterm.c (x_clip_to_row):  Height value was 1 too large.
12020         (XTclear_end_of_line):  Clip to display area.
12022         * xfns.c (x_figure_window_sizes):  Add trunc border width
12023         to frame pixel width.
12025         * xdisp.c (next_display_element): Don't display overlay strings
12026         within invisible text.
12027         (skip_vertically_backward):  Skip display lines. 
12029 Sat Aug 16 13:13:32 1997  Gerd Moellmann  <gerd@acm.org>
12031         * xdisp.c (x_consider_frame_titie): Don't pad with blanks.
12033         * xdisp.c (next_display_element):  Next invisible
12034         text check position computed differently.
12036         * dispextern.h (struct display_cursor): last_invisible_text_pos
12037         and display_ellipsis_for_invisible_p removed.
12039         * xdisp.c (next_display_element):  Set last_invisible_text_pos
12040         to the last position at which invisible text was found.  Don't
12041         decrement cursor.pos for newlines and cr with ellipsis.  Set
12042         dpvec for `...' due to invisible text directly.  
12043         (redisplay_internal):  Don't assert that cursor is at PT after
12044         skip_to.  It may be in invisible text.
12046         * keyboard.c (make_lispy_event): For mouse clicks, use 
12047         x_y_to_hpos_vpos.
12049         * xdisp.c (next_display_element):  Call get_overlays_for_cursor when 
12050         next_overlay_pos is reached.  Use limit cursor.pos + 100 when
12051         checking for invisible text.
12053         * xterm.h (WINDOW_COL_PIXEL_X etc.) Removed.
12055         * dispextern.h (WINDOW_TO_FRAME_HPOS/VPOS): Moved to dispnew.c
12057         * xfns.c (x_contour_region):  Use pixel coordinates from window
12058         cursor instead of WINDOW_TO_FRAME_H/VPOS.
12060         * dispextern.h (FRAME_TO_WINDOW_HPOS, FRAME_TO_WINDOW_VPOS):
12061         Removed.
12063         * dispnew.c (frame_to_window_hpos, frame_to_window_vpos): Removed.
12065         * xterm.c (x_y_to_hpos_vpos):  Get hpos/vpos from window relative
12066         pixel coordinates.
12067         (note_mouse_highlight): Use it.
12069         * xdisp.c (echo_area_display):  Ignore calls for terminal frames
12070         under a window system.
12072         * dispnew.c (adjust_frame_glyphs): Call redraw_frame if 
12073         necessary.
12074         (update_window_line): Add width of face padding glyph to 
12075         displayed widths of rows.
12077         * xterm.c (x_display_and_set_cursor):  Set clipping after
12078         erasing cursor.
12079         
12080         * window.c (Fset_window_configuration): Free only those 
12081         window matrices not reused.
12082         (get_leaf_windows): Build vector of leaf windows.
12083         Corrupted archive restored from v77.
12085         * xdisp.c (display_string): Stop at >= last_visible_x if truncating
12086         like display_line does.
12088         * xdisp.c (display_mode_line): Don't hscroll mode line.
12090         * xterm.c (draw_glyphs): Wrong run_width computed for horiz. split
12091         windows.
12092         (x_scroll_bar_create): #3039 Clear area below scroll bar to remove
12093         garbage between mode lines when splitting windows horiz.
12095         * dispnew.c (direct_output_for_insert): Bug fix.
12097         * dispextern.h (struct display_cursor): New member string_length.
12099         * xdisp.c (next_display_element): Return padding spaces.
12100         (init_string_cursor): Take precision and field_width
12101         (display_string): Use string cursor, skip over invisible text.
12103 Thu Aug 14 10:41:41 1997  Gerd Moellmann  <gerd@acm.org>
12105         * xterm.c (x_clip_to_row): Clip to partially visible lines.
12106         (x_display_and_set_cursor): Call it.
12107         (draw_glyphs): Call it
12108         (draw_bitmap): Call it.
12110         * dispnew.c (adjust_frame_glyphs): Optimize frame garbaging. 
12111         (allocate_leaf_matrix): Return flags.
12112         (row_equal_p): Compare enabled_p.
12114         * xterm.c (x_erase_phys_cursor):  Set phys_cursor_on_p to 0
12115         for type == -1.
12117         * xterm.c (x_display_and_set_cursor): Bar cursor 1 pixel taller.
12118         (draw_glyphs):  Clip height one pixel taller. 
12120         * dispnew.c (direct_output_for_insert): Give up for hscrolled 
12121         mini window.
12123         * xdisp.c (display_line): Don't scroll mini prompt.
12125         * xdisp.c (echo_area_display): Call update_single_window if 
12126         possible. 
12128         * dispnew.c (update_window_line):  Call scrolling_window.
12129         (scrolling_window): Work on enabled desired lines only.
12130         (update_single_window): Update a single window like update_frame
12131         does for all windows.
12132         (update_window, update_window_tree): Additional argument 
12133         no_scrolling_p.
12134         (update_frame): Pass no_scrolling_p to update_window_tree.
12135         (update_window): Don't call scrolling_window if no_scrolling_p.
12137         * xterm.c (x_erase_phys_cursor): Do nothing if type == -1.
12138         Erase under hollow cursor. 
12139         (x_display_and_set_cursor): Do nothing if cursor glyph row 
12140         not enabled.  Draw bar cursor 1 pixel smaller.
12142         * dispnew.c (adjust_frame_glyphs): Don't set frame garbaged
12143         since update will follow soon.
12145         * xdisp.c (echo_area_display): Unitialized variable.
12147         * xterm.c (draw_bitmap): Previously draw_truncation; draw
12148         overlay arrow bitmap.
12150         * xdisp.c (display_line): For truncated lines, consider everything
12151         up to the final \n as part of the line for cursor positioning. 
12153         * xterm.c (draw_truncation): Take FRAME_X_TRUNC_WIDTH into account.
12154         (x_after_update_window_line): Clear trunc marks.
12156         * xterm.h (FRAME_X_TRUNC_WIDTH).
12158         * frame.h (FRAME_TRUNC_WIDTH):  Width of area at the left margin
12159         of a window reserved for truncation mark.
12161         * dispextern.h: Take FRAME_TRUNC_WIDTH into account. 
12163         * dispnew.c (update_window_line): Call after_update_windwo_line-
12164         hook.  
12166         * xdisp.c (display_line): Set overlay_arrow_p in row.
12168         * dispextern.h (struct glyph_row): New flag overlay_arrow_p.
12170         * xterm.c (x_after_update_window_line): Draw truncation marks.
12172         * xdisp.c (display_line): Insert truncation for lines with
12173         current_x > 0.
12175         * xterm.c (x_draw_row_borders): Convert y to frame coords.
12176         Correct y by 1.
12177         (x_display_cursor): Use default font width if width not
12178         known. 
12180         * xdisp.c (echo_area_display): Set row->y.
12182         * dispnew.c (set_window_cursor_after_update): Don't assume
12183         all rows are enabled.
12185         * xdisp.c (skip_in_display_line_to): Test cursor.position instead
12186         of cursor.pos.
12187         (skip_in_display_line_to): Check cursor.position after call to
12188         next_display_element.
12190         * dispextern.h (CURSOR_AT_P): Test if cursor has reached 
12191         buffer position.
12193         * xdisp.c (display_line): Set row->y here.
12194         (skip_in_display_line_to): Test for to_pos after all glyphs
12195         have been added to hpos so that hpos is at the end of all
12196         glyphs for to_pos.
12197         (start_display): Remove assertion.
12199         * dispnew.c (direct_output_forward_char): Bug fix, = instead of
12200         ==.
12201         (update_window): Don't set row->y here.
12203         * xdisp.c (next_display_element): Don't translate control chars
12204         from display table entries.
12206         * dispnew.c (direct_output_for_insert): Set cursor before 
12207         update end to prevent cursor flickering.  Revert changes to
12208         setting cursor.endpos.
12210 Wed Aug 13 10:46:12 1997  Gerd Moellmann  <gerd@acm.org>
12212         * dispnew.c (direct_output_for_insert):  Don't set cursor.endpos
12213         to PT because this prevents multi-byte characters from being
12214         recognized.
12216         * xdisp.c (skip_to, display_line):  Advance cursor at end of 
12217         truncated line. 
12219         * xterm.c (x_draw_3d_borders): Use CapRound. Struct rect
12220         replaced by XRectangle.
12222         * dispnew.c (scrolling_window): New method.
12224         * xterm.c (do_line_dance): New implementation, new method.
12225          
12226         * xdisp.c (draw_glyphs):  Draw truncation bitmaps. Clip to
12227         visible part of line.
12229         * dispnew.c (update_window_line): Fill inverse video lines
12230         with infinite width space.
12231         (update_window): Handle completely empty matrices.
12232         (set_window_cursor_after_update): Bug fix.
12234         * xterm.c (draw_glyphs): Stop drawing at right window end. 
12236         * dispnew.c (update_window_line): Don't ignore spaces, don't
12237         fill with spaces.
12239         * xdisp.c (compute_line_metrics): Stop adding glyph widths with
12240         the first glyph having width 0.
12242         * xterm.c (draw_glyphs): Let a glyph pixel with of 0 denote
12243         a glyph that extends to the end of the line. 
12245         * xdisp.c (display_line): Insert one padding glyph
12247         * xdisp.c (skip_in_display_line_to): Don't subtract shift left
12248         amount from info.current_x.
12249         (display_line): Ditto.
12251         * dispnew.c (direct_output_for_insert): Correct use of cursor.x.
12252         (change_frame_size_1): Correct cursor.x if frame gets too small.
12253         (update_window_line): Start at row->x.
12255         * xdisp.c (redisplay_internal): Correct cursor.x (everwhere
12256         in xdisp.c).
12258         * xterm.c (set_output_cursor): Use window relative X/Y.
12259         (global): Use window relative output cursor x/y.
12260         (draw_glyphs): Remove y param. Pass window relative x/y.
12262         * dispnew.c (update_window): Start rows at start_y.
12263         (update_window): Don't try scrolling because it wouldn't work
12264         with variable height lines, anyway.
12266         * dispextern.h (struct glyph_row): Remove shift_left_by,
12267         add x.
12269         * window.h: (struct window): New member start_y.
12271         * window.c (replace_window): Initialize start_y.
12272         (make_window): Ditto.
12274 Tue Aug 12 14:53:04 1997  Gerd Moellmann  <gerd@acm.org>
12276         * xterm.c (draw_glyphs): Clip rows that would paint over
12277         the mode line. 
12279         * dispnew.c (update_window): Take mode line border into 
12280         account. 
12282         * xterm.h (FRAME_MODE_LINE_BORDER_WIDTH): Number of pixels
12283         of border around mode line. 
12285         * xterm.c (x_draw_row_borders): Bug fix.
12286         (x_erase_phys_cursor): Set pyhs_cursor.x/y before calling
12287         drawing functions.
12289         * xterm.c (x_draw_row_border): Experimental; draw 3d borders
12290         around modeline instead of inverting it. 
12292         * xterm.c (glyph_to_pixel_coords): Use current matrix. 
12294         * dispnew.c (buffer_posn_from_coords): Use SKIP_TO.  Now takes
12295         window relative pixel coordinates as arguments.
12297         * keyboard.c (make_lispy_event): Use BUFFER_POSN_FROM_COORDS
12298         with window relative pixel coordinates.  Use GLYPH_TO_PIXEL_-
12299         COORDS mit new arguments.
12301 Mon Aug 11 12:32:34 1997  Gerd Moellmann  <gerd@acm.org>
12303         * xdisp.c (start_display): Use SKIP_TO instead of SKIP_IN-
12304         DISPLAY_LINE.  
12306         * keyboard.c (make_lispy_event): WINDOW_FROM_COORDINATES with
12307         pixel coords.
12308         (make_lispy_movement): Same.
12310         * xterm.c (note_mouse_highlight): Use WINDOW_FROM_COORDINATES
12311         with new parameter meaning.
12313         * window.c (Fcoordinates_in_window_p): Convert Lisp params
12314         from canon units to pixels.
12315         (coordinates_in_window): Pixel based.
12316         (Fcoordinates_in_window_p): Convert result pixel values back
12317         to canonical units.
12319         * window.h: phys_cursor_ascent + descent instead of height.
12321         * xterm.c (XTget_char_info): Use per char metrics for multi-byte
12322         chars with charset width 1.
12324         * dispnew.c (direct_output_for_insert): Set updated_row.
12326 Sat Aug  9 12:11:44 1997  Gerd Moellmann  <gerd@acm.org>
12328         * dispextern.h (struct glyph): Padding flag removed.
12330 Tue Aug  5 09:59:08 1997  Gerd Moellmann  <gerd@acm.org>
12332         * sysdep.c (reset_sys_modes): cursor_to with 4 params.
12334         * keyboard.c (interrupt_signal): Cursor_to with 4 params.
12336         * dispnew.c (update_window_line): Use pixels.
12338         * xdisp.c (compute_line_metrics): Correct pixel_width by
12339         shift_left_by.
12341         * dispextern.h (struct glyph_row): FIRST_SHIFTED_LEFT_GLYPH
12342         removed.  Remove references to it everywhere.  Reverse_p in 
12343         glyph_row -> right_to_left_p.  Change references to it.
12345 Mon Aug  4 18:09:27 1997  Gerd Moellmann  <gerd@acm.org>
12347         * dispnew.c (direct_output_for_insert): Use INSERT_GLYPHS.
12349         * xterm.c (XTinsert_glyphs): Implement it.
12351         * term.c (insert_glyphs): UPDATING_FRAME may be NULL in case
12352         of a call from DIRECT_OUTPUT_FOR_INSERT.
12354         * window.h (struct cursor_pos): Keeps both matrix positions
12355         and pixel positions.
12356         (struct window): Use it.
12358         * dispnew.c (direct_output_for_insert): New version.
12360         * xdisp.c (redisplay_internal): Don't do anything if it has
12361         already be done directly.
12363         * keyboard.c (command_loop_1): Call DIRECT_OUTPUT_FOR_INSERT
12364         for any character.
12366 Thu Jul 31 15:39:10 1997  Gerd Moellmann  <gerd@acm.org>
12368         * xdisp.c (echo_area_display): Use new DISPLAY_STRING.
12370 Wed Jul 30 12:18:03 1997  Gerd Moellmann  <gerd@acm.org>
12372         * dispextern.h (struct glyph_row): MAX_ASCENT, MAX_DESCENT.
12373         (struct glyph): ASCENT, DESCENT.
12374         (MATRIX_ROW_PIXEL_HEIGHT): Pixel height of row.
12375         (GLYPH_PIXEL_HEIGHT): Pixel height of glyph.
12377         * xterm.c (XTget_display_info): Correct tab computation.
12379         * term.c (get_display_info): Correct tab computation.
12381         * dispextern.h (struct display_cursor): WHAT_FOUND, SOURCE_OBJECT.
12382         Renamed from CHAR_CURSOR.
12384 Tue Jul 29 12:52:40 1997  Gerd Moellmann  <gerd@acm.org>
12386         * xdisp.c (display_text_line): Mostly pixel oriented.
12388         * dispextern.h (struct glyph): BOX_WIDTH -> PIXEL_WIDTH.
12390         * term.c (append_intermediate_glyph): Generate padding glyphs.
12392         * xdisp.c (display_text_line): More into final direction.
12394         * xterm.c (XTget_char_info): Use WHAT field of CHAR_INFO.
12395         (XTget_char_info): Use tabs as multiples of spaces.
12397         * term.c (get_char_info): Use WHAT field of CHAR_INFO.
12398         Use tabs as multiples of spaces.
12400         * dispextern.h (struct char_info ): WHAT field.
12402         * term.c (encode_terminal_code): Don't use GLYPH_CHAR, use
12403         FAST_GLYPH_CHAR instead because GLYPH_CHAR won't remove faces.
12405 Mon Jul 28 14:23:06 1997  Gerd Moellmann  <gerd@acm.org>
12407         * dispnew.c (init_char_info): Correct TAB_WIDTH to a reasonable
12408         value.
12409         (init_char_info): Initialize with glyph row.
12411         * term.c (get_char_info): Check WANT_ELLIPSIS_P.
12413         * xterm.c (XTget_char_info): Check WANT_ELLIPSIS_P.
12415         * dispextern.h (struct char_info ): GLYPH_ROW for intermediate
12416         glyphs.
12418         * dispnew.c (init_char_info): Init GLYPH_ROW to NULL. CHAR_CURSOR
12419         moved to xdisp.c.
12421         * xdisp.c (display_text_line): Use CHAR_CURSOR.
12423         * xterm.c (x_append_intermediate_glyph): Intermediate glyph
12424         generation.
12425         (XTget_char_info): Ditto.
12427         * term.c (get_char_info): Intermediate glyph generation.
12428         (append_intermediate_glyph): Ditto.
12430 Sun Jul 27 18:57:24 1997  Gerd Moellmann  <gerd@acm.org>
12432         * dispnew.c (compute_char_cursor_face): Compute the face for a 
12433         CHAR_CURSOR.
12434         (init_char_cursor): Initialize a CHAR_CURSOR.
12435         (get_char_and_advance): Get next character to display.
12437         * dispextern.h (struct char_cursor): Cursor for iterating over
12438         display text of CURRENT_BUFFER.
12440 Sat Jul 26 13:33:03 1997  Gerd Moellmann  <gerd@acm.org>
12442         * term.c (get_char_info): Set MAX_PIXEL_WIDTH in CHAR_INFO.
12444         * dispextern.h (struct char_info ): Use LISP_CHAR_TABLE for DP.
12445         New member MAX_PIXEL_HEIGHT.
12447         * xterm.c (x_per_char_metric): Get per character metrics.
12448         (XTget_char_info): More cases covered.
12450         * term.c (get_char_and_info): Get next character and character
12451         display information.
12452         (get_char_info): Get character display information.
12454         * dispextern.h: Character display information.
12456         * xterm.c (x_get_char_font_and_encoding): Get font and 
12457         encode character.
12458         (XTget_char_info): Get display information about a character.
12460 Wed Jul 23 16:50:18 1997  Gerd Moellmann  <gerd@acm.org>
12462         * dispextern.h (WINDOW_DISPLAY_MODE_LINE_HEIGHT): Height is
12463         zero if window is mini-window.
12465         * xdisp.c: Include xterm.h or w32term.h for FRAME_LINE_HEIGHT.
12466         (try_window): DISPLAY_TEXT_LINE as long as Y < DISPLAY_HEIGHT.
12468         * dispnew.c (assign_row): Assign row pixel height. 
12469         (clear_glyph_row): Clear pixel height.
12470         (update_window): Use PIXEL_HEIGHT.
12472         * xdisp.c (display_string): Set row pixel height temporarily.
12473         (display_text_line): Ditto.
12475         * dispextern.h (GLYPH_PIXEL_WIDTH): 
12476         (GLYPH_PIXEL_HEIGHT): Get glyph pixel dimension.
12478         * frame.h (FRAME_DEFAULT_PIXEL_LINE_HEIGHT): Get height of 
12479         line in default font.
12480         (FRAME_DEFAULT_GLYPH_PIXEL_WIDTH): Get width of character
12481         in default font.
12482         (FRAME_MODE_LINE_PIXEL_HEIGHT): Get height of mode line.
12484         * xterm.h (FRAME_MODE_LINE_HEIGHT): Return height of mode line
12485         in pixels.
12487         * dispnew.c (allocate_leaf_matrix): Use window pixel macros.
12489         * dispextern.h (WINDOW_DISPLAY_PIXEL_WIDTH):
12490         (WINDOW_DISPLAY_PIXEL_HEIGHT): 
12491         (WINDOW_DISPLAY_MODE_LINE_HEIGHT): 
12492         (WINDOW_DISPLAY_PIXEL_HEIGHT_WITHOUT_MODE_LINE): 
12493         (WINDOW_DISPLAY_LEFT_EDGE_PIXEL_X): 
12494         (WINDOW_DISPLAY_RIGHT_EDGE_PIXEL_X): 
12495         (WINDOW_DISPLAY_TOP_EDGE_PIXEL_Y): 
12496         (WINDOW_DISPLAY_BOTTOM_EDGE_PIXEL_Y): Macros to get various
12497         pixel values related to windows.
12499 Mon Jul 21 12:22:02 1997  Gerd Moellmann  <gerd@acm.org>
12501         * xterm.c (XTflash): Flash last line of frame.
12503         * dispextern.h (cursor_in_echo_area): Extern declaration.
12505         * xterm.c (dumpglyphs): 8-bit version to test if my Xserver
12506         freezes stem from 16-bit functions.
12508         * xterm.c (x_display_and_set_cursor): Don't display hollow
12509         cursor in mini windows.
12511         * window.c (replace_window): Initialize PHYS_CURSOR_TYPE.
12512         (make_window): Ditto.
12514         * xterm.c (x_erase_phys_cursor): Erase cursor image.
12515         (x_display_and_set_cursor): Merged version of X_DISPLAY_BOX_CURSOR
12516         and X_DISPLAY_BAR_CURSOR.
12517         (x_display_cursor): Use it.
12518         (x_update_window_cursor): Use it.
12520         * xdisp.c (display_text_line): Set cursor for window even if not
12521         selected.
12523         * xterm.c (x_display_bar_cursor): Use HPOS and VPOS instead
12524         of X and Y to denote matrix positions.
12525         (x_display_cursor): Ditto.
12527         * dispnew.c (scrolling_window): Scrolling for windows.
12529 Wed Jul 16 13:37:51 1997  Gerd Moellmann  <gerd@acm.org>
12531         * dispnew.c (build_frame_matrix): Work on windows with update
12532         flag set.
12533         (build_frame_matrix_from_window_tree): Ditto.
12534         (build_frame_matrix_from_leaf_window): Ditto.
12536         * xdisp.c (echo_area_display): Set MUST_BE_UPDATED_P instead of
12537         building frame matrix.
12538         (redisplay_internal): Set window update flags instead of 
12539         building frame matrix.
12541         * minibuf.c (read_minibuf): Set MUST_BE_UPDATED_P instead of
12542         building frame matrix.
12544         * window.c (make_window): Initialize new members.
12545         (replace_window): Ditto.
12547         * xfns.c (Fx_create_frame): Don't set PHYS_CURSOR_X to -1.
12548         I don't believe this is really necessary.
12550         * dispnew.c (build_frame_matrix_from_leaf_window): Determine
12551         border glyph once. 
12553 Tue Jul 15 13:58:33 1997  Gerd Moellmann  <gerd@acm.org>
12555         * window.c (mark_window_cursors_off): Mark all cursors in 
12556         window tree off.
12558         * xterm.c (x_display_box_cursor): Window paraemter.  Use 
12559         window matrix.
12560         (glyph_to_pixel_pos): Convert matrix pos -> pixels.
12561         (pixel_to_glyph_pos): Convert pixel pos -> matrix pos.
12562         (x_update_cursor): Work on windows.
12563         (x_display_bar_cursor): Ditto.
12564         (x_draw_single_glyph): Ditto.
12566         * xterm.h: Prototype for X_DISPLAY_CURSOR.
12568         * xterm.c (XTcursor_to): Void return type.  Test for
12569         UPDATED_WINDOW.  Call x_display_cursor with window.
12570         (x_display_cursor): Void return type.  Window instead of frame
12571         parameter.
12573         * window.h (WINDOW_RIGHTMOST_P, WINDOW_TOPMOST_P): Use functions
12574         below.
12576         * window.c (window_rightmost_p, window_topmost_p): Based on
12577         window tree.
12579         * dispnew.c (adjust_frame_message_buffer): Allocate with
12580         FRAME_MESSAGE_BUF_SIZE.
12582         * window.h: PHYS_CURSOR_.* added.
12584         * frame.h (struct frame): Cursor information removed.
12586         * frame.h (FRAME_SCROLL_BAR_WIDTH): Removed because unused.
12587         (FRAME_WINDOW_WIDTH_ARG): Don't add scroll bar width.
12589         * window.h (WINDOW_LEFT_MARGIN): Remove FRAME_LEFT_SCROLL_BAR.
12591         * window.c (window_internal_width): Scroll bars no longer
12592         part of window.
12594         * xterm.c (XTclear_end_of_line): FRAME_LEFT_SCROLL_BAR_WIDTH
12595         removed.
12597         * xfns.c (x_set_scroll_bar_width): FRAME_LEFT_SCROLL_BAR_WIDTH
12598         removed.
12600         * xdisp.c (echo_area_display): FRAME_LEFT_SCROLL_BAR_WIDTH removed.
12601         (redisplay_internal): Ditto.
12602         (redisplay_window): Ditto.
12603         (redisplay_window): Ditto.
12604         (display_text_line): Ditto.
12605         (display_mode_line): Ditto.
12607         * minibuf.c (read_minibuf): FRAME_LEFT_SCROLL_BAR_WIDTH removed.
12609         * dispnew.c (set_cursor_to): FRAME_LEFT_SCROLL_BAR_WIDTH removed.
12610         (direct_output_for_insert): Ditto.
12611         (direct_output_forward_char): Ditto.
12612         (update_frame_1): Ditto.
12614 Mon Jul 14 12:30:03 1997  Gerd Moellmann  <gerd@acm.org>
12616         * dispnew.c (updated_window): Set by UPDATE_WINDOW to the window
12617         being updated.
12618         (update_window): Set and clear it.
12620         * dispnew.c (update_window_line, update_window, scrolling_window):
12621         First versions.
12623         * dispnew.c (build_frame_matrix_from_leaf_window): Add vertical
12624         bar for window borders.
12625         (fill_up_glyph_row_area_with_spaces): Fill an area of a row
12626         with spaces.
12627         (fill_up_glyph_row_with_spaces): Call above function.
12629         * xdisp.c (display_text_line): Don't add vertical bar for
12630         window borders.
12631         (display_string): Ditto.
12633         * window.c (make_window): Init CURSOR_VPOS/HPOS.
12634         (replace_window): Ditto.
12636         * xterm.c (XTwrite_glyphs): Use selected window cursor position.
12638         * xfns.c (Fx_contour_region): Use selected window cursor position.
12639         (Fx_uncontour_region): Ditto.
12640         (Fx_select_region): Ditto.
12642         * frame.c (make_frame): Remove CURSOR_X/Y.
12644         * xdisp.c (redisplay_internal): Use window cursor position.
12646         * dispnew.c (update_frame_1): Use cursor position of selected
12647         window.
12648         (change_frame_size_1): Ditto.
12650         * xterm.c (XTupdate_begin): Set CURS_X/Y from selected window.
12651         (XTwrite_glyphs): Use cursor position of selected window.
12653         * xfns.c (x_set_scroll_bar_width): Set cursor pos of selected
12654         window.
12656         * dispnew.c (set_cursor_to): Set window cursor position.
12657         (direct_output_for_insert): Use window cursor position.
12658         (init_display): Don't use frame cursor position.
12660         * window.h: CURSOR_VPOS/HPOS added.
12662         * frame.h (struct frame): CURSOR_X/Y removed.
12663         (FRAME_CURSOR_X): Removed.
12664         (FRAME_CURSOR_Y): Ditto.
12666         * dispnew.c (direct_output_for_insert): LAST_POINT_X removed.
12667         (direct_output_forward_char): Ditto.
12669         * xdisp.c (redisplay_internal): LAST_POINT_X and LAST_POINT_Y
12670         removed.
12672         * window.c (make_window): LAST_POINT_X and LAST_POINT_Y removed.
12674         * window.h: LAST_POINT_X and LAST_POINT_Y removed.
12676 Sun Jul 13 14:18:24 1997  Gerd Moellmann  <gerd@acm.org>
12678         * xdisp.c: Bug fixes using SET_CURSOR with HPOS 0 instead
12679         of FRAME_LEFT_SCROLL_BAR_WIDTH.
12681         * dispextern.h: Changed function names.
12683         * dispnew.c (scrolling): Don't call SCROLLING_1 if WINDOW_SIZE
12684         < 2.
12685         (clear_window_matrices): Formerly two functions for desired
12686         and current matrix.
12687         (update_frame_1): Call CLEAR_DESIRED_MATRICES.
12688         (update_frame): Return return value from UPDATE_FRAME_1.
12690 Sat Jul 12 12:58:48 1997  Gerd Moellmann  <gerd@acm.org>
12692         * xdisp.c (try_window): Set WINDOW_END_VPOS with window relative
12693         LAST_TEXT_VPOS.
12695         * frame.c (set_menu_bar_lines): Adjust matrices.
12697         * dispnew.c (set_cursor_to): Set cursor position.
12699         * minibuf.c (read_minibuf): Build frame matrix.
12701         * xdisp.c (this_line_start_hpos): Renamed to
12702         THIS_LINE_START_WINDOW_HPOS to make it clear that this is window
12703         relative.
12704         (this_line_vpos): Renamed to THIS_LINE_WINDOW_VPOS for the same
12705         reason.
12707         * dispnew.c (build_frame_matrix): Don't clear rows of the 
12708         menu bar.
12709         (clear_window_records): Clear window rows.
12710         (clear_frame_records): Clear window and frame rows.
12711         (clear_glyph_matrix): Set all rows of a matrix to empty.
12713         * xdisp.c (echo_area_display): Parameter UPDATE_FRAME_P.  Update
12714         frame if set.
12715         (message2_nolog): Pass 1 to ECHO_AREA_DISPLAY.  UPDATE_FRAME
12716         removed.
12717         (redisplay_internal): Pass 0 to ECHO_AREA_DISPLAY.
12718         (redisplay_internal): Build frame matrix before UPDATE_FRAME.
12720         * dispnew.c (assign_row): Assign one glyph row to another.
12721         (mirrored_make_current): Use it.
12722         (mirror_make_current): Use it.
12723         (update_line): Rely on MIRRORED_MAKE_CURRENT to set flags and
12724         used counters for the current glyph row.
12725         
12727 Fri Jul 11 13:16:50 1997  Gerd Moellmann  <gerd@acm.org>
12729         * lisp.h: Prototype for SCAN_BUFFER.
12731         * xdisp.c (redisplay_windows): Simplified.
12733         * dispnew.c (window_to_frame_vpos): Convert window to frame vpos
12734         with debug checks.
12735         (window_to_frame_hpos): Convert window to frame hpos with checks.
12736         (frame_to_window_vpos): Convert frame to window vpos with checks.
12737         (frame_to_window_hpos): Convert frame to window hpos with checks.
12739         * dispextern.h: PRESERVE_OTHER_COLUMNS removed.
12741         * dispnew.c: PRESERVE_OTHER_COLUMNS removed.
12743         * xdisp.c (redisplay_internal): Another instance of
12744         DISPLAY_TEXT_LINE with window relative VPOS.
12745         (redisplay_internal): Remove PRESERVE_OTHER_COLUMNS.
12747         * dispnew.c (init_desired_glyphs): Do it on window matrices,
12748         only.
12750         * xdisp.c (try_window_id): Use CANCEL_WINDOW_LINE.
12751         (redisplay_internal): Ditto.
12753         * dispnew.c (cancel_window_line): Use window matrix.  Changed
12754         name to CANCEL_WINDOW_LINE.
12756         * xdisp.c (try_window_id): Use DISPLAY_TEXT_LINE with window
12757         relative VPOS.
12759         * dispextern.h (WINDOW_TO_FRAME_VPOS): Convert window vpos 
12760         to frame vpos. 
12761         (WINDOW_TO_FRAME_HPOS): Convert window hpos to frame hpos.
12762         (FRAME_TO_WINDOW_VPOS): Convert frame vpos to window vpos.
12763         (FRAME_TO_WINDOW_HPOS): Convert frame hpos to window hpos.
12765         * xdisp.c (try_window_id): Use ADJUST_WINDOW_CHARSTARTS with
12766         window relative VPOS.
12767         (redisplay_internal): Use ADJUST_WINDOW_CHARSTARTS with window
12768         relative VPOS.
12770         * dispnew.c (adjust_window_charstarts): Use INCREMENT_GLYPH_-
12771         MATRIX_BUFFER_POSITIONS.
12773         * xdisp.c (try_window_id): Use SCROLL_FULL_WIDTH_WINDOW.
12775         * dispextern.h: Prototype for SCROLL_FULL_WIDTH_WINDOW.
12777         * dispnew.c (scroll_frame_lines): Make it work on window 
12778         matrix.  Change name to scroll_full_width_window.
12780         * xdisp.c (message2_nolog): Don't fwrite NULL message If
12781         NONINTERACTIVE.
12783 Mon Jul  7 14:44:38 1997  Gerd Moellmann  <gerd@acm.org>
12785         * dispnew.c (init_desired_glyphs): Clear both frame matrix
12786         and window matrices. 
12787         (adjust_window_charstarts): Use window matrix.
12788         (cancel_my_columns): Use window matrix.
12789         (direct_output_for_insert): Use window matrix, only.
12791         * xdisp.c (display_glyphs): Extracted code from DISPLAY_STRING.
12792         (display_string): Call display_glyphs.
12793         (display_menu_bar_string): Display a string in a menu bar line.
12794         (display_menu_bar): Use DISPLAY_MENU_BAR_STRING.
12795         (display_text_line): Use window matrix.
12796         (try_window): Use window relative positions.
12798 Sun Jul  6 17:02:26 1997  Gerd Moellmann  <gerd@acm.org>
12800         * dispnew.c (adjust_frame_glyphs): Allocate window matrices from
12801         (0, 0).
12802         (allocate_leaf_matrix): Add FRAME_MENU_BAR_LINES to the height of
12803         top-most windows.
12805         * window.h (WINDOW_TOPMOST_P): Added.
12807         * xdisp.c (echo_area_display): Use PREPARE_DESIRED_ROW.
12808         (redisplay_window): Ditto.
12809         (display_text_line): Ditto.
12810         (display_menu_bar): Ditto.
12811         (display_mode_line): Ditto.
12812         (display_mode_line): Use window matrix.
12813         (display_string): Use window matrix.
12814         (display_mode_element): Ditto.
12815         (echo_area_display): Don't display if frame has no pools yet.
12816         (echo_area_display): Work with window matrix for mini window.
12817         (redisplay_window): Use window marix for mini window.
12818         (display_text_line): Assume HPOS and VPOS are window relative and
12819         use that for DISPLAY_STRING.
12821         * dispextern.h: Prototype for prepare_desired_row.
12823         * dispnew.c (prepare_desired_row): Replacement for
12824         GET_DISPLAY_LINE.
12826         * dispnew.c (adjust_window_charstarts): Always allocate window
12827         matrices.
12828         (clear_glyph_row): Only reset used counters and flags.
12830 Sat Jul  5 14:55:44 1997  Gerd Moellmann  <gerd@acm.org>
12832         * dispnew.c (scroll_frame_lines): Don't assume first scolled
12833         line is non-empty. 
12834         (realloc_glyph_pool): Don't add 1 to the pool size.
12835         (adjust_glyph_matrix): Don't add 1 to pointers to glyph areas.
12837         * dispnew.c (line_hash_code): Don't use null-glyph end marker.
12838         (line_draw_cost): Ditto.
12839         (update_line): Ditto.
12840         (update_line): Use SPACE_GLYPH.
12841         (count_blanks): Additional parameter LEN.
12843         * xdisp.c (display_text_line): Use SPACE_GLYPH.
12844         (display_text_line): Don't add null-glyph end marker.
12845         (display_string): Use SPACE_GLYPH.
12846         (display_string): Don't use null-glyph end marker.
12848         * term.c (clear_end_of_line): Use SPACE_GLYPH.
12850         * dispnew.c (clear_glyph_row): Don't use null-glyph end markers.
12851         (fill_up_glyph_row_with_spaces): Ditto.
12852         (preserve_other_columns): Add SPACE_GLYPH at then end of desired
12853         rows, instead of null-glyphs.
12854         (direct_output_for_insert): Don't add null-glyph end marker.
12856         * scroll.c (do_direct_scrolling): Change algorithm to construct
12857         vector of lines assigned.  Call MIRRORED_LINE_DANCE:
12858         (do_scrolling): Ditto.
12860         * dispnew.c (mirror_line_dance): Mirror line assignments in a
12861         frame matrix in window matrices.
12862         (mirrored_line_dance): Do line assignments during scrolling.
12863         Maybe do corresponding assignments in window matrices.
12864         (check_window_matrix_pointers): Check that window rows and frame
12865         rows agree about glyph pointers.
12866         (check_matrix_pointers): Ditto.
12867         (mirrored_make_current): Make a row of a desired matrix current;
12868         maybe mirror the operation in window matrices.
12869         (mirror_make_current): Make window desired matrix row current when
12870         frame matrix row was made current.
12872 Fri Jul  4 13:27:46 1997  Gerd Moellmann  <gerd@acm.org>
12874         * dispnew.c (check_matrix_pointer_lossage): Check against
12875         pointer lossage in matrices.
12876         (get_glyph_matrix_row): Removed.
12878         * scroll.c (do_scrolling): Simplified.
12879         (do_direct_scrolling): Simplified.
12880         (scrolling_1): Pass CURRENT_MATRIX instead of FRAME to
12881         DO_.*SCROLLING.
12882         
12884         * dispnew.c (ins_del_glyph_rows): Insert/delete rows in a matrix.
12885         (rotate_vector): Removed.
12886         (rotate_pointers): Removed.
12887         (scroll_frame_lines): Simplified.
12889 Thu Jul  3 13:54:21 1997  Gerd Moellmann  <gerd@acm.org>
12891         * dispextern.h (MATRIX_ROW_SWAP_CONTENTS): Removed.
12893         * dispnew.c (increment_glyph_matrix_buffer_positions): Does
12894         what the name says.
12895         (clear_glyph_row): Make a glyph row structure empty.
12896         (make_matrix_row_current): Make a glyph row current.
12897         (make_window_matrix_row_current): Perform analogous row swaps
12898         for window matrices.
12899         (update_line): Call make_matrix_row_current.
12901 Wed Jul  2 13:43:35 1997  Gerd Moellmann  <gerd@acm.org>
12903         * dispextern.h (SET_MATRIX_ROW_ENABLED_P): Better macro name.
12904         (SET_MATRIX_ROW_INVERSE_P): Better name and HIGHLIGHT_P ->
12905         INVERSE_P.
12906         (MATRIX_ROW_INVERSE_P): Former MATRIX_ROW_HIGHLIGHT_P.
12907         (struct glyph_row): HIGHLIGHT_P -> INVERSE_P
12909         * all files: use above new names.
12911         * dispnew.c (scroll_frame_lines): Simplified.  Use
12912         SCROLL_GLYPH_MATRIX.
12913         (make_glyph_row_empty): Mark a glyph row empty.
12914         (increment_glyph_row_buffer_positions): Increment 
12915         buffer positions in a glyph row.
12916         (increment_glyph_matrix_buffer_positions): Increment buffer
12917         positions in a range of rows.
12918         (scroll_glyph_matrix): Scroll a glyph matrix.
12919         (swap_glyphs_in_rows): Swap glyphs between rows.
12920         (swap_glyph_pointers): Swap pointers between rows.
12921         (glyph_row_slice_p): Return 1 if one row is a slice of another.
12922         (init_display): Initialize SPACE_GLYPH.
12923         (fill_up_glyph_row_areas_with_spaces): Fill up areas with
12924         spaces. 
12926 Tue Jul  1 13:49:55 1997  Gerd Moellmann  <gerd@acm.org>
12928         * xterm.c (dumprectangle): Use vectors in glyph rows.
12930         * xdisp.c (display_text_line): Use vectors in glyph rows.
12931         (display_string): Ditto.
12933         * scroll.c (do_scrolling): Use vectors in glyph rows.
12934         (do_direct_scrolling): Ditto.
12936         * alloc.c (mark_object): Use vectors in glyph rows.
12937         Mark for all frame types.
12939         * dispnew.c (adjust_glyph_matrix): Use vectors to glyphs in
12940         glyph rows.
12941         (get_glyph_matrix_row): Ditto.
12942         (matrix_row): Ditto.
12943         (rotate_pointers): Ditto.
12944         (scroll_frame_lines): Ditto.
12945         (preserve_other_columns): Ditto.
12946         (cancel_my_columns): Ditto.
12947         (update_line): Ditto.
12948         (direct_output_for_insert): Ditto.
12950         * dispextern.h (struct glyph_row): Use a vector of pointers
12951         instead of individual members.  Use a vector of used counters.
12952         (MATRIX_ROW_SWAP_CONTENTS): Use vectors.
12953         (MATRIX_ROW_GLYPH_START): Ditto.
12954         (MATRIX_ROW_GLYPH_END): Ditto.
12955         (MATRIX_ROW_USED): Ditto.
12956         (MATRIX_ROW_SET_USED): Ditto.
12958         * dispnew.c (line_hash_code): Simplified.
12960 Mon Jun 30 20:39:38 1997  Gerd Moellmann  <gerd@acm.org>
12962         * dispnew.c: Prototype for ROTATE_VECTOR, ROTATE_POINTERS,
12963         CHANGE_FRAME_SIZE_1
12964         (preserve_other_columns): Void return.
12965         (cancel_my_columns): Void return type.
12966         (scrolling): Int return type.
12967         (do_pending_window_change): Void return type.
12968         (change_frame_size): Ditto.
12969         (bitch_at_user): Ditto.
12970         (init_display): Ditto.
12971         (syms_of_display): Ditto.
12973         * dispextern.h: add prototypes for REDRAW_FRAME,
12974         REDRAW_GARBAGED_FRAMES, CANCEL_LINE, CLEAR_FRAME_RECORDS,
12975         INIT_DESIRED_GLYPHS, SCROLL_FRAME_LINES, PRESERVE_OTHER_COLUMNS,
12976         ADJUST_WINDOW_CHARSTARTS, CANCEL_MY_COLUMNS,
12977         DIRECT_OUTPUT_FOR_INSERT, DIRECT_OUTPUT_FORWARD_CHAR,
12978         UPDATE_FRAME, SCROLLING, BUFFER_POSN_FROM_COORDS,
12979         DO_PENDING_WINDOW_CHANGE, CHANGE_FRAME_SIZE, BITCH_AT_USER,
12980         SIT_FOR, INIT_DISPLAY, SYMS_OF_DISPLAY,
12981         
12982         * dispnew.c (redraw_frame): FRAME_PTR -> struct frame.  Return
12983         void.
12984         (cancel_line): Return void.
12985         (clear_frame_records):  Return void.
12986         
12987         * dispextern.h (struct glyph): Remove GLYPH, add bit-fields.
12988         (SET_CHAR_GLYPH): Fill a character glyph.
12989         (SET_CHAR_GLYPH_FROM_GLYPH): Set a character glyph from a GLYPH.
12990         (GLYPH_FROM_CHAR_GLYPH): Construct a GLYPH from a character
12991         glyph. 
12992         (CHAR_GLYPH_CHAR_CODE): Return character code of a glyph.
12993         (SET_CHAR_GLYPH_CHAR_CODE): Set character code of a glyph.
12994         (CHAR_GLYPH_FACE_ID): Return face id of a glyph.
12995         (SET_CHAR_GLYPH_FACE_ID): Set face id of a glyph.
12996         (CHAR_GLYPH_PADDING_P): Return padding flag of a glyph.
12997         (SET_CHAR_GLYPH_PADDING_P): Set padding flag.
12998         (CHAR_GLYPH_REVERSE_P): Return reversed flag.
12999         (SET_CHAR_GLYPH_REVERSE_P): Set reversed flag.
13000         (MATRIX_ROW_SWAP_CONTENTS): Swap pointers between rows.
13002         * term.c (reassert_line_highlight): Check CHARS_WASTED == 0.
13004         * window.h (struct window): Add comment that no Lisp data may
13005         come below CURRENT_MATRIX.
13007         * alloc.c (mark_object): Change window mark code to stop with
13008         member CURRENT_MATRIX.
13010 Sat Jun 28 13:54:55 1997  Gerd Moellmann  <gerd@acm.org>
13012         * scroll.c (do_scrolling): Change algorithm to use pointers.
13013         (do_direct_scrolling): Ditto.
13015         * dispnew.c (get_glyph_matrix_row): Use pointers stored in rows.
13016         (new_glyph_pool): Formerly new_FRAME_GLYPH_MATRIX.
13017         (free_glyph_pool): Formerly FREE_FRAME_GLYPH_MATRIX
13018         (realloc_glyph_pool): Formerly REALLOC_FRAME_GLYPH_MATRIX.
13019         Returns 1 if pool changed.
13020         (matrix_row): Additional check for lost pointers to glyph rows.
13021         (compute_matrices): Additional parameter DIM_P set means that no
13022         allocation should take place.  Addtional parameter
13023         ANY_WINDOWS_CHANGED_P set if any windows matrix has changed.
13024         (compute_leaf_matrix): Additional parameter CHANGED_P set to 1
13025         when window matrix changes.  Additional parameter DIM_ONLY_P set
13026         to 1 to indicate that no allocation should take place.
13027         (adjust_frame_glyphs): Construct new glyph pools and glyph
13028         matrices.  Optimize frame redraws.
13029         (free_glyphs): Free pools.
13030         (check_glyph_memory): Check pools not freed.
13031         (rotate_pointers): Rotate pointers in a vector of glyph rows.
13032         (scroll_frame_lines): Change algorithm to use pointers.
13033         (update_line): Ditto.
13035         * dispextern.h (struct glyph_row): Use pointers to areas in a row.
13036         (global): All macro names changed from prefix FRAME_MATRIX to
13037         MATRIX.
13039 Fri Jun 27 14:51:15 1997  Gerd Moellmann  <gerd@acm.org>
13041         * dispextern.h (struct glyph_pool): Replacement for former
13042         FRAME_GLYPH_MATRIX.
13043         (struct glyph_matrix): No longer contains sizes of allocated
13044         areas.
13046         * xdisp.c (redisplay_internal): Don't redisplay if frame has
13047         no glyph pools.
13049         * frame.c (make_frame): Initialize pools.
13051 Thu Jun 26 00:00:55 1997  Gerd Moellmann  <gerd@acm.org>
13053         * scroll.c (do_direct_scrolling): Don't assume that the 
13054         line moving algorithm has no intermediate steps.
13055         (do_scrolling): Ditto.
13057         * Makefile.in (alloc.o): Add dependency dispextern.h.
13059         * alloc.c: Include dispextern.h for glyph definitions.
13061         * dispnew.c (get_glyph_matrix_row): Return 1 if ROW_INDEX
13062         is legal, return 0 otherwise.
13064         * window.h: Add comment that windows are marked specially.
13066         * alloc.c (mark_object): Mark windows specially.
13069 Wed Jun 25 15:22:58 1997  Gerd Moellmann  <gerd@acm.org>
13071         * dispextern.h (struct glyph): Add member OBJECT
13072         referencing a Lisp object from which a glyph was drawn.
13073         Member TEXT_POSITION renamed POSITION.
13074         * xterm.c, xdisp.c, dispnew.c: Rename TEXT_POSITION -> POSITION.
13076         * alloc.c: Include dispextern.h
13077         (mark_object): Mark objects referenced from glyphs.
13079         * frame.c (make_frame): Initialize DECODE_MODE_SPEC_BUFFER.
13081         * scroll.c (do_direct_scrolling): Remove TEMP_MATRIX.
13082         (do_scrolling): Ditto.
13084         * frame.h (struct frame): TEMP_MATRIX removed.  
13085         DECODE_MODE_SPEC_BUFFER added.
13087         * window.h: TEMP_MATRIX removed.
13089         * scroll.c: OPHYS_LINES removed.
13091         * dispnew.c: OPHYS_LINES and OPHYS_LINES_LENGTH removed.
13092         FRAME_PTR -> struct frame *.
13094         * termhooks.h: Prototypes for INSERT_GLYPHS_HOOK,
13095         WRITE_GLYPHS_HOOK, DELETE_GLYPHS_HOOK,
13097         * term.c: Prototypes for INSERT_GLYPHS_HOOK,
13098         WRITE_GLYPHS_HOOK, DELETE_GLYPHS_HOOK,
13100         * xdisp.c (redisplay_internal): Remove call to VERIFY_CHARSTARTS.
13101         (do_verify_charstarts): Removed.
13103         * frame.c (Fmake_terminal_frame): Adjust glyphs.
13104         (Fdelete_frame): Free glyphs.
13105         (make_frame): Initialize matrix fields in frame.
13107         * config.in (PROTO): Added.
13109         * emacs.c (shut_down_emacs): Check glyph memory.
13111         * window.c (Fdelete_window): Free window matrices.
13112         (Fset_window_configuration): Ditto.
13113         (Fdelete_window): Adjust glyphs.
13114         (Fsplit_window): Ditto.
13115         (change_window_height): Ditto.
13116         (Fset_window_configuration): Ditto.
13117         (make_window): Initialize DESIRED_MATRIX and CURRENT_MATRIX.
13118         (replace_window): Reset DESIRED_MATRIX and CURRENT_MATRIX
13120         * Makefile.in (window.o): Add dependency window.c -> dispextern.h
13122         * window.c: Include dispextern.h
13124         * scroll.c (do_scrolling): Use new glyphs.
13125         (do_direct_scrolling): Ditto.
13127         * xdisp.c: Some function prototypes.
13128         (redisplay_internal): Don't do anything if matrices not yet set.
13129         (redisplay_internal): Use new glyphs.
13130         (try_window_id): Ditto.
13131         (copy_part_of_rope): Ditto.
13132         (display_text_line): Ditto.
13133         (display_menu_bar): Ditto.
13134         (display_mode_line): Ditto.
13135         (display_string): Ditto.
13137         * xterm.c: Prototypes for some local functions.
13138         (dumpglyphs): Use new glyphs.
13139         (XTwrite_glyphs): Ditto.
13140         (dumprectangle): Ditto.
13141         (note_mouse_highlight): Ditto.
13142         (fast_find_position): Ditto.
13143         (show_mouse_face): Ditto.
13144         (x_draw_single_glyph): Ditto.
13145         (x_display_bar_cursor): Ditto.
13146         (x_display_box_cursor): Ditto.
13147         (x_new_font): Adjust glyphs when font change.
13149         * term.c (clear_end_of_line): Use new glyphs.
13150         (write_glyphs): Ditto.
13151         (insert_glyphs): Ditto.
13153         * Makefile.in (term.o): term.c depends on dispextern.h
13155         * term.c: Include dispextern.h
13157         * dispnew.c (direct_output_forward_char): Old glyph functions
13158         removed, new inserted. 
13159         (line_hash_code): Use new glyphs.
13160         (line_draw_cost): Ditto
13161         (cancel_line): Ditto
13162         (clear_frame_records): Ditto.
13163         (init_desired_glyphs): Ditto.
13164         (get_display_line): Ditto
13165         (scroll_frame_lines): Ditto.
13166         (preserve_other_columns): Ditto.
13167         (adjust_window_charstarts): Ditto.
13168         (cancel_my_columns): Ditto.
13169         (direct_output_for_insert): Ditto.
13170         (update_frame): Ditto.
13171         (quit_error_check): Made empty.
13172         (scrolling): Use new glyphs.
13173         (count_blanks): Ditto.
13174         (count_match): Ditto.
13175         (update_line): Ditto.
13176         (init_display): Adjust glyphs initially.
13177         (change_frame_size_1): Adjust glyphs.
13179         * dispextern.h: Old glyphs removed, new added.
13181         * xfaces.c (min_char_bounds): Get smallest char in loaded fonts.
13183         * xterm.h: Prototype for min_char_bounds.
13185         * window.h (struct window): Remove old glyphs, add new.
13187         * frame.h (struct frame): Remove old glyphs, add new.
13188         
13189 1999-07-20  Dave Love  <fx@gnu.org>
13191         * buffer.c (syms_of_buffer): Make
13192         default-enable-multibyte-characters a user variable.
13194 1999-07-14  Richard Stallman  <rms@gnu.org>
13196         * Version 20.4 released.
13198 1999-07-14  Richard Stallman  <rms@gnu.org>
13200         * filelock.c (lock_file): Do nothing if purifying.
13202 1999-07-10  Richard Stallman  <rms@gnu.org>
13204         * xterm.c (x_display_bar_cursor): Use the cursor-color
13205         to display the bar, not the cursor foreground pixel.
13207 1999-07-09  Andrew Innes  <andrewi@gnu.org>
13209         * w32console.c (w32_use_full_screen_buffer): New variable.
13210         (syms_of_ntterm): Register it.
13211         (initialize_w32_display): Set initial frame size accordingly,
13212         respecting the LINES and COLUMNS environment variables if set.
13214         * w32inevt.c (w32_console_read_socket): Use it.
13216 1999-07-07  Kenichi Handa  <handa@etl.go.jp>
13218         * callproc.c (Fcall_process): Decide coding system for decoding
13219         after we set to the target buffer.  If the output goes to a
13220         unibyte buffer, suppress character code conversion.
13222         * fileio.c (Finsert_file_contents): If reading into a unibyte
13223         buffer, suppress character code conversion.
13225         * process.c (create_process): If the output goes to a unibyte
13226         buffer, suppress character code conversion.p
13228 1999-07-07  Andreas Schwab  <schwab@gnu.org>
13230         * xdisp.c (line-number-display-limit): Doc fix.
13232 1999-07-05  Richard Stallman  <rms@gnu.org>
13234         * callproc.c (Fcall_process): Don't use initializer on coding_systems.
13235         (Fcall_process_region): Likewise.
13237 1999-07-01  Markus Rost  <markus.rost@mathematik.uni-regensburg.de>
13239         * callproc.c (init_callproc): Set exec_directory if
13240         installation_directory is non-nil, without a test of exec_path.
13242 1999-07-01  Andrew Innes  <andrewi@gnu.org>
13244         * w32xfns.c (drain_message_queue): New function.
13246         * w32term.h (drain_message_queue): Add extern.
13248         * w32proc.c (sys_select): Call MsgWaitForMultipleObjects instead
13249         of WaitForMultipleObjects when user input is allowed, so we can
13250         handle incoming window messages.  Call drain_message_queue when
13251         there are messages waiting; this ensures that windows created
13252         indirectly from the lisp thread get processed properly, and don't
13253         hang other applications by failing to respond to broadcasts.
13255 1999-07-01  Andreas Schwab  <schwab@gnu.org>
13257         * callint.c (Fcall_interactively): Ignore first element of
13258         event-symbol-elements property.
13260 1999-07-01  Richard Stallman  <rms@gnu.org>
13262         * fileio.c (Fread_file_name): Check type of DEFAULT_FILENAME.
13264 1999-07-01  Kenichi Handa  <handa@etl.go.jp>
13266         * minibuf.c (read_minibuf): Set the multibyteness of the
13267         minibuffer before inserting `initial' string.
13269 1999-06-30  Richard Stallman  <rms@gnu.org>
13271         * xfns.c (x_make_gc): Turn off GCStipple when setting up cursor_gc.
13273 1999-06-29  Richard M. Stallman  <rms@gnu.org>
13275         * emacs.c [DOUG_LEA_MALLOC] (malloc_initialize_hook):
13276         Move the handling of MALLOC_CHECK_ envvar here.
13277         (main): Moved from here.
13279 1999-06-29  Wolfram Gloger  <wmglo@dent.med.uni-muenchen.de>
13281         * emacs.c [DOUG_LEA_MALLOC] (malloc_initialize_hook): New
13282         function, assigned to the global __malloc_initialize_hook pointer.
13283         (main): Move malloc_set_state call into malloc_initialize_hook
13284         so that it happens as early as possible.
13286 1999-06-27  Richard M. Stallman  <rms@gnu.org>
13288         * keyboard.c (read_key_sequence): Properly reinitialize
13289         fkey_map after translating thru Vkey_translation_map.
13290         After translating thru Vfunction_key_map, don't reset
13291         keytrans-start to 0.
13293 1999-06-24  Geoff Voelker  <voelker@cs.washington.edu>
13295         * w32.c (get_emacs_configuration): Use GetVersionEx to
13296         handle NT5.0 correctly.  Include build number in configuration.
13297         w32heap.c (osinfo_cache): New variable.
13298         (cache_system_info): Initialize osinfo_cache.
13299         w32heap.h (osinfo_cache): Declare.
13301 1999-06-24  Richard M. Stallman  <rms@gnu.org>
13303         * casefiddle.c (casify_object): Use make_multibyte_string
13304         if we casify a multibyte string.
13306 1999-06-22  Ken'ichi Handa  <handa@gnu.org>
13308         * fileio.c: (Finsert_file_contents): In the case of REPLACE, call
13309         del_range_byte instead of del_range_1, set `inserted' to the
13310         number of characters actually inserted.
13312 1999-06-17  Dave Love  <fx@gnu.org>
13314         * coding.c (decode_coding_sjis_big5): Avoid compiler warning.
13316 1999-06-18  Paul Eggert  <eggert@twinsun.com>
13318         * filelock.c (BOOT_TIME_FILE): New macro.
13319         (get_boot_time): Use it instead of hardwiring the file name.
13320         Check BOOT_TIME_FILE only after inspecting the kernel directly.
13322 1999-06-17  Dave Love  <fx@gnu.org>
13324         * xdisp.c (invalid_eol_type): Make it unsigned.
13326 1999-06-17  Karl Heuer  <kwzh@gnu.org>
13328         * process.c (send_process): Delete unsafe/redundant assignment.
13330 1999-06-17  Jason Rumney  <jasonr@gnu.org>
13332         * w32term.c (dumprectangle): Handle wide characters properly.
13334 1999-06-16  Andrew Innes  <andrewi@gnu.org>
13336         * s/ms-w32.h (strerror): Override the default implementation of
13337         strerror, so we can map winsock error codes.
13339         * w32.c (sys_strerror): New function.
13341         * w32fns.c (w32_to_x_weight): Return "demibold" instead of "semibold".
13343 1999-06-15  Ken'ichi Handa  <handa@gnu.org>
13345         * buffer.c (syms_of_buffer): Don't make
13346         enable-multibyte-characters customizable.
13348 1999-06-15  Richard M. Stallman  <rms@gnu.org>
13350         * editfns.c (Fuser_full_name): Doc fix.
13352 1999-06-14  Tak Ota <ota@atc.sel.sony.com>
13354         * w32bdf.c: (clear_cached_bitmap_slots): Remove.
13355         (get_bitmap_with_cache): Check if CreateBitmap failed.
13356         Adjust cache size dynamically so cache is never larger than the
13357         system limit of GDI resources.
13358         Do cache clearing inline.  Move global variables to local scope.
13361 1999-06-13  Wolfgang Glas <Wolfgang.Glas@hfm.tu-graz.ac.at>
13363         * unexsgi.c (unexec): Dump the .rodata section from memory
13364         under IRIX6.5 in order to be able to unexec with gcc.
13366 1999-06-11  Greg Hudson  <ghudson@MIT.EDU>
13368         * indent.c (compute_motion): Fix boundary case.
13370 1999-06-11  Jason Rumney  <jasonr@altavista.net>
13372         * w32term.c (cancel_mouse_face): New function. See equiv
13373         changes to xterm.c on 1996-10-31.
13374         (x_set_window_size): Use cancel_mouse_face.
13375         (w32_read_socket): Use cancel_mouse_face.
13376         Update frame position when size is restored.
13378 1999-06-04  Richard M. Stallman  <rms@gnu.org>
13380         * lread.c (Vuser_init_file): New variable.
13381         (syms_of_lread): Set up Lisp variable.
13382         (Fload): Store the file name there, if var was t before.
13384 1999-06-04  Paul Eggert  <eggert@twinsun.com>
13386         * filelock.c (get_boot_time): Don't look at /proc/uptime; it
13387         doesn't work if the system date is changed, or if the system
13388         is suspended.  Look at the last-modified time of
13389         /var/run/random-seed instead.
13391 1999-06-03  Ken'ichi Handa  <handa@gnu.org>
13393         * coding.c (ENCODE_SJIS_BIG5_CHARACTER): Encode charset
13394         japanese-jisx0208-1978 correctly.
13396 1999-06-03  Andrew Innes  <andrewi@gnu.org>
13398         * unexw32.c (get_section_info) [_ALPHA_]: Force as much bss data
13399         as possible to be dumped, for safety.
13401 1999-06-02  Ken'ichi Handa  <handa@gnu.org>
13403         * coding.c (ENCODE_SJIS_BIG5_CHARACTER): Encode charset
13404         latin-jisx0201 correctly.
13406 1999-05-26  Ken'ichi Handa  <handa@gnu.org>
13408         * charset.h (Vcharset_table): Comment fixed.
13410 1999-05-24  Richard Stallman  <rms@gnu.org>
13412         * coding.c (syms_of_coding): Doc fix.
13414         * buffer.c (syms_of_buffer): Doc fix.
13416         * filelock.c (lock_if_free): After deleting a stale lock,
13417         try again to lock the file.
13419 1999-05-22  Andrew Innes  <andrewi@gnu.org>
13421         * w32inevt.c (maybe_generate_resize_event): Detect changes in the
13422         console window size.
13423         (w32_console_read_socket): Call maybe_generate_resize_event
13424         whenever input events are received, since we don't get told when
13425         the window size changes (as opposed to the buffer size, which we
13426         don't care about).
13428         * w32console.c (clear_frame): Remember that the window width might
13429         be smaller than the screen buffer width.
13430         (write_glyphs): Remove redundant variable attrs.  Use
13431         FillConsoleOutputAttribute instead of WriteConsoleOutputAttribute.
13433 1999-05-20  Andrew Innes  <andrewi@gnu.org>
13435         * w32term.c (w32_read_socket): Reset the grabbed flag when a frame gains or
13436         loses focus.
13438         * w32fns.c (w32_wnd_proc): Ensure mouse capture is released if
13439         frame loses focus, and that mouse button state is reset.  Ditto
13440         when the menu bar is activated.
13442 1999-05-18  Richard Stallman  <rms@gnu.org>
13444         * abbrev.c (Fdefine_abbrev): Doc fix.
13446 1999-05-13  Paul Eggert  <eggert@twinsun.com>
13448         * filelock.c: Fix performance bug on hosts with large
13449         /var/adm/wtmp files with no boot records.
13451         (boot_time_initialized): New var.
13452         (init_filelock): Initialize it.
13453         (get_boot_time): Use it, instead of nonzero boot_time,
13454         to test whether boot_time is initialized.
13455         Don't invoke utmp routines when dumping.
13457         (get_boot_time): First, try to get the boot time from the
13458         current utmp file, as this can be much faster.  Don't try to
13459         get the boot time from utmp and/or wtmp more than once.
13461         (get_boot_time_1): When passed null pointer, don't invoke utmpname.
13462         New arg LATEST.  All uses changed.
13464 1999-05-15  Andrew Innes  <andrewi@gnu.org>
13466         * w32term.c (dumpglyphs): Use correct colours for drawing
13467         rectangles in place of missing fonts, and make them the right
13468         size.
13470 1999-05-14  Dave Love  <fx@gnu.org>
13472         * syntax.c (Fparse_partial_sexp): Correct test for element 8 to be
13473         non-nil.
13475 1999-05-11  Andrew Innes  <andrewi@gnu.org>
13477         * w32fns.c (x_to_w32_charset): Reinstall VIETNAMESE_CHARSET
13478         definition.
13479         (w32_wnd_proc): Reinstall debugging output.
13480         (w32_wnd_proc): Reinstall SetForegroundWindow change.
13481         (syms_of_w32fns): Reinstall new initializer for
13482         Vw32_phantom_key_code.
13484         * w32fns.c (x_to_w32_charset): Do partial matching of charset
13485         names for most non-European charsets, to cope with wildcards or
13486         missing spec dates.
13487         (Fw32_send_sys_command): Post WM_SYSCOMMAND rather than sending it
13488         to avoid deadlock when activating the menu bar.
13490 1999-05-10  Ken'ichi Handa  <handa@gnu.org>
13492         * search.c (boyer_moore): Get charset base value of `untranslated'
13493         by masking by ~CHAR_FIELD3_MASK (instead of ~0xff).
13495 1999-05-10  Andreas Schwab  <schwab@gnu.org>
13497         * fileio.c (Fread_file_name): Correct handling of dollars in file
13498         names.  Protect dollars in strings put on the file-name-history.
13499         Substitute homedir by `~' also in default_filename.
13501         * xdisp.c (try_window_id): Fix computation of tab_offset when
13502         backing up over a character that is splitted across lines.
13504 1999-05-08  Kenichi HANDA  <handa@etl.go.jp>
13506         * coding.c (code_convert_region): If eol format is inconsistent,
13507         change coding->symbol to the sibling coding system of Unix like
13508         eol format.
13510 1999-05-09  Richard M. Stallman  <rms@gnu.org>
13512         * s/irix5-2.h (NO_WTMP_FILE): Define it.
13514         * filelock.c (get_boot_time): Handle NO_WTMP_FILE.
13516 1999-05-05  Andrew Innes  <andrewi@gnu.org>
13518         * w32fns.c (w32_strict_painting): New variable.
13519         (w32_wnd_proc): Use it to select repaint rules.
13520         (syms_of_w32fns): Defvar it.
13522 1999-05-04  Andrew Innes  <andrewi@gnu.org>
13524         * w32fns.c (x_to_w32_charset): Fix typo: want to map all Japanese
13525         charsets to the standard Windows charset for Japanese.
13527 1999-05-04  Ken'ichi Handa  <handa@gnu.org>
13529         * xterm.c (x_load_font): Fix typo (`>' -> `=').
13531         * ccl.h (struct ccl_program): New member stack_idx.
13533         * ccl.c (ccl_prog_stack_struct): Declare it as static.
13534         (ccl_driver): Setup stack_idx and ccl_prog correctly.  Update them
13535         before returing.
13536         (setup_ccl_program): Initialize ccl->stack_idx to 0.
13538 1999-05-03  Jason Rumney  <jasonr@altavista.net>
13540         * w32term.c (dumpglyphs): Always fill background for italic fonts.
13542 1999-05-03  Eli Zaretskii <eliz@is.elta.co.il>
13544         * dired.c (make_time): Make argument type be time_t.
13546 1999-05-02  Eli Zaretskii <eliz@is.elta.co.il>
13548         * msdos.c (unibyte_display_via_language_environment): Add extern.
13550 1999-05-02  Richard M. Stallman  <rms@gnu.org>
13552         * xdisp.c (display_text_line): Convert unibyte char to multibyte
13553         if unibyte_display_via_language_environment is set.
13554         (unibyte_display_via_language_environment):
13555         Variable moved from xfns.c and elsewhere.
13556         (syms_of_xfns): Set up Lisp var.
13558         * xfns.c (unibyte_display_via_language_environment):
13559         Variable moved to xdisp.c.
13560         (syms_of_xfns): Don't set up Lisp var here.
13562         * msdos.c (unibyte_display_via_language_environment):
13563         Variable moved to xdisp.c.
13564         (syms_of_msdos): Don't set up Lisp var here.
13566         * w32fns.c (unibyte_display_via_language_environment):
13567         Variable moved to xdisp.c.
13568         (syms_of_w32fns): Don't set up Lisp var here.
13570 1999-05-02  Andrew Innes  <andrewi@gnu.org>
13572         * s/ms-w32.h (HAVE_FSYNC): New macro.
13573          (fsync): Map to _commit.
13574          (ftruncate): Map to _chsize.
13576         * w32term.c (dumpglyphs): On Windows NT, do output in Unicode even
13577         for ASCII, if enabled, to avoid memory allocation overhead for
13578         implicit Unicode conversion.  Also, recognize that ASCII and
13579         Latin-1 have a trivial conversion to Unicode, so x_2byte_buffer
13580         already contains the Unicode characters in that case.
13581         (construct_drag_n_drop): Remove old code that was
13582         trashing the drop location.
13584         * w32select.c (Fw32_set_clipboard_data): Undo last change to add
13585         nlines to encoding_buffer_size (real bug was in a ccl program in
13586         lisp/international/coding.el).
13588         * w32reg.c (w32_get_string_resource): Check for name in current
13589         user area, and if not found look in the local machine area.
13591         * w32fns.c (w32_list_bdf_fonts): Initialize n_fonts.
13592         (Fw32_shell_execute): New function; used to support browse-url.
13593         (syms_of_w32fns): Register it.
13594         (w32_load_system_font): Force max width to be average
13595         char width for fixed-pitch fonts, to avoid unnecessary redisplay
13596         slowdown.
13597         (x_to_w32_charset): Define VIETNAMESE_CHARSET if not
13598         already defined.
13599         (syms_of_w32fns): Set Vw32_phantom_key_code to 255.
13601         * unexw32.c (get_section_info): Dump back the entire EMDATA
13602         section if we can put Emacs' initialized data in a separate
13603         section, otherwise use the my_begdata/my_edata method.
13605         * makefile.nt ($(BLD)\w32term.obj): Add dependency on w32heap.h.
13607         * coding.c (decode_eol): Set produced/consumed values to zero if
13608         src_bytes is <= 0 on entry.
13610 1999-05-02  Jason Rumney  <jasonr@altavista.net>
13612         * w32term.c (w32_write_glyphs, w32_clear_end_of_line,
13613         w32_clear_frame, clear_cursor, x_display_bar_cursor,
13614         x_display_box_cursor, x_set_window_size): Use phys_cursor_on
13615         field in frame.
13616         (do_line_dance): Updated WRT xterm.c. Use macros where possible.
13617         (dumprectangle): Take into account the width of a left-side
13618         scroll bar.
13620         * w32proc.c (sys_kill): Attach to current foreground thread
13621         when grabbing focus; necessary on NT 5.0.
13623         * w32fns.c (w32_wnd_proc) [WM_PAINT]: Use rectangle from
13624         GetUpdateRect rather than BeginPaint.
13625         (w32_wnd_proc): Attach to current foreground thread
13626         when grabbing focus; necessary on NT 5.0.
13627         (w32_wnd_proc) [W32_DEBUG_DISPLAY]: Add output for
13628         debugging display messages.
13629         (w32_to_x_charset): Put wildcard last in unknown charsets to avoid
13630         false matching.
13632 1999-05-02  Kenichi HANDA  <handa@etl.go.jp>
13634         * coding.c (setup_raw_text_coding_system): Call
13635         setup_coding_system to initialize the fields of struct
13636         coding_system correctly.
13637         
13638 1999-04-26  Kenichi HANDA  <handa@etl.go.jp>
13640         * xterm.c (x_list_fonts): Fix previous change.
13642 1999-04-26  Richard Stallman  <rms@gnu.org>
13644         * config.in (HAVE_LIBXP): Add #undef.
13645         * Makefile.in (LIB_MOTIF_EXTRA): Check HAVE_LIBXP.
13647 1999-04-12  Ken'ichi Handa  <handa@gnu.org>
13649         * xterm.c (x_list_fonts): Trap X errors so that Emacs doesn't die
13650         by them.
13652 1999-04-12  Karl Heuer  <kwzh@gnu.org>
13654         * s/freebsd.h (BSD_SYSTEM): Define for FreeBSD 4 as with FreeBSD 3.
13656 1999-04-11  Ken'ichi Handa  <handa@gnu.org>
13658         * fontset.c (Fset_fontset_font): Fix previous change.
13660 1999-04-09  Ken'ichi Handa  <handa@gnu.org>
13662         * fontset.c (Fquery_fontset): Check for fontset aliases here.
13663         (Fnew_fontset, Fset_fontset_font): Don't check for them here.
13665 1999-04-08  Richard Stallman  <rms@gnu.org>
13667         * process.c (Faccept_process_output): Check validity of PROCESS.
13669 1999-04-08  Eli Zaretskii  <eliz@gnu.org>
13671         * msdos.c (jp_kbd_translate_table): Fix the other \ key.
13673 1999-04-07  Richard Stallman  <rms@gnu.org>
13675         * xfns.c (x_set_font): Fix error message.
13677         * fontset.c (Fquery_fontset): Don't check for fontset aliases here.
13678         (Fnew_fontset, Fset_fontset_font): Check for them here.
13679          (Ffontset_info, Fnew_fontset, Fset_fontset_font):
13680         Fix error message syntax.
13682         * buffer.c (Fmake_indirect_buffer): Copy multibyte status
13683         from the base buffer.
13684         (Fset_buffer_multibyte): Copy new multibyte status
13685         into the buffer's indirect buffers.
13687 1999-04-07  Ken'ichi Handa  <handa@gnu.org>
13689         * fns.c (base64_encode_1): Don't add unnecessary newline at the
13690         tail.
13692 1999-04-06  Richard Stallman  <rms@gnu.org>
13694         * dired.c (Ffile_attributes): Doc fix.
13696         * keymap.c (Faccessible_keymaps): Really initialize i_byte.
13697         Convert 0200 to meta only in a unibyte string.
13698         (Fkey_description): Likewise.
13700         * eval.c (do_autoload): Preserve match data.
13702 1999-04-06  Kenichi HANDA  <handa@etl.go.jp>
13704         * w32fns.c (x_to_w32_font): Provide sufficient buffer to
13705         encode_coding to avoid carryover.
13707         * coding.c: Add comments for decode_coding and encode_coding.
13709         * ccl.c (ccl_driver) <CCL_ReadMultibyteChar2>: Fix bug of handling
13710         a composite character by skipping its leading code.
13711         <CCL_WriteMultibyteChar2>: Handle non-ascii single byte character
13712         correctly.
13714         * coding.c: Add comments for decode_coding and encode_coding.
13716         * ccl.c (ccl_driver) <CCL_ReadMultibyteChar2>: Fix bug of handling
13717         a composite character by skipping its leading code.
13718         <CCL_WriteMultibyteChar2>: Handle non-ascii single byte character
13719         correctly.
13721 1999-04-06  Eli Zaretskii  <eliz@gnu.org>
13723         * msdos.c (dos_rawgetc): Don't zero out c if private translation
13724         table was used.
13725         (jp_kbd_translate_table): Support C-\.
13726         (it_kbd_translate_table): Map `>' correctly.
13727         (it_keyboard): Add `>'.
13729 1999-04-06  Richard Stallman  <rms@gnu.org>
13731         * intervals.c (graft_intervals_into_buffer): Turn off
13732         inhibit_modification_hooks around calling Fset_text_properties.
13734 1999-04-05  Kenichi HANDA  <handa@etl.go.jp>
13736         * xterm.c (dumpglyphs): Be sure to fill the whole background of
13737         glyphs.
13739 1999-04-05  Eli Zaretskii  <eliz@gnu.org>
13741         * msdos.c (jp_kbd_translate_table): Fix last change.
13743 1999-04-04  Eli Zaretskii  <eliz@gnu.org>
13745         * msdos.c (struct kbd_translate): New struct, for key translation
13746         tables private to certain national keyboard layouts.
13747         (struct dos_keyboard_map): Add a pointer to a private translation
13748         table.
13749         (jp_kbd_translate_table): Private table for the Japanese
13750         keyboard.
13751         (jp_keyboard): Japanese keyboard layout.
13752         (it_kbd_translate_table): Private table for the Italian keyboard.
13753         (it_keyboard): Use it_kbd_translate_table.
13754         (keyboard_layout_list): Add the Japanese keyboard.
13755         (dos_rawgetc): Use the keyboard-private translation table, if
13756         available.
13757         (abort) [__DJGPP_MINOR__ >= 2]: Raise SIGABRT.
13759 1999-04-02  Kenichi HANDA  <handa@etl.go.jp>
13761         * xdisp.c (redisplay_window): When we call compute_motion with
13762         HPOS got from w->last_point_x, call it with DID_MOTION 1.
13763         (display_text_line): Stop the loop for processing overlay strings
13764         when we reach the right edge of the window.
13766 1999-03-31  Richard M. Stallman  <rms@gnu.org>
13768         * doc.c (get_doc_string): When UNIBYTE and DEFINITION are 0,
13769         let the data control whether string is unibyte.
13771 1999-03-30  Richard M. Stallman  <rms@gnu.org>
13773         * macros.c (Fexecute_kbd_macro): Save real_this_command.
13774         (pop_kbd_macro): Restore the saved real_this_command.
13775         (Fcall_last_kbd_macro): Set real_this_command to the macro.
13777 1999-03-26  Richard M. Stallman  <rms@gnu.org>
13779         * buffer.c (Fset_buffer_modified_p): Don't lock or unlock
13780         if buffer-file-name is nil.
13782 1999-03-25  Jason Rumney  <jasonr@altavista.net>
13784         * w32select.c (Fw32_set_clipboard_data): Take into account line
13785         ends when calculating clipboard storage needed for non-ASCII text.
13787 1999-03-25  Andrew Innes  <andrewi@gnu.org>
13789         * makefile.nt (PREPARED_HEADERS): Change name of paths.h to epaths.h.
13790         (epaths.h): Renamed from paths.h.
13791         (clean): 
13792         ($(BLD)\filelock.obj): 
13793         ($(BLD)\lread.obj): 
13794         ($(BLD)\w32fns.obj): Renamed paths.h to epaths.h.
13796 1999-03-23  Ken'ichi Handa  <handa@gnu.org>
13798         * coding.c (encode_coding_iso2022): Initialize dummy arguments to
13799         ENCODE_ISO_CHARACTER for the previous change on this macro.
13801 1999-03-23  Kenichi Handa  <handa@etl.go.jp>
13803         * xdisp.c (decode_mode_spec_coding): Handle integer value in
13804         eoltype correctly for backward compatibility.
13806 1999-03-20  Kenichi HANDA  <handa@etl.go.jp>
13808         * coding.c (ENCODE_ISO_CHARACTER): Check validity of CHARSET.  If
13809         invalid, produce the buffer internal byte sequence without encoding.
13811 1999-03-19  Karl Heuer  <kwzh@gnu.org>
13813         * editfns.c (Fformat): Accept %i format.
13815 1999-03-17  Karl Heuer  <kwzh@gnu.org>
13817         * filelock.c (get_boot_time): Test tempname, not filename.
13819 1999-03-17  Jason Rumney <jasonr@altavista.net>
13821         * w32bdf.h: Merged patches from Meadow; introduce bitmap cache to
13822         speed display.
13824         * w32bdf.c: Merged patches from Meadow; introduce bitmap cache to
13825         speed display.
13826         (get_cached_font_char, cache_char_offset, get_bitmap_with_cache)
13827         New functions.
13828         (w32_free_bdf_font, seek_char, w32_get_bdf_glyph, w32_BDF_TextOut)
13829         Use bitmap cache.
13831         * w32fns.c (enum_font_cb2): Set the font height to be the
13832         character height, not the cell height.
13833         (Fw32_select_font): Initialize font dialog with current default font.
13834         (Vw32_system_coding_system): New variable.
13835         (w32_strict_filenames): Add comment.
13836         (w32_to_x_font): Decode font name using Vw32_system_coding_system.
13837         (x_to_w32_font): Encode font name using Vw32_system_coding_system. 
13838         (syms_of_w32fns): Add w32-system-coding-system.
13840 1999-03-15  Richard M. Stallman  <rms@gnu.org>
13842         * xterm.c (XTread_socket) <ConfigureNotify>:
13843         If cursor pos is outside the new frame size, mark cursor as off.
13845 1999-03-14  Ken'ichi Handa  <handa@gnu.org>
13847         * xdisp.c (try_window_id): Initialize val.ovstring_chars_done to 0.
13849         * xterm.c (x_load_font): Trap X errors so that Emacs doesn't die
13850         by them.
13852 1999-03-14  Richard M. Stallman  <rms@gnu.org>
13854         * macros.c (Fexecute_kbd_macro): Initialize executing_macro_iterations
13855         at beginning.
13857 1999-03-14  Jason Rumney <jasonr@altavista.net>
13859         * w32fns.c (w32_strict_fontnames): New variable.
13860         (Fx_create_frame): Formatting fix.
13861         (w32_load_system_font): Keep trying to load non-existant font
13862         if w32_strict_fontnames is nil. Formatting fix.
13863         (syms_of_w32fns): Add w32-strict-fontnames.
13865         * w32term.c (W32_TEXTOUT): Do not multiply nchars by charset_dim.
13866         (dumpglyphs): Formatting fixes.
13868 1999-03-14  Geoff Voelker  <voelker@cs.washington.edu>
13870         * w32fns.c (w32_wnd_proc): Handle WM_GETMINMAXINFO message.
13872 1999-03-10  Karl Heuer  <kwzh@gnu.org>
13874         * puresize.h (BASE_PURESIZE): Increase to 505000.
13876 1999-03-09  Richard M. Stallman  <rms@gnu.org>
13878         * emacs.c (main) [CLASH_DETECTION]: Call init_filelock.
13880         * filelock.c (init_filelock): New function.
13882 1999-03-09  Dave Love  <fx@gnu.org>
13884         * fileio.c (Ffile_directory_p): Doc fix.
13886 1999-03-05  Richard M. Stallman  <rms@gnu.org>
13888         * coding.c (setup_coding_system): Check for CODING_SYSTEM = nil.
13890 1999-03-08  Richard M. Stallman  <rms@gnu.org>
13892         * filelock.c (get_boot_time): Reduce scope of #ifdef BOOT_TIME
13893         to only the part that uses get_boot_time_1.
13895 1999-03-07  Dave Love  <fx@gnu.org>
13897         * fileio.c (Finsert_file_contents): Use xfree.
13899 1999-03-06  Kenichi Handa  <handa@etl.go.jp>
13901         * Makefile.in (callproc.o, coding.o, fileio.o, msdos.o, process.o,
13902         term.o, xselect.o): Depend on ccl.h.
13904 1999-03-05  Geoff Voelker  <voelker@cs.washington.edu>
13906         * makefile.nt: Remove common multiple file compilation commands.
13908 1999-03-04  Takeshi YAMADA <yamada@cslab.kecl.ntt.co.jp>
13910         * fns.c (Fbase64_encode_string): Allocate sufficient memory for
13911         newlines added when the arg NO-LINE-BREAK is nil.
13913 1999-03-04  Karl Heuer  <kwzh@gnu.org>
13915         * search.c (Fstring_match, Fposix_string_match): Doc fix.
13917         * buffer.c (syms_of_buffer): Doc fix for case-fold-search.
13919 1999-03-04  Dave Love  <fx@gnu.org>
13921         * term.c (term_init): Use xmalloc, not malloc.
13923         * callproc.c (Fcall_process): Use xmalloc, xfree.
13925 1999-03-03  Andreas Schwab  <schwab@gnu.org>
13927         * eval.c (Fdefconst): Doc fix.
13929 1999-03-01  Kenichi Handa  <handa@etl.go.jp>
13931         * coding.c: Comment for ISO 2022 encoding mechanism modified.
13933 1999-03-01  Eli Zaretskii  <eliz@gnu.org>
13935         * w16select.c (get_clipboard_data): Always stop at the first null byte.
13937 1999-02-28  Richard M. Stallman  <rms@gnu.org>
13939         * filelock.c (get_boot_time): Support FreeBSD way to read boot-time.
13941         * cmds.c (internal_self_insert): Calculate column properly
13942         in overwrite-of-tab case.
13944 1999-02-27  Andreas Schwab  <schwab@gnu.org>
13946         * emacs.c (main) [DOUG_LEA_MALLOC]: Don't use unsetenv, it calls
13947         malloc in glibc 2.1.
13949 1999-02-26  Richard Stallman  <rms@gnu.org>
13951         * Makefile.in: paths.h and paths.in renamed to epaths.h and epaths.in.
13953         * epaths.in: Renamed from paths.in.
13954         This avoids a conflict with a system header file paths.h on GNU/Linux.
13956         * callproc.c, lread.c, w32fns.c, xfns.c, xrdb.c:
13957         Use epaths.h istead of paths.h.
13959 1999-02-26  Andreas Schwab  <schwab@gnu.org>
13961         * emacs.c (main) [DOUG_LEA_MALLOC]: Work around a bug in glibc's
13962         malloc.
13964 1999-02-25  Dave Love  <fx@gnu.org>
13966         * buffer.c (syms_of_buffer): Doc fix for enable-multibyte-characters.
13968 1999-02-25  Richard Stallman  <rms@gnu.org>
13970         * filelock.c (get_boot_time): Use WTMP_FILE for file name.
13971         (WTMP_FILE): Default definition in case not defined.
13972         (get_boot_time_1): Test that file exists before trying to read it.
13973         
13974 1999-02-25  Ken'ichi Handa  <handa@gnu.org>
13976         * keymap.c (push_key_description): If enable-multibyte-characters
13977         is nil and C is single byte, push C as is.
13979 1999-02-24  Kenichi Handa  <handa@etl.go.jp>
13981         * keymap.c (push_key_description): If enable-multibyte-characters
13982         is non-nil, try to convert unibyte character to multibyte.  For
13983         invalid multibyte character, show all bits by octal form.
13984         (Fsingle_key_description): Check the validity of charset for a
13985         generic character.
13987 1999-02-23  Richard M. Stallman  <rms@gnu.org>
13989         * fileio.c (Ffile_regular_p): Undo previous change.
13991         * eval.c (Fdefconst): Doc fix.
13993         * filelock.c (get_boot_time): Don't use BUFSIZ.
13995 1999-02-22  Andrew Innes  <andrewi@gnu.org>
13997         * makefile.nt ($(BLD)\w32bdf.obj): Add missing continuation character.
13998         (EXTRA_LINK): Do version test with strings.
14000 1999-02-22  Andreas Schwab  <schwab@gnu.org>
14002         * fns.c (Fbase64_encode_string): Fix last change.
14004         * termhooks.h (event_kind): Add user_signal.
14006         * keyboard.c (Qusr1_signal, Qusr2_signal): New variables.
14007         (syms_of_keyboard): Initialize them.
14008         (lispy_user_signals): New variable.
14009         (make_lispy_event): Handle user_signal event type.
14011         * emacs.c: Don't define Qusr1_signal and Qusr2_signal.
14012         (syms_of_emacs): Don't initialize them.
14013         (handle_USR1_signal, handle_USR2_signal): Set event type to
14014         user_signal instead of non_ascii_keystroke, and use plain integers
14015         as code instead of Lisp symbols.
14017 1999-02-21  Eli Zaretskii  <eliz@delysid.gnu.org>
14019         * fileio.c: (lstat) [!S_ISLNK]: Use stat instead of lstat.
14021 1999-02-21  Richard Stallman  <rms@gnu.org>
14023         * filelock.c (get_boot_time_1): Put this in #ifdef BOOT_TIME.
14025         * print.c (print_error_message): Don't crash if (cdr data)
14026         is not a list.
14028 1999-02-21  Eli Zaretskii  <eliz@gnu.org>
14030         * fileio.c (lstat) [!S_ISLNK]: Use stat instead of lstat.
14032 1999-02-20  Andrew Innes  <andrewi@gnu.org>
14034         * vm-limit.c (memory_warnings) [WINDOWSNT]: Reset lim_data on each
14035         run, since size can vary from run to run.
14037         * makefile.nt (EXTRA_LINK, LINK_FLAGS): Ensure base relocation
14038         data is included, to enable profiling.
14039         ($(EMACS)): Map file not needed for emacs.exe.
14041         * emacs.c (main): [!SYSTEM_MALLOC]: Call realloc and free as well
14042         as malloc before calling uninterrupt_malloc, for consistency.
14043         This also enables profiling to work on WINDOWSNT.
14045 1999-02-18  Richard Stallman  <rms@gnu.org>
14047         * Makefile.in (emacs.o): Depend on termhooks.h.
14048         (filelock.o): Depend on systime.h.
14050 1999-02-18  Ken'ichi Handa  <handa@gnu.org>
14052         * coding.c (Fdecode_sjis_char): Use %x for formatting error message.
14053         (Fdecode_big5_char): Likewise.
14055 1999-02-17  Richard Stallman  <rms@gnu.org>
14057         * insdel.c (adjust_markers_for_replace): When doing an insertion
14058         (replacing a region of zero length), handle markers at the
14059         insertion point properly.
14061 1999-02-17  Andrew Innes  <andrewi@gnu.org>
14063         * w32fns.c (Vw32_quit_key): New variable.
14064         (post_character_message): Use it.
14065         (syms_of_w32fns): DEFVAR it.
14067 1999-02-16  MORIOKA Tomohiko  <morioka@jaist.ac.jp>
14069         * fns.c (Fbase64_encode_string): New optional argument `NO_LINE_BREAK'.
14071 1999-02-16  Richard Stallman  <rms@gnu.org>
14073         * filelock.c (within_one_second): New function.
14074         (current_lock_owner): Use that.
14075         (get_boot_time): Use /proc/uptime if available.
14076         Otherwise, if nothing found in wtmp, try wtmp.1.gz and so on.
14077         (get_boot_time_1): New subroutine taken from get_boot_time.
14078         
14079 1999-02-16  Richard Stallman  <rms@gnu.org>
14081         * emacs.c (Qusr1_signal, Qusr2_signal): New variables.
14082         (syms_of_emacs): Init and staticpro them.
14083         (handle_USR1_signal): Don't run any code, just queue up an event.
14084         (handle_USR2_signal): Likewise.
14086 1999-02-16  Eli Zaretskii  <eliz@gnu.org>
14088         * dired.c (Ffile_attributes): If the file's size doesn't fit in
14089         an integer, return it as a float.  Doc string fixed.
14091 1999-02-16  Richard Stallman  <rms@gnu.org>
14093         * emacs.c (Qusr1_signal, Qusr2_signal): New variables.
14094         (syms_of_emacs): Init and staticpro them.
14095         (handle_USR1_signal): Don't run any code, just queue up an event.
14096         (handle_USR2_signal): Likewise.
14098 1999-02-15  Kenichi Handa  <handa@etl.go.jp>
14100         * coding.c (Fdecode_sjis_char, Fencode_sjis_char): Handle
14101         ASCII correctly.  Signal error on invalid characters.
14102         (Fdecode_big5_char, Fencode_big5_char): Likewise.
14104 1999-02-15  Eli Zaretskii  <eliz@gnu.org>
14106         * w16select.c (get_clipboard_data): Work around a bug in Windows95
14107         DOS box which doubles the reported size of text in the clipboard.
14109 1999-02-15  Kenichi Handa  <handa@etl.go.jp>
14111         * coding.c (decode_coding_iso2022): Don't set
14112         coding->composed_chars to 0 here.
14113         (setup_coding_system): Set coding->composed_chars to 0 here.
14115 1999-02-10  Richard Stallman  <rms@gnu.org>
14117         * fileio.c (Ffile_regular_p): Use lstat.
14119 1999-02-09  Richard Stallman  <rms@gnu.org>
14121         * unexelf.c (HAS_SBSS_SECTION): Define this in some cases.
14122         (unexec): Test this instead of specific systems.
14124         * m/macppc.h: New file.
14126 1999-02-08  Dave Love  <fx@gnu.org>
14128         * fns.c (Fyes_or_no_p, Fy_or_n_p): Doc fix.
14130 1999-02-08  Ken'ichi Handa  <handa@gnu.org>
14132         * coding.c (ccl_coding_driver): On encoding, coding->produced_char
14133         should be set to coding->produced.
14135 1999-02-07  Paul Fisher  <rao@gnu.org>
14137         * fns.c (IS_BASE64_IGNORABLE, READ_QUADRUPLET_BYTE): New macros.
14138         (base64_decode_1): Use READ_QUADRUPLET_BYTE.
14140 1999-02-07  Markus Rost  <markus.rost@mathematik.uni-regensburg.de>
14142         * editfns.c (Fformat): Doc fix.
14144 1999-02-06  Richard Stallman  <rms@gnu.org>
14146         * process.c (syms_of_process): defsubr it.
14147         (Fprocess_running_child_p): New function.
14149 1999-02-05  Andrew Innes  <andrewi@gnu.org>
14151         * w32term.c (construct_drag_n_drop): Call DraqQueryPoint before
14152         recording drop position.
14154 1999-02-05  Ken'ichi Handa  <handa@gnu.org>
14156         * coding.c (encode_coding_iso2022): Before writing out an invalid
14157         code, reset graphic planes and registers if necessary.
14159         * term.c (encode_terminal_code): Fix previous change.
14161 1999-02-04  Eli Zaretskii  <eliz@gnu.org>
14163         * w16select.c (last_clipboard_text, clipboard_storage_size): New
14164         static variables.
14165         (set_clipboard_data): Save a copy of the text we put into
14166         clipboard in last_clipboard_text.
14167         (get_clipboard_data): If the clipboard text is identical to what
14168         last_clipboard_text holds, pretend there's no data in the clipboard.
14170 1999-02-03  Richard Stallman  <rms@gnu.org>
14172         * s/gnu.h (NLIST_STRUCT): Add #undef.
14174 1999-02-03  Eli Zaretskii  <eliz@gnu.org>
14176         * w16select.c (Fw16_set_clipboard_data): When the text needs to be
14177         encoded, set its pointer and size as returned by encode_coding.
14179 1999-02-02  Ken'ichi Handa  <handa@gnu.org>
14181         * fns.c (Fset_char_table_default): To handle the case that CH is
14182         an ASCII char, use SPLIT_CHAR instead of SPLIT_NON_ASCII_CHAR.
14184 1999-02-02  Andrew Innes  <andrewi@gnu.org>
14186         * w32fns.c (syms_of_w32fns): Change default value of
14187         w32-mouse-move-interval to 0, so that the mouse wheel/rocker on
14188         some mice works properly.
14190 1999-02-02  Eli Zaretskii  <eliz@gnu.org>
14192         * w16select.c (set_clipboard_data): Correctly null-terminate the
14193         string to be put into the Windows clipboard.  Use xbuf_addr.
14195 1999-02-01  Richard Stallman  <rms@gnu.org>
14197         * buffer.c (Fset_buffer_multibyte): Error if buffer is indirect.
14199 1999-01-31  Richard Stallman  <rms@gnu.org>
14201         * process.c (process_send_signal): If CURRENT_GROUP is `lambda'
14202         then don't send the signal if the shell owns the terminal.
14203         (Finterrupt_process): Doc change.
14204         
14205 1999-01-31  Andrew Innes  <andrewi@gnu.org>
14207         * unexw32.c: (ROUND_UP_DST_AND_ZERO): New macro.
14208         (copy_executable_and_dump_data): Use it to ensure alignment slop
14209         is zeroed.
14211 1999-01-30  Andrew Innes  <andrewi@gnu.org>
14213         * w32.c (init_environment): Change argv[0] to contain the full
14214         path to Emacs.
14216         * emacs.c (main) [WINDOWSNT]: Pass argv to init_environment.
14218 1999-01-29  Ken'ichi Handa  <handa@gnu.org>
14220         * xterm.c (x_new_fontset): For ASCII font, don't use the font name
14221         returned by x_new_font (the resolved one) but use the font name
14222         set in the fontset specification.
14223         (x_load_font): For the height of font, if normarl ascent and
14224         descent value are larger than those in max_bounds field, use the
14225         former.
14227 1999-01-28  Eli Zaretskii  <eliz@gnu.org>
14229         * xdisp.c (decode_mode_spec_coding): Fix previous change.
14231 1999-01-27  Geoff Voelker  <voelker@cs.washington.edu>
14233         * makefile.nt: Use full path to temacs.exe when dumping.
14235 1999-01-27  Jason Rumney <jasonr@altavista.net>
14237         * w32fns.c (w32_load_system_font): Do not load unlisted fonts if
14238         list was reliable.
14239         (enum_fontex_cb1, enum_fontex_cb2): New functions.
14240         (w32_list_bdf_fonts): New parameter; max_names.  Callers updated.
14241         (w32_list_synthesized_fonts): New function.
14242         (w32_list_fonts): Use maxnames.  Use EnumFontFamiliesEx when
14243         available instead of EnumFontFamilies.  List synthesized fonts if
14244         Vw32_enable_italics is non-nil.
14245         
14246 1999-01-27  Richard Stallman  <rms@gnu.org>
14248         * s/ptx4.h (SETUP_SLAVE_PTY): Use the ptem module if it exists.
14249         Don't complain if ttcompat does not exist.
14251         * w32fns.c (x_set_frame_parameters): gcpro as needed.
14253 1999-01-27  Andrew Innes  <andrewi@gnu.org>
14255         * w32fns.c (w32_wnd_proc): Fix bug introduced by previous change;
14256         the lwindow, rwindow and apps keys could not be used as function
14257         keys, because they were being passed to TranslateMessage which
14258         ignores them.  Also, key was being changed to SPC.
14260         * makefile.nt: Do make version comparison as strings.
14262 1999-01-27  Eli Zaretskii  <eliz@gnu.org>
14264         * coding.c (syms_of_coding): eol-mnemonic-* variables are now
14265         strings, not characters.
14267         * coding.h: Likewise.
14269         * xdisp.c (decode_mode_spec_coding): Display the EOL type as a
14270         string.
14272 1999-01-26  Dave Love  <fx@gnu.org>
14274         * emacs.c (main): Up-date copyright.
14276 1999-01-25  Dave Love  <fx@gnu.org>
14278         * coding.c (syms_of_coding): Doc fix for inhibit-eol-conversion.
14280 1999-01-25  Andreas Schwab  <schwab@gnu.org>
14282         * eval.c (Fsignal): Move comment to avoid confusing make-docfile.
14284 1999-01-23  Richard M. Stallman  <rms@borg.ai.mit.edu>
14286         * xfns.c (x_set_frame_parameters): gcpro as needed.
14288         * window.c (Fset_window_point): If WINDOW is selected but the
14289         current buffer is not its buffer, don't use Fgoto_char.
14291 1999-01-22  Richard M. Stallman  <rms@gnu.org>
14293         * syntax.c (scan_sexps_forward): Delete duplicate code
14294         to set prev_from_syntax, above start of main loop.
14295         At startinstring, check syntax when checking for a match.
14297 1999-01-22  Jason Rumney <jasonr@altavista.net>
14299         * w32bdf.c: New file.
14300         * w32bdf.h: New file.
14301         * makefile.nt: Add w32bdf.c and w32bdf.h.
14303         * w32gui.h: Include w32bdf.h.
14304         (W32FontStruct) Add bdf element.
14306         * w32term.h (FONT_WIDTH, FONT_HEIGHT, FONT_BASE, FONT_MAX_WIDTH):
14307         Support BDF fonts.
14309         * w32term.c (W32_TEXTOUT): New macro.
14310         (dumpglyphs): Support BDF fonts.  Use W32_TEXTOUT macro.
14311         Simplify baseline calculation.  Detect SJIS by font, not glyph.
14312         Call SetTextAlign.
14313         (syms_of_w32term): Remove "jisx0212-sjis" from
14314         w32-charset-to-codepage-alist.
14315         Replace "ksc5601" with "ksc5601.1987" in w32-charset-to-codepage-alist.
14316         Add "ksc5601.1992' to w32-charset-to-codepage-alist.
14317         
14318         * w32fns.c (Vw32_bdf_filename_alist): New variable.
14319         (x_destroy_bitmap): Returns void not int.
14320         (x_set_border_pixel): Returns void.
14321         (w32_load_bdf_font): New function.
14322         (w32_load_system_font): New function, was w32_load_font.  List
14323         fonts before loading.  Explicitly set encoding for SJIS fonts.
14324         Set default_ascent to 0 as comment indicates.
14325         (w32_load_font): Call w32_load_system_font and w32_load_bdf_font.
14326         (w32_unload_font): Support BDF fonts.
14327         (w32_to_x_charset): Fix mappings to avoid wildcard mismatches.
14328         Autodetect whether to use koi8-r instead of iso8859-5.
14329         Associate "ksc5601.1987" with HANGUEL_CHARSET.
14330         Associate "ksc5601.1992" with JOHAB_CHARSET.
14331         (x_to_w32_charset): Make consistent with w32_to_x_charset.
14332         (w32_to_x_font): Add resolution.
14333         (x_to_w32_font): Use font resolution to calculate height if supplied.
14334         (w32_font_match): Handle wildcards anywhere within field.
14335         (enumfont_t): Remove unused head pointer.
14336         (enum_font_cb2): Dereference elfLogFont.
14337         (w32_list_bdf_fonts): New function.
14338         (w32_list_fonts): Use one_w32_dispay_info instead of insisting on
14339         valid frame.  Remove MessageBox.  Support BDF fonts.
14340         (Fw32_find_bdf_fonts): New function.
14341         (syms_of_w32fns): Add Vw32_bdf_filename_alist and
14342         Sw32_find_bdf_fonts.
14344 1999-01-21  Andrew Innes  <andrewi@gnu.org>
14346         * makefile.nt (temacs): Use del to delete file, not rm.
14348 1999-01-19  Richard Stallman  <rms@psilocin.ai.mit.edu>
14350         * keyboard.c (read_key_sequence): Fix previous change.
14352         * xterm.c (same_x_server): Detect treat ":0" and "unix:0"
14353         as the same.  Treat "myname:0" as the same as those two.
14355 1999-01-19  Jason Rumney <jasonr@altavista.net>
14357         * w32fns.c (x_to_w32_charset): Add iso8859-9.
14358         (w32_to_x_charset): Fix charset mappings.
14360         * w32term.c: Remove codepage macros. Remove redundant BIG5 macros.
14361         (dumpglyphs): Move definitions out of block containing goto.
14362         Remove redundant code for BIG5.
14363         Use w32_codepage_for_font instead of
14364         w32_codepage_for_charset.  Add cast to int where float
14365         operation is assigned to int.
14366         (Vw32_charset_to_codepage_alist): New variable.
14367         (w32_codepage_for_charset): Removed.
14368         (w32_codepage_for_font): New function, replacing 
14369         w32_codepage_for_charset. 
14370         (syms_of_w32term): Add and initialize
14371         w32-charset-to-codepage-alist.
14373 1999-01-17  Richard Stallman  <rms@psilocin.ai.mit.edu>
14375         * xselect.c (x_handle_selection_clear): Don't clear the
14376         selection if Emacs still owns it through a different display.
14378 1999-01-17  Andrew Innes  <andrewi@gnu.org>
14380         * w32proc.c: (w32_executable_type): Relax the check to identify
14381         cygwin-compiled applications, because the exact dll name varies
14382         with release.  Now only require the name to start "cygwin".
14384         * w32heap.h: (ROUND_UP):
14385         (ROUND_DOWN): New macros.
14386         (need_to_recreate_heap): Renamed to using_dynamic_heap.
14387         (init_heap): New extern.
14388         (data_region_size):
14389         (recreate_heap):
14390         (read_in_bss):
14391         (map_in_heap):
14392         (round_to_next):
14393         (w32_fatal_reload_error):
14394         (get_section_size): Obsolete externs removed.
14396         * w32heap.c: (RVA_TO_PTR): Redefine to convert RVA to address in
14397         current process.
14398         (round_to_next): Obsolete function removed.
14399         (preload_heap_section): New variable.
14400         (data_region_size): Obsolete variable removed.
14401         (allocate_heap): Modified to determine end of static heap section
14402         used during preload, and use that as initial base address for
14403         dynamic heap instead of hard-coded value.
14404         (sbrk): Remove call to allocate_heap; handled by init_heap.  Skip
14405         calls to commit or decommit pages when allocating from static heap
14406         section during preload.
14407         (recreate_heap): Obsolete function removed.
14408         (init_heap): New function to initialize internal sbrk heap
14409         variables.  Uses static heap section during preload, otherwise
14410         calls allocate_heap to reserve a heap region dynamically.
14411         (round_heap): Use ROUND_UP macro instead of round_to_next.
14413         * unexw32.c: Major rewrite to support cleaner method of dumping; a
14414         static "bss" section is used for heap space during preload, and
14415         bss data is now written to the proper section area when dumping.
14416         (need_to_recreate_heap): Renamed to using_dynamic_heap.
14417         (heap_index_in_executable): Obsolete variable removed.
14418         (data_section): New variable.
14419         (data_start_va): Renamed to data_start.
14420         (data_start_file): Obsolete variable removed.
14421         (bss_section):
14422         (extra_bss_size):
14423         (bss_section_static):
14424         (bss_start_static):
14425         (bss_size_static):
14426         (extra_bss_size_static):
14427         (heap_section): New variables.
14428         (_start): Remove code based on old unexec method.  Call init_heap
14429         to initialize sbrk heap.
14430         (close_file_data): Update size of file when closing, so that
14431         unexec doesn't have to work out exact size in advance.
14432         (get_bss_info_from_map_file):
14433         (get_section_size): Obsolete functions removed.
14434         (rva_to_section): Fix minor bug, and add a work-around for a bug
14435         in very old linkers.
14436         (offset_to_section):
14437         (relocate_offset): New functions.
14438         (OFFSET_TO_RVA):
14439         (RVA_TO_OFFSET):
14440         (RVA_TO_SECTION_OFFSET):
14441         (PTR_TO_RVA):
14442         (PTR_TO_OFFSET):
14443         (OFFSET_TO_PTR): New macros.
14444         (get_section_info): Modify to support new unexec method;
14445         determines address ranges in process that need dumping, and COFF
14446         sections where data will be dumped.  Allows for static and global
14447         bss data to be in separate ranges.  No longer relies on knowledge
14448         of section names.
14449         (copy_executable_and_dump_data_section): Renamed
14450         copy_executable_and_dump_data.  Completely rewritten to copy
14451         executable section by section, so that raw data areas can be
14452         expanded to hold dumped data as necessary.  Allows for bss data to
14453         be in same section as initialized data.  Reduces size of static
14454         heap section to that used during preload.
14455         (dump_bss_and_heap):
14456         (w32_fatal_reload_error):
14457         (read_in_bss):
14458         (map_in_heap): Obsolete functions removed.
14459         (unexec): Rounds off preload heap to nearest page rather than
14460         virtual allocation unit.  Modified to match other changes.
14462         * mem-limits.h: (get_lim_data): Use reserved_heap_size instead of
14463         data_region_size.
14465         * makefile.nt: (TEMACS_TMP): New macro.
14466         ($(TEMACS)): Output to TEMACS_TMP from link, use post-link
14467         processor to add static heap section in support of new unexec.
14469         * lastfile.c: Include config.h to pick up data layout pragmas.
14470         [WINDOWSNT]: Remove explicit pragma.
14472 1999-01-12  Kenichi Handa  <handa@etl.go.jp>
14474         * coding.c (Fdecode_sjis_char): Decode Japanese Katakana character
14475         correctly.
14476         (Fencode_sjis_char): Encode Japanese Katakana character correctly.
14478 1999-01-11  Dave Love  <fx@gnu.org>
14480         * coding.c (syms_of_coding): Doc fix for inhibit-eol-conversion.
14482 1999-01-11  Richard Stallman  <rms@psilocin.ai.mit.edu>
14484         * keyboard.c (read_key_sequence): In key-translation-map and
14485         function-key-map, handle symbol with array as fn def.
14486         In function-key-map, handle symbol with keymap as fn def,
14487         and autoloaded definitions.
14488         
14489         * puresize.h (BASE_PURESIZE): Increment to 500000.
14491         * print.c (Qtemp_buffer_setup_hook): New variable.
14492         (syms_of_print): Init and staticpro that.
14493         (temp_output_buffer_setup): Run Qtemp_buffer_setup_hook.
14495 1999-01-11  Kenichi Handa  <handa@etl.go.jp>
14497         * insdel.c (del_range_1): Call signal_after_change.
14498         (del_range_byte): Likewise.
14499         (del_range_both): Likewise.
14500         (del_range_2): Don't call signal_after_change.
14502         * xdisp.c (message_dolog): Use insert_1_both to avoid running any
14503         Lisp code here.
14505 1999-01-07  Richard Stallman  <rms@psilocin.ai.mit.edu>
14507         * eval.c (find_handler_clause): If SIG is nil (memory full error),
14508         never run the debugger, and don't bother checking the args
14509         to see whether the debugger should be run.
14511 1999-01-06  Richard Stallman  <rms@psilocin.ai.mit.edu>
14513         * keyboard.c (read_key_sequence):
14514         Tell get_keyelt to look handle autoloads.
14515         Handle symbols defined as keymaps, and autoloaded keymaps.
14517 1999-01-06  Kenichi Handa  <handa@etl.go.jp>
14519         * search.c (search_buffer): Fix previous change.
14521 1999-01-06  Eli Zaretskii  <eliz@gnu.org>
14523         * w16select.c (set_clipboard_data): Terminate the text with a null
14524         character.  Don't allow to put binary data into the clipboard.
14525         Return zero in case of success, 1 or 2 otherwise.
14526         (get_clipboard_data): Only bail out if the null character is in
14527         the last 32-byte chunk of clipboard data
14528         (Fw16_set_clipboard_data): Make ok and put_status be unsigned.  If
14529         they save binary data, print a message in the echo area saying the
14530         text was not put into the clipboard.
14532         * msdos.c (IT_write_glyphs): Move constant expression out of the loop.
14534 1999-01-06  Andreas Schwab  <schwab@gnu.org>
14536         * systty.h [__GLIBC__ >= 2]: Check __FAVOR_BSD instead of
14537         _BSD_SOURCE, the latter is always defined.
14539 1999-01-05  Richard Stallman  <rms@psilocin.ai.mit.edu>
14541         * fns.c (Frequire): Don't fail to unbind bindings.
14543 1999-01-02  Richard Stallman  <rms@psilocin.ai.mit.edu>
14545         * emacs.c (main) [DOUG_LEA_MALLOC]: Don't call r_alloc_reinit.
14547         * charset.c (Ffind_charset_region): Fix doc typo.
14549 1998-12-31  Eli Zaretskii  <eliz@mescaline.gnu.org>
14551         * msdos.c (IT_write_glyphs): Convert unibyte characters to
14552         multibyte in unibyte buffers only.
14554         * keymap.c (Fdefine_prefix_command): Accept a third argument NAME
14555         and pass it to Fmake_sparse_keymap.
14557 1998-12-29  Richard Stallman  <rms@psilocin.ai.mit.edu>
14559         * alloc.c (MMAP_MAX_AREAS): New macro.
14560         (allocate_vectorlike, make_uninit_multibyte_string): Use that.
14561         (init_alloc_once): Use that.
14563         * s/gnu-linux.h [DOUG_LEA_MALLOC] (REL_ALLOC): Undefine it.
14565         * alloc.c (lisp_malloc, lisp_free): New functions.
14566         Use them instead of malloc, xmalloc, and xfree, for Lisp objects.
14567         Don't set allocating_for_lisp in the callers; let lisp_malloc do it.
14568         (n_interval_blocks, n_float_blocks): New variable.
14569         (n_cons_blocks, n_vectors, n_symbol_blocks): New variable.
14570         (n_marker_blocks, n_string_blocks): New variable.
14571         (init_intervals, make_interval): Set a count variable.
14572         Use lisp_malloc instead of setting allocating_for_lisp.
14573         (init_float, make_float, init_cons, Fcons): Likewise.
14574         (allocate_vectorlike, init_symbol, Fmake_symbol): Likewise
14575         (init_marker, allocate_misc, init_strings): Likewise.
14576         (make_uninit_multibyte_string): Likewise.
14577         (gc_sweep, compact_strings): Decrement the count variables.
14579         * alloc.c (uninterrupt_malloc): Don't store Emacs's hooks
14580         into the old_..._hook variables.
14582 1998-12-28  Richard Stallman  <rms@psilocin.ai.mit.edu>
14584         * keyboard.c: In each active map, for each menu bar item, use only
14585         the first submap.
14586         (menu_bar_one_keymap): Initialize menu_bar_one_keymap_changed_items.
14587         (menu_bar_item): Update and test menu_bar_one_keymap_changed_items.
14588         (syms_of_keyboard): Staticpro and init it.
14590         * xmenu.c (single_keymap_panes): 
14592 1998-12-28  Andrew Innes  <andrewi@delysid.gnu.org>
14594         * w32fns.c (w32_msg_pump): Ignore WM_NULL message posted to thread
14595         by complete_deferred_msg.
14596         (post_character_message): Cancel all deferred messages when
14597         quit_char is typed, in order to break out of potential deadlocks.
14598         (cancel_all_deferred_msgs): New function.
14599         (complete_deferred_msg): Don't abort if msg not found; may have
14600         been cancelled.
14601         (Fw32_reconstruct_hot_key): Use pre-interned symbols.
14602         (Fw32_send_sys_command): Wait for system command to
14603         complete before returning.
14605         * w32term.c (x_iconify_frame): Wait for frame to be iconified; do
14606         not set async_iconified flag though.
14608         * w32proc.c: (Vw32_start_process_inherit_error_mode): New variable.
14609         (create_child): Use it.
14610         (syms_of_ntproc): Defvar it.  Also fix docstrings for
14611         w32-start-process-share-console and w32-start-process-show-window.
14613         * unexw32.c (_start): Force system calls accessing unmounted
14614         devices to fail without prompting.
14616 1998-12-26  Richard Stallman  <rms@psilocin.ai.mit.edu>
14618         * emacs.c (main): Call memory_warnings and uninterrupt_malloc
14619         even when starting the dumped Emacs.
14621         * keymap.c (Fsingle_key_description): Handle (control ?x) etc.
14622         (Fkey_description): Handle lists like vectors.
14624 1998-12-21  Kenichi Handa  <handa@etl.go.jp>
14626         * callint.c (Fcall_interactively) <'C'>: Give Fread_char Qnil
14627         because of the change of the second argument of Fread_char.
14629         * charset.c (Fcharset_after): Check range.  If POS is out of
14630         range, return nil.
14632         * keyboard.c (read_char): Don't bind input-method-exit-on-first-char.
14634         * lread.c (Fread_char): Change the meaning of the second argument.
14635         (Fread_event): Likewise.
14636         (Fread_char_exclusive): Likewise.
14638         * print.c (printchar): Fix previous change.
14640         * process.c (read_process_output): Decide the multibyteness of
14641         string given to a process filter by a coding system used for
14642         decoding the process output.
14644 1998-12-21  Eli Zaretskii  <eliz@mescaline.gnu.org>
14646         * xterm.c (dumpglyphs): Don't convert 7-bit ASCII characters via
14647         nonascii-translation-table.
14648         * msdos.c (IT_write_glyphs): Likewise.
14649         * fns.c (concat): Likewise.
14650         * charset.c (unibyte_char_to_multibyte): Likewise.
14651         * insdel.c (copy_text, count_size_as_multibyte): Likewise.
14653 1998-12-21  Andreas Schwab  <schwab@delysid.gnu.org>
14655         * doc.c (Fdocumentation): Change the doc string for prefix
14656         commands to make it a complete sentence in one line.
14658 1998-12-16  Petri Kaurinkoski  <Petri.Kaurinkoski@hut.fi>
14660         * s/irix6-5.h: New file.
14661         * s/irix6-0.h (IRIX6): Define this symbol.
14662         * s/usg5-4.h (TIOCSIGSEND): Don't define this if irix6.
14663         (bcopy, bcmp, bzero): Likewise.
14664         * m/iris4d.h (LIBS_MACHINE): Leave this blank if irix6.5.
14665         (C_SWITCH_MACHINE): New value for irix6.5.
14667 1998-12-15  Richard Stallman  <rms@gnu.org>
14669         * fns.c (Fbase64_decode_region, Fbase64_decode_string):
14670         Do free malloc'd memory even in case of failure.  Use xfree, not free.
14671         (Fbase64_encode_region, Fbase64_encode_string): Use xfree, not free.
14672         (base64_decode_1): Don't fail for short lines.
14674         * print.c (printchar): Outputting multibyte characters
14675         to echo area always makes it multibyte.
14677         * search.c (search_buffer): Don't use Boyer-Moore
14678         to search for an invalid multibyte code.
14679         In unibyte case, no need to check whether there are translations
14680         in more than one charset; just set charset_base to 0.
14682 1998-12-15  Ken'ichi Handa  <handa@delysid.gnu.org>
14684         * print.c (printchar): Cancel previous change.
14686 1998-12-15  Kenichi Handa  <handa@etl.go.jp>
14688         * callproc.c: Include "ccl.h".
14689         (Fcall_process): Doc-string modified.  Set CODING_MODE_LAST_BLOCK
14690         bit in argument_coding.mode to tell encoding procedure to flush
14691         data.  While encoding arguments, if argument_coding uses CCL
14692         program, initialize it again after encoding.
14693         (Fcall_process_region): Doc-string modified.  Handle the case that
14694         NARGS is 3.
14696         * ccl.c (CCL_SUCCESS): Don't set ccl->ic.
14697         (ccl_driver) <CCL_End>: Pretend that all source text is consumed.
14698         Set `ic' to the head of this command.
14699         (ccl_driver) <CCL_ReadMultibyteChar2>: Return a single byte 8-bit
14700         code for an invalid code.
14701         (setup_ccl_program): If the arg VEC is nil, skip setting ups
14702         based on VEC.
14704         * charset.c (Qunknown): New variable.
14705         (init_charset_once): Intern and staticpro Qunknown.  Initialize
14706         all elements of Vcharset_symbol_table to Qunknown.
14707         (find_charset_in_str): New arg MULTIBYTE.  If it is zero, check
14708         unibyte characters only.  For an invalid composition sequence, set
14709         CHARSETS[1] to 1.
14710         (Ffind_charset_region): Call find_charset_in_str with an
14711         appropriate MULTIBYTE arg.  If undefined charsets are found,
14712         include `unknown' is the return value.
14713         (Ffind_charset_string): Likewise.
14714         (Fsplit_char): If CHAR is invalid, return `(unknown CHAR)'.
14715         (str_cmpchar_id): Max composite character code should be less than
14716         GENERIC_COMPOSITION_CHAR.
14718         * charset.h (find_charset_in_str): Update declaration.
14720         * coding.c (DECODE_DESIGNATION): Jump to label_invalid_code if
14721         final_char is invalid.
14722         (decode_coding): If coding->type is coding_type_ccl, call
14723         ccl_coding_driver even if SRC_BYTES is zero.
14724         (code_convert_region): Update `inserted' correctly after calling
14725         coding->post_read_conversion.  Even after the code converter
14726         consumed all source text, call it once more if it is
14727         coding_type_ccl to flush out data.
14729         * fileio.c (Finsert_file_contents): Even if INSERTED is zero, if
14730         CODING is handled by CCL program, call code_convert_region.
14732         * fns.c (string_char_to_byte): Handle invalid multibyte sequence
14733         correctly.
14734         (string_byte_to_char): Likesize.
14736         * print.c (printchar): When outputting a multibyte character to
14737         echo area, always set message_enable_multibyte to 1.
14739         * process.c (read_process_output): If NBYTES is zero and
14740         CODING_MODE_LAST_BLOCK bit is not yet set in coding->mode, set it
14741         and try decoding again.
14742         (Fprocess_send_eof): If the coding system of PROCESS
14743         requires flushing, call send_process with null-string at first.
14745         * w16select.c (Fw16_set_clipboard_data): Call find_charset_in_str
14746         with MULTIBYTE arg 0.
14747         * w32select.c (Fw32_set_clipboard_data): Likewise.
14748         * xselect.c (lisp_data_to_selection_data): Likewise.
14750 1998-11-30  Richard Stallman  <rms@psilocin.ai.mit.edu>
14752         * search.c (Freplace_match): Set OPOINT clearly for the case
14753         where point is in the middle of the text to be replaced.
14755         * xdisp.c (display_text_line): When handling HPOS < 0 after loop,
14756         if compute_motion fails to advance at all, don't back it up.
14758 1998-12-10  Geoff Voelker  <voelker@cs.washington.edu>
14760         * w32.c (w32_get_long_filename): Handle root dirs correctly.
14762         * s/ms-w32.h (LOCALTIME_CACHE): Define. 
14764 1998-12-09  Richard Stallman  <rms@gnu.org>
14766         * insdel.c (insert_from_buffer_1): Properly count the size
14767         of output from conversion to multibyte even when input
14768         is split across the gap.
14770 1998-12-09  Karl Heuer  <kwzh@gnu.org>
14772         * keyboard.c: Doc fixes.
14774         * s/irix4-0.h (C_SWITCH_SYSTEM) [!__GNUC__]: Increase space.
14776 1998-12-08  Andrew Innes  <andrewi@harlequin.co.uk>
14778         * w32select.c (Fw32_get_clipboard_data): Do not delete isolated CR
14779         characters, only convert CRLF to LF.
14781 1998-12-08  Geoff Voelker  <voelker@cs.washington.edu>
14783         * makefile.nt: Do string comparision of _NMAKE_VER.
14785 1998-12-06  Eli Zaretskii  <eliz@mescaline.gnu.org>
14787         * Makefile.in (msdos.o): Depend on termchar.h, charset.h,
14788         coding.h, and disptab.h
14790         * msdos.c (Vdos_unsupported_char_glyph): New variable.
14791         (syms_of_msdos): DEFVAR_LISP it.
14792         (IT_insert_glyphs, IT_delete_glyphs): New functions which abort Emacs.
14793         (internal_terminal_init): Set up insert_glyphs_hook and
14794         delete_glyphs_hook to call them.  Explicitly set char_ins_del_ok to 0.
14795         (unibyte_display_via_language_environment): New variable.
14796         (syms_of_msdos): Devfar it.
14797         (IT_write_glyphs): Honor glyph aliasing via Vglyph_table.
14798         Encode the character codes of the glyphs according to the
14799         terminal_coding in effect.
14801 1998-12-04  Andreas Schwab  <schwab@delysid.gnu.org>
14803         * fns.c (Fstring_as_unibyte): Doc fix.
14805 1998-12-03  Andreas Schwab  <schwab@delysid.gnu.org>
14807         * charset.h: Declare char_valid_p.
14809 1998-12-03  Eli Zaretskii  <eliz@mescaline.gnu.org>
14811         * dosfns.c (dos_cleanup): Flush and fsync the termscript stream.
14813         * msdos.c (init_environment): Record the time we started up.
14814         (IT_reset_terminal_modes): Don't restore the screen if we exit too
14815         fast after startup (aka crash).
14817 1998-12-02  Geoff Voelker  <voelker@cs.washington.edu>
14819         * w32.c (check_windows_init_file): Use decode_env_path when
14820         using EMACSLOADPATH.
14822 1998-12-02  Jason Rumney  <jasonr@altavista.net>
14824         * w32term.c (dumpglyphs): Use unsigned char arrays.
14825         Use FONT_MAX_WIDTH to detect and fudge proportional fonts
14826         for various languages.
14827         Compensate for fonts that have underhangs (e.g., Thai).
14829         * w32term.h (FONT_MAX_WIDTH): New macro.
14831 1998-12-02  Andrew Innes  <andrewi@harlequin.co.uk>
14833         * keyboard.c (Qlanguage_change): New variable.
14834         (syms_of_keyboard): Init it.
14835         (kbd_buffer_get_event) [WINDOWSNT]: Generate language-change events.
14836         (lispy_function_keys) [HAVE_NTGUI]: Remove names for modifier
14837         keys; add name for Escape key; extend to 256 elements.
14838         (parse_modifiers): Make non-static.
14840         * keyboard.h (parse_modifiers): Declare prototype.
14842         * termhooks.h (event_kind) [WINDOWSNT]: Define language_change_event.
14844         * w32fns.c (w32_last_error): Fix cut+paste error.
14845         (Vw32_phantom_key_code): New variable.
14846         (Qhyper, Qsuper, Qmeta, Qalt, Qctrl, Qcontrol, Qshift): New variables.
14847         (syms_of_w32fns): Init and register them.
14848         (reset_modifiers): Use a more precise test for whether Emacs has
14849         keyboard focus.  Synchronize state of all keys that can be used as
14850         modifiers, to overcome problems arising from hot-keys.
14851         (w32_key_to_modifier): Be careful not to call intern() to avoid
14852         requiring thread synchronization.
14853         (w32_msg_pump): Handle new WM_EMACS_TOGGLE_LOCK_KEY message.
14854         (w32_wnd_proc): Ensure lock key indicator lights are updated
14855         promptly on Windows 9x, by passing key events on to the system.
14856         (w32_wnd_proc): Use Vw32_phantom_key_code to stop system
14857         responding to Windows key events when not wanted.
14858         (w32_wnd_proc): Undo the mapping of Ctrl-Pause into cancel and
14859         Ctrl-NumLock into pause by the system.
14860         (w32_wnd_proc): Don't translate key combinations containing any
14861         modifiers other than shift (and capslock).
14862         (w32_wnd_proc): Reset modifier key states when receiving focus (we
14863         can't determine the key states until we have keyboard focus).
14864         (Fw32_toggle_lock_key): New function.
14865         (syms_of_w32fns): Defsubr it.
14867         * w32inevt.c (key_event): Use Vw32_phantom_key_code.  Undo the
14868         mapping of Ctrl-Pause into cancel, and Ctrl-NumLock into pause.
14869         (w32_console_toggle_lock_key): New function.
14871         * w32term.h (WM_EMACS_TOGGLE_LOCK_KEY): New define.
14873 1998-11-30  Richard Stallman  <rms@psilocin.ai.mit.edu>
14875         * search.c (Freplace_match): Set OPOINT clearly for the case
14876         where point is in the middle of the text to be replaced.
14878         * xdisp.c (display_text_line): When handling HPOS < 0 after loop,
14879         if compute_motion fails to advance at all, don't back it up.
14881 1998-11-28  Richard Stallman  <rms@psilocin.ai.mit.edu>
14883         * xfns.c (Qouter_window_id): New variable.
14884         (syms_of_xfns): Initialize it.
14885         (x_report_frame_params): Set up outer-window-id parameter.
14887         * keymap.c (Fsingle_key_description): Fix previous change.
14889 1998-11-26  Ken'ichi Handa  <handa@delysid.gnu.org>
14891         * lisp.h (Frequire): Update declaration.
14893 1998-11-26  Kenichi Handa  <handa@etl.go.jp>
14895         * ccl.c (ccl_driver) <CCL_TranslateCharacter>: Don't suppress MSB
14896         if the charset is ascii.
14897         (ccl_driver) <CCL_TranslateCharacterConstTbl>: Likewise.
14899         * charset.c (non_ascii_char_to_string): If C has modifier bits,
14900         make an appropriate one byte string.
14901         (char_bytes): Handle the case that C is a single byte char or has
14902         modifier bits.
14904         * charset.h (CHAR_BYTES): If C has modifier bits, return 1.
14906         * cmds.c (internal_self_insert): If C has modifier bits, insert
14907         appropriate one byte char.
14909 1998-11-25  Richard Stallman  <rms@psilocin.ai.mit.edu>
14911         * fns.c (Fstring_as_unibyte, Fstring_as_multibyte):
14912         Clear text properties in the new string.
14914 1998-11-24  Felix Lee  <flee@cygnus.com>
14916         * process.c (read_process_output): Call signal_after_change.
14918 1998-11-24  Richard Stallman  <rms@psilocin.ai.mit.edu>
14920         * buffer.c (syms_of_buffer): Doc fix.
14922         * keyboard.c (syms_of_keyboard): Doc fix.
14924 1998-11-22  Richard Stallman  <rms@psilocin.ai.mit.edu>
14926         * frame.c (Fset_mouse_position): Doc fix.
14928 1998-11-20  Richard Stallman  <rms@psilocin.ai.mit.edu>
14930         * keymap.c (Fmake_keymap): Doc fix.
14932 1998-11-17  Kenichi Handa  <handa@etl.go.jp>
14934         * category.c (word_boundary_p): If C1 or C2 are composite
14935         characters, test their first components.
14937 1998-11-16  Richard Stallman  <rms@sucrose.ai.mit.edu>
14939         * window.c (temp_output_buffer_show): Around temp-buffer-show-hook,
14940         don't do save-excursion, just restore selected window.
14942         * window.c (window_loop): For UNSHOW_BUFFER,
14943         always do consider minibuffer windows.
14944         
14945 1998-11-16  Kenichi Handa  <handa@etl.go.jp>
14947         * charset.h (SINGLE_BYTE_CHAR_P): Check if C is negative or not.
14949         * charset.c (non_ascii_char_to_string): If C is negative, signal error.
14951         * lisp.h (CHAR_TABLE_REF): Check if IDX is negative or not.
14953         * s/bsdos4.h: New file.
14955 1998-11-16  Kenichi Handa  <handa@etl.go.jp>
14957         * Makefile.in (abbrev.o): Depend on charset.h
14958         (bytecode.o): Depend on charset.h.
14960         * bytecode.c: Include charset.h.
14962         * abbrev.c: Include charset.h.
14964         * syntax.h (SYNTAX_ENTRY_INT): For a composite character, check
14965         the first component.
14967 1998-11-13  Ehud Karni  <ehud@unix.simonwiesel.co.il>
14969         * m/aviion-intel.h (LIBS_MACHINE): Delete redundant definition.
14971 1998-11-11  Richard Stallman  <rms@gnu.org>
14973         * xterm.c (XTread_socket): Fix previous change in case F == 0.
14975         * s/dgux5-4-3.h (BSD_PGRPS): Add #undef.
14977         * s/dgux4.h (BROKEN_FIONREAD): #undef commented out.
14978         (INTERRUPT_INPUT): #define commented out.
14980         * m/aviion-intel.h: New file.
14982 1998-11-11  Eli Zaretskii  <eliz@delysid.gnu.org>
14984         * fns.c (MAX_ALLOCA): New macro.
14985         (Fbase64_encode_region, Fbase64_encode_string,
14986         Fbase64_decode_region, Fbase64_decode_string):  Don't allocate
14987         more than MAX_ALLOCA bytes with alloca; otherwise use xmalloc.
14989 1998-11-11  Ken'ichi Handa  <handa@delysid.gnu.org>
14991         * insdel.c (byte_combining_error): Error message improved.
14993         * charset.c (char_valid_p): Handle a composite character correctly.
14995 1998-11-11  Kenichi Handa  <handa@etl.go.jp>
14997         * charset.c (str_cmpchar_id): Check the byte sequence for
14998         composition more rigidly.
14999         (Fcompose_string): Allow DEL to be composed.  Signal error if STR
15000         contains an invalid multibyte sequence.
15002         * xterm.c (x_list_fonts): Don't change the value of maxnames.
15004 1998-11-10  Andrew Innes  <andrewi@harlequin.co.uk>
15006         * w32term.h (struct w32_display_info): New element faked_key.
15007         (WM_EMACS_SETKEYBOARDLAYOUT): 
15008         (WM_EMACS_REGISTER_HOT_KEY): 
15009         (WM_EMACS_UNREGISTER_HOT_KEY): New message definitions.
15010         (LEFT_WIN_PRESSED): 
15011         (RIGHT_WIN_PRESSED): 
15012         (APPS_PRESSED): New console keyboard modifier flags.
15014         * w32term.c (convert_to_key_event): Removed.
15015         (is_dead_key): Copied to w32fns.c.
15016         (w32_read_socket): Generate language_change_event.  Modify to work
15017         with keyboard handling changes in w32_wnd_proc.
15019         * w32proc.c (sys_kill): Set extended key flag when faking
15020         Ctrl-Break keystrokes.
15021         (Fw32_get_locale_info): Allow LONGFORM parameter to specify an
15022         arbitrary locale property using a numerical index.
15023         (Vw32_valid_codepages): New variable.
15024         (enum_codepage_fn): 
15025         (Fw32_get_valid_codepages): 
15026         (Fw32_get_console_codepage): 
15027         (Fw32_set_console_codepage): 
15028         (Fw32_get_console_output_codepage): 
15029         (Fw32_set_console_output_codepage): 
15030         (Fw32_get_codepage_charset): 
15031         (Fw32_get_valid_keyboard_layouts): 
15032         (Fw32_get_keyboard_layout): 
15033         (Fw32_set_keyboard_layout): New functions, exposing Windows locale
15034         handling functions.
15035         (syms_of_ntproc): Register them.
15037         * w32inevt.c: Include w32term.h and w32heap.h.
15038         (map_keypad_keys):
15039         (Vw32_enable_caps_lock):
15040         (Vw32_enable_num_lock):
15041         (Vw32_pass_lwindow_to_system):
15042         (Vw32_pass_rwindow_to_system):
15043         (Vw32_lwindow_modifier):
15044         (Vw32_rwindow_modifier):
15045         (Vw32_apps_modifier):
15046         (Vw32_scroll_lock_modifier):
15047         (w32_key_to_modifier): Add externs.
15048         (w32_kbd_mods_to_emacs): Recognize Windows keys, Apps key, and
15049         Scroll Lock as potential modifiers; exclude numpad keys from
15050         effect by CapsLock; act on Vw32_enable_caps_lock; remove obsolete
15051         code.
15052         (is_dead_key): Copy from w32fns.c.
15053         (w32_kbd_patch_key): Comment attempt to improve handling of
15054         dead-keys, and system bug relating to same on Windows NT.  Work
15055         around the bug by calling ToUnicode and then converting to the
15056         correct codepage.
15057         (map_virt_key): Removed obsolete variable.
15058         (lispy_function_keys): Add extern.
15059         (key_event): Major rework of keyboard input handling: optionally
15060         recognize Windows keys and Apps key as modifiers; optionally treat
15061         NumLock, CapsLock and ScrollLock as function keys; let system
15062         translate keystrokes to characters to avoid system bugs relating
15063         to dead-key handling; preserve shift distinction for control
15064         characters.  Remove some obsolete code.
15066         * makefile.nt ($(BLD)\w32inevt.obj): Add dependencies on w32term.h
15067         and w32heap.h.
15069         * w32fns.c (Vw32_pass_optional_keys_to_system): Variable removed.
15070         (Vw32_pass_lwindow_to_system):
15071         (Vw32_pass_rwindow_to_system):
15072         (Vw32_lwindow_modifier):
15073         (Vw32_rwindow_modifier):
15074         (Vw32_apps_modifier):
15075         (Vw32_enable_num_lock):
15076         (Vw32_enable_caps_lock):
15077         (Vw32_scroll_lock_modifier): New variables.
15078         (modifier_set): Return toggle state for Scroll Lock.
15079         (w32_key_to_modifier): New function.  Returns chosen modifier bit
15080         for given key.
15081         (w32_get_modifiers): Returns modifier flags for
15082         non-keyboard input events.
15083         (construct_console_modifiers): Renamed from construct_modifiers;
15084         recognize Windows and Apps keys as modifiers.
15085         (w32_get_key_modifiers): New function.  Returns modifier flags for
15086         keyboard input events.
15087         (map_keypad_keys): Make non-static.  Use second arg as extended
15088         flag.
15089         (w32_grabbed_keys): New variable.
15090         (HOTKEY, HOTKEY_ID, HOTKEY_VK_CODE, HOTKEY_MODIFIERS): New macros.
15091         (register_hot_keys):
15092         (unregister_hot_keys):
15093         (lookup_vk_code):
15094         (w32_parse_hot_key):
15095         (Fw32_register_hot_key):
15096         (Fw32_unregister_hot_key):
15097         (Fw32_registered_hot_keys):
15098         (Fw32_reconstruct_hot_key): New functions to support hotkeys.
15099         (post_character_message): New function.
15100         (w32_msg_pump): Handle new messages for using hotkeys and changing
15101         keyboard layout/language.
15102         (w32_wnd_proc): Major rework of keyboard input handling:
15103         optionally recognize Windows keys and Apps key as modifiers;
15104         optionally treat NumLock, CapsLock and ScrollLock as function
15105         keys; let system translate keystrokes to characters to avoid
15106         system bugs relating to dead-key handling; preserve shift
15107         distinction for control characters; forward keyboard
15108         layout/language changes to lisp; detect and convert hot-key events
15109         to normal keystrokes.
15110         (syms_of_w32fns): Register new functions and variables.
15111         (w32_last_error): New function for use in debugging.
15113 1998-11-10  Kenichi Handa  <handa@etl.go.jp>
15115         * category.h (CATEGORY_SET): Adjusted for the change of
15116         cmpchar_component.
15117         (CATEGORY_SET): Likewise.
15119         * charset.c (cmpchar_component): New arg NOERROR.  Check
15120         composition char ID more strictly.
15121         (Fcmpchar_component): Call cmpchar_component with NOERROR arg zero.
15122         (Fcmpchar_cmp_rule): If CHARACTER should be composed relatively,
15123         return 255.
15124         (Fcompose_string): Signal error if STR contains a rule-based
15125         composition character.
15127         * charset.h (cmpchar_component): Proto-type adjusted.
15129 1998-11-09  Kenichi Handa  <handa@etl.go.jp>
15131         * charset.c (string_to_non_ascii_char): Return correct length for
15132         a charset of dimension 2 and composition character.
15134 1998-11-08  Richard Stallman  <rms@sucrose.ai.mit.edu>
15136         * keymap.c (Fsingle_key_description): Handle generic characters.
15138         * process.c (Fprocess_status): Doc fix.
15140 1998-11-06  Ken'ichi Handa  <handa@delysid.gnu.org>
15142         * charset.c (init_charset_once): Fix previous change.
15144 1998-11-06  Kenichi Handa  <handa@etl.go.jp>
15146         * charset.c (string_to_non_ascii_char): Fix previous change.
15147         (char_valid_p): Check the validity of CHARSET by CHARSET_DEFINED_P.
15149         * charset.h (SPLIT_NON_ASCII_CHAR): Check dimension of an invalid
15150         character correctly.
15151         (STRING_CHAR): Handle an invalid charater correctly.
15153 1998-11-05  Kenichi Handa  <handa@etl.go.jp>
15155         * charset.c (string_to_non_ascii_char): Fix previous change.
15157         * charset.h (MAKE_NON_ASCII_CHAR): Check validity of CHARSET.
15159         * editfns.c (Fstring_to_char): Don't return a multibyte character
15160         if STRING is a unibyte string.
15162         * indent.c (MULTIBYTE_BYTES_WIDTH): Check validity of a multibyte
15163         character.
15165         * xdisp.c (display_text_line): Check validity of a multibyte character.
15166         (display_string): Likewise.  Handle an invalid character correctly.
15168 1998-11-05  Karl Heuer  <kwzh@gnu.org>
15170         * insdel.c (Fcombine_after_change_execute): Return nil, not junk.
15171         If nothing to do, return immediately.
15172         (syms_of_insdel): Initialize combine_after_change_buffer.
15174 1998-11-05  Richard Stallman  <rms@gnu.org>
15176         * xterm.c (XTread_socket): ButtonPress clears f->mouse_moved.
15178 1998-11-04  Geoff Voelker  <voelker@cs.washington.edu>
15180         * w32term.c (w32_enable_unicode_output): Rename from
15181         w32_no_unicode_output.
15182         (w32_use_unicode_for_codepage, syms_of_w32term): Use new name
15183         and new semantics.
15185 1998-11-04  Jason Rumney  <jasonr@altavista.net>
15187         * w32fns.c (w32_list_fonts): Report an error if a frame has not
15188         been created yet.
15190         * w32term.c (dumpglyphs): Use FRAME_FONT for w32_fill_area.
15192 1998-11-04  Kenichi Handa  <handa@etl.go.jp>
15194         * charset.c (string_to_non_ascii_char): Change the check for the
15195         varidity of multibyte form.
15196         (update_charset_table): Check validity of BYTES.  Don't set
15197         bytes_by_char_head here.
15198         (init_charset_once): Set bytes_by_char_head completely.
15200         * frame.c (do_switch_frame): Cancel previous change.
15202         * print.c (print_string): Check validity of a character.
15203         (print): Likewise.
15205         * sysdep.c [nec_ews_svr4]: Extern *_sobuf.
15207         * m/ews4800.h, s/ux4800.h: New files.
15209 1998-11-03  Theodore Jump <tjump@tertius.com>
15211         * makefile.nt: Compile multiple source files when possible.
15213         * w32faces.c (Qmouse_face): Replace definition with extern decl.
15214         
15215 1998-11-03  Andrew Innes  <andrewi@delysid.gnu.org>
15217         * w32.c (stat): GetFileInformationByHandle can legitimately fail,
15218         so don't rely on it succeeding.
15220         * w32fns.c (x_to_w32_font): Specify DEFAULT_CHARSET in the w32
15221         LOGFONT struct if x font doesn't specify the charset.
15222         (x_to_w32_charset): Change >= to == when testing results of
15223         stricmp.
15225 1998-11-02  Richard Stallman  <rms@sucrose.ai.mit.edu>
15227         * fns.c (Frequire): New arg NOERROR.
15229 1998-11-02  Andrew Innes  <andrewi@harlequin.co.uk>
15231         * fileio.c (Fsubstitute_in_file_name) [DOS_NT]: Fix typo.
15233 1998-10-31  Richard Stallman  <rms@psilocin.ai.mit.edu>
15235         * xfaces.c (Qmouse_face): Replace definition with extern decl.
15236         (syms_of_xfaces): Initialization deleted.
15238         * textprop.c (Qmouse_face): Variable definition moved here.
15239         (syms_of_textprop): Initialize it.
15241         * data.c (set_internal): For built-in maybe-local vars,
15242         when BINDFLAG is set, do not mark them as local.
15244 1998-10-31  Ken'ichi Handa  <handa@delysid.gnu.org>
15246         * insdel.c (replace_range): Fix previous change.
15248 1998-10-31  Kenichi Handa  <handa@etl.go.jp>
15250         * editfns.c (Fsubst_char_in_region): Fix previous change.
15251         (Ftranslate_region): Fix previous change.
15253         * fns.c (Fbase64_decode_region): Fix previous change.
15255         * frame.c (do_switch_frame): Update minibuf_window if necessary.
15257         * insdel.c (byte_combining_error): New function.
15258         (CHECK_BYTE_COMBINING_FOR_INSERT): Call byte_combining_error.
15259         (insert_from_string_1): Set *(GPT_ADDR) to 0 before calling
15260         CHECK_BYTE_COMBINING_FOR_INSERT.
15261         (insert_from_buffer_1): Likewise.
15262         (adjust_after_replace): Check the posibility of inhibitted byte
15263         combining correctly.
15264         (replace_range): Before signaling an error for inhibitted byte
15265         combining, recover the buffer in a safe state.
15266         (del_range_2): Check the posibility of inhibitted byte combining
15267         correctly.
15269 1998-10-30  Andreas Schwab  <schwab@delysid.gnu.org>
15271         * xselect.c (Vselection_coding_system): Doc fix.
15273         * fns.c (Fbase64_encode_region): Use SET_PT_BOTH instead of SET_PT
15274         when we have both char and byte position.  Fix type clashes.
15276         * eval.c (Fsignal): Use a separate format string when passing
15277         error message string to fatal, in case it contains %'s.
15279         * editfns.c (Fchar_after): Fix type clashes.
15281         * charset.c (Fchar_bytes): Doc fix.
15282         (char_bytes): Fix returned value to match returned type.
15283         (syms_of_charset): Fix type clash in initialisation of
15284         Vauto_fill_chars.
15286 1998-10-29  Geoff Voelker  <voelker@cs.washington.edu>
15288         * w32console.c (initialize_w32_display): Use buffer coords
15289         instead of buffer size (which may be larger than the window).
15291         * fileio.c (init_fileio_once): New function.
15293         * emacs.c (main): Invoke init_fileio_once.
15295 1998-10-28  Paul Eggert  <eggert@twinsun.com>
15297         * xterm.c (XTread_socket): Check the returned value of
15298         XmbLookupString more carefully.
15300 1998-10-28  Kenichi Handa  <handa@etl.go.jp>
15302         * coding.c (DECODE_CHARACTER_ASCII): Check validity of inserted code.
15303         (DECODE_CHARACTER_DIMENSION1): Likewise.
15304         (DECODE_CHARACTER_DIMENSION2): Likewise.
15305         (decode_coding_sjis_big5): Check the 2nd byte of SJIS correctly.
15307         * editfns.c (Fsubst_char_in_region): Fix previous change.
15308         (Ftranslate_region): Fix previous change.
15310         * insdel.c (check_markers): Check if markers are at character boundry.
15311         (adjust_markers_for_insert): Fix previous change.
15312         (count_combining_before): Don't limit the check at BEGV.
15313         (count_combining_after): Don't limit the check at ZV.
15314         (CHECK_BYTE_COMBINING_FOR_INSERT): New macro.
15315         (insert_1_both): Call CHECK_BYTE_COMBINING_FOR_INSERT.
15316         (insert_from_string_1): Likewise.
15317         (insert_from_buffer_1): Likewise.
15318         (adjust_after_replace): Inhibit bytes combined across region
15319         boundary.  Update end_unchanged correctly.
15320         (replace_range): Call CHECK_BYTE_COMBINING_FOR_INSERT.  Update
15321         end_unchanged correctly.
15322         (del_range_2): Inhibit bytes combined across region boundary.
15323         Update end_unchanged correctly.
15325 1998-10-27  Geoff Voelker  <voelker@cs.washington.edu>
15327         * w32.c (check_windows_init_file): Also look in load path specified
15328         in environment.
15330         * w32console.c (Fset_message_beep): Recognize 'silent.
15331         (w32_sys_ring_bell): Do nothing for the 'silent sound.
15332         
15333         * w32fns.c (w32_color_map_lookup): Remove duplicate definition.
15335         * w32select.c (Vnext_selection_coding_system): New variable.
15336         (syms_of_w32select): DEFVAR_LISP it.
15337         (Fw32_set_clipboard_data): Use Vnext_selection_coding_system if
15338         non-nil.  Always convert multibyte strings.
15339         (Fw32_get_clipboard_data): Use Vnext_selection_coding_system if
15340         non-nil.  Always convert a string that includes non-ASCII characters.
15341         
15342 1998-10-27  Richard Stallman  <rms@psilocin.ai.mit.edu>
15344         * fns.c (Fbase64_decode_string): Doc fix.
15345         (Fbase64_decode_region, Fbase64_encode_string Fbase64_encode_region):
15346         Likewise.
15348 1998-10-27  Dave Love  <fx@gnu.org>
15350         * fns.c (Fbase64_decode_region, Fbase64_encode_region): Fix
15351         newline in doc string.
15353 1998-10-27  Kenichi Handa  <handa@etl.go.jp>
15355         * editfns.c (Fsubst_char_in_region): Correctly handle the case
15356         that byte combining before happens.
15357         (Ftranslate_region): Likewise.
15359         * insdel.c (adjust_after_replace): Correctly handle the case that
15360         both byte combining before and byte combining after happen.
15361         (replace_range): Likewise.
15363 1998-10-26  Kenichi Handa  <handa@etl.go.jp>
15365         * category.c (syms_of_category): Doc-string modified.
15367         * coding.c (code_convert_region): Kill the work buffer created by
15368         pre-write-conversion.
15370 1998-10-25  Jason Rumney  <jasonr@altavista.net>
15372         * emacs.c (main) [HAVE_NTGUI]: Invoke syms_of_fontset().
15374 1998-10-23  Kenichi Handa  <handa@etl.go.jp>
15376         * coding.c (code_convert_region): While preserving the orignal
15377         point, pay attention to the byte combining problem.
15379         * fns.c (Fbase64_decode_region): Pay attention to the byte
15380         combining problem.
15382         * insdel.c (adjust_markers_for_insert): Adjust markers by taking
15383         combined_before_bytes and combined_after_bytes into account.
15384         (count_combining_after): Handle the case that LENGTH is zero.
15385         (adjust_after_replace): Record deletion at correct buffer
15386         position.  Handle the case that LEN is zero.
15387         (replace_range): Record deletion at correct buffer position.
15388         (del_range_2): Call adjust_makers_for_replace to adjust makers for
15389         combined bytes.
15391 1998-10-21  Richard Stallman  <rms@psilocin.ai.mit.edu>
15393         * alloc.c (Fgarbage_collect): Block input around most of the function.
15394         
15395 1998-10-21  Kenichi Handa  <handa@etl.go.jp>
15397         * coding.c (setup_coding_system): Fix setting up
15398         coding->spec.ccl.valid_codes for CCL based coding system.
15399         (code_convert_region): Set point to FROM before inserting the
15400         result of pre-write-funciton.  Preserve original point.
15401         (code_convert_string): If coding->type is coding_type_ccl, do
15402         conversion even if the length of conversion region is zero.
15404         * fontset.c: Include frame.h before fontset.h.
15405         (list_fonts_func): Fix prototype.       
15407         * frame.c: Include frame.h before fontset.h.
15409         * xterm.c: Likewise.
15411 1998-10-21  Jason Rumney  <jasonr@altavista.net>
15413         * x-list-font.c (Fx_list_fonts): Access frame parameters throught
15414         general macros.   Don't call x_list_font directory, instead call a
15415         function set in list_fonts_func.
15417         * fontset.h (list_fonts_func): Fix prototype.
15419 1998-10-20  Jason Rumney  <jasonr@altavista.net>
15421         * makefile.nt (w32fns.c): Add x-list-font.c to dependancies.
15423         * w32faces.c: Update comments referring to obsolete structs.
15424         (allocate_face, copy_face, face_eql, load_font,
15425         Fpixmap_spec_p, free_frame_faces, new_computed_face,
15426         frame_update_line_height, merge_faces, compute_base_face,
15427         Fset_face_attribute_internal): Use fontset support based on xfaces.c.
15429         * w32fns.c: (Vx_pixel_size_width): New global variable.
15430         (unibyte_display_via_language_environment): New global variable.
15431         (x_set_font): Add support for setting fontsets.
15432         (Fx_create_frame): Add check_w32(). Initialize fontsets.  Fix
15433         font names to match xlfd-tight-regexp.
15434         (w32_load_font): Rewrite based on x_load_font.
15435         (x_to_w32_charset, w32_to_x_charset): Add character sets.  Use
15436         `iso8859-1' rather than `ansi'.
15437         (w32_to_x_font): Remove `-' from font name.  Remove the `-' off the
15438         end. Move charset into `charset registry' field.
15439         (enum_font_cb2): Check charsets match.  Include width in font list.
15440         (w32_list_fonts): Rewrite based on x_list_fonts.
15441         Moved from w32term.c to have access to enumfont_t struct.
15442         (Fx_list_fonts): w32 specific version eliminated.  Include
15443         `x-list-fonts.c'.
15444         (w32_get_font_info, w32_query_font, w32_find_ccl_program): New
15445         functions for fontset support - adapted from x_ equivalents.
15446         (syms_of_w32fns): New lisp variables initialised.  Function
15447         pointers for fontset.c set up.
15449         * w32term.c: Include fontset.h.  Define codepage macros. 
15450         Add ENCODE_BIG5 macro from coding.c.
15451         (w32_no_unicode_output): New variable.
15452         (w32_codepage_for_charset, w32_use_unicode_for_codepage): New
15453         functions.
15454         (BUILD_WCHAR_T, BYTE1, BYTE2): New macros.
15455         (dumpglyphs): Rewrite based on xterm.c equivalent.
15456         (x_new_font): Use functionality provided in fontset.c.
15457         (x_new_fontset): New function based on the one in xterm.c.
15458         (syms_of_w32term): Add w32-no-unicode-output flag.
15460         * w32term.h: Remove redundant font_info struct definition. 
15461         (Vx_pixel_size_width_font_regexp,
15462         unibyte_display_via_language_environment): Declare variables.
15463         (w32_list_fonts, w32_get_font_info, w32_query_font, w32_load_font): 
15464         Declare functions.
15465         (w32_output): New fields font_baseline and fontset.
15466         (FRAME_FONTSET, FRAME_W32_FONT_TABLE): New macros.
15468         * w32xfns.c: Include charset.h and fontset.h.
15470 1998-10-20  Richard Stallman  <rms@psilocin.ai.mit.edu>
15472         * syntax.c (syms_of_syntax): Fix the setup of Qscan_error.
15474 1998-10-20  Eli Zaretskii  <eliz@mescaline.gnu.org>
15476         * msdos.c (mouse_init): Reset the button press/release info of the
15477         mouse driver.
15478         (mouse_preempted): New variable.
15479         (dos_rawgetc): Don't generate mouse events if mouse is preempted.
15480         (XMenuActivate): Preempt the mouse during menu-handling loop.
15481         Release the current time slice while idling in the menu-handling
15482         loop.  Leave the loop only if the user pressed, then released the
15483         same button.  Discard all mouse events that are pending in the
15484         event queue before exiting.
15486 1998-10-19  Richard Stallman  <rms@psilocin.ai.mit.edu>
15488         * editfns.c (Fformat): Increase buffer size for floating format.
15490 1998-10-17  Kenichi Handa  <handa@etl.go.jp>
15492         * charset.c (Vauto_fill_chars, Qauto_fill_chars): New variables.
15493         (syms_of_charset): Staticpro and initialize Qauto_fill_chars.
15494         Declare auto-fill-chars as a Lisp variable and initialize it.
15496         * charset.h (Vauto_fill_chars): Extern it.
15498         * cmds.c (internal_self_insert): Check Vauto_fill_chars.
15500 1998-10-16  Kenichi Handa  <handa@etl.go.jp>
15502         * casefiddle.c (casify_object): Use make_string instead of
15503         make_specified_string to cope with byte-combining situation.
15505         * coding.c (decode_coding_iso2022): Set coding->fake_multibyte to
15506         1 when encountered with a code of the range 0x80..0x9F.
15508 1998-10-14  Eli Zaretskii  <eliz@mescaline.gnu.org>
15510         * callproc.c (Fcall_process) [MSDOS]: Use $TMPDIR instead of
15511         trying $TMP and $TEMP, since the former is always set in msdos.c.
15512         (Fcall_process_region) [DOS_NT]: When looking for a place to put
15513         the temporary files, check $TMPDIR as well.
15515 1998-10-14  Richard Stallman  <rms@psilocin.ai.mit.edu>
15517         * process.c (exec_sentinel, read_process_output): 
15518         Restore waiting_for_user_input_p after running Lisp code.
15520         * keyboard.c (parse_menu_item): Avoid initialization for Lisp_Object.
15521         (command_loop): Likewise.
15523 1998-10-14  Kenichi HANDA  <handa@etl.go.jp>
15525         * data.c (Faset): Fix previous change.
15527         * fns.c (Ffillarray): Fix previous change.
15529         * insdel.c (adjust_markers_for_combining): This function deleted.
15530         (adjust_markers_for_replace): Correctly adjust marker positions.
15531         Don't record these adjustment because they were recorded already.
15532         (combine_bytes): Don't adjust markers here.
15534 1998-10-13  Richard Stallman  <rms@psilocin.ai.mit.edu>
15536         * minibuf.c (Fdisplay_completion_list): Put on mouse-face properties.
15538 1998-10-12  Richard Stallman  <rms@psilocin.ai.mit.edu>
15540         * keyboard.c (Fclear_this_command_keys): New function.
15541         (syms_of_keyboard): defsubr it.
15543         * macros.c (Fexecute_kbd_macro): Set real_this_command.
15545 1998-10-12  Kenichi Handa  <handa@etl.go.jp>
15547         * ccl.c (CCL_DECODE_SJIS, CCL_ENCODE_SJIS): Swap the definitions.
15549         * charset.c (Fstring): Call make_string instead of
15550         make_string_from_bytes.
15551         (Ffind_charset_region): Include `composition' in the returned list
15552         if the region contains any composite characters.
15553         (Ffind_charset_string): Include `composition' in the returned list
15554         if the string contains any composite characters.
15555         (find_charset_in_str): Handle CMPCHARP arg correctly.
15557         * coding.c (shrink_decoding_region): If a charset other than ascii
15558         is initially designated to G0, don't shrink the region.
15559         (shrink_encoding_region): Likewise.
15561         * data.c (Faset): If ARRAY is a multibyte string, pay attention to
15562         byte-combining situation.
15564         * fns.c (clear_string_char_byte_cache): New function.
15565         (Ffillarray): Handle multibyte string correctly.
15567         * lisp.h (clear_string_char_byte_cache): Extern it.
15569         * xselect.c (lisp_data_to_selection_data): Call
15570         find_charset_in_str with CMPCHARP arg 0.
15571         * w16select.c (Fw16_set_clipboard_data): Likewise.
15572         * w32select.c (Fw32_set_clipboard_data): Likewise.
15574 1998-10-11  Richard Stallman  <rms@psilocin.ai.mit.edu>
15576         * keyboard.c (parse_menu_item): For top level of menu bar,
15577         accept ordinary commands, and treat them just like a keymap.
15579 1998-10-11  Richard Stallman  <rms@sucrose.ai.mit.edu>
15581         * xdisp.c (redisplay_window): Clear w->window_end_valid
15582         before running the window-scroll-functions hook, if appropriate.
15584 1998-10-10  Richard Stallman  <rms@psilocin.ai.mit.edu>
15586         * data.c (Fstring_to_number): Don't recognize floating point
15587         if base is not 10.
15589         * window.c (window_loop): New alternative CHECK_ALL_WINDOWS.
15590         (check_all_windows): New function for debugging tests.
15591         (syms_of_window): Initialize it.
15593         * window.c (Qwindow_configuration_p): New variable.
15594         (Fwindow_configuration_frame): New function.
15595         (syms_of_window): defsubr it.
15596         (Fset_window_configuration): Return t if frame is live.
15597         Use Qwindow_configuration_p.
15599         * xfns.c (check_x_display_info): Don't use selected_frame
15600         if it is dead.
15602 1998-10-09  Geoff Voelker  <voelker@cs.washington.edu>
15604         * w32fns.c (x_create_bitmap_from_file): Skip special files.
15606 1998-10-08  Kenichi Handa  <handa@etl.go.jp>
15608         * buffer.h (inhibit_modification_hooks): Extern it.
15610         * buffer.c (inhibit_modification_hooks): New variable.
15611         (init_buffer_once): Initialize inhibit_modification_hooks to 0.
15613         * charset.c (invalid_character): Prepend `0' to octal
15614         representation.  Give error sufficient args.
15616         * coding.c (code_convert_region): Set inhibit_modification_hooks
15617         to 1 before calling Fset_text_properties.
15619         * insdel.c (signal_before_change): If inhibit_modification_hooks
15620         is nonzero, do nothing.
15621         (signal_after_change): Likewise.
15623 1998-10-08  Emilio Lopes  <Emilio.Lopes@Physik.TU-Muenchen.DE>
15625         * process.c: Doc fixes.
15627 1998-10-08  Richard Stallman  <rms@sucrose.ai.mit.edu>
15629         * syntax.c (scan_lists): Bring FROM back into range BEGV...ZV.
15631 1998-10-07  Geoff Voelker  <voelker@cs.washington.edu>
15633         * w32.c (init_ntproc): Check for Windows init file.
15634         (term_ntproc): Do not check for it here.
15636 1998-09-28  Kenichi Handa  <handa@etl.go.jp>
15638         * coding.c (check_composing_code): Fix previous change.  Now it
15639         alwasy returns 0 or -1.
15640         (decode_coding_iso2022): Adjusted for the above change.
15641         (encode_coding_iso2022): When encoding the last block, flush out
15642         tailing garbage bytes.
15643         (setup_coding_system): Delete unnecessary code.
15644         (shrink_decoding_region): Check translation table.  If ASCII
15645         should be translated, give up shrinking.
15646         (shrink_encoding_region): Likewise.
15647         (SHRINK_CONVERSION_REGION_THRESHHOLD): New macro.
15648         (SHRINK_CONVERSION_REGION): New macro.
15649         (code_convert_region): Call SHRINK_CONVERSION_REGION.  Delete text
15650         properties here.
15651         (code_convert_region): In the case of encoding, always calulate
15652         correct character number.
15653         (code_convert_string): Call SHRINK_CONVERSION_REGION.
15654         (code_convert_region1): Don't delete text properties here.
15656         * insdel.c (adjust_after_replace): Don't delete text properties here.
15658         * term.c (encode_terminal_code): Handle raw 8-bit codes correctly.
15660 1998-09-27  Richard Stallman  <rms@psilocin.ai.mit.edu>
15662         * emacs.c (sort_args): Fill extra space with NULL ptrs.
15664 1998-09-26  Kenichi Handa  <handa@etl.go.jp>
15666         * coding.h (struct coding_system): New member composed_chars.
15668         * coding.c (check_composing_code): If the current composing
15669         sequence doesn't end properly, return -1.
15670         (DECODE_CHARACTER_ASCII): Update coding->composed_chars.
15671         (DECODE_CHARACTER_DIMENSION1): Likewise.
15672         (decode_coding_iso2022): Check validity of a composing sequence.
15673         (code_convert_string): If the length of text to be converted is
15674         shrunk to zero, don't perform code conversion.
15675         (shrink_decoding_region): Fix previous change.
15677         * editfns.c (Fformat): Check format control characters.
15679 1998-09-25  Kenichi Handa  <handa@etl.go.jp>
15681         * coding.c (decode_eol): While decoding DOS-like eol, handle a
15682         single CR code correctly.
15683         (shrink_decoding_region) <CODING_CATEGORY_IDX_ISO_7 or
15684         CODING_CATEGORY_IDX_ISO_7_TIGHT>: Skip also 8-bit codes.
15686 1998-09-23  Geoff Voelker  <voelker@cs.washington.edu>
15688         * w32fns.c (w32_color_map_lookup): New function.
15689         (x_to_w32_color): Approximate colors ending in numbers if necessary.
15691 1998-09-22  Kenichi Handa  <handa@etl.go.jp>
15693         * ccl.c (ccl_driver): Report correct CCL program counter on error.
15695         * xmenu.c (single_submenu) [! HAVE_MULTILINGUAL_MENU]: Make
15696         strings unibyte.
15697         (xmenu_show) [! HAVE_MULTILINGUAL_MENU]: Likewise.
15699 1998-09-22  Kenichi Handa  <handa@etl.go.jp>
15701         * callint.c (Fcall_interactively): Don't use input method when
15702         reading a character in the case of `c' code letter.
15704 1998-09-21  Dave Love  <fx@gnu.org>
15706         * editfns.c (Fsave_restriction): Doc fix.
15708 1998-09-21  Richard Stallman  <rms@gnu.org>
15710         * lread.c (build_load_history): Do add to Vload_history
15711         even when dumping Emacs.
15713 1998-09-18  Kenichi Handa  <handa@etl.go.jp>
15715         * ccl.c (CCL_WRITE_CHAR): Don't use bcopy.
15716         (ccl_driver): If BUFFER-MAGNIFICATION of the CCL program is 0,
15717         cause error if the program is going to output some bytes.  When
15718         outputing a string to notify an error, check the case that
15719         DST_BYTES is zero.
15721         * coding.h (CODING_FINISH_INTERRUPT): New macro. 
15723         * coding.c (ccl_coding_driver): If ccl_driver is interrupted by a
15724         user or the CCL program executed an invalid command, return
15725         CODING_FINISH_INTERRUPT.
15726         (code_convert_region): Pay attention to the converters return
15727         value CODING_FINISH_NORMAL and CODING_FINISH_INTERRUPT.
15729 1998-09-16  Kenichi Handa  <handa@etl.go.jp>
15731         * coding.c (code_convert_region): Update beg_unchanged and
15732         end_unchanged after we delete the source text.
15734         * insdel.c (adjust_markers_for_replace): Don't adjust a byte
15735         position if it is FROM.
15736         (adjust_markers_for_combining): New function.
15737         (combine_bytes): Call adjust_markers_for_combining instead of
15738         adjust_markers_for_replace.
15739         (adjust_after_replace): Record deletion of combining after bytes
15740         with the correct position.
15741         (replace_range): Likewise.  Record the actual deletion after
15742         recoding deletions of combining bytes.
15744         * xdisp.c (message_log_check_duplicate): Count byte length of the
15745         latest message correctly.
15747 1998-09-12  Richard Stallman  <rms@gnu.org>
15749         * xdisp.c (redisplay_internal): Use TEMP_SET_PT_BOTH
15750         instead of SET_PT_BOTH.
15751         (try_window_id, display_text_line): Likewise.
15753 1998-09-12  Karl Heuer  <kwzh@gnu.org>
15755         * data.c (Fmake_local_variable): Doc fix.
15757 1998-09-10  Dave Love  <fx@gnu.org>
15759         * print.c (Fwith_output_to_temp_buffer): Doc fix.
15761 1998-09-10  Richard Stallman  <rms@gnu.org>
15763         * s/irix6-0.h (TIOCSIGSEND): Add #undef.
15764         (bcopy, bcmp, bzero): Add #undef.
15766         * keyboard.c (command_loop_1): When switching to selected window's bfr,
15767         first exit if selected frame is dead (no live frames remain).
15768         (read_key_sequence): Likewise.
15770 1998-09-10  Karl Heuer  <kwzh@gnu.org>
15772         * emacs.c (main): Mention --display and --eval in help.
15774 1998-09-07  Paul Eggert  <eggert@twinsun.com>
15776         * editfns.c (emacs_memftime): New function.
15777         (Fformat_time_string): Use it to handle null bytes in formats
15778         correctly.
15780 1998-09-08  Kenichi Handa  <handa@etl.go.jp>
15782         * charset.c (Ffind_charset_region): Optimization for unibyte buffer.
15783         (Ffind_charset_string): For unibyte string, return (ascii).
15785         * editfns.c (Fsubst_char_in_region): Call replace_range with the
15786         arg MARKERS 1.
15788         * insdel.c (adjust_after_replace): Don't add combining bytes to
15789         the args given to adjust_point.  Handle correctly the case that
15790         there are both before and after combining bytes.
15791         (replace_range): Likewise.
15793 1998-09-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
15795         * fns.c (base64_decode_1, base64_encode_1): New functions.
15796         (Fbase64_decode_string, Fbase64_encode_string): New functions.
15797         (Fbase64_decode_region, Fbase64_encode_region): New functions.
15799 1998-09-07  Karl Heuer  <kwzh@gnu.org>
15801         * eval.c (error): After enlarging buffer, write to it, not to buf.
15803         * fns.c (Fwidget_put): Return VALUE instead of garbage.
15805 1998-09-07  Kenichi Handa  <handa@etl.go.jp>
15807         * charset.h (STRING_CHAR_AND_LENGTH): Return correct value in
15808         ACTUAL_LEN even if LEN is too short to have a valid multibyte form.
15809         (STRING_CHAR_AND_CHAR_LENGTH): Likewise.
15811         * coding.c (ccl_coding_driver): Always calculate correct mulibyte
15812         chars in produced byte sequence.
15813         (Ffind_operation_coding_system): Doc-string fixed.
15815         * insdel.c (count_combining_after): Check also preceding bytes at
15816         POS if all characters in STRING are not character head.
15818 1998-09-06  Paul Eggert  <eggert@twinsun.com>
15820         * editfns.c (Fformat_time_string, Fdecode_time, Fcurrent_time_zone):
15821         Don't assume that localtime and gmtime return non-NULL.
15823 1998-09-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
15825         * fns.c (Fbase64_decode_string, Fbase64_encode_string,
15826         base64_decode_1, Fbase64_decode_region, Fbase64_encode_region):
15827         New functions.
15829 1998-09-06  Richard Stallman  <rms@gnu.org>
15831         * editfns.c (Fformat): Detect incomplete format spec at string's end.
15833         * lread.c (Fload): Handle case where openp finds a magic file
15834         but it has no `load' handler or that handler calls `load'.
15835         If FOUND != FILE, find FOUND's handler even if inhibited for FILE.
15837 1998-09-04  Dave Love  <fx@gnu.org>
15839         * buffer.c (enable-multibyte-characters): Doc fix.
15841 1998-09-02  Geoff Voelker  <voelker@cs.washington.edu>
15843         * w32heap.c (allocate_heap): Define NTHEAP_PROBE_BASE by default.
15845 1998-09-01  Kenichi Handa  <handa@etl.go.jp>
15847         * editfns.c (Ftranspose_regions): Use BYTE_POS_ADDR to get an
15848         address in buffer from byte-position.
15850 1998-09-01  Eli Zaretskii  <eliz@delysid.gnu.org>
15852         * w16select.c (Vnext_selection_coding_system): New variable.
15853         (syms_of_win16select): DEFVAR_LISP it.  No need to staticpro
15854         Vselection_coding_system.
15855         (Fw16_set_clipboard_data): Always convert multibyte strings.  Use
15856         Vnext_selection_coding_system if non-nil.
15857         (Fw16_get_clipboard_data): Always convert a string that includes
15858         non-ASCII characters. Use Vnext_selection_coding_system if
15859         non-nil.
15861 1998-08-31  Andrew Innes  <andrewi@harlequin.co.uk>
15863         * w32fns.c (w32_wnd_proc): Always zero button_state when releasing
15864         mouse capture.
15866 1998-08-31  Kenichi Handa  <handa@etl.go.jp>
15868         * xterm.c (x_load_font): If SIZE is 0, don't use a name
15869         x_list_font returns.
15871 1998-08-31  Paul Eggert  <eggert@twinsun.com>
15873         * lread.c (read1): Don't assume that atof ("-0.0") yields +0.0.
15874         Handle leading '-' uniformly for zeros, infinities, and NaNs.
15876 1998-08-31  Eli Zaretskii  <eliz@delysid.gnu.org>
15878         * msdos.c (IT_cmgoto): When tracking echo area messages with the
15879         cursor, save and restore previous cursor position in the
15880         minibuffer.
15882 1998-08-31  Kenichi Handa  <handa@etl.go.jp>
15884         * charset.c (unibyte_char_to_multibyte):
15885         Vnonacii_translation_table will convert a 7-bit charcater.
15886         (multibyte_char_to_unibyte): Handle the case that
15887         Vnonacii_translation_table converts a multibyte charcater to a
15888         unibyte charcter of less than 128.
15889         (init_charset_once): Initialize nonascii_insert_offset and
15890         Vnonacii_translation_table.
15892         * coding.c (decode_coding): Even if SRC_BYTES is zero, try
15893         processing if CODING requires flushing.
15894         (encode_coding): Likewise.
15895         (code_convert_region): Likewise.
15896         (code_convert_string): Likewise.
15898         * fns.c (concat): If Vnonascii_translation_table is non-nil, try
15899         to convert a character less than 160 to multibyte.
15900         * insdel.c (copy_text): Likewise.
15901         (count_size_as_multibyte): Likewise.
15902         * xterm.c (dumpglyphs): Likewise.
15904 1998-08-29  Paul Eggert  <eggert@twinsun.com>
15906         * data.c (arith_driver, float_arith_driver): Compute (- x) by
15907         using negation, not subtraction; this makes a difference with
15908         IEEE floating point arithmetic (and also if integer arithmetic
15909         is ones' complement or signed-magnitude!).
15911 1998-08-29  Karl Heuer  <kwzh@gnu.org>
15913         * xfns.c (x_create_bitmap_from_file): Fail immediately if magic.
15915 1998-08-28  Ken'ichi Handa  <handa@delysid.gnu.org>
15917         * charset.c (Fchar_bytes): Add \n\ in doc-string.
15919 1998-08-28  Paul Eggert  <eggert@twinsun.com>
15921         * s/sol2-4.h (NOT_USING_MOTIF): New macro.
15922         (LD_SWITCH_SYSTEM_TEMACS): Put /usr/dt/lib in the link library
15923         path only if we're not building with Motif.
15925 1998-08-28  Kenichi Handa  <handa@etl.go.jp>
15927         * insdel.c (adjust_after_replace): Fix the code to record undo
15928         information for the case that `before combining' happens.  Remove
15929         text properties which are added to the new text by
15930         offset_intervals.
15932         * coding.c (code_convert_region1): Remove all text properties of
15933         the region.
15935 1998-08-28  Kenichi Handa  <handa@etl.go.jp>
15937         * charset.h (CHAR_BYTES): New macro.
15939         * charset.c (Fchar_bytes): Now always return 1.
15940         (char_bytes): New function.
15942         * editfns.c (Fposition_bytes): If the arg POSITION is out of
15943         range, return nil.
15944         (Fbyte_to_position): If the arg BYTEPOS is out of range, return
15945         nil.
15947         * data.c (Faset): Use macro CHAR_BYTES instead of Fchar_bytes.
15948         * fns.c (concat): Likewise.
15949         * insdel.c (count_size_as_multibyte): Likewise.
15950         * xdisp.c (message_dolog): Likewise.
15952 1998-08-27  Kenichi Handa  <handa@etl.go.jp>
15954         * coding.c (detect_coding_iso2022): Handle ESC N and ESC O
15955         correctly.  They are for SS2 and SS3 respectively.
15956         (ccl_coding_driver): Fix previous change.
15958 1998-08-26  Paul Eggert  <eggert@twinsun.com>
15960         * xterm.c (fixup_locale): New function.  For now, it resets
15961         LC_TIME to "C" (reverting the 1998-08-07 change), and also
15962         resets LC_MESSAGES to "C".
15963         (x_term_init): Use it to fix up the locale after setlocale
15964         (LC_ALL, "").
15966 1998-08-26  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
15968         * xterm.c (x_calc_absolute_position): Cast argument to XFree, in
15969         case it was prototyped the old way.
15971 1998-08-25  Kenichi Handa  <handa@etl.go.jp>
15973         * xterm.c (x_list_fonts): Work-around for the case XGetAtomName
15974         returns a null string.  This happens when dxpc 3.7 is being used.
15976 1998-08-24  Andreas Schwab  <schwab@delysid.gnu.org>
15978         * keyboard.c (input-method-previous-message): Doc fix.
15980         * coding.c (file-coding-system-alist,
15981         select-safe-coding-system-function): Doc fix.
15983 1998-08-23  Kenichi HANDA  <handa@etl.go.jp>
15985         * coding.c (detect_coding_iso2022): Don't check the byte length of
15986         succeeding codes (0xa0..0xFF) if the codes follows single shift
15987         code (SS2 or SS3).
15989 1998-08-21  Ken'ichi Handa  <handa@delysid.gnu.org>
15991         * coding.c (detect_coding_system): If detect_eol_type returns
15992         CODING_EOL_INCONSISTENT, set eol_type to CODING_EOL_UNDECIDED
15993         correctly.
15995 See ChangeLog.7 for earlier changes.