(CFLAGS): No need for -D_ANONYMOUS_UNION
[bpt/emacs.git] / src / ChangeLog
CommitLineData
a3d35a39
MB
12000-09-03 Miles Bader <miles@gnu.org>
2
3 * xterm.c (x_alloc_lighter_color_for_widget): New function.
4
d276b0cf
GM
52000-09-02 Gerd Moellmann <gerd@gnu.org>
6
715e84c9
GM
7 * xdisp.c (redisplay_mode_lines): New function.
8 (display_mode_lines): Return number of mode lines displayed.
9 (echo_area_display): Use redisplay_mode_lines to draw garbaged
10 mode lines. Don't temporarily bind redisplay-dont-pause to t.
11
8892f40b
GM
12 * emacs.c, callint.c, doc.c, editfns.c: Remove includes of
13 string.h and strings.h.
14 (index) [HAVE_INDEX]: Add prototype.
15
d276b0cf
GM
16 * unexelf.c (SHT_PROGBITS) [__NetBSD__ && !PT_LOAD]: Don't define.
17 (SHT_MIPS_DEBUG, HDRR) [__NetBSD__ && __mips__]: Define.
18
19 * s/netbsd.h [!NO_C_SOURCE]: Include <signal.h>.
20 (GC_SETJMP_WORKS, GC_MARK_STACK): Define.
21
38404229
GM
222000-09-01 Gerd Moellmann <gerd@gnu.org>
23
24 * lread.c (read1): Accept `?' as symbol constituent, for
25 compatiblity with XEmacs.
26
c0f9ea08
SM
272000-08-31 Stefan Monnier <monnier@cs.yale.edu>
28
29 * regex.h (RE_NO_NEWLINE_ANCHOR): New syntax flag.
30 (struct re_pattern_buffer): Remove newline_anchor.
31 * regex.c: Keep namespace clean for GNU libc by renaming <fun>
32 to __<fun> and using `weak_alias (__<fun>, <fun>)'.
33 (re_max_failures, fail_stack): Use size_t rather than unsigned.
34 (regex_compile): For ^ and $, choose between buffer and line (beg|end)
35 depending on the new RE_NO_NEWLINE_ANCHOR syntax flag.
36 (print_compiled_pattern, re_search_2, mutually_exclusive_p)
37 (re_match_2_internal, re_compile_pattern, re_comp, regcomp):
38 Get rid of references to newline_anchor.
39 (regcomp): Allocate and precompute a fastmap.
40
8c0f83fe
GM
412000-08-31 Gerd Moellmann <gerd@gnu.org>
42
43 * lread.c (openp): GCPRO local variable `filename'.
44
4bb91c68
SM
452000-08-30 Stefan Monnier <monnier@cs.yale.edu>
46
47 * regex.h (struct re_pattern_buffer): Use size_t for used/allocated.
48
49 * regex.c: Merge some changes from GNU libc. Add prototypes.
50 (bcopy, bcmp, REGEX_REALLOCATE, re_match_2_internal):
51 Use memcmp and memcpy instead of bcopy and bcmp.
52 (init_syntax_once): Use ISALNUM.
53 (PUSH_FAILURE_POINT, re_match_2_internal): Remove failure_id.
54 (REG_UNSET_VALUE): Remove. Use NULL instead.
55 (REG_UNSET, re_match_2_internal): Use NULL.
56 (SET_HIGH_BOUND, MOVE_BUFFER_POINTER, ELSE_EXTEND_BUFFER_HIGH_BOUND):
57 New macros.
58 (EXTEND_BUFFER): Use them (to work with BOUNDED_POINTERS).
59 (GET_UNSIGNED_NUMBER): Don't use ISDIGIT.
60 (regex_compile): In handle_interval, return an error rather than try to
61 unfetch the interval if we can't find the closing brace.
62 Obey the RE_NO_GNU_OPS syntax bit.
63 (TOLOWER): New macro.
64 (regcomp): Use it.
65 (regexec): Allocate regs.start and regs.end as one block.
66
5226a931
GM
672000-08-30 Gerd Moellmann <gerd@gnu.org>
68
868dd24b
GM
69 * xdisp.c (echo_area_display): Check display_completed instead
70 of calling detect_input_pending.
71
72 * dispnew.c (update_frame): Only set display_completed here; move
73 the update_begin and update_end calls here from update_frame_1.
74 (update_frame_1): Don't set display_completed here, don't call
75 update_begin/update_end.
76
5226a931
GM
77 * xfaces.c (set_font_frame_param): Use Fmodify_frame_parameters
78 instead of store_frame_param.
79
2a8bd25f
GM
802000-08-29 Gerd Moellmann <gerd@gnu.org>
81
82 * dispnew.c (build_frame_matrix_from_leaf_window): If a row of a
83 desired window matrix hasn't been displayed, use the current row
84 instead. Make sure that only those frame rows are updated for
85 which there exists a corresponding enabled desired row.
86
ba3478d9
MB
872000-08-29 Miles Bader <miles@gnu.org>
88
89 * xfaces.c (default_face_vector): New function.
90 (Finternal_merge_in_global_face): Use it instead of merge_face_vectors.
91
87d0f685
GM
922000-08-29 Gerd Moellmann <gerd@gnu.org>
93
94 * lread.c (openp): Prevent temporary string passed to
95 Ffile_readable_p from being garbage collected.
96
6fa86045
DL
972000-08-28 Dave Love <fx@gnu.org>
98
99 * keymap.c (store_in_keymap): Add `static' to declaration.
100
bb17930d
GM
1012000-08-28 Gerd Moellmann <gerd@gnu.org>
102
103 * emacs.c, callint.c, doc.c, editfns.c
104 (toplevel) [HAVE_STRING_H]: Include string.h.
105 (toplevel) [HAVE_STRINGS_H]: Include strings.h.
106 (index): Remove prototypes which might conflict with non-standard
107 definitions of index/strchr.
108
109 * s/usg5-3.h (index): Define only if not HAVE_INDEX.
110 (rindex): Define only if !HAVE_RINDEX.
111
112 * s/sco5.h (bcopy, bzero, bcmp): Don't define.
113
114 * config.in (HAVE_INDEX, HAVE_RINDEX, HAVE_STRINGS_H): Add undefs.
115
87188200
MB
1162000-08-28 Miles Bader <miles@gnu.org>
117
118 * xfaces.c (merge_face_vectors): Clear TO's :font attribute if
119 made inconsistent by a font-related attribute in FROM.
120 (merge_face_inheritance): Add function comment.
121
41a68aef
KH
1222000-08-28 Kenichi Handa <handa@etl.go.jp>
123
124 * keyboard.c (read_char_minibuf_menu_prompt): Call read_char with
125 the 4th arg (PREV_EVENT) Qt to suppress input method.
126
f7c436c1
SM
1272000-08-27 Stefan Monnier <monnier@cs.yale.edu>
128
0b32bf0e
SM
129 * regex.c: Indent cpp directives and remove parens after `defined'.
130 (PTR_TO_OFFSET, POS_AS_IN_BUFFER): Move to a better place.
131 (ISDIGIT, ISCNTRL, ISXDIGIT) [!emacs]: Remove duplicate definition.
132 (regex_compile): Use RE_FRUGAL instead of RE_ALL_GREEDY.
133 (re_compile_pattern): Use size_t for length.
134 (init_syntax_once): Move to a better place.
135 * regex.h: Merge changes from GNU libc. Indent cpp directives.
136 (RE_FRUGAL): Replaces RE_ALL_GREEDY (inverted meaning).
137
f7c436c1
SM
138 * syntax.c (back_comment): Detect cases where a comment-starter is
139 actually inside another comment as in: /* a // b */ c // d \n.
140 Make it clear that `comstart_pos' is unused for nested comments.
141
142 * keymap.c (store_in_keymap, fix_submap_inheritance): New prototypes.
143 (KEYMAPP): New macro.
144 (Fkeymap_parent, Fset_keymap_parent): Use it.
145 (fix_submap_inheritance): Mark it static.
146 (define_as_prefix, describe_buffer_bindings, describe_command)
147 (describe_translation, describe_map): Complete prototypes.
148
149 * lisp.h (store_in_keymap, fix_submap_inheritance): Remove.
150
151 * keyboard.c (menu_bar_item): Detect duplicate entries for all items
152 to better match the key-lookup behavior.
153
6288c62f
GM
1542000-08-27 Gerd Moellmann <gerd@gnu.org>
155
156 * xfaces.c (lface_fully_specified_p): Handle :inherit.
157 (Finternal_set_lisp_face_attribute): Fix typo in error message.
158
e931344e
EZ
1592000-08-27 Eli Zaretskii <eliz@is.elta.co.il>
160
161 * Makefile.in (dispnew.o, indent.o, fontset.o, minibuf.o)
162 (process.o, scroll.o, sysdep.o): Depend on keyboard.h.
163 (xterm.o): Depend on coding.h
164
d10dfeef
KH
1652000-08-26 Kenichi Handa <handa@etl.go.jp>
166
167 * cmds.c (internal_self_insert): Delete '#ifdef HAVE_FACES' and
168 the corresponding '#endif'.
169
2d73e8d3
MB
1702000-08-26 Miles Bader <miles@gnu.org>
171
172 * dispextern.h (enum lface_attribute_index): Add LFACE_INHERIT_INDEX.
173 * xfaces.c (QCinherit): New variable.
174 (syms_of_xfaces): Initialize it.
175 (LFACE_INHERIT): New macro.
176 (Finternal_get_lisp_face_attribute)
177 (merge_face_vector_with_property)
178 (Finternal_set_lisp_face_attribute): Deal with :inherit attribute.
179 (check_lface_attrs): Allow new types of face height. Check
180 inherit attribute.
181 (CYCLE_CHECK): New macro.
182 (merge_face_inheritance): New function.
183 (merge_face_vectors): Merge inherited faces too. Add F and
184 CYCLE_CHECK arguments.
185 (merge_face_vector_with_property, Finternal_merge_in_global_face)
186 (lookup_named_face, lookup_derived_face, realize_named_face)
187 (face_at_string_position, face_at_buffer_position): Supply
188 new F and CYCLE_CHECK arguments to merge_face_vectors.
189 (merge_face_heights): New function.
190 (merge_face_vectors, merge_face_vector_with_property)
191 (Finternal_set_lisp_face_attribute): Call merge_face_heights to
192 handle relative face heights.
193 (lface_same_font_attributes_p): Compare heights using EQ.
194
6ce974d4
KH
1952000-08-26 Kenichi Handa <handa@etl.go.jp>
196
197 * charset.c (char_to_string): Check the character validity.
198 (char_valid_p): If C is not less than MAX_CHAR, be sure to return
199 0.
200
dc1e502d
SM
2012000-08-25 Stefan Monnier <monnier@cs.yale.edu>
202
203 * regex.c (PUSH_FAILURE_COUNT): New macro.
204 (POP_FAILURE_REG_OR_COUNT): Renamed from POP_FAILURE_REG.
205 Handle popping of a register's or a counter's data.
206 (POP_FAILURE_POINT): Use the new name.
207 (re_match_2_internal): Push counter data on the stack for succeed_n,
208 jump_n and set_number_at and remove misleading dead code in succeed_n.
209
bd9d0f3f
GM
2102000-08-25 Gerd Moellmann <gerd@gnu.org>
211
212 * xdisp.c (redisplay_internal): If considering all windows on all
213 frames, update the display for each frame as soon as possible,
214 instead of first building all desired matrices for all frames, and
215 then updating them all.
216 (try_cursor_movement): Handle case that last_cursor.vpos is -1.
217
aa5b8e15
GM
2182000-08-24 Gerd Moellmann <gerd@gnu.org>
219
17494071
GM
220 * bytecode.c (mark_byte_stack): Add a comment.
221
aa5b8e15
GM
222 * frame.h (FRAME_FLAGS_AREA_COLS, FRAME_FLAGS_AREA_WIDTH)
223 (FRAME_LEFT_FLAGS_AREA_WIDTH): Return 0 unless frame is
224 a graphical frame.
225
c543db81
KH
2262000-08-24 Kenichi Handa <handa@etl.go.jp>
227
d246d5f5
KH
228 * minibuf.c (do_completion): Always use compare-string, not
229 string-equal because the latter doesn't pay attention to
230 multibyteness of strings.
231
c543db81
KH
232 * process.c (create_process): Don't setup raw-text coding here.
233 (Fopen_network_stream): Don't set coding->src_multibyte and
234 coding->dst_multibyte here.
235 (read_process_output): For process filter, return unibyte string
236 if default-enable-multibyte-characters is nil.
237 (send_process): If OBJECT is multibyte text, be sure to encoded it
238 by the specified coding system for the process. Otherwise, setup
239 raw-text coding.
240 (init_process): Don't initialize default-process-coding-system
241 here.
242
9b47cfe0
EZ
2432000-08-23 Eli Zaretskii <eliz@is.elta.co.il>
244
245 * buffer.c (syms_of_buffer) <scroll-up-aggressively>: Doc fix.
246 <scroll-down-aggressively>: Likewise.
247
f5a36960
KH
2482000-08-23 Kenichi Handa <handa@etl.go.jp>
249
250 * coding.c (encode_eol): Fix bug for the case of dst_bytes being
251 zero. Set coding->produced_char correctly.
252
69a7ffa7
AI
2532000-08-22 Andrew Innes <andrewi@gnu.org>
254
255 * makefile.w32-in: New file.
256
257 * unexw32.c (unexec): Ignore old_name, and use the actual location
258 of the current executable instead. Base new_name on this.
259
260 * w32proc.c (create_child): Remove reference to security
261 descriptor, which isn't needed and doesn't compile with mingw32.
262
263 * w32term.c [USE_CRT_DLL]: Remove unnecessary extern, which screws
264 up dllimport attributes.
265 (x_update_window_end): Update prototype.
266
267 * unexec.c (write_segment) [USE_CRT_DLL]: Remove unnecessary
268 extern, which screws up dllimport attributes.
269
270 * sysdep.c [USE_CRT_DLL]: Remove unnecessary extern, which screws
271 up dllimport attributes.
272
273 * strftime.c [USE_CRT_DLL]: Remove unnecessary extern, which
274 screws up dllimport attributes.
275
276 * process.c [USE_CRT_DLL]: Remove unnecessary extern, which screws
277 up dllimport attributes.
278 (create_process) [USE_CRT_DLL]: Remove unnecessary extern, which
279 screws up dllimport attributes.
280
281 * lread.c [USE_CRT_DLL]: Remove unnecessary extern, which screws
282 up dllimport attributes.
283
284 * keyboard.c [USE_CRT_DLL]: Remove unnecessary extern, which
285 screws up dllimport attributes.
286
287 * floatfns.c [USE_CRT_DLL]: Remove unnecessary extern, which
288 screws up dllimport attributes.
289
290 * fileio.c [USE_CRT_DLL]: Remove unnecessary extern, which screws
291 up dllimport attributes.
292
293 * emacs.c (malloc_initialize_hook) [USE_CRT_DLL]: Remove
294 unnecessary extern, which screws up dllimport attributes.
295 (main): Ditto.
296
297 * editfns.c [USE_CRT_DLL]: Remove unnecessary extern, which screws
298 up dllimport attributes.
299
300 * dispnew.c (window_change_signal) [USE_CRT_DLL]: Remove
301 unnecessary extern, which screws up dllimport attributes.
302
303 * callproc.c [USE_CRT_DLL]: Remove unnecessary extern, which
304 screws up dllimport attributes.
305
306 * buffer.c [USE_CRT_DLL]: Remove unnecessary extern, which screws
307 up dllimport attributes.
308
309 * w32proc.c (IsValidLocale): Extern missing from mingw32 headers.
310
311 * w32bdf.c (search_file_line):
312 (set_bdf_font_info):
313 (seek_char):
314 (w32_get_bdf_glyph):
315 (w32_BDF_to_x_font): Fix compile warnings.
316
317 * w32menu.c: Include keyboard.h before frame.h. Fix compile
318 warnings.
319
320 * w32select.c: Include keyboard.h before frame.h.
321
322 * w32fns.c (max): Define macro.
323 (JOHAB_CHARSET): Define if not known.
324 (MOD_ALT, MOD_CONTROL, MOD_SHIFT, MOD_WIN): Define if not known.
325 (Fx_show_tip): Synch with X version.
326
327 * w32xfns.c: Include keyboard.h before frame.h.
328
329 * w32fns.c: Include keyboard.h before frame.h.
330
331 * w32term.c: Include keyboard.h before frame.h.
332
333 * fontset.c: Include keyboard.h before frame.h.
334
335 * w32inevt.c: Include keyboard.h before frame.h.
336 (MOUSE_MOVED): Define if not known.
337
338 * minibuf.c: Include keyboard.h before frame.h.
339
340 * keyboard.c: Include keyboard.h before frame.h.
341
342 * indent.c: Include keyboard.h before frame.h.
343
344 * dispnew.c: Include keyboard.h before frame.h.
345
346 * buffer.c: Include keyboard.h before frame.h.
347
348 * alloc.c: Include keyboard.h before frame.h.
349
350 * print.c: Include keyboard.h before frame.h.
351
352 * process.c: Include keyboard.h before frame.h.
353
354 * scroll.c: Include keyboard.h before frame.h.
355
356 * sysdep.c: Include keyboard.h before frame.h.
357
358 * term.c: Include keyboard.h before frame.h.
359
360 * window.c: Include keyboard.h before frame.h.
361
362 * xdisp.c: Include keyboard.h before frame.h.
363 Separate GLYPH_DEBUG and DEBUG_TRACE_MOVE.
364
365 * frame.c: Include keyboard.h before frame.h.
366
367 * w32heap.h: Undefine min, max.
368
369 * w32gui.h: Undefine min, max.
370
371 * unexw32.c: Change PUCHAR to PCHAR.
372 (PTR_TO_OFFSET): Cast ptr to unsigned char *.
373 (relocate_offset):
374 (get_section_info):
375 (copy_executable_and_dump_data): Remove unnecessary static defs.
376 (copy_executable_and_dump_data): Fix compile warnings.
377
378 * sysdep.c (NULL) [WINDOWSNT]: Define NULL if not defined.
379
380 * w32console.c (min): Define macro.
381 (clear_frame, write_glyphs): Fix compile warning.
382
383 * w32proc.c (compare_env):
384 (find_child_console): Fix compile warning.
385
386 * w32.c (sys_strerror): Use sys_nerr instead of _sys_nerr. Use
387 sys_errlist instead of _sys_errlist.
388 (get_emacs_configuration_options): New function.
389
390 * s/ms-w32.h (sys_nerr): Provide default definition.
391 (strdup, strupr, strnicmp, stricmp, tzset, tzname): Map to same
392 name with _ prepended.
393 (NSIG): Define if not known.
394 (get_emacs_configuration): Provide extern declaration.
395 (get_emacs_configuration_options): Provide extern declaration.
396 (EMACS_CONFIG_OPTIONS): Call get_emacs_configuration_options.
397
398 * w32.c (gettimeofday): Use struct timeb, not struct _timeb.
399 (map_w32_filename):
400 (read_unc_volume): Fix compile warning.
401
402 * s/ms-w32.h (_WINSOCK_H): Define to prevent normal winsock
403 definitions from being used.
404
405 * lisp.h [WINDOWSNT]: Don't declare externs for getenv, ctime and getwd.
406
407 * w32.c (unc_volume_file_attributes):
408 (open_unc_volume): Make arg const.
409
410 * sysdep.c [WINDOWSNT]: Remove extern decl of errno.
411 (read_input_waiting): Remove excess parameter.
412
413 * w32.c (init_environment): Call _access.
414 (check_windows_init_file): Call _close.
415 (init_user_info): Call _putenv.
416 (init_environment): Call _putenv and _strdup.
417 (init_ntproc): Reset volume info cache on startup.
418
419 * s/ms-w32.h (malloc, free, realloc, calloc): Rename if
420 USE_CRT_DLL is defined, so Emacs can use GNU malloc even though it
421 cannot override the CRT malloc.
422
423 * makefile.nt (LOCAL_FLAGS): Define USE_CRT_DLL if requested.
424 (LINK_FLAGS): Append to original value of LINK_FLAGS.
425
426 * w32heap.c [!USE_CRT_DLL]: Don't define _heap_init and _heap_term
427 unless we are linking with a static CRT.
428 (RVA_TO_PTR): Cast result to unsigned char*.
429
430 * w32.c (GetCachedVolumeInformation): Use xmalloc, xfree and xstrdup.
431 (add_volume_info): Use xstrdup.
432
25060080
SM
4332000-08-22 Stefan Monnier <monnier@cs.yale.edu>
434
435 * minibuf.c (Vcompletion_auto_help): Renamed from `auto_help'.
436 (do_completion, Fminibuffer_complete_word): Use it.
437 (syms_of_minibuf): Turn completion-auto-help into a proper Lisp
438 var so it can take non-boolean values.
439
6917e6bb
GM
4402000-08-21 Gerd Moellmann <gerd@gnu.org>
441
acb7cc89
GM
442 * editfns.c (find_field): Formatting changes.
443 (toplevel): Some old-style function forward declarations
444 changed to prototypes, some new protypes added, some functions
445 made static.
446
447 * lisp.h (set_time_zone_rule): Add prototype.
448 (use_dialog_box): External declaration.
449
0bbfdc25
GM
450 * keyboard.c (gen_help_event): Add parameter SIZE.
451 (kbd_buffer_events_waiting): Slightly rewritten.
452 (clear_event): New function.
453 (kbd_buffer_get_event): Use it, and clear the input_events of
454 HELP_EVENTs.
455 (init_keyboard): Remove duplicate creation of kbd_buffer_gcpro and
456 don't fill the newly created array with nils.
457 (toplevel): Convert some old-style function forward declarations
458 to prototypes.
459
460 * keyboard.h (gen_help_event): Change prototype.
461
462 * xterm.c (XTread_socket): Change calls to gen_help_event.
463
464 * w32term.c (w32_read_socket): Change calls to gen_help_event.
465
6917e6bb
GM
466 * eval.c (Fmacroexpand): Doc fix.
467
e5cd3d11
JR
4682000-08-20 Jason Rumney <jasonr@gnu.org>
469
470 * w32term.h (x_display_info_for_display): Remove as this function
471 does not exist on W32.
472
473 * w32term.c (help_echo_window): New variable.
474 (syms_of_w32term): staticpro it.
475 (note_mode_line_highlight): Set it.
476 (XTextExtents16): Removed as there is no equivalent on W32.
477 (x_compute_glyph_string_overhangs): Incomplete body removed, as
478 the X way of doing this will not work for W32.
479 (w32_intersect_rectangles): Removed. Use IntersectRect API call.
480 (x_draw_image_foreground): Avoid drawing outside of the clip area
481 when image doesn't have a mask.
482 (note_mouse_highlight): Process overlays in the right order of
483 priority. Set help_echo_window.
484 (x_draw_bar_cursor): If cursor is on an image, draw a box cursor
485 because that's more visible for large images.
486
487 * w32menu.c (keymap_panes): Pass the keymap's prompt as the pane
488 name to single_keymap_panes.
489 (w32_menu_show): Set wv->title when dealing with titles.
490 (w32_menu_display_help): Call show_help_echo with OBJECT and POS.
491
6e69ab8c
MB
4922000-08-21 Miles Bader <miles@gnu.org>
493
494 * minibuf.c (do_completion): Try again if we rewrite the input
495 string, but no completion was done, so that any completion message
496 will be correct.
497
511bd4eb
GM
4982000-08-20 Gerd Moellmann <gerd@gnu.org>
499
500 * xfaces.c (lface_equal_p): Compare strings differently.
501 (Qtty_color_alist, Vtty_defined_color_alist): New variables.
502 (realize_tty_face): Use them.
503 (syms_of_xfaces): Initialize new variables.
504 (map_tty_color): New function, extracted from realize_tty_face.
505 (map_tty_color) [MSDOS || WINDOWSNT]: If using the frame's default
506 foreground or background color, store the new color name in the
507 realized face; previous code trying to do this had no effect.
508 (realize_tty_face): Use map_tty_color.
509 (Fclear_face_cache): Set face_change_count and ensure thorough
510 redisplay.
511
1433385f
GM
5122000-08-19 Gerd Moellmann <gerd@gnu.org>
513
511bd4eb
GM
514 * undo.c (record_first_change, record_marker_adjustment): Don't
515 use XBUFFER on last_undo_buffer which might not be a buffer.
1433385f 516
419ac0a2
KH
5172000-08-18 Kenichi Handa <handa@etl.go.jp>
518
519 * coding.c (decode_coding_string): Set members consumed,
520 consumed_char, produced, produced_char of *coding correctly. If
521 decode_coding doesn't consume any byte, don't try anymore.
522 (encode_coding_string): Likewise.
523
7eb9e30d
GM
5242000-08-18 Gerd Moellmann <gerd@gnu.org>
525
511bd4eb
GM
526 * lisp.h (CHECK) [ENABLE_CHECKING]: Make both sides of the
527 conditional have void type, for Standard C compilers.
7eb9e30d
GM
528
529 * xdisp.c (redisplay_internal): Compare windows for equality with
530 EQ, instead of applying XWINDOW to something that might not
531 be a window.
532
dd34a735
KH
5332000-08-18 Kenichi Handa <handa@etl.go.jp>
534
535 * fontset.c (Finternal_char_font): Search only the selected frame
536 for a window of the current buffer.
537
385ff9e3
GM
5382000-08-18 Gerd Moellmann <gerd@gnu.org>
539
511bd4eb 540 * minibuf.c (do_completion): Use EQ instead of `!=' to compare
01cce3e7
GM
541 Lisp_Objects.
542
385ff9e3
GM
543 * keyboard.c (kbd_buffer_get_event): Handle the case that the
544 second half of a HELP_EVENT is found at the start of kbd_buffer.
545
d6abb4c7
MB
5462000-08-18 Miles Bader <miles@gnu.org>
547
4618074a
MB
548 * lisp.h (Lisp_String): Replace DECLARE_INTERVALS with real decl.
549
d6abb4c7
MB
550 * editfns.c (save_restriction_save): Rewrite to use markers.
551 (save_restriction_restore): Rewrite to understand new form of data
552 saved by save_restriction_save.
553 (Fsave_restriction): Remove cautionary note in doc-string.
554
a7b28523
GM
5552000-08-17 Gerd Moellmann <gerd@gnu.org>
556
557 * fileio.c (build_annotations): Add a comment explaining the
558 return value of format-annotate-function. Replace a spurious call
559 to Flength with a CONSP test. Call format-annotate-function with
560 a fifth arg specifying how many times the function is been called
561 in a row, to let it choose temporary buffers appropriately.
562
03c9ed77
DL
5632000-08-17 Dave Love <fx@gnu.org>
564
565 * lisp.h: Remove DECLARE_INTERVALS, INITIALIZE_INTERVAL. Don't
566 declare make_temp_name twice.
567
568 * lread.c: Prototype readevalloop, load_unwind,
569 load_descriptor_unwind.
570 (unreadpure): Give it an arg.
571
572 * unexalpha.c: Prototype fatal_unexec, mark_x,
573 update_dynamic_symbols. Declare unexec as void.
574
575 * cm.c [HAVE_TERMCAP_H]: Include <termcap.h>.
576 [!HAVE_TERMCAP_H]: Prototype tputs, tgoto.
577
578 * alloc.c (lisp_malloc): Declare with POINTER_TYPE.
579 [SYSTEM_MALLOC]: Make decls in malloc.h conditional on
580 DOUG_LEA_MALLOC.
581
582 * alloca.c: Use #error.
583 [POINTER_TYPE]: Use it.
584
585 * eval.c (Fdefvar): Doc fix.
586
587 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer): Avoid
588 INITIALIZE_INTERVAL.
589
590 * buffer.h: Avoid DECLARE_INTERVALS.
591
592 * config.in: Add size_t.
593
aae41d97
EZ
5942000-08-17 Eli Zaretskii <eliz@is.elta.co.il>
595
596 * w16select.c (set_clipboard_data): If there's not enough memory
597 to put text into clipboard, return 1, as Fw16_set_clipboard_data
598 expects. In case of other failures, return 3.
599 (system_error_msg): New error message.
600 (Fw16_set_clipboard_data): If set_clipboard_data returns 3, print
601 system_error_msg.
602
65aa5e85
GM
6032000-08-16 Gerd Moellmann <gerd@gnu.org>
604
605 * term.c (write_glyphs): Also turn off inverse video after turning
606 off other appearances in case TS_exit_attribute_mode is not equal
607 to TS_end_standout_mode.
608 (insert_glyphs): Turn inverse video on/off for each run of glyphs
609 with the same face.
610 (turn_off_face): Reset standout_mode only if
611 TS_exit_attribute_mode has been output and TS_exit_attribute_mode
612 is equal to TS_end_standout_mode.
613
ece23901
KH
6142000-08-16 Kenichi Handa <handa@etl.go.jp>
615
9d7bcb2e
KH
616 * coding.c (encode_coding): Fix the bug of not flushing ISO escape
617 sequence at the end of the source block.
618
ece23901
KH
619 * ccl.c (Fccl_program_p): Docstring modified.
620 (Fccl_execute): Likewise.
621 (Fccl_execute_on_string): Likewise.
622
5e30eaa2
EZ
6232000-08-16 Eli Zaretskii <eliz@is.elta.co.il>
624
625 * msdos.c (IT_write_glyphs): Convert cbp to unsigned char *.
626
290602fd
KH
6272000-08-16 Kenichi Handa <handa@etl.go.jp>
628
629 The following changes are mainly to fix bugs of
630 encode/decode-coding-string failing if encoding/decoding return
631 CODING_FINISH_INSUFFICIENT_DST. In addition, delete the global
632 variable conversion_buffer.
633
634 * ccl.c (CCL_WRITE_CHAR): If CH is eight-bit-control char,
635 decrement dst_end to avoid buffer overflow in the later call of
636 string_as_multibyte
637
638 * coding.h (conversion_buffer_size, conversion_buffer)
639 (get_conversion_buffer): Extern deleted.
640
641 * coding.c (MINIMUM_CONVERSION_BUFFER_SIZE): Macro deleted.
642 (conversion_buffer, conversion_buffer_size): Variables deleted.
643 (get_conversion_buffer): Function deleted.
644 (struct conversion_buffer): New structure.
645 (MAX_ALLOCA): New macro.
646 (allocate_conversion_buffer): New macro.
647 (extend_conversion_buffer, free_conversion_buffer): New functions.
648 (ccl_coding_driver): Set coding->result.
649 (decode_coding): Set coding->result to CODING_FINISH_NORMAL if
650 this is the last block of source.
651 (encode_coding): Likewise. Handle the source block as the last
652 one only when the whole source text is consumed.
653 (decode_coding_string): Handle the case that the output buffer is
654 too small to decode the whole source text. Use
655 allocate_conversion_buffer, extend_conversion_buffer and
656 free_conversion_buffer, not get_conversion_buffer.
657 (encode_coding_string): Likewise.
658 (init_coding): Function deleted.
659 (init_coding_once): Delete code to initialize
660 conversion_buffer_size.
661
662 * emacs.c (main): Don't call init_coding.
663
664 * msdos.c (IT_write_glyphs): Use a locally declared
665 conversion_buffer.
666
667 * term.c (write_glyphs): Use a locally declared conversion_buffer.
668 (insert_glyphs): Likewise.
669
670 * w32console.c (write_glyphs): Use a locally declared
671 conversion_buffer.
672
b9f80d41
EZ
6732000-08-15 Eli Zaretskii <eliz@is.elta.co.il>
674
675 * msdos.c (IT_update_begin): Don't crash if mouse_face_mouse_frame
676 member of display_info is NULL.
677
32dc52f7
GM
6782000-08-15 Gerd Moellmann <gerd@gnu.org>
679
58ed0d3b
GM
680 * alloc.c (compact_small_strings): Use safe_bcopy, add an
681 assertion.
682
32dc52f7 683 * term.c (turn_off_face): Reset standout_mode when resetting
58ed0d3b 684 appearances with capability `me'.
32dc52f7
GM
685 (write_glyphs): Switch on inverse video before each face change.
686
4eb22d33
DL
6872000-08-14 Dave Love <fx@gnu.org>
688
689 * alloc.c [HAVE_UNISTD_H]: Include unistd.h; don't declare sbrk.
690 [!HAVE_UNISTD_H]: Use POINTER_TYPE to declare sbrk.
691 (lisp_free): Declare and make static.
692
693 * window.c: Fix embedded comment.
694 (syms_of_window): Fix doc string.
695
90cbf47e
GM
6962000-08-14 Gerd Moellmann <gerd@gnu.org>
697
698 * keymap.c (push_key_description): If C without modifiers is < 32,
699 make sure to print `C-' before `M-', like in the manual.
700
440fc135
GM
7012000-08-11 Gerd Moellmann <gerd@gnu.org>
702
703 * fns.c (hashfn_eq, hashfn_eql): Don't handle strings specially
704 since they aren't relocated anymore.
705 (sxhash_string): Make sure returned hash code fits in a Lisp
706 integer.
707
708 * xdisp.c (try_cursor_movement): Fix handling of cursor in
709 partially visible line which is smaller than the window's
710 height.
711
6e264fad
KH
7122000-08-11 Kenichi Handa <handa@etl.go.jp>
713
714 * ccl.c (CCL_READ_CHAR): If source is multibyte, pay attention to
715 the multibyte form of eight-bit-control characters.
716 (Fccl_execute_on_string): Initialize ccl->multibyte.
717
718 * ccl.h (struct ccl_program): New member multibyte.
719
720 * coding.c (ccl_coding_driver): Initialize ccl->multibyte.
721
c371f69a
KH
7222000-08-11 Kenichi Handa <handa@etl.go.jp>
723
724 * regex.c (regex_compile) <normal_char>: Pay attention to
725 multibyteness.
726 (analyse_first) <exactn>: Setup fastmap correctly for
727 eight-bit-control characters.
728
7292000-08-11 Kenichi Handa <handa@etl.go.jp>
730
731 * termhooks.h (enum event_kind): New member
732 multibyte_char_keystroke.
733
734 * keyboard.c (make_lispy_event): Handle the new event type
735 multibyte_char_keystroke.
736
737 * xterm.c: Include coding.h.
738 (XTread_socket): Work around a bug of XmbLookupString. If the
739 input is from XIM, decode it according to the current locale. In
740 that case, generate multibyte_char_keystroke events.
741
b8ddbe71
KH
7422000-08-11 Kenichi Handa <handa@etl.go.jp>
743
744 * xdisp.c (TRACE_MOVE) [GLYPH_DEBUG]: Delete the last semicolon.
745 (TRACE_MOVE) [not GLYPH_DEBUG]: Define dummy.
746
47589c8c
GM
7472000-08-10 Gerd Moellmann <gerd@gnu.org>
748
749 * xdisp.c (trace_move) [GLYPH_DEBUG]: New variable.
750 (TRACE_MOVE) [GLYPH_DEBUG]: New macro.
751 (move_it_in_display_line_to): Record iterator's ascent and descent
752 before producing glyphs, and restore them when we know the glyph
753 doesn't fit on the line.
754 (move_it_to): Restructured so that it's easier to debug. If
755 moving to a vpos, and not moving to an x or character position,
756 stop as soon as the specified vpos is reached; don't move further
757 into that line because that might change the computed line height.
758 (try_cursor_movement): New function, extracted from the cursor
759 movement branch of redisplay_window. If ending on a partially
760 visible line, don't try to scroll if the cursor line is taller
761 than the window.
762 (redisplay_window): Use try_cursor_movement.
763
764 * window.c (Fwindow_end): Rewritten to not use Fvertical_motion,
765 because that function doesn't cope with variable-height lines.
766
767 * xterm.c (x_draw_bar_cursor): If cursor is on an image, draw a
768 box cursor because that's better visible for large images.
769
c51bacd6
MB
7702000-08-10 Miles Bader <miles@gnu.org>
771
772 * w32term.c (note_mouse_highlight): Update calls to overlays_at.
773
bea56df7
GM
7742000-08-10 Gerd Moellmann <gerd@gnu.org>
775
776 * xdisp.c (Vmessages_buffer_name): New variable.
777 (message_dolog): Use it.
778 (syms_of_xdisp): Initialize it.
779
99cd7364
EZ
7802000-08-10 Eli Zaretskii <eliz@is.elta.co.il>
781
782 * msdos.c (IT_note_mouse_highlight): Update the calls to
783 overlays_at.
784 (toplevel) <kbd_buffer_store_event>: Remove prototype, it's
785 redundant now that keyboard.h is included.
786
7d093d56
EZ
7872000-08-09 Eli Zaretskii <eliz@is.elta.co.il>
788
789 * keyboard.c (kbd_buffer_events_waiting): New function.
790
791 * keyboard.h (kbd_buffer_events_waiting): Add prototype.
792
793 * msdos.c: Include keyboard.h.
794 (XMenuActivate): Empty no_event events from the event buffer. If
795 no events are left after that, call clear_input_pending.
796 (mouse_clear_clicks): New function, code moved from mouse_init.
797 (mouse_init, XMenuActivate): Call mouse_clear_clicks to force the
798 mouse driver to ``forget'' any past clicks.
799
800 * Makefile.in (msdos.o): Depend on keyboard.h.
801
41e757a6
GM
8022000-08-09 Gerd Moellmann <gerd@gnu.org>
803
8e7bd231
GM
804 * lisp.h (input_pending): External declaration.
805
806 * dispextern.h (Qredisplay_dont_pause): Declare extern.
807
808 * xdisp.c (echo_area_display): Display thoroughly if input is
809 pending. Bind redisplay-dont-pause to t during the redisplay.
810 in case input is pending.
811
812 * dispnew.c (Qredisplay_dont_pause): New variable.
813 (syms_of_display): Initialize and staticpro it.
814 (update_frame_1): Don't interrupt the display for pending input if
815 redisplay_dont_pause is set.
816
43028b7e
GM
817 * dispnew.c (mode_line_string): Declare parameter MODE_LINE_P.
818
41e757a6
GM
819 * xfaces.c (Ftty_suppress_bold_inverse_default_colors): Doc fix.
820
2f2174fa
KH
8212000-08-09 Miles Bader <miles@lsi.nec.co.jp>
822
823 * callproc.c (Fcall_process): Terminate the unwind-protect around
824 the post-read-conversion of coding system.
825
0a6fd67e
MB
826 * buffer.c (overlays_at): Add CHANGE_REQ parameter.
827 (Foverlays_at, Fnext_overlay_change, Fprevious_overlay_change): Use it.
828 * buffer.h (overlays_at): Update prototype.
829 * xdisp.c (next_overlay_change): Update call to overlays_at.
830 * xfaces.c (face_at_buffer_position): Likewise.
831 * textprop.c (Fget_char_property): Likewise.
832 * xterm.c (note_mouse_highlight): Likewise.
833
0c80756e
MB
834 * minibuf.c (do_completion): Don't consider a simple change of
835 case as `completion'.
836
975f250a
KR
8372000-08-08 Ken Raeburn <raeburn@gnu.org>
838
b347b3fd
KR
839 * keyboard.c (syms_of_keyboard): Initialize
840 last_point_position_buffer.
841 * undo.c (record_delete): Make sure last_point_position_buffer is
842 a buffer before comparing pointers.
843
844 * coding.h (decode_coding_string): Declare.
845
846 * intervals.h (Fprevious_single_char_property_change): Declare.
847
848 * textprop.c (Fprevious_single_char_property_change): Don't do
849 arithmetic directly on lisp objects.
850
25ad1371 851 * editfns.c (find_field): Use EQ, not ==, to compare Lisp
b347b3fd
KR
852 objects.
853
854 * keyboard.h (menu_item_eval_property): Declare.
855
856 * xdisp.c (message_dolog): Save and protect string "*Messages*" to
857 reuse as buffer name, instead of recreating (and discarding) every
858 time a message is logged.
859 (with_echo_area_buffer): Make callback arg A2 a lisp object.
25ad1371
GM
860 (current_message_1, truncate_message_1, set_message_1)
861 (display_echo_area_1, resize_mini_window_1): Signatures changed.
862 (current_message, truncate_echo_area, display_echo_area)
863 (resize_echo_area_axactly): Changed calls.
b347b3fd 864
975f250a 865 * coding.c (find_safe_codings): CHAR_TABLE_SET index must be a
25ad1371 866 Lisp object.
975f250a 867 (Ffind_coding_systems_region_internal): First argument to Fappend
25ad1371 868 must be an integer, not a Lisp object.
975f250a 869
46dc9912
KH
8702000-08-08 Kenichi Handa <handa@etl.go.jp>
871
872 * charset.c (Fchar_width): Doc fix.
873
9f6d1a6c
GM
8742000-08-08 Gerd Moellmann <gerd@gnu.org>
875
876 * charset.c (Fstring_width): Doc fix.
877
ff3d9573
GM
8782000-08-07 Gerd Moellmann <gerd@gnu.org>
879
41e757a6 880 * xdisp.c (start_display): When starting display on a continuation
49ad1d99
GM
881 line, clear ascent and descent members of the iterator structure;
882 the height of the continued line does not affect the height of the
883 continuation line.
884 (make_cursor_line_fully_visible): Do nothing if cursor is on a
885 line taller than the window.
886 (redisplay_window) <forced window start>: Handle case that the
887 middle of the window is not found in any row.
888 (dump_glyph_row): Show more information.
889 (compute_line_metrics): Use MATRIX_FIRST_TEXT_ROW to determine the
890 first text line in a glyph matrix.
891
892 * xterm.c (x_draw_image_foreground): Avoid drawing outside
893 of the clip area when image doesn't have a mask.
894
70fc58b3
GM
895 * fns.c (sweep_weak_table): Fix survival conditions for
896 key-or-value and key-and-value weakness.
897
898 * .gdbinit (xhashtable): New command.
899
ac0e96ee
GM
900 * fns.c (sweep_weak_hash_tables): Fix the code taking unmarked
901 tables out of the list of all weak hash tables.
902
ff3d9573
GM
903 * xdisp.c (ensure_echo_area_buffers): If a buffer was killed, and
904 a new buffer is created, make sure echo_area_buffer[] references
905 the new buffer.
906
e0d8827b
EZ
9072000-08-07 Eli Zaretskii <eliz@is.elta.co.il>
908
909 * msdos.c (Fmsdos_set_mouse_buttons): Add missing backslashes in
910 the doc string.
911
c6f35378
KH
9122000-08-07 Kenichi Handa <handa@etl.go.jp>
913
914 * syntax.c (skip_chars): Fix previous change. Make the handling
915 of unibyte string consistent with that of regex search.
916
1fd4c450
GM
9172000-08-05 Gerd Moellmann <gerd@gnu.org>
918
e49aa397
GM
919 * xmenu.c (popup_get_selection): Use xfree instead of free.
920
921 * fileio.c (Finsert_file_contents): Use xfree instead of free.
922
923 * editfns.c (Ftranspose_regions): Use xfree instead of free.
924
925 * callproc.c (child_setup): Use xfree instead of free.
926
927 * sysdep.c (opendir, GetTempDirName, run_mac_command): Use xmalloc
928 instead of malloc.
929 (run_mac_command, closedir): Use `xfree' instead of `free'.
930
931 * keymap.c (current_minor_maps): Use xmalloc instead of malloc.
932
933 * eval.c (error): Use xfree instead of free.
934
1fd4c450
GM
935 * xfaces.c, xfns.c, w32fns.c: Replace `illegal' with `invalid'.
936
937 * fns.c: Replace `illegal' with `invalid'.
e49aa397 938 (Fmake_hash_table, make_hash_table): Allow table size of 0.
1fd4c450 939
82d497fc
KH
9402000-08-05 Kenichi Handa <handa@etl.go.jp>
941
942 * syntax.c (skip_chars): Fix handling of multibyte<->unibyte
943 conversion.
944
59f953a2
NF
9452000-08-04 Noah Friedman <friedman@splode.com>
946
947 * fns.c (Fmake_hash_table): Add missing `\n\' to end of line in
948 docstring.
949
688351f2
GM
9502000-08-04 Gerd Moellmann <gerd@gnu.org>
951
952 * syntax.c (skip_chars): Fix typo in error message.
953
2dad51cc
AS
9542000-08-04 Andreas Schwab <schwab@suse.de>
955
956 * m/ia64.h: Moved from s/ia64.h.
957
99bb2c60
KH
9582000-08-04 Kenichi Handa <handa@etl.go.jp>
959
082a1df2
KH
960 * process.c (read_process_output): Big simplification. Handle
961 composition and post-read-conversion of coding system correctly.
962 (send_process): Handle composition correctly.
963
964 * callproc.c (Fcall_process): Handle post-read-conversion of
965 coding system if any.
966
99bb2c60
KH
967 * coding.c (decode_coding_iso2022): More strict check for handling
968 single shifting.
082a1df2
KH
969 (coding_restore_composition): Pay attention to the case that
970 cmp_data is not set properly (because of invalid code in the
971 source text).
972 (run_pre_post_conversion_on_str): Include text properties in the
973 resulting string.
974 (decode_coding_string): Set members of coding correctly.
99bb2c60 975
f4988be7
GM
9762000-08-03 Gerd Moellmann <gerd@gnu.org>
977
978 * s/ia64.h: New file.
979
980 * widget.c (set_frame_size, update_wm_hints, EmacsFrameSetValues):
981 Use NULL instead of 0 at the end of variable argument list of
982 XtVaGetValues and XtVaSetValues, because 0 fails on systems where
983 sizeof (int) < sizeof (void *).
984
985 * xmenu.c (update_frame_menubar): Use NULL instead of 0 at the end
986 of variable argument lists of XtVaGetValues and XtVaSetValues.
987
988 * xfns.c (Fx_file_dialog): Use NULL instead of 0 at the end of
989 variable argument lists of XtVaGetValues and XtVaSetValues.
990
ead53494
GM
9912000-08-02 Gerd Moellmann <gerd@gnu.org>
992
993 * alloc.c (lisp_malloc, lisp_free): Use size_t and POINTER_TYPE.
994 (xrealloc, xmalloc): Use size_t. Some callers adjusted.
995
996 * lisp.h (Fsingle_key_description, xmalloc, xrealloc): Change
997 prototype.
998
999 * keyboard.c (read_char_minibuf_menu_prompt): Add new parameter
1000 in call to Fsingle_key_description.
1001
1002 * keymap.c (Fsingle_key_description): Add parameter NO_ANGLES.
1003 Callers changed.
1004
10052000-08-02 Colin Walters <walters@cis.ohio-state.edu>
1006
1007 * window.c (display_buffer_reuse_frames): New variable.
1008 (Fdisplay_buffer): If display_buffer_reuse_frames is set, reuse
1009 frames displaying BUFFER.
1010 (syms_of_window): Define Lisp variable
1011 display-buffer-reuse-frames.
1012
10b0f752
MB
10132000-08-01 Miles Bader <miles@gnu.org>
1014
1015 * editfns.c (Fconstrain_to_field): Fix the conditions for deciding
1016 when to constrain NEW_POS (they were pretty screwed up before).
1017
16425c4a
EZ
10182000-07-31 Eli Zaretskii <eliz@is.elta.co.il>
1019
1020 * msdos.c (run_msdos_command): Save and restore the master
1021 environment, for the case that child_setup signals an error.
1022 When mirroring slashes in DOS shell commands, don't fail when
1023 argv[2] has embedded blanks.
da288c14
EZ
1024 (Fmsdos_set_mouse_buttons, mouse_setup_buttons): New functions.
1025 (syms_of_msdos): Defsubr Fmsdos_set_mouse_buttons.
1026 (dos_ttraw): Call mouse_setup_buttons.
16425c4a
EZ
1027
1028 * callproc.c (child_setup) [MSDOS]: malloc pwd_var instead of
1029 using alloca; free it after run_msdos_command returns.
1030
27f73852
DL
10312000-07-27 Dave Love <fx@gnu.org>
1032
1033 * s/irix6-5.h (IRIX_FORCE_32_BITS, LD_SWITCH_SYSTEM): Don't
1034 define.
1035 [_MIPS_SZLONG == 64]: Set up for 64-bit mode -- not currently
1036 working.
1037
1038 * m/iris4d.h (XUINT, XSET, XUNMARK) [_LP64]: Don't define.
1039
c0261b5e
EZ
10402000-07-27 Eli Zaretskii <eliz@is.elta.co.il>
1041
1042 * editfns.c (lisp_time_argument): Fix last change.
1043
b548072f
GM
10442000-07-27 Gerd Moellmann <gerd@gnu.org>
1045
3ab82477
GM
1046 * fns.c (Fdelete): Make it work on vectors and strings in addition
1047 to lists.
1048
b548072f
GM
1049 * fns.c (Qkey_or_value, Qkey_and_value): New variables.
1050 (syms_of_fns): Initialize new variables.
1051 (sweep_weak_table): Handle weakness `key-or-value' and
1052 `key-and-value'.
1053 (Fmake_hash_table): Recognize `key-and-value' and `key-or-value'
1054 weakness, with t meaning the same as `key-and-value'.
1055
91ae8751
KH
10562000-07-27 Kenichi Handa <handa@etl.go.jp>
1057
1058 * coding.h (struct coding_system): Member safe_charset deleted.
1059
1060 * coding.c (Qsafe_charsets): This variable deleted.
1061 (Qsafe_chars, Vchar_coding_system_table, Qchar_coding_system): New
1062 variables.
1063 (coding_safe_chars): New function.
1064 (CODING_SAFE_CHAR_P): New macro.
1065 (CHARSET_OK): New arg C. Call CODING_SAFE_CHAR_P instead of
1066 checking safe_charsets member of the coding system. Caller
1067 changed.
1068 (detect_coding_iso2022): New local variable safe_chars.
1069 (DECODE_DESIGNATION): Call CODING_SAFE_CHAR_P instead of checking
1070 safe_charsets member of the coding system.
1071 (decode_coding_iso2022): New local variable safe_chars.
1072 (ENCODE_ISO_CHARACTER_DIMENSION1): Don't check unsafe chars here.
1073 (ENCODE_ISO_CHARACTER_DIMENSION2): Likewise.
1074 (ENCODE_ISO_CHARACTER): Arguments changed. Caller changed.
1075 (ENCODE_UNSAFE_CHARACTER): New macro.
1076 (encode_coding_iso2022): New local variable safe_chars. Check
1077 unsafe chars.
1078 (setup_coding_system): Delete the code to initialize
1079 coding->safe_charses
1080 (intersection, find_safe_codings): New functions.
1081 (Ffind_coding_systems_region_internal): New function.
1082 (syms_of_coding): Defsubr it. Initialize Qsafe_chars,
1083 Qsafe_cding_system. Make Vchar_coding_system_table a Lisp
1084 variable and initialize it.
1085
1086 * fns.c (char_table_ref_and_index): New function.
1087
1088 * lisp.h (char_table_ref_and_index): Add prototype.
1089
34a7a267
SS
10902000-07-26 Sam Steingold <sds@gnu.org>
1091
1092 * editfns.c (lisp_time_argument): Added third argument `usec'.
3ab82477 1093 (Ffloat_time): New built-in Lisp function.
34a7a267 1094
a95cb10a
GM
10952000-07-26 Gerd Moellmann <gerd@gnu.org>
1096
3353ef5a
GM
1097 * dispextern.h (GLYPH_FROM_CHAR_GLYPH): Use CHARACTERBITS bits
1098 for the character code.
1099
1100 * config.in (HAVE_SOUND): Define only for FreeBSD, NetBSD and
1101 GNU/Linux.
1102
a95cb10a
GM
1103 * xmenu.c (menu_highlight_callback): Call show_help_echo directly
1104 if called for a popup menu.
1105 (xmenu_show): Store help string in widget values.
1106
b4a12321
DL
11072000-07-26 Dave Love <fx@gnu.org>
1108
1109 * syswait.h: Move some definitions.
1110 (HAVE_SYS_WAIT_H): Undef for HPUX7, Convex.
1111 [!HAVE_SYS_WAIT_H]: Define things unconditionally. More
1112 perspicuous definitions.
1113 (WTERMSIG): Fix bit pattern used.
1114
13f5ad37
KH
11152000-07-26 Kenichi Handa <handa@etl.go.jp>
1116
1117 * print.c (print_object): If vector printing is truncated, print
1118 "..." to indicate it as well as the case of list printing.
1119
070fe99c
GM
11202000-07-25 Gerd Moellmann <gerd@gnu.org>
1121
969065c3
GM
1122 * xdisp.c (next_element_from_display_vector): Improve comments.
1123
1124 * lisp.h (GLYPH_MASK_CHAR, GLYPH_MASK_FACE): Use 19 bits
1125 for the character code, and the rest for the face id as in 20.x.
1126 (FAST_GLYPH_FACE, FAST_MAKE_GLYPH): Changed accordingly.
1127
1128 * window.c (window_display_table): Cleaned up.
1129
070fe99c
GM
1130 * syntax.c (Fforward_word): Add last arg nil in call of
1131 Fconstrain_to_field.
1132
bad77ef7
EZ
11332000-07-25 Eli Zaretskii <eliz@is.elta.co.il>
1134
969065c3 1135 * fileio.c (Frename_file) [DOS_NT]: If the file names are
bad77ef7
EZ
1136 identical but for the letter-case, don't call
1137 barf_or_query_if_file_exists.
1138
c28da489
MB
11392000-07-25 Miles Bader <miles@gnu.org>
1140
1141 * editfns.c (find_field): Honor special `boundary' fields.
1142 (Qboundary): New variables.
1143 (syms_of_editfns): Initialize Qboundary.
1144 (Fconstrain_to_field): Add the INHIBIT-CAPTURE-PROPERTY argument.
1145 Use scan_buffer instead of find_before_next_newline, because it
1146 allows us to detect the boundary case where there's a newline at
1147 the search limit.
1148 * lisp.h (Fconstrain_to_field): Update external declaration.
1149
e3c31fd5
GM
11502000-07-24 Gerd Moellmann <gerd@gnu.org>
1151
1152 * print.c (temp_output_buffer_setup): Don't call1 Vrun_hooks
1153 if that is nil.
c28da489 1154
c66c29a2
DL
11552000-07-24 Dave Love <fx@gnu.org>
1156
1157 * s/sunos4-0.h, s/sol2.h:
1158 (LIBS_TERMCAP): Move from m/sparc.h.
1159
1160 * m/sparc.h (TERMINFO): Moved to system files (probably only
1161 relevant for sunos4 judging by its vintage).
1162 (BITS_PER_LONG, BITS_PER_EMACS_INT, _LP64): Define conditional on
1163 __arch64__.
1164
fbe0a958
EZ
11652000-07-24 Eli Zaretskii <eliz@is.elta.co.il>
1166
1167 * xmenu.c (keymap_panes): Pass the keymap's prompt as the pane
1168 name to single_keymap_panes.
1169
7d88e5c9
AS
11702000-07-24 Andreas Schwab <schwab@suse.de>
1171
1172 * fns.c (Fmakehash): Pass Qeql to Fmake_hash_table if TEST is nil.
1173
e024b101
GM
11742000-07-24 Gerd Moellmann <gerd@gnu.org>
1175
1176 * xdisp.c (with_echo_area_buffer): Take additional EMACS_INT
1177 parameters instead of using int parameters. Expect FN to accept
1178 EMACS_INT parameters.
1179 (display_echo_area, resize_echo_area_axactly, current_message)
1180 (truncate_echo_area, set_message_1): Call with_echo_area_buffer
1181 with new argument list.
1182 (resize_mini_window_1): New callback function.
1183 (current_message_1, truncate_message_1, set_message_1): Change
1184 parameter lists to the new format expected by
1185 with_echo_area_buffer.
1186
25c1a9ce
KH
11872000-07-24 Kenichi Handa <handa@etl.go.jp>
1188
1189 * fontset.c (fontset_ref): Remove INLINE declaration.
1190 (fontset_ref_via_base): Likewise.
1191 (Fset_fontset_font): Convert FAMILY and REGISTRY specifications
1192 to downcase.
1193
7f987ac0
EZ
11942000-07-23 Eli Zaretskii <eliz@is.elta.co.il>
1195
1196 * msdos.c (IT_note_mouse_highlight): Process overlays in the
1197 correct order of priority. If help echo was found in an overlay,
1198 use that overlay as the object in which the help echo was found.
1199
e2db3069
MB
12002000-07-22 Miles Bader <miles@gnu.org>
1201
1202 * textprop.c (Fprevious_single_char_property_change): The initial
1203 property value should be from the position preceding POSITION, not
1204 following it.
1205
5e3203e4
EZ
12062000-07-22 Eli Zaretskii <eliz@is.elta.co.il>
1207
1208 * coding.c (syms_of_coding): Doc fix for
1209 inhibit-iso-escape-detection.
1210
62145073
GM
12112000-07-21 Gerd Moellmann <gerd@gnu.org>
1212
c20aeb83
GM
1213 * xterm.c (note_mouse_highlight): Process overlays in the right
1214 order of priority.
34a7a267 1215
743934db
GM
1216 * keyboard.c (show_help_echo, gen_help_event): Extend comments.
1217
1218 * xterm.c (note_mouse_highlight): If help-echo was found in an
1219 overlay, use that overlay as the object in which the help was
1220 found.
1221
d1dc7e43 1222 * window.c (foreach_window_1): Fix typo reversing an if-condition.
34a7a267 1223
62145073
GM
1224 * window.c (foreach_window): Instead of a fake variable argument
1225 list, take one USER_DATA argument.
1226 (foreach_window_1): Likewise, and call callback functions with two
1227 args, the window and USER_DATA.
1228 (struct check_window_data): New struct.
1229 (check_window_containing): Use it.
1230 (window_from_coordinates): Set up a struct check_window_data for
1231 foreach_window.
1232 (add_window_to_list, freeze_window_start): Change parameters
1233 according to new calling convention.
1234
1235 * window.h (foreach_window): Change prototype.
1236
1237 * buffer.c (Fprevious_overlay_change): Avoid memory leak.
1238
12392000-07-21 Eli Zaretskii <eliz@is.elta.co.il>
1240
1241 * xmenu.c (menu_help_callback): Call show_help_echo with
1242 additional arguments OBJECT and POS.
1243
11270583
KH
12442000-07-21 Kenichi Handa <handa@etl.go.jp>
1245
07b14857
KH
1246 * data.c (Faset): Allow storing any multibyte character in a
1247 string. Convert unibyte string to multibyte if necessary.
1248
11270583
KH
1249 * xfns.c (x_encode_text): New function.
1250 (x_set_name): Use x_encode_text.
1251 (x_set_title): Likewise.
1252
1253 * xselect.c (lisp_data_to_selection_data): Use x_encode_text.
1254
1255 * xterm.h (x_encode_text): Add prototype.
1256
bc75b4fd
DL
12572000-07-20 Dave Love <fx@gnu.org>
1258
1259 * ccl.c (Fccl_execute_on_string): Don't check xmalloc return. Use
1260 xfree, not free.
1261
48c14970
EZ
12622000-07-20 Eli Zaretskii <eliz@is.elta.co.il>
1263
1264 * msdos.c (help_echo_window): New variable.
1265 (syms_of_msdos): Initialize and staticpro it.
1266 (IT_note_mode_line_highlight): Set help_echo_window.
1267 (IT_note_mouse_highlight): Ditto.
1268 (dos_rawgetc): Store help_echo_window in the second event produced
1269 for HELP_EVENTs.
1270
1271 * msdos.c (IT_note_mode_line_highlight, IT_note_mouse_highlight):
1272 Record the object that generated the help echo and the position of
1273 that object in help_echo_object and help_echo_pos. Record that
1274 some glyphs in a row are displayed in mouse-face.
1275 (IT_update_begin): Don't clear mouse highlight unless one of the
1276 enabled glyph rows is marked as being displayed in mouse-face.
1277 (dos_rawgetc): Generate 2 events for HELP_EVENT. Pass the object
1278 and position recorded in help_echo_object and help_echo_pos to the
1279 event queue.
1280 (IT_menu_display): Accept a new argument PN: the pane number of
1281 the current menu pane. Record the pane number and the item
1282 number of the item which has associated help string.
1283 (XMenuActivate): Update the prototype for help_callback in
1284 function declaration. Call IT_menu_display with the current menu
1285 pane number as an additional argument. Call help_callback with
1286 two additional arguments: the pane number and the item number of
1287 the menu item associated with the help text.
1288 (help_echo_object, help_echo_pos): New variables.
1289 (syms_of_msdos): Initialize them and staticpro help_echo_object.
1290
1291 * msdos.h (XMenuActivate): Update prototype.
1292
4279296d
GM
12932000-07-19 Gerd Moellmann <gerd@gnu.org>
1294
47db06aa
GM
1295 * xdisp.c (with_echo_area_buffer): Call FN with more arguments.
1296 Add some more prototypes.
1297
1298 * xterm.c, xterm.h: Add some more prototypes.
1299
1300 * lisp.h (Fnext_single_char_property_change): Add prototype.
1301
1302 * dispnew.c (direct_output_for_insert): Remove confusing
1303 outer local variable mouse_face_overwritten_p.
1304 (glyph_row_slice_p): Put in #ifdef GLYPH_DEBUG.
1305
4279296d
GM
1306 * alloc.c (allocate_string_data): Don't copy old string contents.
1307
670acd62
KH
13082000-07-19 Kenichi Handa <handa@etl.go.jp>
1309
1310 * coding.c (code_convert_region): Delete text properties before
1311 shrinking the conversion region.
1312
7cea38bc
GM
13132000-07-18 Gerd Moellmann <gerd@gnu.org>
1314
dc1cac59
GM
1315 * dispnew.c (update_text_area): Write the whole row if it
1316 has mouse-face in it.
1317
85a8aca9
GM
1318 * xfaces.c (face-alternative-font-family-alist): Remove
1319 DEFVAR_LISP; staticpro instead.
1320
34a7a267 1321 * xmenu.c (menu_help_callback): Call show_help_echo with
7cea38bc
GM
1322 new arguments.
1323
1324 * keyboard.c (show_help_echo): Add parameter WINDOW.
1325 (read_char): Call show_help_echo with window extracted from Lisp
1326 help event.
1327 (gen_help_event): Add parameter WINDOW.
1328
1329 * keyboard.h (show_help_echo, gen_help_event): Change prototypes.
1330
1331 * xterm.c (help_echo_window): New variable.
1332 (note_mouse_highlight, note_tool_bar_highlight): Set
1333 help_echo_window.
1334 (XTread_socket): Pass help_echo_window to gen_help_event.
1335 (syms_of_xterm): Initialize and staticpro help_echo_window.
1336
f8276b77
DL
13372000-07-18 Dave Love <fx@gnu.org>
1338
1339 * Makefile.in: Fix dependencies of blockinput.h on atimer.h,
1340 systime.h.
1341
088831a6
GM
13422000-07-18 Gerd Moellmann <gerd@gnu.org>
1343
3d6cd763
GM
1344 * alloc.c (allocate_string_data): If string had already data
1345 assigned, copy old contents to new string data.
1346
1347 * coding.c (syms_of_coding): Fix typo in spelling of variable
1348 `inhibit-iso-escape-detection'.
1349
088831a6
GM
1350 * alloca.c (free) [emacs && EMACS_FREE]: Define as EMACS_FREE.
1351
1352 * Makefile.in: Add dependencies on dispextern.h.
1353 (alloca.o): Don't define malloc and define EMACS_FREE instead of
1354 `free'; both can conflict with system header files.
1355
bc8a8d55
KH
13562000-07-18 Kenichi Handa <handa@etl.go.jp>
1357
1358 * charset.h (MAKE_CHAR): Return reasonable code even if CHARSET is
1359 undefined.
1360
069f5950
DL
13612000-07-18 Dave Love <fx@gnu.org>
1362
1363 * window.c (Fwindow_list): Declare arg `window'.
1364
aa96c820
KH
13652000-07-18 Kenichi Handa <handa@etl.go.jp>
1366
1367 * coding.c (setup_coding_system): Don't override the explicitly
1368 specified designations.
1369
06be8d32
MB
13702000-07-15 Miles Bader <miles@gnu.org>
1371
1372 * editfns.c (char_property_eq, char_property_stickiness): Renamed
1373 from `text_property_eq' and `text_property_stickiness', respectively.
1374 (find_field, Fconstrain_to_field, char_property_eq)
1375 (char_property_stickiness): Changed to call char-property functions
1376 instead of text-property-only ones.
1377
1378 * textprop.c (Fnext_single_char_property_change): Made a subr (was
1379 `next_single_char_property_change'). Do more error checking, and
1380 cleanup limit behavior.
1381 (Fprevious_single_char_property_change): New function.
1382 (syms_of_textprop): Initialize new subrs.
1383
1384 * xdisp.c (display_prop_end, invisible_text_between_p):
1385 Call Fnext_single_char_property_change instead of
1386 next_single_char_property_change.
1387
3fddcdc3
JR
13882000-07-15 Jason Rumney <jasonr@gnu.org>
1389
1390 * w32menu.c (w32_menu_show): Call free_menubar_widget_value_tree
1391 after menu is finished with.
1392 (add_menu_item): Only consider wv->title as a menu title.
1393 (w32_menu_display_help): Add OBJECT and POS to show_help_echo.
1394
1395 * w32fns.c (w32_wnd_proc) [WM_DRAW_ITEM]: Do not try to draw a
1396 null title.
1397 (FONT_REGEXP): Remove unused macro, and its sub-components.
1398 (syms_of_w32fns): Replace underscore in w32-enable-synthesized-fonts.
1399
1400 * w32term.c (help_echo_object, help_echo_pos): New variables.
1401 (note_mode_line_highlight): Store additional information about the
1402 help-echo in help_echo_object and help_echo_pos. Check both
1403 `local-map' and `keymap' properties for changing the cursor
1404 (note_mouse_highlight): Store additional information about the
1405 help-echo in help_echo_object and help_echo_pos.
1406 (note_tool_bar_highlight): Set help_echo_object to nil and
1407 help_echo_pos to -1.
1408 (w32_read_socket): Use gen_help_event instead of filling
1409 input_events manually.
1410 (syms_of_w32term): Staticpro help_echo_object.
1411 (x_update_window_end): Add parameter MOUSE_FACE_OVERWRITTEN_P. If
1412 set, arrange for a mouse-highlight redisplay in
1413 XTframe_up_to_date.
1414 (x_clear_mouse_face): New function.
1415 (w32_redisplay_interface): Add pointer to x_clear_mouse_face.
1416 (x_update_window_begin): No need to turn off the mouse
1417 highlight here.
1418 (show_mouse_face): Set the mouse_face_p flag of glyph rows
1419 depending on whether they contain glyphs highlighted in
1420 mouse-face.
1421 (x_fill_stretch_glyph_string): Consume runs of stretch
1422 glyphs instead of a single one.
1423 (BUILD_STRETCH_GLYPH_STRING): Call x_fill_stretch_glyph_string
1424 with new argument list.
1425 (x_set_glyph_string_gc): Make sure the face's GC is valid.
1426 (x_append_glyph, x_append_composite_glyph)
1427 (x_produce_image_glyph, x_append_stretch_glyph): Accomodate to
1428 changes in struct glyph starting 1999-12-27. See comments for
1429 xterm.c on 2000-07-05.
1430
178c5d9c
SS
14312000-07-14 Sam Steingold <sds@gnu.org>
1432
1433 * xfaces.c (realize_x_face): Fix the last patch:
1434 check `default_face' before dereferencing.
1435
6fe533f6
DL
14362000-07-14 Dave Love <fx@gnu.org>
1437
069f5950 1438 * syntax.c (back_comment): Add null default in switch (for pcc).
6fe533f6 1439
dd7b81cf
KH
14402000-07-14 Kenichi Handa <handa@etl.go.jp>
1441
0693904a 1442 * xfaces.c (realize_x_face): Make fontset using the base of the
178c5d9c 1443 default_face's fontset, not using the default fontset.
0693904a 1444
dd7b81cf
KH
1445 * coding.c (inhibit_iso_escape_detection): New variable.
1446 (syms_of_coding): Make it a Lisp variable.
1447 (detect_coding_iso2022): If inhibit_iso_escape_detection is
1448 nonzero, ignore ISO2022's escape sequence.
1449
d5aa31d8
GM
14502000-07-14 Gerd Moellmann <gerd@gnu.org>
1451
e5acf0ca
GM
1452 * alloca.c (malloc) [emacs]: Define as xmalloc.
1453
bd23a692
GM
1454 * xfns.c (Fx_show_tip): If frame parameters contain a position,
1455 use that instead of the mouse position. Add parameters DX and DY.
1456
1457 * dispextern.h (Fx_show_tip): Adjust number of parameters
1458 in prototype.
1459
9662da0b
GM
1460 * keyboard.c (show_help_echo): Add parameters OBJECT and POS.
1461 if HELP is a function, call it with OBJECT and POS as parameters
1462 to get the help to display.
1463 (gen_help_event, kbd_buffer_store_help_event): New functions.
1464 (kbd_buffer_get_event): Construct the Lisp help-event differently.
1465 (read_char): Call show_help_echo with new parameters.
1466
178c5d9c 1467 * keyboard.h (gen_help_event, kbd_buffer_store_help_event):
9662da0b
GM
1468 Add prototypes.
1469
1470 * xterm.c (help_echo_object, help_echo_pos): New variables.
1471 (note_mode_line_highlight): Store additional information about the
1472 help-echo in help_echo_object and help_echo_pos. Check both
1473 `local-map' and `keymap' properties for changing the cursor
1474 (note_mouse_highlight): Store additional information about the
1475 help-echo in help_echo_object and help_echo_pos.
1476 (note_tool_bar_highlight): Set help_echo_object to nil and
1477 help_echo_pos to -1.
1478 (XTread_socket): Use gen_help_event instead of filling
1479 input_events manually.
1480 (syms_of_xterm): Staticpro help_echo_object.
1481
1482 * xmenu.c (menu_highlight_callback): Use
1483 kbd_buffer_store_help_event instead of setting up and input_event
1484 structure manually.
1485
1486 * xdisp.c (eval_form): GCPRO argument sexpr.
1487 (call_function): New function.
1488 (handle_single_display_prop): Use call_function and FUNCTIONP
1489 instead of checking whether if font_height is a symbol and
1490 using eval_form.
1491
1492 * eval.c (internal_condition_case_2): New function.
1493
1494 * lisp.h (FUNCTIONP): New macro.
1495 (internal_condition_case_2, call_function): Add prototypes.
1496
d5aa31d8
GM
1497 * xterm.c (construct_mouse_click, x_scroll_bar_to_input_event)
1498 (x_scroll_bar_handle_click, SET_SAVED_MENU_EVENT, XTread_socket):
1499 Always set `arg' member of input_events.
1500 (construct_menu_click): Unused function removed.
1501
1502 * msdos.c (dos_rawgetc): Always set `arg' member of input_events.
1503
1504 * w32term.c (construct_mouse_click, construct_mouse_wheel)
1505 (construct_drag_n_drop, x_scroll_bar_handle_click)
1506 (w32_read_socket): Always set `arg' member of input_events.
1507
1508 * keyboard.c (show_help_echo): Use eval_form. Add comment.
1509
1510 * lisp.h (eval_form): Add prototype.
1511
1512 * xdisp.c (eval_form): Make it externally visible.
1513
0f1a9b23
GM
15142000-07-13 Gerd Moellmann <gerd@gnu.org>
1515
1516 * xterm.c (x_handle_tool_bar_click): Store the frame in the
1517 frame_or_window slot of TOOL_BAR_EVENT input events instead of
1518 consing. For prefix events, store the frame in the `arg' slot of
1519 the event, otherwise store the key there.
1520 (XTread_socket): Instead of consing, use the frame_or_window slot
1521 of HELP_EVENTs for the frame, and the `arg' slot for the help
1522 string.
1523
1524 * xmenu.c (menu_highlight_callback): Store help string in the
1525 `arg' member of the input event; don't cons.
1526 (menubar_selection_callback): Use the `arg' slot of input events
1527 to queue additional information, instead of consing.
1528
1529 * msdos.c (dos_rawgetc): Adapt to change of HELP_EVENTs.
1530
1531 * w32term.c (w32_handle_tool_bar_click): Adapt to changes in
1532 TOOL_BAR_EVENTs.
1533 (w32_read_socket): Adapt to changes in HELP_EVENTs.
1534
1535 * w32menu.c (menubar_selection_callback): Use the `arg' slot of
1536 input events to queue additional information, instead of consing.
1537
1538 * keyboard.c (kbd_buffer_gcpro): Renamed from
1539 kbd_buffer_frame_or_window. Now used for all Lisp objects
1540 referenced from the input queue.
1541 (kbd_buffer_store_event): Always use structure assignment for
1542 copying input events. Record all Lisp objects referenced from
1543 events in kbd_buffer_gcpro.
1544 (kbd_buffer_get_event): Construct Lisp `help-echo' events
1545 differently from input events. Test for prefix menu_bar_events
1546 and TOOL_BAR_EVENTs differently. Reset all slots used by an input
1547 event in kbd_buffer_gcpro to nil.
1548 (make_lispy_event) <TOOL_BAR_EVENT>: Treat an input event whose
1549 frame_or_window is equal to its arg member as prefix events.
1550 (stuff_buffered_input): Reset all slots in kbd_buffer_gcpro
1551 used by an input event to nil.
1552 (init_keyboard): Use two times the size of the input queue
1553 for kbd_buffer_gcpro.
1554 (syms_of_keyboard): Likewise.
1555
1556 * emacs.c (handle_USR2_signal, handle_USR1_signal): Use
1557 USER_SIGNAL_EVENT.
1558
1559 * termhooks.h (struct input_event): Add member `arg'.
1560 (MENU_BAR_EVENT): Renamed from menu_bar_event.
1561 (USER_SIGNAL_EVENT): Renamed from user_signal.
1562
1563 * xfaces.c (ASET): Remove definition.
1564
1565 * lisp.h (AREF, ASET, ASIZE): New macros.
1566
1567 * fontset.c (AREF, ASIZE): Remove definitions.
1568
1569 * fns.c (AREF): Remove definition.
178c5d9c 1570
0f1a9b23
GM
1571 * composite.c (AREF): Remove definition.
1572
712eaef2
GM
15732000-07-12 Gerd Moellmann <gerd@gnu.org>
1574
d8ee7803
GM
1575 * dispnew.c (redraw_overlapped_rows): Add missing local.
1576 (scrolling_window): Remove debug code.
1577
712eaef2
GM
1578 * xdisp.c (try_window_reusing_current_matrix, try_window_id):
1579 Before scrolling, turn off a mouse-highlight in the window
1580 being scrolled.
1581
1582 * xterm.c (x_update_window_end): Add parameter
1583 MOUSE_FACE_OVERWRITTEN_P. If set, arrange for a mouse-highlight
1584 redisplay in XTframe_up_to_date.
1585 (x_clear_mouse_face): New function.
1586 (x_redisplay_interface): Add pointer to x_clear_mouse_face.
1587
1588 * dispnew.c (make_current): Preserve the mouse_face_p flag of the
1589 current glyph row.
1590 (update_window_line): Add parameter MOUSE_FACE_OVERWRITTEN_P. Set
1591 it when any row is written to that contains glyphs highlighted in
1592 mouse-face.
1593 (update_window): Call the window update end hook with new
1594 parameter MOUSE_FACE_OVERWRITTEN_P.
1595 (direct_output_for_insert): Give up if row contains mouse-face.
1596
1597 * dispextern.h (struct redisplay_interface): Add parameter
1598 MOUSE_FACE_OVERWRITTEN_P to update_window_end_hook function.
1599 (clear_mouse_face): New function pointer member.
1600
02010917
SM
16012000-07-11 Stefan Monnier <monnier@cs.yale.edu>
1602
1603 * syntax.c (back_comment): Use one switch rather than a few `if's.
1604 Obey open_paren_in_column_0_is_defun_start.
1605 When reverting to the `slow' method, try to nicely handle the case
1606 of nested comments by checking that the comment-starter we found
1607 does indeed match the comment-ender.
1608 (scan_sexps_forward, scan_sexps_forward):
1609 Ignore excessive opening parenthesis rather than throwing an error.
1610
d76c03ea
GM
16112000-07-11 Gerd Moellmann <gerd@gnu.org>
1612
1613 * doc.c (Fsubstitute_command_keys): Handle case that a GC
1614 in Fwhere_is_internal or get_keymap_1 relocates string contents.
1615
1616 * dispnew.c (direct_output_forward_char): Give up if currently
1617 displaying a message instead of the minibuffer contents.
1618
1619 * xterm.c (x_update_window_begin): No need to turn off the mouse
1620 highlight here.
1621 (show_mouse_face): Set the mouse_face_p flag of glyph rows
1622 depending on whether they contain glyphs highlighted in
1623 mouse-face.
1624
1625 * dispnew.c (row_equal_p): Add parameter MOUSE_FACE_P. If set,
1626 compare the mouse_face_p flags of both rows.
1627
1628 * dispextern.h (struct glyph_row): Add flag mouse_face_p.
1629
d55ead18
EZ
16302000-07-11 Eli Zaretskii <eliz@is.elta.co.il>
1631
1632 * keyboard.c (show_help_echo): Accept additional parameter
1633 ok_to_overwrite_keystroke_echo.
1634 (read_char): Call show_help_echo with a zero
1635 ok_to_overwrite_keystroke_echo argument.
1636 * keyboard.h (show_help_echo): Update prototype of
1637 show_help_echo.
1638 * xmenu.c (menu_help_callback): Call show_help_echo with non-zero
1639 ok_to_overwrite_keystroke_echo argument.
1640 * w32menu.c (w32_menu_display_help): Call show_help_echo with
1641 non-zero ok_to_overwrite_keystroke_echo argument.
1642
df75b1a3
GM
16432000-07-10 Gerd Moellmann <gerd@gnu.org>
1644
4b92c49a
GM
1645 * xdisp.c (try_window_id): If changes are all below what is
1646 displayed in the window, and point is in the window, we still
1647 might have to find point on the display.
1648
1649 * xterm.c (x_fill_stretch_glyph_string): Consume runs of stretch
1650 glyphs instead of a single one.
1651 (BUILD_STRETCH_GLYPH_STRING): Call x_fill_stretch_glyph_string
1652 with new argument list.
1653 (x_set_glyph_string_gc): Make sure the face's GC is valid.
1654
df75b1a3
GM
1655 * keymap.c (get_keymap_1): Add comment that this function can GC.
1656 (where_is_internal_2, where_is_internal_1): Add GCPROs, add
1657 comment that functions can GC.
1658 (Fset_keymap_parent): GCPRO arg KEYMAP.
1659
4314cf3e
EZ
16602000-07-10 Eli Zaretskii <eliz@is.elta.co.il>
1661
1662 * msdos.c (XMenuActivate): After exiting the menu, restore the
1663 echo area message and erase it.
1664
ab49ce15
KH
16652000-07-10 Kenichi Handa <handa@etl.go.jp>
1666
1667 * fontset.c (Ffontset_info): Make the return value more compatible
1668 with that of Emacs 20.
1669
090a072f
GM
16702000-07-07 Gerd Moellmann <gerd@gnu.org>
1671
1672 * eval.c (Fsignal): Handle case that backtrace_list is null.
1673
f92de4a6
KH
16742000-07-07 Kenichi Handa <handa@etl.go.jp>
1675
1676 * ccl.c (Fccl_execute): Typo fixed.
1677
dd8888a1
GM
16782000-07-06 Gerd Moellmann <gerd@gnu.org>
1679
e5c81191 1680 * window.c (window_loop): Add missing gcpro1 local variable.
178c5d9c 1681
dd8888a1
GM
1682 * window.c (Fwindow_list): Reverse list at the end.
1683 (candidate_window_p): Add parameter OWINDOW. ALL_FRAMES nil
1684 means allow windows on OWINDOW's frame, only.
1685 (window_loop): Simplified; use Fwindow_list.
1686
1687 * Makefile.in (TAGS-LISP): Don't pass `$(lispsource)' to make.
1688
485266d0
GM
16892000-07-05 Gerd Moellmann <gerd@gnu.org>
1690
1691 * xterm.c (XTread_socket): Increment handling_signal at the start,
1692 decrement it at the end.
1693
1694 * eval.c (handling_signal): New variable.
1695 (Fsignal): Abort if handling_signal is non-zero.
1696
1697 * lisp.h (handling_signal): External declaration.
178c5d9c 1698
485266d0
GM
1699 * s/freebsd.h (WAITTYPE, WRETCODE): Put in #if 0.
1700
80fcd514
KR
17012000-07-05 Ken Raeburn <raeburn@gnu.org>
1702
1703 Sound support for NetBSD through "Linux emulation" support:
1704 * config.in (HAVE_SOUNDCARD_H): Undef.
1705 (HAVE_SOUND): Define if HAVE_SOUNDCARD_H.
1706 * Makefile.in (LIBSOUND): New variable.
1707 (LIBES): Include it.
1708 * sound.c [HAVE_SOUNDCARD_H]: Include <sys/ioctl.h> and
1709 <soundcard.h>.
1710 (DEFAULT_SOUND_DEVICE): Define to "/dev/dsp" if not defined
1711 elsewhere.
1712 (vox_open): Use DEFAULT_SOUND_DEVICE.
1713 * s/netbsd.h (DEFAULT_SOUND_DEVICE): Define to /dev/audio.
1714
d5c5cddd
GM
17152000-07-05 Gerd Moellmann <gerd@gnu.org>
1716
1717 * print.c (print_error_message): If Vsignaling_function is set,
1718 show it in *Messages*.
1719
1720 * lisp.h (Vsignaling_function): External declaration.
1721
1722 * eval.c (Vsignaling_function): New variable.
1723 (Fsignal): Compute it.
1724 (syms_of_eval): Staticpro it.
1725
65171e3a
DL
17262000-07-05 Dave Love <fx@gnu.org>
1727
1728 * syswait.h: Use the autoconf recommended approach. Old code
1729 #if'd out in case we need to revert.
1730
178c5d9c 1731 * config.in (HAVE_SYS_WAIT_H): Added.
65171e3a 1732
e2c46326
AI
17332000-07-05 Andrew Innes <andrewi@gnu.org>
1734
1735 * vm-limit.c (check_memory_limits) [REL_ALLOC]: Use real_morecore
1736 when non-NULL instead of __morecore, to take account of buffer
1737 memory. This also solves a problem with spurious memory warnings
1738 on Windows.
1739
1740 * ralloc.c: Make real_morecore non-static.
1741
1742 * eval.c (internal_condition_case): Comment out abort if
1743 interrupt_input_blocked is not zero.
1744
1745 * makefile.nt: Add support for `bootstrap' and related targets.
1746 Include minimal debug info in emacs.exe in release build.
1747 Remove all dependencies on lisp.h, and fixup some others.
1748
1749 * w32.c (init_environment): Install code from 20.7 for providing
1750 default values for environment variables, based on the
1751 executable's own location.
1752 (map_w32_filename): Handle filenames that are longer than
1753 MAX_PATH.
1754 (sys_socket): Install socket inheritance bug fix from 20.7.
1755
1756 * alloca.c [emacs]: Include lisp.h (needed by atimer.h included
1757 here via blockinput.h).
1758
a027a91b
SM
17592000-07-05 Stefan Monnier <monnier@cs.yale.edu>
1760
e4b31601
SM
1761 * w32menu.c (w32_menu_display_help):
1762 * xmenu.c (menu_help_callback): Use show_help_echo.
a027a91b
SM
1763
1764 * keyboard.h (show_help_echo): Declare.
1765
1766 * keyboard.c (show_help_echo): New function, extracted from read_char.
1767 Feval its `msg' argument if it's a cons cell.
1768 (read_char): Use it.
4cf8d9d5 1769 (follow_key): Pass `autoload' to get_keyelt.
a027a91b 1770
178c5d9c 1771 * xterm.c (note_mode_line_highlight, note_mouse_highlight)
a027a91b 1772 (note_tool_bar_highlight, XTread_socket):
178c5d9c 1773 * msdos.c (IT_note_mode_line_highlight, IT_note_mouse_highlight)
a027a91b
SM
1774 (dos_rawgetc):
1775 * w32term.c (note_mode_line_highlight, note_mouse_highlight)
1776 (note_tool_bar_highlight, w32_read_socket):
1777 Do not gratuitously ignore non-string `help-echo' properties.
1778
88d75730
GM
17792000-07-05 Gerd Moellmann <gerd@gnu.org>
1780
969f7e79
GM
1781 * eval.c (Feval): Put check for interrupt_input_block in #if 0.
1782
71201b00
GM
1783 * window.c (delete_all_subwindows): Reset Vwindow_list.
1784
88d75730
GM
1785 * xterm.c (x_append_glyph, x_append_composite_glyph)
1786 (x_produce_image_glyph, x_append_stretch_glyph): Accomodate to
1787 changes in struct glyph starting 1999-12-27. Some bit-fields of
1788 struct glyph were not set, which made glyphs unequal when compared
1789 with GLYPH_EQUAL_P. Redisplay outputs such glyphs, and flickering
1790 effects were the result. This also depended on the contents of
1791 memory returned by xmalloc. If flickering happens again, activate
1792 the code in clear_glyph_row that's in #if 0. If the flickering is
1793 gone with that, chances are that it is caused by something
1794 similar.
1795
1796 * dispnew.c (clear_glyph_row): Add debug code in #if 0.
178c5d9c 1797
88d75730
GM
1798 * dispextern.h: Add some comments.
1799
1800 * window.c (add_window_to_list): Add parameter LIST.
1801 (window_list): Order list so that, for each frame, windows are
1802 in canonical order, and so that frames appear in the list in
1803 the order given by Vframe_list.
1804 (next_window): Reverse the handling of NEXT_P.
1805
53654733
GM
18062000-07-04 Gerd Moellmann <gerd@gnu.org>
1807
87efd256
GM
1808 * window.c (Vwindow_list): New variable.
1809 (make_window, delete_window): Set Vwindow_list to nil.
1810 (check_window_containing): New function.
1811 (window_from_coordinates): Rewritten.
1812 (add_window_to_list, window_list, candidate_window_p)
1813 (decode_next_window_args, next_window): New functions.
1814 (Fnext_window, Fprevious_window): Rewritten in terms of
1815 next_window.
1816 (Fwindow_list): New function.
1817 (Fother_window): Cleaned up.
1818 (foreach_window): Add a longer "variable argument list". Let
1819 callback function return 0 to indicate that cycling over windows
1820 should stop.
1821 (foreach_window_1): Likewise.
1822 (freeze_window_start): Return int.
1823 (init_window): New function.
1824 (syms_of_window): Staticpro Vwindow_list and defsubr Swindow_list.
1825
1826 * emacs.c (handle_USR1_signal, handle_USR2_signal) Clear
1827 input_event with bzero.
1828 (main): Call init_window.
1829
53654733
GM
1830 * keymap.c (get_keyelt): Temporarily inhibit GC while evaluating
1831 a menu filter.
1832
4a8c194f
KH
18332000-07-04 Kenichi Handa <handa@etl.go.jp>
1834
1835 * composite.h (make_composition_value_copy): Extern it.
1836
1837 * composite.c (make_composition_value_copy): New function.
1838
1839 * editfns.c (Fformat): While copying text properties, make each
1840 composition property value a copy.
1841
1842 * fns.c (concat): While copying text properties, make each
1843 composition property value a copy.
1844
831a6cb0
GM
18452000-07-03 Gerd Moellmann <gerd@gnu.org>
1846
2f516940
GM
1847 * m/macppc.h (LINKER, LD_SWITCH_MACHINE) [LINUX]: Define.
1848
178c5d9c 1849 * fns.c (sweep_weak_table): Mark only objects that are not
aee625fa
GM
1850 marked already.
1851
831a6cb0
GM
1852 * frame.c (next_frame, prev_frame): If MINIBUF is a window,
1853 include those frames as candidates which have their focus
1854 redirected to the minibuffer frame.
1855
d9c4f922
SM
18562000-07-03 Stefan Monnier <monnier@cs.yale.edu>
1857
1858 * fns.c (Fputhash): Return `value' rather than nil.
1859
3780bc22
GM
18602000-06-30 Gerd Moellmann <gerd@gnu.org>
1861
97d176db
GM
1862 * frame.c (next_frame): Don't check focus redirection in case
1863 MINIBUF is a window. Doing so excludes frames using MINIBUF
3780bc22
GM
1864 unless their focus is redirected, which contradicts the
1865 specification of next-frame, and leads to infinite loops in
1866 certain situations when cycling through windows with next-window.
1867
dca9961d
KH
18682000-06-30 Kenichi Handa <handa@etl.go.jp>
1869
1870 * coding.c (code_convert_region): Even if the length of text is
1871 zero, try to convert it if coding->type is coding_type_ccl.
1872 (decode_coding_string, encode_coding_string): Likewise.
1873
d5483ab1
GM
18742000-06-28 Gerd Moellmann <gerd@gnu.org>
1875
af5c25e1 1876 * xdisp.c (try_window_reusing_current_matrix): Don't try to reuse
97d176db 1877 the display if windows_or_buffers_changed.
af5c25e1
GM
1878
1879 * dispnew.c (struct row_entry): New structure.
1880 (row_entry_pool, row_entry_pool_size, row_entry_idx, row_table)
1881 (row_table_size, old_lines, new_lines, old_lines_size)
1882 (new_lines_size, run_pool, runs_size, runs): New variables.
1883 (add_row_entry): New function.
1884 (scrolling_window): Use data structures allocated with xmalloc and
97d176db 1885 held in global variables, instead of allocating them with alloca and
af5c25e1
GM
1886 holding them in local variables. Use a larger hash table whose
1887 size depends on glyph matrix sizes. Don't use bzero to clear the
1888 hash table; instead, clear used slots only.
1889
1890 * fns.c (next_almost_prime): Make it externally visible.
1891
1892 * lisp.h (next_almost_prime): Add prototype.
1893
d5483ab1
GM
1894 * s/isc4-0.h (sigunblock): Define.
1895
1896 * s/sco5.h (sigunblock): Define.
1897
93e40f40
DL
18982000-06-27 Dave Love <fx@gnu.org>
1899
1900 * s/osf1.h (C_SWITCH_SYSTEM, LIBS_SYSTEM): Revert last change
1901 (moved to osf5-0.h).
1902 [!NOT_C_CODE]: Protect string.h stuff.
1903
1904 * s/osf5-0.h (C_SWITCH_SYSTEM, WAIT_USE_INT, SYS_SIGLIST_DECLARED)
1905 (sys_siglist, NSIG): Definitions moved here from osf1.h.
1906
3c4b7685
GM
19072000-06-27 Gerd Moellmann <gerd@gnu.org>
1908
97d176db 1909 * xdisp.c (resize_mini_window): Subtract the extra line spacing
3c4b7685
GM
1910 below the last line from the needed window height.
1911
32cad0aa
SM
19122000-06-26 Stefan Monnier <monnier@cs.yale.edu>
1913
1914 * fns.c (Fplist_member): Renamed from Fwidget_plist_member.
1915 (Fwidget_get): Use it.
1916 (syms_of_fns): Defsubr it.
1917
2c69ced2
GM
19182000-06-26 Gerd Moellmann <gerd@gnu.org>
1919
178c5d9c 1920 * xterm.c (xim_initialize) [!USE_XIM]: Don't set up the
1d36487c
GM
1921 display info for XIM.
1922 (xim_open_dpy): Likewise.
1923 (xim_close_dpy): Don't free the display info's XIM.
1924
1925 * xfns.c (x_window) [!USE_XIM]: Don't call create_frame_ic.
1926
1927 * config.in (USE_XIM): New define.
1928
3fc720e4
GM
1929 * keymap.c (get_keyelt): For menu-items containing a `:filter
1930 FILTER', apply FILTER to the menu-item's definition to get the
1931 real definition to use.
1932
1933 * lisp.h (QCfilter): External declaration.
1934
2c69ced2
GM
1935 * xfns.c (Fimage_size): New function.
1936 (syms_of_xfns): Defsubr it.
1937
f978b2a2
AS
19382000-06-26 Andreas Schwab <schwab@suse.de>
1939
1940 * coding.c (decode_coding_string): Re-fetch STRING_BYTES after
1941 Fstring_as_unibyte.
1942
94cc7892
DL
19432000-06-25 Dave Love <fx@gnu.org>
1944
1945 * term.c [!HAVE_TERMCAP_H]: Declare tputs, tgetent, tgetflag,
1946 tgetnum.
1947
1948 * Makefile.in (blockinput.h): Depend on atimer.h.
1949 (atimer.h): Depend on systime.h.
1950
1951 * blockinput.h: Protect against multiple inclusion. Include
1952 atimer.h.
1953
1954 * atimer.h: Protect against multiple inclusion. Include
1955 systime.h.
1956
1957 * lisp.h (swap_in_global_binding): Declare.
1958
b8c24556
KR
19592000-06-24 Ken Raeburn <raeburn@gnu.org>
1960
1961 * process.c (Fopen_network_stream): Turn off atimers for duration
1962 of call to connect. (Patch from Gerd.)
1963
8cf8560b
DL
19642000-06-23 Dave Love <fx@gnu.org>
1965
511c7541
DL
1966 * ralloc.c: Maybe include unistd.h
1967
8cf8560b
DL
1968 * emacs.c (setgrp): Undefine before defining.
1969 (malloc_warning, set_time_zone_rule, index): Prototype.
1970
1971 * systime.h (EMACS_GET_TIME) [!GETTIMEOFDAY_ONE_ARGUMENT]: Use
1972 HAVE_STRUCT_TIMEZONE.
1973
1974 * s/osf1.h: Move string.h hack here from alpha.h and make it
1975 conditional.
1976 (C_SWITCH_SYSTEM): Use _OSF_SOURCE, not -BSD, which clashes with
1977 _XOPEN_SOURCE.
1978 (WAIT_USE_INT, SYS_SIGLIST_DECLARED, sys_siglist, NSIG): Define.
1979 (SOCKLEN_TYPE): Don't define.
1980
1981 * m/alpha.h: Remove string.h hack.
1982
1983 * s/osf5-0.h: New file.
1984
1985 * filelock.c: Use feature tests for fcntl.h, string.h. Don't
1986 include time.h, done by systime.h.
1987 [__FreeBSD__]: Remove redundant includes.
1988
3fc720e4 1989 * callproc.c (setpgrp): Undefine before defining.
8cf8560b
DL
1990 (delete_temp_file): Return Qnil to avoid warning.
1991
1992 * config.in (HAVE_TERM_H, HAVE_STRUCT_TIMEZONE): Add.
1993
1994 * xfaces.c: Include fontset.h dependent on HAVE_WINDOW_SYSTEM, not
1995 HAVE_X_WINDOWS.
1996
1997 * fontset.h (free_face_fontset): Renamed from fs_free_face_fontset.
1998
1999 * composite.h (compose_text): Declare.
2000
2001 * xterm.c: Don't include sys/types.h unconditionally. Don't
2002 protect its inclusion with !USG (following xmenu.c).
2003
ea055732
GM
20042000-06-23 Gerd Moellmann <gerd@gnu.org>
2005
2006 * xfns.c (x_create_tip_frame): Initialize frame's colors like
2007 in x_create_frame.
2008
74b01b80
EZ
20092000-06-23 Eli Zaretskii <eliz@is.elta.co.il>
2010
2011 * coding.c (decode_eol_post_ccl): Special handling for undecided
2012 and inconsistent EOL types.
2013
64f3a166
GM
20142000-06-22 Gerd Moellmann <gerd@gnu.org>
2015
16cf31f7
GM
2016 * xrdb.c (x_load_resources): Add default resource for scroll bar's
2017 trough color and main window's background color.
2018
178c5d9c 2019 * xfns.c (Fx_file_dialog) [HAVE_MOTIF_2_1]: Handle events
16cf31f7
GM
2020 differently.
2021
2022 * xterm.h (Xt_app_con): External declaration.
2023
2024 * widget.c (EmacsFrameRealize): Fix typo.
178c5d9c 2025
486a103d
GM
2026 * widget.c (EmacsFrameRealize): Remove SubstructureRedirectMask.
2027
64f3a166
GM
2028 * xdisp.c (handle_stop): Initialize it->add_overlay_start to zero.
2029 (handle_invisible_prop): Record the start of invisible text in
2030 it->add_overlay_start.
2031 (struct overlay_entry): Add member `overlay'.
2032 (handle_overlay_change): Simplify.
2033 (next_overlay_string): After having processed overlay strings at the
2034 end of the buffer, record that fact in
2035 it->overlay_strings_at_end_processed_p.
2036 (compare_overlay_entries): If before- and after-strings come
2037 from the same overlay, let before-strings come first.
2038 (RECORD_OVERLAY_STRING): Record the overlay that strings come from.
2039 (load_overlay_strings): Take it->add_overlay_start into account
2040 when adding overlay strings.
2041
2042 * dispextern.h (struct it): Add member add_overlay_start.
2043
bb746ea6
DL
20442000-06-22 Dave Love <fx@gnu.org>
2045
2046 * s/isc3-0.h (C_SWITCH_SYSTEM): Define _XOPEN_SOURCE=500.
2047
2048 * s/gnu-linux.h (C_SWITCH_SYSTEM): Don't define _XOPEN_SOURCE here.
2049
a8f573f3
KH
20502000-06-22 Kenichi Handa <handa@etl.go.jp>
2051
2052 * ccl.c (ccl_driver) <CCL_End>: Decrement stack_idx only when it
2053 is greater than 0.
2054
9f2bbc92
DL
20552000-06-21 Dave Love <fx@gnu.org>
2056
178c5d9c 2057 * Makefile.in (GETLOADAVG_OBJ): Removed -- LIBOBJS does it.
9f2bbc92 2058
3ee5041c
SM
20592000-06-21 Stefan Monnier <monnier@cs.yale.edu>
2060
2061 * syntax.c (back_comment): Simplify string-parity counting (with
2062 the added benefit of handling multiple string-styles as long as
2063 they are not intertwined).
2064 Jump to the slow code as soon as a comment starter is found in
2065 a "string_lossage" position. Fixes the case: " /* " /* " */.
2066
4c343001
DL
20672000-06-21 Dave Love <fx@gnu.org>
2068
2069 * Makefile.in: Use GETLOADAVG_LIBS.
2070
2071 * config.in: Add HAVE_FCNTL_H, _FILE_OFFSET_BITS,
2072 _LARGEFILE_SOURCE, _LARGE_FILES, _XOPEN_SOURCE.
2073
e6365855
SM
20742000-06-20 Stefan Monnier <monnier@cs.yale.edu>
2075
2076 * syntax.c (describe_syntax): Recognize the `n'estable bit.
2077 (Fforward_comment, scan_lists):
2078 Check the comstyle of single-char comment-starters.
2079 (scan_sexps_forward): Don't try to recognize `half comment-enders' if
2080 we're just at the beginning of the comment (f.ex with (*) ... (*)).
d355bd8a
SM
2081 Check the comstyle of single-char comment-starters.
2082 Clarify control-flow around the Scomment case.
e6365855 2083
5700d2cc
DL
20842000-06-20 Dave Love <fx@gnu.org>
2085
d355bd8a
SM
2086 * fns.c (make_hash_table, maybe_resize_hash_table):
2087 Cast arg of next_almost_prime.
5700d2cc 2088
178c5d9c 2089 * tparam.c [emacs]: Include lisp.h.
5700d2cc
DL
2090
2091 * termcap.c [emacs]: Test HAVE_FCNTL_H, not USG5. Include lisp.h
2092 and unistd.h.
2093
4a27bdfb
GM
20942000-06-20 Gerd Moellmann <gerd@gnu.org>
2095
a61d762c
GM
2096 * keyboard.c (adjust_point_for_property): Check if display
2097 property should be treated as intangible by looking at its
2098 value.
2099
178c5d9c 2100 * xdisp.c (single_display_prop_intangible_p)
a61d762c
GM
2101 (display_prop_intangible_p): New functions.
2102
2103 * dispextern.h (display_prop_intangible_p): Add prototype.
2104
2105 * xdisp.c (dump_glyph_row): Show type of glyph->object.
178c5d9c 2106
4a27bdfb
GM
2107 * s/isc4-0.h (sigblock): Redefined to pass a pointer as second
2108 argument to sigprocmask.
2109
2110 * s/sco5.h (sigblock): Redefined to pass a pointer as second
2111 argument to sigprocmask.
2112
2113 * syssignal.h (sigblock, sigunblock) [USG5_4]: Set
2114 sigprocmask_set, and pass a pointer to it to sigprocmask.
2115
2116 * sysdep.c (sigprocmask_set): New variable.
2117
2118 * fileio.c (make_temp_name): Don't use `%s' in string passed to
2119 report_file_error.
2120
427ec082
SS
21212000-06-20 Sam Steingold <sds@gnu.org>
2122
2123 * xrdb.c: Don't declare xmalloc, xrealloc.
2124
8972fe79 21252000-06-20 Stefan Monnier <monnier@cs.yale.edu>
8972fe79
SM
2126
2127 * regex.c (re_match, re_match_2): Protect calls to alloca (0).
2128 (re_comp): Cast gettext return value to avoid complaints when
2129 !HAVE_LIBINTL.
2130
074b6efe
DL
21312000-06-20 Dave Love <fx@gnu.org>
2132
f85c008a
DL
2133 * m/stride.h, m/mips.h: Don't define HAVE_GETWD,
2134 HAVE_GETTIMEOFDAY.
2135
5700d2cc 2136 * m/ibmrt-aix.h: Don't declare HAVE_GETTIMEOFDAY, HAVE_VFORK.
f85c008a 2137
d355bd8a 2138 * m/ibmrs6000.h, m/ibmps2-aix.h, m/dpx2.h: Don't declare HAVE_GETWD.
f85c008a
DL
2139
2140 * m/alpha.h: Don't declare xmalloc, xrealloc.
2141
0af4f205
DL
2142 * s/ux4800.h: Don't declare GETTIMEOFDAY_ONE_ARGUMENT.
2143
2144 * s/usg5-4-2.h: Don't declare HAVE_GETWD, VFORK_RETURN_TYPE.
2145
2146 * s/umips.h: Don't declare HAVE_GETWD, HAVE_GETTIMEOFDAY.
2147
2148 * s/cxux.h, s/gnu-linux.h, s/iris3-6.h, s/irix3-3.h: Don't declare
2149 HAVE_GETWD.
2150
074b6efe
DL
2151 * keyboard.h (poll_for_input_1): Declare.
2152
2153 * getloadavg.c: Don't define NLIST_STRUCT (handled by configure).
2154
2155 * alloc.c (xmalloc, xrealloc, xfree): Define using POINTER_TYPE.
2156
2157 * doprnt.c: Don't declare xmalloc, xrealloc.
2158
2159 * lisp.h (x_set_tool_bar_lines, free_frame_xic, compose_text)
2160 (getenv, ctime, getwd): Removed.
2161 (xmalloc, xrealloc, xfree): Declare using POINTER_TYPE.
2162
2163 * xterm.h: Remove duplicate prototypes. Declare free_frame_xic,
2164 x_set_tool_bar_lines.
2165
2166 * config.in: Add HAVE_GETWD. Move some definitions above
2167 machine/system includes.
2168
68a5e97b
KH
21692000-06-20 Kenichi Handa <handa@etl.go.jp>
2170
95417e1e
KH
2171 * s/bsd386.h (HAVE_GETLOADAVG): Define it as 1.
2172
68a5e97b
KH
2173 * xfaces.c (font_list): Handle the case that REGISTRY doesn't
2174 contain information about ENCODING.
2175
2176 * fontset.c (FONTSET_ASCII): Use the first element of char table
2177 for an ASCII font, not defalt slot.
2178 (fontset_ref_via_base): If FONTSET doesn't contain information for
2179 C, try the default fontset.
2180 (make_fontset): Don't copy the default fontset.
2181 (fontset_font_pattern): Likewise.
2182 (accumulate_font_info): If ELT is nil, use the corresponding
2183 element in the default fontset.
2184
3b4fa1b2
DL
21852000-06-19 Dave Love <fx@gnu.org>
2186
943e731c
DL
2187 * syntax.c (Fparse_partial_sexp): Doc fix.
2188
2189 * regex.h: Test PROTOTYPES as well as __STDC__.
2190
3b4fa1b2
DL
2191 * unexalpha.c: Include errno.h, string.h, unistd.h. Don't declare
2192 errno, strerror. Put text after #endif in comment.
2193
2194 * xdisp.c (dump_glyph_matrix): Add `static' to declaration (for
2195 pcc).
2196
2197 * xterm.c (x_frame_of_widget): Likewise.
2198
cdf0357b
GM
21992000-06-19 Gerd Moellmann <gerd@gnu.org>
2200
2201 * abbrev.c (syms_of_abbrev): Set buffer_default's abbrev table
2202 to Vfundamental_mode_abbrev_table.
2203
2204 * alloc.c (mark_object) [GC_CHECK_MARKED_OBJECTS]: Check that no
2205 bogus objects are marked. This slows down GC by ~80 percent, but
2206 it might be worth trying when debugging GC-related problems.
2207 This feature requires conservative stack marking to be enabled.
2208
2209 * xterm.c (XTread_socket) <KeyPress>: In case XmbLookupString
2210 returns XLookupChars, reset `modifiers' to zero.
2211
998e9f8c
DL
22122000-06-19 Dave Love <fx@gnu.org>
2213
2214 * mktime.c: Unprotoized.
2215
18e21ce8 22162000-06-19 Richard Stallman <rms@gnu.org>
d1504184
GM
2217
2218 * data.c (set_internal): If variable is frame-local,
2219 store the new value immediately into the frame parameter alist.
2220
140c4ac6
KR
22212000-06-19 Ken Raeburn <raeburn@gnu.org>
2222
14358466
KR
2223 * xfns.c (jpeg_load): Fetch error-handling data first, then fill
2224 in the custom handler pointer.
2225
140c4ac6
KR
2226 * keyboard.c (follow_key, read_key_sequence): Use XUINT on key
2227 value, or checks for CHAR_META can fail when Lisp_Object is a
2228 union type.
2229 * keymap.c (get_keyelt): Likewise.
2230
10d7bf84
KH
22312000-06-19 Kenichi Handa <handa@etl.go.jp>
2232
2233 * ccl.h (struct ccl_program): New member eol_type.
2234 (struct ccl_spec): New member cr_carryover.
2235
2236 * ccl.c (CCL_WRITE_CHAR): Convert NL according to ccl->eol_type.
2237 (setup_ccl_program): Initialize ccl->eol_type to CODING_EOL_LF.
2238
2239 * coding.c (setup_coding_system) <4>: Reset member `cr_carryover'.
2240 (ccl_coding_driver): On encoding, initialize ccl->eol_type.
2241 (decode_eol_post_ccl): New function.
2242 (decode_coding): Don't detect EOL format here for CCL based coding
2243 systems.
2244 (decode_coding) <coding_type_ccl>: Handle carryovered CR. Call
2245 decode_eol_post_ccl after running the CCL program.
2246 (code_convert_region): Don't detect EOL format here for CCL based
2247 coding systems.
2248 (decode_coding_string): Likewise.
2249
52e386c2
KR
22502000-06-18 Ken Raeburn <raeburn@gnu.org>
2251
2252 * charset.c (update_charset_table): Use XINT on "iso_final_char"
2253 when treating it as an integer.
2254
2255 * coding.h (encode_coding_string): Declare.
2256
2257 * keyboard.c (read_key_sequence): Use XINT on "pos" when treating
2258 it as an integer.
2259
2260 * keymap.c (Fwhere_is_internal): Rename argument "keymap" to
2261 "xkeymap" to avoid shadowing the "enum map_type" value that needs
2262 to be passed to get_local_map.
2263
2264 * sound.c (Fplay_sound): Don't call make_number on
2265 Frun_hook_with_args count argument.
2266
2267 * xterm.c (x_send_scroll_bar_event): Fudge lisp object/integer
2268 for lisp objects in X event structure data field, when lisp
2269 objects are represented with unions.
2270 (x_scroll_bar_to_input_event): Ditto.
2271
b357b9d4
KR
22722000-06-16 Ken Raeburn <raeburn@gnu.org>
2273
2274 * xdisp.c (decode_mode_spec): In "no_value" case, do NUL
37d034d3
KR
2275 termination of string. Fix sense of test whether
2276 Vline_number_display_limit is an integer.
b357b9d4 2277
a871441d
GM
22782000-06-16 Gerd Moellmann <gerd@gnu.org>
2279
a9021acd
GM
2280 * xfaces.c (syms_of_xfaces) [DEBUG_X_COLORS]: Defsubr dump_colors
2281 only if HAVE_X_WINDOWS.
2282
6344985d
GM
2283 * keymap.c (describe_buffer_bindings): Add `\f\n' in front
2284 of titles.
2285
427ec082 2286 * dispnew.c (update_frame_1): Handle case that cursor vpos is
a871441d
GM
2287 out of bounds.
2288
228b083e
EZ
22892000-06-15 Eli Zaretskii <eliz@is.elta.co.il>
2290
2291 * unexec.c (toplevel): Fix last change, so as not to deprive MSDOS
2292 of its headers.
2293
c25b53a2
KH
22942000-06-15 Kenichi Handa <handa@etl.go.jp>
2295
2296 * coding.c (decode_coding_emacs_mule): Always set src_base at the
2297 start of the while loop.
2298
a6981b11
GM
22992000-06-15 Gerd Moellmann <gerd@gnu.org>
2300
e9924e52
GM
2301 * atimer.c (alarm_signal_handler): Add forward declaration.
2302
a6981b11
GM
2303 * data.c (set_internal): Remove debug code.
2304
25fa6deb
GM
23052000-06-14 Gerd Moellmann <gerd@gnu.org>
2306
dce6b995
GM
2307 * Makefile.in (bootstrap-temacs): Add `-I../src'.
2308
9f817ea4
GM
2309 * unexec.c (toplevel) [COFF]: Include coff.h.
2310
2311 * s/lynxos.h: New file.
2312
2313 * keymap.c (Fsingle_key_description): Enclose function key and
2314 event symbol names in angle brackets.
2315
8a4e3c0c
GM
2316 * xdisp.c (setup_echo_area_for_printing): Call
2317 message_log_maybe_newline if message_buf_print is not set.
2318
2319 * print.c (printchar, strout): Don't check message_buf_print
427ec082 2320 before calling setup_echo_area_for_printing because that
8a4e3c0c
GM
2321 function does something useful even when message_buf_print is
2322 already set.
2323
25fa6deb
GM
2324 * xdisp.c (message_truncate_lines, Qmessage_truncate_lines): New
2325 variables.
2326 (ensure_echo_area_buffers): Initialize echo buffer's
2327 truncate lines setting to nil.
2328 (with_echo_area_buffer): Don't set the echo buffer's truncate
2329 lines setting here.
8a4e3c0c 2330 (set_message_1): Set it here instead, based on the value
25fa6deb
GM
2331 of message_truncate_lines.
2332 (resize_mini_window): Handle case that lines are truncated.
2333 (syms_of_xdisp): Initialize Qmessage_truncate_lines. DEFVAR_BOOL
2334 message-truncate-lines.
2335
2336 * keyboard.c (read_char): Bind message-truncate-lines to t
2337 while displaying a help-echo.
2338
2339 * lisp.h (Qmessage_truncate_lines): External declaration.
2340
163dcff3
GM
23412000-06-13 Gerd Moellmann <gerd@gnu.org>
2342
1681ead6
GM
2343 * xdisp.c (Vline_number_display_limit): Renamed from
2344 line_number_display_limit.
2345 (syms_of_xdisp): Use DEFVAR_LISP for line-number-display-limit.
2346 Extend documentation string. Initialize
2347 Vline_number_display_limit to nil meaning no limit.
2348 (decode_mode_spec): Use Vline_number_display_limit with its new
2349 meaning.
2350
163dcff3
GM
2351 * xterm.c (x_check_font) [GLYPH_DEBUG]: Add prototype.
2352
18e21ce8 23532000-06-13 Richard Stallman <rms@gnu.org>
163dcff3
GM
2354
2355 * frame.c (Fmodify_frame_parameters): Doc fix.
427ec082 2356
163dcff3
GM
2357 * xfns.c (x_set_frame_parameters): Comment fix.
2358
2359 * frame.c (store_frame_param): Call swap_in_global_binding if the
2360 variable's current binding was chosen based on this frame.
2361
2362 * data.c (swap_in_global_binding): New function.
2363
a704139d
EZ
23642000-06-13 Eli Zaretskii <eliz@is.elta.co.il>
2365
2366 * msdos.c (IT_write_glyphs): Don't use CODING_REQUIRE_ENCODING
2367 macro, instead AND with CODING_REQUIRE_ENCODING_MASK.
2368
9b6610db
EZ
23692000-06-13 Eli Zaretskii <eliz@is.elta.co.il>
2370
2371 * msdos.h (EMACS_MSDOS_H): Renamed from MSDOS_H_.
2372
c68833d2
JR
23732000-06-12 Jason Rumney <jasonr@gnu.org>
2374
2375 * w32bdf.h (EMACS_W32BDF_H): Renamed from __W32BDF_H__
2376
2377 * w32.h (EMACS_W32_H): Renamed from _NT_H_
2378
2379 * w32gui.h (EMACS_W32GUI_H): Renamed from __W32GUI_H__
2380
2381 * w32inevt.h (EMACS_W32INEVT_H): Renamed from __NTINEVT_H__
2382
ed1056b3
GM
23832000-06-12 Gerd Moellmann <gerd@gnu.org>
2384
2385 * xfaces.c (Fdump_colors) [DEBUG_X_COLORS]: New function.
2386 (syms_of_xfaces): Defsubr Sdump_colors.
2387 (x_free_colors): Don't treat b&w specially on default visual.
2388 (x_free_dpy_colors): New function.
2389 (free_face_colors): Don't check visual class; it's done
2390 in x_free_colors.
2391
2392 * xterm.c (x_frame_of_widget): New function.
2393 (x_alloc_nearest_color_for_widget): Use it.
2394 (x_copy_dpy_color): New function.
2395 (x_destroy_window): Free various colors.
2396
5050a2ef
KH
23972000-06-12 Kenichi Handa <handa@etl.go.jp>
2398
2399 * ccl.h (EMACS_CCL_H): Renamed from _CCL_H.
2400
2401 * charset.h (EMACS_CHARSET_H): Renamed from _CHARSET_H.
2402
2403 * coding.h (EMASC_CODING_H): Renamed from _CODING_H.
2404
2405 * composite.h (EMACS_COMPOSITE_H): Renamed from _COMPOSITE_H.
2406
2407 * fontset.h (EMACS_FONTSET_H): Renamed from _FONTSET_H.
2408
fb1b041d
DL
24092000-06-11 Dave Love <fx@gnu.org>
2410
2411 * systime.h (EMACS_SYSTIME_H): Renamed from _SYSTIME_H.
2412
ff96b5f4
EZ
24132000-06-11 Eli Zaretskii <eliz@is.elta.co.il>
2414
2415 * msdos.h: Don't use _MSDOS_H_ as a symbol, use MSDOS_H_ instead.
2416
db8eeecd
GM
24172000-06-11 Gerd Moellmann <gerd@gnu.org>
2418
ed1056b3 2419 * xmenu.c (xmenu_show): Cast second parameter of lw_popup_menu
db8eeecd
GM
2420 to `XEvent *'.
2421
49b71c5f
KH
24222000-06-10 Kenichi Handa <handa@etl.go.jp>
2423
c479bd55
KH
2424 * regex.c (MAKE_CHAR) [!emacs]: Dummy macro for non-Emacs env.
2425 (regex_compile): Fix the code for handling the case of single byte
2426 char and multibyte char being mixed in a range within [...].
2427
ff6a65c2
KH
2428 * fileio.c (Finsert_file_contents): Be sure to setup src_multibyte
2429 and dst_multibyte members of coding.
2430
49b71c5f
KH
2431 * charset.c (update_charset_table): Update the table
2432 bytes_by_char_head.
2433 (init_charset_once): Initialize elements of bytes_by_char_head to
2434 1 except for leading codes for private charases.
2435
2436 * charset.h (CHARSET_8_BIT_GRAPHIC): Define as 0x80.
2437 (UNIBYTE_STR_AS_MULTIBYTE_P): Fix for an invalid multibyte
2438 sequence.
2439
9e80b57d
KR
24402000-06-09 Ken Raeburn <raeburn@gnu.org>
2441
2442 * xterm.c (x_connection_closed): If dpyinfo is NULL, don't try to
2443 access the data it doesn't point to.
2444
f83fe4b4
GM
24452000-06-08 Gerd Moellmann <gerd@gnu.org>
2446
2447 * xterm.c (XTread_socket) <FocusIn>: Queue a FOCUS_IN_EVENT which
db8eeecd 2448 will be translated to a switch-frame event when reading the
f83fe4b4
GM
2449 event queue. This is necessary because Emacs otherwise won't
2450 perform a switch-frame to a new frame until some other event, for
2451 example a keystroke event, forces it to do so. This has various
2452 effects, one visible being that the cursor of a frame created with
2453 C-x 5 2 or switched to with a window manager key binding like
2454 A-TAB stays hollow because selected_window isn't on the newly
2455 focused frame until the switch-frame is performed.
2456
2457 * keyboard.c (kbd_buffer_get_event): Handle FOCUS_IN_EVENT by
2458 generating a switch-frame event if necessary.
2459
2460 * termhooks.h (enum event_kind): Add FOCUS_IN_EVENT.
2461
2462 * xdisp.c (handle_fontified_prop): Don't GCPRO local var `pos';
2463 it's an integer.
2464
0890801b
KH
24652000-06-08 Kenichi Handa <handa@etl.go.jp>
2466
2467 * fontset.c (Fset_fontset_font): The arg CHARACTER may be a
2468 charset.
2469
173cbca8
GM
24702000-06-07 Gerd Moellmann <gerd@gnu.org>
2471
3091c2a6
GM
2472 * window.c (displayed_window_lines): Take empty lines at
2473 the bottom of a window into account.
427ec082 2474
f38952fe
GM
2475 * window.c (displayed_window_lines): New function.
2476 (Fmove_to_window_line): Use displayed_window_lines to determine
2477 the number of lines to move, instead of using the window's height.
2478
2479 * lread.c (readevalloop): If READCHARFUN sets point to ZV, arrange
2480 to stop reading, even if the form read sets point to a different
2481 value when evaluated.
2482
427ec082 2483 * xdisp.c (display_line): Fix code deciding in which line to
173cbca8
GM
2484 put the cursor.
2485
6ba6c818
KH
24862000-06-07 Kenichi Handa <handa@etl.go.jp>
2487
2488 * fileio.c (e_write): Free composition data if stored in
2489 coding->cmp_data.
2490
5f1aea9a
GM
24912000-06-06 Gerd Moellmann <gerd@gnu.org>
2492
666852af
GM
2493 * xdisp.c (display_line): Set row's and iterator's
2494 starts_in_middle_of_char_p and ends_in_middle_of_char_p flags.
2495 Set cursor even if row ends in the middle of a character.
2496 (dump_glyph_row): Print values of new flags.
2497 (redisplay_window) <cursor movement in unchanged window>: When
2498 point has been moved forward, and PT is at the end of the cursor
2499 row, don't place the cursor in the next row if the cursor row ends
2500 in the middle of a character or at ZV.
2501
2502 * dispextern.h (struct it): Add starts_in_middle_of_char_p.
2503 (struct glyph_row): Add starts_in_middle_of_char_p and
2504 ends_in_middle_of_char_p.
2505 (MATRIX_ROW_ENDS_IN_MIDDLE_OF_CHAR_P): Test row's
2506 ends_in_middle_of_char_p flag.
2507 (MATRIX_ROW_STARTS_IN_MIDDLE_OF_CHAR_P): Likewise.
2508
d13f3e2e
GM
2509 * term.c (append_glyph): Revert change of 2000-06-06.
2510
2511 * xdisp.c (display_line): Revert change of 2000-06-06. Treat
2512 padding glyph not fitting on line as whole character not
2513 fitting on line.
2514
5f1aea9a
GM
2515 * xterm.c (x_produce_glyphs): Don't xassert `it->descent > 0';
2516 this isn't true for images with `:ascent 100'.
2517
10cda9b0
KH
25182000-06-06 Kenichi Handa <handa@etl.go.jp>
2519
ed00559d
KH
2520 * buffer.c (Fset_buffer_multibyte): Don't make the current buffer
2521 as modified if it is originally unmodified.
2522
10cda9b0
KH
2523 * term.c (encode_terminal_code): Change the way to check if
2524 terminal coding does any conversion.
2525 (append_glyph): Set glyph->pixel_width correctly.
2526
2527 * xdisp.c (display_line): While checking line continuation, pay
2528 attention to a padding glyph.
2529
1969fae2
GM
25302000-06-05 Gerd Moellmann <gerd@gnu.org>
2531
2532 * xdisp.c (redisplay_window): Always use set_buffer_internal_1.
2533
162ccef4
DL
25342000-06-05 Dave Love <fx@gnu.org>
2535
f19f32dd
DL
2536 * xdisp.c: Include fontset.h.
2537
2538 * xfns.c (x_real_positions): Declare tmp_nchildren as unsigned.
2539
2540 * xterm.c (x_calc_absolute_position): Declare nchildren unsigned.
2541
2542 * dispnew.c: Conditionally include term.h.
2543
2544 * coding.h: Declare code_convert_string_norecord.
2545
2546 * frame.h (struct frame): Use volatile unconditionally.
2547
2548 * buffer.h: Remove Vbefore_change_function, Vafter_change_function.
2549
2550 * xmenu.c (menu_item_selection): Declare volatile unconditionally.
2551
2552 * systime.h: Protect against multiple inclusion.
2553 (timezone) [USG5_4]: Define as time_t.
2554
2555 * lisp.h (DEFUN, EXFUN): Test PROTOTYPES.
2556 (Foptimize_char_table, make_temp_name): Declare.
2557
2558 * Makefile.in (xdisp.o): Depend on fontset.h.
2559
2560 * xterm.c (x_calc_absolute_position): Declare nchildren unsigned.
2561
2562 * lisp.h (DEFUN, EXFUN): Test PROTOTYPES.
2563 (Foptimize_char_table, make_temp_name): Declare.
2564
427ec082 2565 * s/irix4-0.h:
162ccef4
DL
2566 * s/irix5-0.h:
2567 * s/netbsd.h: Don't define autoconfiscated MATHERR.
2568
2082fe81
DL
25692000-06-02 Dave Love <fx@gnu.org>
2570
2571 * lread.c (_XOPEN_SOURCE, __EXTENSIONS__): Don't define.
2572
dcf671d2
GM
25732000-06-02 Gerd Moellmann <gerd@gnu.org>
2574
2575 * xfaces.c (realize_x_face): When copying BASE_FACE bitwise to the
1969fae2 2576 result face, set flags in that face indicating that colors may not
dcf671d2
GM
2577 be freed.
2578
2579 * xterm.c (x_set_mouse_face_gc): If first glyph isn't a character
2580 glyph, use the ASCII NUL character to determine the face.
2581
d42122a3
DL
25822000-06-02 Dave Love <fx@gnu.org>
2583
2584 * sysdep.c: Conditionally include stdlib.h, unistd.h.
2585 (VFORK_RETURN_TYPE): Remove.
427ec082 2586
d42122a3
DL
2587 * config.in: Add NO_MATHERR.
2588
dd432f16
DL
25892000-06-01 Dave Love <fx@gnu.org>
2590
90aa4ea8
DL
2591 * cmds.c (internal_self_insert): Don't check
2592 Vbefore_change_function, Vafter_change_function.
2593
2594 * insdel.c (signal_before_change, signal_after_change): Likewise.
2595
2596 * buffer.c (Vbefore_change_function, Vafter_change_function):
2597 Variables and their initializations deleted.
2598
2330c9d4
DL
2599 * callint.c (Fcall_interactively): Doc fix.
2600
dd432f16
DL
2601 * terminfo.c (ospeed) [HAVE_SPEED_T]: Don't declare extern.
2602
bf9e8804
DL
26032000-05-31 Dave Love <fx@gnu.org>
2604
2605 * textprop.c: Revert last change -- duplicated.
2606
3694b4ab
GM
26072000-05-31 Gerd Moellmann <gerd@gnu.org>
2608
2609 * dispnew.c (find_glyph_row_slice, swap_glyphs_in_rows): Put
2610 in #if 0.
2611
2612 * lisp.h (eassert) [!ENABLE_CHECKING]: Define as `(void) 0'.
2613
f14156cd
JR
26142000-05-31 Jason Rumney <jasonr@gnu.org>
2615
8119aab8
JR
2616 * search.c (Fre_search_forward, Fre_search_backward)
2617 (Fposix_search_backward, Fposix_search_forward): Fix newlines in docs.
2618
f14156cd
JR
2619 * w32select.c (Fw32_set_clipboard_data): Change QNil to Qnil.
2620
4aab9be3
JR
26212000-05-30 Jason Rumney <jasonr@gnu.org>
2622
2623 * coding.h (ENCODE_SYSTEM, DECODE_SYSTEM) [WINDOWSNT]: New macros.
2624 [WINDOWSNT]: Add extern for Vw32_system_coding_system.
2625
2626 * dispextern.h (struct glyph) [WINDOWSNT]: Add w32_font_type
2627 member.
2628
2629 * fileio.c (Fread_file_name) [HAVE_NTGUI]: Use file dialog.
2630 (Fread_file_name) [HAVE_NTGUI, USE_MOTIF]: Do not attempt to
2631 expand a nil default_filename.
2632
2633 * keyboard.c (make_lispy_event) [WINDOWS_NT]: Pass a window
2634 pointer to glyph_to_pixel_coords, not a frame.
2635
2636 * makefile.nt (w32fns.obj, w32menu.obj): Add charset.h and
2637 coding.h to dependencies.
2638
2639 * w32bdf.c (w32_load_bdf_font): Initialize font->double_byte_p.
2640
2641 * w32console.c (glyph_to_pixel_coords): Change first parameter to
2642 window pointer to be consistent with w32term.c and xterm.c.
2643
2644 * w32fns.c: Format and doc changes to bring closer to xfns.c.
2645 (VIETNAMESE_CHARSET): Define if not defined in system headers.
2646 (Qline_spacing, Qcenter): New variables.
2647 (Qw32_charset_*, w32_codepage_for_font): Moved from w32term.c.
2648 (x_set_line_spacing): New function.
2649 (x_set_frame_parameters): Use FRAME_NEW_WIDTH, FRAME_NEW_HEIGHT
2650 macros.
2651 (x_specified_cursor_type): New function.
2652 (x_set_cursor_type): Use it.
2653 (x_set_name, x_set_title): Use ENCODE_SYSTEM to encode titlebar
2654 and icon strings.
2655 (validate_x_resource_name, x_get_resource_string): Measure lengths
2656 of external strings in bytes.
2657 (w32_wnd_proc) [WM_MEASURE_ITEM]: Avoid calling
2658 GetTextExtentPoint32 with NULL title.
2659 (Fx_create_frame): Initialize Qline_spacing.
2660 (w32_load_system_font): Initialize font->double_byte_p.
2661 (x_to_w32_charset): Use Vw32_charset_info_alist.
2662 (Image, busy cursor, tooltip functions): Merged changes from
2663 xfns.c. Not yet functional on Windows.
2664
2665 * w32gui.h (W32FontStruct): Add double_byte_p member.
2666
2667 * w32inevt.c (NUM_TRANSLATED_MOUSE_BUTTONS): New constant.
2668 (emacs_button_translation): Use it.
2669 (do_mouse_event): Allow up to 32 mouse buttons by allowing any bit
2670 in `mask' to be set.
2671
2672 * w32menu.c (single_submenu, w32_menu_show): Call ENCODE_SYSTEM on
2673 menu strings.
2674
2675 * w32term.c: Format and doc changes to bring closer to xterm.c.
2676 (w32_char_font_type): New enum.
2677 (Qw32_charset_*, w32_codepage_for_font): Moved to w32fns.c.
2678 (w32_per_char_metric): Use w32_char_font_type instead of unicode_p.
2679 (w32_encode_char): New function.
2680 (x_encode_char): Removed.
2681 (x_get_glyph_and_face_encoding): Use w32_encode_char in place of
2682 x_encode_char and w32_font_is_double_byte.
2683 (x_produce_image_glyph): Use image_ascent.
2684 (x_produce_glyphs): Use new version of w32_per_char_metric and
2685 handle NULL return value. Allow extra line spacing.
2686 (W32_TEXTOUT): Distinguish between Unicode and DBCS text.
2687 (w32_get_glyph_overhangs): Remove unicode_p param. Use
2688 w32_font_type member of glyph instead.
2689 (x_draw_glyph_string): Draw underline and strike-out for BDF fonts.
2690 (fast_find_position): Make sure not to consider rows not visible
2691 in the window.
2692 (w32_read_socket) [WM_MENUSELECT]: Cannot call
2693 w32_menu_display_help with input blocked, as it can abort.
2694 (x_display_and_set_cursor): Choose cursor depending
2695 on buffer-local value of cursor_type.
2696 (x_draw_bar_cursor): Add parameter WIDTH.
2697
2698 * w32term.h (CP_DEFAULT): Define.
2699 (Fx_display_color_p, Fx_display_grayscale_p, image_ascent): Declare.
2700
10fc3187
GM
27012000-05-30 Gerd Moellmann <gerd@gnu.org>
2702
2703 * search.c (Fre_search_forward, Fre_search_backward)
2704 (Fposix_search_backward, Fposix_search_forward): Doc fix.
2705
d0555360
KH
27062000-05-30 Kenichi Handa <handa@etl.go.jp>
2707
2708 * coding.c (detect_coding_iso2022): Fix code for checking
2709 CODING_CATEGORY_MASK_ISO_8_2.
2710
f1ad044f
SM
27112000-05-29 Stefan Monnier <monnier@cs.yale.edu>
2712
2713 * regex.c (PREFETCH_NOLIMIT): New function.
2714 (re_match_2_internal): Use it and adjust the end_match_2 logic.
2715
84ec3b4b
GM
27162000-05-29 Gerd Moellmann <gerd@gnu.org>
2717
66254a13
GM
2718 * syntax.c (find_defun_start): Move test for
2719 open_paren_in_column_0_is_defun_start outside of the loop.
2720
49e70dec
GM
2721 * xdisp.c (redisplay_window): Really switch buffers when
2722 displaying mode lines, and temporarily set selected_frame to the
2723 frame of the window that's redisplayed.
2724
84ec3b4b
GM
2725 * xfaces.c (free_realized_faces): Block/unblock input.
2726 (free_realized_multibyte_face): Ditto.
2727
869a3a14
DL
27282000-05-29 Dave Love <fx@gnu.org>
2729
2730 * textprop.c (Qkeymap): New variable.
2731 (syms_of_textprop): Intern it.
2732
2733 * keymap.c: Include intervals.h.
2734 (Fkey_binding, Fwhere_is_internal): Deal with `keymap' property.
2735
2736 * Makefile.in (keymap.o): Depend on intervals.h.
2737
2738 * keyboard.c (menu_bar_items, tool_bar_items)
2739 (Fexecute_extended_command): Deal with `keymap' property.
2740 (read_key_sequence): Track map from `keymap' property as well as
2741 `local_map'.
2742
2743 * intervals.c (get_local_map): Extra arg to allow looking for
2744 `keymap' too.
2745
2746 * intervals.h (map_property): New enum.
2747 (get_local_map): Extra arg using it.
2748 (Qkeymap): Declare.
2749
84ec3b4b 2750 * lisp.h (get_local_map): Don't declare here.
869a3a14 2751
89d0c844
KH
27522000-05-29 Kenichi Handa <handa@etl.go.jp>
2753
2754 * Makefile.in (callproc.o): Depend on composite.h.
2755
2756 * callproc.c: Include composite.h.
2757 (Fcall_process): Handle composition correctly.
2758
2759 * coding.h (coding_allocate_composition_data): Extern it.
2760 (coding_restore_composition): Likewise.
2761
2762 * coding.c (DECODE_COMPOSITION_START): If coding->cmp_data is not
2763 yet allocated, finish decoding with result
2764 CODING_FINISH_INSUFFICIENT_CMP.
2765 (coding_allocate_composition_data): Make it non-static.
2766 (coding_restore_composition): Likewise.
2767
797a084a
EZ
27682000-05-29 Eli Zaretskii <eliz@is.elta.co.il>
2769
2770 * charset.c (syms_of_charset): Revert last change.
2771
cf872af5
EZ
27722000-05-28 Eli Zaretskii <eliz@is.elta.co.il>
2773
2774 * term.c (produce_glyphs): Treat characters from the eight-bit-*
d7d0dac0
SM
2775 charsets as unibyte, with 1-column screen width. Sent by Kenichi
2776 Handa.
cf872af5 2777
5b1ae051
EZ
27782000-05-28 Eli Zaretskii <eliz@is.elta.co.il>
2779
2780 * charset.c (syms_of_charset): Set width of character sets
2781 eight-bit-control and eight-bit-graphic to 1 column.
2782
34ec9ebe
GM
27832000-05-26 Gerd Moellmann <gerd@gnu.org>
2784
2785 * config.in (HAVE_SPEED_T): New define.
2786
2787 * sysdep.c, terminfo.c (ospeed) [HAVE_SPEED_T]: Declare as
2788 `extern speed_t'.
2789
dd854dc2
DL
27902000-05-26 Dave Love <fx@gnu.org>
2791
2792 * coding.c (shrink_decoding_region): Initialize eol_conversion.
2793
2794 * data.c (Qsubrp, Qmany, Qunevalled): New variables.
2795 (Fsubr_arity): New function.
2796 (syms_of_data): Install them.
2797
ba9f8f95
KH
27982000-05-26 Kenichi Handa <handa@etl.go.jp>
2799
0f3e0672
KH
2800 * charset.c (init_charset_once): Set the table bytes_by_char_head
2801 correctly.
2802
cebefb44
KH
2803 * fontset.c (syms_of_fontset): Adjust the font name for ascii of
2804 the default fontset to what Emacs uses by default.
0f3e0672
KH
2805 (check_registry_encoding): This function deleted.
2806 (Fset_fontset_font): Remove the adhoc condition for the default
2807 fontset. Allow cons in FONTNAME.
cebefb44 2808
0f3e0672
KH
2809 * fns.c (map_char_table): Ignore char-table entries for
2810 charsets eight-bit-control and eight-bit-graphic.
ba9f8f95 2811
7a18af49
KR
28122000-05-25 Ken Raeburn <raeburn@gnu.org>
2813
2814 * emacs.c (main): Initialize keyboard syms before initializing
2815 window code, so face names are available.
2816
d2af47df
SM
28172000-05-25 Stefan Monnier <monnier@cs.yale.edu>
2818
2819 * regex.c (at_begline_loc_p): Also recognize the \\(?:^ case
2820 of an anchor at the beginning of a shy-group.
2821
fc6a6a4e
GM
28222000-05-25 Gerd Moellmann <gerd@gnu.org>
2823
2824 * xdisp.c (handle_invisible_prop): Don't try to skip over
2825 invisible text if end of text is already reached.
2826
005f0d35
DL
28272000-05-25 Dave Love <fx@gnu.org>
2828
02513cdd
DL
2829 * xdisp.c (Fdump_glyph_matrix): Declare the arg.
2830
005f0d35
DL
2831 * coding.c (encode_eol): Add null statement after label.
2832
89f6ca4e
EZ
28332000-05-25 Eli Zaretskii <eliz@is.elta.co.il>
2834
2835 * w16select.c (Fw16_set_clipboard_data): Fix the change from
2836 2000-05-20.
2837
a4e1759e
KH
28382000-05-25 Kenichi Handa <handa@etl.go.jp>
2839
2840 * ccl.c (ccl_driver): Fix previous change.
2841
eacfd7fe
KH
28422000-05-25 Kenichi Handa <handa@etl.go.jp>
2843
46ab33a9
KH
2844 * coding.c (run_pre_post_conversion_on_str): Set point to the
2845 beginning of buffer before calling coding->post_read_conversion.
2846 (decode_coding_string): Give correct args to
2847 run_pre_post_conversion_on_str.
2848 (encode_coding_string): Likewise.
2849
eacfd7fe
KH
2850 * ccl.c (ccl_driver) <CCL_ReadMultibyteChar2>
2851 <CCL_WriteMultibyteChar2>: Handle charsets eight-bit-control and
2852 eight-bit-graphic correctly.
2853
f8569325
DL
28542000-05-24 Kenichi HANDA <handa@etl.go.jp>
2855
2856 * fileio.c (Finsert_file_contents): Even if a file is not found,
2857 execute codes for setting up coding system. Call
2858 after-insert-file-functions unconditionally.
2859
04545643
GM
28602000-05-24 Gerd Moellmann <gerd@gnu.org>
2861
2862 * callproc.c, emacs.c, sysdep.c (setpgrp): Don't define if USG and
2863 BSD_PGRPS are not defined.
2864
747d90ea
KH
28652000-05-24 Kenichi Handa <handa@etl.go.jp>
2866
2867 * charset.c (update_charset_table): Accept nil in LONG_NAME and
2868 DESCRIPTION.
2869 (syms_of_charset): Avoid building same strings.
2870
716e3b88
GM
28712000-05-23 Gerd Moellmann <gerd@gnu.org>
2872
2873 * lread.c (Fload): Add a comment about the meaning of
2874 Vuser_init_file being t.
2875
2876 * puresize.h (BASE_PURESIZE): Increase to 675000.
2877
2878 * s/gnu-linux.h (setpgrp): Don't define it here because this
2879 prevents compilation on GNU/Linux systems with glib 2.2.
2880
2881 * callproc.c, emacs.c, sysdep.c (setpgrp) [HAVE_SETPGID]: Define
2882 as setpgid.
427ec082 2883
9aeb39fa
EZ
28842000-05-23 Eli Zaretskii <eliz@is.elta.co.il>
2885
2886 * Makefile.in (SOME_MACHINE_LISP): Add disp-table.elc,
2887 dos-vars.elc, ccl.elc, and codepage.elc, all loaded by the MS-DOS
2888 version.
2889 (MSDOS_SUPPORT): Add dos-vars.elc, ccl.elc, and codepage.elc.
2890
29ced61b
KH
28912000-05-23 Kenichi Handa <handa@etl.go.jp>
2892
0574a2ed
KH
2893 * syntax.c (skip_chars): Use FETCH_STRING_CHAR_ADVANCE
2894 unconditionally.
2895
3d80f24d
KH
2896 * msdos.c (IT_write_glyphs): Set coding->src_multibyte to 1.
2897
2898 * term.c (encode_terminal_code): Set coding->src_multibyte
2899 properly.
2900
29ced61b
KH
2901 * coding.c (encode_eol): Fix a bug of DOS style EOL encoding.
2902
d7e00792
KH
29032000-05-22 Kenichi Handa <handa@etl.go.jp>
2904
c9d80d38
KH
2905 * keyboard.c (read_char): Allow character codes 128..255 to be
2906 handled by input-method-function.
2907
d7e00792
KH
2908 * insdel.c (adjust_markers_for_replace): Fix previous change.
2909 (adjust_after_replace): If PREV_TEXT is nil, call
2910 adjust_markers_for_insert, not adjust_markers_for_replace.
2911
087121cc 29122000-05-20 NIIBE Yutaka <gniibe@mri.co.jp>
427ec082 2913
087121cc
GM
2914 * s/gnu-linux.h (UNIX98_PTYS) [HAVE_GRANDPT]: Define.
2915 (PTY_ITERATION, PTY_NAME_SPRINTF, PTY_OPEN, PTY_TTY_NAME_SPRINTF)
2916 [HAVE_GRANDPT]: Define.
2917 (C_SWITCH_SYSTEM): Add -D_XOPEN_SOURCE.
2918
2919 * sysdep.c (setup_pty): Treat case that UNIX98_PTYS is defined
2920 like SYSV_PTYS.
2921
2922 * config.in (HAVE_GRANDPT, HAVE_GETPT): New defines.
2923
2924 * process.c (toplevel) [UNIX98_PTYS]: Include stdlib.h.
2925
c9671f81
KH
29262000-05-20 Kenichi Handa <handa@etl.go.jp>
2927
2928 The following changes are to handle 8-bit characters in a
2929 multibyte buffer/string without facing with byte combining
2930 problem. Two new charsets eight-bit-control (for 0x80..0x9F) and
2931 eight-bit-graphic (for 0xA0..0xFF) are introduced.
2932
2933 * Makefile.in (fns.o): Depend on charset.h.
2934
2935 * alloc.c (Fmake_byte_code): If BYTECODE-STRING is multibyte,
2936 convert it to unibyte.
2937 (make_string): Use parse_str_as_multibyte, not chars_in_text.
2938
2939 * buffer.c (advance_to_char_boundary): Don't use DEC_POS to find a
2940 apparent char boundary.
2941 (Fset_buffer_multibyte): Convert 8-bit characters in the range
2942 0x80..0x9F to/from multibyte form.
2943
2944 * bytecode.c (Fbyte_code): If arg BYTESTR is multibyte, convert it
2945 to unibyte.
2946
2947 * callproc.c (Fcall_process): Always encode an argument string if
2948 it is multibyte. Setup src_multibyte and dst_multibyte members of
2949 process_coding properly.
ce75fd23 2950
c9671f81
KH
2951 * category.c (Fmodify_category_entry): Use SPLIT_CHAR, not
2952 SPLIT_NON_ASCII_CHAR.
2953
2954 * ccl.c (CCL_WRITE_CHAR): Be sure to write single byte characters
2955 as is.
2956 (CCL_MAKE_CHAR): Use MAKE_CHAR, not MAKE_NON_ASCII_CHAR.
2957
2958 * charset.c (Qeight_bit_control, Qeight_bit_graphic): New
2959 variables.
2960 (SPLIT_CHARACTER_SEQ): This macro deleted.
2961 (SPLIT_MULTIBYTE_SEQ): Assume that multibyte sequence at STR is
2962 valid.
2963 (CHAR_COMPONENTS_VALID_P): Handle new charsets; eight-bit-control
2964 and eight-bit-graphic.
2965 (char_to_string): Likewise. Signal an error for too large
2966 character code.
2967 (char_printable_p): Return 0 for 8-bit characters.
2968 (update_charset_table): Update iso_charset_table only when a final
2969 character is non-negative.
2970 (find_charset_in_text): Renamed from find_charset_in_str.
2971 Arguments and return value changed. Callers changed.
2972 (Fdefine_charset): Args ISO-FINAL-CHAR and ISO-GRAPHIC-PLANE can
2973 be -1 if CHARSET is used only internally.
2974 (Fmake_char_internal): Handle new charsets; eight-bit-control and
2975 eight-bit-graphic.
2976 (Fcharset_after): Simplified.
2977 (char_valid_p): Use SPLIT_CHAR, not SPLIT_NON_ASCII_CHAR.
2978 (char_bytes): Return 2 for chars of the range 0xA0..0xFF.
2979 (multibyte_chars_in_text): Simplified by assuming there's no
2980 invalid multibyte sequence.
2981 (parse_str_as_multibyte, str_as_multibyte, str_to_multibyte,
2982 str_as_unibyte): New functions.
2983 (Fstring): Simpified by assuming that byte combining never
2984 happens.
2985 (init_charset_once): Initialization for
2986 LEADING_CODE_8_BIT_CONTROL.
2987 (syms_of_charset): Intern and staticpro Qeight_bit_control and
2988 Qeight_bit_graphic. Include them in Vcharset_list. Make charsets
2989 eight-bit-control and eight-bit-graphic.
2990
2991 * charset.h (LEADING_CODE_8_BIT_CONTROL, CHARSET_8_BIT_CONTROL,
2992 CHARSET_8_BIT_GRAPHIC): New macros.
2993 (SINGLE_BYTE_CHAR_P): Make it faster by using casting.
2994 (CHARSET_ISO_GRAPHIC_PLANE): Use XINT instead of XFASTINT.
2995 (CHARSET_REVERSE_CHARSET): Likewise.
2996 (CHARSET_VALID_P): Handle new charsets; eight-bit-control and
2997 eight-bit-graphic.
2998 (BYTES_BY_CHAR_HEAD, WIDTH_BY_CHAR_HEAD): Optimize for ASCII.
2999 (CHAR_CHARSET, MAKE_CHAR, SPLIT_CHAR, CHAR_BYTES): Likewise.
3000 (PARSE_MULTIBYTE_SEQ) [BYTE_COMBINING_DEBUG]: Abort if we
3001 encounter an invalid multibyte sequence.
3002 (PARSE_MULTIBYTE_SEQ) [not BYTE_COMBINING_DEBUG]: Assume multibyte
3003 sequence is always valid.
3004 (MAKE_NON_ASCII_CHAR, SPLIT_NON_ASCII_CHAR): These macros Deleted.
3005 (UNIBYTE_STR_AS_MULTIBYTE_P, MULTIBYTE_STR_AS_UNIBYTE_P): New
3006 macros.
3007 (CHAR_STRING): For 8-bit characters, call char_to_string.
3008 (INC_POS) [not BYTE_COMBINING_DEBUG]: Faster version. Assume
3009 multibyte sequence is always valid.
3010 (BUF_INC_POS) [not BYTE_COMBINING_DEBUG]: Likewise.
3011 (parse_str_as_multibyte, str_as_multibyte, str_to_multibyte,
3012 str_as_unibyte): Extern them.
3013 (BCOPY_SHORT): Fix a bug.
3014 (CHAR_LEN): This macro deleted. Callers changed to use
3015 CHAR_BYTES.
3016 (FETCH_STRING_CHAR_ADVANCE): Check multibyteness of STRING.
3017 (FETCH_STRING_CHAR_ADVANCE_NO_CHECK): New macro.
3018 (FETCH_CHAR_ADVANCE): Check multibyteness of the current buffer.
3019
bd4bde7f 3020 * coding.c (ONE_MORE_BYTE, TWO_MORE_BYTES): Set coding->result to
c9671f81
KH
3021 CODING_FINISH_INSUFFICIENT_SRC if there's not enough source.
3022 (ONE_MORE_CHAR, EMIT_CHAR, EMIT_ONE_BYTE, EMIT_TWO_BYTE,
3023 EMIT_BYTES): New macros.
3024 (THREE_MORE_BYTES, DECODE_CHARACTER_ASCII,
3025 DECODE_CHARACTER_DIMENSION1, DECODE_CHARACTER_DIMENSION2): These
3026 macros deleted.
3027 (CHECK_CODE_RANGE_A0_FF): This macro deleted.
3028 (detect_coding_emacs_mule): Use UNIBYTE_STR_AS_MULTIBYTE_P to
3029 check the validity of multibyte sequence.
3030 (decode_coding_emacs_mule): New function.
3031 (encode_coding_emacs_mule): New macro.
3032 (detect_coding_iso2022): Use ONE_MORE_BYTE to fetch a byte from
3033 the source.
3034 (DECODE_ISO_CHARACTER): Just return a character code.
3035 (DECODE_COMPOSITION_START): Set coding->result instead of result.
3036 (decode_coding_iso2022, decode_coding_sjis_big5, decode_eol): Use
3037 EMIT_CHAR to produced decoded characters. Exit the loop only by
3038 macros ONE_MORE_BYTE or EMIT_CHAR. Don't handle the case of last
3039 block here.
3040 (ENCODE_ISO_CHARACTER): Don't translate character here. Produce
3041 only position codes for an invalid character.
3042 (encode_designation_at_bol): Return new destination pointer. 5th
3043 arg DSTP is changed to DST.
3044 (encode_coding_iso2022, decode_coding_sjis_big5): Get a character
3045 from the source by ONE_MORE_CHAR. Don't handle the case of last
3046 block here.
3047 (DECODE_SJIS_BIG5_CHARACTER, ENCODE_SJIS_BIG5_CHARACTER): These
3048 macros deleted.
3049 (detect_coding_sjis, detect_coding_big5, detect_coding_utf_8,
3050 detect_coding_utf_16, detect_coding_ccl): Use ONE_MORE_BYTE and
3051 TWO_MORE_BYTES to fetch a byte from the source.
3052 (encode_eol): Pay attention to coding->src_multibyte.
3053 (detect_coding, detect_eol): Preserve members src_multibyte and
3054 dst_multibyte.
3055 (DECODING_BUFFER_MAG): Return 2 even for coding_type_raw_text.
3056 (encoding_buffer_size): Set magnification to 3 for all coding
3057 systems that require encoding.
3058 (ccl_coding_driver): For decoding, be sure that the result is
3059 valid multibyte sequence.
3060 (decode_coding): Initialize coding->errors and coding->result.
3061 For emacs-mule, call decode_coding_emacs_mule. For no-conversion
3062 and raw-text, always call decode_eol. Handle the case of last
3063 block here. If not coding->dst_multibyte, convert the resulting
3064 sequence to unibyte.
3065 (encode_coding): Initialize coding->errors and coding->result.
3066 For emacs-mule, call encode_coding_emacs_mule. For no-conversion
3067 and raw-text, always call encode_eol. Handle the case of last
3068 block here.
3069 (shrink_decoding_region, shrink_encoding_region): Detect cases
3070 that we can't skip data more rigidly.
3071 (code_convert_region): Setup src_multibyte and dst_multibyte
3072 members of coding. For decoding, if the buffer is multibyte,
3073 convert the source sequence to unibyte in advance. For encoding,
3074 if the buffer is multibyte, convert the resulting sequence to
3075 multibyte afterward.
3076 (run_pre_post_conversion_on_str): New function.
3077 (code_convert_string): Deleted and divided into the following two.
3078 (decode_coding_string, encode_coding_string): New functions.
3079 (code_convert_string1, code_convert_string_norecord): Call one of
3080 above.
3081 (Fdecode_sjis_char, Fdecode_big5_char): Use MAKE_CHAR instead of
3082 MAKE_NON_ASCII_CHAR.
3083 (Fset_terminal_coding_system_internal,
3084 Fset_safe_terminal_coding_system_internal): Setup src_multibyte
3085 and dst_multibyte members.
3086 (init_coding_once): Initialize iso_code_class with new enum
3087 ISO_control_0 and ISO_control_1.
3088
3089 * coding.h (enum iso_code_class_type): Member ISO_control_code is
3090 devided into ISO_control_0 and ISO_control_1.
3091 (struct coding_system): New members src_multibyte, dst_multibyte,
3092 errors, and result. Delete member fake_multibyte.
3093 (CODING_REQUIRE_DECODING): Return 1 if coding->dst_multibyte is
3094 nonzero.
3095 (CODING_REQUIRE_ENCODING): Return 1 if coding->src_multibyte is
3096 nonzero.
3097
3098 * data.c (Faref): Use SPLIT_CHAR instead of SPLIT_NON_ASCII_CHAR.
3099 (Faset): Likewise.
3100
3101 * editfns.c (Fformat): Be sure to convert 8-bit characters to
3102 multibyte form.
3103 (Ftranspose_region) [BYTE_COMBINING_DEBUG]: Abort if byte
3104 combining occurs.
3105 (Ftranspose_region): Delete codes for handling byte combining.
3106
3107 * fileio.c (Finsert_file_contents): Setup src_multibyte and
3108 dst_multibyte members of coding. On handling REPLACE on unibyte
3109 buffer, convert the result of decode_coding to unibyte. On
3110 inserting into a mutibyte buffer, always call code_convert_region.
bd4bde7f 3111 (e_write): Setup coding->src_multibyte according to the
c9671f81
KH
3112 multibyteness of the source (buffer or string).
3113
3114 * fns.c (concat): Handle 8-bit characters correctly.
3115 (Fstring_as_unibyte): Be sure to make all 8-bit characters in
3116 unibyte in the result.
3117 (Fstring_as_multibyte): Be sure to make all 8-bit characters in
3118 valid multibyte form in the result.
3119 (map_char_table): Use MAKE_CHAR instead of MAKE_NON_ASCII_CHAR.
3120 (Fbase64_encode_region, Fbase64_encode_string): If base64_encode_1
3121 return -1, signal an error.
3122 (base64_encode_1): New arg MULTIBYTE. Get each character by
3123 CHAR_STRING_AND_LENGTH if MULTIBYTE is nonzero. If a multibyte
3124 character is found, return -1.
3125 (Fbase64_decode_region): Delete codes for handling byte-combining.
3126 Treat each decoded byte as a unibyte character.
3127 (Fbase64_decode_string): Return unibyte string.
3128 (Fcompare_strings, concat, string_byte_to_char): Use
3129 FETCH_STRING_CHAR_ADVANCE_NO_CHECK instead off
3130 FETCH_STRING_CHAR_ADVANCE.
3131 (Fstring_lessp): Use FETCH_STRING_CHAR_ADVANCE unconditionally.
3132 (mapcar1): If SEQ is string, always use FETCH_STRING_CHAR_ADVANCE.
3133
3134 * fontset.c (fontset_ref): Use SPLIT_CHAR instead of
3135 SPLIT_NON_ASCII_CHAR.
3136 (fontset_ref_via_base, fontset_set): Likewise
3137
3138 * insdel.c (adjust_markers_for_record_delete): Deleted.
3139 (adjust_markers_for_insert): Argument changed. Caller changed.
3140 (adjust_markers_for_replace): Likewise.
3141 (ADJUST_CHAR_POS, combine_bytes, byte_combining_error,
3142 CHECK_BYTE_COMBINING_FOR_INSERT): Deleted.
3143 (copy_text): Delete unused local varialbe c_save. For converting
3144 to multibyte, be sure to make all 8-bit characters in valid
3145 multibyte form.
3146 (count_size_as_multibyte): Handle 8-bit characters correctly.
3147 (insert_1_both, insert_from_string_1, insert_from_buffer_1,
3148 adjust_after_replace, replace_range, del_range_2)
3149 [BYTE_COMBINING_DEBUG]: Abort if byte combining occurs.
3150 (insert_1_both, insert_from_string_1, insert_from_buffer_1,
3151 adjust_after_replace, replace_range, del_range_2) Delete codes for
3152 handling byte combining.
3153 (adjust_before_replace): Deleted.
427ec082 3154
c9671f81
KH
3155 * keymap.c (Fsingle_key_description): Use SPLIT_CHAR instead of
3156 SPLIT_NON_ASCII_CHAR.
3157 (describe_vector): Use MAKE_CHAR instead of MAKE_NON_ASCII_CHAR.
3158 (Faccessible_keymaps): Use FETCH_STRING_CHAR_ADVANCE
3159 unconditionally.
3160 (Fkey_description): Likewise.
3161
3162 * lread.c (read1): On reading multibyte string, be sure to make
3163 all 8-bit chararacters in valid multibyte form.
3164 (readchar): Use FETCH_STRING_CHAR_ADVANCE unconditionally.
3165
3166 * print.c (print_object): Use FETCH_STRING_CHAR_ADVANCE
3167 unconditionally.
3168
3169 * process.c (Fstart_process): GCPRO current_dir before calling
3170 Ffind_operation_coding_system. Encode arguments here.
3171 (create_process): Don't encode arguments here. Setup
3172 src_multibyte and dst_multibyte members of struct coding.
3173 (read_process_output): Setup src_multibyte and dst_multibyte
3174 members of struct coding. If the output is to multibyte buffer,
3175 always decode the output of the process. Adjust the
3176 representation of 8-bit characters to the multibyteness of the
3177 output.
3178 (send_process): Setup coding->src_multibyte according to the
3179 multibyteness of the source.
3180
3181 * search.c (wordify): Use FETCH_STRING_CHAR_ADVANCE
3182 unconditionally.
3183 (Freplace_match): Use FETCH_STRING_CHAR_ADVANCE and
3184 FETCH_STRING_CHAR_ADVANCE_NO_CHECK appropriately.
3185
3186 * term.c (produce_special_glyphs): Use CHAR_BYTES instead of
3187 CHAR_LEN.
3188
3189 * w16select.c (Fw16_set_clipboard_data): Setup members
3190 src_multibyte and dst_multibyte of coding. Adjusted for the
3191 change for find_charset_in_str.
3192 (Fw16_get_clipboard_data): Likewise.
3193
3194 * w32fns.c (w32_to_x_font): Setup members src_multibyte and
3195 dst_multibyte of coding.
3196 (x_to_w32_font): Likewise.
3197
3198 * w32select.c (Fw32_set_clipboard_data): Setup members
3199 src_multibyte and dst_multibyte of coding. Adjusted for the
3200 change for find_charset_in_str.
3201 (Fw32_get_clipboard_data): Likewise.
3202
3203 * xdisp.c (get_next_display_element): Handle 8-bit characters
3204 correctly.
3205 (next_element_from_display_vector): Use CHAR_BYTES instead of
3206 CHAR_LEN.
3207 (disp_char_vector): Use SPLIT_CHAR instead of
3208 SPLIT_NON_ASCII_CHAR.
3209
3210 * xselect.c (selection_data_to_lisp_data): Setup members
3211 src_multibyte and dst_multibyte of coding. Adjusted for the
3212 change for find_charset_in_str.
3213 (lisp_data_to_selection_data): Likewise.
3214
5f64c9e0
GM
32152000-05-19 Gerd Moellmann <gerd@gnu.org>
3216
2b63d473
GM
3217 * buffer.c (Fbury_buffer): Avoid trouble from burying a killed
3218 buffer.
3219
5f64c9e0
GM
3220 * dispextern.h (Vimage_types): Add extern declaration.
3221
3222 * xdisp.c (Vimage_types): Moved here from xfns.c.
3223 (syms_of_xdisp): Move `image-types' variable here from xfns.c.
3224
3225 * xfns.c (Vimages_types): Moved to xdisp.c.
3226 (syms_of_xfns): Move `image-types' to xdisp.c.
3227
3228 * w32fns.c (Vimage_types): Removed.
3229 (syms_of_w32fns): Remove `image-types'.
3230
813086ea
KH
32312000-05-18 Kenichi Handa <handa@etl.go.jp>
3232
3233 * fns.c (map_char_table): Pay attention to character number of
3234 charset. Check the validity of charset at the first level. For
3235 leaf nodes that has nil value, call C_FUNCTION or FUNCTION with
3236 the default value.
3237
3238 * fontset.c: Include "buffer.h".
3239 (fs_load_font): If the face has fontset, record the face ID in
3240 that fontset.
3241 (Finternal_char_font): New function.
3242 (accumulate_font_info): New function.
3243 (Ffontset_info): Rewritten for the new fontset implementation.
3244 (syms_of_fontset): Register Vdefault_fontset in the first element
3245 of Vfontset_table. Include Vdefault_fontset in
3246 Vfontset_alias_alist. Declare `internal-char-font' as a Lisp
3247 function.
3248
bdaebbf0
DL
32492000-05-16 Dave Love <fx@gnu.org>
3250
3251 * m/iris5d.h: Deleted -- unused.
3252
cb613bb8
GM
32532000-05-16 Gerd Moellmann <gerd@gnu.org>
3254
b15f3b77
GM
3255 * xdisp.c, w32.c, print.c, msdos.c, emacs.c: Use the term
3256 `invalid' instead of `illegal'.
3257
3258 * indent.c (Fmove_to_column): When ending within a tab, insert
3259 spaces first so that markers at the end of the tab get adjusted.
3260
835c1b36
GM
3261 * frame.c (frames_bury_buffer): Don't add a buffer to the frame's
3262 buffer list that wasn't selected in that frame.
3263
cb613bb8
GM
3264 * filelock.c (get_boot_time): To obtain an 8 char file name, which
3265 is needed on mescaline, use a 2 char prefix, and call
3266 make_temp_name with second arg non-zero.
3267
3268 * fileio.c (make_temp_name): New function, extracted from
3269 Fmake_temp_name.
3270 (Fmake_temp_name): Use it.
3271
f685bea9
EZ
32722000-05-15 Eli Zaretskii <eliz@is.elta.co.il>
3273
3274 * window.c (coordinates_in_window): Subtract 1 when computing
3275 right_x.
3276
a1b8d58b
GM
32772000-05-15 Gerd Moellmann <gerd@gnu.org>
3278
3279 * Makefile.in (lisp): Add env.elc.
3280
3281 * callproc.c (Fgetenv_internal): Renamed from Fgetenv.
3282
a265079f
GM
32832000-05-12 Gerd Moellmann <gerd@gnu.org>
3284
3285 * search.c (Freplace_match): Handle case of `\N' in the
3286 replacement when there's no group N.
3287
da4496b6
GM
32882000-05-11 Gerd Moellmann <gerd@gnu.org>
3289
0ace421a
GM
3290 * xdisp.c (add_to_log): Don't pass the terminating NUL byte
3291 of the message to message_dolog.
3292
1172eb8d
GM
3293 * keyboard.c (read_char): Don't clear current message for help
3294 events; let the code handling help events handle this. Change
3295 code detecting help events that should be ignored.
3296
da4496b6
GM
3297 * xdisp.c (handle_single_display_prop): Don't try to set PT if
3298 we're interating over a string.
3299
0623e40f
DL
33002000-05-09 Dave Love <fx@gnu.org>
3301
3302 * fileio.c (Fwrite_region): If APPEND arg is an integer, seek to
3303 that offset before writing. Move gcpro region past call of
3304 Ffile_regular_p.
3305
bae2503b
DL
33062000-05-04 Dave Love <fx@gnu.org>
3307
3308 * buffer.c (syms_of_buffer) [auto-fill-function]: Doc fix.
3309
ec82fb2f
GM
33102000-05-04 Gerd Moellmann <gerd@gnu.org>
3311
3312 * insdel.c (insert_from_buffer_1): Adjust FROM position by number
3313 of inserted characters when BUF equals the current buffer, and PT
3314 is in front of or equal to FROM.
3315
cbf18892
GM
33162000-05-03 Gerd Moellmann <gerd@gnu.org>
3317
4ff40dd0
GM
3318 * xdisp.c (handle_single_display_prop): If display property value
3319 is invalid, or something not supported on the frame, restore
3320 iterator's position to what it was initially. Make sure to return
3321 0 for invalid and unsupported property values.
3322
cbf18892
GM
3323 * xterm.c (x_produce_glyphs) <composite chars>: Handle case
3324 that x_per_char_metric returns null.
3325
1b0672c3
GM
33262000-05-02 Gerd Moellmann <gerd@gnu.org>
3327
576da55d
GM
3328 * xterm.h (struct face): Add forward declaration.
3329 (struct image): Ditto.
3330 (image_ascent): Add prototype.
3331
3332 * xterm.c (x_produce_image_glyph, x_draw_image_foreground)
3333 (x_draw_image_relief, x_draw_image_foreground_1): Call function
3334 image_ascent instead of using IMAGE_ASCENT.
3335
3336 * dispextern.h (DEFAULT_IMAGE_HEIGHT): New macro.
3337 (IMAGE_ASCENT): Removed.
3338
3339 * xfns.c (Qcenter): New variable.
3340 (enum image_value_type): Add IMAGE_ASCENT_VALUE.
3341 (parse_image_spec): Handle IMAGE_ASCENT_VALUE.
3342 (image_ascent): New function.
3343 (lookup_image): Recognize `:ascent center'.
3344 (xbm_format, xpm_format, pbm_format, png_format, jpeg_format)
3345 (tiff_format, gif_format, gs_format): Use IMAGE_ASCENT_VALUE.
3346 (xbm_load): Don't set image's ascent here.
3347 (xbm_image_p, xpm_image_p, pbm_image_p, png_image_p)
3348 (jpeg_image_p, tiff_image_p, gif_image_p, gs_image_p): Don't
3349 check ascent values here.
3350 (Fimagep, Flookup_image [GLYPH_DEBUG]: Removed.
3351 (syms_of_xfns) [GLYPH_DEBUG]: Don't defsubr removed functions.
3352 (syms_of_xfns): Initialize Qcenter.
3353
1b0672c3
GM
3354 * eval.c (Fsignal): If lisp_eval_depth or spepdl_size are near
3355 to the limits, increase the limits.
3356
0d7811ed
KH
33572000-05-01 Kenichi Handa <handa@etl.go.jp>
3358
3359 * fontset.c (fs_load_font): By default, use 0x00..0x7f for ASCII.
3360 Check Vfont_encoding_alist against the full name of the opened
3361 font.
3362
a943a5ca
GM
33632000-04-28 Gerd Moellmann <gerd@gnu.org>
3364
3365 * xdisp.c (make_cursor_line_fully_visible): Handle case of rows
3366 taller than the window.
3367
5dba1e29
KH
33682000-04-28 Kenichi Handa <handa@etl.go.jp>
3369
3370 * xfaces.c (realize_x_face): Fix the argument of the second
3371 xassert. BASE_FACE may not be a face for ASCII.
3372
353964e3
GM
33732000-04-27 Gerd Moellmann <gerd@gnu.org>
3374
c76e04a8
GM
3375 * print.c (print_object): Treat print-length < 0 as nil.
3376
3377 * Makefile.in (termcapobj): Don't use TERMCAP_OBJ.
3378
3379 * s/freebsd.h (TERMCAP_OBJ): Removed.
3380 (LIBS_TERMCAP): Don't define for __FreeBSD_version >= 400000.
3381
3382 * lread.c (read1): Don't treat period followed by certain
3383 characters as symbol start.
3384
3385 * xfns.c (slurp_file): New function.
3386 (xbm_image_p): Handle case of in-memory XBM files.
3387 (xbm_scan): Rewritten to work on memory buffers instead of files.
3388 (xbm_read_bitmap_data): Renamed from xbm_read_bitmap_file_data.
3389 Work on memory buffers instead of files. If DATA is null test
3390 if buffer looks like an in-memory XBM file.
3391 (xbm_load_image): Renamed from xbm_load_image_file. Work on
3392 memory buffers instead of files.
3393 (xbm_file_p): New function.
3394 (xbm_load): Accept :data DATA where DATA is an in-memory XBM file.
3395
353964e3
GM
3396 * lread.c (end_of_file_error): New function.
3397 (read1): Call it instead of signaling `end-of-file' directly.
3398
427ec082 3399 * print.c (print_error_message): Print data of `end-of-file'
353964e3
GM
3400 with Fprinc instead of Fprin1.
3401
24d744ac
KR
34022000-04-26 Ken Raeburn <raeburn@gnu.org>
3403
3404 * window.c (freeze_window_start): Check that minibuffer scroll
3405 window isn't nil before extracting the window structure pointer
3406 from it.
3407
3408 * undo.c (record_delete): If we hit the end of the undo list, stop
3409 picking elements apart.
3410
7464346d
GM
34112000-04-26 Gerd Moellmann <gerd@gnu.org>
3412
3413 * xdisp.c (display_line): If lines are continued, restore
3414 iterator's ascent/descent information to the values before the
3415 first glyph not fitting on the line.
3416
612839b6
GM
34172000-04-25 Gerd Moellmann <gerd@gnu.org>
3418
3419 * xdisp.c (try_window_id) <all changes above window start>: Adjust
3420 positions in glyph matrix. Don't compute new window end
3421 positions.
3422
3423 * dispnew.c (increment_matrix_positions): Renamed from
3424 increment_glyph_matrix_buffer_positions.
3425 (increment_row_positions): Renamed from
3426 increment_glyph_row_buffer_positions.
3427
3428 * dispextern.h: Change names of renamed functions from dispnew.c
3429 in prototypes.
3430
cc181e95
GM
34312000-04-24 Gerd Moellmann <gerd@gnu.org>
3432
abfcc168
GM
3433 * fileio.c (Fdo_auto_save): Create directories for auto-save
3434 list file if necessary.
3435
cc181e95
GM
3436 * xdisp.c (init_iterator): Set iterator's extra_line_spacing
3437 from buffer or frame.
3438 (automatic_hscrolling_p): New variable.
3439 (hscroll_windows): Scroll windows horizontally only if automatic
3440 hscrolling is allowed.
3441 (syms_of_xdisp): New variable `automatic-hscrolling'.
3442
3443 * frame.h (struct frame): Add member extra_line_spacing.
3444
3445 * xfns.c (x_set_line_spacing): New function.
3446 (Fx_create_frame): Set line spacing from resources.
3447 (Qline_spacing): New variable.
3448 (syms_of_xfns): Initialize Qline_spacing.
427ec082 3449
cc181e95
GM
3450 * emacs.c (USAGE2): Add `--line-spacing' and `-lsp'.
3451
3452 * buffer.c (init_buffer_once): Handle extra_line_spacing.
3453 (syms_of_buffer): Add `default-line-spacing' and `line-spacing'.
abfcc168 3454 (reset_buffer): Don't initialize extra2 and extra3. Initialize
cc181e95
GM
3455 extra_line_spacing from default value.
3456 (init_buffer_once): Initialize default value of extra_line_spacing.
3457
3458 * buffer.h (struct buffer): Add extra_line_spacing, remove extra2
3459 and extra3.
3460
3461 * xterm.c (x_produce_glyphs): Remove reference to struct it's
3462 prompt_width. Add extra line spacing.
3463
3464 * term.c (produce_glyphs): Remove reference to struct it's
3465 prompt_width.
3466
3467 * dispextern.h (struct it): Remove member prompt_width, add
3468 extra_line_spacing.
3469
58827478
GM
34702000-04-22 Gerd Moellmann <gerd@gnu.org>
3471
3472 * dispnew.c (update_frame_line): When writing a whole line, make
3473 sure cursor is in the right row afterwards, otherwise a use of
3474 capability `ch' in cmgoto might leave the cursor in the row below.
3475
25a87f42
GM
34762000-04-21 Gerd Moellmann <gerd@gnu.org>
3477
3478 * lisp.h (struct Lisp_Buffer_Cons): Remove.
3479
3480 * keyboard.c (timer_check): Fix typo in comment.
3481
54edf5c2
KH
34822000-04-21 Kenichi Handa <handa@etl.go.jp>
3483
3484 * fontset.c (Fset_fontset_font): Fix docstring. Local variable
3485 name change: ch -> character.
3486
3a64eef5
GM
34872000-04-20 Gerd Moellmann <gerd@gnu.org>
3488
3489 * keyboard.c (echo_message_buffer): New variable.
3490 (echo_now): Set echo_message_buffer to the echo area buffer used
3491 to display the echo.
3492 (cancel_echoing): Reset echo_message_buffer to nil.
3493 (read_char): Code rewritten that handles canceling an echo or
3494 echoing a dash, respectively.
3495
3496 * fileio.c (Ffile_writable_p) [WINDOWSNT]: Return nil if parent
3497 directory doesn't exist.
3498
6142fdcb
DL
34992000-04-19 Dave Love <fx@gnu.org>
3500
3501 * fns.c (syms_of_fns): Defsubr mapc.
a9cacab7
DL
3502 (concat): Don't allow numeric args.
3503 (Fconcat): Doc change.
6142fdcb 3504
ac6b5352
SM
35052000-04-19 Stefan Monnier <monnier@cs.yale.edu>
3506
3507 * regex.c (re_match_2_internal): Don't shorten the strings anymore,
3508 instead define end_match(1|2) more carefully.
3509 Use GET_CHAR_BEFORE_2 for `begline'.
3510
cb9215e4
GM
35112000-04-19 Gerd Moellmann <gerd@gnu.org>
3512
5e3dac3f
GM
3513 * frame.h (SELECTED_FRAME): Change definition to compile cleanly
3514 on 64-bit systems where NULL is defined as `0'.
3515
3516 * xdisp.c (with_echo_area_buffer): Add more `int' parameters for
3517 the `variable argument list' to make it work on Alpha.
3518
cb9215e4
GM
3519 * m/alpha.h (_LP64) [!_LP64]: Define.
3520 (ORDINARY_LINK): Define for NetBSD.
3521
3522 * m/macppc.h (ORDINARY_LINK): Define for NetBSD.
427ec082 3523
f532dca0
DL
35242000-04-19 Dave Love <fx@gnu.org>
3525
c750667e
DL
3526 * s/bsd386.h, s/freebsd.h, s/gnu.h, s/netbsd.h: Revert 2000-04-14
3527 change.
3528
3529 * Makefile.in (LIBS): Don't use.
3530 (GETLOADAVG_OBJ): Define again.
3531 (otherobj): Add GETLOADAVG_OBJ.
3532
f532dca0
DL
3533 * buffer.c (Fmake_indirect_buffer): Escape newline in doc.
3534
1c7e22fd
GM
35352000-04-18 Gerd Moellmann <gerd@gnu.org>
3536
f6d3257b
GM
3537 * lread.c (read_filtered_event): Cancel and start busy cursor.
3538
427ec082 3539 * xterm.c (x_produce_glyphs) <ASCII chars>: Take into account
1c7e22fd
GM
3540 that the per-character metrics may be null.
3541
e10f64e7
GM
35422000-04-17 Gerd Moellmann <gerd@gnu.org>
3543
0daee095
GM
3544 * buffer.c (clone_per_buffer_values): New function.
3545 (Fmake_indirect_buffer): Add optional argument CLONE. Call
3546 clone_per_buffer_values if CLONE is not nil.
3547
e10f64e7
GM
3548 * xfaces.c (Ftty_suppress_bold_inverse_default_colors): Doc fix.
3549
38687d43
DL
35502000-04-16 Dave Love <fx@gnu.org>
3551
3552 * Makefile.in: Remove obsolete localcpp stuff.
3553 (GETLOADAVG_OBJ): Don't define.
3554 (obj): Move LIBOBJS...
3555 (otherobj): ... to here.
3556 (MSDOS_OBJ): Convert to make variable -- preprocessing zapped
3557 whitespace-only lines after the continuation (Irix).
3558
c21c7262
GM
35592000-04-14 Gerd Moellmann <gerd@gnu.org>
3560
3561 * xfns.c (xpm_load) [DEBUG_X_COLORS]: Register colors.
3562
3563 * s/freebsd.h (LD_SWITCH_SYSTEM): Add `-L /usr/local/lib'.
3564
314767c0
DL
35652000-04-14 Dave Love <fx@gnu.org>
3566
3567 * s/aix3-1.h, s/bsd4-2.h, s/bsd4-3.h, s/cxux.h, s/dgux.h, s/gnu.h:
3568 * s/hpux.h, s/iris3-5.h, s/iris3-6.h, s/irix3-3.h, s/rtu.h:
3569 * s/unipl5-0.h, s/unipl5-2.h, s/usg5-0.h, s/usg5-2-2.h, s/usg5-2.h:
3570 * s/usg5-3.h, s/xenix.h, s/umax.h: Don't define autoconfiscated
3571 NLIST_STRUCT.
3572
3573 * s/bsd386.h, s/freebsd.h, s/gnu.h, s/netbsd.h: Don't define
3574 autoconfiscated HAVE_GETLOADAVG.
3575
3576 * s/nextstep.h, s/sco4.h, s/sco5.h: Don't define autoconfiscated
3577 BROKEN_MKTIME.
3578
a2522dca
GM
35792000-04-14 Gerd Moellmann <gerd@gnu.org>
3580
3581 * filelock.c (MAKE_LOCK_NAME): Allocate 2 more bytes.
3582 (fill_in_lock_file_name): Avoid existing files that aren't
3583 links.
3584
33744b5d
DL
35852000-04-14 Dave Love <fx@gnu.org>
3586
c21c7262 3587 * Makefile.in (LIBS, LIBOBJS): New variable.
33744b5d
DL
3588 (INTERVAL_SRC): Convert to make variable.
3589 (INTERVAL_OBJ, MKTIME_OBJ, FLOAT_SUPPORT, FACE_SUPPORT)
3590 (HAVE_X_WINDOWS, OBJECTS_SYSTEM): Remove.
3591 (obj): Substitute INTERVAL_OBJ, add MKTIME_OBJ, GETLOADAVG_OBJ and
3592 add LIBOBJS.
3593 (SOME_MACHINE_OBJECTS): Remove interval stuff.
3594 (lisp): Substitute FACE_SUPPORT, FLOAT_SUP.
3595 (shortlisp): Add facemenu, float-sup, frame.
3596 (SOME_MACHINE_LISP): Remove them from here.
3597 (LIBES): Change unused LDLIBS to autoconf LIBS.
3598
3599 * config.in: Add BROKEN_MKTIME, NLIST_STRUCT, NLIST_NAME_UNION.
3600
9d3d5916
KH
36012000-04-14 Kenichi Handa <handa@etl.go.jp>
3602
3603 * composite.c (update_compositions): If FROM and TO are not in a
3604 valid range, do nothing.
3605
198e3c7a
GM
36062000-04-13 Gerd Moellmann <gerd@gnu.org>
3607
3608 * tparam.c (tparam1): Abort when encountering an unknown
3609 `%'-specifier.
3610
3611 * s/freebsd.h (TERMCAP_OBJ) [__FreeBSD__ >= 4]: Define as
3612 terminfo.o.
3613
3614 * Makefile.in (termcapobj) [LIBS_TERMCAP && TERMCAP_OBJ]: Define
3615 as TERMCAP_OBJ.
3616
055a28c9
EZ
36172000-04-13 Eli Zaretskii <eliz@is.elta.co.il>
3618
3619 * fileio.c (a_write): Remove redundant semi-colons.
3620 (e_write): Return -1 if failed to write all the data.
3621 This fixes the changes made at 1999-12-15.
3622
f5c75033
DL
36232000-04-12 Dave Love <fx@gnu.org>
3624
3625 * fns.c (mapcar1): Test for null vals to support mapc.
3626 (Fmapc): New function.
3627
0c3cfc51
EZ
36282000-04-12 Eli Zaretskii <eliz@is.elta.co.il>
3629
3630 * msdos.c (NUM_MOUSE_BUTTONS): Define.
3631 (IT_frame_up_to_date): Support the buffer local value of
3632 cursor-type, if defined.
3633
33465a31
DL
36342000-04-10 Dave Love <fx@gnu.org>
3635
3636 * editfns.c (preceding-char, following-char): Doc fix.
3637
6ed56568
KR
36382000-04-10 Ken Raeburn <raeburn@gnu.org>
3639
3640 * Makefile.in (temacs): Revert 2000-03-12 change.
3641
7cf80d4e
JR
36422000-04-10 Jason Rumney <jasonr@gnu.org>
3643
3644 * xfaces.c (realize_face): Change FRAME_X_P to FRAME_WINDOW_P.
3645
34f3f342
GM
36462000-04-10 Gerd Moellmann <gerd@gnu.org>
3647
1a1b1895
GM
3648 * xdisp.c (setup_echo_area_for_printing): Choose an echo
3649 area buffer, if it's not set up yet.
3650
34f3f342
GM
3651 * indent.c (compute_motion): Set immediate_quit.
3652
be0dbdab
GM
36532000-04-09 Gerd Moellmann <gerd@gnu.org>
3654
c45be9ac
GM
3655 * xfaces.c (tty_suppress_bold_inverse_default_colors_p): New
3656 variable.
3657 (realize_tty_face): Suppress boldness if colors are the inverse of
3658 the default colors, and tty_suppress_bold_inverse_default_colors_p
3659 is set.
3660 (Ftty_suppress_bold_inverse_default_colors): New function.
3661 (syms_of_xfaces): Defsubr it.
3662
be0dbdab
GM
3663 * buffer.c (Frestore_buffer_modified_p): New function.
3664 (syms_of_buffer): Defsubr it.
3665
e8413c3b
KR
36662000-04-08 Ken Raeburn <raeburn@gnu.org>
3667
87f67317
KR
3668 * charset.c (Fmake_char_internal): CHAR_COMPONENTS_VALID_P takes a
3669 charset id (int) argument, not a charset (Lisp_Object).
3670
e8413c3b
KR
3671 * coding.h (code_convert_string): Declare.
3672 * coding.c (code_convert_string_norecord): Pass an int, not a lisp
3673 object, as the fourth argument to code_convert_string.
3674
3675 * fontset.c (make_fontset_for_ascii_face): Use XINT on return
3676 value.
3677 (Fset_fontset_font): Use EQ to compare lisp objects.
3678
7c752c80
KR
36792000-04-05 Ken Raeburn <raeburn@gnu.org>
3680
c0333abc
KR
3681 * intervals.h (SET_INTERVAL_PARENT): Use INT_LISPLIKE to test for
3682 a pointer that looks like a lisp object.
3683 (SET_INTERVAL_OBJECT): Don't explicitly compare the object with
3684 zero, instead see whether it's an integer object, since they can't
3685 have intervals.
3686 (GET_INTERVAL_OBJECT): Simply assign to the destination.
3687
7c752c80
KR
3688 * dispnew.c (allocate_matrices_for_frame_redisplay,
3689 direct_output_forward_char): Use X(U)INT and make_number as needed
3690 to convert between (unsigned) int values and lisp integers.
3691 * keyboard.c (read_key_sequence): Likewise.
3692 * lread.c (substitute_object_recurse): Likewise.
3693 * fns.c (concat, hash_lookup, hash_remove): Likewise.
3694 * minibuf.c (do_completion, Fminibuffer_complete_word,
3695 Fminibuffer_completion_help): Likewise.
3696 * term.c (produce_special_glyphs): Likewise.
3697
3698 * fileio.c (Fwrite_region): Use EQ when comparing lisp objects.
3699 * print.c (print_preprocess, print_object): Likewise.
3700
3701 * search.c (compile_pattern): Use NILP when checking for nil.
3702
74e49b38
KR
3703 * lisp.h (make_number) [!NO_UNION_TYPE && __GNUC__ >= 2 &&
3704 __OPTIMIZE__]: Provide a GNU C macro version that handles
3705 lisp-object unions.
3706 (XSET) [!NO_UNION_TYPE]: Set the value field first, then the type
3707 field, to better cope with ENABLE_CHECKING and calls that modify a
3708 Lisp_Object using its old value.
3709
685e5ed2
GM
37102000-04-04 Gerd Moellmann <gerd@gnu.org>
3711
c407c570
GM
3712 * window.c (compare_window_configurations): Signal an error
3713 if parameters C1 or C2 aren't window configurations.
3714
685e5ed2
GM
3715 * bytecode.c (Fbyte_code): Add a bunch of BEFORE_POTENTIAL_GC/
3716 AFTER_POTENTIAL_GC calls around calls to functions that can
3717 signal an error and thus invoke the debugger.
3718
587a49ab
GM
37192000-04-03 Gerd Moellmann <gerd@gnu.org>
3720
62f20204
GM
3721 * fns.c (Fbase64_decode_region, Fbase64_decode_string): Signal
3722 an error if decoding fails.
3723
587a49ab
GM
3724 * keyboard.c (lispy_mouse_names): Variable removed.
3725 (Vlispy_mouse_stem): New variable.
3726 (syms_of_keyboard): Initialize Vlispy_mouse_stem.
3727 (make_lispy_event) <mouse_click, scroll_bar_click>: Don't abort
3728 for any mouse button number. Increase size of mouse_syms and
3729 button_down_location as needed. Call modify_event_symbol with
3730 different arguments.
3731 (make_lispy_event) <scroll_bar_click> [USE_TOOLKIT_SCROLL_BARS]:
3732 Call modify_event_symbol with different arguments.
3733 (make_lispy_event) <w32_scroll_bar_click> [WINDOWSNT]: Don't abort
3734 for any button number. Call modify_event_symbol with different
3735 arguments.
3736 (modify_event_symbol): Rename NAME_ALIST to NAME_ALIST_OR_STEM.
3737 Accept a string for NAME_ALIST_OR_STEM.
3738
3739 * lisp.h (larger_vector): Add prototype.
3740
3741 * fns.c (larger_vector): Make externally visible.
3742
3743 * termhooks.h (NUM_MOUSE_BUTTONS): Removed.
3744
2d1675e4
SM
37452000-04-02 Stefan Monnier <monnier@cs.yale.edu>
3746
3747 * regex.c (PTR_TO_OFFSET) [!emacs]: Remove.
3748 (RE_MULTIBYTE_P, RE_STRING_CHAR_AND_LENGTH): New macros.
3749 (GET_CHAR_BEFORE_2): Moved from charset.h plus fixed minor bug when
3750 we are between str1 and str2.
3751 (MAX_MULTIBYTE_LENGTH, CHAR_STRING) [!emacs]: Provide trivial default.
3752 (PATFETCH): Use `TRANSLATE'.
3753 (PATFETCH_RAW): Fetch multibyte char if applicable.
3754 (PATUNFETCH): Remove.
3755 (regex_compile): Rely on PATFETCH to do most of the multibyte magic.
3756 When writing a char, write it directly into the pattern buffer rather
3757 than going needlessly through a temp char-array.
3758 (re_match_2_internal): Similarly, rely on RE_STRING_CHAR to do the
3759 multibyte magic and remove the useless `#ifdef emacs'.
3760 (bcmp_translate): Don't compare as multibyte chars when in a unibyte
3761 buffer.
3762
3763 * regex.h (struct re_pattern_buffer): Make field `multibyte'
3764 conditional on `emacs'.
3765
3766 * charset.h (GET_CHAR_BEFORE_2): Moved to regex.c.
3767
cc2d8c6b
KR
37682000-04-01 Ken Raeburn <raeburn@gnu.org>
3769
3770 * alloc.c (MARK_STRING, UNMARK_STRING, STRING_MARKED_P): Expand
3771 non-union-type versions of XMARK and friends here, because XMARK
3772 and friends won't work on an integer field if NO_UNION_TYPE is not
3773 defined.
3774 (make_number): Define as a function if it's not defined as a
3775 macro.
3776
09654086
KR
3777 * composite.c (run_composite_function): Use NILP when checking for
3778 nil.
3779 (syms_of_composite): Delete local var NARGS, pass an int as first
3780 argument to Fmake_hash_table.
3781
2387b382
KR
3782 * editfns.c (text_property_stickiness): Use NILP to test
3783 Lisp_Object boolean value.
3784 (Fmessage_or_box): Don't use NILP to test int variable.
c01fbf95
KR
3785 (Fformat): Use a temporary variable to avoid ENABLE_CHECKING
3786 problems reading from and changing the same lisp value in an
3787 XSETSTRING call.
3788
27660e89
GM
37892000-04-01 Gerd Moellmann <gerd@gnu.org>
3790
3791 * term.c (TN_no_color_video): New variable.
3792 (term_init): Intitialize TN_no_color_video.
3793 (enum no_color_bit): New enumeration.
3794 (MAY_USE_WITH_COLORS_P): New macro.
3795 (turn_on_face): Use it to determine if attributes may be used
3796 combined with colors.
3797
3578db3c
KR
37982000-04-01 Ken Raeburn <raeburn@gnu.org>
3799
3800 * window.c (CURBEG, CURSIZE): Don't overload lisp object lvalues
3801 with int lvalues via casts; instead, just yield lisp object
3802 lvalues.
3803 (enlarge_window): Variable sizep now points to Lisp_Object. Use
3804 proper accessor macros.
3805 (shrink_window_lowest_first): w->top is Lisp_Object; use XINT.
3806 (grow_mini_window): Fix typo getting int value of root->height.
3807
6fc556fd
KR
3808 * xdisp.c (compute_string_pos): Fix order of arguments to
3809 string_pos_nchars_ahead.
3810 (handle_fontified_prop, add_to_log): Pass int, not Lisp_Object, as
3811 count arg to variable-arg routines like Frun_hook_with_args and
3812 Fformat.
587a49ab
GM
3813 (back_to_previous_visible_line_start)
3814 (build_desired_tool_bar_string): Pass Lisp_Object, not int, to
6fc556fd
KR
3815 fixed-arg routines like Fget_char_property and Fmake_string.
3816 (reconsider_clip_changes): Use XINT when comparing integer lisp
3817 objects, or passing them as int arguments.
587a49ab
GM
3818 (mark_window_display_accurate, insert_left_trunc_glyphs)
3819 (append_space, extend_face_to_end_of_line): Use make_number when
6fc556fd
KR
3820 storing or passing integer values as lisp objects.
3821 (set_cursor_from_row, highlight_trailing_whitespace): Use
3822 INTEGERP, not implicit test against zero, for glyph object.
3823 (try_window_id): Don't use make_number when we want an int value.
3824
3825 * xfaces.c (xlfd_symbolic_value): Make last argument a
3826 Lisp_Object, to be consistent with callers.
3827 (Fbitmap_spec_p): Use XINT to get numeric value of height.
3828 (lface_hash): Apply XFASTINT to lisp values before folding in.
3829
3830 * xfns.c (Fx_show_tip): Use make_number to get lisp objects to
3831 fill in window width and height. Pass an int, not a lisp object,
3832 as first arg to Finsert.
3833
6e7b2457
GM
38342000-04-01 Gerd Moellmann <gerd@gnu.org>
3835
610d841e
GM
3836 * xfaces.c (realize_basic_faces): Block input while realizing
3837 the faces.
3838
6e7b2457
GM
3839 * keyboard.c (lispy_mouse_names): Add additional mouse names.
3840
3841 * termhooks.h (NUM_MOUSE_BUTTONS): Increase to 15.
3842
aa110c0c
GM
38432000-03-31 Gerd Moellmann <gerd@gnu.org>
3844
3845 * xterm.c (x_produce_glyphs): When displaying unibyte text
610d841e 3846 or ASCII, handle case that per-char metric is null.
aa110c0c 3847
8801a864
KR
38482000-03-30 Ken Raeburn <raeburn@gnu.org>
3849
c6129d7e
KR
3850 * lisp.h (NO_UNION_TYPE) [ENABLE_CHECKING]: Undef.
3851
8801a864
KR
3852 * lisp.h (XCONS, XSTRING, XSYMBOL, XFLOAT, XPROCESS, XWINDOW,
3853 XSUBR, XBUFFER): Verify correct object type before returning
3854 pointer, using eassert.
3855 * frame.h (XFRAME): Likewise.
3856
3857 * buffer.c (Frename_buffer, Fset_buffer_multibyte,
3858 swap_out_buffer_local_variables, Fmove_overlay): Don't apply
3859 XSYMBOL, XBUFFER, etc, to values that may be nil or of the wrong
3860 type.
3861 * data.c (set_internal): Likewise.
3862 * dispextern.h (WINDOW_WANTS_MODELINE_P,
3863 WINDOW_WANTS_HEADER_LINE_P): Likewise.
3864 * fileio.c (auto_save_1): Likewise.
3865 * insdel.c (check_markers): Likewise.
3866 * marker.c (buf_charpos_to_bytepos, unchain_marker): Likewise.
3867 * undo.c (record_insert): Likewise.
3868 * vmsproc.c (child_sig): Likewise.
3869 * window.c (unshow_buffer, window_loop): Likewise.
3870 * xterm.c (x_erase_phys_cursor): Likewise.
3871
8e7af858
GM
38722000-03-30 Gerd Moellmann <gerd@gnu.org>
3873
3874 * xfns.c (free_image_cache): Free the cache structure itself
3875 last, after all its members have been freed.
3876
3877 * lisp.h (xstrdup): Add prototype.
3878
3879 * alloc.c (xstrdup): Moved here from xfaces.c.
3880 (allocating_for_lisp): Variable removed.
3881 (lisp_malloc): Block input around the calls to malloc and
3882 mem_insert.
3883
3884 * xfaces.c (realize_tty_face): Use find_symbol_value instead
3885 of Fsymbol_value.
3886 (xstrdup): Moved to alloc.c.
3887
e0b8c689
KR
38882000-03-29 Ken Raeburn <raeburn@gnu.org>
3889
b96f9fb7
KR
3890 * scroll.c (CHECK_BOUNDS): Renamed from CHECK.
3891
3892 * emacs.c (main): Fix sense of no-loadup test.
3893
e0b8c689
KR
3894 * config.in (ENABLE_CHECKING): Undef.
3895
3896 * lisp.h (struct interval): Replace "parent" field with a union of
3897 interval pointer and Lisp_Object; add new bitfield to use as
3898 discriminant. Change other flag fields to bitfields.
3899 (CHECK): New macro for consistency checking. If ENABLE_CHECKING
3900 is defined and the supplied test fails, print a message and
3901 abort.
3902 (eassert): New macro. Use CHECK to provide an assert-like
3903 facility.
3904
3905 * intervals.h (NULL_INTERVAL_P): Now applies only to real interval
3906 pointers; abort if the value looks like a lisp object.
3907 (NULL_INTERVAL_P, NULL_PARENT, HAS_PARENT, HAS_OBJECT, SET_PARENT,
3908 SET_OBJECT, INTERVAL_PARENT, GET_INTERVAL_OBJECT, COPY_PARENT):
3909 Modify for new interval parent definition.
3910
3911 * alloc.c (mark_interval_tree, MARK_INTERVAL_TREE,
3912 UNMARK_BALANCE_INTERVALS): Update references that need an
3913 addressable lisp object in the interval structure.
3914 (die): New function.
3915 (suppress_checking): New variable.
3916
3917 * intervals.c (interval_start_pos): Just return 0 if there's no
3918 parent object.
3919
f83c5440
GM
39202000-03-29 Gerd Moellmann <gerd@gnu.org>
3921
3922 * lread.c (read1): Accept `.' (period) as symbol start like in CL
3923 and earlier Emacs versions.
3924
3925 * keyboard.c (Ftop_level): Cancel busy-cursor.
3926
3927 * eval.c (call_debugger): Cancel busy-cursor.
3928
fdce64ff
KH
39292000-03-29 Kenichi Handa <handa@etl.go.jp>
3930
3931 * search.c (Freplace_match): Adjust multibyteness of the current
3932 buffer and NEWTEXT. Free allocated memory before signaling an
3933 error.
3934
f6a3f532
SM
39352000-03-28 Stefan Monnier <monnier@cs.yale.edu>
3936
3937 * regex.c (analyse_first): New function obtained by ripping out most
3938 of re_compile_fastmap and generalizing it a little bit so that it
3939 can also just return whether a given (sub)pattern can match the empty
3940 string or not.
3941 (regex_compile): Use `analyse_first' to decide whether the loop-check
3942 needs to be done or not for *, +, *? and +? (the loop check is costly
3943 for non-greedy repetition).
3944 (re_compile_fastmap): Delegate the actual work to `analyse_first'.
3945
e9b309ac
DL
39462000-03-28 Dave Love <fx@gnu.org>
3947
bb15bd9a
DL
3948 * s/gnu-linux.h (GC_SETJMP_WORKS): Define for i386, sparc, m68k,
3949 alpha.
3950
e9b309ac
DL
3951 * alloc.c: Include stdio.h. Test STDC_HEADERS, not __STDC__.
3952
ed0767d8
SM
39532000-03-27 Stefan Monnier <monnier@cs.yale.edu>
3954
3955 * regex.c (REGEX_FREE_STACK, RESET_FAIL_STACK): Make them usable as
3956 an expression.
3957 (enum re_opcode_t): Update description of succeed_n.
3958 (PATFETCH): Always define.
3959 (regex_compile): Use lookahead rather than PATUNFETCH (for repetition
3960 operators, char classes, shy-groups and intervals).
3961 Optimize special cases of intervals so as to only use succeed_n and
3962 jump_n when really needed.
3963 (re_compile_fastmap): Simplify handling of jump_n and succeed_n now
3964 that we don't have to handle the special cases any more.
3965 Simplify on_failure_jump handling as well.
3966
e11e7e46
JR
39672000-03-28 Jason Rumney <jasonr@gnu.org>
3968
3969 * lread.c (Fload): Move safe_p definition to above #ifdef DOS_NT.
3970
88faab89
GM
39712000-03-27 Gerd Moellmann <gerd@gnu.org>
3972
182ff242
GM
3973 * s/freebsd.h (GC_SETJMP_WORKS): Define.
3974
3975 * s/msdos.h (GC_SETJMP_WORKS): Define.
427ec082 3976
182ff242
GM
3977 * alloc.c (mark_maybe_object): New function.
3978 (mark_memory): Use it.
3979 (SETJMP_WILL_LIKELY_WORK, SETJMP_WILL_NOT_WORK): New macros.
3980 (setjmp_tested_p, longjmp_done): New variables.
3981 (test_setjmp): New function.
3982 (mark_stack) [!GC_SETJMP_WORKS]: Call test_setjmp.
3983 (init_alloc): Initialize setjmp_tested_p and longjmp_done.
3984
c1005d06
GM
3985 * xdisp.c (face_before_or_after_it_pos): Pass multibyteness
3986 to DEC_TEXT_POS and INC_TEXT_POS.
3987
3988 * dispnew.c (direct_output_for_insert): Use DEC_TEXT_POS
3989 with parameter MULTIBYTE_P.
3990
427ec082 3991 * dispextern.h (INC_TEXT_POS, DEC_TEXT_POS): Add parameter
c1005d06
GM
3992 MULTIBYTE_P.
3993
7439e5b9 3994 * editfns.c (Fsubst_char_in_region): Don't use INC_POS in unibyte
182ff242
GM
3995 buffers because it looks for multibyte character byte sequences
3996 which don't exist in unibyte text.
7439e5b9 3997
d9c545da
GM
3998 * xterm.h (x_specified_cursor_type, x_copy_color): Add prototypes.
3999
11fd416e 4000 * xfaces.c (register_color, unregister_color, unregister_colors)
d9c545da
GM
4001 [DEBUG_X_COLORS]: New functions.
4002 (x_free_colors) [DEBUG_X_COLORS]: Unregister colors.
4003
4004 * xfns.c (x_set_cursor_color): Get color reference counts right.
4005
4006 * xterm.c (x_copy_color): New function.
4007 (x_alloc_nearest_color) [DEBUG_X_COLORS]: Call register_color.
4008
4009 * buffer.h (MAX_PER_BUFFER_VARS): Renamed from MAX_BUFFER_LOCAL_VARS.
4010 (PER_BUFFER_VAR_OFFSET): Renamed from BUFFER_LOCAL_VAR_OFFSET.
4011 (PER_BUFFER_VAR_IDX): Renamed from BUFFER_LOCAL_VAR_IDX.
4012 (PER_BUFFER_VALUE_P): Renamed from BUFFER_HAS_LOCAL_VALUE_P.
4013 (SET_PER_BUFFER_VALUE_P): Renamed from SET_BUFFER_HAS_LOCAL_VALUE_P.
4014 (PER_BUFFER_IDX): Renamed from BUFFER_LOCAL_IDX.
4015 (PER_BUFFER_DEFAULT): Renamed from BUFFER_LOCAL_DEFAULT_VALUE.
4016 (PER_BUFFER_VALUE): Renamed from BUFFER_LOCAL_VALUE.
4017 (PER_BUFFER_SYMBOL): Renamed from BUFFER_LOCAL_SYMBOL.
4018 (PER_BUFFER_TYPE): Renamed from BUFFER_LOCAL_TYPE.
4019
11fd416e
GM
4020 * category.c, data.c, syntax.c, print.c, lread.c: Use new macro
4021 names for handling per-buffer variables.
d9c545da
GM
4022
4023 * buffer.c (buffer_permanent_local_flags): Use MAX_PER_BUFFER_VARS
4024 instead of MAX_BUFFER_LOCAL_VARS.
4025 (last_per_buffer_idx): Renamed from max_buffer_local_idx.
4026
4027 * xfaces.c (lookup_face): Don't assert FACE_SUITABLE_FOR_CHAR_P.
4028
88faab89
GM
4029 * xfns.c (x_specified_cursor_type): New function.
4030 (x_set_cursor_type): Use it.
4031
4032 * buffer.h (struct buffer): Add cursor_type.
4033
d80f42b7
SM
40342000-03-26 Stefan Monnier <monnier@cs.yale.edu>
4035
4036 * regex.c (enum re_opcode_t): New opcode on_failure_jump_nastyloop.
427ec082 4037 (print_partial_compiled_pattern, re_compile_fastmap): Handle new
88faab89 4038 opcode.
d80f42b7
SM
4039 (regex_compile): Use on_failure_jump_nastyloop for non-greedy loops.
4040 (re_match_2_internal): Add code for on_failure_jump_nastyloop when
4041 executing it as well as when popping it off the stack to find infinite
4042 loops in non-greedy repetition operators.
4043
89e80928
GM
40442000-03-26 Gerd Moellmann <gerd@gnu.org>
4045
3d4ff2dd
GM
4046 * doc.c (Qfunction_documentation): New variable.
4047 (syms_of_doc): Initialize Qfunction_documentation.
4048 (Fdocumentation): If FUNCTION is a symbol with non-nil
4049 `function-documentation' property, return a documentation derived
4050 from that.
4051
bd96bd79
GM
4052 * buffer.c (syms_of_buffer): Add default-cursor-type.
4053 (init_buffer_once): Don't let cursor_type have a local value
4054 in every buffer.
4055
19d1bc27
GM
4056 * xterm.c (x_display_and_set_cursor): Choose cursor depending
4057 on buffer-local value of cursor_type.
4058 (x_draw_bar_cursor): Add parameter WIDTH.
4059
4060 * buffer.c (reset_buffer): Initialize buffer's cursor_type.
4061 (init_buffer_once): Set default cursor_type value to t.
4062 Mark cursor_type as local everywhere.
4063 (syms_of_buffer): New per-buffer variable cursor-type.
4064
89e80928
GM
4065 * buffer.h (struct buffer): Remove member local_var_flags,
4066 add local_flags.
4067 (MAX_BUFFER_LOCAL_VARS): New macro.
4068 (BUFFER_LOCAL_VAR_OFFSET, BUFFER_LOCAL_VAR_IDX)
4069 (BUFFER_HAS_LOCAL_VALUE_P, SET_BUFFER_HAS_LOCAL_VALUE_P)
4070 (BUFFER_LOCAL_IDX, BUFFER_LOCAL_DEFAULT_VALUE, BUFFER_LOCAL_VALUE)
4071 (BUFFER_LOCAL_SYMBOL, BUFFER_LOCAL_TYPE): New macros.
4072
4073 * print.c (print_object): Use new macros for per-buffer
4074 variables.
4075
4076 * category.c (Fset_category_table): Use new macros for per-buffer
4077 variables.
4078
4079 * buffer.c (buffer_permanent_local_flags): Make a char array.
4080 (max_buffer_local_idx): New variable.
4081 (reset_buffer_local_variables, Fbuffer_local_variables): Rewritten
4082 for new handling of per-buffer variables.
4083 (buffer_slot_type_mismatch): Use new macros for per-buffer vars.
4084 (init_buffer_once): Initialize per-buffer vars differently.
4085 Set max_buffer_local_idx.
4086
4087 * syntax.c (Fset_syntax_table): Use new macros for per-buffer
4088 variables.
4089
4090 * lread.c (defvar_per_buffer): Use new macros for per-buffer
4091 variables.
4092
4093 * data.c (do_symval_forwarding, store_symval_forwarding)
4094 (find_symbol_value, set_internal, default_value, Fset_default)
4095 (Fkill_local_variable, Flocal_variable_p): Use new macros for
4096 per-buffer variables.
4097
4098 * Makefile.in (bootstrap-emacs): Use `mv -f' instead of `mv'.
4099
9a0dd3dc
GM
41002000-03-24 Gerd Moellmann <gerd@gnu.org>
4101
b68c375f
GM
4102 * xterm.c (x_term_init): Unblock input around call1 of
4103 Qvendor_specific_keysyms.
4104
9a0dd3dc
GM
4105 * syntax.c (open_paren_in_column_0_is_defun_start): New variable.
4106 (find_defun_start): Consider an open parenthesis in column 0
4107 a defun start only if open_paren_in_column_0_is_defun_start is set.
4108 (syms_of_syntax): New variable open-paren-in-column-0-is-defun-start.
4109
7973e637
SM
41102000-03-24 Stefan Monnier <monnier@cs.yale.edu>
4111
4112 * eval.c (Fautoload): Add entry in load-history (if after dump).
4113 * lread.c (load-history): Update docstring.
4114
39210e90
GM
41152000-03-24 Gerd Moellmann <gerd@gnu.org>
4116
4117 * indent.c (Fvertical_motion): Always use the current buffer.
4118 Temporarily change the window's buffer, if necessary.
4119
72db3ab5
GM
41202000-03-23 Gerd Moellmann <gerd@gnu.org>
4121
4122 * xterm.c (fast_find_position): Make sure not to consider rows
4123 not visible in the window.
4124
990b2375
SM
41252000-03-22 Stefan Monnier <monnier@cs.yale.edu>
4126
4127 * regex.c (enum syntaxcode): Provide default for non-Emacs.
4128 (re_compile_fastmap, re_match_2_internal): Undo Dave's previous fix.
4129
ff4df011
JR
41302000-03-22 Jason Rumney <jasonr@gnu.org>
4131
4132 * w32menu.c (single_submenu): Set help string to NULL if none.
4133 (w32_menu_show): Set help string correctly.
4134 (add-menu-item): Set help string in MIIM_DATA for menu item.
4135 Load SetMenuItemInfoA explicitly.
4136 (w32_menu_display_help): New function.
427ec082 4137
ff4df011
JR
4138 * w32fns.c (w32_wnd_proc): Handle WM_MENUSELECT message.
4139 (QCdata): Moved to xdisp.c.
4140
4141 * w32term.c (w32_read_socket): Handle WM_MENUSELECT message.
4142 (Vw32_charset_to_codepage_alist): Removed.
4143 (Vw32_charset_info_alist): New variable.
4144 (Qw32_charset_[ansi, default, symbol, shiftjis, hangul, gb2312,
4145 chinesebig5, oem, easteurope, turkish, baltic, russian, arabic,
4146 greek, hebrew, thai, johab, mac, unicode]): New symbols.
4147 (x_produce_glyphs): Remove out of date #ifdef 0'd section. Replace
4148 with TODO comment.
4149 (w32_codepage_for_font): Use Vw32_charset_info_alist.
4150 (syms_of_w32term): Remove Vw32_charset_to_codepage_alist.
4151 Define Vw32_charset_info_alist and w32_charset symbols.
4152
41532000-03-22 Jason Rumney <jasonr@gnu.org>
4154
4155 * makefile.nt (w32bdf.obj): Update dependencies.
4156
4157 * w32bdf.c: Include frame.h and dispextern.h before fontset.h.
4158
4159 * w32fns.c: Include fontset.h after dispextern.h.
4160 (Fx_create_frame): Do not create fontset.
4161 (w32_load_system_font): Doc fix.
4162 (Fx_close_connection): Free full_name if it is not shared.
4163
4164 * w32term.c: Include fontset.h after dispextern.h.
4165 (x_get_glyph_face_and_encoding): New parameter two_byte_p. Callers
4166 updated.
4167 (w32_per_char_metric): If PCM is invalid, delete and return NULL.
4168 (x_get_char_and_face_encoding): Use FACE_FOR_CHAR to get face_id.
4169 (w32_font_is_double_byte): New function, needs body.
4170 (x_append_glyph): Set glyph->glyph_not_available_p.
4171 (x_produce_glyphs): Set it->glyph_not_available_p. Don't set
4172 it->charset. If it->multibyte_p is zero and it->c is a multibyte
4173 character, convert it to a unibyte character.
4174 (struct glyph_string): Delete member `charset'.
4175 (W32_TEXTOUT): Temporarily remove charset_dim until another way of
4176 calculating it is found.
4177 (x_set_mouse_face_gc): Call FACE_FOR_CHAR to get face_id. Handle
4178 the case that per char metric is not available correctly.
4179 (x_fill_glyph_string): Handle the case that the specific glyph is
4180 not available correctly.
4181 (BUILD_CHAR_GLYPH_STRINGS): Don't set s->charset.
4182 (BUILD_COMPOSITE_GLYPH_STRING): Likewise.
4183 (x_new_font): Call FS_LOAD_FONT, not fs_load_font.
4184 (x_new_fontset): Call fontset_ascii to get ASCII font name of the
4185 fontset. Don't call FS_LOAD_FONT.
4186
439d5cb4
KR
41872000-03-22 Ken Raeburn <raeburn@gnu.org>
4188
4189 * intervals.h (NULL_INTERVAL): Cast to INTERVAL type.
4190 (INT_LISPLIKE): New macro.
4191 (NULL_INTERVAL_P): Use it.
4192 (INTERVAL_HAS_PARENT, INTERVAL_HAS_OBJECT, SET_INTERVAL_PARENT,
4193 SET_INTERVAL_OBJECT, INTERVAL_PARENT, COPY_INTERVAL_PARENT,
4194 GET_INTERVAL_OBJECT, INTERVAL_PARENT_OR_NULL): New macros.
4195
4196 * alloc.c (make_interval, gc_sweep): Use new macros; eliminate all
4197 explicit references to "parent" field of struct interval and
4198 associated unclean type conversions.
4199 * intervals.c (create_root_interval, root_interval, rotate_right,
4200 rotate_left, balance_possible_root_interval, split_interval_right,
4201 split_interval_left, interval_start_pos, find_interval,
4202 next_interval, previous_interval, update_interval,
4203 adjust_intervals_for_insertion, delete_node, delete_interval,
4204 adjust_intervals_for_deletion, merge_interval_right,
4205 merge_interval_left, reproduce_tree, graft_intervals_into_buffer,
4206 copy_intervals_to_string): Likewise.
4207 * intervals.h (AM_LEFT_CHILD, AM_RIGHT_CHILD, RESET_INTERVAL):
4208 Likewise.
4209 * syntax.c (update_syntax_table): Likewise.
4210
4211 * intervals.c (reproduce_tree_obj): New function, like
4212 reproduce_tree but takes a Lisp_Object for the parent. Declare
4213 with prototype.
4214 (graft_intervals_into_buffer): Use it when appropriate.
4215 (reproduce_tree): Declare with prototype.
4216 (balance_possible_root_interval): Check that the parent is a lisp
4217 object before trying to examine its type.
4218
ee1c5b21
GM
42192000-03-22 Gerd Moellmann <gerd@gnu.org>
4220
4221 * xfaces.c (lface_same_font_attributes_p): Compare font attributes
4222 as strings only if both are known to be strings.
4223
4224 * s/openbsd.h (LIBS_TERMCAP): Undef.
4225
1fb352e0
SM
42262000-03-21 Stefan Monnier <monnier@cs.yale.edu>
4227
4228 * regex.c (CHAR_CHARSET, CHARSET_LEADING_CODE_BASE): Add default
4229 definitions for non-Emacs compilation.
4230 (enum re_opcode_t): Remove (not)wordchar and move (not)syntaxspec
4231 outside of `#ifdef emacs'.
4232 (print_partial_compiled_pattern): Update.
4233 (regex_compile): Use (not)syntaxspec(Sword) instead of (not)wordchar.
4234 (re_compile_fastmap): Merge handling of charset and charset_not (for
4235 emacs and non-emacs compilation as well).
4236 Similarly for (not)categoryspec and (not)syntaxspec.
4237 Don't use the fastmap when reaching `anychar' since the added
4238 complexity is not justified.
4239 (re_match_2_internal): Merge (not)wordchar (emacs and non-emacs)
4240 and (not)syntaxspec. Merge (not)categoryspec.
4241
fdaa1f77
KH
42422000-03-22 Kenichi Handa <handa@etl.go.jp>
4243
ff1a0d8e
KH
4244 * dispextern.h [!HAVE_WINDOW_SYSTEM] (FACE_SUITABLE_FOR_CHAR_P,
4245 FACE_FOR_CHAR): Define them differently for the configuration of
4246 --without-x.
fdaa1f77 4247
d152fb46
DL
42482000-03-21 Dave Love <fx@gnu.org>
4249
4250 * fontset.c (Fset_fontset_font, Ffontset_font): Fix newlines in
4251 doc string.
4252
d2cafc8c
GM
42532000-03-21 Gerd Moellmann <gerd@gnu.org>
4254
4255 * xfaces.c (check_lface_attrs) [GLYPH_DEBUG]: Fix syntax error.
4256 (lface_fully_specified_p): Don't check contents of
4257 LFACE_FONT_INDEX because that attribute is optional.
4258 (realize_x_face): Remove now unwarranted xassert.
4259
9111d4b5
KH
42602000-03-21 Kenichi HANDA <handa@etl.go.jp>
4261
4262 The following changes are to make font selection based on
4263 characters, not charset. In addition, they recover fontset
4264 facilities while utilizing the new font selection mechanism.
4265
6c4bfdc0
KH
4266 * Makefile.in (fontset.o): Depend on dispextern.h.
4267
4268 * alloc.c (mark_face_cache): Don't mark face->registry.
4269
9111d4b5
KH
4270 * dispextern.h (struct glyph): New member glyph_not_available_p.
4271 Use 22 bits for face_id.
4272 (enum lface_attribute_index): Add LFACE_FONT_INDEX.
4273 (struct face): Delete member registry, new member ascii_face.
4274 (FACE_SUITABLE_FOR_CHAR_P): Renamed from
4275 FACE_SUITABLE_FOR_CHARSET_P. Caller changed.
4276 (FACE_FOR_CHAR): Renamed from FACE_FOR_CHARSET. Caller changed.
4277 (struct it): Delete member charset, new member
4278 glyph_not_available_p.
4279
4280 * fontset.h (FONT_NOT_OPENED, FONT_NOT_FOUND): Macros removed.
4281 (struct fontset_info, struct fontset_data): Structs removed.
4282 (allloc_fontset_data, free_fontset_data, fs_regiser_fontset,
4283 Vglobale_fontset_alist, font_idx_temp): Externs removed.
4284 (fs_load_font, fs_query_fontset): Adjusted for new argument.
4285 (fs_free_face_fontset, fontset_font_pattern,
4286 face_suitable_for_char_p, face_for_char,
4287 make_fontset_for_ascii_face): Extern them.
4288 (FS_LOAD_FONT): Adjusted for the change of fontset implementation.
4289 (FS_LOAD_FACE_FONT): New macro.
4290
4291 * fontset.c: All codes rewritten or adjusted for the change of
4292 fontset implementation. Now fontset is represented by char table.
4293 (Vglobal_fontset_alist, font_idx_temp, my_strcasetbl): Variables
4294 removed.
4295 (my_strcasecmp): Function removed.
4296 (Vfontset_table, next_fontset_id, Vdefault_fontset): New
4297 variables.
4298 (AREF, ASIZE): New macros.
4299 (FONTSET_FROM_ID, FONTSET_ID, FONTSET_NAME, FONTSET_FRAME,
4300 FONTSET_ASCII, FONTSET_BASE, BASE_FONTSET_P, FONTSET_REF,
4301 FONTSET_REF_VIA_BASE, FONTSET_SET): New macros.
4302 (fontset_ref, fontset_ref_via_base, fontset_set, make_fontset,
4303 fontset_id_valid_p, font_family_registry, fontset_name,
4304 fontset_ascii, free_face_fontset, face_suitable_for_char_p,
4305 face_for_char, make_fontset_for_ascii_face, fontset_font_pattern):
4306 New functions.
4307 (fs_load_font): New arg FACE. Caller changed.
4308 (fs_query_fontset): Argument changed. Caller changed.
4309 (Fquery_fontset): call fs_query_fontset.
4310 (fs_register_fontset, alloc_fontset_data, free_fontset_data):
4311 Functions removed.
4312 (clear_fontset_elements, check_registry_encoding,
4313 check_fontset_name): New functions.
4314 (syms_of_fontset): Set char-table-extra-slots property of fontset
4315 to 3. Staticpro and initialize Vfontset_table and
4316 Vdefault_fontset. Defsubr fontset_font and fontset_list.
4317
4318 * frame.h (struct frame): Member `fontset_data' removed.
4319 (FRAME_FONTSET_DATA): Macro removed.
4320
4321 * frame.c (make_frame): Don't allocate f->fontset_data.
4322 (Fdelete_frame): Don't free f->fontset_data.
4323
6c4bfdc0
KH
4324 * msdos.c (XMenuActivate): Args to lookup_derived_face changed.
4325
9111d4b5
KH
4326 * xdisp.c (charset_at_position): Function removed.
4327 (init_iterator): Don't set member charset of struct `it'.
4328 (handle_face_prop, reseat_to_string, set_iterator_to_next,
4329 next_element_from_display_vector, insert_left_trunc_glyphs):
4330 Likewise.
4331 (face_before_or_after_it_pos): Call FACE_FOR_CHAR, not
4332 FACE_FOR_CHARSET.
4333 (get_next_display_element, append_space,
4334 extend_face_to_end_of_line): Likewise.
4335
4336 * xfaces.c (Qx_charset_registry, Vface_default_registry):
4337 Variables removed.
4338 (clear_font_table, frame_update_line_height, load_face_font):
4339 Adjusted for the change of fontset implementation.
4340 (load_face_fontset_font): Function removed.
4341 (pixel_point_size): New function.
4342 (font_list): Argument type changed. Caller changed.
4343 (LFACE_FONT): New macro.
4344 (check_lface_attrs): Check attr[LFACE_FONT_INDEX].
4345 (set_lface_from_font_name): Type of arg FONTNAME is changed to
4346 Lisp_Object. Determine the font name by actually loading a font
4347 by the specified pattern. Set LFACE_FONT (lface) to the specified
4348 pattern. Even if a font is not found, don't try alternatives.
4349 (Finternal_set_lisp_face_attribute): Handle `font' slot in lface.
4350 (set_font_frame_param): If `font' is specified in lface, use it.
4351 (Finternal_get_lisp_face_attribute): Handle `font' slot in lface.
4352 (lface_same_font_attributes_p): Likewise.
4353 (make_realized_face): Arguent changed. Caller changed. Set
4354 face->ascii_face to face itself.
4355 (free_realized_face): Free face->fontset if face is for ASCII.
4356 (face_suitable_for_iso8859_1_p, face_suitable_for_charset_p,
4357 deduce_unibyte_registry, x_charset_registry): Functions removed.
4358 (free_realized_multibyte_face): New function.
4359 (lookup_face, lookup_named_face, lookup_derived_face): Argument
4360 changed. Caller changed.
4361 (try_font_list): Argument type changed.
4362 (face_fontset): Check `font' slot of ATTRS, not `family' slot.
4363 (choose_face_font): Argument changed. Handle fontset properly.
4364 (choose_face_fontset_font): Function removed.
4365 (realize_default_face, realize_named_face): Don't remove the
4366 former face here.
4367 (realize_face): Argument changed. Caller changed. Remove face
4368 with the arg former_face_id in advance. Load font for the new
4369 face.
4370 (realize_x_face): Argument changed. Caller changed. For a
4371 multibyte character, share fontset with base_face. For a single
4372 byte character, make a new realized fontset. Don't load a font
4373 here.
4374 (realize_tty_face): Argument changed. Caller changed.
4375 (compute_char_face): Call FACE_FOR_CHAR, not FACE_FOR_CHARSET.
4376 (face_at_buffer_position): Don't check multibyte_p for returning
4377 DEFAULT_FACE_ID.
4378 (face_at_string_position): Call FACE_SUITABLE_FOR_CHAR_P, not
4379 FACE_SUITABLE_FOR_CHARSET_P.
4380 (syms_of_xfaces): Remove code for Qx_charset_registry and
4381 Vface_default_registry.
4382
6c4bfdc0
KH
4383 * xterm.c: Include fontset.h after dispextern.h. Undo the changes
4384 related to PER_CHAR_METRIC done by Gerd on 2000-03-03.
9111d4b5
KH
4385 (x_per_char_metric): Don't try FONT->default_char. Even if
4386 pcm->width is zero, glyph bits may exist.
4387 (x_encode_char): Always initialize char2b->byte1.
4388 (x_get_char_face_and_encoding): Call FACE_FOR_CHAR to get face_id.
4389 (x_get_glyph_face_and_encoding): New arg two_byte_p. Caller
4390 changed.
4391 (x_append_glyph): Set glyph->glyph_not_available_p.
4392 (x_produce_glyphs): Set it->glyph_not_available_p. Don't set
4393 it->charset. Handle the case that per char metric is not
4394 available. If it->multibyte_p is zero and it->c is a multibyte
4395 character, convert it to a unibyte character.
4396 (struct glyph_string): Delete member `charset'.
4397 (x_set_mouse_face_gc): Call FACE_FOR_CHAR to get face_id. Handle
4398 the case that per char metric is not available correctly.
4399 (x_fill_glyph_string): Handle the case that the specific glyph is
4400 not available correctly.
4401 (BUILD_CHAR_GLYPH_STRINGS): Don't set s->charset.
4402 (BUILD_COMPOSITE_GLYPH_STRING): Likewise.
4403 (x_new_font): Call FS_LOAD_FONT, not fs_load_font.
4404 (x_new_fontset): Call fontset_ascii to get ASCII font name of the
4405 fontset. Don't call FS_LOAD_FONT.
4406
4407 * xfns.c (Fx_create_frame): Don't cal fs_register_fontset.
4408 (x_create_tip_frame): Likewise.
4409 (Fx_close_connection): Free full_name of font_info.
4410
4411 * fns.c (optimize_sub_char_table): New function.
4412 (Foptimize_char_table): New function.
4413 (syms_of_fns): Defsubr Soptimize_char_table.
4414
b33dd3b0
GM
44152000-03-20 Gerd Moellmann <gerd@gnu.org>
4416
4417 * buffer.c (Fset_buffer_modified_p): Set update_mode_lines
4418 only if buffer is displayed in some window.
4419
4420 * xdisp.c (handle_single_display_prop): Initialize local `value'.
4421 (try_window_reusing_current_matrix): Don't call scroll run
4422 function if run's current and desired position are the same;
4423 this prevents cursor flickering.
4424
4e8a9132
SM
44252000-03-19 Stefan Monnier <monnier@cs.yale.edu>
4426
4427 * regex.h (RE_TRANSLATE. RE_TRANSLATE_P): Moved to regex.c.
4428
4429 * regex.c (RE_STRING_CHAR): New macro.
4430 (GET_CHAR_AFER_2): Remove.
4431 (RE_TRANSLATE, RE_TRANSLATE_P): New macros moved from regex.h.
4432 (enum re_opcode_t): Remove on_failure_jump_exclusive.
4433 (print_partial_compiled_pattern, re_compile_fastmap)
4434 (re_match_2_internal): Remove on_failure_jump_exclusive.
4435 (regex_compile): Turn optimizable P+ loops into PP*, so that the
4436 optimization only need to work for * (ie. can use of_keep_string_jump).
4437 Remove the special case for .*\n since it is now covered by the general
4438 optimization.
4439 (re_search_2): Don't bother with `room'.
4440 (skip_one_char): New function.
4441 (skip_noops): Simplify since `memory' is not needed any more.
4442 (mutually_exclusive_p): Restructure slightly to use `switch' and
4443 add handling for "all" remaining cases.
4444 (re_match_2_internal): Change on_failure_jump_smart to use
4445 on_failure_keep_string_jump (and redirect the end-of-loop jump)
4446 rather than on_failure_jump_exclusive.
4447
2136fdd4
GM
44482000-03-19 Gerd Moellmann <gerd@gnu.org>
4449
4450 * xfns.c (select_visual): Don't set dpyinfo->n_planes to the
4451 number of bits per RGB because it's everywhere used as the depth
4452 of the visual.
4453
4454 * term.c (calculate_costs): Remove code dealing with X frames.
4455
18e21ce8 44562000-03-19 Richard M. Stallman <rms@gnu.org>
e53ae11c
RS
4457
4458 * lread.c (syms_of_lread): Doc fix for load-convert-to-unibyte.
4459
d7b511c4
GM
44602000-03-18 Gerd Moellmann <gerd@gnu.org>
4461
4462 * lread.c (read_integer): Unread the last char not consumed.
4463
16b5d424
GM
44642000-03-17 Gerd Moellmann <gerd@gnu.org>
4465
4466 * xterm.c (x_update_window_cursor): Don't update in frames
d7b511c4 4467 which are in the process of being deleted.
16b5d424 4468
1fa28578
GM
44692000-03-16 Gerd Moellmann <gerd@gnu.org>
4470
83488cce
GM
4471 * Makefile.in (mostlyclean): Add `*.core'.
4472 (clean): Add `bootstrap-emacs'.
4473
1fa28578
GM
4474 * lread.c (read_integer): New function.
4475 (read1): Support read syntax #o, #x, #b, #r.
4476
99633e97
SM
44772000-03-15 Stefan Monnier <monnier@cs.yale.edu>
4478
1fa28578
GM
4479 * regex.c (re_match_2): Fix string shortening (to fit `stop') to
4480 make sure POINTER_TO_OFFSET gives the same value before and after
4481 PREFETCH. Use `dfail' to guarantee "atomic" matching.
99633e97
SM
4482 (PTR_TO_OFFSET): Use POINTER_TO_OFFSET.
4483 (debug): Now only active if > 0 rather than if != 0.
4484 (DEBUG_*): Update for the new meaning of `debug'.
1fa28578
GM
4485 (print_partial_compiled_pattern): Add missing `succeed' case. Use
4486 CHARSET_* macros in the charset(_not) branch. Fix off-by-two bugs
4487 in `succeed_n', `jump_n' and `set_number_at'.
99633e97
SM
4488 (store_op1, store_op2, insert_op1, insert_op2)
4489 (at_begline_loc_p, at_endline_loc_p): Add prototype.
1fa28578
GM
4490 (group_in_compile_stack): Move to after its arg's types are
4491 declared and add a prototype.
99633e97 4492 (PATFETCH): Define in terms of PATFETCH_RAW.
1fa28578
GM
4493 (GET_UNSIGNED_NUMBER): Add the usual `do { ... } while(0)'
4494 wrapper.
99633e97 4495 (QUIT): Redefine as a nop except for NTemacs.
1fa28578
GM
4496 (regex_compile): Handle intervals {,M} as if it was {0,M}. Fix
4497 indentation of the greedy-op and shy-group code.
99633e97
SM
4498 (at_(beg|end)line_loc_p): Fix argument's types.
4499 (re_compile_fastmap): Ifdef out failure_stack_ptr to shut up gcc.
4500 (re_search_2): Use POS_AS_IN_BUFFER. Simplify `room' computation.
4501 (MATCHING_IN_FIRST_STRING): Remove.
1fa28578
GM
4502 (re_match_2): Use POS_AS_IN_BUFFER. Ifdef out failure_stack_ptr
4503 to shut up gcc. Use FIRST_STRING_P and POINTER_TO_OFFSET. Use
4504 QUIT unconditionally.
99633e97 4505
699238d9
GM
45062000-03-15 Gerd Moellmann <gerd@gnu.org>
4507
4508 * minibuf.c (Fminibuffer_complete): Set point to ZV if finding
4509 a sole completion.
4510
4511 * process.c (send_process): Add a hint that the function
4512 can call Lisp code to its comment.
4513
4514 * lread.c (load_dangerous_libraries): New variable.
4515 (Vbytecomp_version_regexp): New variable.
4516 (safe_to_load_p): New function.
4517 (Fload): Handle files not compiled with Emacs specially.
4518 (syms_of_lread): New Lisp variable load-dangerous-libraries.
4519
34e23e5a
GM
45202000-03-14 Gerd Moellmann <gerd@gnu.org>
4521
9c763cca
GM
4522 * lisp.h (free_frame_xic) [HAVE_X_I18N]: Add missing semicolon.
4523
4524 * xterm.c (xim_close_dpy, xim_initialize): Use X11R6-style XIM
4525 support functions only if HAVE_X11R6_XIM is defined.
4526 (xim_instantiate_callback): Define only if HAVE_X11R6_XIM.
4527
4528 * s/sol2.h (INHIBIT_X11R6_XIM): Define.
4529
4530 * xfns.c (X_I18N_INHIBITED): Don't define.
4531 (create_frame_xic): Remove conditional compilation on
4532 X_I18N_INHIBITED.
4533 (x_kill_gs_process, x_window): Use FRAME_X_VISUAL.
4534
4535 * config.in (HAVE_X_I18N): Moved here from xterm.h.
4536 (HAVE_X11R6_XIM): Define.
4537
4538 * xterm.h (HAVE_X_I18N) [HAVE_X11R6]: Moved to config.in.
4539
34e23e5a
GM
4540 * xterm.c (x_term_init): Add support for X resource `synchronous'.
4541 If set, call XSynchronize.
4542
66f0296e
SM
45432000-03-13 Stefan Monnier <monnier@cs.yale.edu>
4544
34e23e5a
GM
4545 * regex.c: Declare a new type `re_char' used throughout the code
4546 for the string char type. It's `const unsigned char' to match the
4547 rest of Emacs. Consistently make sure all pointers to strings use
4548 it and make sure all pointers into the pattern use `unsigned
4549 char'.
66f0296e 4550 (re_match_2_internal): Use `PREFETCH+STRING_CHAR' instead of
34e23e5a
GM
4551 GET_CHAR_AFTER_2. Also merge wordbound and notwordbound to reduce
4552 code duplication.
66f0296e
SM
4553
4554 * charset.h (GET_CHAR_AFTER_2): Remove.
4555 (GET_CHAR_BEFORE_2): Use unsigned chars, like everywhere else.
4556
854a025c
KR
45572000-03-12 Ken Raeburn <raeburn@gnu.org>
4558
4559 * Makefile.in (temacs): Evaluate ALL_LDFLAGS into a temporary
4560 variable before the invocation of YMF_PASS_LDFLAGS, in case both
4561 of them try to use backquotes.
4562
b9d2c7e2
DL
45632000-03-12 Dave Love <fx@gnu.org>
4564
4565 * unexelf.c: Restore changes of 1999-10-19.
4566 (unexec): Don't adjust bss for sbss type SHT_PROGBITS; otherwise
4567 fix its type and alignment; copy it from current process.
4568
5e5dff44
GM
45692000-03-12 Gerd Moellmann <gerd@gnu.org>
4570
9b2f3c38
GM
4571 * atimer.c (cancel_atimer): Break out of the loop as soon as timer
4572 has been found. Fix bug not computing timer's predecessor.
4573
427ec082 4574 * fileio.c (Fread_file_name): Handle case that DIR contains a
9172b88d
GM
4575 file name.
4576
e1cff360
GM
4577 * window.c (Fsave_window_excursion): Doc fix.
4578
5e5dff44
GM
4579 * xfns.c (x_defined_color): Rewritten to use
4580 x_allocate_nearest_color.
4581
e411ce4b
EZ
45822000-03-12 Eli Zaretskii <eliz@is.elta.co.il>
4583
4584 * msdos.c (vga_installed): New function, code moved from
4585 dos_set_window_size.
4586 (Qbar, Qcursor_type, outside_cursor): New variables.
4587 (syms_of_msdos): Intern and staticpro them.
4588 (dos_ttraw) [__DJGPP__ >= 2, !HAVE_X_WINDOWS]: Save the cursor
4589 shape used outside Emacs when called for the first time.
4590 (dos_ttcooked) [__DJGPP__ >= 2, !HAVE_X_WINDOWS]: Restore the
4591 cursor shape used outside Emacs.
4592 (msdos_set_cursor_shape, IT_set_cursor_type): New functions.
4593 (IT_frame_up_to_date): Call IT_set_cursor_type, in case the cursor
4594 type has changed.
4595 (IT_set_frame_parameters): Call IT_set_cursor_type if the frame
4596 parameters specify the cursor. Make qreverse a global
4597 variable (renamed to Qreverse).
4598
80460654
GM
45992000-03-09 Gerd Moellmann <gerd@gnu.org>
4600
4601 * fns.c (Fy_or_n_p): Cancel busy-cursor.
4602
95cd4c40
SM
46032000-03-08 Stefan Monnier <monnier@cs.yale.edu>
4604
4605 This is a big redesign of failure-stack and register handling, prompted
4606 by bugs revealed when trying to add shy-groups. Overall, what happened
4607 is that loops are now structured a little differently, groups can be
4608 shy and the code is a little simpler.
4609
4610 * regex.h: Update the copyright.
4611 (RE_SHY_GROUPS): New value.
4612 (RE_UNMATCHED_RIGHT_PAREN_ORD): Renumber.
4613 (RE_SYNTAX_EMACS): Add RE_SHY_GROUPS.
4614
80460654
GM
4615 * regex.c (enum re_opcode_t): Remove jump_past_alt,
4616 maybe_pop_jump, push_dummy_failure and dumy_failure_jump. Add
4617 on_failure_jump_(exclusive, loop and smart). Also fix the comment
4618 for (start|stop)_memory since they now only take one argument (the
4619 second has becomes unnecessary).
4620 (print_partial_compiled_pattern): Adjust for changes in
4621 re_opcode_t.
4622 (print_compiled_pattern): Use %ld to printf long ints and flush to
4623 make debugging a little easier.
95cd4c40
SM
4624 (union fail_stack_elt): Make the integer unsigned.
4625 (struct fail_stack_type): Add a `frame' element.
4626 (INIT_FAIL_STACK): Init `frame' as well.
4627 (POP_PATTERN_OP): New macro for re_compile_fastmap.
4628 (DEBUG_PUSH, DEBUG_POP): Remove.
4629 (NUM_REG_ITEMS): Remove.
4630 (NUM_NONREG_ITEMS): Adjust.
80460654
GM
4631 (FAILURE_PAT, FAILURE_STR, NEXT_FAILURE_HANDLE)
4632 (TOP_FAILURE_HANDLE): New macros for the cycle detection.
95cd4c40 4633 (ENSURE_FAIL_STACK): New macro for PUSH_FAILURE_(REG|POINT).
80460654
GM
4634 (PUSH_FAILURE_REG, POP_FAILURE_REG, CHECK_INFINITE_LOOP): New
4635 macros.
4636 (PUSH_FAILURE_POINT): Don't push registers any more. The pattern
4637 address pushed is not the destination of the jump but the source
4638 of it instead.
95cd4c40
SM
4639 (NUM_FAILURE_ITEMS): Remove.
4640 (POP_FAILURE_POINT): Adapt to the new stack structure (i.e. pop
80460654
GM
4641 registers before the actual failure point). Don't hardcode any
4642 meaning for str==NULL anymore.
95cd4c40 4643 (union register_info_type, REG_MATCH_NULL_STRING_P, IS_ACTIVE)
80460654
GM
4644 (MATCHED_SOMETHING, EVER_MATCHED_SOMETHING, SET_REGS_MATCHED):
4645 Remove.
95cd4c40
SM
4646 (REG_UNSET_VALUE): Use NULL (why not?).
4647 (compile_range): Remove declaration since it doesn't exist.
4648 (struct compile_stack_elt_t): Remove inner_group_offset.
4649 (old_reg(start|end), reg_info, reg_dummy, reg_info_dummy): Remove.
4650 (regex_grow_registers): Remove dead code.
4651 (FIXUP_ALT_JUMP): New macro.
80460654
GM
4652 (regex_compile): Add shy-groups Change loops to use
4653 on_failure_jump_smart&jump instead of
4654 on_failure_jump&maybe_pop_jump. Change + loops to eliminate the
4655 initial (dummy_failure_)jump. Remove c1_base (looks like unused
4656 variable to me). Use `jump' instead of `jump_past_alt' and don't
4657 bother with push_dummy_failure in alternatives since it is now
4658 unnecessary. Use FIXUP_ALT_JUMP. Eliminate a useless `#ifdef
4659 emacs' for (re)allocating the stack.
4660 (re_compile_fastmap): Remove dead variables i and num_regs. Exit
4661 from loop when bufp->can_be_null rather than jumping to `done'.
4662 Avoid jumping backwards so as to ensure termination. Use
4663 PATTERN_STACK_EMPTY and POP_PATTERN_OP. Improved handling of
4664 backreferences. Remove dead code in handling of `anychar'.
95cd4c40 4665 (skip_noops, mutually_exclusive_p): New functions taken from the
80460654
GM
4666 handling of `maybe_pop_jump' in re_match_2_internal. Slightly
4667 improve mutually_exclusive_p to handle ".+\n".
4668 (lowest_active_reg, highest_active_reg,
4669 NO_(LOWEST|HIGHEST)_ACTIVE_REG) Remove.
4670 (re_match_2_internal): Use %p instead of 0x%x when printf'ing
4671 ptrs. Don't SET_REGS_MATCHED anymore. Remove many dead
4672 variables. Push register (in `start_memory') on the stack rather
4673 than storing it in old_reg(start|end). Remove the cycle detection
4674 from `stop_memory', replaced by the use of on_failure_jump_loop
4675 for greedy loops. Add code for the new on_failure_jump_<foo>.
4676 Remove ad-hoc code in `on_failure_jump' to push more registers in
4677 the case of a loop. Take out code from `maybe_pop_jump' into
4678 separate functions and adapt it to the semantics of
4679 `on_failure_jump_smart'. Remove jump_past_alt, dummy_failure_jump
4680 and push_dummy_failure. Remove dummy_failure handling and
4681 handling of `failures to jump to on_failure_jump' (this last one
4682 was already dead code, it seems).
4683 (group_match_null_string_p, alt_match_null_string_p)
4684 (common_op_match_null_string_p): Remove.
95cd4c40 4685
7397acc4
DL
46862000-03-08 Dave Love <fx@gnu.org>
4687
4688 * config.in: Don't depend on __STDC__ for volatile.
4689 Add POINTER_TYPE, PTR, PROTOTYPES.
4690
4691 * hftctl.c, strftime.c: Use PROTOTYPES.
4692 * eval.c (find_handler_clause): Likewise.
4693
4694 * mem-limits.h: Use POINTER_TYPE.
4695
4696 * lisp.h (P_): Define based on PROTOTYPES, not __STDC__.
4697 (memory_warnings): Declare using POINTER_TYPE.
4698
5e91ff9e
GM
46992000-03-08 Gerd Moellmann <gerd@gnu.org>
4700
feab4fba
GM
4701 * xfns.c (x_set_cursor_type): If ARG is nil, give frame no cursor.
4702
25edb08f
GM
4703 * xdisp.c (display_echo_area): Temporarily inhibit garbage
4704 collection.
4705
5e91ff9e
GM
4706 * xfns.c: Remove obsolete code in #if 0.
4707 (Fx_focus_frame): New function.
4708
a735b7e1
KH
47092000-03-07 Miyashita Hisashi <himi@bird.scphys.kyoto-u.ac.jp>
4710
4711 * coding.c (coding_category_name): Add coding-category-utf-8,
4712 coding-category-utf-16-be, coding-category-utf-16-le.
4713 (UTF_8_1_OCTET_P, UTF_8_EXTRA_OCTET_P, UTF_8_2_OCTET_LEADING_P,
4714 UTF_8_3_OCTET_LEADING_P, UTF_8_4_OCTET_LEADING_P,
4715 UTF_8_5_OCTET_LEADING_P, UTF_8_6_OCTET_LEADING_P): New macros.
4716 (detect_coding_utf_8): New function.
4717 (UTF_16_INVALID_P, UTF_16_HIGH_SURROGATE_P
4718 UTF_16_LOW_SURROGATE_P): New macros.
4719 (detect_coding_utf_16): New function
4720 (detect_coding_mask): When priorities are specified, skip any
4721 categories that have `nil' coding-system. Fix bug of returning
4722 wrong mask when PRIORITIES is specified and detect_coding_XXX()
4723 returns a mask not set in PRIORITIES.
4724 (detect_eol_type_in_2_octet_form): New function.
4725 (detect_eol): selects detect_eol_type_XXX to call according to
4726 cooding->category_idx.
4727 (detect_coding_system): Remove `nil' coding-system in the result.
4728 (Fupdate_coding_systems_internal): Update all coding-categories.
4729
4730 * coding.h (CODING_CATEGORY_IDX_UTF_8,
4731 CODING_CATEGORY_IDX_UTF_16_BE, CODING_CATEGORY_IDX_UTF_16_LE): New
4732 macros.
4733 (CODING_CATEGORY_IDX_RAW_TEXT, CODING_CATEGORY_IDX_BINARY,
4734 CODING_CATEGORY_IDX_MAX): Adjusted for the above macros.
4735 CODING_CATEGORY_IDX_UTF_16_LE.
4736 (CODING_CATEGORY_MASK_UTF_8, CODING_CATEGORY_MASK_UTF_16_BE,
4737 CODING_CATEGORY_MASK_UTF_16_LE): New macros.
4738 (CODING_CATEGORY_MASK_ANY): Include the above macros.
4739 (CODING_CATEGORY_MASK_UTF_16_BE_LE): New macro.
4740
9994cc69
GM
47412000-03-07 Gerd Moellmann <gerd@gnu.org>
4742
e9b4e5ff
GM
4743 * doc.c (Fdocumentation_property): If value is not a string,
4744 and doesn't refer to etc/DOC, evaluate it to obtain a string.
4745
f7daf1e1
GM
4746 * xterm.c (x_connection_closed) [USE_X_TOOLKIT]: Don't try to
4747 close the display with XtCloseDisplay. This caused a bus error
4748 on OpenWindows.
4749
9994cc69
GM
4750 * minibuf.c (Fminibuffer_complete): Move point to ZV when input is
4751 complete but not unique.
4752
4336c705
GM
47532000-03-06 Gerd Moellmann <gerd@gnu.org>
4754
18bb0684
GM
4755 * process.c (send_process): Remove local variable `procname' that
4756 might become invalid when a GC happens. Instead, access the
4757 process name slot directly.
4758
4336c705
GM
4759 * xfns.c (x_set_menu_bar_lines_1): Adjust window's orig_top and
4760 orig_height if set.
4761
4762 * frame.c (set_menu_bar_lines_1): Adjust window's orig_top and
4763 orig_height if set.
4764
515d0d0e
EZ
47652000-03-06 Eli Zaretskii <eliz@is.elta.co.il>
4766
4767 * msdos.c (IT_note_mouse_highlight): Return immediately if frame's
4768 glyph matrices have been freed.
4769
100b3cbb
GM
47702000-03-05 Gerd Moellmann <gerd@gnu.org>
4771
50df5e5a 4772 * Makefile.in (tags): Include ../lwlib/TAGS in TAGS.
6178bc23 4773 (bootstrap-temacs): Set LC_ALL to C like for temacs.
50df5e5a
GM
4774
4775 * xfns.c (QCdata): Moved to xdisp.c.
4776
4777 * xdisp.c (QCdata): Moved here from xfns.c.
4778 (syms_of_xdisp): Initialize QCdata.
4779
4780 * frame.h (FRAME_INTERNAL_BORDER_WIDTH) [!HAVE_X_WINDOWS]: Define.
4781
4782 * window.c (coordinates_in_window): Use
4783 FRAME_INTERNAL_BORDER_WIDTH_SAFE instead of
4784 FRAME_INTERNAL_BORDER_WIDTH.
4785
100b3cbb 4786 * xdisp.c (try_window_id): Recompute unchanged information if
4336c705 4787 it is obviously invalid.
100b3cbb
GM
4788
4789 * xterm.c (x_term_init): Create a colormap if not using the
4790 default visual.
4791
4792 * xterm.h (select_visual): Change prototype.
4793
4794 * xfns.c (select_visual): Rewritten. Recognize user-specified
4795 visual classes.
4796 (visual_classes): New variable.
4797
64d739c4
GM
47982000-03-04 Gerd Moellmann <gerd@gnu.org>
4799
4800 * xfns.c (x_defined_color, x_set_mouse_color, lookup_rgb_color)
4801 (lookup_pixel_color, x_laplace, x_build_heuristic_mask)
4802 (png_load): Access colormap of frame using FRAME_X_COLORMAP.
4803 (x_decode_color): Don't handle allocation of white and black
4804 specially.
4805 (x_window) [USE_X_TOOLKIT]: Set XtNvisual, XtNdepth, and
4806 XtNcolormap resources.
4807 (x_window) [!USE_X_TOOLKIT]: Pass colormap to XCreateWindow.
4808 (Fx_create_frame): Initialize color members of x_output structure.
4809 (xpm_load): Pass colormap to XPM lib.
4810
4811 * xfaces.c (x_free_colors): Access colormap of frame using
4812 FRAME_X_COLORMAP. Be paranoid about freeing black and white
4813 when default colormap is used.
4814
4815 * xterm.c (x_term_init): Set Colormap member of x_display_info
4816 structure. Copy colormap if resource `privateColormap' is
4817 specified (PseudoColor only).
4818 (x_setup_relief_color): Access colormap of frame using
4819 FRAME_X_COLORMAP.
4820
4821 * xterm.h (struct x_display_info): Add Colormap member `cmap'.
4822 (FRAME_X_COLORMAP, FRAME_X_VISUAL): New macros.
4823
c3cee013
JR
48242000-03-04 Jason Rumney <jasonr@gnu.org>
4825
4826 * xfaces.c Change many FRAME_X... macros to FRAME_WINDOW... or
4827 other non-platform-specific equivalents.
64d739c4 4828 [WINDOWSNT]: Include w32term.h, fontset.h and define X
c3cee013
JR
4829 specific functions and macros as their w32 equivalents where
4830 non-platform-specifics are not available.
4831 [HAVE_X_WINDOWS]: Change most of these to HAVE_WINDOW_SYSTEM.
4832 (x_create_gc, x_free_gc) [WINDOWSNT]: Add W32 versions.
4833 (clear_font_table) [WINDOWSNT]: Call w32_unload_font.
4834 (frame_update_line_height): Use macros to access f->output_data.
4835 (defined_color): Remove FIXME comments; fixed.
4836 (x_face_list_fonts, prepare_face_for_display): Put X specifics
4837 into #ifdef blocks. Add WINDOWSNT blocks.
4838 (Fx_list_fonts): Use macros for accessing font data.
4839 (set_lface_from_font_name): Different default fonts for X and
4840 WINDOWSNT.
4841 (font_scalable_p) [WINDOWSNT]: Treat wildcard XLFD_AVGWIDTH as
4842 scalable for backward compatibility.
64d739c4 4843 (realize_tty_face) [MSDOS]: Do the same for WINDOWSNT.
c3cee013
JR
4844 (syms_of_xfaces) [WINDOWSNT]: Allow scalable fonts by default.
4845
64d739c4 4846 * emacs.c (main) [HAVE_NTGUI]: Call syms_of_xfaces instead of
c3cee013
JR
4847 syms_of_w32faces.
4848
4849 * makefile.nt (w32faces.obj): Remove.
4850 (xfaces.obj): Add.
4851
807cc41c
JR
48522000-03-03 Jason Rumney <jasonr@gnu.org>
4853
4854 * keyboard.c (make_lispy_event): Call buffer_posn_from_coords with
4855 correct parameters.
4856
0007072a
KR
48572000-03-03 Ken Raeburn <raeburn@gnu.org>
4858
4859 * unexelf.c (PT_LOAD, SHT_*, SHN_*) [__NetBSD__]: Only provide
4860 standard ELF definitions here if the system header does not.
4861
71a6ba55
GM
48622000-03-03 Gerd Moellmann <gerd@gnu.org>
4863
4864 * xterm.c (PER_CHAR_METRIC): Removed.
4865 (x_per_char_metric_1, x_default_char): New functions.
4866 (x_per_char_metric): If font's default char is invalid, return
4867 metrics of a suitably chosen usable default char.
4868 (x_draw_glyph_string_foreground): If font has an invalid default
64d739c4
GM
4869 char, replace occurrences of unprintable chars with a suitably
4870 chosen usable default char.
71a6ba55 4871
900fa1f1
GM
48722000-03-02 Gerd Moellmann <gerd@gnu.org>
4873
42f55fe0
GM
4874 * xterm.c (note_mouse_highlight): Return quickly if frame's
4875 glyph matrices have been freed.
4876
4877 * dispnew.c (free_glyphs): Block input while freeing matrices.
4878
900fa1f1
GM
4879 * xfns.c (x_clear_image, x_kill_gs_process): Use x_free_colors.
4880
4881 * xterm.c (x_alloc_lighter_color, x_setup_relief_color): Use
4882 x_free_colors.
4883
4884 * dispextern.h (x_free_colors): Add prototype.
4885
4886 * xfaces.c (x_free_colors): New function.
4887 (unload_color, free_face_colors): Use it.
4888
2f950292
EZ
48892000-03-02 Eli Zaretskii <eliz@is.elta.co.il>
4890
4891 * msdos.h (FRAME_INTERNAL_BORDER_WIDTH): Define to zero.
4892
4893 * window.c [MSDOS]: Include msdos.h.
4894
54d04320
DL
48952000-03-02 Dave Love <fx@gnu.org>
4896
4897 * m/powerpcle.h, m/sparc.h: Don't set C_OPTIMIZE_SWITCH.
4898
4899 * m/mips-siemens.h, m/news-r6.h, m/news-risc.h, m/tekxd88.h: Don't
4900 set C_OPTIMIZE_SWITCH for gcc.
4901
0ba93ac4
KH
49022000-03-02 Kenichi Handa <handa@etl.go.jp>
4903
4904 * coding.c (coding_save_composition): Be sure to allocate
4905 composition data area in coding even if there's no composition in
4906 the current run.
4907
a2bc11d4
JR
49082000-03-01 Jason Rumney <jasonr@gnu.org>
4909
4910 * w32term.c: Equivalent changes to those made to xterm.c on
4911 2000-02-25 and 2000-02-24.
4912
4913 * w32fns.c: Equivalent changes to those made to xfns.c on
4914 2000-02-25 and 2000-02-21.
4915
4916 * sysdep.c: [WINDOWSNT]: Use sys_read and sys_write to ensure
4917 correct line-end convention is followed.
4918
4919 * w32menu.c [HAVE_BOXES]: Remove #undef.
4920 (single_keymap_panes): Remove code for simulating checkmarks.
4921 (single_menu_item): Remove notbuttons_ptr argument. Callers changed.
4922 Remove code for drawing simulated checkmarks.
4923 (w32_menu_show): make unibyte help string correctly.
4924 (add_menu_item): draw standard Windows checkmarks. Draw radio
4925 buttons as radio buttons if possible.
4926
72d19d75
GM
49272000-03-01 Gerd Moellmann <gerd@gnu.org>
4928
2df636f4
GM
4929 * sysdep.c (start_of_text): Don't define this function for NetBSD
4930 with ELF.
4931
427ec082 4932 * m/pmax.h (START_FILES, CANNOT_DUMP) [__NetBSD__ || __OpenBSD__]:
2df636f4
GM
4933 Don't define.
4934 (UNEXEC) [__NetBSD__ || __OpenBSD__]: Define to unexelf.o.
4935 (LINKER): Don't undef if __NetBSD__ is defined.
4936
4937 * m/mips.h (LINKER) [__NetBSD__ || __OpenBSD__]: Don't define.
4938
4939 * fileio.c [__NetBSD__]: Define `unix'.
4940
72d19d75
GM
4941 * xfns.c (start_busy_cursor): Allow floats for busy-cursor-delay.
4942
ed4d0512
GM
49432000-02-29 Gerd Moellmann <gerd@gnu.org>
4944
50b1039f
GM
4945 * atimer.c (start_atimer): Don't abort when timers are stopped.
4946 (append_atimer_lists): New function.
4947 (cancel_atimer, stop_other_atimers, run_all_atimers): Handle
4948 arbitrary lists of stopped and running atimers.
4949
ed4d0512
GM
4950 * atimer.c (cancel_atimer): Handle canceling an atimer when
4951 some timers are stopped.
4952
4953 * xfns.c (cancel_busy_cursor): Set busy_cursor_atimer to null
4954 after canceling it.
4955
4956 * fns.c (maybe_resize_hash_table): Handle case of new size
4957 coming out as being the same as old size.
4958
387023ee
JR
49592000-02-27 Jason Rumney <jasonr@gnu.org>
4960
4961 * makefile.nt: Add atimer.h to dependencies.
4962 * w32.c (init_environment): Set Vw32_num_mouse_buttons here.
4963 * w32console.c: Only disable window system features for dispextern.h
4964 (initialize_w32_display): Build a display info for the console.
4965 * w32faces.c (tty_defined_color): Apply xfaces.c change from 02-17.
4966 * w32fns.c (w32_wnd_proc) [WM_LBUTTON_DOWN, WM_RBUTTON_DOWN,
4967 WM_LBUTTON_UP, WM_RBUTTON_UP]: Do not treat 4 or more button mice
4968 as 2 button mice.
4969 * w32gui.h (struct W32FontStruct): Revert last change after change
4970 to xdisp.c.
4971 * w32menu.c (single_submenu): Set up help string.
4972 [!HAVE_MULTILINGUAL_MENU]: Don't overwrite item_name with descrip.
4973 (w32_dialog_show): Set up help string.
4974 * w32term.c (w32_display_info_for_display): Remove unused function.
4975 (w32_draw_bitmap): Use pre-built bitmaps.
4976 (w32_initialize_display_info): New function to initialize parts of
4977 display info that are common to both GUI and console frames.
4978 (w32_term_init): Use w32_initialize_display_info. Do not set
4979 Vw32_num_mouse_buttons here, as it is not called for console
4980 frames. Build bitmaps for indicating truncated lines etc.
4981 (x_delete_display): Destroy pre-built bitmaps.
4982 * xdisp.c (handle_single_display_prop): Use FONT_HEIGHT macro.
4983 (echo_area_display): Change HAVE_X_WINDOWS to HAVE_WINDOW_SYSTEM.
4984
4516715a
DL
49852000-02-27 Dave Love <fx@gnu.org>
4986
4987 * lisp.h: Add a bunch of prototypes.
4988
171ca836
KH
49892000-02-26 Kenichi Handa <handa@etl.go.jp>
4990
4991 * keyboard.c (read_char): Set `usec' correctly.
4992
4013921d
KH
49932000-02-25 Miyashita Hisashi <himi@bird.scphys.kyoto-u.ac.jp>
4994
4995 * ccl.c (ccl_driver) [CCL_MapMultiple]: When the mapped value is
4996 `lambda', set reg[RRR] to the map index.
4997 (ccl_driver) [CCL_MapSingle]: When the mapped value is found, set
4998 reg[RRR] to 0. Otherwise, set it to -1.
4999
9244a058
GM
50002000-02-25 Gerd Moellmann <gerd@gnu.org>
5001
2df636f4 5002 * emacs.c (main): Remove code snippet commented out with `//'.
9244a058 5003
18e21ce8 50042000-02-25 Richard M. Stallman <rms@gnu.org>
427ec082 5005
f43d79c1
GM
5006 * fileio.c (Ffile_symlink_p): If result starts with a `/'
5007 and contains a `:', prepend `/:'.
5008
5009 * window.c (select_window_1): If selected_window is nil,
5010 don't "swap out" the buffer's point.
5011 (Fset_window_configuration): Set selected_window to nil
5012 before calling Fselect_window.
5013 (unshow_buffer): Don't set point in buffer from window's point
5014 if another more recently selected window also shows the buffer.
5015
bed0c171
GM
50162000-02-25 Gerd Moellmann <gerd@gnu.org>
5017
449c3c52
GM
5018 * keyboard.c (recursive_edit_1): Cancel busy-cursor.
5019
f5b58615
GM
5020 * xfns.c (inhibit_busy_cursor, busy_count): Removed.
5021 (Fx_show_busy_cursor, Fx_hide_busy_cursor): Removed.
5022 (busy_cursor_atimer, busy_cursor_shown_p, Vbusy_cursor_delay): New
5023 variables.
5024 (DEFAULT_BUSY_CURSOR_DELAY): New define.
5025 (start_busy_cursor, cancel_busy_cursor, show_busy_cursor)
5026 (hide_busy_cursor): New functions.
5027 (syms_of_xfns): DEFVAR_LISP Vbusy_cursor_delay.
5028
5029 * minibuf.c (read_minibuf): Cancel busy-cursor.
5030
5031 * keyboard.c (command_loop_1): Call start_busy_cursor before
5032 Fcommand_execute and cancel_busy_cursor after it.
5033 (timer_check): Remove busy-cursor code.
5034 (Fread_key_sequence, Fread_key_sequence_vector): Start/cancel busy
5035 cursor timer.
5036
5037 * process.c (wait_reading_process_input): Remove busy-cursor code.
5038
5039 * eval.c (Fsignal): Call cancel_busy_cursor instead of
5040 Fx_hide_busy_cursor.
5041
5042 * dispextern.h (Fx_show_busy_cursor, Fx_hide_busy_cursor):
5043 Remove prototyoes.
5044 (start_busy_cursor, cancel_busy_cursor): Add prototypes.
5045
5046 * lisp.h (Fx_hide_busy_cursor): Remove prototype.
5047
5048 * xterm.c (XTread_socket): Remove busy-cursor code.
5049
4eb8436f
GM
5050 * dispnew.c (flush_stdout) [GLYPH_DEBUG]: New function.
5051 (build_frame_matrix_from_leaf_window): Put code handling
5052 glyph row's not being a slice of a frame row in #if 0.
5053 (sync_window_with_frame_matrix_rows): New function.
5054 (frame_row_to_window): New function.
5055 (mirror_line_dance): Handle copies between windows.
5056
3cb65b0e
GM
5057 * lread.c (Fload): Use `xfree' instead of `free'.
5058 (init_obarray): Use `xmalloc' instead of `malloc'.
5059
bed0c171
GM
5060 * window.c (Fset_window_buffer): Set WINDOW to the window
5061 after decoding.
2add4349
GM
5062 (coordinates_in_window): Take frame's internal border width
5063 into account.
bed0c171 5064
42088c12
GM
50652000-02-24 Gerd Moellmann <gerd@gnu.org>
5066
5067 * xterm.c (x_display_and_set_cursor): Display cursor of
5068 non-selected windows depending on the setting of
5069 cursor_in_non_selected_windows.
5070
5071 * xdisp.c (cursor_in_non_selected_windows): New variable.
5072 (syms_of_xdisp): DEFVAR_BOOL it.
5073
d1e103b2
GM
50742000-02-23 Gerd Moellmann <gerd@gnu.org>
5075
723e779c
GM
5076 * data.c (Fstring_to_number): If number is greater than what
5077 fits into an integer, return a float.
5078
d1e103b2
GM
5079 * eval.c (specbind): Remove references to
5080 keyword_symbols_constant_flag.
5081
5082 * data.c (keyword_symbols_constant_flag): Removed.
5083 (Fmakunbound, set_internal, syms_of_data): Remove references to
5084 keyword_symbols_constant_flag.
5085
5086 * bytecode.c (Fbyte_code): Remove keyword_symbols_constant_flag.
5087
214f877f
KH
50882000-02-23 Kenichi Handa <handa@etl.go.jp>
5089
5090 * syntax.c (multibyte_syntax_as_symbol): New variable.
5091 (syms_of_syntax): Declare it as a Lisp variable.
5092 (SYNTAX_WITH_MULTIBYTE_CHECK): New macro.
5093 (scan_lists): If both sexpflag and multibyte_syntax_as_symbol are
5094 nonzero, treat all multibyte characters as symbol.
42088c12 5095 (init_syntax_once): Give syntax `word' to all multibyte
214f877f
KH
5096 characters.
5097
130adcb7
EZ
50982000-02-22 Eli Zaretskii <eliz@is.elta.co.il>
5099
3cb65b0e 5100 * frame.c (Fdelete_frame): Don't let echo_area_window remain on
d7d0dac0 5101 a deleted frame.
130adcb7 5102
17cbbf95
GM
51032000-02-21 Gerd Moellmann <gerd@gnu.org>
5104
5105 * frame.c (Fmouse_position): GCPRO retval instead of x and y.
5106
5107 * xfns.c (x_window_to_frame, x_any_window_to_frame)
5108 (x_non_menubar_window_to_frame): Check the busy-cursor window.
5109
beb0bc36
DL
51102000-02-21 Dave Love <fx@gnu.org>
5111
5112 * frame.c (Vmouse_position_function): New variable.
5113 (Fmouse_position): Use it.
5114 (syms_of_frame): Install it.
5115
5116 * charset.c (find_charset_in_str): Fix use of `c' instead of `c1'.
5117
1d92afcd
GM
51182000-02-20 Gerd Moellmann <gerd@gnu.org>
5119
5120 * fileio.c (Finsert_file_contents): Unbind the binding of
5121 standard-output done by temp_output_buffer_setup.
329eed9f
GM
5122
5123 * eval.c (funcall_lambda): Don't bind Qmocklisp_arguments unless
5124 Vmocklisp_arguments is nil. Inline Fcar and Fcdr.
5125 (specbind, unbind_to): Handle most common case of non-constant
5126 symbol with trivial value specially.
5127
5128 * bytecode.c (Fbyte_code) <Bvarset>: Inline most common case.
5129
18e21ce8 51302000-02-20 Richard M. Stallman <rms@gnu.org>
2d06696f
RS
5131
5132 * data.c (Fmake_variable_buffer_local): Doc fix.
5133 Init found_for_buffer to 0.
5134 (Fmake_variable_frame_local): If the variable has already
5135 been buffer-local, set the check_frame field.
5136
1d4311c3
EZ
51372000-02-20 Eli Zaretskii <eliz@is.elta.co.il>
5138
5139 * msdos.c (IT_write_glyphs): Allocate a larger screen_buf as data
5140 produced for CODING_MODE_LAST_BLOCK requires.
5141
2dc95ddd
DL
51422000-02-18 Dave Love <fx@gnu.org>
5143
5144 * keyboard.c (echo_keystrokes): Remove declaration.
5145 (Vecho_keystrokes) New variable.
5146 (read_char, record_menu_key, read_key_sequence): Use it to allow
5147 use of float value.
5148 (syms_of_keyboard): Change Vecho_keystrokes declaration.
5149
5150 * lread.c: Undef feature selection macros before defining.
5151
f0930f35
GM
51522000-02-18 Gerd Moellmann <gerd@gnu.org>
5153
5154 * data.c (let_shadows_buffer_binding_p): Ignore specbindings
5155 for symbols other than the symbol in question.
5156
e3d4de90
DL
51572000-02-17 Dave Love <fx@gnu.org>
5158
5159 * s/sol2.h (C_DEBUG_SWITCH): Define to allow optimization.
5160
0b378936
GM
51612000-02-17 Gerd Moellmann <gerd@gnu.org>
5162
d621caf7
GM
5163 * emacs.c (main): Use #if GC_MARK_STACK instead of #ifdef.
5164
0b378936
GM
5165 * alloc.c (enum mem_type): Compile unconditionally.
5166
3b451f74
EZ
51672000-02-17 Eli Zaretskii <eliz@is.elta.co.il>
5168
5169 * xfaces.c (tty_defined_color): Don't return faulire indication
5170 for unspecified-fg and unspecified-bg pseudo-colors.
5171
10689a01
GM
51722000-02-17 Gerd Moellmann <gerd@gnu.org>
5173
1216f5e4
GM
5174 * alloc.c (mark_object): Don't mark symbol names in pure space.
5175 (gc_sweep): Don't unmark symbol names in pure space.
5176
5177 * lisp.h (GC_USE_GCPROS_AS_BEFORE, GC_MAKE_GCPROS_NOOPS)
5178 (GC_MARK_STACK_CHECK_GCPROS, GC_USE_GCPROS_CHECK_ZOMBIES)
5179 [GC_MARK_STACK]: New defines.
427ec082 5180 (GCPRO1, GCPRO2, GCPRO3, GCPRO4, GCPRO5, UNGCPRO)
1216f5e4
GM
5181 [GC_MARK_STACK == GC_MAKE_GCPROS_NOOPS]: Define as no-ops.
5182
5183 * emacs.c (main) [GC_MARK_STACK]: Initialize stack_base.
5184
5185 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer): Use
5186 allocate_buffer instead of xmalloc.
5187
5188 * alloc.c (toplevel): Include setjmp.h.
5189 (PURE_POINTER_P): New define.
5190 (enum mem_type) [GC_MARK_STACK]: New enumeration.
5191 (Vdead) [GC_MARK_STACK]: New variable.
5192 (lisp_malloc): Add parameter TYPE, call mem_insert if
5193 GC_MARK_STACK is defined.
5194 (allocate_buffer): New function.
427ec082 5195 (lisp_free) [GC_MARK_STACK]: Call mem_delete.
1216f5e4
GM
5196 (free_float) [GC_MARK_STACK]: Set type to Vdead.
5197 (free_cons) [GC_MARK_STACK]: Set car to Vdead.
5198 (stack_base, mem_root, mem_z) [GC_MARK_STACK]: New variables.
5199 (MEM_NIL) [GC_MARK_STACK]: New define.
5200 (struct mem_node) [GC_MARK_STACK]: New structure.
5201 (mem_init, mem_find, mem_insert, mem_delete, mem_insert_fixup)
5202 (mem_delete_fixup, mem_rotate_left, mem_rotate_right)
5203 (live_string_p, live_cons_p, live_symbol_p, live_float_p)
5204 (live_misc_p, live_vector_p, live_buffer_p, mark_memory)
5205 (mark_stack) [GC_MARK_STACK]: New functions.
5206 (Fgarbage_collect) [GC_MARK_STACK]: Call mark_stack.
5207 (clear_marks): Removed.
5208 (gc_sweep): Set free conses' car, free floats' type, free
5209 symbols' function to Vdead. Use lisp_free to free buffers.
5210 (init_alloc_once): Initialize Vdead.
5211 (survives_gc_p): Return non-zero for pure objects.
5212
5213 * alloc.c: Add comments throughout the file.
5214
2503c8b1
GM
5215 * atimer.c (stop_other_atimers): Don't call cancel_atimer because
5216 that unblocks alarms.
5217
8389e1e2
GM
5218 * alloc.c, bytecode.c, data.c, dispnew.c, ecrt0.c, editfns.c,
5219 emacs.c, floatfns.c, fns.c, lread.c, print.c, config.in, lisp.h,
5220 Makefile.in: Remove `LISP_FLOAT_TYPE' and `standalone'.
5221
10689a01 5222 * frame.c (make_frame): Set frame initiallly to `garbaged'.
427ec082 5223
bfc17d18
KH
52242000-02-17 Kenichi Handa <handa@etl.go.jp>
5225
4a09dee0
KH
5226 * xdisp.c (decode_mode_spec_coding): Delete superfluous code to
5227 avoid infinite error signaling. Allocate sufficient memory for
5228 eol_str in the case that eoltype is Lisp_Int.
bfc17d18 5229
2b927d02
SM
52302000-02-17 Stefan Monnier <monnier@cs.yale.edu>
5231
5232 * syntax.c (Fforward_comment): Undo the previous change, since cc-mode
5233 depends on the previous behavior.
5234
b49cb764
GM
52352000-02-16 Gerd Moellmann <gerd@gnu.org>
5236
5237 * sysdep.c (vfork) [!HAVE_VFORK]: Removed.
5238
99e95407
GM
52392000-02-15 Gerd Moellmann <gerd@gnu.org>
5240
5241 * s/freebsd.h (BROKEN_PTY_READ_AFTER_EAGAIN): Define.
5242
5243 * process.c (send_process) [BROKEN_PTY_READ_AFTER_EAGAIN]:
b49cb764 5244 Workaround for FreeBSD bug. Clear output queue after EAGAIN in
99e95407
GM
5245 write(2).
5246
6ffd3cf7
RS
52472000-02-15 Richard M. Stallman <rms@gnu.org>
5248
5249 * data.c (set_internal): Don't make variable buffer-local
5250 if within a let-binding for the same buffer.
5251 (let_shadows_buffer_binding_p): New function.
5252
5253 * eval.c (specbind): For buffer-local value,
5254 record the current buffer also.
5255 (unbind_to): Cope with that change.
5256
cad53475
GM
52572000-02-15 Gerd Moellmann <gerd@gnu.org>
5258
5259 * window.c (Fsave_window_excursion): Doc fix.
5260
1aa963c8
SM
52612000-02-15 Stefan Monnier <monnier@cs.yale.edu>
5262
5263 * syntax.c (back_comment): Make sure we only consider comment-starters
5264 of the relevant style and return -1 in case of a failure to find the
5265 beginning of the comment.
5266 (Fforward_comment): If back_comment fails, go back to the position just
5267 after the comment-end.
5268 (scan_lists): Add comment describing a very minor bug.
5269
b9b84fd3
SM
52702000-02-14 Stefan Monnier <monnier@cs.yale.edu>
5271
5272 * minibuf.c (Ftry_completion, Fall_completions): Add a reference to
5273 `completion-regexp-list' in the docstring.
5274
3a28db80
DL
52752000-02-14 Dave Love <fx@gnu.org>
5276
5277 * xfaces.c (tty_defined_color): Declare color_idx unsigned long.
5278
fb4a568d
SM
52792000-02-14 Stefan Monnier <monnier@cs.yale.edu>
5280
5281 * regex.h (RE_SYNTAX_EMACS): Add RE_CHAR_CLASSES and RE_INTERVALS
5282 to Emacs' syntax. Also fix the comment about set/not-set meanings
5283 since Emacs syntax is not the value 0 any more.
5284 * search.c (compile_pattern_1): Remove RE_CHAR_CLASSES from the syntax
5285 since it's now part of RE_SYNTAX_EMACS.
5286
1063ebb5
DL
52872000-02-12 Dave Love <fx@gnu.org>
5288
5289 * frame.h (SELECTED_FRAME): Use NULL, not 0 to avoid warnings on
5290 Alpha.
5291
fb07a302
GM
52922000-02-12 Gerd Moellmann <gerd@gnu.org>
5293
5294 * xdisp.c (syms_of_xdisp): Doc fix for scroll-conservatively.
5295
aaf2320c
DL
52962000-02-12 Dave Love <fx@gnu.org>
5297
5298 * s/aix3-2.h, s/osf-1.h: Define C_DEBUG_SWITCH for non-gcc.
5299
5300 * s/ux4800.h, s/umips.h, s/umax.h, s/sol2.h, s/sco5.h, s/rtu.h:
fb07a302
GM
5301 * s/ptx4.h, s/umax.h, s/dgux.h, s/bsd4-2.h, s/bsd4-3.h:
5302 * s/hpux.h: Don't define HAVE_VFORK.
aaf2320c
DL
5303
5304 * s/gnu-linux.h: Don't define HAVE_VFORK or HAVE_SYS_SIGLIST.
5305
5306 * s/nextstep.h: Don't define HAVE_ALLOCA.
5307
5308 * config.in: Add vfork bits.
5309
eedf8bde
GM
53102000-02-12 Gerd Moellmann <gerd@gnu.org>
5311
5312 * process.c (Fopen_network_stream) [POLL_FOR_INPUT]: Register
5313 unwind function to undo the effect of stopping atimers.
5314
5315 * keyboard.c (bind_polling_period): Stop all timers except
5316 poll_timer.
5317
5318 * atimer.c (stopped_atimers): New variable.
5319 (stop_other_atimers, run_all_atimers, unwind_stop_other_atimers):
5320 New functions.
5321
5322 * atimer.h (stop_other_atimers, run_all_atimers)
5323 (unwind_stop_other_atimers): Add function prototypes.
427ec082 5324
eedf8bde
GM
5325 * s/hpux10.h (HAVE_XRMSETDATABASE): Define if not already defined.
5326
8476c2f8
KR
53272000-02-11 Ken Raeburn <raeburn@gnu.org>
5328
5329 * Makefile.in (LIBX): Link in tiff library before jpeg, since tiff
5330 library may depend on jpeg.
5331 (atimer.o): Depends on atimer.c.
5332
0e85e4a3
KH
53332000-02-11 Kenichi Handa <handa@etl.go.jp>
5334
5335 * insdel.c (del_range_1): Call update_compositions.
5336 (del_range_both): Call update_compositions just once..
5337
97fa0cc8
DL
53382000-02-10 Dave Love <fx@gnu.org>
5339
5340 * xfns.c (create_frame_xic): Fix initialization of automatic
5341 aggregates for pcc.
5342
25566a3c
KH
53432000-02-09 Kenichi Handa <handa@etl.go.jp>
5344
5345 * ccl.c (CCL_MAKE_CHAR): New macro.
5346 (ccl_driver) <CCL_TranslateCharacter>: Check the validity of
5347 registers by CCL_MAKE_CHAR before calling translate_char.
5348 <CCL_TranslateCharacterConstTbl> Likewise.
5349
69da54ba
DL
53502000-02-08 Dave Love <fx@gnu.org>
5351
5352 * lread.c (__EXTENSIONS__): Define.
5353
f7136ee8
GM
53542000-02-08 Gerd Moellmann <gerd@gnu.org>
5355
5356 * puresize.h (BASE_PURESIZE): Increase to 650000.
5357
7768790b
EZ
53582000-02-07 Eli Zaretskii <eliz@is.elta.co.il>
5359
5360 * msdos.c (XMenuActivate): Turn off the cursor after displaying
5361 the help message.
5362
38fd211b
EZ
53632000-02-07 Eli Zaretskii <eliz@is.elta.co.il>
5364
5365 * s/msdos.h (INTERNAL_TERMINAL): Add capabilities se, so, us, ue,
5366 md, mh, mb, mr, and me to the fake termcap entry.
5367
66e4690f
KR
53682000-02-06 Ken Raeburn <raeburn@gnu.org>
5369
5370 * sound.c (sound_cleanup): Don't call device close routine if the
5371 function pointer is null.
5372
a75dfea0
AI
53732000-02-06 Andrew Innes <andrewi@gnu.org>
5374
5375 * dispextern.h: Change HAVE_X_WINDOWS to HAVE_WINDOW_SYSTEM,
5376 around image definitions and prototypes.
5377 (gamma_correct) [WINDOWSNT]: New prototype.
5378
5379 * w32term.c (x_make_frame_visible): Replace call to
5380 input_poll_signal with poll_for_input.
5381
5382 * window.c [WINDOWSNT]: Include w32term.h.
5383
5384 * xdisp.c [WINDOWSNT]: Include w32term.h.
5385
5386 * makefile.nt: Add dependencies on w32gui.h.
5387 (OBJ1): Include atimer.obj.
5388 ($(BLD)\atimer.obj): New dependency rule.
5389
5390 * w32.c (sigmask): New function (does nothing).
5391 (sigunblock): Ditto.
5392
5393 * frame.c [WINDOWSNT]: Include w32term.h.
5394
5395 * w32gui.h (struct W32FontStruct): Add ascent and descent slots.
5396
5397 * lread.c (syms_of_lread): Fix literal newlines.
5398
5399 * emacs.c (USAGE): Split into USAGE1 and USAGE2, to work-around
5400 the string constant limit (2048 bytes) in MSVC.
5401 (main): Ditto.
5402
59ddecde
GM
54032000-02-05 INOUE Seiichiro <inoue@ainet.or.jp>
5404
5405 * xterm.c (x_display_and_set_cursor) [HAVE_X_I18N]: Set pre-edit
5406 area.
5407 (x_display_cursor) [HAVE_X_I18N]: Don't set it here.
5408 (XTread_socket) [HAVE_X_I18N]: <KeyPress, KeyRelease>: Don't
5409 dispatch the event.
5410
07590973
DL
54112000-02-04 Dave Love <fx@gnu.org>
5412
5413 * fileio.c: Remove some unused vars.
5414 (_GNU_SOURCE): Define (for euidaccess).
5415
5416 * lread.c (_XOPEN_SOURCE): Declare (for ftello).
5417
5418 * minibuf.c (read_minibuf_noninteractive): Remove undeclared
5419 gcpro1, gcpro2.
5420 (read_minibuf): Deal with allow_props correctly.
5421
649351f9
EZ
54222000-02-03 Eli Zaretskii <eliz@is.elta.co.il>
5423
5424 * s/msdos.h (SYSTEM_PURESIZE_EXTRA): Enlarge to 60000.
5425
66e4690f 54262000-02-03 Ken Raeburn <raeburn@gnu.org>
f1b9c7c1
KR
5427
5428 * search.c (compile_pattern): If a cache entry has a nil regexp,
5429 fill in that entry instead of clobbering a previously cached
5430 string regexp.
5431
66e4690f 54322000-02-02 Ken Raeburn <raeburn@gnu.org>
15c9cf81
KR
5433
5434 * puresize.h (BASE_PURESIZE): Increase to 610000.
5435
d240a249
GM
54362000-02-02 Gerd Moellmann <gerd@gnu.org>
5437
5438 * frame.c (Fframe_parameters): Add GCPRO because tty_color_name
5439 can GC.
5440
ca91fb26
KH
54412000-02-02 Kenichi Handa <handa@etl.go.jp>
5442
25660570
KH
5443 * ccl.c (ccl_driver) <CCL_WriteExprRegister>: Set jump_address
5444 instead of incrementing ic directly.
5445 <CCL_WriteExprConst> Likewise.
5446 <ccl_set_expr>: Set ic to jump_address.
5447
ca91fb26
KH
5448 * fileio.c (e_write): Fix the handling of
5449 CODING_FINISH_INSUFFICIENT_SRC.
5450
2ede9689
DL
54512000-02-01 Dave Love <fx@gnu.org>
5452
5453 * editfns.c (Fpropertize): Doc fix.
5454
5455 * process.c (Fstart_process): Doc fix.
5456
5457 * eval.c: Fix various doc strings not to duplicate information
5458 from help-manyarg-func-alist.
5459
5460 * window.c (Fset_window_margins): Don't make interactive. Doc
5461 fix.
5462
5463 * doc.c (Vhelp_manyarg_func_alist): New variable.
5464 (Fdocumentation): Use it.
5465 (syms_of_doc): Define it.
5466
b6680a0e
GM
54672000-01-31 Gerd Moellmann <gerd@gnu.org>
5468
2cb750ba
GM
5469 * xterm.c (xim_open_dpy): Remove unused local variable.
5470
74e9213b
GM
5471 * emacs.c (USAGE): Use term `display options' instead of `X
5472 options'.
5473
5474 * xdisp.c (Ftrace_to_stderr) [GLYPH_DEBUG]: New function.
5475 (syms_of_xdisp) [GLYPH_DEBUG]: Defsubr it.
5476
b6680a0e
GM
5477 * fns.c (sweep_weak_table): New function.
5478 (sweep_weak_hash_tables): Use it. Keep on marking until there
5479 is no more change.
5480
994c5afe
GM
54812000-01-30 Gerd Moellmann <gerd@gnu.org>
5482
5483 * xterm.c (x_delete_display): Update next_noop_dpyinfo to ensure
5484 that XTread_socket does not crash by trying to call XNoOp on a
5485 closed display.
427ec082 5486
f00276e3
JR
54872000-01-30 Jason Rumney <jasonr@gnu.org>
5488
5489 * w32inevt.c (get_frame, w32_console_mouse_position, mouse_moved_to):
5490 Change selected_frame to SELECTED_FRAME ().
5491 (w32_console_mouse_position): Remove #ifndef MULE from around
5492 `insist' parameter.
5493
5494 * makefile.nt: Remove dosfns.obj.
5495
5496 * term.c (term_init) [WINDOWSNT]: Initialize TN_max_colors.
5497
5498 * w32fns.c (w32_defined_color): Check for valid frame before
5499 applying gamma correction. Eliminate dependency on frame elsewhere.
5500 (w32_load_system_font): Switch FIXED_PITCH and VARIABLE_PITCH.
5501 (w32_to_x_font): Use resx and resy not height_in and width_in.
5502 (x_to_w32_font): Doc fix.
5503 (xlfd_strip_height): New function to strip and return font height.
5504 (w32_font_match): Compare height separately from rest of xlfd
5505 spec, using xlfd_strip_height.
5506
5507 * w32term.c (w32_term_init): Swap resx and height_in, resy and
5508 width_in. Use w32_defined_color in place of defined_color.
5509
5510 * w32faces.c: Merge more of DOS and X specifics in preparation for
5511 merge with xfaces.c.
5512 (defined_color): Remove FIXME comment.
5513 (tty_color_name): Provide w32-specific function.
5514 (realize_tty_face): Handle FACE_TTY_DEFAULT*_COLOR specially.
5515
5516 * w32console.c (turn_on_face, turn_off_face): Removed.
5517 (w32_face_attributes): New function.
5518 (Global_variables): Reduce scope where possible.
5519 (clear_frame, ins_del_lines, scroll_line): Use char_attr_normal as
5520 fill attribute.
5521 (hl_mode): Don't modify text attributes.
5522 (write_glyphs): Don't do anything if len <= 0. Use
5523 w32_face_attributes to get attributes for drawing. Write
5524 terminating codes using char_attr_normal.
5525 (reset_terminal_modes, set_terminal_modes): Turn off highlight.
5526 (update_begin, update_end): Likewise.
5527 (vga_stdcolor_name): New function.
5528 (initialize_w32_display): Remove char_attr_reverse and char_attr.
5529 (Fset_screen_color): Remove char_attr_reverse.
5530
b08e8bb2
GM
55312000-01-29 Gerd Moellmann <gerd@gnu.org>
5532
5533 * xfns.c (xic_set_preeditarea): Take window parameter and
5534 window-relative pixel-positions.
5535
5536 * xterm.c (x_display_cursor): Set XIC pre-edit area only if window
5537 is its frame's selected window.
5538 (xim_instantiate_callback): Likewise.
5539
5540 * xfns.c (x_create_im): Removed.
5541 (DEFAULT_STYLE, DEFAULT_FONT): Removed.
5542 (supported_xim_styles): Renamed from supported_styles.
5543 (best_xim_style): Renamed from best_style.
5544 (create_frame_xic): Renamed from xic_create_frame.
5545 (free_frame_xic): Renamed from xic_destroy_frame.
427ec082 5546
b08e8bb2
GM
55472000-01-29 INOUE Seiichiro <inoue@ainet.or.jp>
5548
5549 * xterm.c (XTread_socket) [HAVE_X_I18N]: If event is for none of
5550 our frames, call XFilterEvent with 2nd parameter `None'.
5551 (XTread_socket) <KeyPress> [HAVE_X_I18N]: Handle XmbLookupString
5552 returning XBufferOverflow.
5553 (XTread_socket) <ConfigureNotify> [HAVE_X_I18N]: Set XIC status
5554 area.
5555 (x_display_cursor) [HAVE_X_I18N]: Set XIC pre-edit area.
5556 (x_new_fontset) [HAVE_X_I18N]: Create XIC status area fontset.
5557 (xim_destroy_callback, xim_open_dpy, xim_instantiate_callback)
5558 (xim_initialize, xim_close)
5559 [HAVE_X_I18N && HAVE_X11R6]: New functions.
5560 (x_destroy_window) [HAVE_X_I18N]: Call xic_destroy_frame.
5561 (x_term_init) [HAVE_X_I18N]: Call xim_initialize.
5562 (x_delete_display) [HAVE_X_I18N]: Call xim_close.
5563
5564 * xterm.h (struct x_display_info) [HAVE_X_I18N]: Add members `xim'
5565 and `xim_styles'.
5566 (struct x_output) [HAVE_X_I18N]: Remove member `xim', add
5567 `xic_style' and `xic_xfs'.
5568 (FRAME_MENUBAR_HEIGHT, FRAME_X_XIM, FRAME_X_XIM_STYLES)
5569 (FRAME_XIC_STYLE, FRAME_XIC_FONTSET): New macros.
5570 (FRAME_XIM): Removed.
5571
5572 * xfns.c (supported_styles): New variable.
5573 (DEFAULT_STYLE, DEFAULT_FONT): New macros
5574 (xic_create_xfontset, best_style, xic_create_frame)
5575 (xic_destroy_frame, xic_set_preeditarea, xic_set_statusarea)
5576 (xic_set_xfontset): New functions.
5577
142e109c
DL
55782000-01-28 Dave Love <fx@gnu.org>
5579
5580 * s/irix6-5.h: Revert last change after change to irix5-0.h.
5581
5582 * m/iris4d.h (C_SWITCH_MACHINE): Don't use -G0.
5583
b02786f9
GM
55842000-01-28 Gerd Moellmann <gerd@gnu.org>
5585
d060bc9f
GM
5586 * buffer.c (Fother_buffer): Don't call Fset_buffer_major_mode
5587 for *scratch* if it already existed.
5588
b02786f9
GM
5589 * emacs.c (USAGE): New macro.
5590 (main): Use it to display usage information.
5591
2c52d7e4
EZ
55922000-01-27 Eli Zaretskii <eliz@is.elta.co.il>
5593
5594 Support for the menu-help feature:
5595
5596 * msdos.h: Change prototypes of XMenuAddSelection and
5597 XMenuActivate.
5598
5599 * msdos.c (IT_clear_end_of_line): Print the extent of the cleared
5600 part of the line to the termscript file.
5601 (IT_clear_to_end): Clear the entire line, not just its beginning.
5602 (menu_help_message, prev_menu_help_message): New variables.
5603 (IT_menu_make_room): Make room for the help_text member.
5604 (IT_menu_display): New argument disp_help; all callers changed.
5605 If disp_help is non-zero, store the help text of the active menu
5606 item in menu_help_message.
5607 (XMenuAddPane): Initialize the help_text member to NULL.
5608 (XMenuAddSelection): New argument help_text. Store it in the
5609 XMenu structure.
5610 (XMenuActivate): New argument help_callback. If the value of
5611 menu_help_message has changed since the last time, display the
5612 menu help message text while waiting for the mouse to move. Clear
5613 the echo area before exiting.
5614 (XMenuDestroy): Free the help_text member.
5615
ffe0bcd1
GM
56162000-01-27 Gerd Moellmann <gerd@gnu.org>
5617
5618 * xmenu.c (xmenu_show) [!USE_X_TOOLKIT]: Pass help to
5619 XMenuAddSelection. Pass help callback to XMenuActivate.
5620 (menu_help_callback) [!USE_X_TOOLKIT]: New function.
5621
50dbd23f
EZ
56222000-01-27 Eli Zaretskii <eliz@is.elta.co.il>
5623
5624 * atimer.c (start_atimer) [!HAVE_SETITIMER]: Use EMACS_SET_SECS
5625 and EMACS_SET_USECS.
5626
f5941bf8
GM
56272000-01-26 Dave Love <fx@gnu.org>
5628
6c67ddee
DL
5629 * editfns.c (Fchar_after, Fchar_before): Doc fix.
5630
f5941bf8
GM
5631 * bytecode.c (Fbyte_code): Use {BEFORE,AFTER}_POTENTIAL_GC where
5632 an error may be signalled.
5633
9e49c990
GM
56342000-01-26 Gerd Moellmann <gerd@gnu.org>
5635
fc3cb460
GM
5636 * s/irix6-5.h [__GNUC__ && __GNUC_MINOR__ >= 95]: Undef
5637 LD_SWITCH_SYSTEM inherited from irix5-0.h.
5638
9e49c990
GM
5639 * bytecode.c (Fbyte_code) [BYTE_CODE_SAFE]: Fix typo.
5640
d0c037d8
GM
56412000-01-25 Gerd Moellmann <gerd@gnu.org>
5642
5643 * charset.c (Fstring): If there is a multibyte char among
5644 the args, always return a multibyte string.
5645
e12489f9
GM
56462000-01-25 Gerd Moellmann <gerd@gnu.org>
5647
5648 * sysdep.c (sys_select): Turn atimers off and on instead of
5649 recording and restoring old alarm handler
5650
5651 * process.c (toplevel): Include atimer.h.
5652 (create_process_1): Rewritten.
5653 (create_process): Use atimers instead of alarm.
5654 (wait_reading_process_input) [hpux]: Turn atimers off instead
5655 of turning off SIGALRM.
5656 (wait_reading_process_input): Turn off atimers instead off
5657 calling stop_polling.
5658
5659 * emacs.c (main): Call init_atimer.
5660
5661 * keyboard.c (toplevel): Include systime.h and atimer.h.
5662 (polling_for_input): Removed because unused.
5663 (input_poll_signal) [POLL_FOR_INPUT]: Removed.
5664 (poll_timer): New variable.
5665 (poll_for_input, poll_for_input_1): New functions.
5666 (start_polling, stop_polling): Rewritten.
5667
5668 * keyboard.h (polling_for_input): Removed.
427ec082 5669
e12489f9
GM
5670 * atimer.h, atimer.c: New files.
5671
5672 * Makefile.in (obj): Add atimer.o.
5673 (atimer.o): New target.
5674
5675 * blockinput.h (pending_atimers): Add extern declaration.
5676 (UNBLOCK_INPUT): Rewritten. Handle pending atimers.
5677
5678 * lisp.h (popup_activated_flag): Add extern declaration.
5679
5680 * xmenu.c (popup_activated_flag): Make externally visible.
5681 (popup_activate_callback) [USE_MOTIF]: Increment
5682 popup_activated_flag.
5683 (popup_deactivate_callback) [USE_MOTIF]: Decrement it.
5684
5685 * xterm.c (toplevel): Include atimer.h.
5686 (toolkit_scroll_bar_interaction): New variable.
5687 (Fxt_process_timeouts): Removed.
5688 (x_process_timeouts): New function.
5689 (xt_action_hook): Clear toolkit_scroll_bar_interaction.
5690 (x_send_scroll_bar_event): Set toolkit_scroll_bar_interaction.
5691 (x_make_frame_visible): Call poll_for_input_1 instead of
5692 input_poll_signal. Don't call alarm.
5693 (x_initialize): Install timer calling x_process_timeouts.
427ec082 5694
1e5279b9
DL
56952000-01-24 Dave Love <fx@gnu.org>
5696
6c67ddee 5697 * s/irix5-0.h: Don't set LD_SWITCH_SYSTEM -- we use unexelf now.
1e5279b9
DL
5698 Don't use -cckr -- apparently not now necessary.
5699
edf6aeb8
EZ
57002000-01-24 Eli Zaretskii <eliz@is.elta.co.il>
5701
5702 * msdos.c (IT_menu_display): Truncate long menu lines at the right
5703 screen boundary.
5704
9badad41
JR
57052000-01-23 Jason Rumney <jasonr@gnu.org>
5706
5707 * w32fns.c (w32_defined_color): Apply gamma correction before
5708 trying to map to the palette.
5709 (w32_wnd_proc) [WM_ERASE_BACKGROUND]: Pass device context of frame
5710 to w32_clear_rect.
5711
5712 * w32term.c (w32_fill_rect): Do not try to deal with NULL hdc
5713 here. Callers changed to always pass real device context.
5714 (w32_draw_bitmap): Likewise.
5715 (w32_get_glyph_overhangs): Likewise.
5716 (w32_draw_box_rect): Make use of s->hdc rather than getting a new
5717 one.
5718 (w32_set_vertical_scroll_bar): Pass correct HWND parameters to
5719 pfnSetScrollInfo and SetScrollRange.
5720 (x_get_char_face_and_encoding): Don't turn iso8859-1 characters
5721 back into MULE characters after decoding them.
5722 (x_get_glyph_face_and_encoding): Likewise.
5723 (w32_per_char_metric): Use GetCharExtentPoint32W as fallback when
5724 GetCharABCWidthsW fails, since this is defined on Windows 9x.
5725 (x_produce_glyphs): Calculate per char metrics for a character
5726 that we know exists in default font when font_not_found_p is true.
5727
63bd786b
JR
57282000-01-22 Jason Rumney <jasonr@gnu.org>
5729
5730 * makefile.nt (intervals.obj, composite.obj): New modules.
5731 (composite.h): Added as dependency where appropriate.
5732
5733 * w32gui.h (XGCValue): New struct for emulating X GCs.
5734
5735 * w32term.h (XCharStruct): New struct for emulating X.
5736
5737 * w32console.c (turn_on_face, turn_off_face): New functions.
5738 (change_line_highlight): New prototype for new redisplay.
5739 (write_glyphs): Support multibyte text. Support faces.
5740
5741 * w32faces.c: Complete rewrite for new redisplay based on new
5742 xfaces.c.
5743
5744 * w32fns.c: Use SELECTED_FRAME macro in place of selected_frame
5745 throughout. struct frame * in place of FRAME_PTR.
5746 Skeleton support for images, toolbars, tooltips from xfns.c.
5747 (Fx_create_frame): Use system default for default scroll bar
5748 width.
5749 (w32_get_arg): Renamed from x_get_arg.
5750 (Fx_file_dialog): New function.
5751 (w32_list_fonts): Check cache before asking system.
5752 (Vw32_enable_synthesized_fonts): New variable.
5753 (Vw32_enable_italics): Obsolete, removed.
5754
5755 * w32inevt.c (get_frame, w32_console_mouse_position, mouse_moved_to):
5756 Use SELECTED_FRAME macro.
5757
5758 * w32menu.c: Add skeleton support for help strings on menus.
5759 (add_menu_item): Native checkbox and radio support added, but not
5760 yet enabled due to bugs.
5761 (push_menu_item): Add parameters type, selection and help.
5762 Callers updated.
5763 Formatting changes to reduce unnecessary diffs with xmenu.c.
5764
5765 * w32select.c (Fw32_set_clipboard_data): Update call to
5766 find_charset_in_str.
5767
5768 * w32term.c: Complete rewrite for new redisplay based on new
5769 xterm.c with necessary sections merged back in from old w32term.c.
5770
6ffd3cf7 57712000-01-21 Richard M. Stallman <rms@gnu.org>
b50c9214
RS
5772
5773 * data.c (set_internal): Further fix in same criterion.
5774
6ffd3cf7 57752000-01-20 Richard M. Stallman <rms@gnu.org>
8cc95642
RS
5776
5777 * data.c (set_internal): Fix the criteria for whether
5778 to swap out the old cached binding.
5779
60af03f1
DL
57802000-01-19 Dave Love <fx@gnu.org>
5781
5782 * lread.c: (syms_of_lread) [user-init-file]: Doc change.
5783
f9be074f
KH
57842000-01-18 Kenichi Handa <handa@etl.go.jp>
5785
5786 * regex.c (re_compile_fastmap): While checking a range table for
5787 `charset', skip flag bits for a character class correctly.
5788
52b8dbf9
GM
57892000-01-17 Gerd Moellmann <gerd@gnu.org>
5790
d36100c9
GM
5791 * m/news-risc.h (LD_SWITCH_MACHINE): Define differently for GCC.
5792
52b8dbf9
GM
5793 * xfns.c (x_window): Call lw_create_widget with new parameter
5794 list.
5795
5796 * widget.c (EmacsFrameSetCharSize): Change size of children first
5797 because of problems with main window geometry management under
5798 Lesstif.
5799
5800 * xmenu.c (enum menu_item_idx): New enumeration replacing defines
5801 MENU_ITEMS_ITEM_.*.
5802 (MENU_ITEMS_ITEM_HELP): New enumerator.
5803 (push_menu_item): Add parameter HELP. Record help in menu_items.
5804 (single_menu_item, single_submenu, list_of_items): Call
5805 push_menu_item with new parameter.
5806 (single_submenu): Set help string in widget value.
5807 (menu_highlight_callback): New function.
5808 (set_frame_menubar): Call lw_create_widget with new
5809 parameter list.
5810 (xmenu_show, xdialog_show): Ditto.
5811
3139018f
GM
58122000-01-13 Gerd Moellmann <gerd@gnu.org>
5813
5814 * sound.c (Fplay_sound): Improve doc string.
5815
83c8f461
RS
58162000-01-11 Richard M. Stallman <rms@gnu.org>
5817
5818 * lisp.h (set_internal): Enter the new arg.
5819
5820 * eval.c (specbind): Record buffer-local variables specially,
5821 indicating which buffer's binding was saved.
5822 (unbind_to): Restore buffer-local variables specially
5823 in the proper buffer.
5824
5825 * data.c (set_internal): New arg BUF.
427ec082 5826
83c8f461
RS
5827 * eval.c (specbind, unbind_to): Pass new arg to set_internal.
5828 * data.c (Fset): Pass new arg to set_internal.
5829 * bytecode.c (Fbyte_code): Pass new arg to set_internal.
427ec082 5830
1fab1775
GM
58312000-01-11 Gerd Moellmann <gerd@gnu.org>
5832
5833 * .gdbinit: Adapt to new strings. Add xbacktrace, xreload,
5834 xprintsym.
5835
83c8f461 58362000-01-11 Richard M. Stallman <rms@gnu.org>
6f59462e
RS
5837
5838 * minibuf.c (Ftry_completion): Doc fix.
5839
7a85e4df
GM
58402000-01-11 Gerd Moellmann <gerd@gnu.org>
5841
5842 * keyboard.c (Fclear_this_command_keys): Clear recent_keys
5843 vector, too.
5844
a970dae4
AS
58452000-01-11 Andreas Schwab <schwab@suse.de>
5846
5847 * coding.c (code_convert_region): Initialize total_skip.
5848
c65d14ee
DL
58492000-01-08 Dave Love <fx@gnu.org>
5850
5851 * eval.c (Fuser_variable_p): Check customizability too.
5852
834938d2
GM
58532000-01-07 Gerd Moellmann <gerd@gnu.org>
5854
5855 * minibuf.c (Fcompleting_read): Doc fix.
5856
e0303cd6
GM
58572000-01-05 Gerd Moellmann <gerd@gnu.org>
5858
8a26744b
GM
5859 * s/freebsd.h (C_SWITCH_SYSTEM): Add -I /usr/local/include and
5860 -L /usr/local/lib.
5861
e0303cd6
GM
5862 * xfns.c (x_create_im): New function to set IM and IC of a frame.
5863 Check that input style is supported before trying to create an
5864 IC for it.
5865 (x_window): Call x_create_im.
427ec082 5866
2e471eb5
GM
58672000-01-04 Gerd Moellmann <gerd@gnu.org>
5868
560a7bd2
GM
5869 * xfns.c (current_gif_memory_src): New variable.
5870 (gif_load): Record the address of the current memory source
5871 in current_gif_memory_src.
5872 (gif_read_from_memory): Use current_gif_memory_src.
5873
f9ee84a3
GM
5874 * systime.h (EMACS_GET_TIME, EMACS_ADD_TIME, EMACS_SUB_TIME): Give
5875 macros statement form.
5876
d1299cde
GM
5877 * sound.c (struct sound): Renamed from struct sound_file.
5878 (struct sound): Add members `data' and `header_size'.
5879 (enum sound_attr): Add SOUND_DATA.
5880 (current_sound, current_sound_device): Variables renamed from
5881 sound_file and sound_device.
5882 (parse_sound): Parse :data.
5883 (parse_sound): Handle sound data in strings.
5884 (find_sound_type): Function renamed from find_sound_file_type.
427ec082 5885 (wav_init, au_init): Fail if sound's header_size is smaller than
d1299cde
GM
5886 needed header size.
5887 (wav_play, au_play): Play sounds from string data.
5888
2e471eb5
GM
5889 * puresize.h (BASE_PURE_SIZE): Increase to 600000.
5890
5891 * lisp.h: Add prototype for allocate_string_data.
5892
5893 * alloc.c (Fgarbage_collect): Return number of live and free
5894 strings.
5895
5896 * alloc.c (mark_buffer): Remove code in #if 0.
5897 (gc_sweep): Ditto.
5898 (UNMARK_BALANCE_INTERVALS): Give the macro statement form.
5899 (strings_consed): New variable.
5900 (allocate_string): Set it.
5901 (syms_of_alloc): Add DEFVAR_INT for strings_consed.
5902 (Fmemory_use_counts): Return strings_consed. Use Flist.
5903
5904 * alloc.c: General cleanup in comments etc. Remove conditional
5905 compilation for `standalone'.
5906
5907 * lisp.h (struct Lisp_String): Make DATA member `unsigned char *'.
5908
5909 * alloc.c (MARK_STRING, UNMARK_STRING, STRING_MARKED_P):
5910 (GC_STRING_BYTES, GC_STRING_CHARS): New macros.
5911 (DONT_COPY_FLAG): Removed.
5912 (SBLOCK_SIZE, LARGE_STRING_BYTES): New macros.
5913 (struct sdata, struct sblock): New
5914 (struct string_block): Rewritten.
5915 (STRINGS_IN_STRING_BLOCK): New macro.
5916 (oldest_sblock, current_sblock, total_strings, total_free_strings)
5917 (large_sblocks, string_blocks, string_free_list): New variables.
5918 (NEXT_FREE_LISP_STRING, SDATA_OF_STRING, SDATA_SIZE): New macros.
5919 (init_strings): Rewritten.
5920 (allocate_string, allocate_string_data, compact_small_strings)
5921 (free_large_strings, sweep_strings): New functions.
5922 (STRING_BLOCK_SIZE, STRING_BLOCK_OUTSIZE)
5923 (struct string_block_head, current_string_block)
5924 (first_string_block, large_string_blocks, STRING_FULLSIZE)
5925 (STRING_PAD): Removed.
5926 (make_uninit_multibyte_string, make_pure_string): Rewritten.
5927 (Fgarbage_collect): Don't set mark bit in large strings.
5928 (mark_object): Mark strings differently. Mark symbol names
5929 differently.
5930 (survives_gc_p): Test marked strings differently.
427ec082 5931 (gc_sweep): Sweep strings differently, unmark strings in
2e471eb5
GM
5932 symbol names.
5933 (compact_strings): Removed.
5934
42608ba8
EZ
59352000-01-04 Eli Zaretskii <eliz@is.elta.co.il>
5936
5937 * xfaces.c (syms_of_xfaces): defsubr Scolor_gray_p and
5938 Scolor_supported_p even if HAVE_X_WINDOWS is not defined.
5939
e0a09e1a
KH
59402000-01-04 Kenichi Handa <handa@etl.go.jp>
5941
dd9f0750 5942 * fileio.c (Finsert_file_contents): Signal error if visiting file
427ec082 5943 in a non-empty buffer.
dd9f0750 5944
3c0f3b15 5945 * term.c (encode_terminal_code): Fix the previous change.
e0a09e1a 5946
44cd3ae5
GM
59472000-01-03 Gerd Moellmann <gerd@gnu.org>
5948
5949 * xfaces.c (syms_of_xfaces): Change Sface_color_gray_p to
5950 Scolor_gray_p, Sface_color_supported_p to Scolor_supported_p.
5951
5952 * s/hpux9.h (NO_EDITRES): Define even if HAVE_LIBXMU.
5953
c182a70f
EZ
59542000-01-03 Eli Zaretskii <eliz@is.elta.co.il>
5955
5956 * xdisp.c (handle_single_display_prop) [HAVE_WINDOW_SYSTEM]: No
5957 need to test for MSDOS frames.
5958
24480d5b
EZ
59592000-01-03 Eli Zaretskii <eliz@is.elta.co.il>
5960
5961 * dosfns.c (unspecified_colors): Remove.
5962 (msdos_stdcolor_idx): Use global variables unspecified_fg and
5963 unspecified_bg.
5964 (msdos_stdcolor_name): Return strings for unspecified fore- and
5965 back-ground colors.
5966
5967 * xfaces.c (Qunspecified_fg, Qunspecified_bg): Remove.
aaf2320c 5968 (syms_of_xfaces): Remove their staticpro's.
24480d5b
EZ
5969 (tty_color_name): Return Lisp strings for unspecified fore- and
5970 back-ground colors.
5971 (Finternal_set_lisp_face_attribute): Remove the special treatment
5972 for Qunspecified_{f,b}g.
5973 (realize_default_face): Replace Qunspecified_{f,b}g with a Lisp
5974 string.
5975
047f434a
GM
59762000-01-03 Gerd Moellmann <gerd@gnu.org>
5977
5978 * xdisp.c (reseat_at_next_visible_line_start): Position before
5979 newline only if ending up on a newline.
5980 (next_element_from_ellipsis): Return success. Handle case of
5981 displaying no ellipsis. Fix case of ellipsis defined in display
5982 table.
5983 (next_element_from_buffer): Return 0 if next_element_from_ellipsis
5984 returns 0.
5985
d684c676
EZ
59862000-01-03 Eli Zaretskii <eliz@is.elta.co.il>
5987
5988 * xfaces.c (Fcolor_gray_p): Renamed from face-color-gray-p.
5989 (Fcolor_supported_p): Renamed from face-color-supported-p.
5990
5fe1d139
EZ
59912000-01-02 Eli Zaretskii <eliz@is.elta.co.il>
5992
5993 * xfaces.c (tty_defined_color): Pass frame to tty-color-desc. The
5994 list of colors renamed to tty-defined-color-alist.
5995 (tty_color_name): Pass the frame to tty-color-by-index.
5996 (realize_tty_face): tty-color-alist is now a function which
5997 accepts the frame as argument.
5998
5999 * term.c (Ftty_display_color_p): Accept an optional argument
6000 FRAME.
6001
816be8b8
EZ
60022000-01-02 Eli Zaretskii <eliz@is.elta.co.il>
6003
6004 * term.c (insert_glyphs): Pass glyph, not &glyph, to
6005 encode_terminal_code.
6006
b635321e
EZ
60072000-01-02 Eli Zaretskii <eliz@is.elta.co.il>
6008
6009 * dispnew.c (mode_line_string): Support termcap frames as well.
6010
9b784e96
GM
60112000-01-01 Gerd Moellmann <gerd@gnu.org>
6012
27189709
GM
6013 * syntax.c (Fforward_word): Undo previous change.
6014
6015 * editfns.c (Fconstrain_to_field): Don't constrain if
6016 inhibit-field-text-motion is non-nil.
6017 (Fline_beginning_position): Undo previous change.
6018 (Fline_end_position): Ditto.
6019
6020 * syntax.c (Fforward_word): Notice field boundaries only if
6021 inhibit-field-text-motion is nil.
6022
6023 * lisp.h: Add extern declaration for Vinhibit_field_text_motion.
6024
6025 * editfns.c (Vinhibit_field_text_motion): New variable.
6026 (inhibit-field-text-motion): New DEFVAR_LISP.
6027 (Fline_beginning_position, Fline_end_position): Notice field
6028 boundaries only if inhibit-field-text-motion is nil.
6029
45158a91
GM
6030 * xfns.c (x_create_x_image_and_pixmap): Remove parameter FILE.
6031 All calls adjusted.
6032 (x_build_heuristic_mask): Likewise.
6033 (xbm_load_image_from_file): Change error output.
6034 (xbm_load, xpm_load, pbm_load, png_load, jpeg_load, tiff_load)
6035 (gif_load, gs_load, x_kill_gs_process): Ditto.
6036
9b784e96
GM
6037 * xfns.c (gif_load): Avoid sign extension and thus out of bounds
6038 color indices when accessing raster pixels.
63cec32f
GM
6039 (gif_image_p, png_image_p, jpeg_image_p, tiff_image_p): Allow only
6040 one of :file or :data.
6041 (enum pbm_keyword_index): Add PBM_DATA.
6042 (pbm_format): Add :data.
6043 (pbm_image_p): Allow either :file or :data.
6044 (pbm_read_file): New function.
6045 (pbm_scan_number): Rewritten to read from string.
6046 (pbm_load): Support :data.
9b784e96 6047
2cb085db 6048See ChangeLog.8 for earlier changes.
6922b018
KH
6049
6050;; Local Variables:
af9ba8ad 6051;; coding: iso-2022-7bit-unix
6922b018 6052;; End: