]> code.delx.au - gnu-emacs/blob - src/ChangeLog
(xstrdup): Moved here from xfaces.c.
[gnu-emacs] / src / ChangeLog
1 2000-03-29 Ken Raeburn <raeburn@gnu.org>
2
3 * scroll.c (CHECK_BOUNDS): Renamed from CHECK.
4
5 * emacs.c (main): Fix sense of no-loadup test.
6
7 * config.in (ENABLE_CHECKING): Undef.
8
9 * lisp.h (struct interval): Replace "parent" field with a union of
10 interval pointer and Lisp_Object; add new bitfield to use as
11 discriminant. Change other flag fields to bitfields.
12 (CHECK): New macro for consistency checking. If ENABLE_CHECKING
13 is defined and the supplied test fails, print a message and
14 abort.
15 (eassert): New macro. Use CHECK to provide an assert-like
16 facility.
17
18 * intervals.h (NULL_INTERVAL_P): Now applies only to real interval
19 pointers; abort if the value looks like a lisp object.
20 (NULL_INTERVAL_P, NULL_PARENT, HAS_PARENT, HAS_OBJECT, SET_PARENT,
21 SET_OBJECT, INTERVAL_PARENT, GET_INTERVAL_OBJECT, COPY_PARENT):
22 Modify for new interval parent definition.
23
24 * alloc.c (mark_interval_tree, MARK_INTERVAL_TREE,
25 UNMARK_BALANCE_INTERVALS): Update references that need an
26 addressable lisp object in the interval structure.
27 (die): New function.
28 (suppress_checking): New variable.
29
30 * intervals.c (interval_start_pos): Just return 0 if there's no
31 parent object.
32
33 2000-03-29 Gerd Moellmann <gerd@gnu.org>
34
35 * lread.c (read1): Accept `.' (period) as symbol start like in CL
36 and earlier Emacs versions.
37
38 * keyboard.c (Ftop_level): Cancel busy-cursor.
39
40 * eval.c (call_debugger): Cancel busy-cursor.
41
42 2000-03-29 Kenichi Handa <handa@etl.go.jp>
43
44 * search.c (Freplace_match): Adjust multibyteness of the current
45 buffer and NEWTEXT. Free allocated memory before signaling an
46 error.
47
48 2000-03-28 Stefan Monnier <monnier@cs.yale.edu>
49
50 * regex.c (analyse_first): New function obtained by ripping out most
51 of re_compile_fastmap and generalizing it a little bit so that it
52 can also just return whether a given (sub)pattern can match the empty
53 string or not.
54 (regex_compile): Use `analyse_first' to decide whether the loop-check
55 needs to be done or not for *, +, *? and +? (the loop check is costly
56 for non-greedy repetition).
57 (re_compile_fastmap): Delegate the actual work to `analyse_first'.
58
59 2000-03-28 Dave Love <fx@gnu.org>
60
61 * s/gnu-linux.h (GC_SETJMP_WORKS): Define for i386, sparc, m68k,
62 alpha.
63
64 * alloc.c: Include stdio.h. Test STDC_HEADERS, not __STDC__.
65
66 2000-03-27 Stefan Monnier <monnier@cs.yale.edu>
67
68 * regex.c (REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as
69 an expression.
70 (enum re_opcode_t): Update description of succeed_n.
71 (PATFETCH): Always define.
72 (regex_compile): Use lookahead rather than PATUNFETCH (for repetition
73 operators, char classes, shy-groups and intervals).
74 Optimize special cases of intervals so as to only use succeed_n and
75 jump_n when really needed.
76 (re_compile_fastmap): Simplify handling of jump_n and succeed_n now
77 that we don't have to handle the special cases any more.
78 Simplify on_failure_jump handling as well.
79
80 2000-03-28 Jason Rumney <jasonr@gnu.org>
81
82 * lread.c (Fload): Move safe_p definition to above #ifdef DOS_NT.
83
84 2000-03-27 Gerd Moellmann <gerd@gnu.org>
85
86 * s/freebsd.h (GC_SETJMP_WORKS): Define.
87
88 * s/msdos.h (GC_SETJMP_WORKS): Define.
89
90 * alloc.c (mark_maybe_object): New function.
91 (mark_memory): Use it.
92 (SETJMP_WILL_LIKELY_WORK, SETJMP_WILL_NOT_WORK): New macros.
93 (setjmp_tested_p, longjmp_done): New variables.
94 (test_setjmp): New function.
95 (mark_stack) [!GC_SETJMP_WORKS]: Call test_setjmp.
96 (init_alloc): Initialize setjmp_tested_p and longjmp_done.
97
98 * xdisp.c (face_before_or_after_it_pos): Pass multibyteness
99 to DEC_TEXT_POS and INC_TEXT_POS.
100
101 * dispnew.c (direct_output_for_insert): Use DEC_TEXT_POS
102 with parameter MULTIBYTE_P.
103
104 * dispextern.h (INC_TEXT_POS, DEC_TEXT_POS): Add parameter
105 MULTIBYTE_P.
106
107 * editfns.c (Fsubst_char_in_region): Don't use INC_POS in unibyte
108 buffers because it looks for multibyte character byte sequences
109 which don't exist in unibyte text.
110
111 * xterm.h (x_specified_cursor_type, x_copy_color): Add prototypes.
112
113 * xfaces.c (register_color, unregister_color, unregister_colors)
114 [DEBUG_X_COLORS]: New functions.
115 (x_free_colors) [DEBUG_X_COLORS]: Unregister colors.
116
117 * xfns.c (x_set_cursor_color): Get color reference counts right.
118
119 * xterm.c (x_copy_color): New function.
120 (x_alloc_nearest_color) [DEBUG_X_COLORS]: Call register_color.
121
122 * buffer.h (MAX_PER_BUFFER_VARS): Renamed from MAX_BUFFER_LOCAL_VARS.
123 (PER_BUFFER_VAR_OFFSET): Renamed from BUFFER_LOCAL_VAR_OFFSET.
124 (PER_BUFFER_VAR_IDX): Renamed from BUFFER_LOCAL_VAR_IDX.
125 (PER_BUFFER_VALUE_P): Renamed from BUFFER_HAS_LOCAL_VALUE_P.
126 (SET_PER_BUFFER_VALUE_P): Renamed from SET_BUFFER_HAS_LOCAL_VALUE_P.
127 (PER_BUFFER_IDX): Renamed from BUFFER_LOCAL_IDX.
128 (PER_BUFFER_DEFAULT): Renamed from BUFFER_LOCAL_DEFAULT_VALUE.
129 (PER_BUFFER_VALUE): Renamed from BUFFER_LOCAL_VALUE.
130 (PER_BUFFER_SYMBOL): Renamed from BUFFER_LOCAL_SYMBOL.
131 (PER_BUFFER_TYPE): Renamed from BUFFER_LOCAL_TYPE.
132
133 * category.c, data.c, syntax.c, print.c, lread.c: Use new macro
134 names for handling per-buffer variables.
135
136 * buffer.c (buffer_permanent_local_flags): Use MAX_PER_BUFFER_VARS
137 instead of MAX_BUFFER_LOCAL_VARS.
138 (last_per_buffer_idx): Renamed from max_buffer_local_idx.
139
140 * xfaces.c (lookup_face): Don't assert FACE_SUITABLE_FOR_CHAR_P.
141
142 * xfns.c (x_specified_cursor_type): New function.
143 (x_set_cursor_type): Use it.
144
145 * buffer.h (struct buffer): Add cursor_type.
146
147 2000-03-26 Stefan Monnier <monnier@cs.yale.edu>
148
149 * regex.c (enum re_opcode_t): New opcode on_failure_jump_nastyloop.
150 (print_partial_compiled_pattern, re_compile_fastmap): Handle new
151 opcode.
152 (regex_compile): Use on_failure_jump_nastyloop for non-greedy loops.
153 (re_match_2_internal): Add code for on_failure_jump_nastyloop when
154 executing it as well as when popping it off the stack to find infinite
155 loops in non-greedy repetition operators.
156
157 2000-03-26 Gerd Moellmann <gerd@gnu.org>
158
159 * doc.c (Qfunction_documentation): New variable.
160 (syms_of_doc): Initialize Qfunction_documentation.
161 (Fdocumentation): If FUNCTION is a symbol with non-nil
162 `function-documentation' property, return a documentation derived
163 from that.
164
165 * buffer.c (syms_of_buffer): Add default-cursor-type.
166 (init_buffer_once): Don't let cursor_type have a local value
167 in every buffer.
168
169 * xterm.c (x_display_and_set_cursor): Choose cursor depending
170 on buffer-local value of cursor_type.
171 (x_draw_bar_cursor): Add parameter WIDTH.
172
173 * buffer.c (reset_buffer): Initialize buffer's cursor_type.
174 (init_buffer_once): Set default cursor_type value to t.
175 Mark cursor_type as local everywhere.
176 (syms_of_buffer): New per-buffer variable cursor-type.
177
178 * buffer.h (struct buffer): Remove member local_var_flags,
179 add local_flags.
180 (MAX_BUFFER_LOCAL_VARS): New macro.
181 (BUFFER_LOCAL_VAR_OFFSET, BUFFER_LOCAL_VAR_IDX)
182 (BUFFER_HAS_LOCAL_VALUE_P, SET_BUFFER_HAS_LOCAL_VALUE_P)
183 (BUFFER_LOCAL_IDX, BUFFER_LOCAL_DEFAULT_VALUE, BUFFER_LOCAL_VALUE)
184 (BUFFER_LOCAL_SYMBOL, BUFFER_LOCAL_TYPE): New macros.
185
186 * print.c (print_object): Use new macros for per-buffer
187 variables.
188
189 * category.c (Fset_category_table): Use new macros for per-buffer
190 variables.
191
192 * buffer.c (buffer_permanent_local_flags): Make a char array.
193 (max_buffer_local_idx): New variable.
194 (reset_buffer_local_variables, Fbuffer_local_variables): Rewritten
195 for new handling of per-buffer variables.
196 (buffer_slot_type_mismatch): Use new macros for per-buffer vars.
197 (init_buffer_once): Initialize per-buffer vars differently.
198 Set max_buffer_local_idx.
199
200 * syntax.c (Fset_syntax_table): Use new macros for per-buffer
201 variables.
202
203 * lread.c (defvar_per_buffer): Use new macros for per-buffer
204 variables.
205
206 * data.c (do_symval_forwarding, store_symval_forwarding)
207 (find_symbol_value, set_internal, default_value, Fset_default)
208 (Fkill_local_variable, Flocal_variable_p): Use new macros for
209 per-buffer variables.
210
211 * Makefile.in (bootstrap-emacs): Use `mv -f' instead of `mv'.
212
213 2000-03-24 Gerd Moellmann <gerd@gnu.org>
214
215 * xterm.c (x_term_init): Unblock input around call1 of
216 Qvendor_specific_keysyms.
217
218 * syntax.c (open_paren_in_column_0_is_defun_start): New variable.
219 (find_defun_start): Consider an open parenthesis in column 0
220 a defun start only if open_paren_in_column_0_is_defun_start is set.
221 (syms_of_syntax): New variable open-paren-in-column-0-is-defun-start.
222
223 2000-03-24 Stefan Monnier <monnier@cs.yale.edu>
224
225 * eval.c (Fautoload): Add entry in load-history (if after dump).
226 * lread.c (load-history): Update docstring.
227
228 2000-03-24 Gerd Moellmann <gerd@gnu.org>
229
230 * indent.c (Fvertical_motion): Always use the current buffer.
231 Temporarily change the window's buffer, if necessary.
232
233 2000-03-23 Gerd Moellmann <gerd@gnu.org>
234
235 * xterm.c (fast_find_position): Make sure not to consider rows
236 not visible in the window.
237
238 2000-03-22 Stefan Monnier <monnier@cs.yale.edu>
239
240 * regex.c (enum syntaxcode): Provide default for non-Emacs.
241 (re_compile_fastmap, re_match_2_internal): Undo Dave's previous fix.
242
243 2000-03-22 Jason Rumney <jasonr@gnu.org>
244
245 * w32menu.c (single_submenu): Set help string to NULL if none.
246 (w32_menu_show): Set help string correctly.
247 (add-menu-item): Set help string in MIIM_DATA for menu item.
248 Load SetMenuItemInfoA explicitly.
249 (w32_menu_display_help): New function.
250
251 * w32fns.c (w32_wnd_proc): Handle WM_MENUSELECT message.
252 (QCdata): Moved to xdisp.c.
253
254 * w32term.c (w32_read_socket): Handle WM_MENUSELECT message.
255 (Vw32_charset_to_codepage_alist): Removed.
256 (Vw32_charset_info_alist): New variable.
257 (Qw32_charset_[ansi, default, symbol, shiftjis, hangul, gb2312,
258 chinesebig5, oem, easteurope, turkish, baltic, russian, arabic,
259 greek, hebrew, thai, johab, mac, unicode]): New symbols.
260 (x_produce_glyphs): Remove out of date #ifdef 0'd section. Replace
261 with TODO comment.
262 (w32_codepage_for_font): Use Vw32_charset_info_alist.
263 (syms_of_w32term): Remove Vw32_charset_to_codepage_alist.
264 Define Vw32_charset_info_alist and w32_charset symbols.
265
266 2000-03-22 Jason Rumney <jasonr@gnu.org>
267
268 * makefile.nt (w32bdf.obj): Update dependencies.
269
270 * w32bdf.c: Include frame.h and dispextern.h before fontset.h.
271
272 * w32fns.c: Include fontset.h after dispextern.h.
273 (Fx_create_frame): Do not create fontset.
274 (w32_load_system_font): Doc fix.
275 (Fx_close_connection): Free full_name if it is not shared.
276
277 * w32term.c: Include fontset.h after dispextern.h.
278 (x_get_glyph_face_and_encoding): New parameter two_byte_p. Callers
279 updated.
280 (w32_per_char_metric): If PCM is invalid, delete and return NULL.
281 (x_get_char_and_face_encoding): Use FACE_FOR_CHAR to get face_id.
282 (w32_font_is_double_byte): New function, needs body.
283 (x_append_glyph): Set glyph->glyph_not_available_p.
284 (x_produce_glyphs): Set it->glyph_not_available_p. Don't set
285 it->charset. If it->multibyte_p is zero and it->c is a multibyte
286 character, convert it to a unibyte character.
287 (struct glyph_string): Delete member `charset'.
288 (W32_TEXTOUT): Temporarily remove charset_dim until another way of
289 calculating it is found.
290 (x_set_mouse_face_gc): Call FACE_FOR_CHAR to get face_id. Handle
291 the case that per char metric is not available correctly.
292 (x_fill_glyph_string): Handle the case that the specific glyph is
293 not available correctly.
294 (BUILD_CHAR_GLYPH_STRINGS): Don't set s->charset.
295 (BUILD_COMPOSITE_GLYPH_STRING): Likewise.
296 (x_new_font): Call FS_LOAD_FONT, not fs_load_font.
297 (x_new_fontset): Call fontset_ascii to get ASCII font name of the
298 fontset. Don't call FS_LOAD_FONT.
299
300 2000-03-22 Ken Raeburn <raeburn@gnu.org>
301
302 * intervals.h (NULL_INTERVAL): Cast to INTERVAL type.
303 (INT_LISPLIKE): New macro.
304 (NULL_INTERVAL_P): Use it.
305 (INTERVAL_HAS_PARENT, INTERVAL_HAS_OBJECT, SET_INTERVAL_PARENT,
306 SET_INTERVAL_OBJECT, INTERVAL_PARENT, COPY_INTERVAL_PARENT,
307 GET_INTERVAL_OBJECT, INTERVAL_PARENT_OR_NULL): New macros.
308
309 * alloc.c (make_interval, gc_sweep): Use new macros; eliminate all
310 explicit references to "parent" field of struct interval and
311 associated unclean type conversions.
312 * intervals.c (create_root_interval, root_interval, rotate_right,
313 rotate_left, balance_possible_root_interval, split_interval_right,
314 split_interval_left, interval_start_pos, find_interval,
315 next_interval, previous_interval, update_interval,
316 adjust_intervals_for_insertion, delete_node, delete_interval,
317 adjust_intervals_for_deletion, merge_interval_right,
318 merge_interval_left, reproduce_tree, graft_intervals_into_buffer,
319 copy_intervals_to_string): Likewise.
320 * intervals.h (AM_LEFT_CHILD, AM_RIGHT_CHILD, RESET_INTERVAL):
321 Likewise.
322 * syntax.c (update_syntax_table): Likewise.
323
324 * intervals.c (reproduce_tree_obj): New function, like
325 reproduce_tree but takes a Lisp_Object for the parent. Declare
326 with prototype.
327 (graft_intervals_into_buffer): Use it when appropriate.
328 (reproduce_tree): Declare with prototype.
329 (balance_possible_root_interval): Check that the parent is a lisp
330 object before trying to examine its type.
331
332 2000-03-22 Gerd Moellmann <gerd@gnu.org>
333
334 * xfaces.c (lface_same_font_attributes_p): Compare font attributes
335 as strings only if both are known to be strings.
336
337 * s/openbsd.h (LIBS_TERMCAP): Undef.
338
339 2000-03-21 Stefan Monnier <monnier@cs.yale.edu>
340
341 * regex.c (CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
342 definitions for non-Emacs compilation.
343 (enum re_opcode_t): Remove (not)wordchar and move (not)syntaxspec
344 outside of `#ifdef emacs'.
345 (print_partial_compiled_pattern): Update.
346 (regex_compile): Use (not)syntaxspec(Sword) instead of (not)wordchar.
347 (re_compile_fastmap): Merge handling of charset and charset_not (for
348 emacs and non-emacs compilation as well).
349 Similarly for (not)categoryspec and (not)syntaxspec.
350 Don't use the fastmap when reaching `anychar' since the added
351 complexity is not justified.
352 (re_match_2_internal): Merge (not)wordchar (emacs and non-emacs)
353 and (not)syntaxspec. Merge (not)categoryspec.
354
355 2000-03-22 Kenichi Handa <handa@etl.go.jp>
356
357 * dispextern.h [!HAVE_WINDOW_SYSTEM] (FACE_SUITABLE_FOR_CHAR_P,
358 FACE_FOR_CHAR): Define them differently for the configuration of
359 --without-x.
360
361 2000-03-21 Dave Love <fx@gnu.org>
362
363 * fontset.c (Fset_fontset_font, Ffontset_font): Fix newlines in
364 doc string.
365
366 2000-03-21 Gerd Moellmann <gerd@gnu.org>
367
368 * xfaces.c (check_lface_attrs) [GLYPH_DEBUG]: Fix syntax error.
369 (lface_fully_specified_p): Don't check contents of
370 LFACE_FONT_INDEX because that attribute is optional.
371 (realize_x_face): Remove now unwarranted xassert.
372
373 2000-03-21 Kenichi HANDA <handa@etl.go.jp>
374
375 The following changes are to make font selection based on
376 characters, not charset. In addition, they recover fontset
377 facilities while utilizing the new font selection mechanism.
378
379 * Makefile.in (fontset.o): Depend on dispextern.h.
380
381 * alloc.c (mark_face_cache): Don't mark face->registry.
382
383 * dispextern.h (struct glyph): New member glyph_not_available_p.
384 Use 22 bits for face_id.
385 (enum lface_attribute_index): Add LFACE_FONT_INDEX.
386 (struct face): Delete member registry, new member ascii_face.
387 (FACE_SUITABLE_FOR_CHAR_P): Renamed from
388 FACE_SUITABLE_FOR_CHARSET_P. Caller changed.
389 (FACE_FOR_CHAR): Renamed from FACE_FOR_CHARSET. Caller changed.
390 (struct it): Delete member charset, new member
391 glyph_not_available_p.
392
393 * fontset.h (FONT_NOT_OPENED, FONT_NOT_FOUND): Macros removed.
394 (struct fontset_info, struct fontset_data): Structs removed.
395 (allloc_fontset_data, free_fontset_data, fs_regiser_fontset,
396 Vglobale_fontset_alist, font_idx_temp): Externs removed.
397 (fs_load_font, fs_query_fontset): Adjusted for new argument.
398 (fs_free_face_fontset, fontset_font_pattern,
399 face_suitable_for_char_p, face_for_char,
400 make_fontset_for_ascii_face): Extern them.
401 (FS_LOAD_FONT): Adjusted for the change of fontset implementation.
402 (FS_LOAD_FACE_FONT): New macro.
403
404 * fontset.c: All codes rewritten or adjusted for the change of
405 fontset implementation. Now fontset is represented by char table.
406 (Vglobal_fontset_alist, font_idx_temp, my_strcasetbl): Variables
407 removed.
408 (my_strcasecmp): Function removed.
409 (Vfontset_table, next_fontset_id, Vdefault_fontset): New
410 variables.
411 (AREF, ASIZE): New macros.
412 (FONTSET_FROM_ID, FONTSET_ID, FONTSET_NAME, FONTSET_FRAME,
413 FONTSET_ASCII, FONTSET_BASE, BASE_FONTSET_P, FONTSET_REF,
414 FONTSET_REF_VIA_BASE, FONTSET_SET): New macros.
415 (fontset_ref, fontset_ref_via_base, fontset_set, make_fontset,
416 fontset_id_valid_p, font_family_registry, fontset_name,
417 fontset_ascii, free_face_fontset, face_suitable_for_char_p,
418 face_for_char, make_fontset_for_ascii_face, fontset_font_pattern):
419 New functions.
420 (fs_load_font): New arg FACE. Caller changed.
421 (fs_query_fontset): Argument changed. Caller changed.
422 (Fquery_fontset): call fs_query_fontset.
423 (fs_register_fontset, alloc_fontset_data, free_fontset_data):
424 Functions removed.
425 (clear_fontset_elements, check_registry_encoding,
426 check_fontset_name): New functions.
427 (syms_of_fontset): Set char-table-extra-slots property of fontset
428 to 3. Staticpro and initialize Vfontset_table and
429 Vdefault_fontset. Defsubr fontset_font and fontset_list.
430
431 * frame.h (struct frame): Member `fontset_data' removed.
432 (FRAME_FONTSET_DATA): Macro removed.
433
434 * frame.c (make_frame): Don't allocate f->fontset_data.
435 (Fdelete_frame): Don't free f->fontset_data.
436
437 * msdos.c (XMenuActivate): Args to lookup_derived_face changed.
438
439 * xdisp.c (charset_at_position): Function removed.
440 (init_iterator): Don't set member charset of struct `it'.
441 (handle_face_prop, reseat_to_string, set_iterator_to_next,
442 next_element_from_display_vector, insert_left_trunc_glyphs):
443 Likewise.
444 (face_before_or_after_it_pos): Call FACE_FOR_CHAR, not
445 FACE_FOR_CHARSET.
446 (get_next_display_element, append_space,
447 extend_face_to_end_of_line): Likewise.
448
449 * xfaces.c (Qx_charset_registry, Vface_default_registry):
450 Variables removed.
451 (clear_font_table, frame_update_line_height, load_face_font):
452 Adjusted for the change of fontset implementation.
453 (load_face_fontset_font): Function removed.
454 (pixel_point_size): New function.
455 (font_list): Argument type changed. Caller changed.
456 (LFACE_FONT): New macro.
457 (check_lface_attrs): Check attr[LFACE_FONT_INDEX].
458 (set_lface_from_font_name): Type of arg FONTNAME is changed to
459 Lisp_Object. Determine the font name by actually loading a font
460 by the specified pattern. Set LFACE_FONT (lface) to the specified
461 pattern. Even if a font is not found, don't try alternatives.
462 (Finternal_set_lisp_face_attribute): Handle `font' slot in lface.
463 (set_font_frame_param): If `font' is specified in lface, use it.
464 (Finternal_get_lisp_face_attribute): Handle `font' slot in lface.
465 (lface_same_font_attributes_p): Likewise.
466 (make_realized_face): Arguent changed. Caller changed. Set
467 face->ascii_face to face itself.
468 (free_realized_face): Free face->fontset if face is for ASCII.
469 (face_suitable_for_iso8859_1_p, face_suitable_for_charset_p,
470 deduce_unibyte_registry, x_charset_registry): Functions removed.
471 (free_realized_multibyte_face): New function.
472 (lookup_face, lookup_named_face, lookup_derived_face): Argument
473 changed. Caller changed.
474 (try_font_list): Argument type changed.
475 (face_fontset): Check `font' slot of ATTRS, not `family' slot.
476 (choose_face_font): Argument changed. Handle fontset properly.
477 (choose_face_fontset_font): Function removed.
478 (realize_default_face, realize_named_face): Don't remove the
479 former face here.
480 (realize_face): Argument changed. Caller changed. Remove face
481 with the arg former_face_id in advance. Load font for the new
482 face.
483 (realize_x_face): Argument changed. Caller changed. For a
484 multibyte character, share fontset with base_face. For a single
485 byte character, make a new realized fontset. Don't load a font
486 here.
487 (realize_tty_face): Argument changed. Caller changed.
488 (compute_char_face): Call FACE_FOR_CHAR, not FACE_FOR_CHARSET.
489 (face_at_buffer_position): Don't check multibyte_p for returning
490 DEFAULT_FACE_ID.
491 (face_at_string_position): Call FACE_SUITABLE_FOR_CHAR_P, not
492 FACE_SUITABLE_FOR_CHARSET_P.
493 (syms_of_xfaces): Remove code for Qx_charset_registry and
494 Vface_default_registry.
495
496 * xterm.c: Include fontset.h after dispextern.h. Undo the changes
497 related to PER_CHAR_METRIC done by Gerd on 2000-03-03.
498 (x_per_char_metric): Don't try FONT->default_char. Even if
499 pcm->width is zero, glyph bits may exist.
500 (x_encode_char): Always initialize char2b->byte1.
501 (x_get_char_face_and_encoding): Call FACE_FOR_CHAR to get face_id.
502 (x_get_glyph_face_and_encoding): New arg two_byte_p. Caller
503 changed.
504 (x_append_glyph): Set glyph->glyph_not_available_p.
505 (x_produce_glyphs): Set it->glyph_not_available_p. Don't set
506 it->charset. Handle the case that per char metric is not
507 available. If it->multibyte_p is zero and it->c is a multibyte
508 character, convert it to a unibyte character.
509 (struct glyph_string): Delete member `charset'.
510 (x_set_mouse_face_gc): Call FACE_FOR_CHAR to get face_id. Handle
511 the case that per char metric is not available correctly.
512 (x_fill_glyph_string): Handle the case that the specific glyph is
513 not available correctly.
514 (BUILD_CHAR_GLYPH_STRINGS): Don't set s->charset.
515 (BUILD_COMPOSITE_GLYPH_STRING): Likewise.
516 (x_new_font): Call FS_LOAD_FONT, not fs_load_font.
517 (x_new_fontset): Call fontset_ascii to get ASCII font name of the
518 fontset. Don't call FS_LOAD_FONT.
519
520 * xfns.c (Fx_create_frame): Don't cal fs_register_fontset.
521 (x_create_tip_frame): Likewise.
522 (Fx_close_connection): Free full_name of font_info.
523
524 * fns.c (optimize_sub_char_table): New function.
525 (Foptimize_char_table): New function.
526 (syms_of_fns): Defsubr Soptimize_char_table.
527
528 2000-03-20 Gerd Moellmann <gerd@gnu.org>
529
530 * buffer.c (Fset_buffer_modified_p): Set update_mode_lines
531 only if buffer is displayed in some window.
532
533 * xdisp.c (handle_single_display_prop): Initialize local `value'.
534 (try_window_reusing_current_matrix): Don't call scroll run
535 function if run's current and desired position are the same;
536 this prevents cursor flickering.
537
538 2000-03-19 Stefan Monnier <monnier@cs.yale.edu>
539
540 * regex.h (RE_TRANSLATE. RE_TRANSLATE_P): Moved to regex.c.
541
542 * regex.c (RE_STRING_CHAR): New macro.
543 (GET_CHAR_AFER_2): Remove.
544 (RE_TRANSLATE, RE_TRANSLATE_P): New macros moved from regex.h.
545 (enum re_opcode_t): Remove on_failure_jump_exclusive.
546 (print_partial_compiled_pattern, re_compile_fastmap)
547 (re_match_2_internal): Remove on_failure_jump_exclusive.
548 (regex_compile): Turn optimizable P+ loops into PP*, so that the
549 optimization only need to work for * (ie. can use of_keep_string_jump).
550 Remove the special case for .*\n since it is now covered by the general
551 optimization.
552 (re_search_2): Don't bother with `room'.
553 (skip_one_char): New function.
554 (skip_noops): Simplify since `memory' is not needed any more.
555 (mutually_exclusive_p): Restructure slightly to use `switch' and
556 add handling for "all" remaining cases.
557 (re_match_2_internal): Change on_failure_jump_smart to use
558 on_failure_keep_string_jump (and redirect the end-of-loop jump)
559 rather than on_failure_jump_exclusive.
560
561 2000-03-19 Gerd Moellmann <gerd@gnu.org>
562
563 * xfns.c (select_visual): Don't set dpyinfo->n_planes to the
564 number of bits per RGB because it's everywhere used as the depth
565 of the visual.
566
567 * term.c (calculate_costs): Remove code dealing with X frames.
568
569 2000-03-19 Richard M. Stallman <rms@caffeine.ai.mit.edu>
570
571 * lread.c (syms_of_lread): Doc fix for load-convert-to-unibyte.
572
573 2000-03-18 Gerd Moellmann <gerd@gnu.org>
574
575 * lread.c (read_integer): Unread the last char not consumed.
576
577 2000-03-17 Gerd Moellmann <gerd@gnu.org>
578
579 * xterm.c (x_update_window_cursor): Don't update in frames
580 which are in the process of being deleted.
581
582 2000-03-16 Gerd Moellmann <gerd@gnu.org>
583
584 * Makefile.in (mostlyclean): Add `*.core'.
585 (clean): Add `bootstrap-emacs'.
586
587 * lread.c (read_integer): New function.
588 (read1): Support read syntax #o, #x, #b, #r.
589
590 2000-03-15 Stefan Monnier <monnier@cs.yale.edu>
591
592 * regex.c (re_match_2): Fix string shortening (to fit `stop') to
593 make sure POINTER_TO_OFFSET gives the same value before and after
594 PREFETCH. Use `dfail' to guarantee "atomic" matching.
595 (PTR_TO_OFFSET): Use POINTER_TO_OFFSET.
596 (debug): Now only active if > 0 rather than if != 0.
597 (DEBUG_*): Update for the new meaning of `debug'.
598 (print_partial_compiled_pattern): Add missing `succeed' case. Use
599 CHARSET_* macros in the charset(_not) branch. Fix off-by-two bugs
600 in `succeed_n', `jump_n' and `set_number_at'.
601 (store_op1, store_op2, insert_op1, insert_op2)
602 (at_begline_loc_p, at_endline_loc_p): Add prototype.
603 (group_in_compile_stack): Move to after its arg's types are
604 declared and add a prototype.
605 (PATFETCH): Define in terms of PATFETCH_RAW.
606 (GET_UNSIGNED_NUMBER): Add the usual `do { ... } while(0)'
607 wrapper.
608 (QUIT): Redefine as a nop except for NTemacs.
609 (regex_compile): Handle intervals {,M} as if it was {0,M}. Fix
610 indentation of the greedy-op and shy-group code.
611 (at_(beg|end)line_loc_p): Fix argument's types.
612 (re_compile_fastmap): Ifdef out failure_stack_ptr to shut up gcc.
613 (re_search_2): Use POS_AS_IN_BUFFER. Simplify `room' computation.
614 (MATCHING_IN_FIRST_STRING): Remove.
615 (re_match_2): Use POS_AS_IN_BUFFER. Ifdef out failure_stack_ptr
616 to shut up gcc. Use FIRST_STRING_P and POINTER_TO_OFFSET. Use
617 QUIT unconditionally.
618
619 2000-03-15 Gerd Moellmann <gerd@gnu.org>
620
621 * minibuf.c (Fminibuffer_complete): Set point to ZV if finding
622 a sole completion.
623
624 * process.c (send_process): Add a hint that the function
625 can call Lisp code to its comment.
626
627 * lread.c (load_dangerous_libraries): New variable.
628 (Vbytecomp_version_regexp): New variable.
629 (safe_to_load_p): New function.
630 (Fload): Handle files not compiled with Emacs specially.
631 (syms_of_lread): New Lisp variable load-dangerous-libraries.
632
633 2000-03-14 Gerd Moellmann <gerd@gnu.org>
634
635 * lisp.h (free_frame_xic) [HAVE_X_I18N]: Add missing semicolon.
636
637 * xterm.c (xim_close_dpy, xim_initialize): Use X11R6-style XIM
638 support functions only if HAVE_X11R6_XIM is defined.
639 (xim_instantiate_callback): Define only if HAVE_X11R6_XIM.
640
641 * s/sol2.h (INHIBIT_X11R6_XIM): Define.
642
643 * xfns.c (X_I18N_INHIBITED): Don't define.
644 (create_frame_xic): Remove conditional compilation on
645 X_I18N_INHIBITED.
646 (x_kill_gs_process, x_window): Use FRAME_X_VISUAL.
647
648 * config.in (HAVE_X_I18N): Moved here from xterm.h.
649 (HAVE_X11R6_XIM): Define.
650
651 * xterm.h (HAVE_X_I18N) [HAVE_X11R6]: Moved to config.in.
652
653 * xterm.c (x_term_init): Add support for X resource `synchronous'.
654 If set, call XSynchronize.
655
656 2000-03-13 Stefan Monnier <monnier@cs.yale.edu>
657
658 * regex.c: Declare a new type `re_char' used throughout the code
659 for the string char type. It's `const unsigned char' to match the
660 rest of Emacs. Consistently make sure all pointers to strings use
661 it and make sure all pointers into the pattern use `unsigned
662 char'.
663 (re_match_2_internal): Use `PREFETCH+STRING_CHAR' instead of
664 GET_CHAR_AFTER_2. Also merge wordbound and notwordbound to reduce
665 code duplication.
666
667 * charset.h (GET_CHAR_AFTER_2): Remove.
668 (GET_CHAR_BEFORE_2): Use unsigned chars, like everywhere else.
669
670 2000-03-12 Ken Raeburn <raeburn@gnu.org>
671
672 * Makefile.in (temacs): Evaluate ALL_LDFLAGS into a temporary
673 variable before the invocation of YMF_PASS_LDFLAGS, in case both
674 of them try to use backquotes.
675
676 2000-03-12 Dave Love <fx@gnu.org>
677
678 * unexelf.c: Restore changes of 1999-10-19.
679 (unexec): Don't adjust bss for sbss type SHT_PROGBITS; otherwise
680 fix its type and alignment; copy it from current process.
681
682 2000-03-12 Gerd Moellmann <gerd@gnu.org>
683
684 * atimer.c (cancel_atimer): Break out of the loop as soon as timer
685 has been found. Fix bug not computing timer's predecessor.
686
687 * fileio.c (Fread_file_name): Handle case that DIR contains a
688 file name.
689
690 * window.c (Fsave_window_excursion): Doc fix.
691
692 * xfns.c (x_defined_color): Rewritten to use
693 x_allocate_nearest_color.
694
695 2000-03-12 Eli Zaretskii <eliz@is.elta.co.il>
696
697 * msdos.c (vga_installed): New function, code moved from
698 dos_set_window_size.
699 (Qbar, Qcursor_type, outside_cursor): New variables.
700 (syms_of_msdos): Intern and staticpro them.
701 (dos_ttraw) [__DJGPP__ >= 2, !HAVE_X_WINDOWS]: Save the cursor
702 shape used outside Emacs when called for the first time.
703 (dos_ttcooked) [__DJGPP__ >= 2, !HAVE_X_WINDOWS]: Restore the
704 cursor shape used outside Emacs.
705 (msdos_set_cursor_shape, IT_set_cursor_type): New functions.
706 (IT_frame_up_to_date): Call IT_set_cursor_type, in case the cursor
707 type has changed.
708 (IT_set_frame_parameters): Call IT_set_cursor_type if the frame
709 parameters specify the cursor. Make qreverse a global
710 variable (renamed to Qreverse).
711
712 2000-03-09 Gerd Moellmann <gerd@gnu.org>
713
714 * fns.c (Fy_or_n_p): Cancel busy-cursor.
715
716 2000-03-08 Stefan Monnier <monnier@cs.yale.edu>
717
718 This is a big redesign of failure-stack and register handling, prompted
719 by bugs revealed when trying to add shy-groups. Overall, what happened
720 is that loops are now structured a little differently, groups can be
721 shy and the code is a little simpler.
722
723 * regex.h: Update the copyright.
724 (RE_SHY_GROUPS): New value.
725 (RE_UNMATCHED_RIGHT_PAREN_ORD): Renumber.
726 (RE_SYNTAX_EMACS): Add RE_SHY_GROUPS.
727
728 * regex.c (enum re_opcode_t): Remove jump_past_alt,
729 maybe_pop_jump, push_dummy_failure and dumy_failure_jump. Add
730 on_failure_jump_(exclusive, loop and smart). Also fix the comment
731 for (start|stop)_memory since they now only take one argument (the
732 second has becomes unnecessary).
733 (print_partial_compiled_pattern): Adjust for changes in
734 re_opcode_t.
735 (print_compiled_pattern): Use %ld to printf long ints and flush to
736 make debugging a little easier.
737 (union fail_stack_elt): Make the integer unsigned.
738 (struct fail_stack_type): Add a `frame' element.
739 (INIT_FAIL_STACK): Init `frame' as well.
740 (POP_PATTERN_OP): New macro for re_compile_fastmap.
741 (DEBUG_PUSH, DEBUG_POP): Remove.
742 (NUM_REG_ITEMS): Remove.
743 (NUM_NONREG_ITEMS): Adjust.
744 (FAILURE_PAT, FAILURE_STR, NEXT_FAILURE_HANDLE)
745 (TOP_FAILURE_HANDLE): New macros for the cycle detection.
746 (ENSURE_FAIL_STACK): New macro for PUSH_FAILURE_(REG|POINT).
747 (PUSH_FAILURE_REG, POP_FAILURE_REG, CHECK_INFINITE_LOOP): New
748 macros.
749 (PUSH_FAILURE_POINT): Don't push registers any more. The pattern
750 address pushed is not the destination of the jump but the source
751 of it instead.
752 (NUM_FAILURE_ITEMS): Remove.
753 (POP_FAILURE_POINT): Adapt to the new stack structure (i.e. pop
754 registers before the actual failure point). Don't hardcode any
755 meaning for str==NULL anymore.
756 (union register_info_type, REG_MATCH_NULL_STRING_P, IS_ACTIVE)
757 (MATCHED_SOMETHING, EVER_MATCHED_SOMETHING, SET_REGS_MATCHED):
758 Remove.
759 (REG_UNSET_VALUE): Use NULL (why not?).
760 (compile_range): Remove declaration since it doesn't exist.
761 (struct compile_stack_elt_t): Remove inner_group_offset.
762 (old_reg(start|end), reg_info, reg_dummy, reg_info_dummy): Remove.
763 (regex_grow_registers): Remove dead code.
764 (FIXUP_ALT_JUMP): New macro.
765 (regex_compile): Add shy-groups Change loops to use
766 on_failure_jump_smart&jump instead of
767 on_failure_jump&maybe_pop_jump. Change + loops to eliminate the
768 initial (dummy_failure_)jump. Remove c1_base (looks like unused
769 variable to me). Use `jump' instead of `jump_past_alt' and don't
770 bother with push_dummy_failure in alternatives since it is now
771 unnecessary. Use FIXUP_ALT_JUMP. Eliminate a useless `#ifdef
772 emacs' for (re)allocating the stack.
773 (re_compile_fastmap): Remove dead variables i and num_regs. Exit
774 from loop when bufp->can_be_null rather than jumping to `done'.
775 Avoid jumping backwards so as to ensure termination. Use
776 PATTERN_STACK_EMPTY and POP_PATTERN_OP. Improved handling of
777 backreferences. Remove dead code in handling of `anychar'.
778 (skip_noops, mutually_exclusive_p): New functions taken from the
779 handling of `maybe_pop_jump' in re_match_2_internal. Slightly
780 improve mutually_exclusive_p to handle ".+\n".
781 (lowest_active_reg, highest_active_reg,
782 NO_(LOWEST|HIGHEST)_ACTIVE_REG) Remove.
783 (re_match_2_internal): Use %p instead of 0x%x when printf'ing
784 ptrs. Don't SET_REGS_MATCHED anymore. Remove many dead
785 variables. Push register (in `start_memory') on the stack rather
786 than storing it in old_reg(start|end). Remove the cycle detection
787 from `stop_memory', replaced by the use of on_failure_jump_loop
788 for greedy loops. Add code for the new on_failure_jump_<foo>.
789 Remove ad-hoc code in `on_failure_jump' to push more registers in
790 the case of a loop. Take out code from `maybe_pop_jump' into
791 separate functions and adapt it to the semantics of
792 `on_failure_jump_smart'. Remove jump_past_alt, dummy_failure_jump
793 and push_dummy_failure. Remove dummy_failure handling and
794 handling of `failures to jump to on_failure_jump' (this last one
795 was already dead code, it seems).
796 (group_match_null_string_p, alt_match_null_string_p)
797 (common_op_match_null_string_p): Remove.
798
799 2000-03-08 Dave Love <fx@gnu.org>
800
801 * config.in: Don't depend on __STDC__ for volatile.
802 Add POINTER_TYPE, PTR, PROTOTYPES.
803
804 * hftctl.c, strftime.c: Use PROTOTYPES.
805 * eval.c (find_handler_clause): Likewise.
806
807 * mem-limits.h: Use POINTER_TYPE.
808
809 * lisp.h (P_): Define based on PROTOTYPES, not __STDC__.
810 (memory_warnings): Declare using POINTER_TYPE.
811
812 2000-03-08 Gerd Moellmann <gerd@gnu.org>
813
814 * xfns.c (x_set_cursor_type): If ARG is nil, give frame no cursor.
815
816 * xdisp.c (display_echo_area): Temporarily inhibit garbage
817 collection.
818
819 * xfns.c: Remove obsolete code in #if 0.
820 (Fx_focus_frame): New function.
821
822 2000-03-07 Miyashita Hisashi <himi@bird.scphys.kyoto-u.ac.jp>
823
824 * coding.c (coding_category_name): Add coding-category-utf-8,
825 coding-category-utf-16-be, coding-category-utf-16-le.
826 (UTF_8_1_OCTET_P, UTF_8_EXTRA_OCTET_P, UTF_8_2_OCTET_LEADING_P,
827 UTF_8_3_OCTET_LEADING_P, UTF_8_4_OCTET_LEADING_P,
828 UTF_8_5_OCTET_LEADING_P, UTF_8_6_OCTET_LEADING_P): New macros.
829 (detect_coding_utf_8): New function.
830 (UTF_16_INVALID_P, UTF_16_HIGH_SURROGATE_P
831 UTF_16_LOW_SURROGATE_P): New macros.
832 (detect_coding_utf_16): New function
833 (detect_coding_mask): When priorities are specified, skip any
834 categories that have `nil' coding-system. Fix bug of returning
835 wrong mask when PRIORITIES is specified and detect_coding_XXX()
836 returns a mask not set in PRIORITIES.
837 (detect_eol_type_in_2_octet_form): New function.
838 (detect_eol): selects detect_eol_type_XXX to call according to
839 cooding->category_idx.
840 (detect_coding_system): Remove `nil' coding-system in the result.
841 (Fupdate_coding_systems_internal): Update all coding-categories.
842
843 * coding.h (CODING_CATEGORY_IDX_UTF_8,
844 CODING_CATEGORY_IDX_UTF_16_BE, CODING_CATEGORY_IDX_UTF_16_LE): New
845 macros.
846 (CODING_CATEGORY_IDX_RAW_TEXT, CODING_CATEGORY_IDX_BINARY,
847 CODING_CATEGORY_IDX_MAX): Adjusted for the above macros.
848 CODING_CATEGORY_IDX_UTF_16_LE.
849 (CODING_CATEGORY_MASK_UTF_8, CODING_CATEGORY_MASK_UTF_16_BE,
850 CODING_CATEGORY_MASK_UTF_16_LE): New macros.
851 (CODING_CATEGORY_MASK_ANY): Include the above macros.
852 (CODING_CATEGORY_MASK_UTF_16_BE_LE): New macro.
853
854 2000-03-07 Gerd Moellmann <gerd@gnu.org>
855
856 * doc.c (Fdocumentation_property): If value is not a string,
857 and doesn't refer to etc/DOC, evaluate it to obtain a string.
858
859 * xterm.c (x_connection_closed) [USE_X_TOOLKIT]: Don't try to
860 close the display with XtCloseDisplay. This caused a bus error
861 on OpenWindows.
862
863 * minibuf.c (Fminibuffer_complete): Move point to ZV when input is
864 complete but not unique.
865
866 2000-03-06 Gerd Moellmann <gerd@gnu.org>
867
868 * process.c (send_process): Remove local variable `procname' that
869 might become invalid when a GC happens. Instead, access the
870 process name slot directly.
871
872 * xfns.c (x_set_menu_bar_lines_1): Adjust window's orig_top and
873 orig_height if set.
874
875 * frame.c (set_menu_bar_lines_1): Adjust window's orig_top and
876 orig_height if set.
877
878 2000-03-06 Eli Zaretskii <eliz@is.elta.co.il>
879
880 * msdos.c (IT_note_mouse_highlight): Return immediately if frame's
881 glyph matrices have been freed.
882
883 2000-03-05 Gerd Moellmann <gerd@gnu.org>
884
885 * Makefile.in (tags): Include ../lwlib/TAGS in TAGS.
886 (bootstrap-temacs): Set LC_ALL to C like for temacs.
887
888 * xfns.c (QCdata): Moved to xdisp.c.
889
890 * xdisp.c (QCdata): Moved here from xfns.c.
891 (syms_of_xdisp): Initialize QCdata.
892
893 * frame.h (FRAME_INTERNAL_BORDER_WIDTH) [!HAVE_X_WINDOWS]: Define.
894
895 * window.c (coordinates_in_window): Use
896 FRAME_INTERNAL_BORDER_WIDTH_SAFE instead of
897 FRAME_INTERNAL_BORDER_WIDTH.
898
899 * xdisp.c (try_window_id): Recompute unchanged information if
900 it is obviously invalid.
901
902 * xterm.c (x_term_init): Create a colormap if not using the
903 default visual.
904
905 * xterm.h (select_visual): Change prototype.
906
907 * xfns.c (select_visual): Rewritten. Recognize user-specified
908 visual classes.
909 (visual_classes): New variable.
910
911 2000-03-04 Gerd Moellmann <gerd@gnu.org>
912
913 * xfns.c (x_defined_color, x_set_mouse_color, lookup_rgb_color)
914 (lookup_pixel_color, x_laplace, x_build_heuristic_mask)
915 (png_load): Access colormap of frame using FRAME_X_COLORMAP.
916 (x_decode_color): Don't handle allocation of white and black
917 specially.
918 (x_window) [USE_X_TOOLKIT]: Set XtNvisual, XtNdepth, and
919 XtNcolormap resources.
920 (x_window) [!USE_X_TOOLKIT]: Pass colormap to XCreateWindow.
921 (Fx_create_frame): Initialize color members of x_output structure.
922 (xpm_load): Pass colormap to XPM lib.
923
924 * xfaces.c (x_free_colors): Access colormap of frame using
925 FRAME_X_COLORMAP. Be paranoid about freeing black and white
926 when default colormap is used.
927
928 * xterm.c (x_term_init): Set Colormap member of x_display_info
929 structure. Copy colormap if resource `privateColormap' is
930 specified (PseudoColor only).
931 (x_setup_relief_color): Access colormap of frame using
932 FRAME_X_COLORMAP.
933
934 * xterm.h (struct x_display_info): Add Colormap member `cmap'.
935 (FRAME_X_COLORMAP, FRAME_X_VISUAL): New macros.
936
937 2000-03-04 Jason Rumney <jasonr@gnu.org>
938
939 * xfaces.c Change many FRAME_X... macros to FRAME_WINDOW... or
940 other non-platform-specific equivalents.
941 [WINDOWSNT]: Include w32term.h, fontset.h and define X
942 specific functions and macros as their w32 equivalents where
943 non-platform-specifics are not available.
944 [HAVE_X_WINDOWS]: Change most of these to HAVE_WINDOW_SYSTEM.
945 (x_create_gc, x_free_gc) [WINDOWSNT]: Add W32 versions.
946 (clear_font_table) [WINDOWSNT]: Call w32_unload_font.
947 (frame_update_line_height): Use macros to access f->output_data.
948 (defined_color): Remove FIXME comments; fixed.
949 (x_face_list_fonts, prepare_face_for_display): Put X specifics
950 into #ifdef blocks. Add WINDOWSNT blocks.
951 (Fx_list_fonts): Use macros for accessing font data.
952 (set_lface_from_font_name): Different default fonts for X and
953 WINDOWSNT.
954 (font_scalable_p) [WINDOWSNT]: Treat wildcard XLFD_AVGWIDTH as
955 scalable for backward compatibility.
956 (realize_tty_face) [MSDOS]: Do the same for WINDOWSNT.
957 (syms_of_xfaces) [WINDOWSNT]: Allow scalable fonts by default.
958
959 * emacs.c (main) [HAVE_NTGUI]: Call syms_of_xfaces instead of
960 syms_of_w32faces.
961
962 * makefile.nt (w32faces.obj): Remove.
963 (xfaces.obj): Add.
964
965 2000-03-03 Jason Rumney <jasonr@gnu.org>
966
967 * keyboard.c (make_lispy_event): Call buffer_posn_from_coords with
968 correct parameters.
969
970 2000-03-03 Ken Raeburn <raeburn@gnu.org>
971
972 * unexelf.c (PT_LOAD, SHT_*, SHN_*) [__NetBSD__]: Only provide
973 standard ELF definitions here if the system header does not.
974
975 2000-03-03 Gerd Moellmann <gerd@gnu.org>
976
977 * xterm.c (PER_CHAR_METRIC): Removed.
978 (x_per_char_metric_1, x_default_char): New functions.
979 (x_per_char_metric): If font's default char is invalid, return
980 metrics of a suitably chosen usable default char.
981 (x_draw_glyph_string_foreground): If font has an invalid default
982 char, replace occurrences of unprintable chars with a suitably
983 chosen usable default char.
984
985 2000-03-02 Gerd Moellmann <gerd@gnu.org>
986
987 * xterm.c (note_mouse_highlight): Return quickly if frame's
988 glyph matrices have been freed.
989
990 * dispnew.c (free_glyphs): Block input while freeing matrices.
991
992 * xfns.c (x_clear_image, x_kill_gs_process): Use x_free_colors.
993
994 * xterm.c (x_alloc_lighter_color, x_setup_relief_color): Use
995 x_free_colors.
996
997 * dispextern.h (x_free_colors): Add prototype.
998
999 * xfaces.c (x_free_colors): New function.
1000 (unload_color, free_face_colors): Use it.
1001
1002 2000-03-02 Eli Zaretskii <eliz@is.elta.co.il>
1003
1004 * msdos.h (FRAME_INTERNAL_BORDER_WIDTH): Define to zero.
1005
1006 * window.c [MSDOS]: Include msdos.h.
1007
1008 2000-03-02 Dave Love <fx@gnu.org>
1009
1010 * m/powerpcle.h, m/sparc.h: Don't set C_OPTIMIZE_SWITCH.
1011
1012 * m/mips-siemens.h, m/news-r6.h, m/news-risc.h, m/tekxd88.h: Don't
1013 set C_OPTIMIZE_SWITCH for gcc.
1014
1015 2000-03-02 Kenichi Handa <handa@etl.go.jp>
1016
1017 * coding.c (coding_save_composition): Be sure to allocate
1018 composition data area in coding even if there's no composition in
1019 the current run.
1020
1021 2000-03-01 Jason Rumney <jasonr@gnu.org>
1022
1023 * w32term.c: Equivalent changes to those made to xterm.c on
1024 2000-02-25 and 2000-02-24.
1025
1026 * w32fns.c: Equivalent changes to those made to xfns.c on
1027 2000-02-25 and 2000-02-21.
1028
1029 * sysdep.c: [WINDOWSNT]: Use sys_read and sys_write to ensure
1030 correct line-end convention is followed.
1031
1032 * w32menu.c [HAVE_BOXES]: Remove #undef.
1033 (single_keymap_panes): Remove code for simulating checkmarks.
1034 (single_menu_item): Remove notbuttons_ptr argument. Callers changed.
1035 Remove code for drawing simulated checkmarks.
1036 (w32_menu_show): make unibyte help string correctly.
1037 (add_menu_item): draw standard Windows checkmarks. Draw radio
1038 buttons as radio buttons if possible.
1039
1040 2000-03-01 Gerd Moellmann <gerd@gnu.org>
1041
1042 * sysdep.c (start_of_text): Don't define this function for NetBSD
1043 with ELF.
1044
1045 * m/pmax.h (START_FILES, CANNOT_DUMP) [__NetBSD__ || __OpenBSD__]:
1046 Don't define.
1047 (UNEXEC) [__NetBSD__ || __OpenBSD__]: Define to unexelf.o.
1048 (LINKER): Don't undef if __NetBSD__ is defined.
1049
1050 * m/mips.h (LINKER) [__NetBSD__ || __OpenBSD__]: Don't define.
1051
1052 * fileio.c [__NetBSD__]: Define `unix'.
1053
1054 * xfns.c (start_busy_cursor): Allow floats for busy-cursor-delay.
1055
1056 2000-02-29 Gerd Moellmann <gerd@gnu.org>
1057
1058 * atimer.c (start_atimer): Don't abort when timers are stopped.
1059 (append_atimer_lists): New function.
1060 (cancel_atimer, stop_other_atimers, run_all_atimers): Handle
1061 arbitrary lists of stopped and running atimers.
1062
1063 * atimer.c (cancel_atimer): Handle canceling an atimer when
1064 some timers are stopped.
1065
1066 * xfns.c (cancel_busy_cursor): Set busy_cursor_atimer to null
1067 after canceling it.
1068
1069 * fns.c (maybe_resize_hash_table): Handle case of new size
1070 coming out as being the same as old size.
1071
1072 2000-02-27 Jason Rumney <jasonr@gnu.org>
1073
1074 * makefile.nt: Add atimer.h to dependencies.
1075 * w32.c (init_environment): Set Vw32_num_mouse_buttons here.
1076 * w32console.c: Only disable window system features for dispextern.h
1077 (initialize_w32_display): Build a display info for the console.
1078 * w32faces.c (tty_defined_color): Apply xfaces.c change from 02-17.
1079 * w32fns.c (w32_wnd_proc) [WM_LBUTTON_DOWN, WM_RBUTTON_DOWN,
1080 WM_LBUTTON_UP, WM_RBUTTON_UP]: Do not treat 4 or more button mice
1081 as 2 button mice.
1082 * w32gui.h (struct W32FontStruct): Revert last change after change
1083 to xdisp.c.
1084 * w32menu.c (single_submenu): Set up help string.
1085 [!HAVE_MULTILINGUAL_MENU]: Don't overwrite item_name with descrip.
1086 (w32_dialog_show): Set up help string.
1087 * w32term.c (w32_display_info_for_display): Remove unused function.
1088 (w32_draw_bitmap): Use pre-built bitmaps.
1089 (w32_initialize_display_info): New function to initialize parts of
1090 display info that are common to both GUI and console frames.
1091 (w32_term_init): Use w32_initialize_display_info. Do not set
1092 Vw32_num_mouse_buttons here, as it is not called for console
1093 frames. Build bitmaps for indicating truncated lines etc.
1094 (x_delete_display): Destroy pre-built bitmaps.
1095 * xdisp.c (handle_single_display_prop): Use FONT_HEIGHT macro.
1096 (echo_area_display): Change HAVE_X_WINDOWS to HAVE_WINDOW_SYSTEM.
1097
1098 2000-02-27 Dave Love <fx@gnu.org>
1099
1100 * lisp.h: Add a bunch of prototypes.
1101
1102 2000-02-26 Kenichi Handa <handa@etl.go.jp>
1103
1104 * keyboard.c (read_char): Set `usec' correctly.
1105
1106 2000-02-25 Miyashita Hisashi <himi@bird.scphys.kyoto-u.ac.jp>
1107
1108 * ccl.c (ccl_driver) [CCL_MapMultiple]: When the mapped value is
1109 `lambda', set reg[RRR] to the map index.
1110 (ccl_driver) [CCL_MapSingle]: When the mapped value is found, set
1111 reg[RRR] to 0. Otherwise, set it to -1.
1112
1113 2000-02-25 Gerd Moellmann <gerd@gnu.org>
1114
1115 * emacs.c (main): Remove code snippet commented out with `//'.
1116
1117 2000-02-25 Richard M. Stallman <rms@caffeine.ai.mit.edu>
1118
1119 * fileio.c (Ffile_symlink_p): If result starts with a `/'
1120 and contains a `:', prepend `/:'.
1121
1122 * window.c (select_window_1): If selected_window is nil,
1123 don't "swap out" the buffer's point.
1124 (Fset_window_configuration): Set selected_window to nil
1125 before calling Fselect_window.
1126 (unshow_buffer): Don't set point in buffer from window's point
1127 if another more recently selected window also shows the buffer.
1128
1129 2000-02-25 Gerd Moellmann <gerd@gnu.org>
1130
1131 * keyboard.c (recursive_edit_1): Cancel busy-cursor.
1132
1133 * xfns.c (inhibit_busy_cursor, busy_count): Removed.
1134 (Fx_show_busy_cursor, Fx_hide_busy_cursor): Removed.
1135 (busy_cursor_atimer, busy_cursor_shown_p, Vbusy_cursor_delay): New
1136 variables.
1137 (DEFAULT_BUSY_CURSOR_DELAY): New define.
1138 (start_busy_cursor, cancel_busy_cursor, show_busy_cursor)
1139 (hide_busy_cursor): New functions.
1140 (syms_of_xfns): DEFVAR_LISP Vbusy_cursor_delay.
1141
1142 * minibuf.c (read_minibuf): Cancel busy-cursor.
1143
1144 * keyboard.c (command_loop_1): Call start_busy_cursor before
1145 Fcommand_execute and cancel_busy_cursor after it.
1146 (timer_check): Remove busy-cursor code.
1147 (Fread_key_sequence, Fread_key_sequence_vector): Start/cancel busy
1148 cursor timer.
1149
1150 * process.c (wait_reading_process_input): Remove busy-cursor code.
1151
1152 * eval.c (Fsignal): Call cancel_busy_cursor instead of
1153 Fx_hide_busy_cursor.
1154
1155 * dispextern.h (Fx_show_busy_cursor, Fx_hide_busy_cursor):
1156 Remove prototyoes.
1157 (start_busy_cursor, cancel_busy_cursor): Add prototypes.
1158
1159 * lisp.h (Fx_hide_busy_cursor): Remove prototype.
1160
1161 * xterm.c (XTread_socket): Remove busy-cursor code.
1162
1163 * dispnew.c (flush_stdout) [GLYPH_DEBUG]: New function.
1164 (build_frame_matrix_from_leaf_window): Put code handling
1165 glyph row's not being a slice of a frame row in #if 0.
1166 (sync_window_with_frame_matrix_rows): New function.
1167 (frame_row_to_window): New function.
1168 (mirror_line_dance): Handle copies between windows.
1169
1170 * lread.c (Fload): Use `xfree' instead of `free'.
1171 (init_obarray): Use `xmalloc' instead of `malloc'.
1172
1173 * window.c (Fset_window_buffer): Set WINDOW to the window
1174 after decoding.
1175 (coordinates_in_window): Take frame's internal border width
1176 into account.
1177
1178 2000-02-24 Gerd Moellmann <gerd@gnu.org>
1179
1180 * xterm.c (x_display_and_set_cursor): Display cursor of
1181 non-selected windows depending on the setting of
1182 cursor_in_non_selected_windows.
1183
1184 * xdisp.c (cursor_in_non_selected_windows): New variable.
1185 (syms_of_xdisp): DEFVAR_BOOL it.
1186
1187 2000-02-23 Gerd Moellmann <gerd@gnu.org>
1188
1189 * data.c (Fstring_to_number): If number is greater than what
1190 fits into an integer, return a float.
1191
1192 * eval.c (specbind): Remove references to
1193 keyword_symbols_constant_flag.
1194
1195 * data.c (keyword_symbols_constant_flag): Removed.
1196 (Fmakunbound, set_internal, syms_of_data): Remove references to
1197 keyword_symbols_constant_flag.
1198
1199 * bytecode.c (Fbyte_code): Remove keyword_symbols_constant_flag.
1200
1201 2000-02-23 Kenichi Handa <handa@etl.go.jp>
1202
1203 * syntax.c (multibyte_syntax_as_symbol): New variable.
1204 (syms_of_syntax): Declare it as a Lisp variable.
1205 (SYNTAX_WITH_MULTIBYTE_CHECK): New macro.
1206 (scan_lists): If both sexpflag and multibyte_syntax_as_symbol are
1207 nonzero, treat all multibyte characters as symbol.
1208 (init_syntax_once): Give syntax `word' to all multibyte
1209 characters.
1210
1211 2000-02-22 Eli Zaretskii <eliz@is.elta.co.il>
1212
1213 * frame.c (Fdelete_frame): Don't let echo_area_window remain on
1214 a deleted frame.
1215
1216 2000-02-21 Gerd Moellmann <gerd@gnu.org>
1217
1218 * frame.c (Fmouse_position): GCPRO retval instead of x and y.
1219
1220 * xfns.c (x_window_to_frame, x_any_window_to_frame)
1221 (x_non_menubar_window_to_frame): Check the busy-cursor window.
1222
1223 2000-02-21 Dave Love <fx@gnu.org>
1224
1225 * frame.c (Vmouse_position_function): New variable.
1226 (Fmouse_position): Use it.
1227 (syms_of_frame): Install it.
1228
1229 * charset.c (find_charset_in_str): Fix use of `c' instead of `c1'.
1230
1231 2000-02-20 Gerd Moellmann <gerd@gnu.org>
1232
1233 * fileio.c (Finsert_file_contents): Unbind the binding of
1234 standard-output done by temp_output_buffer_setup.
1235
1236 * eval.c (funcall_lambda): Don't bind Qmocklisp_arguments unless
1237 Vmocklisp_arguments is nil. Inline Fcar and Fcdr.
1238 (specbind, unbind_to): Handle most common case of non-constant
1239 symbol with trivial value specially.
1240
1241 * bytecode.c (Fbyte_code) <Bvarset>: Inline most common case.
1242
1243 2000-02-20 Richard M. Stallman <rms@caffeine.ai.mit.edu>
1244
1245 * data.c (Fmake_variable_buffer_local): Doc fix.
1246 Init found_for_buffer to 0.
1247 (Fmake_variable_frame_local): If the variable has already
1248 been buffer-local, set the check_frame field.
1249
1250 2000-02-20 Eli Zaretskii <eliz@is.elta.co.il>
1251
1252 * msdos.c (IT_write_glyphs): Allocate a larger screen_buf as data
1253 produced for CODING_MODE_LAST_BLOCK requires.
1254
1255 2000-02-18 Dave Love <fx@gnu.org>
1256
1257 * keyboard.c (echo_keystrokes): Remove declaration.
1258 (Vecho_keystrokes) New variable.
1259 (read_char, record_menu_key, read_key_sequence): Use it to allow
1260 use of float value.
1261 (syms_of_keyboard): Change Vecho_keystrokes declaration.
1262
1263 * lread.c: Undef feature selection macros before defining.
1264
1265 2000-02-18 Gerd Moellmann <gerd@gnu.org>
1266
1267 * data.c (let_shadows_buffer_binding_p): Ignore specbindings
1268 for symbols other than the symbol in question.
1269
1270 2000-02-17 Dave Love <fx@gnu.org>
1271
1272 * s/sol2.h (C_DEBUG_SWITCH): Define to allow optimization.
1273
1274 2000-02-17 Gerd Moellmann <gerd@gnu.org>
1275
1276 * emacs.c (main): Use #if GC_MARK_STACK instead of #ifdef.
1277
1278 * alloc.c (enum mem_type): Compile unconditionally.
1279
1280 2000-02-17 Eli Zaretskii <eliz@is.elta.co.il>
1281
1282 * xfaces.c (tty_defined_color): Don't return faulire indication
1283 for unspecified-fg and unspecified-bg pseudo-colors.
1284
1285 2000-02-17 Gerd Moellmann <gerd@gnu.org>
1286
1287 * alloc.c (mark_object): Don't mark symbol names in pure space.
1288 (gc_sweep): Don't unmark symbol names in pure space.
1289
1290 * lisp.h (GC_USE_GCPROS_AS_BEFORE, GC_MAKE_GCPROS_NOOPS)
1291 (GC_MARK_STACK_CHECK_GCPROS, GC_USE_GCPROS_CHECK_ZOMBIES)
1292 [GC_MARK_STACK]: New defines.
1293 (GCPRO1, GCPRO2, GCPRO3, GCPRO4, GCPRO5, UNGCPRO)
1294 [GC_MARK_STACK == GC_MAKE_GCPROS_NOOPS]: Define as no-ops.
1295
1296 * emacs.c (main) [GC_MARK_STACK]: Initialize stack_base.
1297
1298 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer): Use
1299 allocate_buffer instead of xmalloc.
1300
1301 * alloc.c (toplevel): Include setjmp.h.
1302 (PURE_POINTER_P): New define.
1303 (enum mem_type) [GC_MARK_STACK]: New enumeration.
1304 (Vdead) [GC_MARK_STACK]: New variable.
1305 (lisp_malloc): Add parameter TYPE, call mem_insert if
1306 GC_MARK_STACK is defined.
1307 (allocate_buffer): New function.
1308 (lisp_free) [GC_MARK_STACK]: Call mem_delete.
1309 (free_float) [GC_MARK_STACK]: Set type to Vdead.
1310 (free_cons) [GC_MARK_STACK]: Set car to Vdead.
1311 (stack_base, mem_root, mem_z) [GC_MARK_STACK]: New variables.
1312 (MEM_NIL) [GC_MARK_STACK]: New define.
1313 (struct mem_node) [GC_MARK_STACK]: New structure.
1314 (mem_init, mem_find, mem_insert, mem_delete, mem_insert_fixup)
1315 (mem_delete_fixup, mem_rotate_left, mem_rotate_right)
1316 (live_string_p, live_cons_p, live_symbol_p, live_float_p)
1317 (live_misc_p, live_vector_p, live_buffer_p, mark_memory)
1318 (mark_stack) [GC_MARK_STACK]: New functions.
1319 (Fgarbage_collect) [GC_MARK_STACK]: Call mark_stack.
1320 (clear_marks): Removed.
1321 (gc_sweep): Set free conses' car, free floats' type, free
1322 symbols' function to Vdead. Use lisp_free to free buffers.
1323 (init_alloc_once): Initialize Vdead.
1324 (survives_gc_p): Return non-zero for pure objects.
1325
1326 * alloc.c: Add comments throughout the file.
1327
1328 * atimer.c (stop_other_atimers): Don't call cancel_atimer because
1329 that unblocks alarms.
1330
1331 * alloc.c, bytecode.c, data.c, dispnew.c, ecrt0.c, editfns.c,
1332 emacs.c, floatfns.c, fns.c, lread.c, print.c, config.in, lisp.h,
1333 Makefile.in: Remove `LISP_FLOAT_TYPE' and `standalone'.
1334
1335 * frame.c (make_frame): Set frame initiallly to `garbaged'.
1336
1337 2000-02-17 Kenichi Handa <handa@etl.go.jp>
1338
1339 * xdisp.c (decode_mode_spec_coding): Delete superfluous code to
1340 avoid infinite error signaling. Allocate sufficient memory for
1341 eol_str in the case that eoltype is Lisp_Int.
1342
1343 2000-02-17 Stefan Monnier <monnier@cs.yale.edu>
1344
1345 * syntax.c (Fforward_comment): Undo the previous change, since cc-mode
1346 depends on the previous behavior.
1347
1348 2000-02-16 Gerd Moellmann <gerd@gnu.org>
1349
1350 * sysdep.c (vfork) [!HAVE_VFORK]: Removed.
1351
1352 2000-02-15 Gerd Moellmann <gerd@gnu.org>
1353
1354 * s/freebsd.h (BROKEN_PTY_READ_AFTER_EAGAIN): Define.
1355
1356 * process.c (send_process) [BROKEN_PTY_READ_AFTER_EAGAIN]:
1357 Workaround for FreeBSD bug. Clear output queue after EAGAIN in
1358 write(2).
1359
1360 2000-02-15 Richard M. Stallman <rms@gnu.org>
1361
1362 * data.c (set_internal): Don't make variable buffer-local
1363 if within a let-binding for the same buffer.
1364 (let_shadows_buffer_binding_p): New function.
1365
1366 * eval.c (specbind): For buffer-local value,
1367 record the current buffer also.
1368 (unbind_to): Cope with that change.
1369
1370 2000-02-15 Gerd Moellmann <gerd@gnu.org>
1371
1372 * window.c (Fsave_window_excursion): Doc fix.
1373
1374 2000-02-15 Stefan Monnier <monnier@cs.yale.edu>
1375
1376 * syntax.c (back_comment): Make sure we only consider comment-starters
1377 of the relevant style and return -1 in case of a failure to find the
1378 beginning of the comment.
1379 (Fforward_comment): If back_comment fails, go back to the position just
1380 after the comment-end.
1381 (scan_lists): Add comment describing a very minor bug.
1382
1383 2000-02-14 Stefan Monnier <monnier@cs.yale.edu>
1384
1385 * minibuf.c (Ftry_completion, Fall_completions): Add a reference to
1386 `completion-regexp-list' in the docstring.
1387
1388 2000-02-14 Dave Love <fx@gnu.org>
1389
1390 * xfaces.c (tty_defined_color): Declare color_idx unsigned long.
1391
1392 2000-02-14 Stefan Monnier <monnier@cs.yale.edu>
1393
1394 * regex.h (RE_SYNTAX_EMACS): Add RE_CHAR_CLASSES and RE_INTERVALS
1395 to Emacs' syntax. Also fix the comment about set/not-set meanings
1396 since Emacs syntax is not the value 0 any more.
1397 * search.c (compile_pattern_1): Remove RE_CHAR_CLASSES from the syntax
1398 since it's now part of RE_SYNTAX_EMACS.
1399
1400 2000-02-12 Dave Love <fx@gnu.org>
1401
1402 * frame.h (SELECTED_FRAME): Use NULL, not 0 to avoid warnings on
1403 Alpha.
1404
1405 2000-02-12 Gerd Moellmann <gerd@gnu.org>
1406
1407 * xdisp.c (syms_of_xdisp): Doc fix for scroll-conservatively.
1408
1409 2000-02-12 Dave Love <fx@gnu.org>
1410
1411 * s/aix3-2.h, s/osf-1.h: Define C_DEBUG_SWITCH for non-gcc.
1412
1413 * s/ux4800.h, s/umips.h, s/umax.h, s/sol2.h, s/sco5.h, s/rtu.h:
1414 * s/ptx4.h, s/umax.h, s/dgux.h, s/bsd4-2.h, s/bsd4-3.h:
1415 * s/hpux.h: Don't define HAVE_VFORK.
1416
1417 * s/gnu-linux.h: Don't define HAVE_VFORK or HAVE_SYS_SIGLIST.
1418
1419 * s/nextstep.h: Don't define HAVE_ALLOCA.
1420
1421 * config.in: Add vfork bits.
1422
1423 2000-02-12 Gerd Moellmann <gerd@gnu.org>
1424
1425 * process.c (Fopen_network_stream) [POLL_FOR_INPUT]: Register
1426 unwind function to undo the effect of stopping atimers.
1427
1428 * keyboard.c (bind_polling_period): Stop all timers except
1429 poll_timer.
1430
1431 * atimer.c (stopped_atimers): New variable.
1432 (stop_other_atimers, run_all_atimers, unwind_stop_other_atimers):
1433 New functions.
1434
1435 * atimer.h (stop_other_atimers, run_all_atimers)
1436 (unwind_stop_other_atimers): Add function prototypes.
1437
1438 * s/hpux10.h (HAVE_XRMSETDATABASE): Define if not already defined.
1439
1440 2000-02-11 Ken Raeburn <raeburn@gnu.org>
1441
1442 * Makefile.in (LIBX): Link in tiff library before jpeg, since tiff
1443 library may depend on jpeg.
1444 (atimer.o): Depends on atimer.c.
1445
1446 2000-02-11 Kenichi Handa <handa@etl.go.jp>
1447
1448 * insdel.c (del_range_1): Call update_compositions.
1449 (del_range_both): Call update_compositions just once..
1450
1451 2000-02-10 Dave Love <fx@gnu.org>
1452
1453 * xfns.c (create_frame_xic): Fix initialization of automatic
1454 aggregates for pcc.
1455
1456 2000-02-09 Kenichi Handa <handa@etl.go.jp>
1457
1458 * ccl.c (CCL_MAKE_CHAR): New macro.
1459 (ccl_driver) <CCL_TranslateCharacter>: Check the validity of
1460 registers by CCL_MAKE_CHAR before calling translate_char.
1461 <CCL_TranslateCharacterConstTbl> Likewise.
1462
1463 2000-02-08 Dave Love <fx@gnu.org>
1464
1465 * lread.c (__EXTENSIONS__): Define.
1466
1467 2000-02-08 Gerd Moellmann <gerd@gnu.org>
1468
1469 * puresize.h (BASE_PURESIZE): Increase to 650000.
1470
1471 2000-02-07 Eli Zaretskii <eliz@is.elta.co.il>
1472
1473 * msdos.c (XMenuActivate): Turn off the cursor after displaying
1474 the help message.
1475
1476 2000-02-07 Eli Zaretskii <eliz@is.elta.co.il>
1477
1478 * s/msdos.h (INTERNAL_TERMINAL): Add capabilities se, so, us, ue,
1479 md, mh, mb, mr, and me to the fake termcap entry.
1480
1481 2000-02-06 Ken Raeburn <raeburn@gnu.org>
1482
1483 * sound.c (sound_cleanup): Don't call device close routine if the
1484 function pointer is null.
1485
1486 2000-02-06 Andrew Innes <andrewi@gnu.org>
1487
1488 * dispextern.h: Change HAVE_X_WINDOWS to HAVE_WINDOW_SYSTEM,
1489 around image definitions and prototypes.
1490 (gamma_correct) [WINDOWSNT]: New prototype.
1491
1492 * w32term.c (x_make_frame_visible): Replace call to
1493 input_poll_signal with poll_for_input.
1494
1495 * window.c [WINDOWSNT]: Include w32term.h.
1496
1497 * xdisp.c [WINDOWSNT]: Include w32term.h.
1498
1499 * makefile.nt: Add dependencies on w32gui.h.
1500 (OBJ1): Include atimer.obj.
1501 ($(BLD)\atimer.obj): New dependency rule.
1502
1503 * w32.c (sigmask): New function (does nothing).
1504 (sigunblock): Ditto.
1505
1506 * frame.c [WINDOWSNT]: Include w32term.h.
1507
1508 * w32gui.h (struct W32FontStruct): Add ascent and descent slots.
1509
1510 * lread.c (syms_of_lread): Fix literal newlines.
1511
1512 * emacs.c (USAGE): Split into USAGE1 and USAGE2, to work-around
1513 the string constant limit (2048 bytes) in MSVC.
1514 (main): Ditto.
1515
1516 2000-02-05 INOUE Seiichiro <inoue@ainet.or.jp>
1517
1518 * xterm.c (x_display_and_set_cursor) [HAVE_X_I18N]: Set pre-edit
1519 area.
1520 (x_display_cursor) [HAVE_X_I18N]: Don't set it here.
1521 (XTread_socket) [HAVE_X_I18N]: <KeyPress, KeyRelease>: Don't
1522 dispatch the event.
1523
1524 2000-02-04 Dave Love <fx@gnu.org>
1525
1526 * fileio.c: Remove some unused vars.
1527 (_GNU_SOURCE): Define (for euidaccess).
1528
1529 * lread.c (_XOPEN_SOURCE): Declare (for ftello).
1530
1531 * minibuf.c (read_minibuf_noninteractive): Remove undeclared
1532 gcpro1, gcpro2.
1533 (read_minibuf): Deal with allow_props correctly.
1534
1535 2000-02-03 Eli Zaretskii <eliz@is.elta.co.il>
1536
1537 * s/msdos.h (SYSTEM_PURESIZE_EXTRA): Enlarge to 60000.
1538
1539 2000-02-03 Ken Raeburn <raeburn@gnu.org>
1540
1541 * search.c (compile_pattern): If a cache entry has a nil regexp,
1542 fill in that entry instead of clobbering a previously cached
1543 string regexp.
1544
1545 2000-02-02 Ken Raeburn <raeburn@gnu.org>
1546
1547 * puresize.h (BASE_PURESIZE): Increase to 610000.
1548
1549 2000-02-02 Gerd Moellmann <gerd@gnu.org>
1550
1551 * frame.c (Fframe_parameters): Add GCPRO because tty_color_name
1552 can GC.
1553
1554 2000-02-02 Kenichi Handa <handa@etl.go.jp>
1555
1556 * ccl.c (ccl_driver) <CCL_WriteExprRegister>: Set jump_address
1557 instead of incrementing ic directly.
1558 <CCL_WriteExprConst> Likewise.
1559 <ccl_set_expr>: Set ic to jump_address.
1560
1561 * fileio.c (e_write): Fix the handling of
1562 CODING_FINISH_INSUFFICIENT_SRC.
1563
1564 2000-02-01 Dave Love <fx@gnu.org>
1565
1566 * editfns.c (Fpropertize): Doc fix.
1567
1568 * process.c (Fstart_process): Doc fix.
1569
1570 * eval.c: Fix various doc strings not to duplicate information
1571 from help-manyarg-func-alist.
1572
1573 * window.c (Fset_window_margins): Don't make interactive. Doc
1574 fix.
1575
1576 * doc.c (Vhelp_manyarg_func_alist): New variable.
1577 (Fdocumentation): Use it.
1578 (syms_of_doc): Define it.
1579
1580 2000-01-31 Gerd Moellmann <gerd@gnu.org>
1581
1582 * xterm.c (xim_open_dpy): Remove unused local variable.
1583
1584 * emacs.c (USAGE): Use term `display options' instead of `X
1585 options'.
1586
1587 * xdisp.c (Ftrace_to_stderr) [GLYPH_DEBUG]: New function.
1588 (syms_of_xdisp) [GLYPH_DEBUG]: Defsubr it.
1589
1590 * fns.c (sweep_weak_table): New function.
1591 (sweep_weak_hash_tables): Use it. Keep on marking until there
1592 is no more change.
1593
1594 2000-01-30 Gerd Moellmann <gerd@gnu.org>
1595
1596 * xterm.c (x_delete_display): Update next_noop_dpyinfo to ensure
1597 that XTread_socket does not crash by trying to call XNoOp on a
1598 closed display.
1599
1600 2000-01-30 Jason Rumney <jasonr@gnu.org>
1601
1602 * w32inevt.c (get_frame, w32_console_mouse_position, mouse_moved_to):
1603 Change selected_frame to SELECTED_FRAME ().
1604 (w32_console_mouse_position): Remove #ifndef MULE from around
1605 `insist' parameter.
1606
1607 * makefile.nt: Remove dosfns.obj.
1608
1609 * term.c (term_init) [WINDOWSNT]: Initialize TN_max_colors.
1610
1611 * w32fns.c (w32_defined_color): Check for valid frame before
1612 applying gamma correction. Eliminate dependency on frame elsewhere.
1613 (w32_load_system_font): Switch FIXED_PITCH and VARIABLE_PITCH.
1614 (w32_to_x_font): Use resx and resy not height_in and width_in.
1615 (x_to_w32_font): Doc fix.
1616 (xlfd_strip_height): New function to strip and return font height.
1617 (w32_font_match): Compare height separately from rest of xlfd
1618 spec, using xlfd_strip_height.
1619
1620 * w32term.c (w32_term_init): Swap resx and height_in, resy and
1621 width_in. Use w32_defined_color in place of defined_color.
1622
1623 * w32faces.c: Merge more of DOS and X specifics in preparation for
1624 merge with xfaces.c.
1625 (defined_color): Remove FIXME comment.
1626 (tty_color_name): Provide w32-specific function.
1627 (realize_tty_face): Handle FACE_TTY_DEFAULT*_COLOR specially.
1628
1629 * w32console.c (turn_on_face, turn_off_face): Removed.
1630 (w32_face_attributes): New function.
1631 (Global_variables): Reduce scope where possible.
1632 (clear_frame, ins_del_lines, scroll_line): Use char_attr_normal as
1633 fill attribute.
1634 (hl_mode): Don't modify text attributes.
1635 (write_glyphs): Don't do anything if len <= 0. Use
1636 w32_face_attributes to get attributes for drawing. Write
1637 terminating codes using char_attr_normal.
1638 (reset_terminal_modes, set_terminal_modes): Turn off highlight.
1639 (update_begin, update_end): Likewise.
1640 (vga_stdcolor_name): New function.
1641 (initialize_w32_display): Remove char_attr_reverse and char_attr.
1642 (Fset_screen_color): Remove char_attr_reverse.
1643
1644 2000-01-29 Gerd Moellmann <gerd@gnu.org>
1645
1646 * xfns.c (xic_set_preeditarea): Take window parameter and
1647 window-relative pixel-positions.
1648
1649 * xterm.c (x_display_cursor): Set XIC pre-edit area only if window
1650 is its frame's selected window.
1651 (xim_instantiate_callback): Likewise.
1652
1653 * xfns.c (x_create_im): Removed.
1654 (DEFAULT_STYLE, DEFAULT_FONT): Removed.
1655 (supported_xim_styles): Renamed from supported_styles.
1656 (best_xim_style): Renamed from best_style.
1657 (create_frame_xic): Renamed from xic_create_frame.
1658 (free_frame_xic): Renamed from xic_destroy_frame.
1659
1660 2000-01-29 INOUE Seiichiro <inoue@ainet.or.jp>
1661
1662 * xterm.c (XTread_socket) [HAVE_X_I18N]: If event is for none of
1663 our frames, call XFilterEvent with 2nd parameter `None'.
1664 (XTread_socket) <KeyPress> [HAVE_X_I18N]: Handle XmbLookupString
1665 returning XBufferOverflow.
1666 (XTread_socket) <ConfigureNotify> [HAVE_X_I18N]: Set XIC status
1667 area.
1668 (x_display_cursor) [HAVE_X_I18N]: Set XIC pre-edit area.
1669 (x_new_fontset) [HAVE_X_I18N]: Create XIC status area fontset.
1670 (xim_destroy_callback, xim_open_dpy, xim_instantiate_callback)
1671 (xim_initialize, xim_close)
1672 [HAVE_X_I18N && HAVE_X11R6]: New functions.
1673 (x_destroy_window) [HAVE_X_I18N]: Call xic_destroy_frame.
1674 (x_term_init) [HAVE_X_I18N]: Call xim_initialize.
1675 (x_delete_display) [HAVE_X_I18N]: Call xim_close.
1676
1677 * xterm.h (struct x_display_info) [HAVE_X_I18N]: Add members `xim'
1678 and `xim_styles'.
1679 (struct x_output) [HAVE_X_I18N]: Remove member `xim', add
1680 `xic_style' and `xic_xfs'.
1681 (FRAME_MENUBAR_HEIGHT, FRAME_X_XIM, FRAME_X_XIM_STYLES)
1682 (FRAME_XIC_STYLE, FRAME_XIC_FONTSET): New macros.
1683 (FRAME_XIM): Removed.
1684
1685 * xfns.c (supported_styles): New variable.
1686 (DEFAULT_STYLE, DEFAULT_FONT): New macros
1687 (xic_create_xfontset, best_style, xic_create_frame)
1688 (xic_destroy_frame, xic_set_preeditarea, xic_set_statusarea)
1689 (xic_set_xfontset): New functions.
1690
1691 2000-01-28 Dave Love <fx@gnu.org>
1692
1693 * s/irix6-5.h: Revert last change after change to irix5-0.h.
1694
1695 * m/iris4d.h (C_SWITCH_MACHINE): Don't use -G0.
1696
1697 2000-01-28 Gerd Moellmann <gerd@gnu.org>
1698
1699 * buffer.c (Fother_buffer): Don't call Fset_buffer_major_mode
1700 for *scratch* if it already existed.
1701
1702 * emacs.c (USAGE): New macro.
1703 (main): Use it to display usage information.
1704
1705 2000-01-27 Eli Zaretskii <eliz@is.elta.co.il>
1706
1707 Support for the menu-help feature:
1708
1709 * msdos.h: Change prototypes of XMenuAddSelection and
1710 XMenuActivate.
1711
1712 * msdos.c (IT_clear_end_of_line): Print the extent of the cleared
1713 part of the line to the termscript file.
1714 (IT_clear_to_end): Clear the entire line, not just its beginning.
1715 (menu_help_message, prev_menu_help_message): New variables.
1716 (IT_menu_make_room): Make room for the help_text member.
1717 (IT_menu_display): New argument disp_help; all callers changed.
1718 If disp_help is non-zero, store the help text of the active menu
1719 item in menu_help_message.
1720 (XMenuAddPane): Initialize the help_text member to NULL.
1721 (XMenuAddSelection): New argument help_text. Store it in the
1722 XMenu structure.
1723 (XMenuActivate): New argument help_callback. If the value of
1724 menu_help_message has changed since the last time, display the
1725 menu help message text while waiting for the mouse to move. Clear
1726 the echo area before exiting.
1727 (XMenuDestroy): Free the help_text member.
1728
1729 2000-01-27 Gerd Moellmann <gerd@gnu.org>
1730
1731 * xmenu.c (xmenu_show) [!USE_X_TOOLKIT]: Pass help to
1732 XMenuAddSelection. Pass help callback to XMenuActivate.
1733 (menu_help_callback) [!USE_X_TOOLKIT]: New function.
1734
1735 2000-01-27 Eli Zaretskii <eliz@is.elta.co.il>
1736
1737 * atimer.c (start_atimer) [!HAVE_SETITIMER]: Use EMACS_SET_SECS
1738 and EMACS_SET_USECS.
1739
1740 2000-01-26 Dave Love <fx@gnu.org>
1741
1742 * editfns.c (Fchar_after, Fchar_before): Doc fix.
1743
1744 * bytecode.c (Fbyte_code): Use {BEFORE,AFTER}_POTENTIAL_GC where
1745 an error may be signalled.
1746
1747 2000-01-26 Gerd Moellmann <gerd@gnu.org>
1748
1749 * s/irix6-5.h [__GNUC__ && __GNUC_MINOR__ >= 95]: Undef
1750 LD_SWITCH_SYSTEM inherited from irix5-0.h.
1751
1752 * bytecode.c (Fbyte_code) [BYTE_CODE_SAFE]: Fix typo.
1753
1754 2000-01-25 Gerd Moellmann <gerd@gnu.org>
1755
1756 * charset.c (Fstring): If there is a multibyte char among
1757 the args, always return a multibyte string.
1758
1759 2000-01-25 Gerd Moellmann <gerd@gnu.org>
1760
1761 * sysdep.c (sys_select): Turn atimers off and on instead of
1762 recording and restoring old alarm handler
1763
1764 * process.c (toplevel): Include atimer.h.
1765 (create_process_1): Rewritten.
1766 (create_process): Use atimers instead of alarm.
1767 (wait_reading_process_input) [hpux]: Turn atimers off instead
1768 of turning off SIGALRM.
1769 (wait_reading_process_input): Turn off atimers instead off
1770 calling stop_polling.
1771
1772 * emacs.c (main): Call init_atimer.
1773
1774 * keyboard.c (toplevel): Include systime.h and atimer.h.
1775 (polling_for_input): Removed because unused.
1776 (input_poll_signal) [POLL_FOR_INPUT]: Removed.
1777 (poll_timer): New variable.
1778 (poll_for_input, poll_for_input_1): New functions.
1779 (start_polling, stop_polling): Rewritten.
1780
1781 * keyboard.h (polling_for_input): Removed.
1782
1783 * atimer.h, atimer.c: New files.
1784
1785 * Makefile.in (obj): Add atimer.o.
1786 (atimer.o): New target.
1787
1788 * blockinput.h (pending_atimers): Add extern declaration.
1789 (UNBLOCK_INPUT): Rewritten. Handle pending atimers.
1790
1791 * lisp.h (popup_activated_flag): Add extern declaration.
1792
1793 * xmenu.c (popup_activated_flag): Make externally visible.
1794 (popup_activate_callback) [USE_MOTIF]: Increment
1795 popup_activated_flag.
1796 (popup_deactivate_callback) [USE_MOTIF]: Decrement it.
1797
1798 * xterm.c (toplevel): Include atimer.h.
1799 (toolkit_scroll_bar_interaction): New variable.
1800 (Fxt_process_timeouts): Removed.
1801 (x_process_timeouts): New function.
1802 (xt_action_hook): Clear toolkit_scroll_bar_interaction.
1803 (x_send_scroll_bar_event): Set toolkit_scroll_bar_interaction.
1804 (x_make_frame_visible): Call poll_for_input_1 instead of
1805 input_poll_signal. Don't call alarm.
1806 (x_initialize): Install timer calling x_process_timeouts.
1807
1808 2000-01-24 Dave Love <fx@gnu.org>
1809
1810 * s/irix5-0.h: Don't set LD_SWITCH_SYSTEM -- we use unexelf now.
1811 Don't use -cckr -- apparently not now necessary.
1812
1813 2000-01-24 Eli Zaretskii <eliz@is.elta.co.il>
1814
1815 * msdos.c (IT_menu_display): Truncate long menu lines at the right
1816 screen boundary.
1817
1818 2000-01-23 Jason Rumney <jasonr@gnu.org>
1819
1820 * w32fns.c (w32_defined_color): Apply gamma correction before
1821 trying to map to the palette.
1822 (w32_wnd_proc) [WM_ERASE_BACKGROUND]: Pass device context of frame
1823 to w32_clear_rect.
1824
1825 * w32term.c (w32_fill_rect): Do not try to deal with NULL hdc
1826 here. Callers changed to always pass real device context.
1827 (w32_draw_bitmap): Likewise.
1828 (w32_get_glyph_overhangs): Likewise.
1829 (w32_draw_box_rect): Make use of s->hdc rather than getting a new
1830 one.
1831 (w32_set_vertical_scroll_bar): Pass correct HWND parameters to
1832 pfnSetScrollInfo and SetScrollRange.
1833 (x_get_char_face_and_encoding): Don't turn iso8859-1 characters
1834 back into MULE characters after decoding them.
1835 (x_get_glyph_face_and_encoding): Likewise.
1836 (w32_per_char_metric): Use GetCharExtentPoint32W as fallback when
1837 GetCharABCWidthsW fails, since this is defined on Windows 9x.
1838 (x_produce_glyphs): Calculate per char metrics for a character
1839 that we know exists in default font when font_not_found_p is true.
1840
1841 2000-01-22 Jason Rumney <jasonr@gnu.org>
1842
1843 * makefile.nt (intervals.obj, composite.obj): New modules.
1844 (composite.h): Added as dependency where appropriate.
1845
1846 * w32gui.h (XGCValue): New struct for emulating X GCs.
1847
1848 * w32term.h (XCharStruct): New struct for emulating X.
1849
1850 * w32console.c (turn_on_face, turn_off_face): New functions.
1851 (change_line_highlight): New prototype for new redisplay.
1852 (write_glyphs): Support multibyte text. Support faces.
1853
1854 * w32faces.c: Complete rewrite for new redisplay based on new
1855 xfaces.c.
1856
1857 * w32fns.c: Use SELECTED_FRAME macro in place of selected_frame
1858 throughout. struct frame * in place of FRAME_PTR.
1859 Skeleton support for images, toolbars, tooltips from xfns.c.
1860 (Fx_create_frame): Use system default for default scroll bar
1861 width.
1862 (w32_get_arg): Renamed from x_get_arg.
1863 (Fx_file_dialog): New function.
1864 (w32_list_fonts): Check cache before asking system.
1865 (Vw32_enable_synthesized_fonts): New variable.
1866 (Vw32_enable_italics): Obsolete, removed.
1867
1868 * w32inevt.c (get_frame, w32_console_mouse_position, mouse_moved_to):
1869 Use SELECTED_FRAME macro.
1870
1871 * w32menu.c: Add skeleton support for help strings on menus.
1872 (add_menu_item): Native checkbox and radio support added, but not
1873 yet enabled due to bugs.
1874 (push_menu_item): Add parameters type, selection and help.
1875 Callers updated.
1876 Formatting changes to reduce unnecessary diffs with xmenu.c.
1877
1878 * w32select.c (Fw32_set_clipboard_data): Update call to
1879 find_charset_in_str.
1880
1881 * w32term.c: Complete rewrite for new redisplay based on new
1882 xterm.c with necessary sections merged back in from old w32term.c.
1883
1884 2000-01-21 Richard M. Stallman <rms@gnu.org>
1885
1886 * data.c (set_internal): Further fix in same criterion.
1887
1888 2000-01-20 Richard M. Stallman <rms@gnu.org>
1889
1890 * data.c (set_internal): Fix the criteria for whether
1891 to swap out the old cached binding.
1892
1893 2000-01-19 Dave Love <fx@gnu.org>
1894
1895 * lread.c: (syms_of_lread) [user-init-file]: Doc change.
1896
1897 2000-01-18 Kenichi Handa <handa@etl.go.jp>
1898
1899 * regex.c (re_compile_fastmap): While checking a range table for
1900 `charset', skip flag bits for a character class correctly.
1901
1902 2000-01-17 Gerd Moellmann <gerd@gnu.org>
1903
1904 * m/news-risc.h (LD_SWITCH_MACHINE): Define differently for GCC.
1905
1906 * xfns.c (x_window): Call lw_create_widget with new parameter
1907 list.
1908
1909 * widget.c (EmacsFrameSetCharSize): Change size of children first
1910 because of problems with main window geometry management under
1911 Lesstif.
1912
1913 * xmenu.c (enum menu_item_idx): New enumeration replacing defines
1914 MENU_ITEMS_ITEM_.*.
1915 (MENU_ITEMS_ITEM_HELP): New enumerator.
1916 (push_menu_item): Add parameter HELP. Record help in menu_items.
1917 (single_menu_item, single_submenu, list_of_items): Call
1918 push_menu_item with new parameter.
1919 (single_submenu): Set help string in widget value.
1920 (menu_highlight_callback): New function.
1921 (set_frame_menubar): Call lw_create_widget with new
1922 parameter list.
1923 (xmenu_show, xdialog_show): Ditto.
1924
1925 2000-01-13 Gerd Moellmann <gerd@gnu.org>
1926
1927 * sound.c (Fplay_sound): Improve doc string.
1928
1929 2000-01-11 Richard M. Stallman <rms@gnu.org>
1930
1931 * lisp.h (set_internal): Enter the new arg.
1932
1933 * eval.c (specbind): Record buffer-local variables specially,
1934 indicating which buffer's binding was saved.
1935 (unbind_to): Restore buffer-local variables specially
1936 in the proper buffer.
1937
1938 * data.c (set_internal): New arg BUF.
1939
1940 * eval.c (specbind, unbind_to): Pass new arg to set_internal.
1941 * data.c (Fset): Pass new arg to set_internal.
1942 * bytecode.c (Fbyte_code): Pass new arg to set_internal.
1943
1944 2000-01-11 Gerd Moellmann <gerd@gnu.org>
1945
1946 * .gdbinit: Adapt to new strings. Add xbacktrace, xreload,
1947 xprintsym.
1948
1949 2000-01-11 Richard M. Stallman <rms@gnu.org>
1950
1951 * minibuf.c (Ftry_completion): Doc fix.
1952
1953 2000-01-11 Gerd Moellmann <gerd@gnu.org>
1954
1955 * keyboard.c (Fclear_this_command_keys): Clear recent_keys
1956 vector, too.
1957
1958 2000-01-11 Andreas Schwab <schwab@suse.de>
1959
1960 * coding.c (code_convert_region): Initialize total_skip.
1961
1962 2000-01-08 Dave Love <fx@gnu.org>
1963
1964 * eval.c (Fuser_variable_p): Check customizability too.
1965
1966 2000-01-07 Gerd Moellmann <gerd@gnu.org>
1967
1968 * minibuf.c (Fcompleting_read): Doc fix.
1969
1970 2000-01-05 Gerd Moellmann <gerd@gnu.org>
1971
1972 * s/freebsd.h (C_SWITCH_SYSTEM): Add -I /usr/local/include and
1973 -L /usr/local/lib.
1974
1975 * xfns.c (x_create_im): New function to set IM and IC of a frame.
1976 Check that input style is supported before trying to create an
1977 IC for it.
1978 (x_window): Call x_create_im.
1979
1980 2000-01-04 Gerd Moellmann <gerd@gnu.org>
1981
1982 * xfns.c (current_gif_memory_src): New variable.
1983 (gif_load): Record the address of the current memory source
1984 in current_gif_memory_src.
1985 (gif_read_from_memory): Use current_gif_memory_src.
1986
1987 * systime.h (EMACS_GET_TIME, EMACS_ADD_TIME, EMACS_SUB_TIME): Give
1988 macros statement form.
1989
1990 * sound.c (struct sound): Renamed from struct sound_file.
1991 (struct sound): Add members `data' and `header_size'.
1992 (enum sound_attr): Add SOUND_DATA.
1993 (current_sound, current_sound_device): Variables renamed from
1994 sound_file and sound_device.
1995 (parse_sound): Parse :data.
1996 (parse_sound): Handle sound data in strings.
1997 (find_sound_type): Function renamed from find_sound_file_type.
1998 (wav_init, au_init): Fail if sound's header_size is smaller than
1999 needed header size.
2000 (wav_play, au_play): Play sounds from string data.
2001
2002 * puresize.h (BASE_PURE_SIZE): Increase to 600000.
2003
2004 * lisp.h: Add prototype for allocate_string_data.
2005
2006 * alloc.c (Fgarbage_collect): Return number of live and free
2007 strings.
2008
2009 * alloc.c (mark_buffer): Remove code in #if 0.
2010 (gc_sweep): Ditto.
2011 (UNMARK_BALANCE_INTERVALS): Give the macro statement form.
2012 (strings_consed): New variable.
2013 (allocate_string): Set it.
2014 (syms_of_alloc): Add DEFVAR_INT for strings_consed.
2015 (Fmemory_use_counts): Return strings_consed. Use Flist.
2016
2017 * alloc.c: General cleanup in comments etc. Remove conditional
2018 compilation for `standalone'.
2019
2020 * lisp.h (struct Lisp_String): Make DATA member `unsigned char *'.
2021
2022 * alloc.c (MARK_STRING, UNMARK_STRING, STRING_MARKED_P):
2023 (GC_STRING_BYTES, GC_STRING_CHARS): New macros.
2024 (DONT_COPY_FLAG): Removed.
2025 (SBLOCK_SIZE, LARGE_STRING_BYTES): New macros.
2026 (struct sdata, struct sblock): New
2027 (struct string_block): Rewritten.
2028 (STRINGS_IN_STRING_BLOCK): New macro.
2029 (oldest_sblock, current_sblock, total_strings, total_free_strings)
2030 (large_sblocks, string_blocks, string_free_list): New variables.
2031 (NEXT_FREE_LISP_STRING, SDATA_OF_STRING, SDATA_SIZE): New macros.
2032 (init_strings): Rewritten.
2033 (allocate_string, allocate_string_data, compact_small_strings)
2034 (free_large_strings, sweep_strings): New functions.
2035 (STRING_BLOCK_SIZE, STRING_BLOCK_OUTSIZE)
2036 (struct string_block_head, current_string_block)
2037 (first_string_block, large_string_blocks, STRING_FULLSIZE)
2038 (STRING_PAD): Removed.
2039 (make_uninit_multibyte_string, make_pure_string): Rewritten.
2040 (Fgarbage_collect): Don't set mark bit in large strings.
2041 (mark_object): Mark strings differently. Mark symbol names
2042 differently.
2043 (survives_gc_p): Test marked strings differently.
2044 (gc_sweep): Sweep strings differently, unmark strings in
2045 symbol names.
2046 (compact_strings): Removed.
2047
2048 2000-01-04 Eli Zaretskii <eliz@is.elta.co.il>
2049
2050 * xfaces.c (syms_of_xfaces): defsubr Scolor_gray_p and
2051 Scolor_supported_p even if HAVE_X_WINDOWS is not defined.
2052
2053 2000-01-04 Kenichi Handa <handa@etl.go.jp>
2054
2055 * fileio.c (Finsert_file_contents): Signal error if visiting file
2056 in a non-empty buffer.
2057
2058 * term.c (encode_terminal_code): Fix the previous change.
2059
2060 2000-01-03 Gerd Moellmann <gerd@gnu.org>
2061
2062 * xfaces.c (syms_of_xfaces): Change Sface_color_gray_p to
2063 Scolor_gray_p, Sface_color_supported_p to Scolor_supported_p.
2064
2065 * s/hpux9.h (NO_EDITRES): Define even if HAVE_LIBXMU.
2066
2067 2000-01-03 Eli Zaretskii <eliz@is.elta.co.il>
2068
2069 * xdisp.c (handle_single_display_prop) [HAVE_WINDOW_SYSTEM]: No
2070 need to test for MSDOS frames.
2071
2072 2000-01-03 Eli Zaretskii <eliz@is.elta.co.il>
2073
2074 * dosfns.c (unspecified_colors): Remove.
2075 (msdos_stdcolor_idx): Use global variables unspecified_fg and
2076 unspecified_bg.
2077 (msdos_stdcolor_name): Return strings for unspecified fore- and
2078 back-ground colors.
2079
2080 * xfaces.c (Qunspecified_fg, Qunspecified_bg): Remove.
2081 (syms_of_xfaces): Remove their staticpro's.
2082 (tty_color_name): Return Lisp strings for unspecified fore- and
2083 back-ground colors.
2084 (Finternal_set_lisp_face_attribute): Remove the special treatment
2085 for Qunspecified_{f,b}g.
2086 (realize_default_face): Replace Qunspecified_{f,b}g with a Lisp
2087 string.
2088
2089 2000-01-03 Gerd Moellmann <gerd@gnu.org>
2090
2091 * xdisp.c (reseat_at_next_visible_line_start): Position before
2092 newline only if ending up on a newline.
2093 (next_element_from_ellipsis): Return success. Handle case of
2094 displaying no ellipsis. Fix case of ellipsis defined in display
2095 table.
2096 (next_element_from_buffer): Return 0 if next_element_from_ellipsis
2097 returns 0.
2098
2099 2000-01-03 Eli Zaretskii <eliz@is.elta.co.il>
2100
2101 * xfaces.c (Fcolor_gray_p): Renamed from face-color-gray-p.
2102 (Fcolor_supported_p): Renamed from face-color-supported-p.
2103
2104 2000-01-02 Eli Zaretskii <eliz@is.elta.co.il>
2105
2106 * xfaces.c (tty_defined_color): Pass frame to tty-color-desc. The
2107 list of colors renamed to tty-defined-color-alist.
2108 (tty_color_name): Pass the frame to tty-color-by-index.
2109 (realize_tty_face): tty-color-alist is now a function which
2110 accepts the frame as argument.
2111
2112 * term.c (Ftty_display_color_p): Accept an optional argument
2113 FRAME.
2114
2115 2000-01-02 Eli Zaretskii <eliz@is.elta.co.il>
2116
2117 * term.c (insert_glyphs): Pass glyph, not &glyph, to
2118 encode_terminal_code.
2119
2120 2000-01-02 Eli Zaretskii <eliz@is.elta.co.il>
2121
2122 * dispnew.c (mode_line_string): Support termcap frames as well.
2123
2124 2000-01-01 Gerd Moellmann <gerd@gnu.org>
2125
2126 * syntax.c (Fforward_word): Undo previous change.
2127
2128 * editfns.c (Fconstrain_to_field): Don't constrain if
2129 inhibit-field-text-motion is non-nil.
2130 (Fline_beginning_position): Undo previous change.
2131 (Fline_end_position): Ditto.
2132
2133 * syntax.c (Fforward_word): Notice field boundaries only if
2134 inhibit-field-text-motion is nil.
2135
2136 * lisp.h: Add extern declaration for Vinhibit_field_text_motion.
2137
2138 * editfns.c (Vinhibit_field_text_motion): New variable.
2139 (inhibit-field-text-motion): New DEFVAR_LISP.
2140 (Fline_beginning_position, Fline_end_position): Notice field
2141 boundaries only if inhibit-field-text-motion is nil.
2142
2143 * xfns.c (x_create_x_image_and_pixmap): Remove parameter FILE.
2144 All calls adjusted.
2145 (x_build_heuristic_mask): Likewise.
2146 (xbm_load_image_from_file): Change error output.
2147 (xbm_load, xpm_load, pbm_load, png_load, jpeg_load, tiff_load)
2148 (gif_load, gs_load, x_kill_gs_process): Ditto.
2149
2150 * xfns.c (gif_load): Avoid sign extension and thus out of bounds
2151 color indices when accessing raster pixels.
2152 (gif_image_p, png_image_p, jpeg_image_p, tiff_image_p): Allow only
2153 one of :file or :data.
2154 (enum pbm_keyword_index): Add PBM_DATA.
2155 (pbm_format): Add :data.
2156 (pbm_image_p): Allow either :file or :data.
2157 (pbm_read_file): New function.
2158 (pbm_scan_number): Rewritten to read from string.
2159 (pbm_load): Support :data.
2160
2161 1999-12-31 Gerd Moellmann <gerd@gnu.org>
2162
2163 * xfns.c: New image functions adapted to Emacs conventions.
2164 (png_load, tiff_load, jpeg_load, gif_load): Always GCPRO local
2165 variable `file'.
2166
2167 1999-12-31 William M. Perry <wmperry@aventail.com>
2168
2169 * xfns.c (jpeg_format): Added the :data keyword
2170 (jpeg_image_p): JPEG is valid with :file _or_ :data
2171 (jpeg_memory_src): Defined new JPEG image source to read from a
2172 memory buffer.
2173 (jpeg_load): Pay attention to the :data keyword if specified.
2174 Instantiates a jpeg_memory_src instead of jpeg_stdio_src if
2175 found.
2176 (png_format): Added the :data keyword
2177 (png_image_p): PNG is valid with :file _or_ :data
2178 (png_read_from_memory): New PNG read function to read from a
2179 memory buffer.
2180 (png_load): Pay attention to the :data keyword if specified. Uses
2181 png_set_read_fn() instead of png_init_io() if specified.
2182 (tiff_format): Added the :data keyword for TIFF images.
2183 (tiff_image_p): TIFF is valid with :file _or_ :data
2184 (tiff_read_from_memory): Defined new TIFF I/O functions to read
2185 from a memory buffer.
2186 (tiff_load): Pay attention to the :data keyword if specified.
2187 Uses TIFFClientOpen() instead of TIFFOpen() if specified.
2188 (gif_format): Added the :data keyword
2189 (gif_image_p): GIF is valid with :file _or_ :data
2190 (gif_read_from_memory): New GIF input function to read from a
2191 memory buffer.
2192 (gif_load): Pay attention to the :data keyword. Uses DGifOpen()
2193 instead of DGifOpenFileName() if specified.
2194
2195 1999-12-31 Gerd Moellmann <gerd@gnu.org>
2196
2197 * xdisp.c (next_element_from_buffer): Change assertion at the end
2198 because it doesn't hold when there's an overlay string at the end
2199 from which we deliver an image.
2200
2201 1999-12-30 Eli Zaretskii <eliz@is.elta.co.il>
2202
2203 * msdos.c (IT_update_begin): Don't dereference members of struct
2204 window for deleted windows.
2205
2206 1999-12-30 Gerd Moellmann <gerd@gnu.org>
2207
2208 * abbrev.c (Fexpand_abbrev): If expanding an abbrev which has only
2209 a hook, and the hook has a non-nil `no-self-insert' property, let
2210 the return value of the hook specify whether an expansion took
2211 place. If it returns nil, no expansion has been performed.
2212
2213 * xterm.c (x_make_frame_visible): Wait for frame becoming visible
2214 differently.
2215
2216 1999-12-30 Eli Zaretskii <eliz@is.elta.co.il>
2217
2218 * msdos.c (IT_write_glyphs): Track last changes to struct glyph.
2219
2220 1999-12-29 Eli Zaretskii <eliz@is.elta.co.il>
2221
2222 * dispnew.c (mode_line_string): Support MS-DOS frames.
2223
2224 1999-12-29 Gerd Moellmann <gerd@gnu.org>
2225
2226 * eval.c (syms_of_eval): Initialize debugger_may_continue.
2227
2228 1999-12-29 Kenichi Handa <handa@etl.go.jp>
2229
2230 * process.c (read_process_output): Fix the args CHARPOS and LENINS
2231 to signal_after_change.
2232
2233 1999-12-28 Eli Zaretskii <eliz@is.elta.co.il>
2234
2235 * msdos.c (dos_set_window_size) [__DJGPP__ > 1]: If the frame
2236 dimensions changed, invalidate the mouse highlight info.
2237 (disable_mouse_highlight, help_echo, previous_help_echo): New
2238 variables.
2239 (IT_set_mouse_pointer, show_mouse_face, clear_mouse_face)
2240 (fast_find_position, IT_note_mode_line_highlight)
2241 (IT_note_mouse_highlight): New functions.
2242 (IT_update_begin): If the redisplay affects the window where the
2243 mouse highlight is, clear the highlight. If the frame where the
2244 highlight was displayed was killed, invalidate the highlight
2245 info.
2246 (IT_update_end): Reset the highlight flag. Reset the mouse
2247 highlight-defer flag.
2248 (IT_frame_up_to_date): New function, if mouse highlight was
2249 deferred due to GC, do it now.
2250 (internal_terminal_init): Initialize mouse-highlight related
2251 members of the_only_x_display. Assign IT_frame_up_to_date to
2252 frame_up_to_date_hook.
2253 (dos_rawgetc): If the mouse moved, update mouse highlight. If
2254 help_echo changed value, generate a HELP_EVENT event.
2255 (syms_of_msdos): Staticpro help_echo and previous_help_echo.
2256
2257 * msdos.h (struct display_info): New.
2258 (struct x_output): Add the display_info member.
2259 (FRAME_X_DISPLAY_INFO): New macro.
2260
2261 1999-12-28 Gerd Moellmann <gerd@gnu.org>
2262
2263 * xdisp.c (try_window_id): Compute BEG_UNCHANGED and END_UNCHANGED
2264 if MODIFF > 1.
2265 (dump_glyph_row): Adapt to changes in struct glyph.
2266
2267 * buffer.c (modify_overlay): Always compute unchanged info.
2268
2269 1999-12-27 Kenichi Handa <handa@etl.go.jp>
2270
2271 * dispextern.h (FACE_FROM_ID): Cast the arg ID to `unsigned'.
2272
2273 1999-12-27 Kenichi Handa <handa@etl.go.jp>
2274
2275 The following changes are to use more bits for face IDs.
2276
2277 * lisp.h (GLYPH): Defined as `int', not `unsigned int'. Now the
2278 lowest 8 bits are single byte character code, the bits above are
2279 face ID.
2280 (GLYPH_MASK_FACE, GLYPH_MASK_CHAR): Adjusted for the change
2281 above.
2282 (FAST_MAKE_GLYPH, FSST_GLYPH_FACE): Likewise.
2283 (GLYPH_MASK_REV_DIR, GLYPH_MASK_PADDING): Macros deleted.
2284
2285 * charset.h (CHAR_BYTES): Use ((1 << CHARACTERBITS) - 1) instead
2286 of GLYPH_MASK_CHAR.
2287
2288 * charset.c (char_bytes): Use ((1 << CHARACTERBITS) - 1) instead
2289 of GLYPH_MASK_CHAR.
2290
2291 * dispextern.h (struct glyph): Make face_id and padding_p the top
2292 level members. Change members in union `u'.
2293 (GLYPH_EQUAL_P): Check also members face_id and padding_p.
2294 (GLYPH_CHAR_AND_FACE_EQUAL_P): New macro.
2295 (SET_CHAR_GLYPH): Adjusted for the change of struct glyph.
2296 (CHAR_GLYPH_PADDING_P): Likewise.
2297 (GLYPH_FROM_CHAR_GLYPH): Likewise. Always return -1 for multibyte
2298 characters.
2299
2300 * dispnew.c (line_hash_code, direct_output_for_insert): Adjusted
2301 for the change of struct glyph.
2302 (line_draw_cost): Adjusted for the change of
2303 GLYPH_FROM_CHAR_GLYPH.
2304 (count_match): Use macro GLYPH_CHAR_AND_FACE_EQUAL_P.
2305
2306 * term.c (encode_terminal_code): Adjusted for the change of struct
2307 glyph and GLYPH_FROM_CHAR_GLYPH.
2308 (write_glyphs, insert_glyphs, append_glyph): Adjusted for the
2309 change of struct glyph.
2310
2311 * xdisp.c: All codes adjusted for the change of struct glyph.
2312
2313 * xterm.c: All codes adjusted for the change of struct glyph.
2314
2315 1999-12-27 Kenichi Handa <handa@etl.go.jp>
2316
2317 * composite.h (struct composition): Change the order of declaring
2318 members to reduce the byte size of the structure.
2319
2320 1999-12-25 Gerd Moellmann <gerd@gnu.org>
2321
2322 * search.c (looking_at_1): Reset immediate_quit before modifying
2323 global data.
2324
2325 1999-12-24 Kenichi Handa <handa@etl.go.jp>
2326
2327 * process.c (read_process_output): Fix the arg FROM to
2328 update_compositions.
2329
2330 1999-12-22 Richard M. Stallman <rms@gnu.org>
2331
2332 * search.c (Freplace_match): For nonliteral replacement in buffer,
2333 construct all the new text first, then insert all at once.
2334
2335 1999-12-22 Dave Love <fx@gnu.org>
2336
2337 * xfns.c (Fx_show_tip): Gcpro `timeout' too.
2338
2339 1999-12-22 Gerd Moellmann <gerd@gnu.org>
2340
2341 * xfns.c (Fx_create_frame): Move x_default_parameter calls that
2342 lead to size changes to after the X window has been created.
2343
2344 * xfaces.c (realize_x_face): Don't use uninitialized local
2345 variable in xassert.
2346
2347 1999-12-22 Kenichi Handa <handa@etl.go.jp>
2348
2349 * xfaces.c (face_color_supported_p): Check by tty_defined_color
2350 only when the frame is not for a window system.
2351
2352 1999-12-22 Gerd Moellmann <gerd@gnu.org>
2353
2354 * buffer.c (Fset_buffer_multibyte): Arrange for a thorough
2355 redisplay after changing the multibyteness of a buffer.
2356
2357 * xterm.c (XTread_socket): At the beginning of the loop, pass the
2358 frame's X window to XFilterEvent instead of None because that's
2359 the X window for which the IC was created. This makes dead
2360 accents work when the pointer is not in Emacs' frame.
2361 (XTread_socket) <KeyPress>: Don't call XFilterEvent here.
2362
2363 1999-12-20 Dave Love <fx@gnu.org>
2364
2365 * xfns.c (Fx_show_tip): Add missing UNGCPRO.
2366
2367 1999-12-19 Gerd Moellmann <gerd@gnu.org>
2368
2369 * eval.c (debugger_may_continue): New variable.
2370 (syms_of_eval): Add a DEFVAR_BOOL for it.
2371 (call_debugger): Bind it.
2372
2373 1999-12-19 Eli Zaretskii <eliz@is.elta.co.il>
2374
2375 * msdos.c (IT_set_face): Don't swap face colors when highlight or
2376 fp->tty_reverse_p is set, unless the computed colors are identical
2377 to frame colors. Print both original and computed colors to
2378 termscript file.
2379 (IT_write_glyphs): Track the changes in handling of composite
2380 characters.
2381 (IT_set_frame_parameters): Don't set frame colors from
2382 unspecified-fg and unspecified-bg pseudo-colors.
2383
2384 1999-12-17 Dave Love <fx@gnu.org>
2385
2386 * data.c (Fkeywordp): New function.
2387 (syms_of_data): Install it.
2388
2389 1999-12-16 Eli Zaretskii <eliz@is.elta.co.il>
2390
2391 * xfaces.c (tty_defined_color): Fix last change.
2392
2393 1999-12-15 Gerd Moellmann <gerd@gnu.org>
2394
2395 * xdisp.c (redisplay_window) <optional new window start>: Check
2396 that window start is in [BEGV..ZV].
2397
2398 1999-12-15 Eli Zaretskii <eliz@is.elta.co.il>
2399
2400 * dispextern.h (FACE_TTY_DEFAULT_FG_COLOR)
2401 (FACE_TTY_DEFAULT_BG_COLOR): New macros.
2402
2403 * xfaces.c (Qunspecified_fg, Qunspecified_bg): New variables.
2404 (syms_of_xfaces): Initialize and staticpro them.
2405 (tty_defined_color): If the color name is unspecified-fg or
2406 unspecified-bg, return FACE_TTY_DEFAULT_FG_COLOR and
2407 FACE_TTY_DEFAULT_BG_COLOR, respectively, as the pixel value.
2408 (tty_color_name): If the color pixel value is either
2409 FACE_TTY_DEFAULT_FG_COLOR or FACE_TTY_DEFAULT_BG_COLOR, return
2410 Qunspecified_fg or Qunspecified_bg, respectively.
2411 (Finternal_set_lisp_face_attribute): Allow values Qunspecified_fg
2412 and Qunspecified_bg for foreground and background colors.
2413 (realize_default_face): If the foreground and background colors
2414 are not specified, default to Qunspecified_fg and Qunspecified_bg.
2415 (realize_tty_face): By default, set the face colors to
2416 FACE_TTY_DEFAULT_FG_COLOR and FACE_TTY_DEFAULT_BG_COLOR.
2417 [MSDOS]: Handle FACE_TTY_DEFAULT_FG_COLOR and
2418 FACE_TTY_DEFAULT_BG_COLOR when face colors are not defined.
2419 Reverse the colors if the default colors were reversed.
2420
2421 * dispnew.c (init_display): Initialize the frame pixels of the
2422 initial frame to FACE_TTY_DEFAULT_FG_COLOR and
2423 FACE_TTY_DEFAULT_BG_COLOR.
2424
2425 * term.c (turn_on_face): If the default fore- and background
2426 colors are reversed, enter inverse video mode. Don't send color
2427 escape sequences for unspecified foreground and background colors.
2428 (turn_off_face): Handle unspecified-fg and unspecified-bg colors.
2429
2430 * dosfns.c (unspecified_colors): New variable.
2431 (msdos_stdcolor_idx): Handle unspecified-fg and unspecified-bg
2432 color names, return FACE_TTY_DEFAULT_FG_COLOR and
2433 FACE_TTY_DEFAULT_BG_COLOR, respectively.
2434 (msdos_stdcolor_name): Handle FACE_TTY_DEFAULT_FG_COLOR and
2435 FACE_TTY_DEFAULT_BG_COLOR, return Qunspecified_fg and
2436 Qunspecified_bg, respectively.
2437
2438 * msdos.c (IT_set_face): Support FACE_TTY_DEFAULT_FG_COLOR and
2439 FACE_TTY_DEFAULT_BG_COLOR as pixel values.
2440
2441 1999-12-15 Kenichi Handa <handa@etl.go.jp>
2442
2443 * coding.c (code_convert_region): Fix the secoding arg to
2444 update_compositions.
2445
2446 1999-12-15 Kenichi Handa <handa@etl.go.jp>
2447
2448 The following changes are for the new composition mechanism. We
2449 have deleted `composition' charset and composite characters,
2450 instead introduced a special text property `composition'.
2451
2452 * Makefile.in (INTERVAL_SRC): Include composite.h.
2453 (INTERVAL_OBJ): Include composite.o.
2454 (SOME_MACHINE_OBJECTS): Include composite.o.
2455 (casefiddle.o) (dispnew.o) (indent.o) (process.o) (search.o)
2456 (syntax.o) (window.o) (xdisp.o) (xfaces.o) (xterm.o) (print.o):
2457 Depend on composite.h.
2458 (doc.o): Depend on charset.h.
2459 (keyboard.o) (textprop.o) (intervals.o): Depend on INTERVAL_SRC.
2460 (composite.o): New target.
2461
2462 * alloc.c (Fmake_string): Adjusted for the change of CHAR_STRING.
2463
2464 * callproc.c (Fcall_process): Call code_convert_string to encode
2465 arguments. Use CODING_REQUIRE_DECODING to check if the process
2466 output should be decoded.
2467
2468 * casefiddle.c: Include composite.h.
2469 (casify_object): Use MAX_MULTIBYTE_LENGTH to allocate memory for a
2470 multibyte character. Adjusted for the change of CHAR_STRING.
2471 (casify_region): Likewise. Call update_compositions.
2472
2473 * category.h (CATEGORY_SET): Delete codes for a composite
2474 character.
2475
2476 * category.c (word_boundary_p): Delete codes for a composite
2477 character.
2478 (Fmake_category_table): New function.
2479 (syms_of_category): Defsubr it.
2480
2481 * ccl.c (CCL_WRITE_CHAR): Adjusted for the change of CHAR_STRING.
2482 (ccl_driver): Delete codes for a composite character.
2483
2484 * charset.h: In this entry, just `Modified' means that codes for a
2485 composite character is deleted.
2486 (LEADING_CODE_COMPOSITION) (CHARSET_COMPOSITION)
2487 (charset_composition) (MIN_CHAR_COMPOSITION)
2488 (MAX_CHAR_COMPOSITION) (GENERIC_COMPOSITION_CHAR)
2489 (COMPOSITE_CHAR_P) (MAKE_COMPOSITE_CHAR) (COMPOSITE_CHAR_ID)
2490 (PARSE_COMPOSITE_SEQ) (PARSE_CHARACTER_SEQ): Deleted.
2491 (MAX_CHAR) (CHARSET_VALID_P) (CHARSET_DEFINED_P) (CHARSET_AT)
2492 (FIRST_CHARSET_AT) (SAME_CHARSET_P) (MAKE_NON_ASCII_CHAR)
2493 (PARSE_MULTIBYTE_SEQ) (SPLIT_NON_ASCII_CHAR) (CHAR_PRINTABLE_P):
2494 Modified.
2495 (SPLIT_STRING): Call split_string, not split_non_ascii_string.
2496 (CHAR_STRING): Delete WORKBUF argument. Call char_string, not
2497 non_ascii_char_to_string.
2498 (STRING_CHAR): Call string_to_char, not string_to_non_ascii_char.
2499 (STRING_CHAR_AND_LENGTH): Likewise.
2500 (FETCH_CHAR_ADVANCE): New macro.
2501 (MAX_COMPONENT_COUNT) (struct cmpchar_info): Deleted.
2502 (MAX_MULTIBYTE_LENGTH): New macro.
2503 (MAX_LENGTH_OF_MULTI_BYTE_FORM): Deleted.
2504 (find_charset_in_str): Argument adjusted.
2505 (CHAR_LEN): Modified.
2506
2507 * charset.c: In this entry, just `Modified' means that codes for a
2508 composite character is deleted.
2509 (Qcomposition) (leading_code_composition)
2510 (charset_composition) (min_composite_char) (cmpchar_table)
2511 (cmpchar_table_size) (n_cmpchars): Deleted.
2512 (SPLIT_COMPOSITE_SEQ): Deleted.
2513 (SPLIT_MULTIBYTE_SEQ): Modified.
2514 (char_to_string): Renamed from non_ascii_char_to_string.
2515 Modified.
2516 (string_to_char): Renamed from string_to_non_ascii_char.
2517 (split_string): Renamed from split_non_ascii_string.
2518 (char_printable_p) (Fsplit_char)
2519 (Ffind_charset_region) (Ffind_charset_string) (char_valid_p)
2520 (char_bytes) (Fchar_width) (strwidth): Modified.
2521 (find_charset_in_str): Argument CMPCHARP deleted. Modified.
2522 (Fstring): Adjusted for the change of CHAR_STRING. Modified.
2523 (hash_string) (CMPCHAR_HASH_TABLE_SIZE) (cmpchar_hash_table)
2524 (CMPCHAR_HASH_SIZE) (CMPCHAR_HASH_USED) (CMPCHAR_HASH_CMPCHAR_ID)
2525 (str_cmpchar_id) (cmpchar_component) (Fcmpcharp)
2526 (Fcmpchar_component) (Fcmpchar_cmp_rule) (Fcmpchar_cmp_rule_p)
2527 (Fcmpchar_cmp_count): Deleted.
2528 (Fcompose_string): Implemented by Emacs Lisp in composite.el.
2529 (init_charset_once): Modified.
2530 (syms_of_charset): Modified.
2531
2532 * cmds.c (internal_self_insert): Adjusted for the change of
2533 CHAR_STRING.
2534
2535 * coding.h (emacs_code_class_type): Delete the member
2536 EMACS_leading_code_composition.
2537 (COMPOSING_NO) (COMPOSING_WITH_RULE_HEAD) (COMPOSING_NO_RULE_HEAD)
2538 (COMPOSING_WITH_RULE_TAIL) (COMPOSING_NO_RULE_TAIL)
2539 (COMPOSING_WITH_RULE_RULE) (COMPOSING_HEAD_P)
2540 (COMPOSING_WITH_RULE_P): Macros deleted.
2541 (COMPOSITION_DATA_SIZE) (COMPOSITION_DATA_MAX_BUNCH_LENGTH): New
2542 macros.
2543 (struct composition_data): New structure.
2544 (CODING_FINISH_INSUFFICIENT_CMP): New macro.
2545 (struct coding_system): New members composition_rule_follows,
2546 cmp_data, cmp_data_start, cmp_data_index.
2547 (coding_save_composition) (coding_free_composition_data)
2548 (coding_adjust_composition_offset): Extern them.
2549
2550 * coding.c: Include composite.h.
2551 (DECODE_CHARACTER_ASCII): Don't handle composition here.
2552 (DECODE_CHARACTER_DIMENSION1): Likewise. Don't check the validity
2553 of multibyte code here.
2554 (DECODE_CHARACTER_DIMENSION2): Likewise.
2555 (detect_coding_emacs_mule): Change the case label from
2556 EMACS_leading_code_composition to 0x80.
2557 (detect_coding_iso2022): Handle new composition sequence.
2558 (DECODE_ISO_CHARACTER): Likewise.
2559 (check_composing_code): Deleted.
2560 (coding_allocate_composition_data): New function.
2561 (CODING_ADD_COMPOSITION_START) (CODING_ADD_COMPOSITION_END)
2562 (CODING_ADD_COMPOSITION_COMPONENT) (DECODE_COMPOSITION_START)
2563 (DECODE_COMPOSITION_END) (DECODE_COMPOSITION_RULE): New macros.
2564 (decode_coding_iso2022): Handle new composition sequence.
2565 (ENCODE_ISO_CHARACTER): Don't check composition here.
2566 (ENCODE_COMPOSITION_RULE) (ENCODE_COMPOSITION_START): New macros.
2567 (ENCODE_COMPOSITION_NO_RULE_START)
2568 (ENCODE_COMPOSITION_WITH_RULE_START): Deleted.
2569 (ENCODE_COMPOSITION_END): Handle new composition sequence.
2570 (ENCODE_COMPOSITION_FAKE_START): New macro.
2571 (encode_coding_iso2022): Handle new composition sequence.
2572 (ENCODE_SJIS_BIG5_CHARACTER): Delete superfluous `;' at the tail.
2573 (encode_coding_sjis_big5): Ignore composition.
2574 (setup_coding_system): Initialize new members of struct
2575 coding_system. Enable composition only when the coding system has
2576 `composition' property t.
2577 (coding_free_composition_data) (coding_adjust_composition_offset)
2578 (coding_save_composition) (coding_restore_composition): New
2579 functions.
2580 (code_convert_region): Call coding_save_composition for encoding
2581 and coding_allocate_composition_data for decoding. Don't skip
2582 ASCII characters if we handle composition on encoding. Call
2583 signal_after_change with Check_BORDER.
2584 (code_convert_string): Call coding_save_composition for encoding
2585 and coding_allocate_composition_data for decoding. Don't skip
2586 ASCII characters if we handle composition on encoding.
2587 (code_convert_string1): Set Vlast_coding_system_used after calling
2588 code_convert_string.
2589 (code_convert_string_norecord): Disable composition.
2590 (Fset_terminal_coding_system_internal): Likewise.
2591 (Fset_safe_terminal_coding_system_internal): Likewise.
2592 (Fset_keyboard_coding_system_internal): Likewise.
2593 (init_coding_once): Set emacs_code_class[0x80] to
2594 EMACS_invalid_code.
2595
2596 * composite.h: New file.
2597
2598 * composite.c: New file.
2599
2600 * data.c (Faref): Delete codes for a composite character..
2601 (Faset): Likewise. Adjusted for the change of CHAR_STRING.
2602
2603 * dispextern.h (enum glyph_type): New member COMPOSITE_GLYPH.
2604 (struct glyph): Add new sub-structure cmp to the union `u'.
2605 (enum display_element_type): New member IT_COMPOSITION.
2606 (enum prop_idx): New member COMPOSITION_PROP_IDX.
2607 (struct it): New members cmp_id, cmp_len.
2608
2609 * dispnew.c (direct_output_forward_char): Check point moving into
2610 or out of a composition. If so, give up direct method.
2611
2612 * doprnt.c (doprnt1): Adjusted for the change of CHAR_STRING.
2613
2614 * editfns.c (Fchar_to_string): Adjusted for the change of
2615 CHAR_STRING.
2616 (general_insert_function): Likewise.
2617 (Finsert_char): Likewise.
2618 (Fsubst_char_in_region): Likewise. Call update_compositions.
2619 (Ftranslate_region): Call update_compositions.
2620 (Ftranspose_regions): Call update_compositions.
2621
2622 * emacs.c (main): Call syms_of_composite.
2623
2624 * fileio.c (Fsubstitute_in_file_name): Adjusted for the change of
2625 CHAR_STRING.
2626 (Finsert_file_contents): Set Vlast_coding_system_used before
2627 calling signal_after_change. Call update_compositions if some
2628 texts are inserted..
2629 (Fwrite_region): Adjusted for the change of a_write and e_write.
2630 (a_write): Argument changed. Work based on character position,
2631 not byte position.
2632 (e_write): Argument changed. Handle new way of composition.
2633
2634 * fns.c (Flength): The length of char-table is MAX_CHAR.
2635 (concat): Adjusted for the change of CHAR_STRING.
2636 (Ffillarray): Adjusted for the change of CHAR_STRING.
2637 (Fset_char_table_default): Delete codes for a composite character.
2638 (hash_put): Return hash index.
2639
2640 * fontset.h (struct font_info): New member vertical_centering.
2641 (Vvertical_centering_font_regexp): Extern it.
2642
2643 * fontset.c (Vvertical_centering_font_regexp): New variable.
2644 (syms_of_fontset): Declare it as a Lisp variable and initialize.
2645 Set Vignore_relative_composition to nil.
2646 (fs_load_font): Initialize `vertical_centering' of struct
2647 font_info.
2648
2649 * indent.c (check_composition): New function.
2650 (MULTIBYTE_BYTES_WIDTH): Call STRING_CHAR_AND_LENGTH with
2651 MAX_MULTIBYTE_LENGTH, not MAX_LENGTH_OF_MULTI_BYTE_FORM.
2652 (current_column_1): Handle new way of composition.
2653 (Fmove_to_column): Likewise.
2654 (compute_motion): Likewise.
2655
2656 * insdel.c (copy_text): Adjusted for the change of CHAR_STRING.
2657 (insert_char): Likewise.
2658 (insert): Call update_compositions.
2659 (insert_and_inherit): Likewise.
2660 (insert_before_markers): Likewise.
2661 (insert_before_markers_and_inherit): Likewise.
2662 (insert_from_string): Likewise.
2663 (insert_from_string_before_markers): Likewise.
2664 (insert_from_buffer): Likewise.
2665 (replace_range): Likewise.
2666 (count_combining_composition): Deleted.
2667 (count_combining_before): Delete codes for a composite character.
2668 (count_combining_after): Likewise.
2669 (del_range_1): Call update_compositions.
2670 (del_range_byte): Likewise.
2671 (del_range_both): Likewise.
2672 (Fcombine_after_change_execute): Likewise.
2673
2674 * intervals.h: Include composite.h.
2675 (get_property_and_range): Extern it.
2676 (Vtext_property_default_nonsticky): Extern it.
2677
2678 * intervals.c (adjust_intervals_for_insertion): To check stickines
2679 of properties, pay attention to text-property-default-nonsticky.
2680 (merge_properties_sticky): Likewise.
2681 (get_property_and_range): New function.
2682
2683 * keyboard.c (Vdisable_point_adjustment): New variable.
2684 (Vglobal_disable_point_adjustment): New variable.
2685 (syms_of_keyboard): Declare them as Lisp variables.
2686 (command_loop_1): Check them and call adjust_point_for_property if
2687 necessary.
2688 (adjust_point_for_property): New function.
2689
2690 * keymap.c (push_key_description): Adjusted for the change of
2691 CHAR_STRING.
2692 (Ftext_char_description): Likewise.
2693
2694 * lisp.h (QCtest, QCweakness, Qequal): Extern them.
2695 (hash_put): Adjusted for the change of the definition.
2696 (signal_after_change): Likewise.
2697 (check_point_in_composition): Extern it.
2698
2699 * lread.c (readchar): Adjusted for the change of CHAR_STRING.
2700 Delete a code that handles an invalid too-long multibyte sequence
2701 because we are now sure that we never encounter with such a
2702 sequence.
2703 (read_multibyte): Use macro MAX_MULTIBYTE_LENGTH, not
2704 MAX_LENGTH_OF_MULTI_BYTE_FORM.
2705 (init_obarray): Likewise.
2706 (read1): Likewise. Adjusted for the change of CHAR_STRING.
2707
2708 * print.c (printchar): Adjusted for the change of CHAR_STRING.
2709
2710 * process.c: Include composite.h.
2711 (read_process_output): Call update_compositions.
2712
2713 * regex.c (regex_compile): Adjusted for the change of CHAR_STRING.
2714
2715 * search.c (search_buffer): Adjusted for the change of CHAR_STRING.
2716
2717 * syntax.h (SYNTAX_ENTRY_INT): Delete codes for a composite
2718 character.
2719
2720 * term.c (encode_terminal_code): Delete codes for a composite
2721 character. Adjusted for the change of CHAR_STRING.
2722 (produce_glyphs): When called, it->what can be IT_COMPOSITION.
2723 Delete codes for a composite character.
2724
2725 * textprop.c (Vtext_property_default_nonsticky): New variable
2726 (syms_of_textprop): Declare it as a Lisp variable.
2727
2728 * window.c (Frecenter): Clear all caches of compositions.
2729
2730 * xdisp.c (it_props): Add an entry for composition.
2731 (face_before_or_after_it_pos): For composition, check face of a
2732 character after the composition.
2733 (handle_composition_prop): New function.
2734 (get_next_display_element): Adjusted for the change of
2735 CHAR_STRING.
2736 (set_iterator_to_next): Handle the case that it->method ==
2737 next_element_from_composition.
2738 (next_element_from_composition): New function.
2739 (message_dolog): Adjusted for the change of CHAR_STRING.
2740 (set_message_1): Likewise.
2741 (check_point_in_composition): New function.
2742 (reconsider_clip_changes): If point moved into or out of
2743 composition, set b->clip_changed to 1 to force updating of the
2744 screen.
2745 (disp_char_vector): Delete codes for a composite character.
2746 (decode_mode_spec_coding): Adjusted for the change of CHAR_STRING.
2747
2748 * xfaces.c (choose_face_fontset_font): Delete codes for a
2749 composite character.
2750 (realize_x_face): Likewise. Change a place to set local variable
2751 `f' to avoid a bug of GCC 2.8.1 on Solaris.
2752
2753 * xfns.c: Include intervals.h.
2754 (syms_of_xfns): Make `display' property nonsticky by default.
2755
2756 * xselect.c (lisp_data_to_selection_data): Adjusted for the change
2757 for find_charset_in_str.
2758
2759 * xterm.h (struct x_output): Change member font_baseline to
2760 baseline_offset.
2761
2762 * xterm.c (x_append_glyph): Setup members of struct glyph properly
2763 for composition.
2764 (x_append_composite_glyph): New function.
2765 (VCENTER_BASELINE_OFFSET): New macro.
2766 (x_produce_glyphs): If it->what == IT_COMPOSITION, setup members
2767 of struct it for the composition. Cache pixel offsets in the
2768 struct composition. Delete codes for a composite character.
2769 Handle Vignore_relative_composition in composition code.
2770 (struct glyph_string): Delete member cmpcharp, add new member cmp.
2771 (x_set_cursor_gc): Check s->cmp, not s->cmpcharp.
2772 (x_compute_glyph_string_overhangs): Likewise.
2773 (x_get_glyph_overhangs): Delete codes for a composite character.
2774 (x_right_overwritten): Check s->cmp, not s->cmpcharp.
2775 (x_draw_glyph_string_background): Likewise. Delete codes for
2776 checking s->gidx for a composition.
2777 (x_draw_glyph_string_foreground): Delete code for a composite
2778 character.
2779 (x_draw_composite_glyph_string_foreground): New function.
2780 (x_draw_glyph_string_box): Check s->cmp, not s->cmpcharp.
2781 (x_draw_glyph_string): Handle the case of COMPOSITE_GLYPH.
2782 (struct work): Deleted.
2783 (x_fill_composite_glyph_string): Argument changed. Mostly
2784 rewritten for that.
2785 (x_fill_glyph_string): Don't check CHARSET_COMPOSITION.
2786 (BUILD_CHAR_GLYPH_STRINGS): Don't handle composition here.
2787 (BUILD_COMPOSITE_GLYPH_STRING): New macro.
2788 (BUILD_GLYPH_STRINGS): For composition, call
2789 BUILD_COMPOSITE_GLYPH_STRING.
2790 (x_new_font): Initialize f->output_data.x->baseline_offset, not
2791 f->output_data.x->font_baseline.
2792
2793 1999-12-14 Gerd Moellmann <gerd@gnu.org>
2794
2795 * xterm.c (show_mouse_face): Don't use updated_area, use
2796 TEXT_AREA.
2797
2798 1999-12-12 Richard M. Stallman <rms@gnu.org>
2799
2800 * minibuf.c (Fall_completions): Doc fix.
2801
2802 1999-12-12 Richard M. Stallman <rms@gnu.org>
2803
2804 * macros.c (Fstart_kbd_macro): Handle case where last-kbd-macro
2805 has been changed by the Lisp code.
2806
2807 1999-12-12 Gerd Moellmann <gerd@gnu.org>
2808
2809 * xfns.c: Indentation fixes.
2810
2811 1999-12-10 Stefan Monnier <monnier@cs.yale.edu>
2812
2813 * xterm.c (x_initialize): Only setup xaw3d_* if they've been declared.
2814
2815 1999-12-10 Gerd Moellmann <gerd@gnu.org>
2816
2817 * frame.h (FRAME_FOREGROUND_PIXEL, FRAME_BACKGROUND_PIXEL)
2818 [!MSDOS && !WINDOWSNT && !macintosh]: Moved here from xterm.h.
2819
2820 * xterm.h (FRAME_FOREGROUND_PIXEL, FRAME_BACKGROUND_PIXEL): Moved
2821 to frame.h.
2822
2823 1999-12-09 Stefan Monnier <monnier@cs.yale.edu>
2824
2825 * keyboard.c (Qratio): New symbol.
2826 (scroll_bar_parts): Add `Qratio' to it.
2827 (syms_of_keyboard): Init `Qratio'.
2828 * termhooks.h (scroll_bar_part): Add `scroll_bar_move_ratio'.
2829 * xterm.c (#includes): Allow compilation with only Xaw.
2830 (xaw3d_arrow_scroll, xaw3d_pick_top): New variables.
2831 (xt_action_hook): Replace XAW3D by XAW.
2832 (xaw3d_jump_callback): Renamed to xaw_jump_callback.
2833 (xaw_jump_callback): Renamed from xaw3d_jump_callback.
2834 Determine epsilon dynamically and don't try to be too clever.
2835 (xaw3d_scroll_callback): Renamed to xaw_scroll_callback.
2836 (xaw_scroll_callback): Renamed from xaw3d_scroll_callback.
2837 Handle both Xaw3d with arrow-scrollbars and with Xaw-style
2838 scrollbar (using `ratio').
2839 (x_create_toolkit_scroll_bar): Try to detect which style of Xaw3d
2840 scrollbar we have so as to set it up more optimally and to fix
2841 xaw3d_arrow_scroll and xaw3d_pick_top.
2842 (x_set_toolkit_scroll_bar_thumb): Try to maintain 2 spare pixels at the
2843 bottom of the Xaw3d scrollbar, to work around its tendency to refuse
2844 shrinking the thumb. Also make sure that `XawScrollbarSetThumb'
2845 is not ignored, using a major gross hack.
2846 (x_initialize): Init default values for xaw3d_arrow_scroll and
2847 xaw3d_pick_top.
2848
2849 1999-12-09 Dave Love <fx@gnu.org>
2850
2851 * frame.h: (PIX_TYPE) [! HAVE_X_WINDOWS]: Define PIX_TYPE.
2852
2853 1999-12-08 Gerd Moellmann <gerd@gnu.org>
2854
2855 * eval.c: Remove conditional compilation on `standalone'.
2856 (call_debugger): When entering the debugger while redisplaying,
2857 reset redisplaying_p, and go back to the top-level if the debugger
2858 returns.
2859
2860 1999-12-07 Gerd Moellmann <gerd@gnu.org>
2861
2862 * xfaces.c (x_set_menu_resources_from_menu_face): Make sure
2863 basic faces are realized before trying to use face `menu'.
2864
2865 * window.c (delete_window): Block input for the time window
2866 matrices are being changed.
2867
2868 1999-12-07 Dave Love <fx@gnu.org>
2869
2870 * lread.c (Fintern_soft): Fix newlines in doc string.
2871
2872 1999-12-07 Alexandre Oliva <oliva@dcc.unicamp.br>
2873
2874 * unexelf.c: Include <syms.h>, not <sym.h> on IRIX. Removed
2875 duplicate definition of ElfW.
2876 (find_section): Copied from unexsgi.c.
2877 (unexec): Use find_section. Adjust whitespace. Initialize
2878 new_data2_offset based on old_data, not sbss (this fixes a bug on
2879 IRIX6). Change #ifdef __mips to __sgi, since it's IRIX-specific.
2880 Adjust test for presence of .mdebug section to the new return
2881 value of find_section.
2882
2883 1999-12-07 Gerd Moellmann <gerd@gnu.org>
2884
2885 * unexelf.c: Merge changes from 20.5.
2886 (unexec): Handle .lit4 and .lit8 unconditionally.
2887
2888 * m/iris4d.h (UNEXEC) [USG5_4]: Use unexelf.o instead of
2889 unexsgi.o again.
2890
2891 * m/iris5d.h (UNEXEC): Likewise.
2892
2893 1999-12-06 Stefan Monnier <monnier@cs.yale.edu>
2894
2895 * editfns.c (Fdelete_and_extract_region): New function.
2896 (syms_of_editfns): Register it.
2897 * insdel.c (del_range): Update del_range_1 call.
2898 (del_range_1, del_range_2): Add a ret_string argument to
2899 request that the deleted text be returned.
2900 (del_range_byte, del_range_both): Update del_range_2 call.
2901 * lisp.h (del_range_1, del_range_2): Change prototype
2902 * casefiddle.c (casify_region): Update del_range_1 call.
2903 * coding.c (code_convert_region): Update del_range_2 call.
2904 * fileio.c (Finsert_file_contents): Update del_range_2 call.
2905
2906 1999-12-06 Gerd Moellmann <gerd@gnu.org>
2907
2908 * xfaces.c (set_lface_from_font_name): Fix incomplete merge.
2909
2910 1999-12-04 Hrvoje Niksic <hniksic@iskon.hr>
2911
2912 * lread.c (Fintern_soft): Accept a symbol argument.
2913
2914 1999-12-06 Eli Zaretskii <eliz@is.elta.co.il>
2915
2916 * s/msdos.h (SYSTEM_PURESIZE_EXTRA): Reduce to 40000.
2917
2918 * insdel.c (adjust_markers_for_delete): Fix last change.
2919
2920 1999-12-06 Eli Zaretskii <eliz@is.elta.co.il>
2921
2922 Changes for automatic remapping of X colors on terminal frames:
2923
2924 * xfaces.c (XColor) [!HAVE_X_WINDOWS]: Provide a typedef for non-X
2925 frames.
2926 (Vface_tty_color_alist): Remove.
2927 (tty_defined_color): New function.
2928 (defined_color): Rewrite to support any type of frame.
2929 (tty_color_name): New function.
2930 (face_color_supported_p, Fface_color_gray_p,
2931 Fface_color_supported_p): Support non-X frames.
2932 (load_color): Enclose the color name in quotes, in the log
2933 messages. Remove DOS-specific version of load_color.
2934 (realize_tty_face): Take the supported colors from
2935 tty-color-alist. Support translation of X colors to the closest
2936 tty color, for both MSDOS and tty frames.
2937 [MSDOS]: Don't invert face colors if they were taken from the
2938 frame colors.
2939 (Fface_register_tty_color, Fface_clear_tty_colors): Remove.
2940
2941 * frame.h (struct x_output) [!MSDOS, !WINDOWSNT, !HAVE_X_WINDOWS]:
2942 Define a mostly empty surrogate.
2943 (tty_display): Declare.
2944
2945 * frame.c (make_terminal_frame) [!macintosh]: Don't use
2946 tty_display.
2947 (Fframe_parameters): Don't invert colors of non-FRAME_WINDOW_P
2948 frames when the frame's param_alist includes 'reverse.
2949 (tty_display): Define.
2950 (make_terminal_frame) [!MSDOS]: Assign &tty_display to the
2951 output_data.x member.
2952 (Fframe_parameters): Return foreground and background color names
2953 on tty frames as well, in addition to MSDOS frames.
2954
2955 * msdos.h (DisplayWidth, DisplayHeight): Changes for Lisp_Object
2956 selected_frame.
2957 (struct x_output): Remove unused members; document who uses each
2958 member.
2959 (FRAME_PARAM_FACES, FRAME_N_PARAM_FACES, FRAME_DEFAULT_PARAM_FACE,
2960 FRAME_MODE_LINE_PARAM_FACE, FRAME_COMPUTED_FACES,
2961 FRAME_N_COMPUTED_FACES, FRAME_SIZE_COMPUTED_FACES,
2962 FRAME_DEFAULT_FACE, FRAME_MODE_LINE_FACE, unload_color): Remove
2963 unused macro definintions.
2964
2965 * msdos.c (IT_set_frame_parameters): Don't call
2966 recompute_basic_faces, the next redisplay will, anyway.
2967 (x_current_display): Remove unused variable.
2968 Many functions: changes for Lisp_object selected_frame.
2969 (IT_set_face): If the tty_reverse_p flag is set for the face,
2970 reverse the foreground and background colors.
2971 (Fmsdos_remember_default_colors): New function.
2972 (syms_of_msdos): Defsubr it.
2973 (IT_set_frame_parameters): Use initial_screen_colors[] when
2974 creating a new frame. If the frame parameters include 'reverse,
2975 swap the foreground and background colors.
2976 (internal_terminal_init): Initialize initial_screen_colors to -1.
2977 (syms_of_msdos): Add DEFVAR_BOOL for x-stretch-cursor, to shut up
2978 cus-start.el.
2979
2980 * Makefile.in (lisp, shortlisp): Add lisp/term/tty-colors.elc.
2981
2982 * xfns.c (x_defined_color): Rename from defined_color. All
2983 callers changed.
2984 (Fxw_color_defined_p): Renamed from Fx_color_defined_p;
2985 all callers changed.
2986 (Fxw_color_values): Renamed from Fx_color_values; all callers
2987 changed.
2988 (Fxw_display_color_p): Renamed from Fx_display_color_p; all
2989 callers changed.
2990 (x_window_to_frame, x_any_window_to_frame,
2991 x_non_menubar_window_to_frame, x_menubar_window_to_frame,
2992 x_top_window_to_frame): Use !FRAME_X_P instead of
2993 f->output_data.nothing.
2994 * xterm.h (x_defined_color): Rename from defined_color.
2995
2996 * w32fns.c (x_window_to_frame): Use FRAME_W32_P instead of
2997 f->output_data.nothing.
2998 (Fxw_color_defined_p): Renamed from Fx_color_defined_p;
2999 all callers changed.
3000 (Fxw_color_values): Renamed from Fx_color_values; all callers
3001 changed.
3002 (Fxw_display_color_p): Renamed from Fx_display_color_p; all
3003 callers changed.
3004
3005 * dispextern.h (tty_color_name): Add prototype.
3006
3007 * xmenu.c (menubar_id_to_frame): Use FRAME_WINDOW_P instead of
3008 f->output_data.nothing.
3009 * w32menu.c (menubar_id_to_frame): Likewise.
3010 * w32term.h (w32_output): Declare.
3011
3012 * dosfns.c (Qmsdos_color_translate): Remove.
3013 (msdos_stdcolor_name): Now returns a Lisp_Object.
3014 * dosfns.h (Qmsdos_color_translate): Remove.
3015
3016 * s/msdos.h (INTERNAL_TERMINAL): Add entries for color support.
3017
3018 1999-12-06 Kenichi Handa <handa@etl.go.jp>
3019
3020 * fileio.c (decide_coding_unwind): Renamed from
3021 set_auto_coding_unwind.
3022 (Finsert_file_contents): Make single unwind protect to call both
3023 Vset_auto_coding_function and Ffind_operation_coding_system.
3024
3025 * insdel.c (adjust_markers_for_delete): Make it non-static.
3026
3027 1999-12-04 Stefan Monnier <monnier@cs.yale.edu>
3028
3029 * regex.c (regex_compile): Recognize *?, +? and ?? as non-greedy
3030 operators and handle them properly.
3031 * regex.h (RE_ALL_GREEDY): New option.
3032 (RE_UNMATCHED_RIGHT_PAREN_ORD): Moved to the end where alphabetic
3033 sorting would put it.
3034 (RE_SYNTAX_AWK, RE_SYNTAX_GREP, RE_SYNTAX_EGREP)
3035 (_RE_SYNTAX_POSIX_COMMON): Use the new option to keep old behavior.
3036
3037 1999-12-04 Dave Love <d.love@dl.ac.uk>
3038
3039 * m/arm.h: New file.
3040
3041 1999-12-03 Dave Love <fx@gnu.org>
3042
3043 * editfns.c (Fmessage_or_box): Use use_dialog_box.
3044
3045 1999-12-02 Gerd Moellmann <gerd@gnu.org>
3046
3047 * s/usg5-4.h (LIBS_SYSTEM): Add -lgen because that's needed
3048 for building with Motif.
3049
3050 * m/iris4d.h (UNEXEC) [USG5_4]: Use unexsgi.o instead of
3051 unexelf.o.
3052
3053 * m/iris5d.h (UNEXEC): Use unexsgi.o instead of unexelf.o.
3054
3055 1999-12-01 Dave Love <fx@gnu.org>
3056
3057 * emacs.c (main): Set LANG=C iff AX3_2 defined.
3058
3059 1999-11-28 Gerd Moellmann <gerd@gnu.org>
3060
3061 * systime.h (EMACS_TIME_CMP, EMACS_TIME_EQ, EMACS_TIME_NE)
3062 (EMACS_TIME_GT, EMACS_TIME_GE, EMACS_TIME_LT,EMACS_TIME_LE): New
3063 macros.
3064
3065 * config.in (HAVE_SETITIMER, HAVE_UALARM): New.
3066
3067 1999-11-28 eliz <eliz@dlpx1>
3068
3069 * emacs.c (synchronize_locale): Avoid compiler warnings about
3070 pointer type mismatch.
3071
3072 1999-11-28 Gerd Moellmann <gerd@gnu.org>
3073
3074 * window.c (Fwindow_end): Don't call temp_set_pt_both with
3075 out of range position.
3076
3077 * xterm.c (XTread_socket) <ClientMessage, Xatom_Scrollbar>:
3078 Switch off busy-cursor by setting inhibit_busy_cursor to 2.
3079
3080 1999-11-28 Eli Zaretskii <eliz@is.elta.co.il>
3081
3082 * charset.c (Fmake_char_internal): Print the charset ID when
3083 signalling an error.
3084
3085 * emacs.c (synchronize_locale): Avoid compiler warnings about
3086 pointer type mismatch.
3087
3088 1999-11-26 Richard M. Stallman <rms@gnu.org>
3089
3090 * editfns.c (Fdelete_field): Make it noninteractive. Return nil.
3091
3092 1999-11-26 Gerd Moellmann <gerd@gnu.org>
3093
3094 * puresize.h (BASE_PURESIZE): Increase to 550000.
3095
3096 * textprop.c (set_text_properties): New function. Like
3097 Fset_text_properties, but with additional parameter
3098 SIGNAL_AFTER_CHANGE_P. If that is nil, don't signal after
3099 changes.
3100 (Fset_text_properties): Use it.
3101
3102 * insdel.c (insert_1_both): Call set_text_properties with last
3103 parameter nil so that no after changes will be signaled.
3104
3105 * lisp.h: Add prototype for set_text_properties.
3106
3107 * xfaces.c (set_lface_from_font_name): Fix previous change.
3108 (recompute_basic_faces): Change assert to abort.
3109
3110 1999-11-25 Dave Love <fx@gnu.org>
3111
3112 * fns.c (Fnthcdr, Fnreverse): Inline cdr.
3113 (Fmember, Fdelq, Fdelete): Inline car.
3114 (Fy_or_n_p): Doc fix.
3115
3116 1999-11-25 Gerd Moellmann <gerd@gnu.org>
3117
3118 * xfaces.c (set_lface_from_font_name): New parameter may_fail_p.
3119 Callers changed. If specified font name is bogus, and may_fail_p
3120 is not set, try to use a reasonable default.
3121
3122 * dispnew.c (direct_output_for_insert): Set glyph row's
3123 displays_text_p flag. Correct window's window_end_vpos if
3124 necessary.
3125
3126 1999-11-25 Paul Eggert <eggert@twinsun.com>
3127
3128 * emacs.c (fixup_locale): Don't bother to record initial locale.
3129 (synchronize_locale): If the desired locale is nil,
3130 treat it as if it were the empty string,
3131 so that we set the locale from the environment.
3132
3133 1999-11-25 Kenichi Handa <handa@etl.go.jp>
3134
3135 * fileio.c (Finsert_file_contents): Set buffer-file-coding-system
3136 of the current buffer via Fset.
3137
3138 1999-11-24 Dave Love <fx@gnu.org>
3139
3140 * xfns.c: Don't duplicate Qdisplay definition done elsewhere.
3141
3142 * xfaces.c: Don't duplicate Qmode_line definition done elsewhere.
3143
3144 * xfns.c: Don't duplicate Qdisplay definition done elsewhere.
3145
3146 1999-11-24 Gerd Moellmann <gerd@gnu.org>
3147
3148 * lisp.h (enum pvec_type): Put PVEC_FLAG in #if 0.
3149
3150 * emacs.c (PVEC_FLAG): New variable.
3151
3152 1999-11-23 Gerd Moellmann <gerd@gnu.org>
3153
3154 * unexaix.c (unexec): Use unsigned instead of uintptr_t because
3155 that fails on IBM PowerPC, AIX 4.2.
3156
3157 1999-11-22 Eli Zaretskii <eliz@is.elta.co.il>
3158
3159 * buffer.c (syms_of_buffer): Add %z, %Z, %m and %& to the doc
3160 string of mode-line-format. Remove the obsolete %t.
3161
3162 1999-11-22 Gerd Moellmann <gerd@gnu.org>
3163
3164 * dispnew.c (direct_output_for_insert): Increment glyph positions
3165 for glyphs from buffer text only.
3166
3167 * emacs.c (gdb_valbits, gdb_gctypebits, gdb_emacs_intbits)
3168 (gdb_data_seg_bits): New variables.
3169
3170 * lisp.h (enum gdb_lisp_params): Put in #if 0, since it doesn't
3171 work on systems not allowing enumerators > INT_MAX, and it
3172 won't work if EMACS_INT is long long.
3173
3174 1999-11-22 Paul Eggert <eggert@twinsun.com>
3175
3176 Port to SunOS 4.1.x again. Help out with Alpha port.
3177 Rename messages-locale to system-messages-locale,
3178 and likewise for time-locale.
3179
3180 * callproc.c (strerror): Remove decl.
3181 * fileio.c (strerror): Likewise.
3182 * process.c (strerror): Likewise.
3183 * emacs.c (strerror): Likewise.
3184 (Vsystem_messages_locale): Renamed from Vmessages_locale.
3185 All uses changed.
3186 (Vprevious_system_messages_locale): Likewise, from
3187 Vprevious_messages_locale.
3188 (Vsystem_time_locale): Likewise, from Vtime_locale.
3189 (Vprevious_system_time_locale): Likewise, from Vprevious_time_locale.
3190 (ABORT_RETURN_TYPE): New macro.
3191 (abort): Return type is now ABORT_RETURN_TYPE.
3192 (main): Always invoke init_signals, even if POSIX_SIGNALS is not
3193 defined.
3194 (syms_of_emacs): messages-locale -> system-messages-locale,
3195 previous-messages-locale -> previous-system-messages-locale,
3196 time-locale -> system-time-locale,
3197 previous-time-locale -> previous-system-time-locale.
3198
3199 * gmalloc.c (PP, __ptr_t): Assume ANSI C if STDC_HEADERS is defined.
3200 (const): Do not define; that's config.h's job.
3201 (<limits.h>): Include if HAVE_LIMITS_H is defined.
3202 (CHAR_BIT): Move test for definedness outside of limits.h condition.
3203 (<stddef.h>): Include if STDC_HEADERS is defined.
3204 (FREE_RETURN_TYPE): New macro.
3205 (free): Return type is now FREE_RETURN_TYPE.
3206
3207 * lisp.h (synchronize_system_time_locale): Renamed from
3208 synchronize_time_locale. All uses changed.
3209 (synchronize_system_messages_locale): Likewise, from
3210 synchronize_messages_locale.
3211
3212 * m/alpha.h (malloc, realloc, calloc): Remove decls;
3213 stdlib.h now does this.
3214
3215 * process.c (sys_siglist): Remove.
3216
3217 * s/sunos4-0.h (ABORT_RETURN_TYPE, FREE_RETURN_TYPE):
3218 New macros.
3219
3220 * syntax.c (scan_sexps_forward): Use abort, not assert.
3221
3222 * sysdep.c (my_sys_siglist): New var.
3223 (sys_siglist): New macro. Remove old initialized vars of same name.
3224 (init_signals): Initialize sys_siglist.
3225
3226 * xfns.c (abort): Remove decl; stdlib.h now does this.
3227
3228 1999-11-18 Dave Love <fx@gnu.org>
3229
3230 * filelock.c: Add forward declaration for get_boot_time_1.
3231
3232 * dispnew.c (Finternal_show_cursor_p): Fix doc string.
3233
3234 1999-11-18 Gerd Moellmann <gerd@gnu.org>
3235
3236 * buffer.h (struct buffer_text): Add comment about moving
3237 buffer text if REL_ALLOC is defined.
3238
3239 1999-11-18 Kenichi Handa <handa@etl.go.jp>
3240
3241 * lisp.h (KEY_DESCRIPTION_SIZE): New macro.
3242
3243 * keyboard.c (echo_char): Use KEY_DESCRIPTION_SIZE to check free
3244 memory for push_key_description.
3245
3246 * keymap.c (Fsingle_key_description): Use KEY_DESCRIPTION_SIZE to
3247 allocate memory for push_key_description.
3248 (describe_buffer_bindings): Likewise.
3249
3250 1999-11-17 Gerd Moellmann <gerd@gnu.org>
3251
3252 * xfns.c (Fx_show_busy_cursor): Doc-fix.
3253 (Fx_hide_busy_cursor): Ditto.
3254
3255 1999-11-17 Marco Walther <walther@siemens-pyramid.com>
3256
3257 * unexsni.c (unexec): Handle .rel.dyn section.
3258
3259 1999-11-16 Dave Love <fx@gnu.org>
3260
3261 * doc.c (Fdocumentation): Remove gcpro here too.
3262
3263 1999-11-16 Gerd Moellmann <gerd@gnu.org>
3264
3265 * keyboard.c (command_loop_1): Remove no_redisplay.
3266
3267 1999-11-16 Richard M. Stallman <rms@gnu.org>
3268
3269 * print.c (PRINTPREPARE): Don't call setup_echo_area_for_printing
3270 in noninteractive.
3271
3272 1999-11-14 Gerd Moellmann <gerd@gnu.org>
3273
3274 * xdisp.c (ensure_echo_area_buffers): New.
3275 (with_echo_area_buffer): Use it.
3276 (setup_echo_area_for_printing): Ditto.
3277
3278 * buffer.c (indicate-empty-lines): Doc-fix.
3279
3280 1999-11-12 Gerd Moellmann <gerd@gnu.org>
3281
3282 * term.c (term_init): If "op" isn't available, don't support color
3283 because we can't switch back to the default foreground and
3284 background.
3285
3286 * doc.c (Fdocumentation_property): Remove GCPRO because
3287 Fsubstitute_command_keys gcpro's the string.
3288
3289 1999-11-12 Kenichi Handa <handa@etl.go.jp>
3290
3291 * editfns.c (Ftranslate_region): Check the buffer multibyteness.
3292
3293 1999-11-11 Gerd Moellmann <gerd@gnu.org>
3294
3295 * print.c, keymap.c, indent.c, insdel.c, keyboard.c, intervals.c,
3296 lread.c, textprop.c, undo.c, emacs.c, lisp.h, intervals.h,
3297 buffer.h, config.in, Makefile.in: Remove USE_TEXT_PROPERTIES.
3298
3299 1999-11-10 Gerd Moellmann <gerd@gnu.org>
3300
3301 * xfns.c (QCuser_data): Removed.
3302 (syms_of_xfns): Initialization of QCuser_data removed.
3303 (parse_image_spec): Don't handle :user-data specially. Allow
3304 unknown keys. Remove parameter ALLOW_OTHER_KEYS.
3305 (xbm_image_p, xbm_load, xpm_image_p, pbm_image_p, png_image_p)
3306 (tiff_image_p, jpeg_image_p, gif_image_p, gs_image_p): Call
3307 parse_image_spec accordingly.
3308
3309 1999-11-09 Richard M. Stallman <rms@gnu.org>
3310
3311 * cmds.c (Fbeginning_of_line): Doc fix.
3312 (Fend_of_line): Doc fix.
3313
3314 * editfns.c (Fline_beginning_position): If N is not 1,
3315 pass t to Fconstrain_to_field for ESCAPE-FROM-EDGE.
3316
3317 * syntax.c (Fforward_word): Handle fields even if would have hit
3318 an edge of the buffer. Return nil if affected by fields.
3319
3320 1999-11-09 Richard M. Stallman <rms@gnu.org>
3321
3322 * editfns.c (preceding_pos): Function deleted.
3323 (text_property_stickiness): Decrement POS directly.
3324 Fix a confusion that used PT instead of POS.
3325
3326 * editfns.c (find_field): Properly handle the case
3327 of a field boundary where `field' inherits from neither side.
3328
3329 * editfns.c (Ffield_beginning, Ffield_end): Doc fixes.
3330 (Ferase_field, Ffield_string, Ffield_string_no_properties): Doc fixes.
3331
3332 1999-11-08 Gerd Moellmann <gerd@gnu.org>
3333
3334 * bytecode.c (Fbyte_code) <BinsertN, Bcall>: Do the
3335 BEFORE_POTENTIAL_GC before DISCARD.
3336
3337 1999-11-07 Gerd Moellmann <gerd@gnu.org>
3338
3339 * alloc.c (Fgarbage_collect): Call unmark_byte_stack.
3340
3341 * lisp.h: Add prototype for unmark_byte_stack.
3342
3343 * bytecode.c (mark_byte_stack): Use XMARKBIT and XMARK.
3344 (unmark_byte_stack): Renamed from relocate_byte_pcs. Use
3345 XUNMARK.
3346
3347 * xdisp.c (resize_mini_window): Fix computation of needed
3348 mini-window height.
3349
3350 * alloc.c, buffer.c, editfns.c, xdisp.c: Remove conditional
3351 compilation on USE_TEXT_PROPERTIES.
3352
3353 * Fbyte_code: Use block statements in cases and declare v1 and v2
3354 locally there. Rearrange case statements so that those most
3355 frequently executed come first. Avoid goto's in frequently
3356 executed cases.
3357
3358 1999-11-05 Gerd Moellmann <gerd@gnu.org>
3359
3360 * bytecode.c (Fbyte_code): Use BEFORE_POTENTIAL_GC and
3361 AFTER_POTENTIAL_GC around internal_catch.
3362
3363 * alloc.c (Fgarbage_collect): Call mark_byte_stack and
3364 relocate_byte_pcs.
3365 (init_alloc_once, init_alloc): Set byte_stack_list to null.
3366
3367 * eval.c (struct catchtag): Add member byte_stack.
3368 (internal_catch, Fcondition_case, internal_condition_case)
3369 (internal_condition_case_1): Save value of byte_stack_list in
3370 catchtag.
3371 (unwind_to_catch): Restore byte_stack_list from catchtag.
3372
3373 * lisp.h: Add prototypes for new functions in bytecode.c.
3374 Add extern declaration for byte_stack_list.
3375
3376 * bytecode.c (struct byte_stack): New.
3377 (byte_stack_list, mark_byte_stack, relocate_byte_pcs): New
3378 (BEFORE_POTENTIAL_GC, AFTER_POTENTIAL_GC): New.
3379 (FETCH, PUSH, POP, DISCARD, TOP, MAYBE_GC): Rewritten.
3380 (HANDLE_RELOCATION): Removed.
3381 (Fbyte_code): Use byte_stack structures.
3382
3383 * filelock.c (Ffile_locked_p): Make FILENAME a required argument.
3384
3385 * buffer.c (syms_of_buffer): Extend documentation of
3386 mode-line-format.
3387
3388 1999-11-04 Gerd Moellmann <gerd@gnu.org>
3389
3390 * editfns.c (Fdelete_field): Renamed from Ferase_field.
3391
3392 * minibuf.c (do_completion, Fminibuffer_complete_word): Use
3393 Ferase_field instead of Fdelete_field.
3394
3395 1999-11-03 Gerd Moellmann <gerd@gnu.org>
3396
3397 * dispnew.c (Finternal_show_cursor): Change it to set the
3398 cursor on/off, not toggle its state.
3399 (Finternal_show_cursor_p): New.
3400 (syms_of_display): Defsubr Sinternal_show_cursor_p.
3401
3402 1999-11-03 Dave Love <fx@gnu.org>
3403
3404 * charset.c (split_non_ascii_string): Define return value.
3405
3406 1999-11-03 Gerd Moellmann <gerd@gnu.org>
3407
3408 * minibuf.c (string_to_object): New.
3409 (read_minibuf_noninteractive): New.
3410 (read_minibuf): Call read_minibuf_noninteractive if
3411 noninteractive. Use string_to_object.
3412
3413 * doc.c (Fdocumentation_property): Fix bug bypassing UNGCPRO.
3414
3415 1999-11-02 Dave Love <fx@gnu.org>
3416
3417 * gnu-linux.h: Use SIGCHLD, not SIGCLD (not in glibc 2.1).
3418
3419 * process.c: Define _GNU_SOURCE before config.h to get strsignal
3420 declared with glibc2.
3421
3422 1999-11-02 Gerd Moellmann <gerd@gnu.org>
3423
3424 * lisp.h (QUIT): Give it statement form.
3425
3426 1999-11-02 Dave Love <fx@gnu.org>
3427
3428 * eval.c (init_eval): Conditionalize declaration of gcpro_level.
3429
3430 1999-11-02 Gerd Moellmann <gerd@gnu.org>
3431
3432 * xfns.c (QCuser_data): New.
3433 (syms_of_xfns): Initialize QCuser_data.
3434 (parse_image_spec): Ignore :user-data DATA properties.
3435
3436 * xdisp.c (display_line): Set charpos of first glyph in blank
3437 lines not corresponding to any text to -1, even if no glyphs are
3438 filled in in that line.
3439
3440 1999-11-01 Gerd Moellmann <gerd@gnu.org>
3441
3442 * xfns.c (png_load) [PNG_READ_sRGB_SUPPORTED]: Put code using
3443 png_get_sRGB in #ifdef.
3444
3445 * dispnew.c (Finternal_show_cursor): Renamed from Fshow_cursor.
3446 (syms_of_display): Use the new name.
3447
3448 * textprop.c (verify_interval_modification): Signal text-read-only
3449 instead of calling error.
3450
3451 * data.c (Qtext_read_only): New built-in error.
3452 (syms_of_data): Initialize it.
3453
3454 * lisp.h: Add extern declaration for Qtext_read_only.
3455
3456 * syntax.c: Remove whitespace after open or in front of closing
3457 parentheses.
3458
3459 1999-11-01 Richard M. Stallman <rms@gnu.org>
3460
3461 * Makefile.in (w16select.o, sound.o): Don't depend on lisp.h.
3462
3463 1999-10-31 Gerd Moellmann <gerd@gnu.org>
3464
3465 * xdisp.c (resize_mini_window): Compute needed height differently.
3466
3467 * fns.c (Flength): Unroll loop over lists.
3468
3469 * xdisp.c (append_space): Return non-zero if space was appended.
3470 (display_line): Set charpos of first glyph to -1 only if that
3471 glyph is the space added by append_glyph.
3472
3473 1999-10-30 Richard M. Stallman <rms@gnu.org>
3474
3475 * print.c (strout): Consider `noninteractive' and use stdout
3476 only when PRINTCHARFUN is t.
3477
3478 * lisp.h (struct gcpro) [DEBUG_GCPRO]: New field `level'.
3479 (gcpro_level): Declare it extern.
3480 [DEBUG_GCPRO] (GCPRO1, GCPRO2, GCPRO3, GCPRO4, GCPRO5):
3481 Alternate definitions that set `level' and increment `gcpro_level'.
3482 [DEBUG_GCPRO] (UNGCPRO): Alternate definition that checks gcpro_level.
3483
3484 * eval.c [DEBUG_GCPRO] (gcpro_level): New variable.
3485 (init_eval) [DEBUG_GCPRO]: Initialize it.
3486 (unwind_to_catch) [DEBUG_GCPRO]: Set gcpro_level
3487 from remaining gcprolist.
3488
3489 1999-10-29 Kenichi Handa <handa@etl.go.jp>
3490
3491 * coding.c (code_convert_region): Update `dst' correctly.
3492
3493 1999-10-28 Gerd Moellmann <gerd@gnu.org>
3494
3495 * fns.c (Fmemq, Fassq, Frassq, assq_no_quit, Fassoc)
3496 (Frassoc): Rewritten.
3497
3498 1999-10-27 Noah Friedman <friedman@splode.com>
3499
3500 * s/gnu-linux.h [HAVE_DEV_PTMX]: Redefine FIRST_PTY_LETTER to 'z'.
3501 Define PTY_NAME_SPRINTF.
3502 Redefine PTY_TTY_NAME_SPRINTF.
3503 * config.in: Add undef for HAVE_DEV_PTMX.
3504
3505 1999-10-26 Richard M. Stallman <rms@gnu.org>
3506
3507 * regex.c (POP_FAILURE_POINT): Use failure_id.integer
3508 as arg to DEBUG_POP and DEBUG_PRINT.
3509
3510 1999-10-27 Richard M. Stallman <rms@gnu.org>
3511
3512 * data.c (Qad_activate_internal): Renamed from Qad_activate.
3513 (Ffset): Call Qad_activate_internal.
3514 (syms_of_data): Initialize Qad_activate_internal.
3515
3516 1999-10-27 Gerd Moellmann <gerd@gnu.org>
3517
3518 * xdisp.c (echo_area_display) [HAVE_X_WINDOWS]: Do nothing if
3519 Vterminal_frame is selected and Vwindow_system is non-nil.
3520
3521 1999-10-26 Gerd Moellmann <gerd@gnu.org>
3522
3523 * xdisp.c (echo_area_display): Put previous change in #if 0.
3524
3525 * emacs.c (standard_args): Add `file' as synonym for `visit',
3526 `execute' as synonym for `eval'.
3527 (main): Add new options to usage message.
3528
3529 1999-10-25 Gerd Moellmann <gerd@gnu.org>
3530
3531 * data.c (Qhash_table): New.
3532 (Ftype_of): Return it for hash tables.
3533 (syms_of_data): Initialize Qhash_table.
3534
3535 1999-10-25 Richard M. Stallman <rms@gnu.org>
3536
3537 * regex.c (POP_FAILURE_POINT): Extract failure_id as an integer.
3538
3539 1999-10-24 Ken Raeburn <raeburn@gnu.org>
3540
3541 * alloc.c: Undef HIDE_LISP_IMPLEMENTATION before including
3542 lisp.h.
3543
3544 * buffer.c (Fbuffer_list, Fget_file_buffer, get_truename_buffer,
3545 Fbuffer_local_variables, Fother_buffer, record_buffer,
3546 set_buffer_internal_1, Fbury_buffer, Fkill_all_local_variables,
3547 swap_out_buffer_local_variables, overlays_at, overlays_in,
3548 overlay_touches_p, overlay_strings, recenter_overlay_lists,
3549 fix_overlays_in_range, fix_overlays_before, Foverlay_get,
3550 Foverlay_put, report_overlay_modification, evaporate_overlays):
3551 Use XCAR, XCDR, and XFLOAT_DATA instead of explicit member
3552 references.
3553 * data.c (Fcar, Fcar_safe, Fcdr, Fcdr_safe, Fsetcar, Fsetcdr,
3554 swap_in_symval_forwarding, set_internal, default_value,
3555 Fset_default, Fmake_variable_buffer_local, Fmake_local_variable,
3556 Fmake_variable_frame_local, Flocal_variable_p,
3557 Flocal_variable_if_set_p, arithcompare, Fzerop, cons_to_long,
3558 Fnumber_to_string, float_arith_driver, Fadd1, Fsub1): Likewise.
3559 * dispnew.c (Fframe_or_buffer_changed_p): Likewise.
3560 * emacs.c (main): Likewise.
3561 * fontset.c (fs_load_font, fs_register_fontset,
3562 CACHED_FONTSET_NAME, CACHED_FONTSET_REGEX, Fquery_fontset,
3563 Fnew_fontset, Fset_fontset_font): Likewise.
3564 * frame.c (do_switch_frame, next_frame, prev_frame,
3565 other_visible_frames, Fdelete_frame, Fvisible_frame_list):
3566 Likewise.
3567 * keyboard.c (read_char, help_char_p, event_to_kboard,
3568 kbd_buffer_get_event, timer_start_idle, timer_check,
3569 make_lispy_event, apply_modifiers, reorder_modifiers,
3570 Fevent_convert_list, lucid_event_type_list_p, menu_bar_items,
3571 menu_bar_one_keymap, menu_item_eval_property_1, parse_menu_item,
3572 tool_bar_items, read_char_x_menu_prompt, read_key_sequence,
3573 Fcommand_execute, Fexecute_extended_command): Likewise.
3574 * minibuf.c (read_minibuf, get_minibuffer, Ftry_completion,
3575 Fall_completions): Likewise.
3576 * window.c (Fset_window_margins): Likewise.
3577
3578 * callint.c (quotify_args): Don't explicitly use struct
3579 Lisp_Cons, use Lisp_Object and XCAR/XCDR instead.
3580
3581 * s/netbsd.h (HAVE_GETLOADAVG): Define as 1.
3582 (UNEXEC, START_FILES, LIB_STANDARD, LIB_GCC): Define ELF versions,
3583 if __ELF__ is defined.
3584
3585 1999-10-24 Gerd Moellmann <gerd@gnu.org>
3586
3587 * window.c (Fnext_window): Add a QUIT in the loop.
3588
3589 1999-10-23 Gerd Moellmann <gerd@gnu.org>
3590
3591 * Makefile.in (bootstrap, bootstrap-emacs, bootstrap-temacs):
3592 New targets.
3593
3594 1999-10-22 Dave Love <fx@gnu.org>
3595
3596 * emacs.c (main): Enable profiling conditional on __linux also.
3597
3598 1999-10-20 Gerd Moellmann <gerd@gnu.org>
3599
3600 * xrdb.c (x_load_resources): Set default resources for resource
3601 classes instead of for the specific Emacs.
3602
3603 1999-10-19 Gerd Moellmann <gerd@gnu.org>
3604
3605 * s/freebsd.h (HAVE_GETLOADAVG): Define as 1 because config.h
3606 defines it that way.
3607
3608 * xdisp.c (echo_area_display) [HAVE_X_WINDOWS]: Do nothing
3609 if selected_frame is equal to Vterminal_frame.
3610
3611 1999-10-19 Paul Eggert <eggert@twinsun.com>
3612
3613 Add support for large files, 64-bit Solaris, system locale codings.
3614
3615 * Makefile.in (emacs): Set the LC_ALL environment variable to "C"
3616 when dumping, so that the dumped Emacs doesn't have stray locale info.
3617 (dired.o): Depend on systime.h.
3618 (editfns.o): Depend on coding.h.
3619
3620 * alloc.c, buffer.c, callproc.c, ccl.c, charset.c, coding.c, data.c,
3621 dispnew.c, editfns.c, emacs.c, filelock.c, floatfns.c, hftctl.c,
3622 keyboard.c, process.c, sysdep.c, unexelf.c, unexhp9k800.c,
3623 unexsunos4.c, vmsfns.c, vmsgmalloc.c, w32faces.c, w32menu.c, w32term.c,
3624 w32xfns.c, xfaces.c, xfns.c, xmenu.c, xterm.c:
3625 Include <config.h> before any system include files.
3626
3627 * alloc.c, buffer.c, ccl.c, data.c, editfns.c, emacs.c, eval.c,
3628 fileio.c, filelock.c, frame.c, insdel.c, keymap.c, lread.c,
3629 m/alpha.h, print.c, search.c, sysdep.c, xdisp.c, xfaces.c, xfns.c,
3630 xmenu.c, xterm.c:
3631 Do not include <stdlib.h>, as <config.h> does this now.
3632
3633 * callproc.c (Fcall_process):
3634 Synchronize messages locale before invoking strerror.
3635 Decode resulting string with locale-coding-system.
3636
3637 * coding.c (Vlocale_coding_system): New var.
3638 (syms_of_coding): Adjust to above change.
3639 (emacs_strerror): New function.
3640
3641 * coding.h (emacs_strerror, Vlocale_coding_system): New decls.
3642
3643 * config.in (HAVE_STDIO_EXT_H, HAVE_TM_GMTOFF, HAVE___FPENDING,
3644 HAVE_FTELLO, HAVE_GETLOADAVG, HAVE_MBLEN, HAVE_MBRLEN,
3645 HAVE_STRSIGNAL): New macros.
3646 (BITS_PER_LONG): Default to 64 if _LP64 is defined.
3647 <stdlib.h>: Include if HAVE_STDLIB_H is defined and NOT_C_CODE isn't.
3648
3649 * dired.c: Include "systime.h".
3650 (Ffile_attributes): Do not cast s.st_size to int; this loses
3651 information if int is 32 bits but st_size and EMACS_INT are larger.
3652 Treat large device numbers like large inode numbers.
3653
3654 * dispnew.c (PENDING_OUTPUT_COUNT): Use __fpending if available.
3655
3656 * editfns.c: Include coding.h.
3657 (emacs_strftime): Remove decl.
3658 (emacs_strftimeu): New decl.
3659 (emacs_memftimeu): Renamed from emacs_memftime; new arg UT.
3660 Use emacs_strftimeu instead of emacs_strftime.
3661 (Fformat_time_string): Convert format string using
3662 Vlocale_coding_system, and convert result back. Synchronize time
3663 locale before invoking lower level function. Invoke
3664 emacs_memftimeu, passing ut, instead of emacs_memftime.
3665
3666 * emacs.c: Include <locale.h> if HAVE_SETLOCALE is defined.
3667 (Vmessages_locale, Vprevious_messages_locale, Vtime_locale,
3668 Vprevious_time_locale): New variables.
3669 (main): Invoke setlocale early, so that initial error messages are
3670 localized properly. But skip locale-setting if LC_ALL is "C".
3671 Fix up locale when it's safe to do so.
3672 (fixup_locale): Moved here from xterm.c.
3673 (synchronize_locale, synchronize_time_locale,
3674 synchronize_messages_locale): New functions.
3675 (syms_of_emacs): Accommodate above changes.
3676
3677 * fileio.c (report_file_error): Convert strerror output according
3678 to Vlocale_coding_system.
3679 (Finsert_file_contents): Check for arithmetic overflow in
3680 computations that depend on file size. Report IO errors
3681 with emacs_strerror, not strerror.
3682
3683 * fns.c (Fgethash): Declare dflt parameter.
3684
3685 * gmalloc.c: Do not define const to nothing if HAVE_CONFIG_H
3686 is defined; that's config.h's job.
3687
3688 * lisp.h (EMACS_INT, BITS_PER_EMACS_INT, EMACS_UINT): If _LP64,
3689 default these values to long, BITS_PER_LONG, and unsigned long.
3690 (VALBITS, MARKBIT, XINT): Do not assume 32-bit EMACS_INT.
3691 (PNTR_COMPARISON_TYPE): Default to EMACS_UINT, not to unsigned int.
3692 (code_convert_string_norecord, fixup_locale,
3693 synchronize_messages_locale, synchronize_time_locale,
3694 emacs_open, emacs_close, emacs_read, emacs_write): New decls.
3695 All Emacs callers of open, close, read, write changed to use
3696 emacs_open, emacs_close, emacs_read, emacs_write.
3697
3698 * lread.c (file_offset, file_tell): New macros. All uses of ftell
3699 changed to file_tell.
3700 (saved_doc_string_position, prev_saved_doc_string_position): Now
3701 of type file_offset.
3702 (init_lread): Do not fix locale here; fixup_locale now does this.
3703
3704 * m/amdahl.h, s/usg5-4.h:
3705 (NSIG): Remove.
3706 (NSIG_MINIMUM): New macro.
3707
3708 * m/cydra5.h, m/dpx2.h, m/mips.h, m/pfa50.h, m/sps7.h, m/stride.h,
3709 m/ustation.h, s/gnu-linux.h, s/hpux.h, s/iris3-5.h, s/iris3-6.h,
3710 s/umips.h, s/usg5-4.h:
3711 (SIGIO): Do not undef.
3712 (BROKEN_SIGIO): New macro.
3713
3714 * m/ustation.h:
3715 (SIGTSTP): Do not undef.
3716 (BROKEN_SIGTSTP): New macro.
3717
3718 * s/gnu-linux.h:
3719 (SIGPOLL, SIGURG): Do not undef.
3720 (BROKEN_SIGPOLL, BROKEN_SIGURG): New macros.
3721
3722 * s/ptx4.h:
3723 (SIGINFO): Do not undef.
3724 (BROKEN_SIGINFO): New macros.
3725
3726 * m/delta.h, s/ptx.h, s/template.h: Doc fix.
3727
3728 * mktime.c, strftime.c: Update to glibc 2.1.2 version, with
3729 some Emacs-related changes merged.
3730
3731 * print.c (float_to_string): Prepend "-" to representation of a
3732 NaN if the NaN is negative.
3733
3734 * process.c (sys_siglist): Omit if HAVE_STRSIGNAL.
3735 (wait_reading_process_input): Use emacs_strerror, not strerror.
3736
3737 * process.c (status_message, sigchld_handler): Synchronize locale,
3738 then use strsignal istead of sys_siglist.
3739 * w32proc.c (sys_wait): Likewise.
3740
3741 * s/aix3-1.h, s/bsd4-1.h, s/dgux.h, s/gnu-linux.h, s/hiuxmpp.h,
3742 s/hpux.h, s/iris3-5.h, s/iris3-6.h, s/irix3-3.h, s/osf1.h, s/rtu.h,
3743 s/sunos4-1.h, s/unipl5-0.h, s/unipl5-2.h, s/usg5-0.h, s/usg5-2-2.h,
3744 s/usg5-2.h, s/usg5-3.h, s/xenix.h:
3745 (open, close, read, write, INTERRUPTIBLE_OPEN,
3746 INTERRUPTIBLE_CLOSE, INTERRUPTIBLE_IO): Remove.
3747
3748 * s/sol2-5.h (_LARGEFILE_SOURCE, _FILE_OFFSET_BITS): New macros.
3749
3750 * sysdep.c (sys_read, sys_write, read, write, sys_close, close,
3751 sys_open, open): Remove.
3752 (emacs_open, emacs_close, emacs_read, emacs_write): Always define;
3753 the old INTERRUPTIBLE_OPEN, INTERRUPTIBLE_CLOSE, and INTERRUPTIBLE_IO
3754 macros are no longer used.
3755 (emacs_open): Renamed from sys_open. Merge BSD4_1 version.
3756 (emacs_close): Renamed from sys_close.
3757 (emacs_read): Renamed from sys_read.
3758 (emacs_write): Renamed from sys_write.
3759 (sys_siglist): Do not declare if HAVE_STRSIGNAL.
3760 (dup2): Do not print error on failure; the real dup2 doesn't.
3761 (strsignal): New function, defined if !HAVE_STRSIGNAL.
3762
3763 * syssignal.h (SIGINFO): Undef if defined and if BROKEN_SIGINFO
3764 is defined.
3765 (SIGIO, SIGPOLL, SIGTSTP, SIGURG): Likewise.
3766 (NSIG): If less than NSIG_MINIMUM, define to NSIG_MINIMUM.
3767 (strsignal): Declare if !HAVE_STRSIGNAL.
3768
3769 * unexelf.c (ElfBitsW, ELFSIZE, ElfExpandBitsW): New macros.
3770 (ElfW): Define in terms of ElfExpandBitsW.
3771
3772 * w32proc.c (sys_siglist): Remove decl.
3773
3774 * xdisp.c (decode_mode_spec): 3rd arg is int, not char, to comply
3775 with ANSI C.
3776 (display_string): Declare face_string_pos arg.
3777
3778 * xfns.c (Fx_show_tip): Declare timeout param.
3779
3780 * xterm.c: No need to include locale.h.
3781 (x_alloc_lighter_color, x_setup_relief_color):
3782 Pass arg as double, not float, for compatibility with ANSI C.
3783 (fixup_locale): Move to emacs.c.
3784 (x_term_init): Do not setlocale or fixup locale; the main program
3785 does this now.
3786
3787 1999-10-18 Dave Love <fx@gnu.org>
3788
3789 * doc.c (Fdocumentation_property): Gcpro `tem'.
3790
3791 1999-10-18 Kenichi Handa <handa@etl.go.jp>
3792
3793 * lread.c (Fload): Calculate bytes of filename correctly.
3794 (openp): Likewise.
3795
3796 1999-10-18 Keisuke Nishida <kxn30@po.cwru.edu>
3797
3798 * print.c (print_preprocess): In case print-circle is nil,
3799 add OBJ to Vprint_number_table only when OBJ is a symbol.
3800
3801 1999-10-18 Kenichi Handa <handa@etl.go.jp>
3802
3803 * coding.c (code_convert_string): Add record_unwind_protect to
3804 assure setting inhibit_pre_post_conversion back to zero. Take
3805 care of the multibyteness of the working buffer.
3806
3807 * coding.c (inhibit_pre_post_conversion): New variable.
3808 (setup_coding_system): If inhibit_pre_post_conversion is nonzero,
3809 ignore post-read-conversion and pre-write-conversion property of
3810 the coding system.
3811 (code_convert_region_unwind): New function.
3812 (code_convert_region): Set inhibit_pre_post_conversion to 1 while
3813 running pre-write-conversion and post-read-conversion.
3814 (code_convert_string): Likewise.
3815
3816 1999-10-17 Miles Bader <miles@gnu.org>
3817
3818 * editfns.c: Doc fix.
3819
3820 1999-10-17 Miles Bader <miles@gnu.org>
3821
3822 * editfns.c (Fconstrain_to_field): Make sure we don't violate the
3823 argument preconditions of find_before_next_newline in the case
3824 where both ONLY_IN_LINE and ESCAPE_FROM_EDGE are set and OLD_POS
3825 was indeed at the edge.
3826
3827 1999-10-17 Miles Bader <miles@gnu.org>
3828
3829 * minibuf.c (Fminibuffer_complete_and_exit): Supply value for new
3830 ESCAPE_FROM_EDGE parameter to Ffield_beginning.
3831
3832 * editfns.c (text_property_eq, text_property_stickiness): Don't
3833 use initializers for auto variables of type Lisp_Object.
3834 (find_field): Likewise. Use braces around nested ifs.
3835 (Fline_end_position): Store the raw eol in a variable, so that the
3836 final expression doesn't look so ugly.
3837 (Fconstrain_to_field): Doc fix.
3838 (preceding_pos): Renamed from `preceeding_pos'.
3839 (text_property_stickiness, find_field): Call preceding_pos,
3840 not preceeding_pos.
3841
3842 1999-10-17 Miles Bader <miles@gnu.org>
3843
3844 * editfns.c (Ffield_string_no_properties): New function.
3845 (text_property_stickiness, preceeding_pos): New functions.
3846 (Ffield_string): Remove PROPS parameter.
3847 (find_field): Add MERGE_AT_BOUNDARY parameter.
3848 Rewrite to use stickiness of `field' property to resolve
3849 ambiguous cases.
3850 (Ffield_beginning, Ffield_end): Add ESCAPE_FROM_EDGE parameter.
3851 (Fconstrain_to_field): Likewise.
3852 (syms_of_editfns): Init Sfield_string_no_properties.
3853 (Ffield_string, Ferase_field, Ffield_end):
3854 Supply new MERGE_AT_BOUNDARY argument to find_field.
3855 (Fline_beginning_position, Fline_end_position): Supply new
3856 ESCAPE_FROM_EDGE parameter to Fconstrain_to_field.
3857 Pass a value of Qt for the ONLY_IN_LINE argument to
3858 Fconstrain_to_field (only matters if N != 1).
3859 * syntax.c (Fforward_word): Supply new ESCAPE_FROM_EDGE parameter
3860 to Fconstrain_to_field.
3861
3862 * minibuf.c (Fminibuffer_complete_word): Use
3863 Ffield_beginning to find the prompt end.
3864
3865 1999-10-17 Miles Bader <miles@gnu.org>
3866
3867 * editfns.c (Fconstrain_to_field): Add get/set-current-point
3868 behavior when NEW_POS is nil.
3869 (find_field): Use XSETFASTINT instead of make_number.
3870 * minibuf.c (Fminibuffer_complete_and_exit): Test for an empty
3871 input string by seeing where the field begins, instead of
3872 looking at text-properties.
3873
3874 1999-10-17 Miles Bader <miles@gnu.org>
3875
3876 * editfns.c (Qfield): New variable.
3877 (find_field, Ferase_field, Ffield_string,
3878 Ffield_beginning, Ffield_end, Fconstrain_to_field): New functions.
3879 (Fline_beginning_position, Fline_end_position): Constrain to any field.
3880 (make_buffer_string_both): Remove minibuffer-prompt hack.
3881 (syms_of_editfns): Initialize Qfield, and subr entries for
3882 field functions above.
3883 * minibuf.c (read_minibuf): Don't save minibuffer prompt length on
3884 minibuf_save_list.
3885 Don't initialize minibuffer prompt length.
3886 Wrap prompt text-properties around the entire prompt.
3887 Add 'prompt text-property to prompt.
3888 Get final value with Ffield_string instead of make_buffer_string.
3889 (read_minibuf_unwind): Don't restore minibuffer prompt length from
3890 minibuf_save_list.
3891 (do_completion): Get minibuffer input with Ffield_string
3892 instead of Fbuffer_string.
3893 Erase minibuffer input with Ferase_field instead of erase_buffer.
3894 (Fminibuffer_complete_and_exit): Likewise.
3895 Test whether buffer is empty by looking for the 'prompt text
3896 property at the end.
3897 Set prompt length by looking for the end of the prompt text property,
3898 and save prompt length for later use (since there is no longer a
3899 buffer variable to get it from).
3900 (Fminibuffer_prompt_width, Fminibuffer_prompt_end): Functions removed.
3901 (syms_of_minibuf): Remove initializations of
3902 Sminibuffer_prompt_width and Sminibuffer_prompt_end.
3903 * buffer.h (struct buffer): Remove prompt_end_charpos field.
3904 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer, Fkill_buffer):
3905 Don't initialize prompt_end_charpos field.
3906 * syntax.c (Fforward_word): Likewise.
3907 Constrain to any field.
3908
3909 1999-10-16 Gerd Moellmann <gerd@gnu.org>
3910
3911 * window.c (enum save_restore_action): New.
3912 (save_restore_orig_size): Change parameter list. Add
3913 functionality to check for valid orig_top and orig_height members
3914 in a window tree.
3915 (grow_mini_window): Call save_restore_orig_size with new parameter
3916 list.
3917 (shrink_mini_window): Restore old window sizes only if old
3918 size information is valid in all windows in a window tree.
3919
3920 1999-10-15 Gerd Moellmann <gerd@gnu.org>
3921
3922 * xmenu.c (set_frame_menubar): Don't call
3923 x_set_menu_resources_from_menu_face here.
3924 (update_frame_menubar): Call x_set_menu_resources_from_menu_face.
3925
3926 * xfns.c (gif_load): Fix handling of interlaced GIFs.
3927
3928 1999-10-14 Dave Love <fx@gnu.org>
3929
3930 * xdisp.c (handle_fontified_prop): GCPRO `pos'.
3931
3932 1999-10-14 Gerd Moellmann <gerd@gnu.org>
3933
3934 * process.c (Fopen_network_stream): Don't loop if gethostbyname
3935 fails and h_errno is TRY_AGAIN.
3936
3937 1999-10-13 Dave Love <fx@gnu.org>
3938
3939 * filelock.c (lock_file): Move gcpro of `fn'.
3940
3941 1999-10-10 Gerd Moellmann <gerd@gnu.org>
3942
3943 * keyboard.c (auto-save-interval): Fix documentation.
3944
3945 1999-10-09 Richard M. Stallman <rms@gnu.org>
3946
3947 * print.c (print): When removing objects from Vprint_number_table,
3948 only scan the newly added objects.
3949 (print_preprocess): If OBJ is a gensym, and print-continuous-numbering,
3950 unconditionally force it to stay in the table.
3951
3952 1999-10-09 Gerd Moellmann <gerd@gnu.org>
3953
3954 * xfns.c (prepare_image_for_display): Don't try to load image if
3955 loading it failed before.
3956 (lookup_image, prepare_image_for_display): Remember if loading the
3957 image failed.
3958 (xpm_load): Add missing UNBLOCK_INPUT.
3959
3960 * dispextern.h (struct image): New member load_failed_p.
3961
3962 1999-10-08 Stefan Monnier <monnier@cs.yale.edu>
3963
3964 * fileio.c (Fmake_temp_name): Add a reference to `make-temp-file'
3965 in the docstring.
3966
3967 1999-10-08 Gerd Moellmann <gerd@gnu.org>
3968
3969 * xterm.c (XTread_socket) <ClientMessage, WM_TAKE_FOCUS>:
3970 Don't call XSetInputFocus because that can generate additional
3971 FocusIn events.
3972
3973 1999-10-07 Jeffrey C Honig <jch@bsdi.com>
3974
3975 * bsdos4.h [HAVE_LIBNCURSES]: Define TERMINFO and LIBS_TERMCAP.
3976
3977 1999-10-07 Richard M. Stallman <rms@gnu.org>
3978
3979 * process.c (wait_reading_process_input): When trying to suck
3980 input from one process, for accept-process-output,
3981 exit that loop if we get EAGAIN or EWOULDBLOCK.
3982
3983 1999-10-07 Gerd Moellmann <gerd@gnu.org>
3984
3985 * xfaces.c (Qbitmap_spec_p): Replaces Qpixmap_spec_p.
3986 (Fbitmap_spec_p): Replaces Fpixmap_spec_p.
3987 (load_pixmap): Use Fbitmap_spec_p and Qbitmap_spec_p instead of
3988 Fpixmap_spec_p and Qpixmap_spec_p.
3989 (load_face_colors, check_lface_attrs,
3990 merge_face_vector_with_property,
3991 Finternal_set_lisp_face_attribute): Use Fbitmap_spec_p.
3992 (syms_of_xfaces): Initialize Qbitmap_spec_p, defsubr
3993 Fbitmap_spec_p.
3994
3995 1999-10-07 Gerd Moellmann <gerd@gnu.org>
3996
3997 * xdisp.c (display_menu_bar): Use MENU_FACE_ID instead of
3998 MODE_LINE_FACE_ID.
3999
4000 * xfaces.c (toplevel) [USE_MOTIF]: Include some Motif headers.
4001 (struct x_resources) [USE_X_TOOLKIT]: New.
4002 (xm_apply_resources, xm_set_menu_resources_from_menu_face)
4003 [USE_MOTIF]: New.
4004 (xl_apply_resources, xl_set_menu_resources_from_menu_face)
4005 [USE_LUCID]: New.
4006 (x_set_menu_resources_from_menu_face) [USE_X_TOOLKIT]: New.
4007 (Qmenu): New.
4008 (syms_of_xfaces): Initialize Qmenu.
4009 (realize_basic_faces): Realize face `menu'.
4010 (resolve_face_name): New.
4011 (lface_from_face_name): Use it.
4012 (Finternal_set_lisp_face_attribute): Ditto.
4013 (Fpixmap_spec_p): Rewritten. Extend doc string.
4014
4015 * xmenu.c (set_frame_menubar, xmenu_show): Call
4016 x_set_menu_resources_from_menu_face.
4017
4018 * dispextern.h (enum face_id): Add MENU_FACE_ID.
4019 (toplevel): Include X11/Intrinsic.h.
4020
4021 1999-10-03 Ken'ichi Handa <handa@gnu.org>
4022
4023 * coding.c (DECODE_CHARACTER_ASCII): Decode ASCII invocated to GR
4024 correctly.
4025
4026 1999-09-30 Kenichi Handa <handa@etl.go.jp>
4027
4028 * category.c (modify_lower_category_set): Set default value of
4029 TABLE correctly.
4030
4031 * minibuf.c (Fminibuffer_complete_word): Calculate string byte
4032 size correctly.
4033
4034 1999-09-29 Gerd Moellmann <gerd@gnu.org>
4035
4036 * editfns.c (Fpropertize): Renamed from Fproperties.
4037
4038 1999-09-29 Gerd Moellmann <gerd@gnu.org>
4039
4040 * xdisp.c (resize_mini_window): Do nothing if frame is an X
4041 frame that hasn't been initialized yet.
4042
4043 1999-09-28 Richard M. Stallman <rms@gnu.org>
4044
4045 * keymap.c (Fsingle_key_description): Make tem big enough.
4046 (describe_buffer_bindings): Make buf big enough.
4047
4048 1999-09-27 Richard M. Stallman <rms@gnu.org>
4049
4050 * intervals.c (get_local_map): Use indirect_function,
4051 not Findirect_function.
4052
4053 1999-09-27 Dave Love <fx@gnu.org>
4054
4055 * cm.h: Remove unneeded declaration of ospeed.
4056
4057 1999-09-26 Gerd Moellmann <gerd@gnu.org>
4058
4059 * lisp.h (toplevel): Add prototype for
4060 next_single_char_property_change.
4061
4062 * textprop.c (next_single_char_property_change): New.
4063
4064 * xdisp.c (display_prop_end, invisible_text_between_p): Use
4065 next_single_char_property_change.
4066
4067 1999-09-25 Gerd Moellmann <gerd@gnu.org>
4068
4069 * editfns.c (Fproperties): New.
4070 (syms_of_editfns): Defsubr it.
4071
4072 * xfns.c (lookup_image): Set image's timestamp because it's
4073 used when we look it up.
4074
4075 1999-09-23 Gerd Moellmann <gerd@gnu.org>
4076
4077 * window.c (enlarge_window): Add window parameter instead of using
4078 selected_window.
4079 (Fdisplay_buffer): Call it with window parameter instead of
4080 setting selected_window.
4081 (Fenlarge_window, Fshrink_window): Ditto.
4082 (shrink_mini_window): If there is no recorded height and position
4083 info, resize mini-window to height 1.
4084
4085 * xfns.c (image_error): Use add_to_log.
4086
4087 * xfaces.c (load_pixmap): Call add_to_log without frame parameter.
4088 (load_face_font_or_fontset, load_color,
4089 merge_face_vector_with_property): Ditto.
4090
4091 * dispextern.h: Add prototype for add_to_log.
4092
4093 * xfaces.c (add_to_log): Move to xdisp.c.
4094
4095 * xdisp.c (add_to_log): Moved from xfaces.c. Remove frame
4096 parameter.
4097
4098 1999-09-23 Gerd Moellmann <gerd@gnu.org>
4099
4100 * xterm.c (XTread_socket) <MotionNotify>: Change #ifdef
4101 USE_X_TOOLKIT to #ifdef USE_TOOLKIT_SCROLL_BARS.
4102
4103 * xdisp.c (resize_mini_window): Use grow_mini_window and
4104 shrink_mini_window.
4105
4106 * window.c (window_min_size): Add parameter ignore_fixed_p.
4107 (change_window_height): Call window_min_size with new parameter.
4108 (shrink_window_lowest_first, save_restore_orig_size,
4109 grow_mini_window, shrink_mini_window): New.
4110 (make_window, replace_window): Initialize orig_top and
4111 orig_height.
4112 (enlarge_window): Renamed from change_window_height. Make it
4113 static.
4114 (Fdisplay_buffer, Fenlage_window, Fshrink_window): Call
4115 enlarge_window instead of change_window_height.
4116
4117 * window.h (struct window): New members orig_top, orig_height.
4118 (toplevel): Add prototypes for grow_mini_window and
4119 shrink_mini_window. Remove prototype for change_window_height.
4120
4121 1999-09-21 Eli Zaretskii <eliz@gnu.org>
4122
4123 * frame.c (frame_name_fnn_p): Fix previous change.
4124
4125 1999-09-20 Gerd Moellmann <gerd@gnu.org>
4126
4127 * minibuf.c (toplevel): Move include of stdio.h to other includes.
4128
4129 * dispnew.c (direct_output_for_insert): Cast arguments to
4130 safe_bcopy to char *.
4131
4132 * lread.c (readchar): Remove unused variables.
4133 (read_filtered_event, read1, Fmapatoms): Ditto.
4134 (toplevel): Include intervals.h.
4135
4136 * eval.c (Fsignal): Remove unused variables.
4137 (Fcommandp, do_autoload): Ditto.
4138
4139 * lisp.h: Add prototype for safe_bcopy, fatal.
4140
4141 * editfns.c (init_editfns): Remove unused variables.
4142 (Fgoto_char, Fchar_after, Fformat): Ditto.
4143 (message_text, message_length): Put in #ifndef HAVE_MENUS.
4144
4145 * data.c (find_symbol_value): Remove unused variables.
4146 (Faref, Fstring_to_number): Ditto.
4147 (toplevel): Include stdio.h.
4148 (Fnumber_to_string): Cast XINT to long for %ld.
4149
4150 * casefiddle.c (casify_object): Remove unused variables.
4151 (casify_region): Ditto.
4152
4153 * filelock.c (get_boot_time): Put local variable used in
4154 conditinally compiled section in #ifdef.
4155 (toplevel): Include stdio.h.
4156
4157 * keymap.c (Flookup_key, Faccessible_keymaps, describe_vector,
4158 keys_of_keymap, syms_of_keymap): Remove unused variables.
4159
4160 1999-09-20 Gerd Moellmann <gerd@gnu.org>
4161
4162 * xdisp.c (sync_frame_with_window_matrix_rows): Disable frame rows
4163 whose corresponding window rows have been disabled in
4164 try_window_id.
4165
4166 1999-09-20 Gerd Moellmann <gerd@gnu.org>
4167
4168 * xdisp.c (compute_window_start_on_continuation_line): Handle case
4169 that window start is out of range.
4170 (handle_display_prop, handle_single_display_prop): Replace
4171 marginal area specifications like `left-margin' with `(margin
4172 left-margin)'.
4173 (Qmargin): New.
4174 (syms_of_xdisp): Initialize Qmargin.
4175
4176 1999-09-19 Gerd Moellmann <gerd@gnu.org>
4177
4178 * syntax.c (update_syntax_table, find_defun_start, back_comment,
4179 describe_syntax, skip_chars): Remove unused variables.
4180 (back_comment, forw_comment): Add braces to if-statement with
4181 if-else as dependent statement.
4182
4183 * process.c (list_processes_1): Remove unused variables.
4184 (Fopen_network_stream, create_process): Add parentheses to
4185 conditional expressions.
4186 (create_process): Put declaration of sigchld in #if 0.
4187 (Fopen_network_stream): Removed unused variables.
4188 (Fopen_network_stream, wait_reading_process_input,
4189 wait_reading_process_input, send_process, send_process): Ditto.
4190 (toplevel): Add prototypes for set_waiting_for_input and
4191 keyboard_bit_set.
4192
4193 * abbrev.c (Fexpand_abbrev): Remove unused variables.
4194
4195 * textprop.c (Fset_text_properties): Remove unused variables.
4196 (text_property_list, verify_interval_modification,
4197 interval_has_all_properties): Ditto.
4198
4199 * callproc.c (toplevel) [HAVE_UNISTD_H]: Include unistd.h.
4200 (Fcall_process): Remove unused variable.
4201
4202 * keyboard.c (Frecursive_edit): Remove unused variable.
4203 (command_loop_1, safe_run_hooks, kbd_buffer_get_event,
4204 timer_check, make_lispy_event, menu_bar_items,
4205 menu_bar_one_keymap, menu_bar_item, parse_menu_item,
4206 parse_tool_bar_item, read_char_x_menu_prompt, read_key_sequence,
4207 kbd_buffer_get_event, make_lispy_event, read_char_x_menu_prompt,
4208 read_key_sequence): Ditto. Fread_key_sequence,
4209 Fread_key_sequence_vector, Fsuspend_emacs): Ditto.
4210 (read_key_sequence) [GOBBLE_FIRST_EVENT]: Put local variables only
4211 used when GOBBLE_FIRST_EVENT is defined in #ifdef
4212 (Fexecute_extended_command): Cast XINT to long for %ld.
4213 (toplevel) [HAVE_UNISTD_H]: Include unistd.h.
4214 (toplevel): Include sys/types.h.
4215
4216 * lisp.h (RETURN_UNGCPRO): Use do-while (0) idiom.
4217 (toplevel): Add prototypes for stuff_char, and
4218 code_convert_string_norecord.
4219
4220 1999-09-19 Gerd Moellmann <gerd@gnu.org>
4221
4222 * buffer.h: Add prototype for r_re_alloc.
4223
4224 * insdel.c (copy_text): Removed unused variables.
4225 (count_combining_after, count_combining_after, insert_1_both,
4226 insert_from_string_1, insert_from_buffer_1, check_markers): Ditto.
4227 (adjust_after_replace, replace_range): Add parentheses to logical
4228 expressions. Remove unused variables.
4229 (CHECK_BYTE_COMBINING_FOR_INSERT): Add parentheses to logical
4230 expression.
4231
4232 * alloc.c (Fgarbage_collect): Remove unused variable.
4233 (compact_strings): Add parentheses around assignments in
4234 conditional context.
4235 (toplevel): Put declaration of unused function clear_marks
4236 in #if 0 like its definition.
4237
4238 * lisp.h: Add prototype for shrink_regexp_cache,
4239 sweep_weak_hash_tables.
4240
4241 1999-09-19 Dave Love <fx@gnu.org>
4242
4243 * process.c (Fopen_network_stream): Use strerror, not gai_strerror.
4244
4245 * doc.c (read_bytecode_char): Declare arg.
4246
4247 * lisp.h: Declare Fcurrent_message, Fmake_temp_name,
4248 read_bytecode_char, Fx_hide_busy_cursor, getloadavg.
4249
4250 1999-09-18 Richard Stallman <rms@gnu.org>
4251
4252 * xdisp.c (echo_area_display): Turn off code that returned
4253 without doing anything when using a terminal frame.
4254
4255 1999-09-17 Richard M. Stallman <rms@gnu.org>
4256
4257 * unexelf.c (unexec): Don't get confused by a short section
4258 just before the bss section.
4259
4260 1999-09-16 Gerd Moellmann <gerd@gnu.org>
4261
4262 * emacs.c (main): Remove unused variables.
4263 (sort_args, Fkill_emacs, Fkill_emacs): Ditto.
4264
4265 * lisp.h: Add prototype for uninterrupt_malloc, memory_warnings,
4266 init_fileio_once, syms_of_sound, init_xfns, init_fns
4267 init_sound, check_message_stack.
4268
4269 * emacs.c (toplevel) [HAVE_UNISTD_H]: Include unistd.h.
4270
4271 * intervals.c (rotate_right, rotate_left): Add braces to avoid
4272 ambiguous else warning.
4273 (split_interval_left): Remove unused variables.
4274 (previous_interval, adjust_intervals_for_deletion,
4275 set_point_both, set_point_both, set_intervals_multibyte_1): Ditto.
4276 (icount, idepth, zero_length): Move into #if 0 section below
4277 original position where these are used.
4278
4279 * buffer.h [REL_ALLOC]: Add prototypes for r_alloc and r_alloc_free.
4280
4281 * buffer.c (Fkill_buffer): Remove unused variables.
4282 (Fkill_buffer, overlays_at, overlays_in, recenter_overlay_lists,
4283 fix_overlays_in_range, Fmove_overlay, Fprevious_overlay_change,
4284 init_buffer_once, (syms_of_buffer): Ditto.
4285
4286 * xrdb.c (get_fallback): Remove unused variable.
4287 (x_load_resources): Ditto. Put local variable used for Motif only
4288 in #ifdef USE_MOTIF.
4289
4290 1999-09-16 Gerd Moellmann <gerd@gnu.org>
4291
4292 * minibuf.c (read_minibuf): Remove unused variables.
4293 (read_minibuf, Fread_buffer, scmp, Fcompleting_read): Ditto.
4294 (do_completion): Move assignment out of conditional context.
4295 (Fdisplay_completion_list): Add parentheses to conditional expression.
4296
4297 * cm.c (toplevel) [HAVE_TERMCAP_H]: Include termcap.h.
4298
4299 * lisp.h: Add prototype for no_switch_window.
4300
4301 * window.c (Fset_window_buffer): Remove unused variables.
4302 (Fset_window_margins): Ditto.
4303
4304 * xdisp.c (resize_mini_window): Temporarily set the selected
4305 window's or Vminibuf_scroll_window's height to "fixed" around
4306 the call the change_window_height.
4307
4308 * window.c (window_fixed_size_p): Check window's height_fixed_p
4309 flag.
4310
4311 * window.h (struct window): New member height_fixed_p.
4312
4313 * dispnew.c (direct_output_forward_char): Don't use this method
4314 if showing a message or a message was just cleared because we
4315 might need to resize the mini-window.
4316
4317 1999-09-16 Gerd Moellmann <gerd@gnu.org>
4318
4319 * frame.c (Fdelete_frame): Correct local variable pointing to
4320 selected frame after selecting new frame.
4321
4322 1999-09-15 Richard Stallman <rms@gnu.org>
4323
4324 * puresize.h (BASE_PURESIZE): Increase to 525000.
4325
4326 * filelock.c (Vtemporary_file_directory): New variable.
4327 (syms_of_filelock): Set up Lisp variable.
4328
4329 1999-09-15 Gerd Moellmann <gerd@gnu.org>
4330
4331 * term.c (OUTPUT_IF, OUTPUT1_IF): Use do-while.
4332 (encode_terminal_code): Remove unused variables.
4333 (turn_off_face): Ditto.
4334 (toplevel): Include termcap.h if HAVE_TERMCAP_H.
4335
4336 * dispnew.c (update_frame_line): If writing whole desired line,
4337 don't clear to end of line if already at the end.
4338
4339 1999-09-15 Gerd Moellmann <gerd@gnu.org>
4340
4341 * xdisp.c (resize_mini_window): Don't report changed window
4342 height if it actually hasn't changed.
4343
4344 * widget.c (set_frame_size, EmacsFrameSetCharSize): Remove
4345 unused variables.
4346 (mark_shell_size_user_specified): Put in #if 0 because not used.
4347 (create_frame_gcs): Put in #if 0 because currently unused.
4348 (first_frame_p): Ditto.
4349
4350 * xmenu.c (single_menu_item, Fx_popup_menu, Fx_popup_menu,
4351 single_submenu, update_frame_menubar, set_frame_menubar,
4352 free_frame_menubar, xmenu_show, xdialog_show): Remove unused
4353 variables.
4354
4355 * print.c (PRINTFULLP): Removed because it is no longer used and
4356 is misleading.
4357 (Ferror_message_string): Remove unused variables.
4358 (print_object): Cast argument of sprintf to long for `%ld'
4359 specifier. Remove unused variable.
4360
4361 1999-09-14 Gerd Moellmann <gerd@gnu.org>
4362
4363 * sound.c (Fplay_sound): Remove usused variables.
4364 (be2hs): Put in #if 0 because it's currently not used.
4365
4366 1999-09-14 Ken Raeburn <raeburn@gnu.org>
4367
4368 * print.c (Ferror_message_string, print_error_message,
4369 print_object): Use XCAR, XCDR and XFLOAT_DATA instead of explicit
4370 member access.
4371
4372 1999-09-14 Gerd Moellmann <gerd@gnu.org>
4373
4374 * frame.h (CHECK_FRAME, CHECK_LIVE_FRAME): Put code in do-while.
4375
4376 * frame.c (Fnext_frame): Remove unused variable(s).
4377 (Fprevious_frame, Fmouse_pixel_position, frame_name_fnn_p): Ditto.
4378 (store_frame_param): Add parentheses to conditional expression.
4379 (Fmodify_frame_parameters): Remove unused variables.
4380 (Fmodify_frame_parameters, Fset_frame_size, Fset_frame_position):
4381 Ditto.
4382
4383 * xfns.c (x_set_background_color): Remove unused variable(s).
4384 (x_set_border_pixel): Ditto.
4385 (x_set_menu_bar_lines): Put local variable used only for
4386 non-toolkit case in #ifdef/#endif.
4387 (x_figure_window_size): Remove unused variable(s).
4388 (x_figure_window_size, x_window, lookup_image,
4389 xbm_read_bitmap_file_data, x_build_heuristic_mask, pbm_load,
4390 png_load, jpeg_load, gif_load, x_create_tip_frame,
4391 x_create_tip_frame, Fx_show_tip, x_set_border_pixel): Ditto.
4392
4393 * xterm.c (x_scroll_bar_handle_click): Compile only if
4394 not USE_TOOLKIT_SCROLL_BARS.
4395 (x_scroll_bar_set_handle, x_scroll_bar_note_movement): Ditto.
4396
4397 * dispextern.h: Add prototypes for gamma_correct and
4398 x_kill_gs_process.
4399
4400 * xterm.c (x_produce_glyphs): Remove unused variable(s).
4401 (x_alloc_nearest_color_for_widget, note_tool_bar_highlight,
4402 x_set_toolkit_scroll_bar_thumb): Ditto.
4403 (x_scroll_bar_create): Move local variable to the
4404 conditionally compiled section of code where it is used.
4405 (x_scroll_bar_create): Remove unused variable(s).
4406 (x_scroll_bar_remove, XTread_socket): Ditto.
4407 (XTread_socket) <ConfigureNotify>: Move variables used for
4408 non-toolkit case into conditionally compiled section of code.
4409
4410 * window.h (freeze_window_starts): Fix typo in prototype.
4411
4412 * xdisp.c (display_echo_area_1, try_window_id): Remove unused
4413 variable(s).
4414
4415 * lisp.h: Add prototype for debug_print.
4416
4417 * dispextern.h (xassert) [GLYPH_DEBUG]: Change definition
4418 to use do-while.
4419
4420 * fns.c (SXHASH_COMBINE): Add missing parentheses.
4421 (Fchar_table_range, Fset_char_table_default, mapcar1,
4422 Fyes_or_no_p, sweep_weak_hash_tables): Remove unused variable(s).
4423
4424 * lisp.h: Add prototype for getloadavg.
4425
4426 1999-09-14 Andreas Schwab <schwab@gnu.org>
4427
4428 * process.c (Fopen_network_stream): Avoid socket decriptor leak.
4429
4430 * lisp.h: Declare close_file_unwind.
4431
4432 1999-09-14 Richard Stallman <rms@gnu.org>
4433
4434 * filelock.c (get_boot_time): Make the temp name in the proper dir.
4435
4436 1999-09-13 Gerd Moellmann <gerd@gnu.org>
4437
4438 * xdisp.c (redisplay_window): Make sure start_at_line_beg
4439 is always set correctly.
4440
4441 1999-09-13 Dave Love <fx@gnu.org>
4442
4443 * xdisp.c (move_it_in_display_line_to): Make type consistent with
4444 declaration.
4445
4446 1999-09-13 Gerd Moellmann <gerd@delysid.gnu.org>
4447
4448 * xdisp.c (QCfile): Move here from xfns.c.
4449 (syms_of_xdisp): Initialize it.
4450 (message2_nolog): Change for Lisp_Object selected_frame.
4451 (message3_nolog, message_with_string, message,
4452 setup_echo_area_for_printing, truncate_echo_area,
4453 prepare_menu_bars, redisplay_internal, Fdump_tool_bar_row): Ditto.
4454
4455 1999-09-13 Dave Love <fx@gnu.org>
4456
4457 * xterm.c: Don't continue #define args for benefit of old cc.
4458 (xt_action_hook): Indent #error for benefit of K&R cc.
4459
4460 1999-09-13 Gerd Moellmann <gerd@delysid.gnu.org>
4461
4462 * xterm.c (XTcursor_to): Change for Lisp_Object selected_frame.
4463 (x_clear_frame, XTring_bell, XTmouse_position, XTread_socket): Ditto.
4464 (XRINGBELL): Removed.
4465
4466 1999-09-13 Dave Love <fx@gnu.org>
4467
4468 * xfns.c (x_put_x_image): Make type consistent with declaration.
4469
4470 * fns.c (Fmake_hash_table): Fix string continuation.
4471
4472 1999-09-13 Gerd Moellmann <gerd@delysid.gnu.org>
4473
4474 * xfns.c (QCfile): Moved to xdisp.c.
4475 (syms_of_xfns): Don't initialize QCfile.
4476 (check_x_frame): Change for Lisp_Object selected_frame.
4477 (check_x_display_info, x_get_resource_string): Ditto.
4478
4479 1999-09-13 Gerd Moellmann <gerd@gnu.org>
4480
4481 * minibuf.c (choose_minibuf_frame): Don't try to set the
4482 mini-buffer window's buffer, if the buffer is invalid.
4483
4484 * xfns.c (QCfile): Moved to xdisp.c.
4485 (syms_of_xfns): Don't initialize QCfile.
4486
4487 * xdisp.c (QCfile): Move here from xfns.c.
4488 (syms_of_xdisp): Initialize it.
4489
4490 * lisp.h (selected_frame): Add external declaration.
4491
4492 * xselect.c (x_own_selection): Change for Lisp_Object selected_frame.
4493 (Fx_store_cut_buffer_internal): Ditto.
4494 (Fx_rotate_cut_buffers_internal): Ditto.
4495
4496 * xfaces.c (frame_or_selected_frame): Change for Lisp_Object
4497 selected_frame.
4498 (Finternal_set_lisp_face_attribute): Ditto.
4499 (Finternal_get_lisp_face_attribute): Ditto.
4500 (Finternal_lisp_face_empty_p): Ditto.
4501 (Fdump_face): Ditto.
4502
4503 * term.c (OUTPUT): Change for Lisp_Object selected_frame.
4504 (OUTPUT_IF, ring_bell, set_terminal_modes, reset_terminal_modes,
4505 set_terminal_window, set_scroll_region, reassert_line_highlight,
4506 change_line_highlight, cursor_to, raw_cursor_to, clear_to_end,
4507 clear_end_of_line, clear_end_of_line_raw, clear_end_of_line_raw,
4508 encode_terminal_code, write_glyphs, term_init): Ditto.
4509
4510 * sysdep.c (reset_sys_modes): Change for Lisp_Object selected_frame.
4511 (kbd_input_ast, read_input_waiting): Ditto.
4512
4513 * minibuf.c (choose_minibuf_frame): Change for Lisp_Object
4514 selected_frame.
4515 (read_minibuf): Ditto.
4516
4517 * keyboard.c (command_loop_1): Change for Lisp_Object
4518 selected_frame.
4519 (cmd_error_internal, command_loop_1, read_char,
4520 kbd_buffer_get_event, read_avail_input,
4521 read_char_minibuf_menu_prompt, read_key_sequence, Fsuspend_emacs,
4522 interrupt_signal, quit_throw_to_read_char): Ditto.
4523
4524 * fontset.c (Ffont_info): Change for Lisp_Object selected_frame.
4525 (Ffontset_info): DItto.
4526
4527 * emacs.c (handle_USR1_signal): Change for Lisp_Object selected_frame.
4528
4529 * dispnew.c (selected_frame): Make it a Lisp_Object.
4530 (adjust_frame_glyphs_initially): Change for Lisp_Object selected_frame.
4531 (direct_output_for_insert, direct_output_forward_char,
4532 init_display): Ditto.
4533
4534 * data.c (swap_in_symval_forwarding): Change for Lisp_Object
4535 selected_frame.
4536 (set_internal): Ditto.
4537
4538 * buffer.c (Fother_buffer): Change for Lisp_Object selected_frame.
4539 (record_buffer): Ditto.
4540
4541 * frame.c (Fmake_terminal_frame): Use SELECTED_FRAME.
4542 (do_switch_frame): Change for Lisp_Object selected_frame.
4543 (Fselected_frame): Ditto.
4544 (Fframe_first_window): Use SELECTED_FRAME.
4545 (Fframe_root_window): Change for Lisp_Object selected_frame.
4546 (Fframe_selected_window, Fset_frame_selected_window, Fnext_frame,
4547 Fprevious_frame, other_visible_frames, Fdelete_frame,
4548 Fmouse_position, Fmouse_pixel_position, Fmake_frame_visible,
4549 Fmake_frame_invisible, Ficonify_frame, Fraise_frame, Flower_frame,
4550 Fframe_parameters, Fmodify_frame_parameters, Fframe_char_height,
4551 Fframe_char_width, Fframe_pixel_height, Fframe_pixel_width,
4552 Fset_frame_height, Fset_frame_width): Ditto.
4553
4554 1999-09-13 Gerd Moellmann <gerd@gnu.org>
4555
4556 * xdisp.c (message2_nolog): Change for Lisp_Object selected_frame.
4557 (message3_nolog, message_with_string, message,
4558 setup_echo_area_for_printing, truncate_echo_area,
4559 prepare_menu_bars, redisplay_internal, Fdump_tool_bar_row): Ditto.
4560
4561 * xmenu.c (Fx_popup_menu): Change for Lisp_Object selected_frame.
4562 (Fx_popup_dialog): Ditto.
4563
4564 * xfns.c (check_x_frame): Change for Lisp_Object selected_frame.
4565 (check_x_display_info, x_get_resource_string): Ditto.
4566
4567 * xterm.c (XTcursor_to): Change for Lisp_Object selected_frame.
4568 (x_clear_frame, XTring_bell, XTmouse_position, XTread_socket): Ditto.
4569 (XRINGBELL): Removed.
4570
4571 * window.c (Fminibuffer_window): Change for Lisp_Object
4572 selected_frame.
4573 (Fwindow_at, Fprevious_window, window_loop, select_window_1,
4574 display_buffer_1, Fdisplay_buffer, temp_output_buffer_show,
4575 Fcurrent_window_configuration, init_window_once): Ditto.
4576
4577 * frame.h (SELECTED_FRAME): New.
4578
4579 1999-09-12 Ken Raeburn <raeburn@gnu.org>
4580
4581 * category.c (word_boundary_p): Use XCAR and XCDR.
4582 * ccl.c (ccl_driver, resolve_symbol_ccl_program,
4583 Fregister_code_conversion_map): Likewise.
4584 * coding.c (setup_coding_system, detect_coding_system,
4585 Ffind_operation_coding_system, Fset_coding_priority_internal):
4586 Likewise.
4587 * doc.c (get_doc_string, Fdocumentation,
4588 store_function_docstring): Likewise.
4589 * editfns.c (save_restriction_restore): Likewise.
4590 * eval.c (Fcond, Fmacroexpand, Fcondition_case, wants_debugger,
4591 skip_debugger, find_handler_clause, Fautoload, Fapply,
4592 run_hook_with_args, run_hook_list_with_args, Ffetch_bytecode):
4593 Likewise.
4594 * fileio.c (Ffind_file_name_handler, Finsert_file_contents,
4595 Fwrite_region, do_auto_save_unwind, Fdo_auto_save,
4596 Fread_file_name): Likewise.
4597 * filelock.c (unlock_all_files): Likewise.
4598 * insdel.c (Fcombine_after_change_execute): Likewise.
4599 * intervals.c (adjust_intervals_for_insertion): Likewise.
4600 * keymap.c (get_keymap_1, Fkeymap_parent, Fset_keymap_parent,
4601 Fset_keymap_parent, fix_submap_inheritance, access_keymap,
4602 store_in_keymap, Fcopy_keymap, define_as_prefix,
4603 current_minor_maps, Faccessible_keymaps,
4604 accessible_keymaps_char_table, Fkey_description,
4605 Fwhere_is_internal, where_is_internal_2, where_is_internal_1,
4606 describe_buffer_bindings, describe_map_tree, shadow_lookup,
4607 describe_map): Likewise.
4608 * lread.c (Fload, load_unwind, close_load_descs, read_vector,
4609 read_list, init_lread): Likewise.
4610 * search.c (Fmatch_data): Likewise.
4611 * sunfns.c (Fsun_menu_internal): Likewise.
4612 * syntax.c (describe_syntax): Likewise.
4613 * undo.c (record_insert, record_delete, Fundo_boundary,
4614 truncate_undo_list): Likewise.
4615 * vmsproc.c (child_sig): Likewise.
4616
4617 * editfns.c (Fformat): Use XFLOAT_DATA.
4618
4619 1999-09-12 Gerd Moellmann <gerd@gnu.org>
4620
4621 * keyboard.c (command_loop_1): Resize mini-window to the
4622 exact size of a message displayed, if any.
4623
4624 * xdisp.c (resize_mini_window): Add parameter exact_p. Resize
4625 to exact size if exact_p is non-zero.
4626 (display_echo_area_1): Call resize_mini_window with
4627 new parameter.
4628 (redisplay_internal): Ditto.
4629 (resize_echo_area_axactly): New.
4630
4631 * minibuf.c (read_minibuf_unwind): Call resize_mini_window with
4632 new parameter.
4633
4634 * dispextern.h: Change prototype of resize_mini_window.
4635 Add prototype for resize_echo_area_axactly.
4636
4637 * xfaces.c (Fx_family_fonts): Replaces Fx_font_list.
4638 (syms_of_xfaces): Defsubr accordingly.
4639
4640 * xdisp.c (hscroll_window_tree): Choose cursor row from
4641 desired or current matrix.
4642 (redisplay_internal): Hscroll before updating.
4643
4644 1999-09-12 Gerd Moellmann <gerd@gnu.org>
4645
4646 * syntax.c (Fforward_word): Use prompt_end_charpos instead
4647 of minibuffer_prompt_length.
4648
4649 * minibuf.c (read_minibuf): Use prompt_end_charpos instead
4650 of minibuffer_prompt_length.
4651 (read_minibuf_unwind): Ditto.
4652 (Fminibuffer_complete_and_exit): Ditto.
4653 (Fminibuffer_complete_word): Ditto.
4654 (Fminibuffer_prompt_end): Ditto.
4655
4656 * editfns.c (Fbuffer_string): Use prompt_end_charpos instead
4657 of minibuffer_prompt_length.
4658 (Fline_beginning_position): Ditto.
4659
4660 * buffer.c (Fget_buffer_create): Use prompt_end_charpos instead
4661 of minibuffer_prompt_length.
4662 (Fmake_indirect_buffer): Ditto.
4663 (Fkill_buffer): Ditto.
4664 (Ferase_buffer): Ditto.
4665
4666 * buffer.h (prompt_end_charpos): Replaces
4667 minibuffer_prompt_length.
4668
4669 * minibuf.c (read_minibuf): Return mini-buffer contents
4670 without the prompt.
4671
4672 * editfns.c (make_buffer_string_both): Take out the code
4673 to handle mini-buffer prompts.
4674 (Fbuffer_string): Handle the prompt here, instead.
4675
4676 * xfaces.c (lface_from_face_name): Resolve face aliases.
4677 (Qmode_line): Replaces Qmodeline.
4678 (realize_basic_faces): Use Qmode_line.
4679 (syms_of_xfaces): Initialize Qmode_line.
4680
4681 1999-09-12 Gerd Moellmann <gerd@gnu.org>
4682
4683 * minibuf.c (read_minibuf): Set minibuf_prompt_width to the
4684 current column after inserting prompt.
4685 (Fminibuffer_prompt_width): Return minibuf_prompt_width.
4686
4687 * xfaces.c (Qframe_update_face_colors): New.
4688 (syms_of_xfaces): Initialize call.
4689 (update_face_from_frame_parameter): Call that function when
4690 the frame's background changes.
4691
4692 1999-09-12 Richard Stallman <rms@gnu.org>
4693
4694 * insdel.c (del_range_1): Don't treat minibuffer prompt specially.
4695
4696 1999-09-12 Ken Raeburn <raeburn@gnu.org>
4697
4698 * alloc.c (Fcons, pure_cons, Fpurecopy, Fgarbage_collect,
4699 mark_object, mark_buffer): Use XCAR and XCDR.
4700 * bytecode.c (Fbyte_code): Likewise.
4701 * callint.c (Fcall_interactively, Fprefix_numeric_value):
4702 Likewise.
4703 * callproc.c (Fcall_process, Fcall_process_region, child_setup,
4704 getenv_internal): Likewise.
4705 * dired.c (file_name_completion): Likewise.
4706 * fns.c (Fsafe_length, concat, Fcopy_alist, Fmember, Fmemq, Fassq,
4707 assq_no_quit, Fassoc, Frassq, Frassoc, Fdelq, Fdelete, Freverse,
4708 Fplist_get, Fplist_put, internal_equal, mapcar1): Likewise.
4709 * indent.c (Fcompute_motion): Likewise.
4710 * process.c (decode_status, Fprocess_status, Fprocess_exit_status,
4711 list_processes_1, Fstart_process, Fopen_network_stream,
4712 wait_reading_process_input, read_process_output_call,
4713 kill_buffer_processes, sigchld_handler, exec_sentinel_unwind,
4714 status_notify, wait_reading_process_input): Likewise.
4715 * textprop.c (PLIST_ELT_P, property_value, set_properties,
4716 extend_property_ranges): Likewise.
4717 * w32faces.c (Fpixmap_spec_p, merge_face_list): Likewise.
4718 * w32fns.c (x_window_to_frame, x_set_frame_parameters,
4719 x_report_frame_params, x_set_cursor_type, x_icon_type,
4720 x_figure_window_size, Fx_create_frame, w32_load_system_font,
4721 w32_load_font, enum_font_cb2, w32_list_bdf_fonts, w32_list_fonts,
4722 w32_list_synthesized_fonts, w32_find_ccl_program, Fx_list_fonts,
4723 Fw32_find_bdf_fonts, w32_find_bdf_fonts_in_dir,
4724 x_display_info_for_name, Fx_display_list): Likewise.
4725 * w32menu.c (menubar_id_to_frame, single_keymap_panes,
4726 Fx_popup_menu, Fx_popup_dialog): Likewise.
4727 * w32proc.c (Fw32_set_keyboard_layout): Likewise.
4728 * w32term.c (x_window_to_scroll_bar, w32_read_socket,
4729 w32_term_init, x_delete_display): Likewise.
4730 * xfns.c (x_window_to_frame, x_any_window_to_frame,
4731 x_non_menubar_window_to_frame, x_menubar_window_to_frame,
4732 x_top_window_to_frame, x_set_frame_parameters,
4733 x_report_frame_params, x_set_cursor_type, x_icon_type,
4734 x_figure_window_size, Fx_create_frame, x_display_info_for_name,
4735 Fx_display_list, x_create_tip_frame): Likewise.
4736 * xmenu.c (menubar_id_to_frame, single_keymap_panes,
4737 Fx_popup_menu, Fx_popup_dialog): Likewise.
4738 * xselect.c (x_own_selection, x_get_local_selection,
4739 x_handle_selection_request, x_handle_selection_clear,
4740 x_clear_frame_selections, wait_for_property_change_unwind,
4741 wait_for_property_change, x_handle_property_notify,
4742 copy_multiple_data, x_get_foreign_selection,
4743 lisp_data_to_selection_data, clean_local_selection_data,
4744 x_handle_selection_notify, Fx_get_selection_internal,
4745 x_disown_buffer_selections): Likewise.
4746 * xterm.c (x_window_to_scroll_bar, XTread_socket, x_list_fonts,
4747 x_load_font, x_find_ccl_program, x_term_init, x_delete_display):
4748 Likewise.
4749
4750 * alloc.c (make_float, make_pure_float, Fpurecopy): Use
4751 XFLOAT_DATA.
4752 * bytecode.c (Fbyte_code): Likewise.
4753 * floatfns.c (extract_float, Fexpt, Fabs, rounding_driver,
4754 fmod_float): Likewise.
4755
4756 1999-09-11 Richard Stallman <rms@gnu.org>
4757
4758 * xdisp.c (run_window_scroll_functions): If hook functions switch
4759 buffers, switch back after.
4760
4761 1999-09-11 Ken Raeburn <raeburn@gnu.org>
4762
4763 * charset.h (GET_TRANSLATION_TABLE): Use XCDR.
4764 * frame.h (FOR_EACH_FRAME): Use XCAR and XCDR.
4765 (PIXEL_X_FROM_CANON_X, PIXEL_Y_FROM_CANON_Y): Use XFLOAT_DATA.
4766 * keyboard.h (EVENT_HEAD, EVENT_START, EVENT_END, POSN_WINDOW,
4767 POSN_BUFFER_POSN, POSN_WINDOW_POSN, POSN_TIMESTAMP): Use XCAR and
4768 XCDR.
4769 * syntax.h (SYNTAX, SYNTAX_WITH_FLAGS, SYNTAX_MATCH): Use XCAR and
4770 XCDR.
4771
4772 1999-09-10 Richard Stallman <rms@gnu.org>
4773
4774 * xterm.c (XTread_socket): In XSetInputFocus, use RevertToParent,
4775 not RevertToPointerRoot.
4776 (XTset_vertical_scroll_bar) [!USE_TOOLKIT_SCROLL_BARS]:
4777 Fix the code to clear around the scroll bar.
4778
4779 1999-09-10 Keisuke Nishida <kxn30@po.cwru.edu>
4780
4781 * print.c: Support print-circle and related features.
4782 (Vprint_gensym_alist): Removed.
4783 (Vprint_circle, Vprint_continuous_numbering, print_number_index
4784 Vprint_number_table): New variables.
4785 (PRINT_NUMBER_OBJECT, PRINT_NUMBER_STATUS): New macros.
4786 (PRINTPREPARE, PRINTFINISH): Don't set Vprint_gensym_alist.
4787 (print, print_preprocess, print_preprocess_string, print_object):
4788 New/modified functions with print-circle feature. Use
4789 Vprint_number_table instead of Vprint_gensym_alist for print-gensym.
4790 (syms_of_print): Defined new Lisp variables `print-circle',
4791 `print-continuous-numbering', `print-number-table'.
4792
4793 1999-09-10 Gerd Moellmann <gerd@gnu.org>
4794
4795 * xfns.c (x_build_heuristic_mask): Accept a list `(R G B)'
4796 as background color specification instead of an integer.
4797 (image-cache-eviction-delay): Replaces image-eviction-seconds.
4798 (Vimage_cache_eviction_delay): Replaces Vimage_eviction_seconds.
4799 (clear_image_cache, syms_of_xfns): Use it.
4800 (Qpostscript): Replaces Qghostscript.
4801 (gs_type): Use it.
4802 (gs_image_p): Ditto.
4803 (syms_of_xfns): Initialize Qpostscript.
4804
4805 1999-09-10 Richard Stallman <rms@gnu.org>
4806
4807 * buffer.c (Ferase_buffer): Don't erase the minibuffer prompt.
4808
4809 1999-09-09 Richard Stallman <rms@gnu.org>
4810
4811 * editfns.c (Fline_beginning_position): Handle minibuffer prompt here.
4812
4813 * cmds.c (Fbeginning_of_line): Don't handle minibuffer prompt here.
4814
4815 1999-09-09 Gerd Moellmann <gerd@gnu.org>
4816
4817 * fns.c (Fmakehash): Accept just one optional argument TEST.
4818
4819 * xfns.c (QCindex): New.
4820 (syms_of_xfns): Initialize QCindex.
4821 (gif_load): Use it instead of `:image'.
4822
4823 1999-09-09 Richard Stallman <rms@gnu.org>
4824
4825 * fileio.c (Fwrite_region): Finish renaming CONFIRM to MUSTBENEW.
4826 (Fwrite_region) [DOS_NT]: Handle `excl' here too.
4827
4828 1999-09-08 Gerd Moellmann <gerd@gnu.org>
4829
4830 * xdisp.c (Qwhen): Replaces QCwhen.
4831 (syms_of_xdisp): Initialized it instead of QCwhen.
4832 (handle_single_display_prop): Use it instead of QCwhen.
4833
4834 1999-09-08 Ken'ichi Handa <handa@gnu.org>
4835
4836 * charset.c (translate_char): Reset MSBs of arguments of
4837 MAKE_CHAR.
4838 (CHAR_COMPONENTS_VALID_P): Fix for ASCII.
4839
4840 1999-09-08 Lars Magne Ingebrigtsen <larsi@gnus.org>
4841
4842 * editfns.c (Fbufsize): Accept an extra BUFFER parameter.
4843
4844 * fns.c (Fbase64_decode_region): Don't place point outside of the
4845 current accessible portion.
4846
4847 1999-09-07 Richard Stallman <rms@gnu.org>
4848
4849 * keymap.c (fix_submap_inheritance): Do nothing if the proper
4850 parent is an ancestor of SUBMAP; otherwise, add it as the
4851 ultimate ancestor.
4852
4853 1999-09-07 Gerd Moellmann <gerd@gnu.org>
4854
4855 * xdisp.c (handle_single_display_prop): Change conditional
4856 display property to `:when FORM . VALUE'.
4857
4858 1999-09-07 Richard Stallman <rms@gnu.org>
4859
4860 * fileio.c (Fwrite_region): Doc fix.
4861
4862 1999-09-07 Stefan Monnier <monnier@cs.yale.edu>
4863
4864 * fileio.c (Qexcl): New variable.
4865 (report_file_error): Handle EEXIST specially.
4866 (Fwrite_region): Special handling for CONFIRM = `excl'.
4867 (syms_of_fileio): Initialize Qexcl.
4868
4869 1999-09-07 Gerd Moellmann <gerd@gnu.org>
4870
4871 * xfns.c (x_set_foreground_color): Call
4872 update_face_from_frame_parameter.
4873 (x_set_background_color): Ditto.
4874 (x_set_mouse_color): Ditto.
4875 (x_set_cursor_color): Ditto.
4876 (x_set_border_color): Ditto.
4877 (x_set_scroll_bar_foreground): Ditto.
4878 (x_set_scroll_bar_background): Ditto.
4879
4880 * xfaces.c (recompute_basic_faces): Clear face cache.
4881 (Finternal_set_lisp_face_attribute): Modify frame parameters
4882 if attributes of certain faces are changed.
4883 (update_face_from_frame_parameter): New.
4884
4885 * xfaces.c (realize_basic_faces): Realize new basic faces.
4886
4887 * dispextern.h (SCROLL_BAR_FACE_ID, BORDER_FACE_ID,
4888 CURSOR_FACE_ID, MOUSE_FACE_ID): New.
4889
4890 * xfaces.c (Qscroll_bar, Qcursor, Qborder, Qmouse): New.
4891 (syms_of_xfaces): Intialize new symbols.
4892
4893 * fns.c (Fmakehash): Take one argument, test, make all the
4894 rest keyword arguments.
4895
4896 * window.c (Fset_window_margins): Make window the first argument.
4897 (set_window_buffer): Call Fset_window_margins with window as first
4898 argument.
4899
4900 1999-09-07 Gerd Moellmann <gerd@gnu.org>
4901
4902 * xfaces.c (Qfringe): Replaces Qmargin.
4903
4904 1999-09-07 Kenichi Handa <handa@etl.go.jp>
4905
4906 * charset.h: Lots of comments fixed.
4907 (PARSE_MULTIBYTE_SEQ): Make it work also for ASCII string.
4908 (STRING_CHAR_AND_CHAR_LENGTH): This macro removed.
4909
4910 * charset.c : Lots of comments fixed.
4911 (SPLIT_MULTIBYTE_SEQ): Make it work also for ASCII string.
4912 (CHAR_COMPONENTS_VALID_P): Name changed from
4913 CHAR_COMPONENT_VALID_P. Caller changed.
4914
4915 1999-09-06 Richard Stallman <rms@gnu.org>
4916
4917 * insdel.c (syms_of_insdel): Define Lisp variable
4918 inhibit-modification-hooks.
4919
4920 1999-09-06 Michael Sperber [Mr. Preprocessor] <sperber@informatik.uni-tuebingen.de>
4921
4922 * s/aix4-2.h (ALIGN_DATA_RELOC): Undefined to support new
4923 unexaix.c.
4924
4925 * s/aix3-1.h (ALIGN_DATA_RELOC): Defined to support new unexaix.c.
4926
4927 1999-09-06 Dave Love <fx@gnu.org>
4928
4929 * unexaix.c: New version incorporating Michael Sperber's changes
4930 from XEmacs. Should solve problems on AIX 4.3.
4931
4932 * lread.c (Vbyte_boolean_vars): New variable.
4933 (defvar_bool, syms_of_lread): Use it.
4934
4935 1999-09-05 Richard Stallman <rms@gnu.org>
4936
4937 * minibuf.c (read_minibuf): Put all three properties on the
4938 same range, the whole prompt.
4939
4940 1999-09-05 Gerd Moellmann <gerd@gnu.org>
4941
4942 * sound.c (Qplay_sound_functions): Replaces Qplay_sound_hook.
4943 (Fplay_sound, syms_of_sound): Use it.
4944 (parse_sound): Allow float volume values in the range [0, 1].
4945 (Fplay_sound): Ditto.
4946
4947 * window.c (Fset_window_vscroll): Make window the first argument,
4948 amount to scroll the second. Take non-negative vscroll as
4949 argument.
4950 (Fwindow_vscroll): Return non-negative vscroll.
4951
4952 * xfns.c (Fx_show_tip): Improve documentation.
4953
4954 1999-09-05 Gerd Moellmann <gerd@gnu.org>
4955
4956 * buffer.c, buffer.h, dispextern.h, dispnew.c, keyboard.c,
4957 window.c, xdisp.c, xfaces.c, xterm.c, keyboard.h: Change
4958 `top-line' and `top_line' to `header-line' and `header_line'.
4959 Likewise for similar spellings.
4960
4961 1999-09-05 Gerd Moellmann <gerd@gnu.org>
4962
4963 * xdisp.c (row_containing_pos): New.
4964 (try_window_id): Use it.
4965
4966 * alloc.c, dispextern.h, dispnew.c, frame.c, frame.h, keyboard.c,
4967 lisp.h, termhooks.h, window.c xdisp.c, xfaces.c, xfns.c, xterm.c:
4968 Change spelling of `toolbar' to `tool_bar' or `tool-bar'.
4969 Likewise for upper-case etc.
4970
4971 1999-09-05 Gerd Moellmann <gerd@gnu.org>
4972
4973 * xterm.c (XTset_vertical_scroll_bar) [!USE_TOOLKIT_SCROLL_BARS]:
4974 Fix reference to renamed variable.
4975
4976 1999-09-04 Gerd Moellmann <gerd@gnu.org>
4977
4978 * window.c (Qwindow_size_fixed): Replaces Qfixed_window_size.
4979 (window_fixed_size_p): Use Qwindow_size_fixed instead of
4980 Qfixed_window_size.
4981 (syms_of_window): Ditto.
4982
4983 * fns.c (Fmakehash): Exchange optional test and size arguments.
4984
4985 1999-09-03 Gerd Moellmann <gerd@gnu.org>
4986
4987 * xterm.c (XTset_vertical_scroll_bar): Block input when clearing
4988 under newly created scroll bar.
4989 (expose_window): If window is not yet fully initialized, do
4990 nothing. This can happen when toolkit scroll bars are used and a
4991 window is split. Reconfiguring the scroll bars will generate an
4992 expose for a newly created window.
4993
4994 * frame.h (struct frame): New member `gamma'.
4995
4996 * xfns.c: Include math.h. Add extern declaration for atof in case
4997 we don't see one.
4998 (Qscreen_gamma): New.
4999 (struct x_frame_parm_table): Add prototypes, add
5000 x_set_screen_gamma.
5001 (gamma_correct): New function.
5002 (defined_color): Call it.
5003 (x_set_screen_gamma): New.
5004 (x_set_title): Add parameter old_value.
5005 (RES_TYPE_FLOAT): New.
5006 (x_get_arg): Handle RES_TYPE_FLOAT.
5007 (Fx_create_frame): Call x_default_parameter for `screen-gamma'.
5008 (lookup_pixel_color): Change call to x_alloc_nearest_color to
5009 new prototype.
5010 (lookup_rgb_color): Ditto.
5011 (syms_of_xfns): Initialize Qscreen_gamma.
5012
5013 * xterm.c (x_alloc_nearest_color_for_widget) [USE_X_TOOLKIT]:
5014 New. Allocate color for lwlib widgets.
5015 (x_alloc_nearest_color): Change parameter list include the
5016 frame on which to allocate colors. Gamma-correct colors.
5017 (x_alloc_lighter_color): Call x_alloc_lighter_color with new
5018 parameter list.
5019
5020 * xterm.h: Change protorype of x_alloc_nearest_color.
5021
5022 1999-09-03 Richard Stallman <rms@gnu.org>
5023
5024 * callproc.c: Delete the system-independent include of stdlib.h
5025 (leaving only the one in the WINDOWSNT conditional).
5026
5027 1999-09-03 Andrew Choi <choi@cs.hku.hk>
5028
5029 * callproc.c (call-process) [macintosh]: Call mac_run_command in
5030 sysdep.c. The Mac code is modeled after the DOS code.
5031
5032 * dispextern.h [macintosh]: Include macterm.h to define substitute X
5033 Window types and macros.
5034
5035 * frame.h: Do nothing if included a second time.
5036 (enum output_method): Add mac_output frame type.
5037 (union output_data): Add new alternative `mac'.
5038 (FRAME_MAC_P): New macro.
5039
5040 * frame.c (Fframep) [macintosh]: Handle mac frame type.
5041 (syms_of_frame_1): Initialize Qmac.
5042 (make_terminal_frame) [macintosh]: Initialize output_data.mac fields.
5043 (Fmake_terminal_frame) [macintosh]: Add an alternate error check.
5044 (Fmodify_frame_parameters) [macintosh]: Call
5045 mac_set_frame_parameter in macterm.c.
5046
5047 * keyboard.c [macintosh]: Set KBD_BUFFER_SIZE to a smaller value
5048 (512) because Mac compilers limit local data of a function to 32K.
5049
5050 * make-docfiles.c: Correctly handle input files with Mac-style
5051 eol's.
5052
5053 * sysdep.c: Define numerous routines to emulate Unix system calls.
5054
5055 * xfaces.c: on MacOS, define the set of colors listed in rgb.txt
5056 file of an X Window environment.
5057
5058 * xfaces.c: on MacOS, define the Lisp functions x-display-color-p,
5059 x-display-grayscale, x-color-defined-p, and x-color-values.
5060
5061 * sysdep.c [macintosh] (stat, fstat, mkdir, rmdir, utime, access)
5062 (open, creat, unlink, read, write, rename, fopen, pause, alarm)
5063 (signal, sleep, gmtime, localtime, ctime, time, index, mktemp)
5064 (getpwuid, getpwnam, dup, dup2, isatty, getgid, getegid, getuid)
5065 (geteuid, getpid, getenv, uname, opendir, closedir, readdir, getwd.):
5066 New functions, replacing POSIX features.
5067
5068 * sysdep.c [macintosh] (Mac2UnixPathname, Unix2MacPathname, CheckAlarm)
5069 (InitMyPasswd, GetTempDirName, mystrchr, mystrtok, mystrcpy):
5070 (InitEmacsPasswdDir, run_mac_command): New subroutines.
5071
5072 * sysdep.c [macintosh] (targetTicks, alarm_signal_func, myPasswdName)
5073 (myPasswd, emacsPasswdDir, emacsPasswd, myPasswdInited, mask)
5074 (myPasswdDir, TempDirName, sys_siglist): New variables.
5075
5076 * sysdep.c [macintosh] (execvp, wait, croak, fork, kill, sigsetmask)
5077 (sigblock, request_sigio, unrequest_sigio, setpgrp, pipe, symlink)
5078 (link, lstat, readlink, umask, chmod, sbrk, fsync, ioctl):
5079 Define empty stubs so Emacs will link.
5080
5081 1999-09-03 Gerd Moellmann <gerd@gnu.org>
5082
5083 * xdisp.c: Use XCAR and XCDR instead of XCONS.
5084
5085 * window.h: New member frozen_window_start_p.
5086
5087 * window.c (foreach_window, foreach_window_1): New.
5088 (freeze_window_start, freeze_window_starts): New.
5089 (make_window): Initialize frozen_window_start_p.
5090 (replace_window): Ditto.
5091 (Fset_window_point): Remove references to deleted variables.
5092 (Fset_window_start): Ditto.
5093
5094 * xdisp.c (Vresize_mini_config, resize_mini_frame,
5095 resize_mini_initial_height): Removed.
5096 (syms_of_xdisp): Remove references to these variables.
5097 (resize_mini_window): Don't save window configuration, freeze
5098 window starts instead. Enlarge window until displaying an empty
5099 buffer, then shrink it. Make the function externally visible.
5100 (redisplay_window): Treat frozen window start like forced start,
5101 but accept point outside of the window.
5102
5103 * dispextern.h: Add function prototype for resize_mini_window.
5104
5105 * minibuf.c (read_minibuf_unwind): Resize mini-window when
5106 reaching minibuf_level 0.
5107
5108 * lisp.h: Remove extern declarations for variables deleted from
5109 xdisp.c.
5110
5111 * dispnew.c (adjust_frame_glyphs): Remove reference to
5112 Vresize_mini_config.
5113
5114 1999-09-03 Gerd Moellmann <gerd@gnu.org>
5115
5116 * xfns.c (x_set_scroll_bar_width): Change conditional compilation
5117 to USE_TOOLKIT_SCROLL_BARS.
5118
5119 * xterm.c (x_scroll_bar_create): Don't clear under scroll bar
5120 here.
5121 (XTset_vertical_scroll_bar): Clarify position computations. Clear
5122 under newly created scroll bar. Put toolkit scroll bars in the
5123 middle of the area reserved for the scroll bar.
5124
5125 1999-09-03 Kenichi Handa <handa@etl.go.jp>
5126
5127 The following changes are for the new handling of mulitbyte
5128 sequence. Now, except for a composite character, no multibyte
5129 character in string/buffer has trailing garbage bytes. For
5130 instance, the length of string "\201\300\300" is now 2, the first
5131 character is Latin-1 A-grave, the second is raw \300.
5132
5133 * charset.h (MAKE_NON_ASCII_CHAR): Handle the case that C1 or C2
5134 are negative.
5135 (MAKE_CHAR): Don't set MSBs of C1 and C2 to 0.
5136 (VALID_MULTIBYTE_CHAR_P): This macro deleted.
5137 (PARSE_COMPOSITE_SEQ): New macro.
5138 (PARSE_CHARACTER_SEQ): New macro.
5139 (PARSE_MULTIBYTE_SEQ): New macro.
5140 (CHAR_PRINTABLE_P): New macro.
5141 (STRING_CHAR): Adjusted for the change of string_to_non_ascii_char.
5142 (STRING_CHAR_AND_LENGTH): Likewise.
5143 (STRING_CHAR_AND_CHAR_LENGTH): Define it as STRING_CHAR_AND_LENGTH.
5144 (INC_POS): Use the macro PARSE_MULTIBYTE_SEQ.
5145 (DEC_POS, BUF_INC_POS, BUF_DEC_POS): Likewise,
5146
5147 * charset.c (SPLIT_COMPOSITE_SEQ): New macro.
5148 (SPLIT_CHARACTER_SEQ): New macro.
5149 (SPLIT_MULTIBYTE_SEQ): New macro.
5150 (CHAR_COMPONENT_VALID_P): New macro.
5151 (non_ascii_char_to_string): Generate a multibyte sequence as far
5152 as possible.
5153 (string_to_non_ascii_char): The 4th arg exclude_tail_garbage is
5154 deleted. Caller changed. Use the macro SPLIT_MULTIBYTE_SEQ.
5155 (split_non_ascii_string): Likewise.
5156 (multibyte_form_length): Use the macro PARSE_MULTIBYTE_SEQ.
5157 (char_printable_p): New function.
5158 (translate_char): Check character by NATNUMP instead of INTEGERP.
5159 (unibyte_char_to_multibyte): Call char_valid_p instead of
5160 VALID_MULTIBYTE_CHAR_P.
5161 (Fmake_char_internal): Check the arguments more rigidly.
5162 (Fcharset_after): Use the macro SPLIT_MULTIBYTE_SEQ.
5163 (char_valid_p): Check the validity by CHAR_COMPONENT_VALID_P.
5164 (Fmultibyte_char_to_unibyte): Check the validity of character by
5165 CHAR_VALID_P.
5166 (chars_in_text): Call multibyte_chars_in_text.
5167 (multibyte_chars_in_text): Use the macro PARSE_MULTIBYTE_SEQ.
5168 (Fcompose_string): Use the macro STRING_CHAR_AND_LENGTH instead of
5169 STRING_CHAR_AND_CHAR_LENGTH (which is obsolete now).
5170
5171 * data.c (Faset): Adjust the way to check byte-combining
5172 possibility for the new handling of multibyte sequence.
5173
5174 * editfns.c (Fsubst_char_in_region): Likewise.
5175
5176 * fns.c (count_combining): Use the macro PARSE_MULTIBYTE_SEQ.
5177 (string_char_to_byte): Likewise.
5178 (string_byte_to_char): Likewise.
5179
5180 * indent.c (MULTIBYTE_BYTES_WIDTH): Delete the 2nd arg C. Use the
5181 macro STRING_CHAR_AND_LENGTH. Caller changed.
5182
5183 * insdel.c (count_combining_composition): New function.
5184 (count_combining_before): Adjust the way to check byte-combining
5185 possibility for the new handling of multibyte sequence. Call
5186 count_combining_composition for a composite character.
5187 (count_combining_after): Likewise.
5188
5189 * print.c (print_string): Use the macro STRING_CHAR_AND_LENGTH.
5190 (print): Likewise.
5191
5192 * dispextern.h (struct it): Change the size of the member
5193 `ctl_chars'.
5194
5195 * xdisp.c (get_next_display_element): Display incomplete multibyte
5196 sequence (e.g. \222\300) by octal form.
5197
5198 1999-09-02 Gerd Moellmann <gerd@gnu.org>
5199
5200 * xterm.h (VERTICAL_SCROLL_BAR_WIDTH_TRIM): Change from 2 to 0.
5201
5202 * fns.c (Fhash_table_weakness): Replaces Fhash_table_weak.
5203 (cmpfn_eql, sxhash): Use XFLOAT_DATA.
5204
5205 1999-09-02 Gerd Moellmann <gerd@gnu.org>
5206
5207 * buffer.c (set_buffer_internal): Never set
5208 windows_or_buffers_changed.
5209
5210 * xdisp.c (try_window_id): Reset first_unchanged_at_end_row
5211 if we have displayed to the bottom of the window.
5212
5213 * syntax.c (Fforward_word): Stop at a mini-buffer prompt end
5214 in both directions. Extend documentation.
5215
5216 1999-09-01 Gerd Moellmann <gerd@gnu.org>
5217
5218 * minibuf.c (read_minibuf): Flush display after setting cursor to
5219 column 0.
5220
5221 1999-08-31 Gerd Moellmann <gerd@gnu.org>
5222
5223 * s/freebsd.h (__FreeBSD_version): Don't define it if it is
5224 already defined. This avoids a warning from buffer.c.
5225
5226 1999-08-30 Gerd Moellmann <gerd@gnu.org>
5227
5228 * xterm.h (FRAME_X_FLAGS_AREA_COLS): Define it as the total width
5229 of both margins.
5230 (FRAME_X_FLAGS_AREA_WIDTH): Likewise.
5231 (FRAME_X_LEFT_FLAGS_AREA_WIDTH): New.
5232 (FRAME_X_RIGHT_FLAGS_AREA_WIDTH): New.
5233
5234 * frame.h (FRAME_WINDOW_WIDTH_ARG): Add in FRAME_FLAGS_AREA_COLS
5235 once instead of twice.
5236 (FRAME_LEFT_FLAGS_AREA_WIDTH): New.
5237
5238 * xterm.c: Remove unused bitmaps.
5239 (continued_bits, continuation_bits, overlay_bits): Change images.
5240 (x_draw_vertical_border): Use FRAME_X_RIGHT_FLAGS_AREA_WIDTH
5241 instead of FRAME_X_FLAGS_AREA_WIDTH.
5242 (x_after_update_window_line): Ditto.
5243 (x_draw_bitmap): Likewise.
5244 (x_draw_row_bitmaps): Likewise.
5245 (x_draw_glyph_string_box): Likewise.
5246 (x_draw_glyphs): Likewise.
5247 (x_scroll_run): Likewise.
5248 (expose_window_tree): Likewise.
5249 (note_mode_line_highlight): Likewise.
5250 (XTset_vertical_scroll_bar): Likewise.
5251 (x_clip_to_row): Likewise.
5252 (x_set_window_size): Likewise.
5253
5254 * xfns.c (x_figure_window_size): Use FRAME_FLAGS_AREA_COLS instead
5255 of 2 * that value.
5256
5257 * xdisp.c (window_box_width): Use FRAME_FLAGS_AREA_COLS instead of
5258 2 * that value.
5259 (window_box_left): Use FRAME_LEFT_FLAGS_AREA_WIDTH instead of
5260 FRAME_FLAGS_AREA_WIDTH.
5261
5262 * window.c (coordinates_in_window): Use
5263 FRAME_LEFT_FLAGS_AREA_WIDTH instead of FRAME_FLAGS_AREA_WIDTH.
5264 (window_internal_width): Subtract FRAME_FLAGS_AREA_WIDTH once
5265 instead of twice.
5266
5267 * widget.c (set_frame_size): Set flags_area_extra to
5268 FRAME_FLAGS_AREA_WIDTH instead of 2 * that width.
5269 (EmacsFrameSetCharSize): Ditto.
5270
5271 * dispnew.c (mode_line_string): Add FRAME_LEFT_FLAGS_AREA_WIDTH
5272 instead of FRAME_FLAGS_AREA_WIDTH.
5273
5274 * dispextern.h (WINDOW_DISPLAY_PIXEL_WIDTH): Subtract
5275 FRAME_FLAGS_AREA_COLS once.
5276 (WINDOW_DISPLAY_LEFT_EDGE_PIXEL_X): Add
5277 FRAME_LEFT_FLAGS_AREA_WIDTH instead of FRAME_FLAGS_AREA_WIDTH.
5278
5279 1999-08-30 Gerd Moellmann <gerd@gnu.org>
5280
5281 * freebsd.h (C_SWITCH_SYSTEM): Added to let configure find headers
5282 in /usr/X11R6/include which are checked for with AC_CHECK_HEADER.
5283
5284 1999-08-30 Gerd Moellmann <gerd@gnu.org>
5285
5286 * fns.c (QCweakness): Replaces QCweak.
5287 (Fmake_hash_table): Ditto.
5288 (Fmakehash): Ditto.
5289 (syms_of_fns): Ditto.
5290
5291 1999-08-29 Richard Stallman <rms@gnu.org>
5292
5293 * search.c (compile_pattern_1): Enable RE_CHAR_CLASSES for regexp.
5294
5295 * sysdep.c (read_input_waiting): Pass read_socket_hook just 4 args.
5296
5297 * syntax.h (SYNTAX_COMMENT_NESTED, SYNTAX_FLAGS_COMMENT_NESTED):
5298 Add support for nested comments.
5299
5300 * syntax.c (Fforward_comment, scan_lists, scan_sexps_forward):
5301 Consolidate the forward comment code into the new `forw_comment'.
5302 (forw_comment): New subroutine. Added support for nested comments.
5303 (lisp_parse_state, back_comment, Fmodify_syntax_entry)
5304 (Fparse_partial_sexp): Add support for nested comments.
5305
5306 1999-08-28 Ken Raeburn <raeburn@gnu.org>
5307
5308 * lisp.h (struct Lisp_Cons, XCAR, XCDR, struct Lisp_Float): Change
5309 names of structure elements if HIDE_LISP_IMPLEMENTATION is
5310 defined, to help detect code that uses knowledge of the Lisp
5311 internals that it shouldn't have.
5312 (XFLOAT_DATA): New macro.
5313
5314 1999-08-25 Gerd Moellmann <gerd@gnu.org>
5315
5316 * syntax.c (Fforward_word): If in a mini-buffer and moving
5317 backwards, stop in front of the prompt to prevent accidentially
5318 moving into the read-only prompt.
5319
5320 * window.c (Frecenter): Clear frame if called with nil or no arg.
5321
5322 * xdisp.c (resize_mini_window): Don't resize if
5323 Vmax_mini_window_height is nil. Otherwise, use a default if
5324 Vmax_mini_window_height is not ot a number.
5325 (syms_of_xdisp): Extend documentation of Vmax_mini_window_height.
5326
5327 1999-08-25 Alexandre Oliva <oliva@dcc.unicamp.br>
5328
5329 * unexelf.c: Merge IRIX debugging info patch from unexsgi.c
5330 * m/iris4d.h: Use unexelf for IRIX 5.*.
5331 * m/iris5d.h: Use unexelf for IRIX 6.*.
5332 * unexsgi.c: Deleted.
5333
5334 * unexelf.c: Auto-detect .sbss section.
5335 (round_up): Make it static.
5336 (unexec): Declare alignment as Elf Word. Skip ``Program
5337 segment above .bss'' test on MIPS without .sbss.
5338 Copy sections .got and .sdata1 sections. Adjust offsets in
5339 sections .sdata, .lit4, .lit8, .got and .sdata1.
5340
5341 1999-08-25 Gerd Moellmann <gerd@gnu.org>
5342
5343 * xdisp.c (try_window_id): Remove typo.
5344
5345 1999-08-24 Gerd Moellmann <gerd@gnu.org>
5346
5347 * xdisp.c (try_window_id): Recognize case that PT == ZV and in
5348 unchanged text at the bottom when computing the cursor position.
5349 (message3_nolog): Raise frame only if minibuffer_auto_raise is
5350 set.
5351
5352 * lisp.h (PVEC_TYPE_MASK): Add the bit for hash tables.
5353
5354 1999-08-24 Gerd Moellmann <gerd@gnu.org>
5355
5356 * xfaces.c (Qmargin): Replacement for Qbitmap_area.
5357 (realize_basic_faces): Replace Qmargin for Qbitmap_area.
5358 (syms_of_xfaces): Ditto.
5359
5360 * window.c (Fset_window_point): Reset Vresize_mini_config.
5361 (Fset_window_start): Ditto.
5362 (set_window_buffer): Ditto.
5363
5364 * dispnew.c (adjust_frame_glyphs): Reset Vresize_mini_config.
5365
5366 * xdisp.c (redisplay_window): Don't ever test just_this_one_p
5367 before calling try_window.
5368 (echo_area_display): If height has changed, update other windows.
5369 (resize_mini_frame, resize_mini_initial_height): New.
5370 (resize_mini_window): Save/restore window configuration
5371 differently.
5372
5373 * lisp.h (Vresize_mini_config, resize_mini_frame,
5374 resize_mini_initial_height): Add extern declarations.
5375
5376 * xterm.c (expose_window_tree): Fix typo CANON_Y_UNIT to
5377 CANON_X_UNIT.
5378
5379 * xfns.c [HAVE_JPEG]: Work around a warning about HAVE_STDLIB_H
5380 being redefined in jconfig.h.
5381
5382 1999-08-23 Ken'ichi Handa <handa@gnu.org>
5383
5384 * coding.h: Include "ccl.h" instead of "../src/ccl.h".
5385
5386 1999-08-22 Gerd Moellmann <gerd@gnu.org>
5387
5388 * alloc.c (mark_glyph_matrix): Mark strings only.
5389
5390 * xdisp.c (redisplay_internal): Clear garbaged frames after
5391 resizing mini-window.
5392
5393 1999-08-22 Gerd Moellmann <gerd@gnu.org>
5394
5395 * xdisp.c (unwind_with_echo_area_buffer): Use
5396 set_buffer_internal_1 instead of set_buffer_internal.
5397 (with_echo_area_buffer): Ditto.
5398
5399 * buffer.c (set_buffer_internal): Set windows_or_buffers_changed
5400 only if buffer is displayed somewhere.
5401
5402 * buffer.h (BUF_COMPUTE_UNCHANGED): New.
5403
5404 * insdel.c (gap_left): Use BUF_COMPUTE_UNCHANGED.
5405 (gap_right): Ditto.
5406 (modify_region): Ditto.
5407
5408 * buffer.c (modify_overlay): Use BUF_COMPUTE_UNCHANGED.
5409
5410 * xdisp.c (Vresize_mini_config): New.
5411 (resize_mini_window): Use it to save restore original window
5412 configuration
5413 (syms_of_xdisp): Initialize it.
5414
5415 * buffer.h (struct buffer): Add prevent_redisplay_optimizations_p.
5416
5417 * dispextern.h (struct glyph_matrix): Add buffer, begv, and zv.
5418
5419 * xdisp.c (reconsider_clip_changes): New.
5420 (redisplay_internal, redisplay_window): Call it.
5421 (mark_window_display_accurate, redisplay_internal): Set current
5422 matrix' buffer, begv, zv.
5423
5424 * window.c (Fset_window_hscroll): Set
5425 prevent_redisplay_optimizations_p instead of clip_changed.
5426 (Fset_window_hscroll): Ditto.
5427 (temp_output_buffer_show): Ditto.
5428 (Fset_window_vscroll): Ditto.
5429
5430 * buffer.c (reset_buffer): Set clip_changed to 0 and
5431 prevent_redisplay_optimizations_p to 1.
5432 (Fget_buffer_create): Set prevent_redisplay_optimizations_p to 1.
5433
5434 * buffer.h (BUF_UNCHANGED_MODIFIED, UNCHANGED_MODIFIED,
5435 BUF_OVERLAY_UNCHANGED_MODIFIED, OVERLAY_UNCHANGED_MODIFIED,
5436 BUF_BEG_UNCHANGED, BEG_UNCHANGED, BUF_END_UNCHANGED,
5437 END_UNCHANGED): New.
5438 (struct buffer_text): Add beg_unchanged, end_unchanged,
5439 unchanged_modified, overlay_unchanged_modified.
5440
5441 * window.h (beg_unchanged, end_unchanged, unchanged_modified,
5442 overlay_unchanged_modified): Removed.
5443 (with_echo_area_unwind_data): Don't save beg/end_unchanged.
5444 (unwind_with_echo_area_buffer): Don't restore them.
5445 (debug_beg_unchanged, debug_end_unchanged) [GLYPH_DEBUG]: Removed.
5446 (text_outside_line_unchanged_p, redisplay_internal,
5447 try_scrolling): Use/set buffer-specific beg/end_unchanged.
5448 (redisplay_window): Let try_window_id be called if more than one
5449 window is displayed. Use/set buffer-specific beg/end_unchanged.
5450 (get_last_unchanged_at_beg_row, get_first_unchanged_at_end_row,
5451 try_window_id):
5452 Use buffer-specific beg/end_unchanged.
5453
5454 * window.h (beg_unchanged, end_unchanged, unchanged_modified,
5455 overlay_unchanged_modified): Remove extern declarations.
5456
5457 * keyboard.c (command_loop_1): Set beg/end_unchanged per
5458 buffer.
5459
5460 * insdel.c (gap_left): Compute beg/end_unchanged per buffer.
5461 (gap_right): Ditto.
5462 (adjust_after_replace): Likewise.
5463 (replace_range, del_range_2, modify_region): Likewise.
5464
5465 * dispnew.c (direct_output_for_insert): Set beg_unchanged
5466 and unchanged_modified per buffer.
5467
5468 * coding.c (code_convert_region): Compute beg/end_unchanged per
5469 buffer.
5470
5471 * buffer.c (modify_overlay): Compute beg/end_unchanged
5472 per buffer.
5473 (Fget_buffer_create): Initialize new members of the buffer
5474 structure.
5475
5476 1999-08-22 Gerd Moellmann <gerd@gnu.org>
5477
5478 * lisp.h: Add prototype for copy_hash_table and Fcopy_hash_table.
5479
5480 * fns.c (Qkey, Qvalue): Renamed from Qkey_weak, and Qvalue_weak.
5481 (Qkey_value_weak): Removed.
5482 (make_hash_table): Use nil, `key', `value', t for weakness.
5483 (Fmake_hash_table): Ditto.
5484 (copy_hash_table): New.
5485 (Fcopy_hash_table): New.
5486
5487 1999-08-22 Gerd Moellmann <gerd@gnu.org>
5488
5489 * xfns.c: Call change_frame_size and do_pending_window_change with
5490 new parameter.
5491
5492 1999-08-21 Gerd Moellmann <gerd@gnu.org>
5493
5494 * xdisp.c (resize_mini_window): Do it for truncate-lines t as
5495 well.
5496 (redisplay_internal): Resize mini-window only if text might
5497 have changed.
5498 (display_echo_area): Reset displayed echo_area_buffer to nil
5499 at the end if we're displaying a nil message.
5500
5501 1999-08-21 Gerd Moellmann <gerd@gnu.org>
5502
5503 * fns.c (hash_lookup): Test with EQ before calling key comparion
5504 function.
5505 (hash_remove): Ditto.
5506 (cmpfn_eq): Removed.
5507 (cmpfn_eql): Don't test with EQ.
5508 (cmpfn_equal): Ditto.
5509 (make_hash_table): Set comparison function for `eq' to null.
5510
5511 * buffer.c, cmds.c, editfns.c, indent.c, insdel.c, buffer.h:
5512 Remove conditional compilation on NO_PROMPT_IN_BUFFER.
5513
5514 * dispextern.h (NO_PROMPT_IN_BUFFER): Removed.
5515
5516 * window.c, widget.c, process.c, keyboard.c, frame.c, xdisp.c,
5517 xterm.c: Call change_frame_size and do_pending_window_change with
5518 new parameter.
5519
5520 * dispnew.c (do_pending_window_change): Add parameter `safe'.
5521 (change_frame_size): Ditto.
5522 (change_frame_size_1): Ditto. Deley size changes if redisplaying
5523 and not called from a safe place.
5524 (window_change_signal): Call change_frame_size with new parameter.
5525
5526 * dispextern.h: Change prototypes for do_pending_window_change
5527 and change_frame_size.
5528
5529 * xfaces.c (face_at_buffer_position): Don't xassert that
5530 window's buffers equals current_buffer; this is not the
5531 case during echo area display.
5532
5533 1999-08-21 Gerd Moellmann <gerd@gnu.org>
5534
5535 * xdisp.c, minibuf.c: Remove conditional compilation on
5536 NO_PROMPT_IN_BUFFER.
5537
5538 * minibuf.c (Fminibuffer_prompt_end): New.
5539 (syms_of_minibuf): Defsubr it. Remove
5540 minibuffer-prompt-in-buffer.
5541 (Fminibuffer_prompt_width): Return 0 if not in mini-buffer.
5542 Extend documentation.
5543
5544 * xdisp.c (get_next_display_element): Display \r as ^M.
5545
5546 * xterm.c (x_scroll_bar_create) [USE_TOOLKIT_SCROLL_BARS]: Clear
5547 under scroll bar widget.
5548
5549 1999-08-21 Gerd Moellmann <gerd@gnu.org>
5550
5551 * xdisp.c (minibuffer_scroll_overlap): Removed because not used
5552 anywhere.
5553 (unwind_redisplay): Return nil.
5554 (clear_garbaged_frames): New.
5555 (redisplay_internal): Use it.
5556 (echo_area_display): Ditto.
5557 (resize_mini_window): Mew.
5558 (display_echo_area_1): Use it to resize echo area window.
5559 (redisplay_internal): Use it to resize active mini-window.
5560
5561 * dispextern.h, lisp.h: Add function prototypes.
5562
5563 * dispnew.c (set_window_cursor_after_update): Do the
5564 cursor_in_echo_area case only for a mini-window showing
5565 a message. Don't let cursor end up after the end of a row.
5566
5567 * xdisp.c (echo_area_glyphs, echo_area_message,
5568 echo_area_glyphs_length, previous_echo_glyphs,
5569 previous_echo_area_message, previous_echo_area_glyphs_length):
5570 Removed.
5571 (Vmessage_stack, echo_area_buffer, echo_buffer,
5572 display_last_displayed_message_p, Vwith_echo_area_save_vector): New.
5573 (message2_nolog): Use set_message and clear_message.
5574 (message3): Rename parameter len to nbytes to make clear what
5575 it is.
5576 (message3_nolog): Ditto. Use set_message and clear_message.
5577 (update_echo_area): Rewritten.
5578 (with_echo_area_buffer): New.
5579 (with_echo_area_buffer_unwind_data, unwind_with_area_buffer): New.
5580 (setup_echo_area_for_printing): New.
5581 (display_echo_area, display_echo_area_1): New.
5582
5583 (current_message, current_message_1): New.
5584 (push_message, restore_message, pop_message,
5585 check_message_stack): New.
5586 (truncate_echo_area): Rewritten.
5587 (truncate_message_1): New.
5588 (set_message, set_message_1, clear_message): New.
5589 (echo_area_display): Rewritten.
5590 (redisplay_internal): Check for needed echo area update
5591 differently.
5592 (redisplay_preserve_echo_area): Rewritten.
5593 (redisplay_window): Check for mini-window displaying echo area
5594 message differently.
5595 (syms_of_xdisp): Initialize Vmessage_stack and echo area buffers.
5596 Remove initialzation of removed variables.
5597 (init_xdisp): Remove references to removed variables.
5598
5599 * dispnew.c (adjust_frame_message_buffer): Removed references
5600 to echo_area_glyphs and previous_echo_glyphs.
5601 (direct_output_for_insert): Check for mini-window displaying
5602 echo area message differently.
5603 (update_frame): Likewise.
5604 (set_window_cursor_after_update): Likewise. In echo area,
5605 don't try to set cursor on rows that aren't enabled.
5606
5607 * print.c: Remove conditional compilation on `standalone'.
5608 (glyph_len, str_to_glyph_cpy, str_to_glyph_ncpy,
5609 glyph_to_str_cpy): Remove that section because GLYPHs are no
5610 longer used in that way.
5611 (PRINTDECLARE): Add multibyte.
5612 (PRINTPREPARE, PRINTFINISH): Handle printcharfun t differently.
5613 (printbufidx): Removed.
5614 (printchar, strout): Rewritten.
5615
5616 * keyboard.c (ok_to_echo_at_next_pause): Make it a pointer to
5617 a struct kboard.
5618 (echo_kboard): New.
5619 (echo_now): Set echo_kboard to the current kboard.
5620 (cancel_echoing): Set echo_kboard to null.
5621 (cmd_error_internal): Use clear_message, remove references
5622 to echo_area_glyphs and echo_area_message.
5623 (command_loop_1): Check for echo area messages differently.
5624 (read_char): Likewise.
5625 (record_menu_key): Use clear_message.
5626 (Fexecute_extended_command): Check for echo area messages
5627 differently. Use push_message, restore_message, pop_message.
5628
5629 * alloc.c (Fgarbage_collect): Use push_message, restore_message,
5630 pop_message.
5631
5632 * emacs.c (shut_down_emacs): Call check_message_stack.
5633
5634 * lisp.h: Add function prototypes and extern declarations for
5635 new functions and variables.
5636
5637 * fileio.c (Fdo_auto_save): Use push_message, restore_message,
5638 pop_message.
5639
5640 * minibuf.c (read_minibuf): Use clear_message instead of
5641 setting echo_area_glyphs.
5642 (Fminibuffer_completion_help): Ditto.
5643
5644 * editfns.c (Fcurrent_message): Rewritten.
5645
5646 * frame.c, window.h: Remove references to echo_area_glyphs
5647 and previous_echo_glyphs.
5648
5649 1999-08-21 Dave Love <fx@gnu.org>
5650
5651 * aix3-2-5.h (C_DEBUG_SWITCH): Use -g -O.
5652 * aix4-1.h: Likewise.
5653
5654 * irix6-5.h (C_DEBUG_SWITCH): Set for debug and optimize.
5655
5656 1999-08-20 Gerd Moellmann <gerd@gnu.org>
5657
5658 * xfns.c: Remove tiff34 prefix from include.
5659
5660 1999-08-20 Dave Love <fx@gnu.org>
5661
5662 * cm.c: Revert previous change.
5663
5664 1999-08-19 Gerd Moellmann <gerd@gnu.org>
5665
5666 * xterm.c (XTset_vertical_scroll_bar): Fix previous change. Clear
5667 under scroll bar with width FRAME_SCROLL_BAR_COLS.
5668
5669 1999-08-18 Dave Love <fx@gnu.org>
5670
5671 * callproc.c, filelock.c, insdel.c, sysdep.c, xmenu.c: Use
5672 stdlib.h.
5673
5674 * doprnt.c: Use stdlib.h, unistd.h.
5675
5676 * config.in: Add HAVE_TERMCAP_H.
5677
5678 * cm.c: Use termcap.h.
5679
5680 1999-08-18 Gerd Moellmann <gerd@gnu.org>
5681
5682 * xfns.c (x_window) [USE_X_TOOLKIT]: Remove test for
5683 FRAME_X_WINDOW (f) being null at the of the function. If widgets
5684 cannot be created we will already have crashed earlier. Call
5685 lw_set_main_areas with a null menu-bar widget, so that we have
5686 a reasonable default.
5687 (Fx_create_frame): Rearranged so that Lisp errors during frame
5688 initialization cause less damage. Initialize menu bar widget
5689 here.
5690
5691 1999-08-18 Gerd Moellmann <gerd@gnu.org>
5692
5693 * dispnew.c (update_frame_line): Fix previous change. If writing
5694 whole line clear to end of frame.
5695
5696 1999-08-17 Gerd Moellmann <gerd@gnu.org>
5697
5698 * window.c (Fcoordinates_in_window_p): Return `left-bitmap-area'
5699 and `right-bitmap-area' if position is in the bitmap areas. This
5700 avoids an error when clicking on the bitmap areas. Instead, they
5701 are currently treated like clicks inside the window.
5702 (coordinates_in_window): Return 5 and 6 for bitmap areas.
5703 (Qleft_bitmap_area, Qright_bitmap_area): New.
5704 (syms_of_window): Initialize new symbols.
5705
5706 * dispnew.c (update_frame_line): If writing whole line,
5707 don't write trailing spaces unless we must.
5708
5709 * xdisp.c (unwind_redisplay): New. Resets flag redisplaying_p.
5710 (redisplay_internal): Register unwind_redisplay with
5711 register_unwind_protect.
5712 (try_window_reusing_current_matrix): If new start > old start,
5713 give up if start pos of first reusable row is not equal to new
5714 start.
5715
5716 * eval.c (Fsignal): Don't reset redisplaying_p here.
5717
5718 * xterm.c (expose_area): If row extends face to end of line,
5719 write the whole line.
5720
5721 1999-08-16 Gerd Moellmann <gerd@gnu.org>
5722
5723 * dispextern.h (struct it): Remove member
5724 show_trailing_whitespace_p.
5725
5726 * dispnew.c (direct_output_for_insert): Use
5727 Vshow_trailing_whitespace instead of former iterator member
5728 show_trailing_whitespace_p.
5729 (direct_output_forward_char): Don't do it if hightlighting
5730 trailing whitespace.
5731
5732 * xdisp.c (Qshow_trailing_whitespace): Removed.
5733 (Vshow_trailing_whitespace): Added.
5734 (init_iterator): Remove initialization code for
5735 show_trailing_whitespace_p.
5736 (redisplay_internal): Don't try cursor movement in this_line
5737 if showing trailing whitespace.
5738 (redisplay_window): Likewise for cursor movement in current
5739 matrix and try_window_id.
5740 (try_window_reusing_current_matrix): Likewise.
5741 (trailing_whitespace_p): Return 0 if trailing whitespace is
5742 in front of point.
5743 (display_line): Use Vshow_trailing_whitespace instead of
5744 former iterator member show_trailing_whitespace_p.
5745 (syms_of_xdisp): Add DEFVAR_LISP for show-trailing-whitespace.
5746
5747 1999-08-16 Gerd Moellmann <gerd@gnu.org>
5748
5749 * window.c (Fpos_visible_in_window_p): Rewritten.
5750
5751 * xfaces.c (add_to_log): Renamed from display_message.
5752 Don't display messages in echo area.
5753
5754 * xterm.c (x_draw_glyph_string_box): Use the background width
5755 of the glyph string for the width of the box.
5756
5757 1999-08-16 Stefan Monnier <monnier@cs.yale.edu>
5758
5759 * syntax.c (Fforward_comment): Set comstyle for Scomment_fence.
5760
5761 1999-08-16 Geoff Voelker <voelker@cs.washington.edu>
5762
5763 * xfns.c, w32fns.c (x_set_frame_parameters): Set foreground and
5764 background first, and then set other parameters that might
5765 depend upon their new values.
5766
5767 1999-08-15 Gerd Moellmann <gerd@gnu.org>
5768
5769 * xfaces.c (Vfont_list_limit): New.
5770 (syms_of_xfaces): Make it a user-variable.
5771 (DEFAULT_FONT_LIST_LIMIT): New.
5772 (sorted_font_list): If Vfont_list_limit is an integer > 0, list
5773 maximally that number of fonts, otherwise use
5774 DEFAULT_FONT_LIST_LIMIT.
5775 (Fx_font_family_list): Bind `font-list-limit' to higher values
5776 until we have all fonts.
5777 (Fxfont_list): Additionally return the full names of fonts and
5778 their registry and encoding.
5779
5780 * xterm.c (XTset_vertical_scroll_bar) [USE_TOOLKIT_SCROLL_BARS]:
5781 Simplify clearing "under" scroll bar.
5782
5783 * window.c (Qfixed_window_size): New.
5784 (syms_of_window): Initialiaze it.
5785 (check_all_windows): Add return type void.
5786 (window_fixed_size_p): New. Return non-zero if window
5787 is fixed-size.
5788 (window_min_size_1): New.
5789 (window_min_size): Handle fixed-size windows.
5790 (size_window): New. Rewritten combination of set_window_height and
5791 set_window_width that handles fixed-size windows.
5792 (set_window_height): Call it.
5793 (set_window_width): Call it.
5794 (Fsplit_window): Give an error on attempt to split a fixed-size
5795 window.
5796 (change_window_height): Partly rewritten to handle fixed-size
5797 windows.
5798
5799 1999-08-13 Wolfgang Rupprecht <wolfgang@wsrcc.com>
5800
5801 * process.c (Fopen_network_stream): Fix previous change.
5802
5803 1999-08-13 Karl Heuer <kwzh@gnu.org>
5804
5805 * xdisp.c (line_number_display_limit_width): New var.
5806 (decode_mode_spec): Use it instead of hardcoded value.
5807 (syms_of_xdisp): Defvar it.
5808
5809 1999-08-13 Richard M. Stallman <rms@gnu.org>
5810
5811 * eval.c (run_hook_list_with_args): Gcpro `globals'.
5812 (run_hook_with_args): Likewise.
5813
5814 * window.h (struct window): New field too_small_ok.
5815
5816 * window.c (set_window_height, set_window_width):
5817 If window starts out "too small", set its too_small_ok flag.
5818 If window's too_small_ok flag is set, don't delete it
5819 unless it is so small it would cause a crash.
5820
5821 1999-08-13 Gerd Moellmann <gerd@gnu.org>
5822
5823 * window.c (MINSIZE): Removed.
5824 (window_min_size): New.
5825 (set_window_height): Use window_min_size.
5826 (change_window_height): Ditto.
5827
5828 1999-08-12 Gerd Moellmann <gerd@gnu.org>
5829
5830 * indent.c (vmotion): Don't add in mini-buffer prompt width
5831 if prompts are inserted into mini-buffer.
5832
5833 1999-08-12 Wolfgang Rupprecht <wolfgang@wsrcc.com>
5834
5835 * config.in: Add HAVE_GETADDRINFO.
5836 * process.c (Fopen_network_stream): Use getaddrinfo.
5837
5838 1999-08-11 Gerd Moellmann <gerd@gnu.org>
5839
5840 * xdisp.c (get_overlay_arrow_glyph_row): Set the charpos of
5841 glyphs to -1.
5842
5843 * xdisp.c (face_before_or_after_it_pos): If position after
5844 or before iterator's current position in the buffer is out
5845 of bounds, return the iterator's original face id.
5846
5847 * dispnew.c (mirror_make_current): If desired row isn't enabled,
5848 just swap glyphs pointers between current and desired row.
5849 (build_frame_matrix_from_leaf_window) [GLYPH_DEBUG]: Copy
5850 desired matrix method string to current matrix.
5851
5852 1999-08-11 Kenichi Handa <handa@etl.go.jp>
5853
5854 * lisp.h (CHAR_MODIFIER_MASK): New macro.
5855
5856 * lread.c (read_escape): For Control modifier, pay attention to
5857 multibyte character.
5858 (read1): Likewise. Singal error or a multibyte character which
5859 has a modifer bit. Check validity of Shift modifer.
5860
5861 * charset.c (non_ascii_char_to_string): Handle modifier bits as
5862 the same as Lisp reader.
5863
5864 1999-08-10 Richard M. Stallman <rms@gnu.org>
5865
5866 * charset.h (BCOPY_SHORT): Fix typo `unsigined'.
5867
5868 1999-08-10 Alexandre Oliva <oliva@dcc.unicamp.br>
5869
5870 * unexelf.c [__linux__ && __alpha__] (HAS_SBSS_SECTION): Define.
5871
5872 1999-08-10 Eli Zaretskii <eliz@gnu.org>
5873
5874 * msdos.c (IT_set_face): Abort if the default face is not realized
5875 and cached.
5876 (IT_write_glyphs): Reset the screen face to the default face
5877 before writing glyphs.
5878
5879 * xfaces.c (realize_default_face) [MSDOS]: Don't take default
5880 colors from the frame here.
5881 (realize_tty_face) [MSDOS]: Do it here. Update the face
5882 attributes with the actual name of the color taken from the
5883 frame.
5884
5885 * dosfns.c (msdos_stdcolor_name): Remove const from return value.
5886 * dosfns.h (msdos_stdcolor_name): Ditto for the prototype.
5887
5888 * frame.c (Fframe_parameters): Swap foreground and background
5889 colors returned in frame parameters if the frame has reverse in
5890 its parameter alist.
5891 (Fmake_terminal_frame): Make a unique copy of face_alist for
5892 each frame.
5893
5894 1999-08-07 Richard Stallman <rms@gnu.org>
5895
5896 * buffer.c (Fprevious_overlay_change): Just return
5897 the answer obtained from overlays_at.
5898
5899 * xfns.c (xpm_load) [!XpmAllocCloseColors]:
5900 Use XpmCloseness and attrs.closeness instead.
5901
5902 1999-08-06 Richard Stallman <rms@gnu.org>
5903
5904 * lread.c (Feval_buffer): New arg DO_ALLOW_PRINT.
5905
5906 1999-08-06 Geoff Voelker <voelker@cs.washington.edu>
5907
5908 * dired.c (directory_files_internal, Fdirectory_files_and_attributes,
5909 Ffile_attributes_lessp): New functions.
5910 (Fdirectory_files): Use directory_files_internal.
5911 (syms_of_dired): Initialize Fdirectory_files_and_attributes,
5912 Ffile_attributes_lessp.
5913
5914 * w32.c (stat): Check for directory ending in separator when
5915 doing readdir fast path.
5916
5917 * w32fns.c (x_set_icon_type): Support setting frame icons.
5918 * w32term.c (x_bitmap_icon): New function.
5919 (x_make_frame_visible, x_iconify_frame): Invoke x_bitmap_icon.
5920
5921 1999-08-06 Gerd Moellmann <gerd@gnu.org>
5922
5923 * xdisp.c (set_iterator_to_next): After delivering a character
5924 from a display vector, restore face and charset to what they were
5925 before the display vector was processed.
5926
5927 1999-08-06 Gerd Moellmann <gerd@gnu.org>
5928
5929 * xdisp.c (reseat_at_next_visible_line_start): New parameter
5930 on_newline_p.
5931 (set_iterator_to_next): After delivering last char
5932 from display vector, reseat on next visible line start if
5933 dpvec_char_len < 0.
5934 (next_element_from_buffer): Set dpvec_char_len to -1 for
5935 selective display.
5936
5937 1999-08-06 Gerd Moellmann <gerd@gnu.org>
5938
5939 * xdisp.c (compute_line_metrics): If first line's physical ascent
5940 is larger than its logical ascent, use the physical ascent, and
5941 make the row taller. Set row's overlapping_p flag.
5942
5943 * dispnew.c (redraw_overlapping_rows): Use flag overlapping_p.
5944 (direct_output_for_insert): Ditto.
5945
5946 * dispextern.h (struct glyph_row): Add overlapping_p.
5947
5948 * xterm.c (x_draw_phys_cursor_glyph): Redraw overlaps.
5949
5950 * dispextern.h (MATRIX_ROW_OVERLAPS_PRED_P): New.
5951 (MATRIX_ROW_OVERLAPS_SUCC_P): New.
5952
5953 * dispnew.c (direct_output_for_insert): Don't use this method if
5954 row is overlapped by others.
5955 (update_text_area): Write full line if current line is overlapped.
5956 (redraw_overlapped_rows): New.
5957 (update_window): Call it.
5958 (redraw_overlapping_rows): New.
5959 (update_window): Call it.
5960 (scrolling_window): Make sure overlapped_p flag in current rows is
5961 unchanged.
5962 (row_equal_p): Take rows overlapped_p flag into account.
5963
5964 * dispextern.h (struct glyph_row): Add flag overlapped_p.
5965
5966 * xterm.c (x_fix_overlapping_area): New.
5967 (x_redisplay_interface): Add x_fix_overlapping_area.
5968
5969 * dispnew.c (adjust_glyphs): Block input while adjusting matrices.
5970
5971 1999-08-06 Gerd Moellmann <gerd@gnu.org>
5972
5973 * xterm.c (x_draw_glyphs): Add parameter overlaps_p.
5974 (struct glyph_string): Add member for_overlaps_p.
5975 (x_get_glyph_string_clip_rect): If glyph string draws foreground
5976 of overlapping rows, clip to window bottom.
5977 (x_fill_glyph_string): Add parameter overlaps_p.
5978 (x_fill_composite_glyph_string): Ditto.
5979 (BUILD_GLYPH_STRINGS): Ditto.
5980 (BUILD_CHAR_GLYPH_STRINGS): Ditto.
5981 (x_draw_glyph_string): Don't draw anything but the foreground
5982 if glyph string draws row overlaps.
5983
5984 * dispnew.c (direct_output_for_insert): Don't use this
5985 optimization for rows that overlap others.
5986 (update_window_line): Return non-zero if display has changed.
5987 (update_text_area): Ditto.
5988 (update_window): Record if display has been changed.
5989
5990 * dispextern.h (MATRIX_ROW_OVERLAPPING_P): New.
5991
5992 * dispextern.h (struct redisplay_interface): Add
5993 fix_overlapping_area.
5994
5995 * xterm.c (x_append_glyph): Set glyph flag overlaps_vertically_p.
5996
5997 * dispextern.h (struct glyph): Add overlaps_vertically_p.
5998
5999 * xterm.c (x_produce_image_glyph): Compute iterator's physical
6000 ascent and descent.
6001 (x_produce_stretch_glyph): Ditto.
6002 (x_produce_glyphs): Ditto.
6003
6004 * xdisp.c (init_iterator): Reset physical line height info
6005 after producing special glyphs.
6006 (display_toolbar_line): Set physical line height info.
6007 (compute_line_metrics): Ditto.
6008 (display_line): Ditto.
6009 (display_string): Ditto.
6010
6011 * term.c (produce_glyphs): Set iterator's physical height
6012 information.
6013
6014 * dispnew.c (blank_row): Compute glyph row's physical height.
6015 (row_equal_p): Take physical row heights into account.
6016 (direct_output_for_insert): Ditto.
6017 (update_text_area): Ditto.
6018
6019 * dispextern.h (struct glyph_row): Add phys_ascent and
6020 phys_height.
6021 (struct it): Add phys_ascent, phys_descent, max_phys_ascent,
6022 max_phys_descent.
6023
6024 1999-08-04 Stefan Monnier <monnier@cs.yale.edu>
6025
6026 * buffer.c (switch_to_buffer_1): New subroutine, taken out from
6027 Fswitch_to_buffer.
6028 (no_switch_buffer): New function.
6029 (Fswitch_to_buffer): Call them. Don't get confused
6030 by "same-window" buffers in a dedicated frame.
6031
6032 * window.c (display-buffer): Don't get confused
6033 by "same-window" buffers in a dedicated frame.
6034
6035 1999-08-04 Andreas Schwab <schwab@gnu.org>
6036
6037 * insdel.c (insert_from_string_1): Check gap size against number
6038 of outgoing bytes, not incoming bytes.
6039
6040 1999-08-03 Tom Breton <tob@world.std.com>
6041
6042 * lread.c (read1): Added circular reading code to #N=.
6043 (SUBSTITUTE): New macro.
6044 (seen_list): New variable.
6045 (substitute_object_in_subtree): New function.
6046 (substitute_object_recurse): New function.
6047 (substitute_in_interval): New function.
6048
6049 1999-08-02 Eli Zaretskii <eliz@gnu.org>
6050
6051 * Makefile.in (frame.o, sysdep.o, xfaces.o): Depend on dosfns.h.
6052
6053 * frame.c (make_terminal_frame): Don't call init_frame_faces if
6054 noninteractive, for termcap frames as well.
6055
6056 * sysdep.c (init_sys_modes): Call init_frame_faces for termcap
6057 frames.
6058
6059 1999-08-01 Richard Stallman <rms@gnu.org>
6060
6061 * fns.c (internal_equal): Correct overlay comparison.
6062
6063 1999-07-31 Richard M. Stallman <rms@gnu.org>
6064
6065 * xfns.c (x_set_internal_border_width):
6066 Call do_pending_window_change. Don't block input, don't call XFlush.
6067 (x_set_vertical_scroll_bars): Call do_pending_window_change.
6068 (x_set_scroll_bar_width, x_set_font): Likewise.
6069
6070 * frame.c (Fset_frame_height): Call do_pending_window_change.
6071 (Fset_frame_width, Fset_frame_size): Likewise.
6072
6073 * xterm.c (x_set_window_size): When calling change_frame_size,
6074 specify 1 for DELAY.
6075
6076 * widget.c (EmacsFrameSetCharSize): Don't call
6077 do_pending_window_change here.
6078
6079 1999-07-30 Dave Love <fx@gnu.org>
6080
6081 * config.in: Add HAVE_STDLIB_H.
6082
6083 1999-07-30 Richard M. Stallman <rms@gnu.org>
6084
6085 * process.c (create_process): Detect failure of `pipe'.
6086
6087 1999-07-30 Keisuke Nishida <kei@psn.net>
6088
6089 * alloc.c (allocate_vectorlike): Add missing increment.
6090
6091 * data.c (Fdefalias): Call Ffset instead of duplicating code.
6092
6093 * keymap.c (get_keymap_1, get_keyelt): Check the type of OBJECT
6094 before calling indirect_function.
6095
6096 1999-07-30 Eli Zaretskii <eliz@gnu.org>
6097
6098 * dispextern.h (load_color, lookup_derived_face): Declare
6099 prototypes.
6100
6101 * dispnew.c (init_display) [MSDOS]: Don't initialize frame faces,
6102 it will be done later.
6103
6104 * frame.c (make_terminal_frame) [MSDOS]: Don't call
6105 init_frame_faces if non-interactive.
6106 (Fframe_parameters) [MSDOS]: Replace indexing into colornames[]
6107 array with a call to msdos_stdcolor_name. The font name is now
6108 "ms-dos", consistent with realize_tty_face.
6109
6110 * keyboard.c (cmd_error_internal): Don't kill Emacs if this is an
6111 MSDOS frame.
6112
6113 * window.c (Fset_window_configuration) [MSDOS]: Don't call
6114 x_set_toolbar_lines.
6115
6116 * xfaces.c (load_color): Remove static from definition and remove
6117 prototype.
6118 [MSDOS]: Add a DOS-specific version of load_color.
6119 (lookup_face): Replace FRAME_TERMCAP_P with !FRAME_WINDOW_P.
6120 (lookup_derived_face): New function.
6121 (realize_default_face): Support MSDOS frames.
6122 [MSDOS]: If fore/background colors are unspecified, inherit them
6123 from the frame.
6124 (realize_face): Support MSDOS frames.
6125 (realize_tty_face): Support MSDOS frames.
6126 [MSDOS]: If the face color is not in Vface_tty_color_alist, call
6127 load_color to try to find a suitable approximation. If the face
6128 is inverse-video, swap the foreground and background colors.
6129
6130 * dosfns.c (msdos_stdcolor_name, msdos_stdcolor_idx): New
6131 functions.
6132
6133 * dosfns.h (msdos_stdcolor_name, msdos_stdcolor_idx): Declare.
6134
6135 * msdos.h: Remove redundant declarations (most of them are now in
6136 dispextern.h).
6137
6138 * msdos.c (IT_set_face): Rewritten for the new redisplay engine.
6139 Use default frame colors if the face doesn't specify them; invert
6140 the colors if highlight is ON.
6141 (IT_write_glyphs): Rewritten for the new redisplay engine.
6142 (IT_change_line_highlight): Add (unused) parameter Y, since that's
6143 how the hook is called by term.c.
6144 (IT_copy_glyphs): New function, copies an area of the display in
6145 video RAM.
6146 (IT_insert_glyphs): Rewritten to DTRT instead of aborting, since
6147 redisplay now calls it even if char_ins_del_ok is zero.
6148 (IT_set_frame_parameters): Prototype changed. Calls the new
6149 load_color. Puts the new fore/background colors into the default
6150 face on current frame.
6151 (IT_menu_display): Rewritten to handle the new struct glyph
6152 instead of a char array.
6153 (XMenuActivate): Call lookup_derived_face to create and use
6154 special faces for the pop-up and drop-down menus.
6155
6156 1999-07-29 Gerd Moellmann <gerd@gnu.org>
6157
6158 * xterm.c (x_set_toolkit_scroll_bar_thumb): Don't call
6159 XawScrollbarSetThumb if thumb parameters haven't changed because
6160 that function apparently isn't optimized for this case.
6161
6162 1999-07-29 Eli Zaretskii <eliz@gnu.org>
6163
6164 * msdos.c (getdefdir): Don't return failure indication when
6165 _fixpath sets errno to ENOSYS.
6166
6167 1999-07-28 Gerd Moellmann <gerd@gnu.org>
6168
6169 * xdisp.c (string_char_and_length): New. Use it everywhere
6170 instead of STRING_CHAR_AND_LENGTH in xdisp.c.
6171
6172 1999-07-28 Kenichi Handa <handa@etl.go.jp>
6173
6174 * fns.c (count_combining): New function.
6175 (struct textprop_rec): New structure.
6176 (concat): Copy text properties correctly when byte combining
6177 occurs.
6178
6179 1999-07-28 Gerd Moellmann <gerd@gnu.org>
6180
6181 * xterm.c (x_setup_relief_color): Don't try smart color allocation
6182 if display is mono.
6183 (x_draw_row_bitmaps): If face has stipple, don't switch
6184 to foreground color for clearing areas, and set the fill style.
6185
6186 * xfaces.c (load_face_colors): Load background color if setting
6187 stipple, too.
6188 (prepare_face_for_display): Use FillOpaqueStippled instead of
6189 FillStippled.
6190
6191 1999-07-26 Ken'ichi Handa <handa@gnu.org>
6192
6193 * xterm.c (x_find_ccl_program): Add casting.
6194
6195 * w32fns.c (w32_find_ccl_program): Add casting.
6196
6197 1999-07-27 Gerd Moellmann <gerd@gnu.org>
6198
6199 * dispextern.h (struct glyph_row): Flag internal_border_p removed.
6200
6201 * xfns.c (x_create_tip_frame): Don't set bitmapIcon resource
6202 because this will try to access a nonexisting widget.
6203
6204 1999-07-26 Markus Rost <rost@gnu.org>
6205
6206 * fns.c (Fgethash): Fix order of variables (patch by gerd).
6207 (Fputhash): Ditto.
6208 (Fremhash): Ditto.
6209
6210 1999-07-26 Gerd Moellmann <gerd@gnu.org>
6211
6212 * widget.c (EmacsFrameSetCharSize): Don't add XtNborderWidth
6213 value to frame width and height.
6214
6215 * xterm.c (x_get_glyph_string_clip_rect): Take internal border
6216 into account for full-width windows. Don't add scroll bar width
6217 to width of clip rect.
6218 (x_draw_glyph_string_box): Add 1 to right x of full width lines.
6219 (x_set_glyph_string_background_width): Add 1 to background width.
6220 (x_draw_glyphs): Take internal border into account for full-width
6221 lines.
6222
6223 1999-07-26 Richard M. Stallman <rms@gnu.org>
6224
6225 * xfns.c (x_set_mouse_color): Always unload the old color.
6226 Don't allow nil as color value.
6227 (x_set_cursor_color, x_set_background_color, x_set_foreground_color):
6228 Always unload the old color.
6229
6230 * indent.c (Fmove_to_column): Extend end of line only if FORCE is t.
6231
6232 1999-07-26 Karl Heuer <kwzh@gnu.org>
6233
6234 * fns.c (Fy_or_n_p): Doc fix.
6235
6236 1999-07-26 Kenichi Handa <handa@etl.go.jp>
6237
6238 * ccl.h (setup_ccl_program): The type is changed to `int'.
6239
6240 * ccl.c (ccl_driver) <CCL_Call>: Now CCL program ID to call may be
6241 stored in the following CCL code. Adjusted for the change of
6242 Vccl_program_table.
6243 (resolve_symbol_ccl_program): Adjusted for the new style of
6244 embedded symbols (SYMBOL . PROP) in CCL compiled code. Return Qt
6245 is resolving failed.
6246 (ccl_get_compiled_code): New function.
6247 (setup_ccl_program): Function type changed from `void' to `int'.
6248 Resolve symbols in CCL_PROG.
6249 (Fccl_program_p): New function.
6250 (Fccl_execute): Get compiled CCL code by just calling
6251 setup_ccl_program.
6252 (Fccl_execute_on_string): Likewise.
6253 (Fregister_ccl_program): Adjusted for the change of
6254 Vccl_program_table.
6255
6256 * coding.c (setup_coding_system): Get compiled CCL code by just
6257 calling setup_ccl_program.
6258
6259 * xterm.c (x_find_ccl_program): Get compiled CCL code by just
6260 calling setup_ccl_program.
6261
6262 * w32fns.c (w32_find_ccl_program): Get compiled CCL code by just
6263 calling setup_ccl_program.
6264
6265 1999-07-23 Gerd Moellmann <gerd@gnu.org>
6266
6267 * xfaces.c (frame_update_line_height): Just use the height of the
6268 frame's fontset or font, instead of taking face fonts into
6269 account.
6270
6271 * xdisp.c (get_next_display_element): Display DEL as `^?'.
6272
6273 1999-07-23 Richard M. Stallman <rms@gnu.org>
6274
6275 * window.c (Fsplit_window): For default size, round up for left window.
6276
6277 1999-07-21 Joe Ramey <ramey@ti.com>
6278
6279 * filelock.c (lock_if_free): Return -1 if check_lock_owner
6280 has returned -1 (lockfile exists but is not a symlink?).
6281
6282 1999-07-20 Gerd Moellmann <gerd@gnu.org>
6283
6284 * xterm.c (x_draw_bar_cursor): Use scratch_cursor_gc to
6285 because of a change in cursor_gc made in 20.4.
6286
6287 1999-07-19 Gerd Moellmann <gerd@gnu.org>
6288
6289 * xterm.c (x_calc_absolute_position): Subtract menu bar height
6290 for YNegative, if using X toolkit.
6291
6292 * xfns.c (x_real_positions): Don't subtract window borders
6293 from positions returned.
6294
6295 1999-07-17 Gerd Moellmann <gerd@gnu.org>
6296
6297 * xrdb.c (x_load_resources): Set double-click time defaults
6298 for Motif list boxes from double-click-time.
6299
6300 * fns.c (Vhash_table_tests): Remvoed.
6301 (Qhash_table_test): New.
6302 (syms_of_fns): Initialize Qhash_table_test.
6303 (Fmake_hash_table): Look up user-defined tests in symbol prop
6304 `hash-table-test'.
6305 (Fdefine_hash_table_test): Store test and hash function as
6306 symbol prop `hash-table-test'.
6307 (make_hash_table): Add parameters user_test and user_hash.
6308
6309 * window.c (set_window_buffer): Set window margins for tty
6310 frames, too.
6311 (Fset_window_margins): Ditto.
6312
6313 * term.c (append_glyph): Use glyph area of iterator instead of
6314 always TEXT_AREA.
6315
6316 * dispnew.c (update_frame_1): Add left margin width to cursor
6317 hpos.
6318 (direct_output_for_insert): Ditto.
6319 (direct_output_forward_char): Ditto.
6320
6321 * dispnew.c (adjust_glyph_matrix): Set glyph matrix' top_line_p.
6322
6323 * dispextern.h (struct glyph_matrix): Add top_line_p.
6324
6325 1999-07-16 Gerd Moellmann <gerd@gnu.org>
6326
6327 * frame.h (FRAME_WINDOW_REDISPLAY_P): Removed. Use FRAME_WINDOW_P
6328 instead.
6329
6330 * fns.c (cmpfn_eq): Add hash code parameters.
6331 (cmpfn_eql): Ditto.
6332 (cmpfn_equal): Ditto, and compare hash codes before calling Fequal.
6333 (cmpfn_user_defined): Likewise.
6334
6335 1999-07-15 Gerd Moellmann <gerd@gnu.org>
6336
6337 * lisp.h (DEFAULT_REHASH_THRESHOLD): Changed to 0.8.
6338
6339 * fns.c (maybe_resize_hash_table): Correct computation of
6340 index vector size.
6341 (make_hash_table): Ditto.
6342 (Fmakehash): New.
6343
6344 * xdisp.c (echo_area_display): Don't call redraw_garbaged_frames.
6345
6346 * alloc.c (gc_sweep): Call sweep_weak_hash_tables.
6347 (survives_gc_p): Make it externally visible.
6348 (mark_object): Ditto.
6349
6350 * fns.c (remove_hash_entry): Removed.
6351 (sweep_weak_hash_tables): New.
6352
6353 * print.c (print): Print more information about hash tables.
6354
6355 * xfns.c (image_spec_hash): Removed.
6356 (lookup_image): Use sxhash instead of image_spec_hash.
6357 (image_spec_equal_p): Removed.
6358 (lookup_image): Use Fequal instead of image_spec_equal_p.
6359
6360 1999-07-14 Gerd Moellmann <gerd@gnu.org>
6361
6362 * lisp.h (P_): Moved to top of file.
6363
6364 * fns.c (make_hash_table): Set new members.
6365
6366 * alloc.c (mark_object): Mark hash table's user_hash_function.
6367 Mark index vector for weak hash tables.
6368
6369 * lisp.h (struct Lisp_Hash_Table): Add user_cmp_function,
6370 user_hash_function, cmpfn, and hashfn.
6371
6372 * fns.c (build_hash): Removed.
6373 (hash_test): Removed.
6374 (cmpfn_eq, cmpfn_eql, cmpfn_equal, cmpfn_user_defined): New.
6375 (hashfn_eq, hashfn_eql, hashfn_equal, hashfn_user_defined): New.
6376
6377 1999-07-13 Gerd Moellmann <gerd@gnu.org>
6378
6379 * alloc.c (survives_gc_p): New.
6380
6381 * print.c (print): Add hash table handling.
6382
6383 * alloc.c (mark_object): Add code to mark hash tables.
6384
6385 * lisp.h (GC_HASH_TABLE_P): New.
6386
6387 * emacs.c (main): Call init_fns.
6388
6389 * fns.c (init_fns): New.
6390
6391 * fns.c: Add hash table implementation.
6392
6393 * lisp.h (PVEC_HASH_TABLE): New.
6394 (struct Lisp_Hash_Table): New.
6395 (XHASH_TABLE): New.
6396 (XSET_HASH_TABLE): New.
6397 (HASH_TABLE_P): New.
6398 (CHECK_HASH_TABLE): New.
6399 (DEFAULT_HASH_SIZE): New.
6400 (DEFAULT_REHASH_THRESHOLD): New.
6401 (DEFAULT_REHASH_SIZE): New.
6402
6403 * xterm.c (x_draw_glyphs): Add parameters real_start and real_end.
6404 (x_write_glyphs): Compute overwritten cursor using real start
6405 and end positions of display.
6406 (x_insert_glyphs): Ditto.
6407
6408 1999-07-10 Gerd Moellmann <gerd@gnu.org>
6409
6410 * keyboard.c (read_char): Use message3_nolog to show help-echo.
6411
6412 * dispnew.c (blank_row): Add y-position as parameter. Compute
6413 visible height.
6414
6415 * xdisp.c (next_element_from_string): Give padding spaces
6416 a position of -1.
6417
6418 * dispnew.c (adjust_glyph_matrix): Some work to support
6419 marginals areas on tty frames in a future version.
6420 (allocate_matrices_for_frame_redisplay): Ditto.
6421
6422 * xdisp.c (display_line): At ZV, set glyph row's displays_text_p
6423 to zero if number of glyphs in the row is <= 1.
6424
6425 1999-07-09 Gerd Moellmann <gerd@gnu.org>
6426
6427 * dispnew.c (buffer_posn_from_coords): Take left marginal area
6428 into account.
6429
6430 * xdisp.c (handle_display_prop): Don't reset area if handing
6431 a property from a string that came from a `display' property.
6432 (handle_single_display_prop): Don't handle recursive `display'
6433 properties.
6434 (handle_single_display_prop): Handle some display property
6435 forms for terminal frames.
6436 (Qimage): Moved here from xfns.c.
6437
6438 * dispextern.h (struct it): New field string_from_display_prop_p.
6439
6440 * xterm.c (x_clip_to_row): Don't let clip_rect include top
6441 line.
6442
6443 1999-07-08 Gerd Moellmann <gerd@gnu.org>
6444
6445 * xdisp.c (handle_single_display_prop): Handle `:when FORM'.
6446
6447 * window.c (set_window_buffer): Set window's vscroll to zero.
6448
6449 * xdisp.c (QCwhen): New.
6450 (display_prop_end): New.
6451 (handle_single_display_prop): Use it.
6452 (debug_method_add): Print buffer name if tracing.
6453 (try_window_reusing_current_matrix): Compute visible height
6454 of reused rows. Fix cursor position calculation in case of
6455 top-line.
6456
6457 * dispextern.h (struct redisplay_interface): Add parameter
6458 cursor_on_p to update_window_end_hook.
6459
6460 * xterm.c (x_update_window_end): Add parameter cursor_on_p.
6461
6462 1999-07-07 Gerd Moellmann <gerd@gnu.org>
6463
6464 * xdisp.c (redisplay_internal): Ensure that redisplayinp_p
6465 doesn't become negative when decrementing it.
6466
6467 * eval.c (Fsignal): Reset redisplaying_p to zero.
6468
6469 * xdisp.c (try_window_reusing_current_matrix): Call hooks
6470 for window update.
6471 (try_window_id): Ditto.
6472
6473 * xterm.c (x_clear_end_of_line): Handle top-line correctly.
6474 (x_scroll_run): Ditto.
6475 (any_help_event_p): New.
6476 (x_initialize): Set it to zero.
6477 (XTread_socket): Clear help echo only if any_help_event_p.
6478
6479 * xdisp.c (init_iterator): Set top_line_p.
6480 (start_display): Use correct initial y if top-line is present.
6481 (make_cursor_line_fully_visible): Bug fixes for top-line.
6482 (try_scrolling): Ditto.
6483 (try_window_reusing_current_matrix): Ditto.
6484
6485 * dispextern.h (struct it): Add top_line_p.
6486
6487 * dispnew.c (shift_glyph_matrix): Move some computations out
6488 of the loop.
6489
6490 * dispnew.c (margin_glyphs_to_reserve): Use NUMBERP and
6491 XFLOATINT.
6492
6493 1999-07-06 Gerd Moellmann <gerd@gnu.org>
6494
6495 * dispnew.c (update_frame_1): When setting cursor in echo area,
6496 skip only over padding spaces at the end.
6497
6498 * xfaces.c (realize_tty_face): Set face's font_name field to
6499 "tty".
6500
6501 * term.c (update_end): Turn cursor on only if selected window's
6502 cursor_off_p flag is not set.
6503
6504 1999-07-05 Gerd Moellmann <gerd@gnu.org>
6505
6506 * term.c (TS_cursor_visible): Renamed from TS_visual_mode.
6507 (TS_cursor_normal): Renamed from TS_end_visual_mode.
6508 (TS_cursor_invisible): New.
6509 (term_init): Initialize TS_cursor_invisible.
6510 (tty_hide_cursor): New.
6511 (tty_show_cursor): New.
6512 (update_end): Show tty cursor.
6513 (update_begin): Hide tty cursor to prevent cursor flickering
6514 during redisplays triggered by timers (stealth fontification).
6515
6516 * keyboard.c (make_lispy_event) <TOOLBAR_EVENT>: Apply modifiers.
6517
6518 * xterm.c (XTread_socket) [USE_MOTIF] <KeyPress>: Catch events
6519 in scroll bars.
6520 (x_handle_toolbar_click): Set modifier bits.
6521
6522 1999-07-04 Gerd Moellmann <gerd@gnu.org>
6523
6524 * keyboard.c (kbd_store_ptr): Declare it as a volatile pointer
6525 instead of a pointer to a volatile input_event.
6526 (kbd_buffer_store_event): Remove volatile modifier from
6527 declaration of local variable `sp'.
6528 (Fdiscard_input): Don't cast when assigning kbd_store_ptr
6529 to kbd_fetch_ptr.
6530
6531 1999-07-03 Gerd Moellmann <gerd@gnu.org>
6532
6533 * xdisp.c (try_window_id): Set beg_unchanged and end_unchanged
6534 only if buffer is modified. Return quickly if changes are
6535 above window start.
6536
6537 1999-07-02 Gerd Moellmann <gerd@gnu.org>
6538
6539 * dispextern.h (HSCROLL_WINDOWS): Removed.
6540
6541 * xdisp.c (mark_window_display_accurate): Don't set
6542 w->region_showing.
6543 (redisplay_internal): Don't call redraw_garbaged_frames.
6544
6545 1999-07-01 Gerd Moellmann <gerd@gnu.org>
6546
6547 * xdisp.c (echo_area_display): Don't display truncation marks
6548 for messages because 20.4 doesn't do it either.
6549 (redisplay_window): Case same window start. Instead of giving
6550 up when cursor is partially visible, make it fully visible.
6551 (mark_window_display_accurate): Some cleanup. Record window's
6552 last cursor information.
6553 (debug_method_add): Improved.
6554 (redisplay_internal): Record last cursor info only if not
6555 consider_all_windows_p.
6556
6557 * dispnew.c (update_window): Update top line after scrolling.
6558 (blank_row): Renamed from make_empty_enabled_row.
6559 (increment_glyph_row_buffer_positions): Increment positions
6560 in buffers, only.
6561
6562 * window.c (Fcoordinates_in_window_p): Add top-line to doc
6563 string.
6564
6565 1999-06-30 Gerd Moellmann <gerd@gnu.org>
6566
6567 * dispnew.c (update_window): Check that updated row is visible.
6568
6569 * xterm.c (x_draw_row_bitmaps): Check for invisible rows at
6570 top of window differently.
6571
6572 * xdisp.c (try_window_reusing_current_matrix): Don't do it
6573 if region is showing.
6574
6575 * dispnew.c (adjust_glyph_matrix): Check w->vscroll when
6576 avoiding matrix reallocation. Set window_vscroll in matrix.
6577
6578 * dispextern.h (struct glyph_matrix): Add member window_vscroll.
6579
6580 * xdisp.c (debug_method_add): New.
6581 (debug_redisplay_method): Removed.
6582 (try_window_reusing_current_matrix): Handle case where old
6583 window start is the same as new window start.
6584
6585 * dispextern.h (struct glyph_matrix) [GLYPH_DEBUG]: Make `method'
6586 an array instead of a pointer.
6587
6588 * xfns.c (Fx_show_tip): Undo previous change.
6589
6590 * xterm.c (x_append_glyph): Clear glyph->u.val.
6591
6592 * dispextern.h (struct glyph): Increase size of face_id bit-field
6593 for CHAR_GLYPH to 12.
6594
6595 1999-06-29 Gerd Moellmann <gerd@gnu.org>
6596
6597 * xfaces.c (x_charset_registry): Make it externally visible.
6598
6599 1999-06-28 Gerd Moellmann <gerd@gnu.org>
6600
6601 * dispnew.c (update_window): Use mode_line_p flag of rows
6602 instead of WINDOW_WANTS_MODELINE_P.
6603
6604 * xterm.c (clear_mouse_face): Make externally visible.
6605
6606 * xfns.c (Fx_show_tip): Clear mouse face before showing tip.
6607
6608 * xterm.c (expose_line): Handle exposure of top-lines.
6609
6610 * xterm.c (XTframe_up_to_date): Don't call note_mouse_highlight
6611 if mouse_face_mouse_frame is null.
6612
6613 * xdisp.c (redisplay_window): If window is echo_area_window,
6614 and update_mode_line is set, update menubar and toolbar.
6615
6616 * dispnew.c (space_glyph): Set its charpos to -1.
6617 (update_frame_1): Ignore trailing padding spaces.
6618
6619 * xdisp.c (next_element_from_c_string): Set position of padding
6620 glyphs to -1.
6621
6622 1999-06-27 Gerd Moellmann <gerd@gnu.org>
6623
6624 * xfns.c (x_laplace_read_row): Use XQueryColors instead of
6625 XQueryColor.
6626
6627 * xdisp.c (display_menu_bar): Remove unwarranted assertion.
6628 (set_cursor_from_row): Skip over glyphs having a null object at
6629 the start of rows.
6630 (insert_left_trunc_glyphs): Use charpos < 0 to indicate truncation
6631 glyphs.
6632 (handle_invisible_prop): Compute next change only when needed.
6633 (handle_face_prop): Don't correct DEFAULT_FACE_ID if in the mode
6634 line.
6635
6636 1999-06-26 Gerd Moellmann <gerd@gnu.org>
6637
6638 * xrdb.c (x_load_resources): Don't set resource for double-click
6639 time.
6640
6641 * xdisp.c (try_window_id): Return quickly if all changes are
6642 below the window's current matrix end.
6643
6644 * dispextern.h (MATRIX_ROW_PARTIALLY_VISIBLE_P): Remove window
6645 parameter.
6646
6647 * xdisp.c (try_window_reusing_current_matrix): Set no_scrolling_p
6648 in desired not in current matrix.
6649 (try_window_reusing_current_matrix): Rotate matrices starting
6650 at start_vpos instead of 0.
6651
6652 * xterm.c (expose_window): Use window_text_bottom_y.
6653 (fast_find_position): Ditto.
6654
6655 * xdisp.c (redisplay_window): Use window_text_bottom_y.
6656 (try_window_reusing_current_matrix): Ditto.
6657 (get_last_unchanged_at_beg_row): Ditto.
6658 (init_iterator): Ditto.
6659
6660 * dispnew.c (allocate_matrices_for_window_redisplay): Allocate one
6661 more row.
6662 (check_matrix_invariants): Use window_text_bottom_y.
6663 (update_window): Ditto.
6664 (scrolling_window): Ditto.
6665
6666 * xdisp.c (window_text_bottom_y): New.
6667
6668 1999-06-25 Gerd Moellmann <gerd@gnu.org>
6669
6670 * xterm.c (XTread_socket): Set mouse_face_frame to zero after
6671 clearing mouse face.
6672 (XTread_socket) <EnterNotify> [LESSTIF_VERSION]: If
6673 event.xcrossing.focus is not set, and focus is in the menu bar,
6674 set focus frame as if event.xcrossing.focus were set.
6675
6676 1999-06-24 Gerd Moellmann <gerd@gnu.org>
6677
6678 * keyboard.c (make_lispy_event): Handle mouse on top lines.
6679 * keyboard.c (make_lispy_movement): Ditto.
6680
6681 * window.c (coordinates_in_window): Return 4 if on top line.
6682 (Fcoordinates_in_window_p): Return `top-line' if on top line.
6683
6684 * xdisp.c (window_box_height): Subtract top line height.
6685 (window_box): Add top line height to top y position if top line
6686 exists.
6687 (init_iterator): If base_face_id is TOP_LINE_FACE_ID, set row to
6688 the top line row of the window. Set initial y-position to
6689 window's top line height plus delta.
6690 (start_display): Choose start glyph row depending on whether
6691 window has a top line.
6692 (try_scrolling): Take top line height into account for aggressive
6693 scrolling.
6694 (compute_window_start_on_continuation_line): Take top line into
6695 account.
6696 (redisplay_window): Ditto. If top line height has changed,
6697 trigger a new redisplay.
6698 (try_window_reusing_current_matrix): Take top line into account.
6699 (find_last_row_displaying_text): Ditto.
6700 (get_last_unchanged_at_beg_row): DItto.
6701 (try_window_id): Ditto.
6702 (compute_line_metrics): Ditto.
6703
6704 * dispnew.c (shift_glyph_matrix): Compute visible row height
6705 taking top line of window into account.
6706 (update_window): Update top line. If scrolling_window detects
6707 that all rows are equal, only set cursor.
6708 (update_window_line): Call after_update_window_line_hook if
6709 mode_line_p flag of rows has changed.
6710 (scrolling_window): Add parameter top_line_p. Return -1 if
6711 all rows are equal.
6712 (mode_line_string): Add parameter mode_line_p. Handle strings
6713 in top lines.
6714
6715 * dispextern.h (MATRIX_TOP_LINE_ROW): New.
6716 (MATRIX_FIRST_TEXT_ROW): New.
6717 (MATRIX_ROW_PARTIALLY_VISIBLE_P): Use row's visible_height.
6718 (MATRIX_ROW_PARTIALLY_VISIBLE_AT_TOP_P): New.
6719 (MATRIX_ROW_PARTIALLY_VISIBLE_AT_BOTTOM_P): New.
6720 (MATRIX_TOP_LINE_HEIGHT): New.
6721 (CURRENT_MODE_LINE_HEIGHT): Use estimate_mode_line_height.
6722 (CURRENT_TOP_LINE_HEIGHT): New.
6723 (DESIRED_TOP_LINE_HEIGHT): New.
6724 (WINDOW_DISPLAY_TOP_LINE_HEIGHT): New.
6725 (WINDOW_DISPLAY_HEIGHT_NO_MODE_LINE): Replaces
6726 WINDOW_DISPLAY_TEXT_AREA_PIXEL_HEIGHT.
6727 (WINDOW_DISPLAY_TEXT_HEIGHT): New.
6728
6729 * xterm.c (x_after_update_window_line): Don't draw bitmaps for top
6730 lines.
6731 (x_draw_row_bitmaps): Take top line into account when clearing
6732 bitmap area.
6733 (x_estimate_mode_line_height): Replacement for
6734 x_frame_mode_line_height.
6735 (x_get_glyph_string_clip_rect): Take top line into account.
6736 (x_clear_end_of_line): Ditto.
6737 (note_mode_line_highlight): Add parameter mode_line_p. Handle
6738 top lines.
6739 (note_mouse_highlight): Call note_mode_line_highlight for top lines.
6740 (x_erase_phys_cursor): Take top line into account.
6741
6742 * xdisp.c (window_box_height): Subtract top line height if
6743 window wants a top line.
6744 (display_mode_lines): New.
6745 (redisplay_window): Call it.
6746 (display_mode_line): Add parameters face_id and format.
6747
6748 * dispextern.h (CURRENT_TOP_LINE_HEIGHT): New.
6749 (MATRIX_TOP_LINE_HEIGHT): New.
6750
6751 * xterm.c (x_frame_mode_line_height): Add parameter face_id.
6752
6753 * term.c (estimate_mode_line_height): Renamed from
6754 frame_mode_line_height. Add parameter face_id.
6755 (estimate_mode_line_height_hook): Renamed from
6756 frame_mode_line_height_hook.
6757 (produce_special_glyphs_hook): Removed.
6758 (produce_glyphs_hook): Removed.
6759
6760 1999-06-23 Gerd Moellmann <gerd@gnu.org>
6761
6762 * dispextern.h (WINDOW_WANTS_TOP_LINE_P): New.
6763 (struct glyph_row): Add mode_line_p.
6764
6765 * xfaces.c (realize_basic_faces): Realize face `top-line'.
6766 (Qtop_line): New.
6767 (syms_of_xfaces): Initialize Qtop_line.
6768
6769 * dispextern.h (TOP_LINE_FACE_ID): New.
6770
6771 * buffer.c (init_buffer_once): Set default for
6772 top_line_format to nil.
6773 (init_buffer_once): Init top_line_format.
6774 (default-top-line-format): New.
6775 (top-line-format): New buffer-local variable.
6776
6777 * buffer.h: Add top_line_format.
6778
6779 * xdisp.c (overlay_arrow_changed_p): Removed because not used.
6780
6781 1999-06-17 Dave Love <fx@gnu.org>
6782
6783 * xfns.c: Move the PNG section before the JPEG one to avoid
6784 problems surrounding setjmp.h/png.h on GNU/Linux.
6785
6786 1999-06-17 Gerd Moellmann <gerd@gnu.org>
6787
6788 * xfns.c (x_kill_gs_process): Don't free colors.
6789
6790 1999-06-17 Dave Love <fx@gnu.org>
6791
6792 * s/gnu-linux.h: Zap spurious ~.
6793
6794 1999-06-16 Gerd Moellmann <gerd@gnu.org>
6795
6796 * xfns.c (gif_load): Improve multi-image support.
6797
6798 1999-06-15 Gerd Moellmann <gerd@gnu.org>
6799
6800 * xfns.c (gif_load): Support multi-image files.
6801
6802 * Makefile.in (LIBGIF): Use libungif.
6803
6804 * configure.in (HAVE_GIF): Use libungif instead of libgif
6805 because the former doesn't contain patented compression code.
6806
6807 * xdisp.c (compute_window_start_on_continuation_line): Don't
6808 do it if line start is too far away from window start.
6809
6810 1999-06-14 Gerd Moellmann <gerd@gnu.org>
6811
6812 * buffer.c (init_buffer_once): Set buffer_local_flags for
6813 scroll_*_aggressively.
6814 (syms_of_buffer): Add DEFVAR_PER_BUFFER for scroll-*-aggressively.
6815 (init_buffer_once): Set defaults for these variables.
6816 (syms_of_buffer): Add default-scroll-*-aggressively.
6817
6818 * buffer.h (scroll_up_aggressively): New.
6819 (scroll_down_aggressively): New.
6820
6821 * Makefile.in (LIBPNG): Add -lz -lm in case we're linking with
6822 a static PNG library.
6823
6824 * configure.in (HAVE_PNG): Add -lz -lm when checking for PNG lib
6825 in case it's a static library.
6826
6827 * Makefile.in (ctagsfiles): Split so that files starting
6828 with an `x' are found before files starting with `w32'.
6829 (ctagsfiles1): New.
6830 (ctagsfiles2): New.
6831 (TAGS): Use ctagsfiles[12] instead of ctagsfiles.
6832
6833 * xdisp.c (compute_window_start_on_continuation_line): New.
6834 (redisplay_window): Use it.
6835 (INFINITY): New.
6836 (reseat_to_string): Use it.
6837 (hscroll_window_tree): Ditto.
6838 (compute_window_start_on_continuation_line): Ditto.
6839 (redisplay_window): Don't force display with a new window start.
6840
6841 1999-06-06 Gerd Moellmann <gerd@gnu.org>
6842
6843 * xfns.c (x_report_frame_params): Don't report `outer-window-id'
6844 if widget not present.
6845
6846 * xdisp.c (prepare_menu_bars): Ignore tooltip frame.
6847
6848 1999-06-04 Gerd Moellmann <gerd@gnu.org>
6849
6850 * xfaces.c (recompute_basic_faces)[GLYPH_DEBUG]: Check return
6851 value of realize_basic_faces.
6852 (load_face_font_or_fontset): Store full font name in face.
6853 (realize_default_face): Use full font name.
6854
6855 * xterm.c (x_produce_glyphs): Set member char_to_display.
6856 (x_append_glyph): Store char_to_display in glyphs.
6857
6858 * dispextern.h (struct it): Add char_to_display.
6859
6860 * xfns.c (x_set_font): Don't call face-set-after-frame-default
6861 if faces haven't been initialized.
6862 (Fx_create_frame): Call face-set-after-frame-default after
6863 faces have been initialized, and widget has been created.
6864
6865 * puresize.h (BASE_PURESIZE): Increased.
6866
6867 1999-06-01 Gerd Moellmann <gerd@gnu.org>
6868
6869 * xfaces.c (set_lface_from_font_name): Add parameter force_p.
6870 (Finternal_set_lisp_face_attribute): If frame is t when
6871 :font attribute is set, use the selected frame.
6872 (clear_face_cache): Add parameter clear_fonts_p.
6873 (Fclear_face_cache): Add optional parameter thorougly.
6874
6875 * xfaces.c (face_numeric_value): Return -1 if symbol is not
6876 in table.
6877 (Fclear_face_cache): New.
6878 (choose_face_fontset_font): If fontset doesn't contain font
6879 pattern for the given charset, use CHARSET_ASCII.
6880 (Finternal_set_lisp_face_attribute): Fix handling of nil
6881 stipple attribute.
6882 (Finternal_set_lisp_face_attribute): Fix handling of changing
6883 font-related face attributes of the default face.
6884 (set_lface_from_font_name): Set only attributes that aren't
6885 specified.
6886
6887 1999-05-31 Gerd Moellmann <gerd@gnu.org>
6888
6889 * xfaces.c (SCALABLE_FONTS): Define this to enable scalable
6890 font support.
6891 (Vscalable_fonts_allowed) [SCALABLE_FONTS]: New.
6892 (x_face_list_fonts): Add parameter scalable_fonts_p. Handle
6893 scalable fonts depending on the setting of SCALABLE_FONTS.
6894 (first_font_matching): List more than one font to find the
6895 first non-scalable matching font.
6896 (sorted_font_list): Let x_face_list_fonts return scalable fonts
6897 depending on SCALABLE_FONTS.
6898 (better_font_p): New parameter compare_pt_p. If zero, don't
6899 compare point sizes of fonts.
6900 (exact_face_match_p) [SCALABLE_FONTS]: New.
6901 (build_scalable_font_name) [SCALABLE_FONTS]: New.
6902 (may_use_scalable_font_p) [SCALABLE_FONTS]: New.
6903 (best_matching_font) [SCALABLE_FONTS]: Handle scalable fonts.
6904 (syms_of_xfaces): Add scalable-fonts-allowed.
6905
6906 1999-05-26 Gerd Moellmann <gerd@gnu.org>
6907
6908 * xfns.c (png_load): Let PNG lib handle gamma. Construct
6909 mask only if image contains simple transparency information.
6910 Otherwise, combine image with frame background color.
6911
6912 * configure.in (--with-png, HAVE_PNG): New.
6913
6914 * config.in (HAVE_PNG): New.
6915
6916 * Makefile.in: Add PNG library.
6917
6918 * xfns.c: Add PNG support.
6919
6920 1999-05-25 Gerd Moellmann <gerd@gnu.org>
6921
6922 * xdisp.c (init_xdisp): Initialize echo_area_message and
6923 previous_echo_area_message to nil.
6924
6925 * keyboard.c (read_char): Rename local variable echo_area_message
6926 because it shadows the global one.
6927
6928 1999-05-05 Gerd Moellmann <gerd@gnu.org>
6929
6930 * xterm.c (note_mode_line_highlight): Restructured.
6931
6932 * window.c (coordinates_in_window): Handle windows that don't have
6933 a mode line because their buffer's mode-line-format is nil.
6934 Recognize the mode line under x positions that correspond to
6935 flags areas and left scroll bar.
6936
6937 1999-05-02 Dave Love <fx@gnu.org>
6938
6939 * xterm.c (note_mouse_highlight): Separate help-echo processing
6940 from check on mouse-face so that it works generally.
6941
6942 1999-04-21 Gerd Moellmann <gerd@gnu.org>
6943
6944 * sound.c (Fplay_sound): Run hook play-sound-hook.
6945 (Qplay_sound_hook): New.
6946
6947 1999-04-20 Gerd Moellmann <gerd@gnu.org>
6948
6949 * xdisp.c (update_echo_area): Handle echo_area_message.
6950
6951 1999-04-19 Gerd Moellmann <gerd@gnu.org>
6952
6953 * editfns.c (Fmessage): Use message3.
6954
6955 * print.c (printchar): Set echo_area_message to nil.
6956 (strout): Ditto.
6957
6958 * minibuf.c (read_minibuf): Reset echo message strings to nil.
6959 (Fminibuffer_completion_help): Ditto.
6960
6961 * keyboard.c (cmd_error_internal): Set echo_areA_message.
6962 (command_loop_1): Test echo_areA_message.
6963 (read_char): Ditto.
6964 (record_menu_key): Set echo_area_message to nil.
6965 (Fexecute_extended_command): Test echo_area_message.
6966 (Fexecute_extended_command): Handle echo_area_message.
6967
6968 * fileio.c (Fdo_auto_save): Handle the case that echo_area_message
6969 is set.
6970
6971 * editfns.c (Fcurrent_message): If echo_area_message is set,
6972 return a substring of that string.
6973
6974 * dispnew.c (direct_output_for_insert): Test echo_area_message
6975 in addition to echo_area_glyphs.
6976 (set_window_cursor_after_update): Ditto.
6977 (update_frame_1): Ditto.
6978
6979 * alloc.c (Fgarbage_collect): Use message3_nolog to display
6980 old Lisp message string.
6981
6982 * xdisp.c (echo_area_message): New.
6983 (previous_echo_area_message): New.
6984 (syms_of_xdisp): Initialize and staticpro new variables.
6985 (echo_area_display): Display echo_area_message if set.
6986 (message2_nolog): Set echo_area_message and
6987 previous_echo_area_message.
6988 (echo_area_display): Set previous_echo_area_message.
6989 (redisplay_internal): Display echo area if echo_area_message
6990 or previous_echo_area_message are set.
6991 (redisplay_preserve_echo_area): Test/set echo_area_message and
6992 previous_echo_area_message.
6993 (redisplay_window): Test echo_area_message.
6994 (message3_nolog): New.
6995 (message3): New.
6996
6997 * editfns.c (Fformat): Add text properties to the result string
6998 from properties of the format string and properties of string
6999 arguments.
7000
7001 * textprop.c (text_property_list): New.
7002 (add_text_properties_from_list): New.
7003 (extend_property_ranges): New.
7004
7005 1999-03-29 Gerd Moellmann <gerd@gnu.org>
7006
7007 * xfaces.c (Qraised, Qsunken, QCshadow): Removed.
7008 (QCline_width, QCstyle, Qpressed_button, Qreleased_button): New.
7009 Use these symbols for the box face attribute instead of the
7010 removed ones.
7011
7012 1999-03-12 Gerd Moellmann <gerd@gnu.org>
7013
7014 * xfaces.c (realize_tty_face): Don't set alt_char_p of face.
7015 Correct wrong test for slant.
7016
7017 1999-03-10 Gerd Moellmann <gerd@gnu.org>
7018
7019 * xfaces.c: Use `unspecified' for unspecified face attributes,
7020 use t and nil for on/off.
7021
7022 1999-03-06 Gerd Moellmann <gerd@gnu.org>
7023
7024 * buffer.c (syms_of_buffer): Extend doc string of
7025 mode-line-format.
7026
7027 * xfaces.c (x_face_list_fonts): New parameter try_alternatives_p.
7028 (first_font_matching): New.
7029 (set_lface_from_font_name): Use it if font name is a pattern.
7030 (font_field_wildcard_p): Removed.
7031
7032 * dispnew.c (shift_glyph_matrix): Add `window' parameter.
7033 Recompute visible height of rows.
7034
7035 * xterm.c (note_mouse_highlight): Reorder code for help-echo.
7036 Don't accept non-strings for help-echo from overlays.
7037
7038 1999-03-04 Dave Love <fx@gnu.org>
7039
7040 * xterm.c (note_mouse_highlight): Check overlays for help-text
7041 property.
7042 (XTread_socket): Fix compiler warning.
7043
7044 1999-03-05 Gerd Moellmann <gerd@gnu.org>
7045
7046 * xterm.c (note_mouse_highlight): Don't restrict number of
7047 overlay to 10. Call overlays_at so that it doesn't try to
7048 extend the vector.
7049
7050 * xdisp.c (compute_line_metrics): Compute glyph row's visible
7051 height.
7052
7053 * dispnew.c (row_equal_p): Compare visible row height, only.
7054 (update_text_area): Draw whole line if visible heights of
7055 rows differ.
7056 (update_window_line): Call after_update_window_line_hook
7057 if visible row height has changed.
7058
7059 * dispextern.h (MATRIX_ROW_VISIBLE_HEIGHT): Removed.
7060 (struct glyph_row): New member visible_height.
7061
7062 * xfaces.c (font_field_wildcard_p): New.
7063 (set_lface_from_font_name): Remove parameter force_p. Accept
7064 font names containing wildcards.
7065
7066 1999-03-04 Gerd Moellmann <gerd@gnu.org>
7067
7068 * xterm.c (x_after_update_window_line): Clear internal border
7069 when windows_or_buffers_changed.
7070
7071 * dispextern.h (WINDOW_WANTS_MODELINE_P): Return zero if window's
7072 buffer has a nil mode_line_format.
7073
7074 1999-03-03 Gerd Moellmann <gerd@gnu.org>
7075
7076 * xterm.c (x_setup_relief_colors): Use either background color
7077 or specified color.
7078
7079 * xfaces.c (realize_x_face): Set face->use_box_color_for_shadows_p.
7080
7081 * dispextern.h (struct face): Add use_box_color_for_shadows_p.
7082
7083 * xterm.c (x_draw_box_rect): New.
7084 (x_draw_glyph_string_box): Renamed from
7085 x_draw_glyph_string_relief. Call x_draw_box_rect.
7086
7087 * xfns.c (QCrelief): New.
7088 (syms_of_xfns): Initialize it.
7089
7090 * dispextern.h (struct glyph): Rename left_shadow_p to
7091 left_box_line_p, right_shadow_p to right_box_line_p.
7092 (MAX_RELIEF_THICKNESS): Removed.
7093 (struct it): Rename members having `relief' in their names
7094 to contain `box' instead.
7095
7096 * xfaces.c (realize_x_face): Handle new box attribute values.
7097 (QCrelief, Qbox): Removed.
7098 (QCshadow, QCcolor, Qraised, Qsunken): New.
7099 (syms_of_xfaces): Initialize new symbols.
7100
7101 1999-03-02 Gerd Moellmann <gerd@gnu.org>
7102
7103 * dispextern.h (LFACE_RELIEF_INDEX): Removed.
7104
7105 * xfaces.c (LFACE_RELIEF): Removed.
7106 (merge_face_vector_with_property): Remove handling of `:relief'.
7107 (Finternal_set_lisp_face_attribute): Ditto.
7108 (Finternal_set_lisp_face_attribute_from_resource): Ditto.
7109 (Finternal_get_lisp_face_attribute): Ditto.
7110 (realize_default_face): Ditto.
7111 (lface_hash): Don't compute hash from relief.
7112
7113 * dispextern.h (struct face): Replace member `relief' by
7114 `box_line_width'. Add member `box'.
7115 (face_box_type): New.
7116
7117 * xterm.c (x_produce_glyphs): If face has overline, add overline
7118 thickness + 1 to ascent.
7119
7120 1999-03-01 Gerd Moellmann <gerd@gnu.org>
7121
7122 * xterm.c (x_draw_glyph_string): Draw underline, overline,
7123 strike-through, and boxes.
7124 (x_draw_glyph_string_underline): Removed.
7125
7126 * xfaces.c (QCoverline, QCstrike_through, QCbox): New.
7127 (Qoverline, Qstrike_through, Qbox): New.
7128 (syms_of_xfaces): Define these symbols.
7129 (check_lface_attrs): Add checks for overline, strike-through,
7130 and box.
7131 (Finternal_set_lisp_face_attribute): Set new attributes.
7132 (LFACE_OVERLINE, LFACE_STRIKE_THROUGH, LFACE_BOX): New.
7133 (load_color): Handle new attributes.
7134 (realize_x_face): Ditto.
7135 (merge_face_vector_with_property): Ditto.
7136 (free_face_colors): Ditto.
7137 (Finternal_set_lisp_face_attribute_from_resource): Ditto.
7138 (Finternal_get_lisp_face_attribute): Ditto.
7139 (Finternal_lisp_face_attribute_values): Ditto.
7140
7141 * dispextern.h (lface_attribute_index): Add enumerators for
7142 overstrike, strike-through, and box.
7143 (struct face): Add members for overline, strike-through, and
7144 box.
7145
7146 1999-02-17 Dave Love <fx@gnu.org>
7147
7148 * s/gnu-linux.h s/gnu.h s/irix5-0.h s/netbsd.h s/sco4.h s/sco5.h
7149 s/template.h (NARROWPROTO): Define on the basis of relevant X cf
7150 files.
7151
7152 1999-02-16 Gerd Moellmann <gerd@gnu.org>
7153
7154 * keyboard.c (toolbar_items): Call access_keymap with third
7155 parameter 1, so that we don't get inherited toolbar item
7156 definitions.
7157
7158 * xdisp.c (redisplay_internal): In optimization 1, don't decrement
7159 the window end vpos when in empty first line of window.
7160
7161 1999-02-15 Gerd Moellmann <gerd@gnu.org>
7162
7163 * xfaces.c (set_font_frame_param): New.
7164 (Finternal_set_lisp_face_attribute): Call it.
7165
7166 Sun Feb 14 10:54:02 1999 Masatake Yamato <masata-y@is.aist-nara.ac.jp>
7167
7168 * xfaces.c (Finternal_set_lisp_face_attribute_from_resource):
7169 Accept specifications of color for underline.
7170
7171 1999-02-13 Gerd Moellmann <gerd@gnu.org>
7172
7173 * xfaces.c (Finternal_set_lisp_face_attribute): If parameter
7174 `frame' is t, operate on face defaults for new frames. If it
7175 is nil, operate on the selected frame.
7176
7177 1999-02-12 Gerd Moellmann <gerd@gnu.org>
7178
7179 * dispnew.c (check_matrix_invariants): Put it in #if 0.
7180 (update_window): Put the call to check_matrix_invariants in #if 0.
7181
7182 Sun Feb 7 09:58:49 1999 Masatake Yamato <masata-y@is.aist-nara.ac.jp>
7183
7184 * dispextern.h: Remove all else block of UNDERLINE_COLOR.
7185 Remove definition of UNDERLINE_COLOR.
7186
7187 Mon Jan 4 04:43:41 1999 Masatake Yamato <masata-y@is.aist-nara.ac.jp>
7188
7189 * xfaces.c (free_face_colors): Free the color for underline.
7190
7191 * xterm.c (x_draw_glyph_string_underline): Set the color for underline
7192 to the GC.
7193
7194 Sun Jan 3 08:41:10 1999 Masatake Yamato <masata-y@is.aist-nara.ac.jp>
7195
7196 * dispextern.h (UNDERLINE_COLOR): Defined.
7197 (struct face): Added two new members.
7198 underline_color, underline_defaulted_p.
7199
7200 * xfaces.c (merge_face_vector_with_property):
7201 (check_lface_attrs): Accept the string value for underline.
7202 (Finternal_set_lisp_face_attribute): Likewise.
7203
7204 * xfaces.c (load_color): Change the last argument type to enum
7205 lface_attribute_index from int. And addec code for underling coloring.
7206 (load_face_colors): Pass LFACE_*_INDEX to load_color.
7207
7208 1999-02-12 Gerd Moellmann <gerd@gnu.org>
7209
7210 * xfns.c (Fx_image_header): Removed.
7211
7212 1999-02-07 Gerd Moellmann <gerd@gnu.org>
7213
7214 * xterm.c: Don't include <bitmaps/gray>.
7215 (x_term_init): Use gray_bitmap_width and gray_bitmap_height.
7216
7217 * xfns.c (Fx_image_header): Add missing `\n\'.
7218 (gray_bitmap_width, gray_bitmap_height, gray_bitmap_bits): New.
7219
7220 1999-02-01 Gerd Moellmann <gerd@gnu.org>
7221
7222 * xterm.c (x_scroll_bar_create): Set background pixel from
7223 specified scroll bar color.
7224 (x_scroll_bar_set_handle): Use scroll bar foreground color.
7225
7226 * xfns.c (x_set_scroll_bar_foreground): Remove all scroll bars.
7227 (x_set_scroll_bar_background): Ditto.
7228
7229 * xterm.c (x_create_toolkit_scroll_bar): Set scroll bar colors.
7230
7231 * xfns.c (x_default_scroll_bar_color_parameter): New.
7232 (Fx_create_frame): Call it.
7233
7234 1999-01-31 Gerd Moellmann <gerd@gnu.org>
7235
7236 * xfns.c (Fx_create_frame): Initialize scroll bar pixel color
7237 values in x_output structure.
7238 (Qscroll_bar_foreground, Qscroll_bar_background): New.
7239 (syms_of_xfns): Initialize these symbols.
7240
7241 * xterm.h (struct x_output): Add scroll bar pixel colors.
7242
7243 * xfns.c (x_frame_parms): Add entries for scroll bar colors.
7244 (x_set_scroll_bar_foreground): New.
7245 (x_set_scroll_bar_background): New.
7246
7247 1999-01-12 Gerd Moellmann <gerd@gnu.org>
7248
7249 * xdisp.c (handle_single_display_prop): New.
7250 (handle_display_prop): Call it.
7251 (handle_raise_prop): Removed.
7252 (handle_height_prop): Removed.
7253 (handle_space_width_prop): Removed.
7254 (handle_face_prop): Remove handling of raised text.
7255 (handle_display_prop): Do it here.
7256
7257 * dispextern.h (DISPLAY_PROP_IDX): Replaces GLYPH_PROP_IDX.
7258 (RAISE_PROP_IDX): Removed.
7259 (HEIGHT_PROP_IDX): Removed.
7260 (SPACE_WIDTH_PROP_IDX): Removed.
7261
7262 * xdisp.c (Qdisplay): Replaces Qglyph.
7263 (handle_display_prop): Formerly handle_glyph_prop.
7264
7265 1999-01-11 Gerd Moellmann <gerd@gnu.org>
7266
7267 * xdisp.c (reseat_to_string): Set position in display vector to -1.
7268 (handle_stop): Set position in display vector to -1. Don't
7269 check overlay strings when set up to deliver characters from a
7270 display vector.
7271 (set_iterator_to_next): At the end of a run of characters from a
7272 display vector, check whether the display vector display replaces
7273 the display of a character.
7274
7275 1999-01-05 Gerd Moellmann <gerd@gnu.org>
7276
7277 * xfaces.c (init_frame_faces): Don't realize faces if frame's
7278 X window hasn't been created yet.
7279
7280 1998-12-06 Gerd Moellmann <gerd@gnu.org>
7281
7282 * sound.c: New.
7283
7284 1998-12-04 Gerd Moellmann <gerd@gnu.org>
7285
7286 * config.in (HAVE_SOUND): New.
7287
7288 * emacs.c (main): Call syms_of_sound and init_sound.
7289
7290 * Makefile.in (obj): Add sound.o.
7291
7292 * configure.in: Add checks for machine/soundcard.h and sys/soundcard.h.
7293
7294 * config.in (HAVE_MACHINE_SOUNDCARD_H): New.
7295 (HAVE_SYS_SOUNDCARD_H): New.
7296
7297 1998-12-03 Gerd Moellmann <gerd@gnu.org>
7298
7299 * buffer.h (struct buffer): indicate_empty_lines renamed from
7300 indicate_zv_lines.
7301
7302 * buffer.c (indicate-empty-lines): Renamed from indicate_zv_lines.
7303 (default-indicate-zv-lines): Likewise.
7304
7305 * dispextern.h (struct glyph_row): Rename indicate_zv_line_p
7306 to indicate_empty_line_p.
7307
7308 * xdisp.c (reseat_at_next_visible_line_start): Reset method
7309 to next_element_from_buffer.
7310
7311 * frame.c (make_frame): Set n_current_toolbar_items to 0.
7312
7313 * xdisp.c (handle_face_prop): Allow symbols of the form `N+'
7314 and `N-'.
7315
7316 * xfns.c (xbm_scan): New.
7317 (xbm_read_hexint): Removed.
7318 (xbm_read_bitmap_file_data): Use xbm_scan.
7319
7320 * fileio.c (Finsert_file_contents): Prevent redisplay optimizations.
7321
7322 1998-12-02 Gerd Moellmann <gerd@gnu.org>
7323
7324 * xfns.c (xbm_read_hexint): New.
7325 (xbm_read_bitmap_file_data): New.
7326 (xbm_load_image_from_file): Call xbm_read_bitmap_file_data
7327 instead of XReadBitmapFileData.
7328
7329 * xdisp.c (handle_raise_prop): Compute voffset from current font.
7330
7331 * xfaces.c (face_with_height): New.
7332
7333 * xdisp.c (eval_handler): Renamed from eval_mode_handler.
7334 (eval_form): Renamed from eval_mode_element.
7335 (handle_face_prop): Use it.
7336 (Qheight): Replaces Qsmaller.
7337 (handle_height_prop): Replaces handle_smaller_prop.
7338 (handle_face_prop): If iterator's font_height is not an
7339 integer, evaluate it to get the font height to use.
7340
7341 * dispextern.h (HEIGHT_PROP_IDX): Replaces SMALLER_PROP_IDX.
7342 (struct it): Use `font_height' instead of `smaller'.
7343
7344 1998-12-01 Gerd Moellmann <gerd@gnu.org>
7345
7346 * xdisp.c (reseat_1): New.
7347 (reseat): Call it.
7348 (move_it_vertically_backward): Ditto.
7349 (redisplay_window): Don't abort when cursor not found in recenter.
7350
7351 1998-11-30 Gerd Moellmann <gerd@gnu.org>
7352
7353 * xdisp.c (reseat_at_next_visible_line_start): When not
7354 currently delivering display elements from the current buffer,
7355 restore buffer position first.
7356 (init_from_display_pos): Don't set IT's position from the
7357 position passed to this function.
7358
7359 1998-11-28 Gerd Moellmann <gerd@gnu.org>
7360
7361 * config.in (PROTO): Removed.
7362
7363 * xterm.h: Change PROTO to P_.
7364
7365 1998-11-26 Gerd Moellmann <gerd@gnu.org>
7366
7367 * xterm.c (take_vertical_position_into_account): New.
7368 (x_produce_image_glyph): Call it.
7369 (x_produce_stretch_glyph): Ditto.
7370 (x_produce_glyphs): Ditto.
7371 (x_fill_glyph_string): Adjust base line for glyph's voffset.
7372 (x_fill_composite_glyph_string): Ditto.
7373 (x_fill_image_glyph_string): Ditto.
7374 (x_fill_stretch_glyph_string): Ditto.
7375
7376 * xdisp.c (display_line): Always compute row height from
7377 max_ascent and max_descent.
7378
7379 * dispextern.h (struct glyph): Add voffset.
7380 (struct it): Replace height by descent, max_height by max_descent.
7381
7382 * xterm.c (x_append_glyph): Set voffset
7383 (x_append_stretch_glyph): Ditto.
7384 (x_produce_image_glyph): Ditto.
7385 (x_produce_glyphs): Take voffset into account.
7386 (x_produce_image_glyph): Ditto.
7387 (x_produce_stretch_glyph): Ditto.
7388
7389 * dispextern.h (struct it): Add voffset.
7390 * xdisp.c (push_it): Save voffset.
7391 (pop_it): Restore it.
7392
7393 * xdisp.c (it_props): Add entry for `raise'.
7394 (handle_raise_prop): New.
7395
7396 * dispextern.h (RAISE_PROP_IDX): New.
7397
7398 * xdisp.c (Qraise): New.
7399 (syms_of_xdisp): Define Qraised.
7400
7401 * xterm.c (x_scroll_bar_move): Clear to the left and right
7402 of toolkit scroll bars differently.
7403 (x_scroll_bar_move): Removed.
7404 (XTset_vertical_scroll_bar): Move code from x_scroll_bar_move here.
7405
7406 * dispextern.h: Make it compilable --with-x=no.
7407 * alloc.c: Ditto.
7408 * emacs.c: Ditto.
7409 * dispnew.c: Ditto.
7410 * keyboard.c: Ditto.
7411 * term.c: Ditto.
7412 * xdisp.c: Ditto.
7413 * xfaces.c: Ditto.
7414 * xfns.c: Ditto.
7415 * xmenu.c: Ditto.
7416
7417 1998-11-25 Gerd Moellmann <gerd@gnu.org>
7418
7419 * xterm.c (XTread_socket): Cancel help-echo when leaving frame.
7420
7421 1998-11-24 Gerd Moellmann <gerd@gnu.org>
7422
7423 * xterm.c (x_set_toolkit_scroll_bar_thumb): When dragging,
7424 update slider size, only.
7425 (xm_scroll_callback): Set dragging member of the scroll bar.
7426 (xt_action_hook): Reset last_scroll_bar_part.
7427 (XTredeem_scroll_bar): Reset bar->dragging to nil.
7428
7429 * xfns.c (Fx_hide_busy_cursor): Don't try to hide busy cursor
7430 window on newly created frames that don't have one.
7431
7432 1998-11-23 Gerd Moellmann <gerd@gnu.org>
7433
7434 * xdisp.c (restore_overlay_strings): Removed.
7435 (restore_dpvec): Removed.
7436 (init_from_display_pos): Inline both functions above.
7437
7438 * xfns.c (IMAGE_NON_NEGATIVE_INTEGER_VALUE): New.
7439 (parse_image_spec): Handle it.
7440 (xbm_format): Use it.
7441 (xpm_format): Ditto.
7442 (pbm_format): Ditto.
7443 (jpeg_format): Ditto.
7444 (tiff_format): Ditto.
7445 (gif_format): Ditto.
7446 (gs_format): Ditto.
7447
7448 * xdisp.c (set_window_cursor): Removed.
7449 (redisplay_internal): Case cursor motion in cursor line of
7450 selected window; use set_cursor_from_row.
7451
7452 1998-11-22 Gerd Moellmann <gerd@gnu.org>
7453
7454 * widget.c (EmacsFrameSetCharSize): Take widget's border width
7455 into account.
7456
7457 1998-11-21 Gerd Moellmann <gerd@gnu.org>
7458
7459 * xterm.c (expose_frame): Redraw menu bar window.
7460
7461 * xdisp.c (display_menu_bar): Record hpos instead of x-position
7462 in menu item.
7463
7464 * dispnew.c (change_frame_size_1): Use FRAME_TOP_MARGIN instead
7465 of FRAME_TOOLBAR_LINES. Use `f' instead of `frame'.
7466
7467 * widget.c (set_frame_size): Use FRAME_SCROLL_BAR_COLS
7468 to determine vertical_scroll_bar_extra.
7469 (EmacsFrameSetCharSize): Ditto.
7470 * xfns.c (x_figure_window_size): Ditto.
7471
7472 * xterm.c (x_draw_row_bitmaps): Draw in `bitmap-area' face.
7473 (x_draw_bitmap): Ditto.
7474
7475 * dispextern.h (face_id): New id BITMAP_AREA_FACE_ID.
7476 * xfaces.c (realize_basic_faces): Realize it.
7477
7478 1998-11-20 Gerd Moellmann <gerd@gnu.org>
7479
7480 * xmenu.c (xmenu_show): Add workaround for remaining button grab
7481 under LessTif Use the widget of the frame as parent for the
7482 menu, again.
7483
7484 1998-11-19 Gerd Moellmann <gerd@gnu.org>
7485
7486 * xterm.c (XTread_socket): Inhibit busy cursor for EnterNotify.
7487 When EnterNotify, don't generate a mouse movement event if
7488 notification is from a busy-cursor child window.
7489
7490 * xterm.h (struct x_output): Add busy_window, remove cursor.
7491
7492 * xfns.c (Fx_show_busy_cursor): Formerly Fx_display_busy_cursor.
7493 Use a transparent window to display the busy-cursor.
7494 (Fx_hide_busy_cursor): Formerly Fx_undisplay_busy_cursor.
7495
7496 1998-11-17 Gerd Moellmann <gerd@gnu.org>
7497
7498 * xdisp.c (check_window_end): New, for debugging.
7499 (CHECK_WINDOW_END): New.
7500 (try_window_id): Use it.
7501
7502 * xterm.c (process_expose_from_menu): Return int.
7503
7504 * keyboard.c (kbd_buffer_get_event): Set flag to prevent recording
7505 TOOLBAR_EVENT events in last_nonmenu_event.
7506
7507 1998-11-16 Gerd Moellmann <gerd@gnu.org>
7508
7509 * xdisp.c (redisplay_window): If windows_or_buffers_changed,
7510 window end isn't reliable, so set window_end_valid to nil.
7511 (redisplay_internal): If overlay arrow has changed, set
7512 windows_or_buffers_changed to redisplay thoroughly.
7513
7514 * dispnew.c (adjust_glyph_matrix): Invalidate window end, if
7515 necessary.
7516
7517 * xfns.c (file_dialog_cb): New.
7518 (Fx_file_dialog): New.
7519 * fileio.c (Fread_file_name): Call it.
7520
7521 * xrdb.c (x_load_resources): Add default resoures for file
7522 selection dialog.
7523
7524 1998-11-14 Gerd Moellmann <gerd@gnu.org>
7525
7526 * xterm.c (note_mouse_highlight): Don't highlight when popup
7527 is active.
7528
7529 * keyboard.c (timer_check): Inhibit busy cursor around calls to
7530 timer-event-handler. This busy cursor tends to be anoying if
7531 fontifying stealthily.
7532
7533 * dispnew.c (direct_output_for_insert): Give up if current row
7534 contains trailing whitespace.
7535
7536 1998-11-13 Gerd Moellmann <gerd@gnu.org>
7537
7538 * dispextern.h (prop_idx): Add FONTIFIED_PROP_IDX.
7539
7540 * xdisp.c (handle_fontified_prop): New.
7541 (Vfontification_functions): New.
7542 (Qfontification_functions): New.
7543 (it_props): Add handle_fontified_prop.
7544
7545 1998-11-12 Gerd Moellmann <gerd@gnu.org>
7546
7547 * xmenu.c (xmenu_show): Use the frame's edit_widget as parent.
7548 Otherwise, under LessTif, after the popup has gone, all button
7549 press events come in for the frame's widget, and release events
7550 come in for the edit_widget.
7551 * xterm.c (XTread_socket): Remove workaround for that problem.
7552 (x_set_toolkit_scroll_bar_thumb): Add workaround for LessTif
7553 XmScrollBarSetValues.
7554 (SET_SAVED_MENU_EVENT): Give it statement form.
7555
7556 * xfaces.c (display_message): If waiting_for_input, don't display
7557 the message.
7558
7559 * window.c (scroll_command): If not acting on current_buffer,
7560 make redisplay consider all windows.
7561
7562 * xfns.c (Fx_hide_tip): Return t if tooltip was open.
7563
7564 * xdisp.c (handle_glyph_prop): Set it->object for images to
7565 the object having the glyph property.
7566
7567 * xterm.c (x_draw_row_bitmaps): Don't draw if row is completely
7568 invisible.
7569
7570 1998-11-11 Gerd Moellmann <gerd@gnu.org>
7571
7572 * xterm.h (struct x_display_info): Add gray pixmap. * xterm.c
7573 (x_term_init): Create the gray pixmap.
7574 (x_setup_relief_color): Use it.
7575 (x_get_glyph_string_clip_rect): Draw a toolbar window over the
7576 internal border at the top of a frame.
7577 (x_init_glyph_string): Likewise.
7578 (x_draw_glyph_string_relief): Correct right x by 1 pixel for
7579 full-width lines.
7580 (XTflash): Don't flash the toolbar window.
7581
7582 * xterm.c (XTread_socket): Workaround for LessTif popup menus
7583 in case of ButtonPress events.
7584
7585 1998-11-10 Gerd Moellmann <gerd@gnu.org>
7586
7587 * xrdb.c (x_load_resources): Add grey background colors as
7588 defaults for menus, scroll bars, and dialogs.
7589
7590 * insdel.c (prepare_to_modify_buffer): Move setting
7591 windows_or_buffers_changed from modify_region here.
7592
7593 * xfns.c (Fx_show_tip): Inhibit redisplay.
7594 (Fx_hide_tip): Ditto.
7595 (Fx_image_header): New.
7596
7597 1998-11-09 Gerd Moellmann <gerd@gnu.org>
7598
7599 * dispnew.c (clear_window_matrices): Set window_end_valid to nil
7600 when clearing current window matrices.
7601
7602 1998-11-08 Gerd Moellmann <gerd@gnu.org>
7603
7604 * xdisp.c (handle_glyph_prop): Don't set an iterator's buffer
7605 position from a string position. Use the right end position
7606 if the property spans a whole overlay string.
7607
7608 1998-11-07 Gerd Moellmann <gerd@gnu.org>
7609
7610 * xmenu.c (menubar_selection_callback): Remove workaround for
7611 Lesstif not calling XmNpopdownCallback because it doesn't
7612 handle the case where users don't select any menu item.
7613
7614 * insdel.c (modify_region): Set windows_or_buffers_changed.
7615
7616 * buffer.c (set_buffer_internal): Don't set
7617 windows_or_buffers_changed.
7618
7619 * xmenu.c (HAVE_BOXES): Define if USE_X_TOOLKIT.
7620
7621 * xmenu.c (menubar_selection_callback): Add workaround for
7622 Lesstif not calling XmNpopdownCallback.
7623
7624 * xdisp.c (eval_mode_element): New.
7625 (eval_mode_handler): New.
7626 (display_mode_element): Use eval_mode_element.
7627
7628 * xdisp.c (display_mode_element): Allow `(:eval FORM)'.
7629 Remove code looking at text props of default value.
7630
7631 * xmenu.c (HAVE_BOXES): Define if using Lucid menus.
7632
7633 1998-11-06 Gerd Moellmann <gerd@gnu.org>
7634
7635 * xmenu.c (single_submenu): Set button_type of menu to
7636 BUTTON_TYPE_NONE.
7637 (single_submenu): Likewise for panes and menu items.
7638 (set_frame_menubar): Set button_type of menu bar to none.
7639 (xmenu_show): Likewise.
7640 (single_submenu): Set widget values selected slot.
7641 (xmenu_show): Likewise.
7642
7643 * xmenu.c (push_menu_item): Add parameters `type' and
7644 `selected'. Store it in menu_items.
7645 (MENU_ITEMS_ITEM_TYPE): New.
7646 (MENU_ITEMS_ITEM_SELECTED): New.
7647 (MENU_ITEMS_ITEM_LENGTH): Increase by two.
7648
7649 * xfns.c (clear_image_cache): Get the current time, before
7650 doing anything.
7651 (cache_image): Set prev pointer of next image.
7652 (clear_image_cache): Clear current matrices if any image was
7653 freed.
7654
7655 * xterm.c (XTread_socket): Set inhibit_busy_cursor.
7656
7657 * xfns.c (x_set_cursor): New.
7658 (Fx_display_busy_cursor): New.
7659 (Fx_undisplay_busy_cursor): New.
7660
7661 * xterm.h (struct x_output): Add busy_cursor.
7662
7663 * xfns.c (Vx_busy_pointer_shape): New.
7664 (x_set_mouse_color): Create busy cursor.
7665
7666 * process.c (wait_reading_process_input): Show and hide busy
7667 cursor.
7668
7669 * keyboard.c (command_loop_1): Display busy cursor.
7670
7671 * eval.c (Fsignal): Hide busy cursor.
7672
7673 * buffer.c (set_buffer_internal): Don't set
7674 windows_or_buffers_changed.
7675
7676 * xterm.c (redo_mouse_highlight): New.
7677
7678 1998-11-04 Gerd Moellmann <gerd@gnu.org>
7679
7680 * xfns.c (x_create_x_image_and_pixmap): Add depth parameter.
7681 (x_build_heuritic_mask): New.
7682 (lookup_image): Call it.
7683
7684 * xterm.c (note_toolbar_highlight): Always set up help_echo.
7685 (previous_help_echo): New.
7686 (XTread_socket): Generate help event with nil message when
7687 leaving a region with help-echo.
7688 (note_mouse_highlight): Handle `help-echo' over text.
7689 (XTread_socket): Dispatch VisibilityNotify, CirculateNotify,
7690 CirculateRequest.
7691 (clear_mouse_face): Don't clear if tooltip is shown.
7692 (XTread_socket): Redo mouse-highlight after tooltip is gone.
7693 Avoid SET_FRAME_GARBAGED when tooltip is mapped.
7694
7695 * keyboard.c (Vshow_help_function): New.
7696 (read_char): Use it.
7697
7698 1998-11-03 Gerd Moellmann <gerd@gnu.org>
7699
7700 * xfns.c (x_create_tip_frame): New.
7701 (Fx_show_tip): New.
7702 (Fx_hide_tip): New.
7703
7704 * xterm.c (x_destroy_window): Handle case that we don't have
7705 a widget.
7706
7707 * dispextern.h (struct glyph_row): Rename no_marginal_areas_p
7708 to full_width_p. Add internal_border_p.
7709
7710 1998-11-02 Gerd Moellmann <gerd@gnu.org>
7711
7712 * xterm.c (note_mode_line_highlight): Check the charpos of
7713 the glyph under the mouse pointer before accessing text
7714 properties at that position.
7715
7716 1998-11-01 Gerd Moellmann <gerd@gnu.org>
7717
7718 * xterm.c (x_draw_image_relief): Handle toolbar_button_relief.
7719
7720 * xdisp.c (auto-raise-toolbar-buttons): New.
7721 (build_desired_toolbar_string): Handle the flag.
7722 (toolbar-button-margin): New.
7723 (toolbar-button-relief): New.
7724 (build_desired_toolbar_string): Use margin and relief.
7725
7726 * xterm.c (x_set_toolkit_scroll_bar_thumb): Remove workaround
7727 for FreeBSD.
7728 (note_mode_line_highlight): New.
7729 (note_mouse_highlight): Call it.
7730
7731 1998-10-31 Gerd Moellmann <gerd@gnu.org>
7732
7733 * s/freebsd.h (NARROWPROTO): New.
7734
7735 * xdisp.c (display_string): New parameter face_string.
7736 (display_mode_element): When displaying a symbol with a string
7737 value, use text properties from the symbol's default value, maybe.
7738
7739 * xrdb.c (x_load_resources): Add font defaults for menus and
7740 dialogs.
7741
7742 1998-10-30 Gerd Moellmann <gerd@gnu.org>
7743
7744 * xfns.c (Fx_create_frame): Try 12pt Courier font first.
7745
7746 1998-10-29 Gerd Moellmann <gerd@gnu.org>
7747
7748 * xterm.c (x_produce_glyphs): Fix bug causing glyphs to be
7749 produced for characters with codes < 32 under certain
7750 circumstances.
7751
7752 * xdisp.c (redisplay_window): Handle values of PT in front
7753 of invisible, intangible text.
7754 (try_window_id): Set overlay_arrow_seen to zero before
7755 displaying lines.
7756 (display_mode_element): Assign to glyphs written for a mode
7757 line spec `%x' as object the Lisp format string, as position
7758 the position of the `%' in that string.
7759 (display_string): If displaying a C string, optionally get
7760 the face to use from a Lisp string.
7761
7762 * xterm.c (expose_window_tree): Include mode line height.
7763
7764 * xfns.c (Fx_create_frame): Add toolbar height to frame height.
7765
7766 1998-10-27 Gerd Moellmann <gerd@gnu.org>
7767
7768 * xterm.c (note_mouse_highlight): Change mouse pointer shape
7769 over mode line.
7770
7771 1998-10-26 Gerd Moellmann <gerd@gnu.org>
7772
7773 * window.c (coordinates_in_window): Use CURRENT_MODE_LINE_HEIGHT.
7774
7775 * xdisp.c (redisplay_window): If mode line height has changed,
7776 arrange for a thorough immediate redisplay using the correct mode
7777 line height.
7778 (window_box_height): Use CURRENT_MODE_LINE_HEIGHT.
7779
7780 * dispextern.h (MATRIX_MODE_LINE_HEIGHT): New.
7781 (CURRENT_MODE_LINE_HEIGHT): New.
7782 (DESIRED_MODE_LINE_HEIGHT): New.
7783
7784 * keyboard.c (make_lispy_event): Add string and string position
7785 info to mouse-click events.
7786 (read_key_sequence): Handle `local-map' property of mode line
7787 strings.
7788
7789 * keyboard.h (POSN_STRING): New.
7790
7791 1998-10-25 Gerd Moellmann <gerd@gnu.org>
7792
7793 * dispnew.c (mode_line_string): Mew.
7794
7795 * xterm.c (xt_action_hook): New.
7796 (x_create_toolkit_scroll_bar): Add action hook.
7797 (xm_scroll_callback): Implement dragging.
7798
7799 * keyboard.c (Qend_scroll): New.
7800 (scroll_bar_parts): Add it.
7801
7802 * termhooks.h (scroll_bar_end_scroll): New.
7803
7804 * xterm.c (XTread_socket): Bug fix.
7805
7806 1998-10-24 Gerd Moellmann <gerd@gnu.org>
7807
7808 * xdisp.c (redisplay_window): Finish scroll bars after
7809 redisplaying toolbar.
7810
7811 * keyboard.c (scroll_bar_parts): Add Qtop and Qbottom.
7812 (syms_of_keyboard): Add Qbottom.
7813
7814 * termhooks.h (scroll_bar_to_top): New.
7815 (scroll_bar_to_bottom): New.
7816
7817 * xdisp.c (redisplay_window): Always resize toolbar window if
7818 auto_resize_toolbar_p is non-zero.
7819 (auto_resize_toolbar_p): Renamed from auto_resize_toolbar.
7820 (window_box): New.
7821 (window_box_height): New.
7822 (window_box_width): New.
7823 (window_box_left): New.
7824 (window_box_right): New.
7825 (window_box_edges): New.
7826
7827 1998-10-23 Gerd Moellmann <gerd@gnu.org>
7828
7829 * xterm.c (x_set_toolkit_scroll_bar_thumb): Kluge for call to
7830 XawScrollbarSetThumb in FreeBSD.
7831 (x_create_toolkit_scroll_bar): Set resource "beNiceToColormap"
7832 to true.
7833
7834 * window.c (get_phys_cursor_glyph): Return null if cursor vpos
7835 is out of range.
7836
7837 * xterm.c (x_create_toolkit_scroll_bar): Set scroll_bar_pixel.
7838 (x_term_init): Initialize it.
7839
7840 * xterm.h (struct x_display_info): Add scroll_bar_pixel.
7841
7842 * xterm.c (x_create_toolkit_scroll_bar): Set LessTif scroll bar's
7843 cursor.
7844
7845 1998-10-22 Gerd Moellmann <gerd@gnu.org>
7846
7847 * keyboard.c (make_lispy_event): Handle scroll_bar_click
7848 differently when using toolkit scroll bars.
7849
7850 * xterm.c (x_send_scroll_bar_event): New.
7851 (x_scroll_bar_to_input_event): New.
7852 (xaw3d_scroll_callback): New.
7853 (xaw3d_jump_callback): New.
7854 (xm_scroll_callback): New.
7855 (x_toolkit_scroll_p): New.
7856 (XTread_socket): Handle scroll bar client message.
7857 (x_term_init): Initialize Xatom_Scrollbar.
7858 (x_scroll_bar_create): Set cursor.
7859 (xm_scroll_callback):
7860 (x_create_toolkit_scroll_bar): New.
7861 (x_set_toolkit_scroll_bar_thumb): New.
7862 (x_scroll_bar_create): Call x_create_toolkit_scroll_bar.
7863 (XTset_vertical_scroll_bar): Call x_set_toolkit_scroll_bar_thumb.
7864
7865 * xterm.h (struct x_display_info): Add Xatom_Scrollbar.
7866
7867 1998-10-21 Gerd Moellmann <gerd@gnu.org>
7868
7869 * xterm.c (x_scroll_bar_remove): Handle toolkit scroll bars.
7870 (XTread_socket): Don't handle mouse button events for scroll bars
7871 if using toolkit scroll bars.
7872 (XTset_vertical_scroll_bar): Set thumb size and position for
7873 Athena scroll bar.
7874
7875 * xterm.h (scroll_bar): Add x_widget_low and x_widget_high.
7876
7877 * xterm.c (XTread_socket): Dispatch expose event to widget
7878 if using toolkit scroll bars.
7879 (x_scroll_bar_expose): Make no-op for toolkit scroll bars.
7880 (x_scroll_bar_create): Create and show a scroll bar widget
7881 if using toolkit scroll bars.
7882 (x_scroll_bar_move): Handle tookit scroll bars.
7883
7884 * Makefile.in (LIBW): Use Xaw3d if present.
7885
7886 * configure.in (USE_TOOLKIT_SCROLL_BARS): New.
7887 (HAVE_XAW3D): New.
7888
7889 * config.in (USE_TOOLKIT_SCROLL_BARS): New.
7890 (HAVE_XAW3D): New.
7891
7892 * xterm.c (XTset_vertical_scroll_bar): Correct position of
7893 right vertical scroll bar.
7894
7895 1998-10-20 Gerd Moellmann <gerd@gnu.org>
7896
7897 * xfns.c (xpm_load): Support reading XPM images from string
7898 buffers containing data in the same format as an XPM file.
7899 Support `:color-symbols'.
7900 (xpm_format): Add `:data'.
7901 (xpm_keyword_index): Add XPM_DATA.
7902 (syms_of_xfns): Add `:color-symbols'.
7903 (xpm_keyword_index): Add XPM_COLOR_SYMBOLS.
7904 (xpm_valid_color_symbols_p): New.
7905 (xpm_image_p): Call it.
7906
7907 * xdisp.c (build_desired_toolbar_string): Add `:algorithm'
7908 attribute to the image if item is not enabled.
7909
7910 * xfns.c (x_laplace): New.
7911 (x_laplace_read_row): New.
7912 (x_laplace_write_row): New.
7913 (lookup_image): Handle common image attributes here. New
7914 attribute `:algorithm'.
7915
7916 * xfaces.c (clear_face_cache): Call clear_image_cache.
7917
7918 * xterm.c (x_inverted_image_mask): Removed.
7919 (x_draw_image_foreground_1): New.
7920 (x_draw_image_glyph_string): Draw images with mask to a temporary
7921 pixmap to reduce flickering.
7922
7923 * xdisp.c (redisplay_toolbar): Handle auto-resize-toolbars.
7924 (display_toolbar_line): Remove parameter `margin'.
7925
7926 1998-10-19 Gerd Moellmann <gerd@gnu.org>
7927
7928 * xdisp.c (toolbar_lines_needed): New.
7929 (auto-resize-toolbars): New.
7930
7931 * xfns.c (cache_image): Correct call to xrealloc.
7932
7933 * dispnew.c (Fset_toolbar_height): Removed.
7934
7935 * xdisp.c (init_xdisp): Use FRAME_TOP_MARGIN instead of
7936 FRAME_MENU_BAR_LINES.
7937
7938 * window.c (Fdelete_other_windows): Use FRAME_TOP_MARGIN
7939 instead of FRAME_MENU_BAR_LINES.
7940 (check_frame_size): Ditto.
7941
7942 * dispnew.c (adjust_frame_glyphs_initially): Use FRAME_TOP_MARGIN
7943 instead of FRAME_MENU_BAR_LINES.
7944 (adjust_frame_glyphs_for_frame_redisplay): Ditto.
7945 (build_frame_matrix): Ditto.
7946 (change_frame_size_1): Ditto.
7947
7948 * frame.h (FRAME_TOOLBAR_LINES): New.
7949 (FRAME_TOP_MARGIN): New.
7950
7951 * window.c (struct save_window_data): Add frame_toolbar_lines.
7952 (Fset_window_configuration): Handle toolbar lines.
7953 (Fcurrent_window_configuration): Save toolbar lines.
7954
7955 * frame.c (syms_of_frame_1): Add Qtoolbar_lines.
7956
7957 * xfns.c (Fx_create_frame): Add default parameter for toolbar.
7958
7959 * frame.h (struct frame): Rename top_margin to toolbar_lines.
7960
7961 * xfns.c (x_frame_parms): Add `toolbar-lines'.
7962 (x_set_toolbar_lines): New.
7963
7964 * keyboard.c (cmd_error_internal): Bug fix.
7965
7966 * xterm.c: Remove double include of syssignal.h.
7967
7968 1998-10-18 Gerd Moellmann <gerd@gnu.org>
7969
7970 * xterm.c (x_toolbar_item): New.
7971 (x_handle_toolbar_click): Use it.
7972 (note_toolbar_highlight): Use it.
7973
7974 * keyboard.c (syms_of_keyboard): Staticpro toolbar_item_properties
7975 and toolbar_items_vectors.
7976
7977 * xterm.c (help_echo): New.
7978 (draw_glyphs_face): Add DRAW_IMAGE_RAISED and DRAW_IMAGE_SUNKEN.
7979 (x_set_glyph_string_gc): Handle them.
7980 (x_after_update_window_line): Don't do anything in pseudo-windows.
7981 (x_produce_image_glyph): Take image margin and face relief into
7982 account.
7983 (x_get_glyph_string_clip_rect): Handle pseudo-windows.
7984 (x_draw_glyph_string_background): Optimize case when face has
7985 relief.
7986 (x_setup_relief_color): Take frame instead of glyph string
7987 parameter.
7988 (x_draw_relief_rect): New.
7989 (x_draw_glyph_string_relief): Call it.
7990 (x_draw_image_glyph_string_foreground): Handle margin and image
7991 relief.
7992 (x_draw_image_glyph_string_background): Ditto.
7993 (expose_frame): Redraw toolbar window.
7994 (expose_window): Don't draw cursor for pseudo-windows.
7995 (x_y_to_hpos_vpos): Handle pseudo-windows.
7996 (frame_to_window_pixel_xy): New.
7997 (note_mouse_highlight): Call note_toolbar_highlight.
7998 (x_handle_toolbar_click): New.
7999 (note_toolbar_highlight): New.
8000 (show_mouse_face): Change int parameter `hl' to parameter of
8001 type enum draw_glyphs_face. Handle image highlighting.
8002 (XTread_socket): Return a HELP_EVENT input event if help_echo is
8003 non-nil. Use x_handle_toolbar_click.
8004
8005 * termhooks.h (event_kind): Add HELP_EVENT, TOOLBAR_EVENT.
8006
8007 * xfns.c (image_value_type): Add IMAGE_INTEGER_VALUE,
8008 IMAGE_BOOL_VALUE.
8009 (parse_image_spec): Handle them.
8010 (image_spec_value): Additional parameter found.
8011 (free_image): Remove image from the vector `images' of the
8012 image cache.
8013 (clear_image_cache): Additional parameter force_p.
8014 (Fclear_image_cache): New.
8015 (x_find_image_file): New.
8016 (xbm_load): Handle `:margin' and `:relief'. Use
8017 x_find_image_file.
8018 (xpm_load): Likewise.
8019 (pbm_load): Likewise.
8020 (jpeg_load): Likewise.
8021 (tiff_load): Likewise.
8022 (gif_load): Likewise.
8023
8024 * keyboard.c (Qhelp_echo): New symbol.
8025 (read_char): Handle `toolbar' and `help_echo' events.
8026 (kbd_buffer_get_event): Handle HELP_ECHO input event.
8027 (make_lispy_event): Handle TOOLBAR_EVENT.
8028 (toolbar_items): New.
8029 (process_toolbar_item): New.
8030 (PROP): New.
8031 (init_toolbar_items): New.
8032 (append_toolbar_item): New.
8033 (read_char_x_menu_prompt): Handle `toolbar' event.
8034 (read_key_sequence): Ditto.
8035
8036 * xfaces.c (Qtoolbar): New.
8037 (realize_basic_faces): Realize `toolbar' face.
8038 (face_at_string_position): Remove parameter modeline_p, add
8039 base_face_id.
8040
8041 * xfns.c (xbm_load_image_from_file): Don't use Xmu function
8042 to read data.
8043
8044 1998-10-17 Gerd Moellmann <gerd@gnu.org>
8045
8046 * xdisp.c (init_iterator): Replace parameter modeline_p with
8047 base_face_id.
8048 (next_element_from_string): Call get_next_display_element
8049 recursively after handling text properties.
8050 (prepare_menu_bars): Call update_toolbar.
8051 (update_toolbar): New.
8052 (build_desired_toolbar_string): New.
8053 (display_toolbar_line): New.
8054 (redisplay_toolbar): New.
8055 (toolbar_item_info): New.
8056 (redisplay_window): Call redisplay_toolbar.
8057 (Fdump_toolbar_row): New. Defined if compiled with GLYPH_DEBUG.
8058
8059 * dispnew.c (clear_current_matrices): Clear matrices of toolbar
8060 window.
8061 (clear_desired_matrices): Ditto.
8062 (adjust_frame_glyphs_for_window_redisplay): Make toolbar window.
8063 (free_glyphs): Free matrices of toolbar window.
8064 (update_frame): Update toolbar window.
8065 (change_frame_size_1): Take toolbar into account.
8066 (Fset_toolbar_height): New.
8067
8068 * dispextern.h (struct it): Remove member modeline_p, add
8069 base_face_id.
8070 (struct image): Add members relief and margin.
8071 (IMAGE_ASCENT): Include margin in height.
8072
8073 1998-10-14 Gerd Moellmann <gerd@gnu.org>
8074
8075 * xfns.c (Fclear_image_cache): New.
8076
8077 * xfaces.c (realize_basic_faces): Realize toolbar face.
8078 (face_at_string_position): Remove parameter modeline_p, add
8079 base_face_id.
8080
8081 * dispextern.h (enum face_id): Add TOOLBAR_FACE_ID.
8082
8083 1998-10-13 Gerd Moellmann <gerd@gnu.org>
8084
8085 * keyboard.c (syms_of_keyboard): Intern `:help'.
8086
8087 1998-10-12 Gerd Moellmann <gerd@gnu.org>
8088
8089 * xterm.c (note_toolbar_highlight): New.
8090 (note_mouse_highlight): Call it.
8091
8092 * window.c (window_from_coordinates): Additional parameter toolbar_p.
8093 (coordinates_in_window): Handle toolbar window.
8094
8095 * keyboard.c (toolbar_items): New.
8096 (process_toolbar_item): New.
8097 (parse_toolbar_item): New.
8098 (init_toolbar_items): New.
8099 (append_toolbar_item): New.
8100
8101 * dispextern.h (enum toolbar_item_idx): New.
8102 (enum toolbar_item_image): New.
8103
8104 * frame.h (struct frame): Add toolbar-related members.
8105
8106 * xfaces.c (face_at_string_position): Remove assertion that
8107 current_buffer == window's buffer. This is not the case when
8108 called for the toolbar window.
8109
8110 * frame.c (make_frame): Initialize toolbar members.
8111
8112 * alloc.c (mark_object): Mark toolbar data of frames.
8113
8114 * frame.h (struct frame): Add toolbar-related members
8115 toolbar_window, desired_toolbar_items, current_toolbar_items,
8116 desired_toolbar_string, current_toolbar_string,
8117 n_desired_toolbar_items, n_current_toolbar_items. Add
8118 window_height.
8119
8120 * xterm.c (x_after_update_window_line): Don't draw bitmap
8121 areas for pseudo-windows.
8122 (expose_frame): Handle toolbar window.
8123 (expose_window): Don't do cursor stuff for pseudo-windows.
8124
8125 * xdisp.c (display_menu_bar): Correct calls to init_iterator.
8126
8127 1998-10-11 Gerd Moellmann <gerd@gnu.org>
8128
8129 * frame.c (make_frame): Initialize toolbar_window.
8130
8131 * alloc.c (mark_object): Make the toolbar window.
8132
8133 * dispnew.c (update_frame): Update frame's toolbar_window.
8134 (clear_current_matrices): Likewise.
8135 (clear_desired_matrices): Likewise.
8136 (adjust_frame_glyphs_for_window_redisplay): Make toolbar_window.
8137 (free_glyphs): Free the toolbar window and its matrices.
8138
8139 * frame.h (struct frame): Add toolbar_window.
8140
8141 * xterm.c (x_draw_glyph_string_relief): Handle mouse-face
8142 with relief.
8143
8144 1998-10-10 Gerd Moellmann <gerd@gnu.org>
8145
8146 * dispnew.c (buffer_posn_from_coords): Don't screw up if
8147 window start is not in the range BEGV..ZV.
8148
8149 1998-10-09 Gerd Moellmann <gerd@gnu.org>
8150
8151 * xdisp.c (try_scrolling): Experimentally handle the case
8152 that scroll-preserve-screen-position is set to `always'.
8153
8154 * window.c (Vscroll_preserve_screen_position): Replacement for
8155 scroll_preserve_screen_position.
8156
8157 1998-10-08 Gerd Moellmann <gerd@gnu.org>
8158
8159 * dispnew.c: Don't initialize auto structs; the HP/UX compiler
8160 doesn't like it.
8161 * xdisp.c: Ditto.
8162
8163 * xdisp.c (make_cursor_line_fully_visible): Adjust this_line_y.
8164
8165 1998-10-06 Gerd Moellmann <gerd@gnu.org>
8166
8167 * minibuf.c (Fminibuffer_complete_word): Fix computation of
8168 i_byte when prompts are inserted into minibuffers.
8169
8170 * dispextern.h (FRAME_INTERNAL_BORDER_WIDTH_SAFE): New.
8171 (WINDOW_DISPLAY_LEFT_EDGE_PIXEL_X): Use it.
8172 (WINDOW_DISPLAY_TOP_EDGE_PIXEL_Y): Ditto.
8173
8174 1998-10-04 Gerd Moellmann <gerd@gnu.org>
8175
8176 * xdisp.c (make_cursor_line_fully_visible): New.
8177 (try_scrolling): New.
8178 (redisplay_window): Move scrolling code to try_scrolling.
8179 (make_cursor_line_fully_visible): Handle case of window too small
8180 to show a single line.
8181 (redisplay_window): Case forced window start---use
8182 make_cursor_line_fully_visible.
8183 (redisplay_window): Case cursor movement via current matrix.
8184 If ending up on a partially visible line, make it fully visible
8185 instead of recentering.
8186 (try_scrolling): Additional parameter scroll_smoothly.
8187
8188 * xterm.c (x_draw_bitmap): Don't XClearArea under the pixmap.
8189
8190 1998-09-28 Gerd Moellmann <gerd@gnu.org>
8191
8192 * window.c (window_scroll_pixel_based): Bug fix: vpos used
8193 instead of y-position for scroll-preserved-screen-position.
8194
8195 1998-09-07 Gerd Moellmann <gerd@gnu.org>
8196
8197 * dispnew.c (update_frame_line): If current row is not enabled,
8198 write the whole line.
8199
8200 1998-09-06 Gerd Moellmann <gerd@gnu.org>
8201
8202 * lisp.h (HAVE_FACES): Removed.
8203
8204 * dispextern.h (HAVE_FACES): Removed.
8205
8206 * config.in (HAVE_FACES): Removed.
8207
8208 * dispnew.c (HAVE_FACES): Removed.
8209
8210 * xdisp.c (HAVE_FACES): Removed.
8211
8212 * xfaces.c (HAVE_FACES): Removed.
8213
8214 1998-09-05 Gerd Moellmann <gerd@gnu.org>
8215
8216 * xdisp.c (init_iterator): If face_change_count is non-zero,
8217 free realized faces.
8218
8219 * xfaces.c (free_all_realized_faces): Make it externally visible.
8220 (Finternal_set_lisp_face_attribute): Increment
8221 windows_or_buffers_changed.
8222
8223 * dispnew.c (direct_output_for_insert): Give up if
8224 face_change_count is non-zero.
8225 (direct_output_forward_char): Ditto.
8226
8227 * xfaces.c (face_change_count): New.
8228
8229 1998-09-04 Gerd Moellmann <gerd@gnu.org>
8230
8231 * xterm.c (x_draw_bar_cursor): Don't draw if cursor hpos is out
8232 of range.
8233
8234 1998-09-03 Gerd Moellmann <gerd@gnu.org>
8235
8236 * term.c (Ftty_display_color_p): New.
8237
8238 1998-09-02 Gerd Moellmann <gerd@gnu.org>
8239
8240 * xfaces.c (Ftty_defined_colors): New.
8241
8242 * xterm.c (x_produce_glyphs): Fix computation of
8243 contains_overlapping_glyphs_p for ASCII.
8244
8245 * dispnew.c (Fshow_cursor): Don't change cursor state while
8246 redisplaying.
8247 (direct_output_for_insert): If a glyph with lbearing or rbearing
8248 is among the new glyphs, set row flag contains_overlapping_glyph_p.
8249
8250 1998-09-01 Gerd Moellmann <gerd@gnu.org>
8251
8252 * term.c (OUTPUT_IF): Make replacement text have statement form.
8253 (OUTPUT1_IF): Ditto.
8254 (TS_italic_mode, TS_end_italic_mode): Removed.
8255 (TS_bold_mode): Removed.
8256 (TS_underscore_mode, TS_end_underscore_mode): Removed.
8257 (TS_enter_bold_mode, TS_enter_dim_mode, TS_enter_blink_mode): New.
8258 (TS_enter_reverse_mode): New.
8259 (TS_enter_underline_mode, TS_exit_underline_mode): New.
8260 (TN_magic_cookie_glitch_ul): New.
8261 (TS_enter_alt_charset_mode, TS_exit_alt_charset_mode): New.
8262 (TS_exit_attribute_mode): New.
8263 (TN_max_colors, TN_max_pairs, TS_orig_pairs): New.
8264 (TS_set_foreground, TS_set_background): New.
8265 (reset_terminal_modes): Switch colors back to default.
8266 (write_glyphs): Turn face on before writing text, turn it off
8267 afterwards.
8268 (insert_glyphs): Ditto.
8269 (term_init): Initialize new terminal capability variables.
8270 (turn_on_face): Turn a face on.
8271 (turn_off_face): Turn a face off.
8272
8273 * lisp.h (MAKE_GLYPH): Remove test for frame type.
8274 (GLYPH_CHAR): Ditto.
8275 (GLYPH_FACE): Ditto.
8276
8277 * xfaces.c (Vface_tty_color_alist): New.
8278 (face-register-tty-color): New.
8279 (face-clear-tty-colors): New.
8280
8281 * dispextern.h (FACE_TTY_DEFAULT_COLOR): New.
8282 (struct it): Remove member faces_p since we now always have faces.
8283
8284 1998-08-31 Gerd Moellmann <gerd@gnu.org>
8285
8286 * dispextern.h (struct face): Add tty appearance flags.
8287
8288 * xdisp.c (init_iterator): Always handle faces.
8289 (extend_face_to_end_of_line): Handle tty frames.
8290
8291 * dispnew.c (clear_glyph_matrix): Allow a null matrix to be
8292 passed in.
8293
8294 1998-08-30 Gerd Moellmann <gerd@gnu.org>
8295
8296 * xfaces.c (realize_default_face): Use empty strings to indicate
8297 that the face should use the default foreground/background
8298 color of the terminal. Fill font-related attributes with
8299 appropriate values for tty frames.
8300
8301 * emacs.c (main): Call syms_of_xfaces before init_window_once.
8302
8303 * xfaces.c (realize_default_face): If face `default' is not
8304 yet known, create it.
8305
8306 * frame.c (make_terminal_frame): Call init_frame_faces
8307 unconditionally.
8308
8309 * xfaces.c (init_frame_faces): Make it work for tty frames.
8310 (free_frame_faces): Ditto.
8311 (clear_face_cache): Ditto.
8312 (recompute_basic_faces): Ditto.
8313 (Fframe_face_alist): Ditto.
8314 (free_realized_face): Ditto.
8315 (prepare_face_for_display): Ditto.
8316 (clear_face_gcs): Ditto.
8317 (lookup_face): Ditto.
8318 (smaller_face): Ditto.
8319 (realize_default_face): Ditto.
8320 (realize_face): Ditto.
8321 (realize_face): Dispatch to functions depending on the frame type.
8322 (realize_x_face): X way of realizing faces.
8323 (realize_tty_face): TTY way of realizing faces.
8324
8325 1998-08-29 Gerd Moellmann <gerd@gnu.org>
8326
8327 * xfaces.c (realize_face): Remove parameter unibyte_registry,
8328 compute it instead.
8329 (lookup_face): Remove local variable unibyte_registry.
8330
8331 1998-08-22 Gerd Moellmann <gerd@gnu.org>
8332
8333 * xterm.c (x_draw_glyph_string_relief): Draw top and bottom lines
8334 1 pixel longer.
8335
8336 * xdisp.c (face_before_or_after_it_pos): Fix computation
8337 of face in buffer.
8338
8339 * editfns.c (make_buffer_string_both): If prompt in buffer,
8340 prevent start > end.
8341
8342 * indent.c (Fvertical_motion): Set current_buffer to window's
8343 buffer if it isn't already.
8344
8345 1998-08-21 Gerd Moellmann <gerd@gnu.org>
8346
8347 * dispextern.h (GLYPH_DEBUG): Use default 0.
8348
8349 * xdisp.c (it_props): New member `smaller'.
8350 (init_iterator): Initialize it.
8351 (Qsmaller): New.
8352 (push_it): Save value of `smaller' value on the stack.
8353 (pop_it): Restore `smaller' from the stack.
8354 (handle_smaller_prop): New.
8355 (handle_face_prop): Use `smaller' text property to select a
8356 suitable face.
8357
8358 * dispextern.h (SMALLER_PROP_IDX): New.
8359 (struct it): Add member `smaller'.
8360
8361 * xfaces.c (smaller_face): New.
8362
8363 * frame.h (FRAME_WINDOW_WIDTH_ARG): Add bitmap area widths.
8364
8365 * dispnew.c (allocate_matrices_for_window_redisplay): Compute
8366 total pixel width of window differently.
8367
8368 * xdisp.c (init_iterator): Compute width of mode line differently.
8369
8370 * dispextern.h (WINDOW_DISPLAY_PIXEL_WIDTH): Subtract width
8371 of bitmap areas.
8372
8373 * window.c (Fsplit_window): Include width of bitmap areas in
8374 window width.
8375 (window_internal_width): Subtract width of bitmap areas from
8376 total width.
8377
8378 1998-08-18 Gerd Moellmann <gerd@gnu.org>
8379
8380 * xdisp.c: Functions reordered for better readability.
8381
8382 * dispnew.c (update_text_area): Handle glyphs with arbitrary
8383 lbearing.
8384 (update_window_tree): Parameter no_scrolling_p removed.
8385 (update_single_window): Ditto.
8386
8387 * xterm.c (x_get_char_font_and_encoding): Renamed to
8388 x_get_char_face_and_encoding.
8389
8390 * dispnew.c (update_text_area): Don't call get_glyph_overhangs
8391 if end of current row reached.
8392
8393 * xterm.c (x_get_glyph_face_and_encoding): New.
8394 (x_get_glyph_overhangs): Call it.
8395
8396 * xdisp.c (Qshow_trailing_whitespace): New.
8397 (Qtrailing_whitespace): New.
8398 (enum prop_handled): New.
8399 (struct props, it_props): New.
8400 (next_overlay_change): New. Works like Fnext_overlay_change
8401 but doesn't use xmalloc.
8402 (handle_stop): Restructured.
8403 (face_before_or_after_it_pos): Case iteration over a string: fix
8404 handling of face before current position.
8405
8406 1998-08-16 Gerd Moellmann <gerd@gnu.org>
8407
8408 * dispnew.c (adjust_glyph_matrix): Don't optimize matrix
8409 reallocation matrix if fonts_changed_p.
8410 (update_text_area): Handle glyphs with lbearing.
8411
8412 1998-08-14 Gerd Moellmann <gerd@gnu.org>
8413
8414 * xdisp.c (struct props): New.
8415 (it_props): New.
8416 (compute_prop_info): New.
8417 (handle_stop): New.
8418
8419 * textprop.c (validate_interval_range): Make it externally
8420 visible.
8421
8422 * dispnew.c (direct_output_for_insert): Remove calls
8423 to compute_stop_pos.
8424
8425 * dispextern.h (struct it): Remove check_charpos,
8426 next_overlay_pos. Add what_changes.
8427
8428 1998-08-10 Gerd Moellmann <gerd@gnu.org>
8429
8430 * xterm.c (note_mouse_highlight): Set BEGV_BYTE, ZV_BYTE.
8431
8432 * xfaces.c (Vx_unibyte_registry_and_encoding): Removed. Use
8433 face_default_registry instead.
8434
8435 * syntax.c (scan_sexps_forward): Set up syntax table before
8436 jumping to initial state label.
8437
8438 1998-08-09 Gerd Moellmann <gerd@gnu.org>
8439
8440 * dispnew.c (check_matrix_invariants): Handle case of row end pos
8441 >= ZV specially.
8442
8443 1998-08-08 Gerd Moellmann <gerd@gnu.org>
8444
8445 * xdisp.c (redisplay_window): Case cursor movement---if cursor
8446 ends up in partially visible row, try to scroll. Case forced
8447 window start---handle windows not tall enough to show a single
8448 line.
8449
8450 * window.h (struct window): Member dy renamed vscroll.
8451
8452 * xterm.c (x_list_fonts): Re-activate suppression of scalable
8453 fonts.
8454 (x_draw_stretch_glyph_string): Set clipping if using GC that
8455 hasn't set it yet.
8456
8457 * xdisp.c (redisplay_window): Case forced window start -
8458 don't let cursor end on partially visible row. Use desired
8459 matrix to find a suitable PT if it doesn't appear.
8460 (decode_mode_spec): Merged with 20.2.97.
8461 (try_window_reusing_current_matrix): Give up if old or
8462 new display is vscrolled.
8463 (redisplay_window): Reset vscrolling if forced window start,
8464 or if recentering.
8465
8466 1998-08-06 Gerd Moellmann <gerd@gnu.org>
8467
8468 * xfaces.c (realize_default_face): Use the fontset name instead of
8469 the alias for the family attribute of the default face because we
8470 can't easily determine a good alias from fontset-alias-alist.
8471 (face_fontset): Use Fquery_fontset to find the fontset.
8472 (font_list): Additional pattern parameter.
8473 (try_font_list): Ditto.
8474 (set_lface_from_font_name): Set face family from font foundry
8475 and family.
8476 (font_list): If family contains a hyphen, build pattern differently.
8477
8478 1998-08-05 Gerd Moellmann <gerd@gnu.org>
8479
8480 * xfaces.c (free_realized_faces): Increment windows_or_buffers_-
8481 changed instead of setting the frame garbaged.
8482
8483 * xfaces.c (lface_equal_p): Don't assume equal Lisp types for
8484 all attribute values. This is wrong if values are unspecified,
8485 i.e. nil.
8486
8487 * xdisp.c (try_window_id): Give up if window start changed.
8488
8489 * xfaces.c (make_realized_face): Store registry as Lisp object.
8490 (load_face_font_or_fontset): Compute registry of a face
8491 differently. Make it `eq' to Vx_unibyte_registry_and_encoding if
8492 possible.
8493
8494 * dispextern.h (FACE_SUITABLE_FOR_CHARSET_P): Compare registries
8495 differently.
8496
8497 * alloc.c (mark_face_cache): Mark the registry member of faces.
8498
8499 * dispextern.h (struct face): Make registry a Lisp string.
8500
8501 1998-08-04 Gerd Moellmann <gerd@gnu.org>
8502
8503 * xterm.c (x_get_char_font_and_encoding): Additional parameter
8504 multibyte_p. Handle unibyte text.
8505 (x_append_glyph): Set the multibyte_p flag of glyphs.
8506 (x_produce_image_glyph): Ditto.
8507 (x_append_stretch_glyph): Ditto.
8508 (x_produce_glyphs): Handle unibyte text like ASCII.
8509
8510 * xdisp.c (push_it): Save the multibyte flag of an iterator on the
8511 stack.
8512 (pop_it): Restore it.
8513 (face_before_or_after_it_pos): Handle the case that the string or
8514 buffer is unibyte.
8515 (get_overlay_strings): Set the multibyte flag of the iterator if
8516 the new overlay string is multibyte.
8517 (get_glyph_property): Likewise.
8518 (get_next_display_element): Don't check for charset changes in
8519 unibyte text.
8520 (append_space): Compute face differently for unibyte text.
8521 (extend_face_to_end_of_line): Don't return quickly if face has
8522 stipple.
8523
8524 * xfaces.c (load_face_font_or_fontset): Store registry and
8525 encoding of the font in the registry member of the face.
8526 (make_realized_face): Additional parameter `registry'.
8527 (free_realized_face): Free the registry of a realized face.
8528 (face_suitable_for_charset_p): Function form of the macro
8529 with the same name in uppercase.
8530 (lookup_face): Use Vx_unibyte_registry_and_encoding if charset < 0.
8531 (choose_face_font): New parameter unibyte_registry.
8532 (choose_face_fontset_font): Ditto.
8533 (realize_default_face): Remember the registry and encoding of
8534 the specified frame font in Vx_unibyte_registry_and_encoding.
8535 (face_at_buffer_position): Handle unibyte.
8536 (face_at_string_position): Likewise.
8537 (realize_face): New parameter unibyte_registry.
8538 (compute_char_face): Handle the unibyte case.
8539
8540 * dispextern.h (struct glyph): Add bit multibyte_p.
8541 (struct face): New member registry holding the registry and
8542 encoding of the X font of the face.
8543 (FACE_UNIBYTE_P): Value is non-zero if face is for unibye text.
8544 (enum face_id): Add BASIC_FACE_ID_SENTINEL.
8545 (FACE_SUITABLE_FOR_CHARSET_P): Handle charset < 0 meansing unibyte
8546 text.
8547 (struct iterator_stack_entry): Add multibyte_p.
8548
8549 * xdisp.c (string_pos): Use string_char_to_byte.
8550 (char_charset): Removed.
8551
8552 1998-08-03 Gerd Moellmann <gerd@gnu.org>
8553
8554 * xterm.c (x_draw_image_glyph_string_foreground): Draw a
8555 rectangle for a block cursor over an image without a mask.
8556 (x_stretch_block_cursor): Added. Non-zero means don't draw
8557 a block cursor over a stretch as wide as that stretch.
8558 (x_draw_stretch_glyph_string): Use it.
8559 (x_draw_hollow_cursor): Ditto.
8560
8561 * minibuf.c (read_minibuf): Use minibuf_prompt instead of prompt.
8562 (read_minibuf): Add front-sticky text property for prompt.
8563
8564 * xdisp.c (char_charset): Return charset of a character,
8565 depending on whether or not multi-byte characters are enabled.
8566
8567 * xfaces.c (Fset_face_charset_registry): Removed.
8568 (x_charset_registry): Determine registry from charset plist.
8569
8570 1998-08-02 Gerd Moellmann <gerd@gnu.org>
8571
8572 * xdisp.c (get_next_display_element): Don't check for charset
8573 changes if multi-byte characters are not enabled.
8574
8575 * xdisp.c (echo_area_display): Use the flush function from the
8576 redisplay interface.
8577 * keyboard.c (detect_input_pending_run_timers): Likewise.
8578
8579 * dispextern.h (produce_*glyphs_hook): Removed.
8580 * term.c (produce_*glyphs): Ditto.
8581 (cursor_to): Remove pixel position parameters.
8582
8583 * dispnew.c: Remove hooks for window-based redisplay, introduce
8584 a redisplay interface structure.
8585
8586 * xterm.c (x_per_char_metric): Return default char metrics if per
8587 char metric exists but contains a zero width. Adobe Courier seems
8588 to contain such characters.
8589
8590 * xdisp.c (compute_line_metrics): Compute the width of rows
8591 without stopping at glyphs with zero width.
8592
8593 1998-08-01 Gerd Moellmann <gerd@gnu.org>
8594
8595 * xdisp.c (display_mode_line): If nothing was displayed at all,
8596 display a space.
8597 (hscroll_window_tree): Don't subtract 1 from target point if equal
8598 to ZV and window is not the selected window.
8599
8600 * dispnew.c (check_matrix_invariants): Remove check for window
8601 start at BEGV or after newline. This happens in rare cases
8602 intentionally.
8603
8604 1998-07-31 Gerd Moellmann <gerd@gnu.org>
8605
8606 * xfaces.c (x_charset_registry): Use STRING_BYTES.
8607 (syms_of_xfaces): Add Vface_default_registry.
8608 (x_charset_registry): Use it.
8609
8610 * xdisp.c (run_window_scroll_functions): Run window scroll functions.
8611 (redisplay_window): Use it.
8612
8613 * dispnew.c (update_text_area): Handle lbearing of deleted text
8614 by backing up one character.
8615
8616 1998-07-30 Gerd Moellmann <gerd@gnu.org>
8617
8618 * dispnew.c (adjust_glyph_matrix): Use a different check to
8619 decide to do nothing.
8620
8621 * xfaces.c (face_at_string_position): Additional parameter
8622 mode_line_p. If non-zero, merge with the mode line face
8623 instead of the default face.
8624 * dispextern.h (struct it): Add mode_line_p.
8625 * xdisp.c (init_iterator): Set it.
8626 (compute_face_in_string): Use it.
8627 (face_before_or_after_it_pos): Handle strings.
8628 (get_next_display_element): Don't look for relief end in C strings.
8629 (next_element_from_string): Deliver string position instead of
8630 buffer position.
8631
8632 * xterm.c (x_flush): Flush X output buffer.
8633 (XTflash): Use it.
8634
8635 * xfaces.c (lface_from_face_name): Renamed from lface_from_symbol.
8636 Allow strings as face names.
8637
8638 * xfns.c (forall_images_in_image_cache): Check that frame is
8639 alive.
8640
8641 * widget.c (EmacsFrameDestroy): Remove call to free_frame_faces;
8642 it's also called from x_destroy_window. Since this function is
8643 called from X, freeing stuff allocated with xmalloc is dangerous
8644 here, anyway.
8645
8646 * xfaces.c (free_realized_faces): Don't clear current matrices
8647 of a frame being destroyed.
8648
8649 * frame.c (make_frame): Call set_window_buffer instead of
8650 Fset_window_buffer.
8651
8652 * window.c (set_window_buffer): Extracted from Fset_window_buffer,
8653 with an additional argument specifying whether or not hooks may
8654 be called.
8655 (Fset_window_buffer): Call it.
8656
8657 * dispnew.c (clear_desired_matrices): Check that frame has
8658 a valid root window before clearing matrices in the window tree.
8659 (clear_current_matrices): Ditto.
8660 (clear_window_matrices): If GLYPH_DEBUG, check that hchild and
8661 vchild are valid windows if not nil.
8662
8663 * xfaces.c (merge_face_vector_with_property): Allow :reverse-video
8664 for :inverse-video.
8665 (Finternal_set_lisp_face_attribute): Ditto.
8666 (Finternal_set_lisp_face_attribute_from_resource): Ditto.
8667 (Finternal_get_lisp_face_attribute): Ditto.
8668 (Finternal_lisp_face_attribute_values): Ditto.
8669 (syms_of_xfaces): Define the symbol `:reverse-video'.
8670
8671 * xdisp.c (get_glyph_property): Renamed from
8672 fill_iterator_from_glyph_property.
8673 (next_element_from_buffer): Handle case that no `glyph' property
8674 was found correctly.
8675 (display_line): Extend face to end of line only if we have faces.
8676
8677 1998-07-29 Gerd Moellmann <gerd@gnu.org>
8678
8679 * dispnew.c (Fshow_cursor): Renamed from blink_cursor. Take
8680 additional window argument.
8681
8682 * xdisp.c (reseat_at_previous_visible_line_start): Renamed from
8683 set_iterator_to_previous_visible_line_start.
8684 (reseat_at_next_visible_line_start): Likewise.
8685 (compute_stop_pos): Renamed from set_iterator_stop_pos.
8686 (face_before_or_after_it_pos): Renamed from get_face_at_it_pos.
8687 (compute_face_in_buffer): Renamed from
8688 compute_face_at_iterator_position.
8689 (compute_face_in_string): Renamed from
8690 compute_face_at_iterator_string_position.
8691 (get_space_width): Renamed from get_iterator_space_width.
8692 (next_overlay_string): Renamed from
8693 set_iterator_to_next_overlay_string.
8694 (get_overlay_strings): Renamed from
8695 get_overlay_strings_at_iterator_position.
8696 (restore_overlay_strings): Renamed from
8697 setup_overlay_strings_from_glyph_pos.
8698 (restore_dpvec): Renamed from setup_iterator_dpvec_from_glyph_pos.
8699 (init_from_display_pos): Renamed from init_iterator_from_glyph_pos.
8700 (init_to_row_start): Renamed from init_iterator_to_row_start.
8701 (init_to_row_end): Formerly init_iterator_to_next_row_start.
8702
8703 * xterm.c: Merge with 20.2.97.
8704 (x_produce_glyphs): Use x_append_stretch_glyph for tabs.
8705
8706 * dispextern.h (struct glyph): Replace text_pos position with
8707 simple charpos.
8708
8709 * xdisp.c (this_line_start_pos): Use struct text_pos.
8710 (this_line_end_pos): Renamed from .*endpos; use struct text_pos.
8711 (enum move_it_result): Renamed from move_iterator_result.
8712 (string_pos_nchars_ahead): Compute text_pos in a string from a
8713 known text_pos plus a character delta.
8714 (string_pos): Compute text_pos in string from charpos.
8715 (c_string_pos): Likewise for a C string.
8716 (number_of_chars): Return number of characters in a possibly
8717 multi-byte C string.
8718 (check_it): Renamed from check_iterator. Check that charpos and
8719 bytepos are in sync.
8720 (push_it): Renamed from save_iterator_settings.
8721 (pop_it): Renamed from restore_iterator_settings.
8722 (move_it_.*): Renamed from move_iterator_.*.
8723 (charset_at_position): Take charpos/bytepos into account.
8724 (back_to_previous_line_start): Set iterator to previous line start.
8725 (forward_to_next_line_start): Set iterator to next line start.
8726 (back_to_previous_visible_line_start): Renamed from
8727 move_iterator_previous_visible_line_start.
8728 (set_iterator_to_next_visible_line_start): Handle charpos/bytepos.
8729 (get_face_at_it_pos): Renamed from get_face_from_cursor_pos.
8730 Handle charpos/bytepos.
8731 (compute_face_at_iterator_position): Handle charpos/bytepos.
8732 (compute_face_at_iterator_string_position): Likewise.
8733 (get_iterator_space_width): Likewise.
8734 (load_overlay_strings): Likewise.
8735 (get_overlay_strings_at_iterator_position): Likewise.
8736 (reseat_iterator): Take a text_pos position argument.
8737 (setup_iterator_overlay_strings_from_glyph_pos): Handle charpos/
8738 bytepos.
8739 (init_iterator): Take additional bytepos parameter.
8740 (reseat_iterator_to_string): Handle charpos/bytepos.
8741 (start_display): Take a text_pos parameter. Handle charpos/bytepos.
8742 (next_element_from_string): Handle charpos/bytepos.
8743 (next_element_from_c_string): Likewise.
8744 (fill_iterator_from_glyph_property): Likewise.
8745 (next_element_from_buffer): Likewise.
8746 (set_iterator_to_next): Increment charpos and bytepos of an iterator.
8747 (move_iterator_in_display_line_to): Handle charpos/bytepos.
8748 (move_it_to): Likewise.
8749 (move_it_vertically_backward): Likewise.
8750 (move_it_vertically): Likewise.
8751 (move_it_by_lines): Likewise.
8752 (hscroll_window_tree): Likewise.
8753 (redisplay_internal): Likewise.
8754 (set_cursor_from_row): Likewise.
8755 (redisplay_window): Likewise.
8756 (try_window): Take a text_pos parameter. Handle charpos/bytepos.
8757 (try_window_reusing_current_matrix): Handle charpos/bytepos.
8758 (get_first_unchanged_at_end_row): Compute and return delta_bytes.
8759 (try_window_id): Handle charpos/bytepos.
8760 (Ftrace_redisplay_toggle): Return Qnil.
8761 (get_overlay_arrow_glyph_row): Handle charpos/bytepos.
8762 (insert_left_trunc_glyphs): Likewise.
8763
8764 * dispnew.c: `Merge' with 20.2.97 (it's really too different to
8765 do a real merge).
8766 (increment_glyph_matrix_buffer_positions): Add parameter delta_bytes.
8767 (increment_glyph_row_buffer_positions): Ditto.
8768 (copy_glyph_row_contents): Ditto.
8769 (check_matrix_invariants): Add additional checks for charpos/
8770 bytepos consistency.
8771 (direct_output_for_insert): Changed for charpos/bytepos.
8772 (buffer_posn_from_coords): Likewise. Put code dealing with
8773 `direction-reversed' in #if 0.
8774
8775 * xterm.h: Merge with 20.2.97.
8776
8777 * frame.h: Merge with 20.2.97.
8778
8779 * window.h: Merge with 20.2.97. Add window_end_bytepos.
8780
8781 * dispextern.h (MATRIX_ROW_START_CHARPOS): Get charpos of a row
8782 start.
8783 (MATRIX_ROW_START_BYTEPOS): Likewise for the byte position.
8784 (MATRIX_ROW_END_CHARPOS): Likewise for the row end.
8785 (MATRIX_ROW_END_BYTEPOS): Likewise for the row end byte position.
8786 (struct it): Various members renamed from .*pos to .*charpos.
8787 (IT_CHARPOS): Access current buffer character position of an
8788 iterator.
8789 (IT_BYTEPOS): Access current buffer byte position of an iterator.
8790 (IT_STRING_CHARPOS): Access current string character position of
8791 an iterator.
8792 (IT_STRING_BYTEPOS): Access current string byte position of
8793 an iterator.
8794 (globally): Add function prototypes from 20.2.97.
8795
8796 * everywhere: Use P_ instead of PROTO for function prototypes
8797 because everyone else seems to use P_.
8798
8799 * dispextern.h (struct text_pos): Structure describing a charpos/
8800 bytepos position in text.
8801 (BYTEPOS): Access the byte position part of a text_pos.
8802 (CHARPOS): Likewise for the character position.
8803 (SET_TEXT_POS): Set a text_pos from a character and byte position.
8804 (INC_TEXT_POS, DEC_TEXT_POS): Increment/decrement a text position.
8805 (SET_TEXT_POS_FROM_MARKER): Set a text_pos from a marker.
8806 (SET_MARKER_FROM_TEXT_POS): Set a marker from a text_pos.
8807 (TEXT_POS_EQUAL_P): Compare two text_pos structures for equality.
8808 (struct display_pos): Renamed from glyph_pos. Use struct text_pos
8809 for buffer and string positions.
8810 (struct glyph): Use text_pos.
8811 (struct it): Renamed from display_iterator. Use text_pos.
8812
8813 1998-07-23 Gerd Moellmann <gerd@gnu.org>
8814
8815 * xfns.c (x_kill_gs_process): Get image colors from XImage of a
8816 pixmap.
8817
8818 1998-07-21 Gerd Moellmann <gerd@gnu.org>
8819
8820 * dispextern.h (struct glyph_row): New flag indicate_zv_line_p.
8821 * xterm.c (x_draw_row_bitmaps): Use it.
8822 * dispnew.c (row_equal_p): Ditto.
8823 (update_window_line): Ditto.
8824
8825 * xfns.c (prepare_image_for_display): Don't set loading_failed_p
8826 flag of images.
8827
8828 * dispextern.h (struct image): Removed member loading_failed_p.
8829 It's probably better to have the chance to try to load an image
8830 again.
8831
8832 1998-07-20 Gerd Moellmann <gerd@gnu.org>
8833
8834 * xterm.c (x_draw_bitmap): Draw bitmap for empty lines ending
8835 at ZV if `indicate-zv-lines' is non-nil.
8836 (x_draw_row_bitmaps): Compute bitmap for `indicate-zv-lines'.
8837
8838 * dispnew.c (row_equal_p): Compare displays_text_p and
8839 ends_at_zv_p flags of rows.
8840 (update_window_line): Ditto.
8841
8842 * buffer.h (struct buffer): New member indicate_zv_lines.
8843
8844 * buffer.c (init_buffer_once): Add default for `indicate-zv-lines'.
8845 (init_buffer_once): New variable `default-indicate-zv-lines'.
8846 (syms_of_buffer): New buffer-local varianle `indicate-zv-lines'.
8847
8848 * xdisp.c (redisplay_window): Don't try moving the cursor
8849 if current glyph row w->last_cursor.vpos isn't enabled.
8850
8851 * xterm.c (bitmap_type): Add ZV_LINE_BITMAP.
8852
8853 * window.c (Fset_window_vscroll): Allow only negative scroll
8854 values. Others don't seem to make sense, and this way it's easy
8855 to restore a vscroll of zero.
8856
8857 * xterm.c (x_inverted_image_mask): Check that pixmap could be
8858 allocated.
8859 (x_draw_image_glyph_string_background): Don't clip if pixmap
8860 could not be created.
8861
8862 * xfns.c (xbm_load_image_from_file): Check that pixmap could
8863 be created.
8864 (xbm_load): Ditto.
8865 (gs_load): Ditto.
8866
8867 * xterm.c (x_get_glyph_overhangs): Take image and stretch
8868 glyphs into account.
8869
8870 * xfaces.c (realize_default_face): Don't set font family of
8871 the default face from the fontset alias name for `fontset-startup'.
8872
8873 * xfns.c (gs_load): Pass frame's pixel foreground and background
8874 color to the Lisp loader.
8875
8876 1998-07-19 Gerd Moellmann <gerd@gnu.org>
8877
8878 * xfns.c (tiff_image_p, tiff_load): Support TIFF images via
8879 libtiff34.
8880
8881 * configure.in (--with-tiff, HAVE_TIFF): Added.
8882
8883 * config.in (HAVE_TIFF): Added.
8884
8885 * Makefile.in (LIBTIFF): Added.
8886
8887 * xfns.c (jpeg_image_p, jpeg_load): Support JPEG images.
8888
8889 * Makefile.in (LIBJPEG): Added.
8890
8891 * xfns.c (resource_types): Enumerators renamed to RES_TYPE_NUMBER,
8892 RES_TYPE_BOOLEAN etc. because of conflict of `boolean' with
8893 jpeglib.h.
8894
8895 * configure.in (HAVE_JPEG, --with-jpeg): Added. On systems
8896 where the library is installed in /usr/local/lib, e.g. FreeBSD,
8897 configure must be run with `--x-includes=/usr/X11R6/include:
8898 /usr/local/include --x-libraries=/usr/X11R6/lib:/usr/local/lib'.
8899
8900 1998-07-18 Gerd Moellmann <gerd@gnu.org>
8901
8902 * config.in (HAVE_JPEG): Added.
8903
8904 * xfns.c (ct_init): Initialize color table used to map RGB colors
8905 from images to X pixel colors.
8906 (ct_free): Free color table.
8907 (ct_lookup): Look an RGB color up.
8908 (ct_allocated_colors): Get vector of allocated colors.
8909 (pbm_image_p): Test if image specification is a valid PPM
8910 image specification.
8911 (pbm_scan_number): Scan a decimal ASCII number from a file.
8912 (pbm_load): Load a PPM image.
8913
8914 * window.c (Fset_window_vscroll): Adjust glyph matrix if
8915 necessary. Take canonical character units as parameter.
8916 (Fwindow_vscroll): Return canonical character units.
8917
8918 * dispnew.c (allocate_matrices_for_window_redisplay): Add negative
8919 w->dy to display height for which glyph rows must be allocated.
8920
8921 1998-07-17 Gerd Moellmann <gerd@gnu.org>
8922
8923 * xfaces.c (face_at_string_position): Merge in region face
8924 so that it won't overwrite the font in the region.
8925 (face_at_buffer_position): Ditto.
8926 (realize_basic_faces): Don't realize region face.
8927
8928 * dispextern.h (enum face_id): REGION_FACE_ID removed.
8929
8930 * xterm.c (x_set_glyph_string_background_width): Don't let
8931 cursor face extend to end of line.
8932
8933 * xdisp.c (append_space): If adding space of default face,
8934 make sure glyph ist produced with right face.
8935
8936 * xterm.c (x_clear_glyph_string_rect): Draw a rectangle in the
8937 background color of a glyph string.
8938 (x_draw_glyph_string_background): Call it.
8939 (x_draw_glyph_string_bg_rect): Ditto.
8940 (x_draw_stretch_glyph_string): Ditto.
8941
8942 1998-07-15 Gerd Moellmann <gerd@gnu.org>
8943
8944 * xdisp.c (init_iterator): Initialize it->current_y to the
8945 window's vscroll w->dy.
8946
8947 * window.c (Fwindow_vscroll): Return number of pixels window
8948 is vscrolled smoothly.
8949 (Fset_window_vscroll): Set the number.
8950
8951 * xdisp.c (move_iterator_to): Recognize case MOVE_TO_POS and
8952 to_pos in truncated part of a line.
8953
8954 1998-07-14 Gerd Moellmann <gerd@gnu.org>
8955
8956 * xdisp.c (move_iterator_in_display_line_to): If very first glyph
8957 doesn't fit on the line, truncate it, despite truncate_lines nil.
8958 (display_line): Ditto.
8959
8960 * xfns.c: Experimental support for Ghostscript images.
8961
8962 * xterm.c (x_term_init): Initialize new atoms DONE and PAGE.
8963 (XTread_socket): React on events from Ghostscript.
8964 (expose_frame): If width or height are zero, redraw entire frame.
8965 (XTread_socket): Call expose_frame after receiving event from
8966 Ghostscript.
8967
8968 * xterm.h (struct x_display_info): Add atoms DONE and PAGE
8969 for Ghostscript support.
8970
8971 * xdisp.c (redisplay_internal): Return quickly if called
8972 recursively.
8973
8974 * alloc.c (NSTATICS): Increased to 1024.
8975
8976 1998-07-08 Gerd Moellmann <gerd@gnu.org>
8977
8978 * xterm.c (x_append_stretch_glyph): Append a stretch glyph to an
8979 iterator's glyph row.
8980 (x_produce_stretch_glyph): Call it.
8981 (x_produce_glyphs): Handle `space-width' property; call
8982 x_append_stretch_glyph.
8983
8984 * xdisp.c (syms_of_xdisp): Add symbol `space-width' used as a text
8985 property.
8986 (get_iterator_space_width): Determine value of `space-width'
8987 property at iterator's position.
8988 (reseat_iterator): Call it.
8989 (next_element_from_string): Ditto.
8990 (next_element_from_buffer): Ditto.
8991 (init_iterator): Initialize space_width of iterator.
8992 (redisplay_internal): Don't goto end_of_redisplay if PT hasn't
8993 moved, but cursor blinks.
8994 (redisplay_internal): Set w->last_cursor_off_p after update.
8995
8996 * dispextern.h (enum iterator_prop_idx): Add SPACE_WIDTH_PROP_IDX.
8997 (struct display_iterator): Add new member space_width.
8998
8999 * window.h (struct window): Add last_cursor_off_p.
9000
9001 1998-07-07 Gerd Moellmann <gerd@gnu.org>
9002
9003 * Saved.
9004
9005 * window.c (Fpos_visible_in_window_p): Case window not up to
9006 date---return nil if iterator hasn't reached position.
9007
9008 1998-07-06 Gerd Moellmann <gerd@gnu.org>
9009
9010 * xdisp.c (text_outside_line_unchanged_p): Fix case that
9011 overlays have changed.
9012 (redisplay_window): Case cursor movement. Don't try it if
9013 last_cursor.vpos is out of range.
9014
9015 * xdisp.c (set_cursor_from_row): Set this_line_.* variables. This
9016 way, the display optimization for the line containing the cursor
9017 is used more frequently, esp. when we have a blinking cursor.
9018 (display_line): Don't set this_line_.* variables.
9019
9020 * xterm.c (x_redraw_cursor): Removed.
9021 (x_display_and_set_cursor): Set cursor type depending on
9022 cursor_off_p flag of window.
9023
9024 * dispnew.c (redraw_cursor_hook): Removed.
9025 (Fblink_cursor): Additional parameter on_p to set the cursor_off_p
9026 member of the selected window.
9027
9028 * xfaces.c (Fface_font): Added for compatibility with 20.2.
9029
9030 * xterm.c (x_y_to_hpos_vpos): Return null if not over text.
9031 Return glyph area under x/y.
9032 (note_mouse_highlight): Use x_y_to_hpos_vpos in its new form.
9033
9034 * keyboard.c (detect_input_pending_run_timers): Call gobble_input
9035 after redisplaying.
9036
9037 1998-07-05 Gerd Moellmann <gerd@gnu.org>
9038
9039 * xdisp.c (text_outside_line_unchanged_p): Test if changes
9040 are all outside of a line of text.
9041 (redisplay_internal): Use it.
9042
9043 1998-06-30 Gerd Moellmann <gerd@gnu.org>
9044
9045 * xdisp.c (next_element_from_buffer): After skipping over
9046 invisible text, look for the `glyph' property.
9047 (set_iterator_stop_pos): Ignore check positions in front
9048 of an iterator's current position.
9049
9050 * xterm.c (show_mouse_face): Don't act on rows that don't exist
9051 anymore or which are marked as not having valid contents.
9052
9053 * xfaces.c (Finternal_set_lisp_face_attribute): Don't free
9054 realized faces if new attribute value is equal to old value.
9055
9056 1998-06-29 Gerd Moellmann <gerd@gnu.org>
9057
9058 * xfaces.c (Finternal_make_lisp_face): Increment
9059 lface_id_to_name_size when lface_id_to_name is reallocated.
9060
9061 1998-06-27 Gerd Moellmann <gerd@gnu.org>
9062
9063 * xdisp.c (set_iterator_stop_pos): Compute initial stop_pos
9064 as minimum of endpos and overlay_pos.
9065 (load_overlay_strings): Set next_overlay_pos of iterator to
9066 -1 if we don't have to check for more overlay strings.
9067
9068 1998-05-09 Gerd Moellmann <gerd@gnu.org>
9069
9070 * xdisp.c (set_iterator_to_next_visible_line_start): Don't
9071 do anything if iterator is at ZV because scan_buffer doesn't
9072 work otherwise.
9073
9074 * xterm.c (x_encode_char): Inline it.
9075 (x_get_char_font_and_encoding): Simplified.
9076 (x_per_char_metric): Inline it.
9077
9078 * xterm.c (x_draw_glyph_string_relief): Use clipping.
9079
9080 * xdisp.c (get_next_display_element): Check for end of relief
9081 face moved here from next_element_from_buffer.
9082
9083 * xterm.c (x_produce_image_glyph): Add relief thickness.
9084 (x_produce_stretch_glyph): Ditto.
9085
9086 1998-05-08 Gerd Moellmann <gerd@gnu.org>
9087
9088 * xdisp.c (fill_iterator_from_glyph_property): Handle glyph
9089 property value (space :width WIDTH :height HEIGHT :ascent ASCENT).
9090
9091 * xterm.c (x_produce_stretch_glyph): Produce a stretch glyph
9092 from a glyph property.
9093 (x_produce_glyphs): Use it.
9094
9095 * xdisp.c (set_iterator_to_next): Handle next_element_from_stretch.
9096
9097 * xterm.c (x_produce_image_glyph): Add to current_x only if
9098 in text area.
9099 (x_produce_glyphs): Ditto.
9100
9101 * xdisp.c (display_line): Compute row height from glyphs in
9102 marginal areas.
9103
9104 * xterm.c (x_draw_image_glyph_string_background): Draw
9105 background of an image glyph string.
9106 (x_draw_glyph_string_bg_rect): Draw a rectangular region of
9107 the background of a glyph string.
9108 (x_draw_image_glyph_string_foreground): Draw the foreground of
9109 an image glyph string.
9110 (x_inverted_image_mask): Return the inverted mask of an image.
9111
9112 * xfns.c (x_draw_image): Removed.
9113
9114 * dispextern.h (struct image_type): Remove drawing function.
9115
9116 * xfaces.c (load_face_colors): Swap colors if face is inverse.
9117
9118 * xdisp.c (get_next_display_element): In marginal areas, translate
9119 newlines, tabs, etc. like normal control characters.
9120
9121 * xfaces.c (Fface_color_supported_p): Transpose parameters frame
9122 and color.
9123 (free_realized_faces): Set frame garbaged.
9124
9125 * xfaces.c (syms_of_xfaces): Add defsubr for
9126 internal-lisp-face-attribute-values.
9127
9128 1998-05-07 Gerd Moellmann <gerd@gnu.org>
9129
9130 * xterm.c (x_produce_image_glyph): Don't add glyph if area is
9131 full.
9132 (x_produce_image_glyph): Set IT->nglyphs to 1.
9133 (x_draw_image_glyph_string): Use inverted mask to draw background.
9134
9135 * dispextern.h (struct image_type): Additional clipping rect
9136 parameters for drawing functions.
9137
9138 * xterm.c (x_get_glyph_string_clip_rect): Get clip rect for
9139 a glyph string.
9140 (x_draw_image_glyph_string): Use it and pass the rect to the
9141 image drawing function.
9142
9143 * xdisp.c (fill_iterator_from_glyph_property): Use position of
9144 first character with `glyph' property as image position. Set
9145 iterator back to that position as long as the image hasn't been
9146 consumed with set_iterator_to_next.
9147 (set_cursor_from_row): Accept when glyph with given position is
9148 not found in the row. Set cursor x to end of line in that case,
9149 so that we can hscroll.
9150 (redisplay_internal): Correct computation of delta by which
9151 positions have changed in redisplay optimization for cursor
9152 row of selected window.
9153
9154 * xdisp.c (display_line): Remove start_pos.
9155 (display_line): Fix bug preventing display optimization for
9156 cursor line of selected window.
9157 (next_element_from_buffer): Avoid XSETBUFFER, use it->w->buffer
9158 instead.
9159
9160 * dispnew.c (update_text_area): Use GLYPH_EQUAL_P.
9161 (update_text_area): Take glyph pixel width into account
9162 when trying to find a resync point.
9163 (row_equal_p): Compare glyphs in all areas.
9164
9165 1998-05-06 Gerd Moellmann <gerd@gnu.org>
9166
9167 * xterm.c (x_produce_glyphs): Don't add glyph if area is full.
9168
9169 * dispextern.h (struct glyph_row): Use unsigned hash value.
9170
9171 * xdisp.c (display_line): Simplified and made faster by setting
9172 the cursor with set_cursor_from_row.
9173 (set_cursor_from_row): Handle rows of desired matrix.
9174
9175 1998-05-05 Gerd Moellmann <gerd@gnu.org>
9176
9177 * xdisp.c (set_cursor_from_row): Don't put cursor on glyphs
9178 with type != CHAR_GLYPH.
9179 (fill_iterator_from_glyph_property): Return void. Set
9180 method to next_element_from_image.
9181 (next_element_from_image): Dummy function for delivering a
9182 single image id.
9183 (set_iterator_to_next): Add method next_element_from_image.
9184 (redisplay_window): When recentering, and cursor vpos is -1
9185 after display, assume middle of window is in first line displayed
9186 in window, and display again.
9187 (fill_iterator_from_glyph_property): Assign image glyph
9188 the position of the first character having the glyph property.
9189
9190 * dispextern.h (IMAGE_ASCENT): Compute ascent of image.
9191 * xfns.c (x_draw_image): Use it.
9192 * xterm.c (x_produce_image_glyph): Use it.
9193
9194 * xterm.c (x_produce_image_glyph): Set iterator's pixel_width.
9195
9196 * Makefile.in: Extraneous #define of LIBXPM removed.
9197
9198 * xterm.c (x_produce_glyphs): Produce a STRETCH_GLYPH for tabs.
9199 (x_fill_stretch_glyph_string): Fill a glyph string from a
9200 stretch glyph.
9201 (x_compute_glyph_string_overhangs): Compute overhangs only
9202 for text glyph strings.
9203 (x_draw_stretch_glyph_string): Draw a stretch glyph string.
9204 (x_draw_glyph_string): Call it.
9205
9206 * dispextern.h (glyph_type): Add STRETCH_GLYPH.
9207 (struct glyph): Add sub-structure for stretchable glyphs.
9208 (GLYPH_EQUAL_P): Compare glyph type and u.val.
9209
9210 * xdisp.c (get_overlay_arrow_glyph_row): Put face code into
9211 #ifdef HAVE_FACES.
9212
9213 * xterm.c (x_produce_glyphs): Use ASCII face for spaces of a TAB.
9214
9215 * xdisp.c (fill_iterator_from_glyph_property): Renamed from
9216 setup_iterator_from_glyph_property. Don't do it for terminal
9217 frames.
9218
9219 * xterm.c (x_produce_image_glyph): Produce glyph for image
9220 that can't be loaded.
9221
9222 * xfns.c (lookup_image): If image can't be loaded, set its
9223 width and height so that we can draw a rectangle.
9224 (x_draw_image): Draw a rectangle for images that don't have
9225 a pixmap.
9226 (make_image): Set hash value.
9227 (image_spec_equal_p): Use image_spec_value.
9228
9229 * xterm.c (expose_frame): Don't try to redraw if basic faces
9230 haven't benn realized yet.
9231 (x_draw_image_glyph_string): Fill background only if image
9232 is not as tall as row.
9233
9234 1998-05-04 Gerd Moellmann <gerd@gnu.org>
9235
9236 * Makefile.in (LIBXPM): If not already defined, define to -lXpm.
9237 (LIBX)[HAVE_X11]: Add LIBXPM.
9238
9239 * xfns.c (xpm_image_p): Implementation of image type functions
9240 for XPM.
9241 (xpm_load): Ditto.
9242
9243 * dispextern.h (struct image): Add mask pixmap for XPM.
9244
9245 * xfns.c (x_draw_image): Handle images with masks.
9246
9247 * configure.in: --with-xpm added. Code detecting -lXpm added.
9248
9249 * config.in: Add HAVE_XPM.
9250
9251 * xfns.c (xbm_draw): Removed.
9252 (x_draw_image): Default implementation for drawing images.
9253 (xbm_keyword_index): Remove XBM_DEPTH.
9254 (xbm_format): Remove `:depth'.
9255 (xbm_image_spec_from_file): Removed to reduce consing.
9256 (xbm_load_image_from_file): Added for the same reason.
9257
9258 * xterm.c (x_fill_image_glyph_string): Don't set ybase of
9259 glyph string.
9260 (x_draw_image_glyph_string): Pass ybase to image draw function.
9261
9262 * xfns.c (make_image): Set default baseline.
9263
9264 * xterm.c (x_produce_image_glyph): Compute ascent of image
9265 from its height and baseline percentage.
9266
9267 * xfns.c (xbm_keyword_index): Add XBM_BASELINE.
9268 (xbm_format): Add description for `:baseline'.
9269 (xbm_image_spec_from_file): Add keywords from original spec to
9270 result.
9271 (xbm_load): Set baseline of image.
9272 (xbm_image_p): Check range for baseline.
9273
9274 * dispextern.h (struct image): Add member baseline.
9275
9276 * xdisp.c (dump_glyph_matrix): Handle image glyphs.
9277
9278 * term.c (produce_glyphs): Change assertion to allow DISP_IMAGE.
9279
9280 * xdisp.c (get_next_display_element): Do character translations
9281 only if delivering characters.
9282
9283 1998-05-03 Gerd Moellmann <gerd@gnu.org>
9284
9285 * dispextern.h (ITERATOR_AT_END_OF_LINE_P): Test for
9286 DISP_CHARACTER.
9287
9288 * xterm.c (x_produce_image_glyph): Poduce image glyphs.
9289 (x_produce_glyphs): Call x_produce_glyphs for DISP_IMAGE.
9290
9291 1998-05-02 Gerd Moellmann <gerd@gnu.org>
9292
9293 * xfns.c (prepare_image_for_display): Set image timestamp.
9294 (clear_image_cache): Clear images if image's timestamp +
9295 Vimage_eviction_seconds is > now.
9296 (syms_of_xfns): New variables image-eviction-seconds, and
9297 image-types.
9298 (add_image_format): Add to image-types.
9299 (xbm_load): Support new image spec format.
9300 (x_alloc_image_color): Allocate a color for an image.
9301
9302 * dispextern.h (struct image): Add timestamp.
9303
9304 * xfns.c (xbm_image_p): Allow bool-vectors, vectors of strings and
9305 vectors of bool-vectors.
9306 (xbm_lisp_object_from_file): Build new format image spec.
9307
9308 1998-05-01 Gerd Moellmann <gerd@gnu.org>
9309
9310 * xfaces.c (init_frame_faces): Initialize image cache.
9311 (free_frame_faces): Free it.
9312
9313 * xterm.c (x_delete_display): Don't free image cache.
9314
9315 * emacs.c (main): Call init_xfns.
9316
9317 1998-04-30 Gerd Moellmann <gerd@gnu.org>
9318
9319 * alloc.c (mark_object): Mark objects in image cache.
9320
9321 * xfns.c (x_set_internal_border_width): Correct call to
9322 widget_store_internal_border_width.
9323
9324 * widget.c (widget_store_internal_border): Return void.
9325
9326 * xfns.c (x_destroy_bitmap): Use xfree instead of free. Return
9327 void.
9328 (init_x_parm_symbols): Return void.
9329 (x_report_frame_params): Ditto.
9330 (x_set_border_pixel): Ditto.
9331 (syms_of_xfns): Ditto.
9332 (x_destroy_all_bitmaps): Use xfree instead of free.
9333
9334 * xterm.h (FRAME_X_IMAGE_CACHE): Access the image cache of a frame.
9335
9336 * xterm.c (x_term_init): Initialize image_cache of display info.
9337 (x_delete_display): Free image cache.
9338
9339 * xterm.h (struct x_display_info): Add image_cache.
9340
9341 * xfns.c (make_image_cache): Allocate a new image cache.
9342 (free_image_cache): Free an image cache.
9343 (make_image): Allocate an image.
9344 (free_image): Free an image.
9345
9346 * dispextern.h (struct image): Structure describing an image.
9347 (struct image_cache): Structure describing an image cache.
9348
9349 1998-04-29 Gerd Moellmann <gerd@gnu.org>
9350
9351 * xdisp.c (check_iterator_glyph_property): Return int. Value is
9352 non-zero if iterator is filled with something to return.
9353 (next_element_from_buffer): Immediately return if
9354 setup_iterator_from_glyph_prop has filled iterator with pixmap.
9355 (next_element_from_string): Likewise.
9356
9357 * xfaces.c (load_pixmap): Allow to pass null for W_PTR and H_PTR.
9358
9359 * dispextern.h (struct glyph): Add pixmap_id.
9360 (display_element_type): Add DISP_PIXMAP.
9361
9362 * xmenu.c (popup_get_selection): Use xmalloc/xfree instead of
9363 malloc/free.
9364
9365 * xfaces.c (clear_font_table): Free fonts not used by fontsets.
9366 (clear_face_cache): Call it.
9367
9368 * xterm.c (x_query_font): Don't look at empty font table slots.
9369 (x_compute_min_glyph_bounds): Likewise.
9370 (x_term_init): Initialize font_table to null.
9371 (x_load_font): Change allocation of font_info structures so
9372 that it is possible to free fonts.
9373
9374 * xfns.c (Fx_close_connection): Use xfree instead of free.
9375 Only free fonts from filled font table entries.
9376
9377 * xfaces.c (best_matching_font): Support use of scalable fonts.
9378 (Fface_scalable_fonts_mode): Toggle use of scalable fonts.
9379
9380 * xterm.h (struct x_display_info): Remove screen_dpi, add resx
9381 and resy.
9382 * xterm.c (x_term_init): Compute resx and resy.
9383
9384 * xfaces.c (split_font_name): Don't reject scalable fonts.
9385
9386 * xterm.c (x_list_fonts): Set code exclusing scalable fonts
9387 in #if 0.
9388
9389 * xfaces.c (xlfd_point_size): Return 0 for fonts whose real
9390 point size cannot be determined.
9391
9392 * xterm.h (FRAME_SMALLEST_CHAR_WIDTH): Return smallest character
9393 width over all fonts on a frame.
9394 (FRAME_SMALLEST_FONT_HEIGHT): Likewise for font height.
9395 * dispnew.c (adjust_frame_glyphs_for_window_redisplay): Use these
9396 macros.
9397
9398 * xterm.c (x_font_min_bounds): Moved here from xfaces.c.
9399 (x_compute_min_char_bounds): Formerly min_char_bounds in xfaces.c.
9400 (x_load_font): Use x_compute_min_char_bounds.
9401
9402 * xterm.h (struct x_display_info): New members smallest_char_width
9403 and smallest_font_height.
9404
9405 1998-04-28 Gerd Moellmann <gerd@gnu.org>
9406
9407 * dispextern.h (PREPARE_FACE_FOR_DISPLAY): Call function with
9408 the same name if GC of face is zero.
9409
9410 * dispextern.h (struct face): Member non_ascii_gc removed.
9411
9412 * xterm.c (x_get_char_font_and_encoding): Return face's font
9413 for characters < 0177 in default face. Prepare face for
9414 display before returning it.
9415 (x_produce_glyphs): Use it->charset.
9416 (x_get_char_font_and_encoding): Simplified.
9417 (x_encode_char): Remove parameter `font'.
9418
9419 * xfaces.c (choose_face_font): If registry from charset symbol
9420 doesn't contain a `-', make it a pattern by appending "*-*".
9421
9422 * xdisp.c (check_iterator_glyph_property): Adjust limit for
9423 glyph_check_pos computation to character boundary.
9424
9425 1998-04-27 Gerd Moellmann <gerd@gnu.org>
9426
9427 * fontset.h (FONT_INFO_FROM_ID): Return null if ID is invalid.
9428
9429 * xfaces.c (ascii_face_of_lisp_face): Get the id of the realized
9430 ASCII face for a given Lisp face id.
9431
9432 * xdisp.c (set_iterator_stop_pos): Take glyph_check_pos into
9433 account.
9434 (reseat_iterator): Set glyph_check_pos. Handle case where
9435 new position is < original position.
9436 (check_iterator_glyph_property): Handle glyph property in strings.
9437 (next_element_from_string): Call above function.
9438 (next_element_from_display_vector): Handle faces in glyphs.
9439 (get_next_display_element): Set face_id of glyphs for
9440 control chars to zero.
9441
9442 * Makefile.in (term.o): Add dependency on dispextern.h.
9443
9444 * xdisp.c (syms_of_xdisp): Add symbol `glyph'.
9445 (display_line): Handle marginal areas.
9446 (move_iterator_in_display_line_to): Likewise.
9447
9448 * xfaces.c (Finternal_make_lisp_face): Assign Lisp faces an id.
9449
9450 * xfaces.c (face_at_buffer_position): Don't merge with nil
9451 text property.
9452 (face_at_string_position): Ditto.
9453
9454 * dispextern.h (struct display_iterator): Use a stack of saved
9455 values instead of saving check positions etc. individually.
9456
9457 * xdisp.c (set_iterator_to_next): If end of Lisp string reached,
9458 maybe pop the iterator's stack.
9459 (save_iterator_settings): Push a value on iterator's stack.
9460 (get_overlay_strings_at_iterator_position): Use it.
9461 (restore_iterator_settings): Pop the stack.
9462 (set_iterator_to_next_overlay_string): Use it.
9463
9464 * xfaces.c (try_font_list): Use alternative font families.
9465
9466 1998-04-26 Gerd Moellmann <gerd@gnu.org>
9467
9468 * xfaces.c (Fset_face_font_sort_order): Set the order in which
9469 font selection matches fonts.
9470 (Fface_font_sort_order): Return the font sort order.
9471 (best_matching_font): Find best matching font based on sort order.
9472 (cmp_font_names): Sort by given sort order.
9473
9474 * dispextern.h (struct display_iterator): New member faces_p.
9475 * xdisp.c (init_iterator): Initialize it->faces_p.
9476 (compute_face_at_iterator_string_position): Use it.
9477 (compute_face_at_iterator_position): Use it.
9478 (init_iterator): Use it.
9479 (display_mode_line): Ditto.
9480
9481 * xdisp.c (get_next_display_element): Put code choosing a face
9482 when the charset changes in #ifdef HAVE_FACES.
9483
9484 * dispextern.h (FACE_FOR_CHARSET): Replacement for function
9485 lookup_face_for_charset.
9486
9487 * xfaces.c (free_font_names): Renamed from free_split_font_names.
9488 (free_all_realized_faces): Renamed from remove_all_realized_faces.
9489
9490 1998-04-25 Gerd Moellmann <gerd@gnu.org>
9491
9492 * xfaces.c (best_matching_font): Return the name of the best
9493 matching font in an array of font_name structures.
9494 (choose_face_font): Use it.
9495 (choose_face_fontset_font): Use it.
9496 (find_best_weight_font): If final font found has same weight as
9497 the font we started with, return the original font because it is a
9498 better match for the resolution of the display.
9499 (find_best_slant_font): Likewise.
9500 (merge_face_vector_with_property): Check more invalid attribute
9501 values.
9502 (lface_suitable_for_charset_p): Replaced by a macro with the same
9503 name in upper-case.
9504
9505 1998-04-24 Gerd Moellmann <gerd@gnu.org>
9506
9507 * dispextern.h (struct face): Member
9508 fontset_chosen_for_realization_p removed.
9509
9510 * xfaces.c (cache_face): If face->fontset >= 0, add face to the
9511 end of the collision list, so that we find more specific faces
9512 first.
9513 (lookup_face_for_charset): Look up a new face if face->fontset >=
9514 0, and charset != CHARSET_COMPOSITION.
9515
9516 * xfaces.c (split_font_name): Return zero if point size of font
9517 couldn't be computed.
9518 (realize_default_face): Use ASCII font of a fontset to determine
9519 font-related attributes of the default face.
9520 (face_fontset): Return fontset id for face family.
9521 (font_list): Additional parameter font_pattern. If non-nil,
9522 return fonts matching that pattern.
9523
9524 1998-04-23 Gerd Moellmann <gerd@gnu.org>
9525
9526 * xfaces.c (choose_face_fontset): If new fontset cannot be
9527 constructed, or fontset name cannot be split, return the id of the
9528 standard fontset.
9529
9530 * xterm.c (XTframe_up_to_date): Check that frame is an X frame.
9531 When Emacs starts, it may be called for the initial frame which
9532 isn't an X frame.
9533
9534 * dispextern.h (struct face): New members foreground_defaulted_p,
9535 background_defaulted_p.
9536 (struct face): Members `mask' and `cache' removed.
9537
9538 * xfaces.c (load_color): Set them.
9539 (free_face_colors): Check them.
9540 (xlfd_point_size): Return -1 if resolution or point size of
9541 font unknown.
9542
9543 * xfaces.c (free_font): Removed.
9544 (load_face_font_or_fontset): Renamed from load_font.
9545 (load_face_font_or_fontset): Use message2 instead of signalling.
9546 (load_color): Likewise.
9547 (load_pixmap): Likewise.
9548
9549 * xterm.h (struct x_display_info): Add screen_dpi.
9550 * xterm.c (x_term_init): Initialize it.
9551 * xfaces.c (xlfd_point_size): Use it.
9552 (split_font_name): Compute numeric XLFD_RESY.
9553 (cmp_font_names): Make fonts with an y-resolution more
9554 similar to that of the frame appear first in the result.
9555
9556 * xfaces.c (cache_face): If fontset_chosen_for_realization_p
9557 is set for the face to cache, add it to the end of the collision
9558 list.
9559 (try_font_list): If fonts for given family and registry cannot
9560 be found, first try to keep the registry, and choose a different
9561 family.
9562 (choose_face_font): Allow nfonts == 0.
9563 (try_font_list): Give up if no font matches given registry.
9564
9565 1998-04-22 Gerd Moellmann <gerd@gnu.org>
9566
9567 * xterm.c (x_get_char_font_and_encoding): Get font_info from
9568 font info id of the face.
9569
9570 * xfaces.c (load_font): Set font_info_id.
9571 (realize_face): Ditto.
9572
9573 * dispextern.h (struct face): Change member font_info to
9574 font_info_id.
9575
9576 * fontset.h (FONT_INFO_ID): Build an ID from a font_info pointer.
9577 (FONT_INFO_FROM_ID): Get a font_info pointer from an ID.
9578
9579 * xdisp.c (extend_face_to_end_of_line): If IT's current charset
9580 isn't ASCII, get the ASCII face before adding a space.
9581 (append_space): Likewise.
9582 (insert_left_trunc_glyphs): Initialize truncate_it's charset
9583 to -1 so that it will compute the right face for the truncation
9584 glyphs.
9585
9586 * xfaces.c (realize_face): Set
9587 face->fontset_chosen_for_realization_p.
9588 (lookup_face_for_charset): If fontset wasn't specified originally
9589 and new charset != CHARSET_COMPOSITION, get a new face for that
9590 charset.
9591
9592 * dispextern.h (struct face): New member
9593 fontset_chosen_for_realization_p_specified_p. Set to 1 when
9594 realize_face has chosen a fontset to display composite characters
9595 for a Lisp face not specifying a fontset.
9596
9597 * xdisp.c (extend_face_to_end_of_line): Move tests for default
9598 face and line already filled here. Don't do anything if current
9599 face hasn't a relief or has a background equal to the frame
9600 background.
9601
9602 * xfaces.c (split_font_name): Additional parameter numeric_p.
9603 Don't compute numeric values if it is non-zero.
9604 (choose_face_fontset): Call split_font_name with numeric_p == 0.
9605 (choose_face_fontset): Print a message if fontset contains a
9606 font whose name cannot be split into fields.
9607
9608 1998-04-21 Gerd Moellmann <gerd@gnu.org>
9609
9610 * xfaces.c (try_font_list): Try to load a list of fonts,
9611 possibly using less restrictive patterns.
9612 (choose_face_font): Use it.
9613
9614 * xterm.c (x_get_char_font_and_encoding): For charset !=
9615 CHARSET_ASCII use font_info of face if face hasn't a fontset set.
9616
9617 * dispextern.h (struct face): New member font_info.
9618
9619 * xfaces.c (load_font): Use FS_LOAD_FONT to load fonts for faces
9620 specifying a fontset as well as those not having a fontset.
9621 (free_font): Make it empty.
9622 (realize_face): Use changed load_font.
9623
9624 * xterm.c (x_get_char_font_and_encoding): If face doesn't
9625 fit for charset, get the right one.
9626
9627 * xfaces.c (load_font): Take frame and name parameter, return
9628 font.
9629 (free_font): Likewise.
9630 (split_font_name): Compute numeric values for height, swidth etc.
9631 (cmp_font_names): Use them.
9632 (find_best_width_font): Ditto.
9633 (find_best_height_font): Ditto.
9634 (find_best_weight_font): Ditto.
9635 (find_best_slant_font): Ditto.
9636 (lface_hash): Add weight, slant, swidth and relief to hash value.
9637 (lface_equal_p): Make it faster.
9638 (lface_from_symbol): Use assq_no_quit.
9639 (Fnote_default_face_changed): Removed.
9640 (cmp_font_names): Use strcmp instead of xstricmp.
9641 (face_charset_registries): Removed.
9642
9643 1998-04-20 Gerd Moellmann <gerd@gnu.org>
9644
9645 * frame.h (CHECK_FRAME): Give this macro a statement form.
9646 (CHECK_LIVE_FRAME): Ditto.
9647
9648 * xfaces.c (find_best_width_font): Find the best matching font
9649 for a given width.
9650 (find_best_height_font): Likewise for height.
9651 (find_best_weight_font): Likewise for weight.
9652 (find_best_slant_font): Likewise for slant.
9653 (choose_face_font): Use them.
9654 (get_lface_attributes): Always return frame-local face attrs.
9655 (Finternal_merge_in_global_face): Merge local face with
9656 global face attributes.
9657
9658 * xfaces.c (check_lface_attrs, check_lface): Check consistency of
9659 Lisp face attributes.
9660
9661 1998-04-19 Gerd Moellmann <gerd@gnu.org>
9662
9663 * xfaces.c (Finternal_set_lisp_face_attribute): Add :bold
9664 and :italic for compatibility.
9665 (Finternal_set_lisp_face_attribute_from_resource): Handle
9666 :bold and :italic. Handle boolean resource values for
9667 :underline and :italic.
9668
9669 * xfns.c (display_x_get_resource): Make it externally visible.
9670
9671 * xfaces.c (lface_from_symbol): Take a frame as parameter.
9672 If that frame is non-null, return the frame-local face.
9673 (Finternal_make_lisp_face): Additional frame argument.
9674 (lface_attributes): Get face attributes from global and frame-local
9675 definitions.
9676 (Finternal_lisp_face_equal_p): Additional frame argument.
9677 (merge_lisp_face_vector_with_property): Ditto.
9678 (Frealize_basic_faces): Removed.
9679 (Finternal_get_lisp_face_attribute): Additional frame argument.
9680 (Finternal_lisp_face_p): Ditto.
9681 (load_color) [MSDOS]: Removed because it isn't clear how
9682 to do this for MS-DOS.
9683
9684 * xfaces.c (lface_from_symbol): Get global face definition
9685 from face-global-alist.
9686
9687 * xfaces.c (Finternal_set_lisp_face_attribute): Allow `t'
9688 as values for :underline and :inverse-video.
9689 (Finternal_set_lisp_face_attribute): Allow nil values.
9690
9691 1998-04-17 Gerd Moellmann <gerd@gnu.org>
9692
9693 * xfaces.c (Finternal_make_lisp_face): Return Lisp face vector.
9694
9695 * xfaces.c (syms_of_xfaces): Add Vall_faces.
9696 (Finternal_make_lisp_face): Add new face to Vall_faces.
9697
9698 * xdisp.c (echo_area_display): Remove code recomputing faces.
9699 (redisplay_internal): Ditto.
9700 (init_iterator): Do it here.
9701
9702 * xfaces.c (choose_face_font): Check that swidth doesn't change
9703 for subusequent attributes.
9704 (xlfd_point_size): Return int.
9705
9706 * xdisp.c (redisplay_internal, echo_area-display): If realized
9707 faces have been cleared, call recompute_basic_faces.
9708
9709 * xfaces.c (recompute_basic_faces): Free realized faces. Reset
9710 face_attributes_changed_p.
9711 (remove_all_realized_faces): Remove all realized faces on
9712 all frames.
9713 (Finternal_set_lisp_face_attribute): Call remove_all_realized_faces.
9714
9715 * xdisp.c (redisplay_internal): If face attributes have been
9716 changed since the last redisplay, recompute basic faces.
9717 (echo_area_display): Ditto.
9718
9719 * xfaces.c (clear_face_gcs): Renamed from clear_realized_face_cache.
9720
9721 * xfaces.c (min_char_bounds): If face cache not yet present,
9722 don't try to get font dimensions from faces.
9723
9724 * xterm.c (x_frame_mode_line_height): If face cache not present
9725 set, return default height.
9726
9727 * alloc.c (mark_face_cache): Check for null faces. Correct
9728 index bug.
9729
9730 * dispextern.h (struct face): Renamed from struct rface. Member
9731 underline renamed underline_p. Make it a bit-field.
9732
9733 * xfaces.c (init_frame_faces): Allocate face cache.
9734 (free_frame_faces): Free face cache.
9735 (recompute_basic_faces): Realize basic faces only if face cache is
9736 allocated, i.e. after init_frame_faces has been called.
9737
9738 * frame.c (make_frame): Initialze face cache with null.
9739
9740 * xfaces.c (same_size_fonts): Removed.
9741
9742 * xterm.c (x_set_glyph_string_gc): Add post-condition
9743 s->gc != 0.
9744 (x_set_mouse_face_gc): Ditto.
9745 (x_set_mode_line_face_gc): Ditto.
9746
9747 * xfaces.c (realize_default_face): Return int. Value is
9748 zero if frame params don't contain enough information to
9749 realize the default face.
9750 (realize_basic_faces): Ditto.
9751 (init_frame_faces): Realize basic faces.
9752
9753 * xfns.c (x_set_font): First store real font name in frame
9754 parameters, then call recompute_basic_faces.
9755
9756 * xfaces.c (recompute_basic_faces): Call realize_basic_faces.
9757
9758 1998-04-16 Gerd Moellmann <gerd@gnu.org>
9759
9760 * xfaces.c (syms_of_xfaces): Correct calls to defsubr.
9761
9762 * xfns.c (Fx_face_fixed_p): Removed.
9763 (Fx_list_fonts): Moved to xfaces.c.
9764
9765 * xfaces.c (compute_face_at_buffer_pos): Renamed to
9766 face_at_buffer_position. Parameter charset removed; always
9767 compute face for CHARSET_ASCII.
9768 (face_at_string_position): Renamed from
9769 compute_face_at_string_pos. Parameter charset removed; always
9770 compute for CHARSET_ASCII.
9771 (lookup_face_for_charset): Take frame parameter instead of
9772 face_cache.
9773 (lookup_face): Ditto.
9774 (compute_char_face): Renamed from compute_glyph_face.
9775
9776 * xdisp.c (init_iterator): Initialize charset member.
9777 (reseat_iterator_to_string): Ditto.
9778 (get_charset_at_buffer_position): Determine charset at
9779 buffer position in current_buffer.
9780 (reseat_iterator): Call above function.
9781 (compute_face_at_iterator_position): Call
9782 compute_face_at_buffer_pos.
9783 (compute_face_at_iterator_string_position): Call
9784 compute_face_at_string_pos.
9785 (get_face_from_id): Removed.
9786 (get_face_from_cursor_pos): Call compute_face_at_buffer_pos.
9787 Call get_charset_at_buffer_position.
9788 (reseat_iterator): Determine face if charset at pos differs
9789 from iterator's charset.
9790 (reseat_iterator_to_glyph_pos): Removed.
9791
9792 * xfaces.c (compute_face_at_bufpos): Remove parameter charset.
9793 Determine charset from buffer position.
9794 (compute_string_char_face): Renamed to compute_face_at_string_pos.
9795 (compute_face_at_bufpos): Renamed to compute_face_at_buffer_pos.
9796
9797 * dispextern.h (struct display_iterator): Add member charset.
9798
9799 1998-04-15 Gerd Moellmann <gerd@gnu.org>
9800
9801 * xfaces.c (compute_char_face): Removed.
9802
9803 * xdisp.c (get_overlay_arrow_glyph_row): Use compute_glyph_face
9804 with new parameter list.
9805
9806 * xfaces.c (region_face): Removed.
9807 (allocate_face): Removed.
9808 (copy_face): Ditto.
9809 (face_eql): Removed.
9810 (intern_face): Removed.
9811 (clear_face_cache): Removed.
9812 (load_font): Ditto.
9813 (unload_font): Ditto.
9814 (load_color): Ditto.
9815 (unload_color): Ditto.
9816 (new_computed_face): Ditto.
9817 (intern_computed_face): Ditto.
9818 (ensure_face_ready): Ditto.
9819 (merge_faces): Ditto.
9820 (compute_base_face): Ditto.
9821 (merge_face_list): Ditto.
9822 (Fmake_face_internal): Removed.
9823 (Fset_face_attribute_internal): Ditto.
9824 (face_name_id_number): Removed.
9825 (Fframe_face_alist): Ditto.
9826 (Fset_frame_face_alist): Ditto.
9827 (Finternal_next_face_id): Ditto.
9828
9829 * xterm.h (struct x_output): Remove computed_faces, and
9830 param_faces. Remove macros accessing them.
9831
9832 * xfaces.c: Entirely new face implementation added.
9833
9834 1998-04-11 Gerd Moellmann <gerd@gnu.org>
9835
9836 * dispextern.h (struct glyph_pos): Member `bufpos' renamed
9837 `charpos'.
9838
9839 1998-04-10 Gerd Moellmann <gerd@gnu.org>
9840
9841 * xterm.c (x_scroll_bar_move): Clear only regions not covered by
9842 scroll bar window to reduce flickering. Clear entire height.
9843
9844 * xdisp.c (move_iterator_vertically_backward): Set iterator's
9845 current_x and hpos to zero after moving to previous line
9846 start.
9847
9848 1998-04-03 Gerd Moellmann <gerd@gnu.org>
9849
9850 * frame.h (FRAME_FACE_CACHE): Access to a frame's face cache.
9851
9852 * xfaces.c (xlfd_point_size): Compute relative point size of
9853 fonts from font and frame resolution.
9854 (sort_fonts): New function to sort fonts, temporarily setting
9855 font_frame to the frame in effect.
9856 (xlfd_point_size): Take additional frame parameter to be able
9857 to get at the display's resolution.
9858
9859 * xterm.c (x_setup_relief_colors): Use WHITE_PIX_DEFAULT and
9860 BLACK_PIX_DEFAULT.
9861 (x_setup_relief_color): Use FRAME_X_SCREEN instead of default
9862 screen of display.
9863
9864 1998-03-31 Gerd Moellmann <gerd@gnu.org>
9865
9866 * xfaces.c (choose_face_fontset): Instantiate fontsets.
9867
9868 * fontset.h: Add external declarations for Vfontset_alias_alist
9869 and Vglobal_fontset_alist.
9870
9871 * xfaces.c (merge_lisp_face_vector_with_property): Simplified.
9872 (realize_default_face): If frame parameters contain an artificial
9873 font name naming a fontset, set the family of the default face to
9874 the fontset name given by the registry.
9875
9876 * Makefile.in (alloc.o): Add dependency to dispextern.h.
9877
9878 1998-03-22 Gerd Moellmann <gerd@gnu.org>
9879
9880 * alloc.c (mark_object): Add function prototype. Add cast to
9881 Lisp_Object pointer in call to mark_object for symbol names
9882 because this otherwise gives a warning from gcc 2.8.1.
9883 (mark_face_cache): Mark Lisp objects in realized faces.
9884
9885 1998-03-19 Gerd Moellmann <gerd@gnu.org>
9886
9887 * frame.h (struct frame): Add member face_cache.
9888
9889 * alloc.c (mark_object): Mark face cache.
9890 (mark_face_cache): Mark Lisp faces in face cache of frame.
9891
9892 * frame.c (make_frame): Initialize face_cache.
9893 (Fdelete_frame): Free it.
9894
9895 1998-03-18 Gerd Moellmann <gerd@gnu.org>
9896
9897 * xfaces.c: Very first skeleton of functions for face realization,
9898 face merging, face cache etc.
9899
9900 * dispextern.h (struct rface): Realized faces. Will replace
9901 struct face when tested.
9902 (struct face_cache): Realized face caches.
9903
9904 * xdisp.c (init_iterator): Initialize area member of display
9905 iterator.
9906
9907 1998-03-17 Gerd Moellmann <gerd@gnu.org>
9908
9909 * xterm.c (x_append_glyph): Use it->area to store glyphs.
9910
9911 * dispextern.h (struct display_iterator): New member area.
9912
9913 * xterm.c (note_overwritten_text_cursor): Note when the text
9914 cursor of a window is overwritten.
9915
9916 * xdisp.c (set_cursor_from_row): If PT is not found in the
9917 row, display the cursor at the start of the row.
9918
9919 * dispnew.c (direct_output_forward_char): Call
9920 set_cursor_from_row.
9921
9922 * xdisp.c (setup_iterator_overlay_strings_from_glyph_pos): If
9923 position is not in an overlay string, set iterator's position and
9924 method explicitly so.
9925 (set_cursor_from_row): Correct cursor position calculation.
9926 Make it externally visible.
9927 (redisplay_window): Call set_cursor_from_row so that there is only
9928 one place where the cursor position is calculated from a current
9929 row.
9930
9931 * dispextern.h (struct display_iterator): New member
9932 overlay_strings_at_end_processed_p.
9933
9934 * xdisp.c (check_iterator): Perform sanity checks on
9935 display_iterators.
9936 (next_element_from_buffer): Check for overlay strings at ZV.
9937
9938 1998-03-16 Gerd Moellmann <gerd@gnu.org>
9939
9940 * buffer.c (init_buffer_once): Add left_margin_width and
9941 right_margin_width to buffer_local_flags.
9942
9943 * dispnew.c (margin_glyphs_to_reserve): Function computing
9944 number of glyphs to reserve for a marginal area.
9945 (adjust_glyph_matrix): Call it.
9946 (adjust_frame_glyphs_for_frame_redisplay): Return if frame
9947 is not alive.
9948
9949 * window.c (Fset_window_margins): Allow floats.
9950
9951 * buffer.c (syms_of_buffer): Add buffer-local variables
9952 left-margin-width and right-margin-width. Add defaults
9953 default-left-margin-width and default-right-margin-width.
9954
9955 * buffer.h (struct buffer): New members left_margin_width
9956 and right_margin_width.
9957
9958 * window.c (Fset_window_margins): Make window the last and
9959 optional argument.
9960
9961 * xterm.c (x_draw_glyphs): Compute x-positions for rows with
9962 flag no_marginal_areas_p differently.
9963 (x_clear_end_of_line): Ditto.
9964 (x_draw_glyph_string_relief): Compute width of relief differently
9965 for rows with flag no_marginal_areas_p.
9966
9967 * dispnew.c (update_window_line): Update marginal areas only
9968 for rows that don't have no_marginal_areas_p set.
9969
9970 * xdisp.c (display_mode_line): Set row's flag no_marginal_areas_p.
9971 (display_menu_bar): Ditto.
9972
9973 * dispextern.h (struct glyph_row): New member no_marginal_areas_p.
9974
9975 * dispnew.c (adjust_glyph_matrix): Compute glyph pointers for
9976 marginal areas in window-based redisplay.
9977
9978 * dispextern.h (struct glyph_matrix): New members
9979 left_margin_glyphs and right_margin_glyphs.
9980
9981 1998-03-15 Gerd Moellmann <gerd@gnu.org>
9982
9983 * minibuf.c (read_minibuf_unwind): Return Lisp_Object.
9984
9985 * charset.c (non_ascii_char_to_string): Use char type parameters
9986 because the function is used that way from outside. Use unsigned
9987 char internally.
9988
9989 * window.c (change_window_height): Return void.
9990 (make_dummy_parent): Return void.
9991 (init_window_once): Return void.
9992 (syms_of_window): Ditto.
9993 (keys_of_window): Ditto.
9994 (delete_window): Correct return with and without value.
9995
9996 * buffer.c (record_buffer): Return void.
9997
9998 * marker.c (unchain_marker): Return void.
9999
10000 * window.c (unshow_buffer): Return void.
10001 (replace_window): Ditto.
10002 (delete_window): Ditto.
10003
10004 * term.c (delete_glyphs_hook): Void return type.
10005 (ring_bell_hook): Ditto.
10006 (set_terminal_window_hook): Ditto.
10007
10008 * sysdep.c (init_sigio): Return void.
10009
10010 * xterm.c (x_set_window_size): Return void.
10011 (x_calc_absolute_position): Ditto.
10012 (x_set_offset): Ditto.
10013 (x_focus_on_frame): Ditto.
10014 (x_unfocus_frame): Ditto.
10015 (x_make_frame_visible): Ditto.
10016 (x_make_frame_invisible): Ditto.
10017 (x_iconify_frame): Ditto.
10018 (x_destroy_window): Ditto.
10019 (x_wm_set_window_state): Ditto.
10020 (x_wm_set_icon_pixmap): Ditto.
10021 (x_wm_set_icon_position): Ditto.
10022 (x_initialize): Ditto.
10023 (x_error_quitter): Ditto.
10024 (x_destroy_window): Use xfree instead of free.
10025
10026 * keyboard.c (clear_waiting_for_input): Return void.
10027
10028 * xterm.c (x_wm_set_size_hint): Return void.
10029 (x_raise_frame): Ditto.
10030 (refreshicon): Ditto.
10031 (x_error_catcher): Ditto.
10032 (x_clear_errors): Ditto.
10033
10034 * keyboard.c (record_asynch_buffer_change): Return void.
10035
10036 * xterm.c (XTroï