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