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