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