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